diff --git a/idaes/apps/grid_integration/tests/test_bidder.py b/idaes/apps/grid_integration/tests/test_bidder.py index 677495fd26..480803aa34 100644 --- a/idaes/apps/grid_integration/tests/test_bidder.py +++ b/idaes/apps/grid_integration/tests/test_bidder.py @@ -11,18 +11,20 @@ # for full copyright and license information. ################################################################################# import pytest + import pyomo.environ as pyo +from pyomo.common import unittest as pyo_unittest + from idaes.apps.grid_integration.bidder import Bidder from idaes.apps.grid_integration.tests.util import ( - TestingModel, - TestingForecaster, + ExampleModel, + ExampleForecaster, testing_model_data, ) -from pyomo.common import unittest as pyo_unittest from idaes.apps.grid_integration.coordinator import prescient_avail -class TestMissingModel: +class MissingModel: """ A class for testing missing methods and attributes. """ @@ -62,14 +64,14 @@ def __init__(self, missing_method=None, missing_attr=None): def test_model_object_missing_methods(): solver = pyo.SolverFactory("cbc") - forecaster = TestingForecaster(prediction=30) + forecaster = ExampleForecaster(prediction=30) # By definition, the model object should contain these methods method_list = ["populate_model", "update_model"] # test if the correct error message is raised if a model misses necessary methods for m in method_list: - bidding_model_object = TestMissingModel(missing_method=m) + bidding_model_object = MissingModel(missing_method=m) with pytest.raises(AttributeError, match=r".*{}().*".format(m)): bidder_object = Bidder( bidding_model_object=bidding_model_object, @@ -85,14 +87,14 @@ def test_model_object_missing_methods(): def test_model_object_missing_attr(): solver = pyo.SolverFactory("cbc") - forecaster = TestingForecaster(prediction=30) + forecaster = ExampleForecaster(prediction=30) # By definition, the model object should contain these attributes attr_list = ["power_output", "total_cost", "model_data"] # test if the correct error message is raised if a model misses necessary attributes for attr in attr_list: - bidding_model_object = TestMissingModel(missing_attr=attr) + bidding_model_object = MissingModel(missing_attr=attr) with pytest.raises(AttributeError, match=r".*{}().*".format(attr)): bidder_object = Bidder( bidding_model_object=bidding_model_object, @@ -108,8 +110,8 @@ def test_model_object_missing_attr(): def test_n_scenario_checker(): solver = pyo.SolverFactory("cbc") - forecaster = TestingForecaster(prediction=30) - bidding_model_object = TestingModel(model_data=testing_model_data) + forecaster = ExampleForecaster(prediction=30) + bidding_model_object = ExampleModel(model_data=testing_model_data) # test if bidder raise error when negative number of scenario is given with pytest.raises(ValueError, match=r".*greater than zero.*"): @@ -137,8 +139,8 @@ def test_n_scenario_checker(): @pytest.mark.unit def test_solver_checker(): - forecaster = TestingForecaster(prediction=30) - bidding_model_object = TestingModel(model_data=testing_model_data) + forecaster = ExampleForecaster(prediction=30) + bidding_model_object = ExampleModel(model_data=testing_model_data) # test if bidder raise error when invalid solver is provided invalid_solvers = [5, "cbc", "ipopt"] @@ -158,10 +160,10 @@ def test_solver_checker(): def bidder_object(): solver = pyo.SolverFactory("cbc") - forecaster = TestingForecaster(prediction=30) + forecaster = ExampleForecaster(prediction=30) # create a bidder model - bidding_model_object = TestingModel(model_data=testing_model_data) + bidding_model_object = ExampleModel(model_data=testing_model_data) bidder_object = Bidder( bidding_model_object=bidding_model_object, day_ahead_horizon=day_ahead_horizon, @@ -299,11 +301,11 @@ def test_compute_RT_bids(bidder_object): def bidder_object_pcost(): solver = pyo.SolverFactory("cbc") - forecaster = TestingForecaster(prediction=30) + forecaster = ExampleForecaster(prediction=30) # create a bidder model testing_model_data.include_default_p_cost = False - bidding_model_object = TestingModel(model_data=testing_model_data) + bidding_model_object = ExampleModel(model_data=testing_model_data) bidder_object = Bidder( bidding_model_object=bidding_model_object, day_ahead_horizon=day_ahead_horizon, diff --git a/idaes/apps/grid_integration/tests/test_coordinator.py b/idaes/apps/grid_integration/tests/test_coordinator.py index 0343172444..0862fd4bb0 100644 --- a/idaes/apps/grid_integration/tests/test_coordinator.py +++ b/idaes/apps/grid_integration/tests/test_coordinator.py @@ -13,18 +13,19 @@ import pytest import pyomo.environ as pyo +from pyomo.common import unittest as pyo_unittest + from idaes.apps.grid_integration.bidder import Bidder from idaes.apps.grid_integration.tracker import Tracker from idaes.apps.grid_integration.coordinator import DoubleLoopCoordinator from idaes.apps.grid_integration.tests.util import ( - TestingModel, - TestingForecaster, + ExampleModel, + ExampleForecaster, testing_model_data, testing_renewable_data, renewable_generator_params, testing_generator_params, ) -from pyomo.common import unittest as pyo_unittest tracking_horizon = 4 day_ahead_bidding_horizon = 48 @@ -46,7 +47,7 @@ def coordinator_object(request): else: model_data = testing_renewable_data - tracking_model_object = TestingModel(model_data=model_data) + tracking_model_object = ExampleModel(model_data=model_data) thermal_tracker = Tracker( tracking_model_object=tracking_model_object, tracking_horizon=tracking_horizon, @@ -55,7 +56,7 @@ def coordinator_object(request): ) # make a projection tracker - projection_tracking_model_object = TestingModel(model_data=model_data) + projection_tracking_model_object = ExampleModel(model_data=model_data) thermal_projection_tracker = Tracker( tracking_model_object=projection_tracking_model_object, tracking_horizon=tracking_horizon, @@ -64,8 +65,8 @@ def coordinator_object(request): ) ## create a bidder - forecaster = TestingForecaster(prediction=30) - bidding_model_object = TestingModel(model_data=model_data) + forecaster = ExampleForecaster(prediction=30) + bidding_model_object = ExampleModel(model_data=model_data) thermal_bidder = Bidder( bidding_model_object=bidding_model_object, day_ahead_horizon=day_ahead_bidding_horizon, diff --git a/idaes/apps/grid_integration/tests/test_integration.py b/idaes/apps/grid_integration/tests/test_integration.py index 9d1e645533..e377f8c078 100644 --- a/idaes/apps/grid_integration/tests/test_integration.py +++ b/idaes/apps/grid_integration/tests/test_integration.py @@ -19,10 +19,6 @@ import pytest - -# define custom type for type hinting -PrescientOptions = Dict[str, Union[str, bool, Number, dict]] - from idaes.apps.grid_integration import DoubleLoopCoordinator from idaes.apps.grid_integration.tests.util import ( make_testing_tracker, @@ -41,6 +37,9 @@ projection_tracker=thermal_projection_tracker, ) +# define custom type for type hinting +PrescientOptions = Dict[str, Union[str, bool, Number, dict]] + class TestDoubleLoopIntegration: "Integration test for the double loop using 5bus use case." diff --git a/idaes/apps/grid_integration/tests/test_tracker.py b/idaes/apps/grid_integration/tests/test_tracker.py index 13ad5b2b65..fb0c3c68d3 100644 --- a/idaes/apps/grid_integration/tests/test_tracker.py +++ b/idaes/apps/grid_integration/tests/test_tracker.py @@ -13,10 +13,10 @@ import pytest import pyomo.environ as pyo from idaes.apps.grid_integration.tracker import Tracker -from idaes.apps.grid_integration.tests.util import TestingModel, testing_model_data +from idaes.apps.grid_integration.tests.util import ExampleModel, testing_model_data -class TestMissingModel: +class MissingModel: """ A class for testing missing methods and attributes. """ @@ -68,7 +68,7 @@ def test_model_object_missing_methods(): # test if the correct error message is raised if a model misses necessary methods for m in method_list: - tracking_model_object = TestMissingModel(missing_method=m) + tracking_model_object = MissingModel(missing_method=m) with pytest.raises(AttributeError, match=r".*{}().*".format(m)): tracker_object = Tracker( tracking_model_object=tracking_model_object, @@ -87,7 +87,7 @@ def test_model_object_missing_attr(): # test if the correct error message is raised if a model misses necessary attributes for a in attr_list: - tracking_model_object = TestMissingModel(missing_attr=a) + tracking_model_object = MissingModel(missing_attr=a) with pytest.raises(AttributeError, match=r".*{}.*".format(a)): tracker_object = Tracker( tracking_model_object=tracking_model_object, @@ -100,7 +100,7 @@ def test_model_object_missing_attr(): @pytest.mark.unit def test_n_tracking_hour_checker(): solver = pyo.SolverFactory("cbc") - tracking_model_object = TestingModel(model_data=testing_model_data) + tracking_model_object = ExampleModel(model_data=testing_model_data) # test if tracker raise error when negative number of hours is given n_tracking_hour = -1 @@ -126,7 +126,7 @@ def test_n_tracking_hour_checker(): @pytest.mark.unit def test_solver_checker(): n_tracking_hour = 1 - tracking_model_object = TestingModel(model_data=testing_model_data) + tracking_model_object = ExampleModel(model_data=testing_model_data) # test if bidder raise error when invalid solver is provided invalid_solvers = [5, "cbc", "ipopt"] @@ -146,7 +146,7 @@ def tracker_object(): solver = pyo.SolverFactory("cbc") # create a tracker model - tracking_model_object = TestingModel(model_data=testing_model_data) + tracking_model_object = ExampleModel(model_data=testing_model_data) tracker_object = Tracker( tracking_model_object=tracking_model_object, tracking_horizon=horizon, diff --git a/idaes/apps/grid_integration/tests/util.py b/idaes/apps/grid_integration/tests/util.py index 050f37603c..e130af66cb 100644 --- a/idaes/apps/grid_integration/tests/util.py +++ b/idaes/apps/grid_integration/tests/util.py @@ -22,7 +22,7 @@ ) -class TestingModel: +class ExampleModel: """ Simple model object for testing. """ @@ -256,7 +256,7 @@ def total_cost(self): return ("tot_cost", 1) -class TestingForecaster(AbstractPrescientPriceForecaster): +class ExampleForecaster(AbstractPrescientPriceForecaster): """ A fake forecaster class for testing. """ @@ -345,7 +345,7 @@ def make_testing_forecaster(): forecaster: a forecaster object for testing. """ - return TestingForecaster(prediction=30) + return ExampleForecaster(prediction=30) def make_testing_tracker(): @@ -359,7 +359,7 @@ def make_testing_tracker(): thermal_tracker: a tracker object for testing. """ - tracking_model_object = TestingModel(model_data=testing_model_data) + tracking_model_object = ExampleModel(model_data=testing_model_data) thermal_tracker = Tracker( tracking_model_object=tracking_model_object, tracking_horizon=tracking_horizon, @@ -383,7 +383,7 @@ def make_testing_bidder(): forecaster = make_testing_forecaster() - bidding_model_object = TestingModel(model_data=testing_model_data) + bidding_model_object = ExampleModel(model_data=testing_model_data) thermal_bidder = Bidder( bidding_model_object=bidding_model_object, day_ahead_horizon=day_ahead_bidding_horizon, @@ -409,7 +409,7 @@ def make_testing_selfscheduler(): forecaster = make_testing_forecaster() - bidding_model_object = TestingModel(model_data=testing_model_data) + bidding_model_object = ExampleModel(model_data=testing_model_data) self_scheduler = SelfScheduler( bidding_model_object=bidding_model_object, day_ahead_horizon=day_ahead_bidding_horizon, diff --git a/idaes/apps/matopt/opt/pyomo_modeling.py b/idaes/apps/matopt/opt/pyomo_modeling.py index 017ecd3e2d..0e9eda2754 100644 --- a/idaes/apps/matopt/opt/pyomo_modeling.py +++ b/idaes/apps/matopt/opt/pyomo_modeling.py @@ -1462,11 +1462,11 @@ def addConsZicFromYiLifted(m, blnConfsAreMutExc=True, blnConfsAreColExh=False): for c in m.Zic[i, :].wildcard_keys() if m.Confs[c][l] is None ) - if PosZic is not 0: + if PosZic != 0: m.AssignZicFromYiLifted1.add( index=(i, j), expr=(PosZic <= m.Yi[j]) ) - if NegZic is not 0: + if NegZic != 0: m.AssignZicFromYiLifted2.add( index=(i, j), expr=(NegZic <= 1 - m.Yi[j]) ) @@ -1584,11 +1584,11 @@ def addConsZicFromYikLifted(m, blnConfsAreMutExc=True, blnConfsAreColExh=False): for c in m.Zic[i, :].wildcard_keys() if m.Confs[c][l] != k ) - if PosZic is not 0: + if PosZic != 0: m.AssignZicFromYikLifted1.add( index=(i, j, k), expr=(PosZic <= m.Yik[j, k]) ) - if NegZic is not 0: + if NegZic != 0: m.AssignZicFromYikLifted2.add( index=(i, j, k), expr=(NegZic <= 1 - m.Yik[j, k]) ) diff --git a/idaes/core/base/tests/test_components.py b/idaes/core/base/tests/test_components.py index 24fb9624fd..467cf6b365 100644 --- a/idaes/core/base/tests/test_components.py +++ b/idaes/core/base/tests/test_components.py @@ -16,6 +16,7 @@ Author: Andrew Lee """ import pytest +import re import types from pyomo.environ import ConcreteModel, Set, Param, Var, units as pyunits @@ -84,9 +85,11 @@ def test_populate_component_list(self, m): def test_is_solute(self, m): with pytest.raises( TypeError, - match="comp Generic Component objects do not " - "support is_solute\(\) method. Use a Solvent or " - "Solute Component instead.", + match=re.escape( + "comp Generic Component objects do not " + "support is_solute() method. Use a Solvent or " + "Solute Component instead." + ), ): m.comp.is_solute() @@ -94,9 +97,11 @@ def test_is_solute(self, m): def test_is_solvent(self, m): with pytest.raises( TypeError, - match="comp Generic Component objects do not " - "support is_solvent\(\) method. Use a Solvent or " - "Solute Component instead.", + match=re.escape( + "comp Generic Component objects do not " + "support is_solvent() method. Use a Solvent or " + "Solute Component instead." + ), ): m.comp.is_solvent() diff --git a/idaes/core/base/tests/test_control_volume_1d.py b/idaes/core/base/tests/test_control_volume_1d.py index d85ac65b93..62580d2811 100644 --- a/idaes/core/base/tests/test_control_volume_1d.py +++ b/idaes/core/base/tests/test_control_volume_1d.py @@ -16,6 +16,8 @@ Author: Andrew Lee """ import pytest +import re + from pyomo.environ import ( ConcreteModel, Constraint, @@ -418,7 +420,7 @@ def test_add_geometry_length_var_indexed(): with pytest.raises( ConfigurationError, - match="fs.cv length_var must be a scalar \(unindexed\) component.", + match=re.escape("fs.cv length_var must be a scalar (unindexed) component."), ): m.fs.cv.add_geometry(length_var=m.fs.length) @@ -2310,9 +2312,11 @@ def test_add_total_component_balances_in_rxns_no_idx(): with pytest.raises( PropertyNotSupportedError, - match="fs.cv Property package does not contain a " - "list of inherent reactions \(inherent_reaction_idx\), " - "but include_inherent_reactions is True.", + match=re.escape( + "fs.cv Property package does not contain a " + "list of inherent reactions (inherent_reaction_idx), " + "but include_inherent_reactions is True." + ), ): m.fs.cv.add_total_component_balances() diff --git a/idaes/core/base/tests/test_flowsheet_model.py b/idaes/core/base/tests/test_flowsheet_model.py index 27c6b2510c..e6f6569397 100644 --- a/idaes/core/base/tests/test_flowsheet_model.py +++ b/idaes/core/base/tests/test_flowsheet_model.py @@ -16,6 +16,7 @@ Author: Andrew Lee """ import pytest +import re from pyomo.environ import ConcreteModel, Set, TransformationFactory, units from pyomo.dae import ContinuousSet @@ -220,9 +221,11 @@ def test_dynamic_time_set_invalid(self): with pytest.raises( DynamicError, - match="Flowsheet provided with invalid " - "time_set attribute - must have at " - "least two values \(start and end\).", + match=re.escape( + "Flowsheet provided with invalid " + "time_set attribute - must have at " + "least two values (start and end)." + ), ): m.fs = FlowsheetBlock(dynamic=True, time_set=1, time_units=units.s) diff --git a/idaes/core/base/tests/test_property_meta.py b/idaes/core/base/tests/test_property_meta.py index 5cabf3daa4..69d752b834 100644 --- a/idaes/core/base/tests/test_property_meta.py +++ b/idaes/core/base/tests/test_property_meta.py @@ -16,6 +16,7 @@ Author: Andrew Lee """ import pytest +import re from pyomo.environ import ConcreteModel, units from pyomo.util.check_units import assert_units_equivalent @@ -28,7 +29,7 @@ def test_invalid_require_base_quantity(): with pytest.raises( PropertyPackageError, - match="Unrecognized units of measurement for quantity TIME \(foo\)", + match=re.escape("Unrecognized units of measurement for quantity TIME (foo)"), ): us = UnitSet() us.set_units(time="foo") @@ -38,8 +39,10 @@ def test_invalid_require_base_quantity(): def test_mismatched_length_units(): with pytest.raises( PropertyPackageError, - match="Invalid units of measurement for quantity LENGTH \(s\). " - "Please ensure units provided are valid for this quantity.", + match=re.escape( + "Invalid units of measurement for quantity LENGTH (s). " + "Please ensure units provided are valid for this quantity and use the Pyomo unit registry." + ), ): us = UnitSet() us.set_units(length=units.s) @@ -49,8 +52,10 @@ def test_mismatched_length_units(): def test_mismatched_mass_units(): with pytest.raises( PropertyPackageError, - match="Invalid units of measurement for quantity MASS \(m\). " - "Please ensure units provided are valid for this quantity.", + match=re.escape( + "Invalid units of measurement for quantity MASS (m). " + "Please ensure units provided are valid for this quantity and use the Pyomo unit registry." + ), ): us = UnitSet() us.set_units(mass=units.m) @@ -60,8 +65,10 @@ def test_mismatched_mass_units(): def test_mismatched_amount_units(): with pytest.raises( PropertyPackageError, - match="Invalid units of measurement for quantity AMOUNT \(m\). " - "Please ensure units provided are valid for this quantity.", + match=re.escape( + "Invalid units of measurement for quantity AMOUNT (m). " + "Please ensure units provided are valid for this quantity and use the Pyomo unit registry." + ), ): us = UnitSet() us.set_units(amount=units.m) @@ -71,8 +78,10 @@ def test_mismatched_amount_units(): def test_mismatched_temperature_units(): with pytest.raises( PropertyPackageError, - match="Invalid units of measurement for quantity TEMPERATURE \(m\). " - "Please ensure units provided are valid for this quantity.", + match=re.escape( + "Invalid units of measurement for quantity TEMPERATURE (m). " + "Please ensure units provided are valid for this quantity and use the Pyomo unit registry." + ), ): us = UnitSet() us.set_units(temperature=units.m) @@ -82,8 +91,10 @@ def test_mismatched_temperature_units(): def test_mismatched_current_units(): with pytest.raises( PropertyPackageError, - match="Invalid units of measurement for quantity CURRENT \(m\). " - "Please ensure units provided are valid for this quantity.", + match=re.escape( + "Invalid units of measurement for quantity CURRENT (m). " + "Please ensure units provided are valid for this quantity and use the Pyomo unit registry." + ), ): us = UnitSet() us.set_units(current=units.m) @@ -93,8 +104,10 @@ def test_mismatched_current_units(): def test_mismatched_luminous_intensity_units(): with pytest.raises( PropertyPackageError, - match="Invalid units of measurement for quantity LUMINOUS_INTENSITY \(m\). " - "Please ensure units provided are valid for this quantity.", + match=re.escape( + "Invalid units of measurement for quantity LUMINOUS_INTENSITY (m). " + "Please ensure units provided are valid for this quantity and use the Pyomo unit registry." + ), ): us = UnitSet() us.set_units(luminous_intensity=units.m) @@ -104,8 +117,10 @@ def test_mismatched_luminous_intensity_units(): def test_mismatched_time_units(): with pytest.raises( PropertyPackageError, - match="Invalid units of measurement for quantity TIME \(m\). " - "Please ensure units provided are valid for this quantity.", + match=re.escape( + "Invalid units of measurement for quantity TIME (m). " + "Please ensure units provided are valid for this quantity and use the Pyomo unit registry." + ), ): us = UnitSet() us.set_units(time=units.m) diff --git a/idaes/core/base/tests/test_unit_model.py b/idaes/core/base/tests/test_unit_model.py index c3806415eb..018f6b6326 100644 --- a/idaes/core/base/tests/test_unit_model.py +++ b/idaes/core/base/tests/test_unit_model.py @@ -16,6 +16,8 @@ Author: Andrew Lee """ import pytest +import re + from pyomo.environ import Block, ConcreteModel, Constraint, Var, units from pyomo.network import Port @@ -197,8 +199,10 @@ def test_add_port_invalid_block(): with pytest.raises( ConfigurationError, - match="fs.u block object provided to add_port method is not an " - "instance of a StateBlock object \(does not have a build_port method\).", + match=re.escape( + "fs.u block object provided to add_port method is not an " + "instance of a StateBlock object (does not have a build_port method)." + ), ): m.fs.u.add_port(name="test_port", block=m.fs.u) @@ -318,9 +322,11 @@ def test_add_inlet_port_CV0D_no_default_block(): with pytest.raises( ConfigurationError, - match="fs.u add_inlet_port was called without a block argument" - " but no default ControlVolume exists \(control_volume\). " - "Please provide block to which the Port should be associated.", + match=re.escape( + "fs.u add_inlet_port was called without a block argument" + " but no default ControlVolume exists (control_volume). " + "Please provide block to which the Port should be associated." + ), ): m.fs.u.add_inlet_port() @@ -525,10 +531,12 @@ def test_add_outlet_port_CV0D_no_default_block(): with pytest.raises( ConfigurationError, - match="fs.u add_outlet_port was called without a block " - "argument but no default ControlVolume exists " - "\(control_volume\). Please provide block to which the " - "Port should be associated.", + match=re.escape( + "fs.u add_outlet_port was called without a block " + "argument but no default ControlVolume exists " + "(control_volume). Please provide block to which the " + "Port should be associated." + ), ): m.fs.u.add_outlet_port() diff --git a/idaes/core/base/tests/test_var_like_expression.py b/idaes/core/base/tests/test_var_like_expression.py index 07e474681b..f74ccd1e92 100644 --- a/idaes/core/base/tests/test_var_like_expression.py +++ b/idaes/core/base/tests/test_var_like_expression.py @@ -15,6 +15,7 @@ """ import pytest +import re from pyomo.environ import ConcreteModel, Expression, Var @@ -36,8 +37,10 @@ def test_SimpleVarLikeExpression(): with pytest.raises( TypeError, - match="e is an Expression and does not have a value " - "attribute. Use the 'value\(\)' method instead.", + match=re.escape( + "e is an Expression and does not have a value " + "attribute. Use the 'value()' method instead." + ), ): assert m.e.value == 42 @@ -115,47 +118,58 @@ def test_IndexedVarLikeExpression(): for i in m.e: with pytest.raises( TypeError, - match=f"e\[{i}\] is an Expression and does not have" - f" a value attribute. Use the 'value\(\)' method " - "instead", + match=re.escape( + f"e[{i}] is an Expression and does not have" + f" a value attribute. Use the 'value()' method instead" + ), ): assert m.e[i].value == 42 with pytest.raises( TypeError, - match=f"e\[{i}\] is an Expression and does not " - f"have a value which can be set.", + match=re.escape( + f"e[{i}] is an Expression and does not " + f"have a value which can be set." + ), ): m.e[i].set_value(10) with pytest.raises( TypeError, - match="e\[{}\] is an Expression and does not have " - "a value which can be set.".format(i), + match=re.escape( + f"e[{i}] is an Expression and does not have " + "a value which can be set." + ), ): m.e[i].value = 10 with pytest.raises( TypeError, - match="e\[{}\] is an Expression and can not have " - "bounds. Use an inequality Constraint instead.".format(i), + match=re.escape( + f"e[{i}] is an Expression and can not have " + "bounds. Use an inequality Constraint instead." + ), ): m.e[i].setub(10) with pytest.raises( TypeError, - match="e\[{}\] is an Expression and can not have " - "bounds. Use an inequality Constraint instead.".format(i), + match=re.escape( + f"e[{i}] is an Expression and can not have " + "bounds. Use an inequality Constraint instead." + ), ): m.e[i].setlb(0) with pytest.raises( TypeError, - match="e\[{}\] is an Expression and can not be " - "fixed. Use an equality Constraint instead.".format(i), + match=re.escape( + f"e[{i}] is an Expression and can not be " + "fixed. Use an equality Constraint instead." + ), ): m.e[i].fix(8) with pytest.raises( TypeError, - match="e\[{}\] is an Expression and can not be unfixed.".format(i), + match=re.escape(f"e[{i}] is an Expression and can not be unfixed."), ): m.e[i].unfix() diff --git a/idaes/core/initialization/tests/test_general_hierarchical.py b/idaes/core/initialization/tests/test_general_hierarchical.py index e6320aef0a..cd6f9717da 100644 --- a/idaes/core/initialization/tests/test_general_hierarchical.py +++ b/idaes/core/initialization/tests/test_general_hierarchical.py @@ -14,6 +14,7 @@ Tests for general hierarchical initialization routines """ import pytest +import re import types from pyomo.environ import Block, ConcreteModel, Constraint, value, Var @@ -249,8 +250,10 @@ def test_initialize_submodels_no_order(): with pytest.raises( InitializationError, - match="Main model \(unknown\) was not initialized \(no results returned\). " - "This is likely due to an error in the model.initialization_order.", + match=re.escape( + "Main model (unknown) was not initialized (no results returned). " + "This is likely due to an error in the model.initialization_order." + ), ): initializer.initialize_submodels(m, {}, {}, copy_inlet_state=False) diff --git a/idaes/core/initialization/tests/test_initializer_base.py b/idaes/core/initialization/tests/test_initializer_base.py index cca9906d1e..94775ac525 100644 --- a/idaes/core/initialization/tests/test_initializer_base.py +++ b/idaes/core/initialization/tests/test_initializer_base.py @@ -14,6 +14,7 @@ Tests for InitializerBase class """ import pytest +import re import types import os @@ -411,8 +412,10 @@ def test_precheck_fail(self, model): initializer = InitializerBase() with pytest.raises( InitializationError, - match="Degrees of freedom for unknown were not equal to zero during " - "initialization \(DoF = -1\).", + match=re.escape( + "Degrees of freedom for unknown were not equal to zero during " + "initialization (DoF = -1)." + ), ): initializer.precheck(model) assert initializer.summary[model]["status"] == InitializationStatus.DoF @@ -598,9 +601,11 @@ def test_load_values_from_dict_indexed_fixed(self): with pytest.raises( InitializationError, - match="Attempted to change the value of fixed variable v\[b\]. " - "Initialization from initial guesses does not support changing the value " - "of fixed variables.", + match=re.escape( + "Attempted to change the value of fixed variable v[b]. " + "Initialization from initial guesses does not support changing the value " + "of fixed variables." + ), ): initializer._load_values_from_dict(m, {m.v: 10}) @@ -648,9 +653,11 @@ def test_load_values_from_dict_scalar_fixed(self): with pytest.raises( InitializationError, - match="Attempted to change the value of fixed variable v\[a\]. " - "Initialization from initial guesses does not support changing the value " - "of fixed variables.", + match=re.escape( + "Attempted to change the value of fixed variable v[a]. " + "Initialization from initial guesses does not support changing the value " + "of fixed variables." + ), ): initializer._load_values_from_dict(m, {'v["a"]': 10}) diff --git a/idaes/core/solvers/tests/test_petsc.py b/idaes/core/solvers/tests/test_petsc.py index 6da3516cd6..f19f51acb8 100644 --- a/idaes/core/solvers/tests/test_petsc.py +++ b/idaes/core/solvers/tests/test_petsc.py @@ -13,6 +13,7 @@ """Basic unit tests for PETSc solver utilities""" import pytest +import re import numpy as np import json import os @@ -753,9 +754,11 @@ def constraint_eqn(b, t, x): with pytest.raises( NotImplementedError, - match="IDAES presently does not support PETSc for second order or higher derivatives like d2T_dtdx " - "that are differentiated at least once with respect to time. Please reformulate your model so " - "it does not contain such a derivative \(such as by introducing intermediate variables\)\.", + match=re.escape( + "IDAES presently does not support PETSc for second order or higher derivatives like d2T_dtdx " + "that are differentiated at least once with respect to time. Please reformulate your model so " + "it does not contain such a derivative (such as by introducing intermediate variables)." + ), ): petsc.petsc_dae_by_time_element( m, diff --git a/idaes/core/surrogate/plotting/sm_plotter.py b/idaes/core/surrogate/plotting/sm_plotter.py index 7197c2a3f2..02b1b64b15 100644 --- a/idaes/core/surrogate/plotting/sm_plotter.py +++ b/idaes/core/surrogate/plotting/sm_plotter.py @@ -32,7 +32,7 @@ def surrogate_scatter2D(surrogate, dataframe, filename=None, show=True): input_data = dataframe[surrogate.input_labels()] output_data = dataframe[surrogate.output_labels()] output_surrogate = surrogate.evaluate_surrogate(input_data) - _scatter2D( + return _scatter2D( xdata=input_data.values, zdata=output_data.values, zfit=output_surrogate.values, @@ -81,6 +81,8 @@ def _scatter2D( ) pdf = PdfPages(filename) + fig_list = [] + for j in range(numouts): # loop over all outputs, zj for i in range(numins): # plot every possible zj = f(xi) fig = plt.figure() @@ -97,15 +99,20 @@ def _scatter2D( plt.show() if filename is not None: pdf.savefig(fig) + + fig_list.append(fig) + if filename is not None: # place outside loop to avoid closing/reopening pdf.close() + return fig_list + def surrogate_scatter3D(surrogate, dataframe, filename=None, show=True): input_data = dataframe[surrogate.input_labels()] output_data = dataframe[surrogate.output_labels()] output_surrogate = surrogate.evaluate_surrogate(input_data) - _scatter3D( + return _scatter3D( xdata=input_data.values, zdata=output_data.values, zfit=output_surrogate.values, @@ -154,6 +161,8 @@ def _scatter3D( ) pdf = PdfPages(filename) + fig_list = [] + for j in range(numouts): # loop over all outputs, zj for pair in list(combinations(range(numins), 2)): # pick two x vars a, b = pair[0], pair[1] # indices for the x variables picked @@ -181,15 +190,20 @@ def _scatter3D( plt.show() if filename is not None: pdf.savefig(fig) + + fig_list.append(fig) + if filename is not None: # place outside loop to avoid closing/reopening pdf.close() + return fig_list + def surrogate_parity(surrogate, dataframe, filename=None, show=True): input_data = dataframe[surrogate.input_labels()] output_data = dataframe[surrogate.output_labels()] output_surrogate = surrogate.evaluate_surrogate(input_data) - _parity( + return _parity( zdata=output_data.values, zfit=output_surrogate.values, zlabels=surrogate.output_labels(), @@ -229,6 +243,8 @@ def _parity(zdata, zfit, zlabels=None, show=True, filename=None): ) pdf = PdfPages(filename) + fig_list = [] + for j in range(numouts): # loop over all outputs, zj fig = plt.figure() ax = fig.add_subplot() @@ -245,9 +261,14 @@ def _parity(zdata, zfit, zlabels=None, show=True, filename=None): plt.show() if filename is not None: pdf.savefig(fig) + + fig_list.append(fig) + if filename is not None: # place outside loop to avoid closing/reopening pdf.close() + return fig_list + def surrogate_residual( surrogate, dataframe, filename=None, relative_error=False, show=True @@ -258,7 +279,7 @@ def surrogate_residual( residual = np.abs(output_data - output_surrogate) if relative_error is True: residual = np.divide(residual, np.maximum(output_data, 1.0)) - _residual( + return _residual( xdata=input_data.values, residual=residual.values, xlabels=surrogate.input_labels(), @@ -303,6 +324,8 @@ def _residual(xdata, residual, xlabels=None, elabels=None, show=True, filename=N ) pdf = PdfPages(filename) + fig_list = [] + for i in range(numins): for j in range(numouts): # loop over all outputs, zj fig = plt.figure() @@ -317,5 +340,10 @@ def _residual(xdata, residual, xlabels=None, elabels=None, show=True, filename=N plt.show() if filename is not None: pdf.savefig(fig) + + fig_list.append(fig) + if filename is not None: # place outside loop to avoid closing/reopening pdf.close() + + return fig_list diff --git a/idaes/core/surrogate/plotting/tests/pysmo_krig_surrogate.json b/idaes/core/surrogate/plotting/tests/pysmo_krig_surrogate.json deleted file mode 100644 index be97207624..0000000000 --- a/idaes/core/surrogate/plotting/tests/pysmo_krig_surrogate.json +++ /dev/null @@ -1 +0,0 @@ -{"model_encoding": {"Steam_Flow": {"attr": {"x_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "x_data": [[0.363768116, 0.926315789], [0.789855072, 0.821052632], [0.363768116, 0.957894737], [0.191304348, 0.926315789], [0.485507246, 0.821052632], [0.18115942, 0.957894737], [0.779710145, 1.147368421], [0.576811594, 0.978947368], [0.637681159, 0.831578947], [0.749275362, 1.052631579], [0.536231884, 1.189473684], [0.688405797, 0.831578947], [0.779710145, 0.842105263], [0.536231884, 0.915789474], [0.160869565, 1.126315789], [0.526086957, 0.947368421], [0.14057971, 1.0], [0.171014493, 0.884210526], [0.789855072, 1.0], [0.363768116, 1.105263158], [0.333333333, 0.810526316], [0.515942029, 1.084210526], [0.607246377, 0.915789474], [0.384057971, 0.905263158], [0.18115942, 1.063157895], [0.779710145, 0.873684211], [0.647826087, 0.894736842], [0.404347826, 1.147368421], [0.444927536, 0.894736842], [0.373913043, 0.8], [0.211594203, 0.810526316], [0.739130435, 0.915789474], [0.688405797, 1.094736842], [0.576811594, 1.115789474], [0.637681159, 1.094736842], [0.536231884, 1.073684211], [0.414492754, 1.031578947], [0.130434783, 1.042105263], [0.302898551, 0.978947368], [0.272463768, 1.189473684], [0.120289855, 0.989473684], [0.110144928, 1.031578947], [0.546376812, 1.189473684], [0.444927536, 1.2], [0.242028986, 0.905263158], [0.191304348, 0.884210526], [0.302898551, 0.905263158], [0.282608696, 1.105263158], [0.465217391, 0.852631579], [0.657971014, 1.105263158], [0.607246377, 1.0], [0.739130435, 0.831578947], [0.18115942, 1.084210526], [0.668115942, 0.884210526], [0.698550725, 0.852631579], [0.252173913, 1.136842105], [0.505797101, 1.178947368], [0.130434783, 1.136842105], [0.22173913, 1.178947368], [0.698550725, 0.905263158], [0.394202899, 1.168421053], [0.607246377, 0.842105263], [0.282608696, 0.936842105], [0.242028986, 1.010526316], [0.708695652, 0.842105263], [0.282608696, 0.957894737], [0.749275362, 0.968421053], [0.333333333, 1.021052632], [0.708695652, 0.957894737], [0.75942029, 0.968421053], [0.252173913, 0.894736842], [0.688405797, 0.926315789], [0.14057971, 1.168421053], [0.485507246, 1.115789474], [0.688405797, 0.810526316], [0.110144928, 1.010526316], [0.647826087, 1.073684211], [0.110144928, 1.2], [0.586956522, 1.115789474], [0.556521739, 1.052631579]], "x_data_min": [[0.110144928, 0.8]], "x_data_max": [[0.789855072, 1.2]], "x_data_scaled": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "optimal_weights": [1.3387532178668002, 0.216077375592575], "optimal_p": 2, "optimal_mean": [[0.7135781060290148]], "optimal_variance": [[0.04177801587354981]], "regularization_parameter": 1e-06, "optimal_covariance_matrix": [[1.000001, 0.5821419066990297, 0.9986541637514551, 0.9174213823767984, 0.9437359305432933, 0.9066732267894504, 0.5670461686355017, 0.8734885489966285, 0.7949070016114278, 0.6362322559055564, 0.8355106496972872, 0.7279609162550453, 0.5999547765428568, 0.9172841115014876, 0.8408758658177512, 0.9259404442142919, 0.8592671095478935, 0.8957847416915156, 0.5866015420096519, 0.9576763445676382, 0.9794243537511678, 0.9041407321099965, 0.842038149108486, 0.9982101325935507, 0.885223375033956, 0.6034662799390518, 0.790445281735374, 0.9316835455043555, 0.979773903471955, 0.9783907862058562, 0.9183213511928164, 0.6646955733017915, 0.709145481170908, 0.8352685052275206, 0.7743612267589961, 0.8909050240753507, 0.9778299001075318, 0.8387272378861471, 0.9856270693739501, 0.8889801229639606, 0.8376396435503874, 0.817620175959785, 0.8268349131051653, 0.8867057934381, 0.9573907804027181, 0.9152275110685019, 0.9887291749050229, 0.9395707987387732, 0.9635265483963581, 0.7452343113476739, 0.836011771214353, 0.656785910122218, 0.8778364340749543, 0.7627683037152041, 0.7174123973209909, 0.9085175941060235, 0.8653298161041011, 0.8044320719418728, 0.8653298153918362, 0.7222595479651756, 0.9214169708822522, 0.8341373878923495, 0.9809474975738153, 0.9488335258213849, 0.7016431099959961, 0.9797739033883865, 0.6485358944494035, 0.9853042999057584, 0.7074415266466034, 0.6338128125881828, 0.963259397944873, 0.7368379897504429, 0.799713511438026, 0.9126271915019049, 0.723616703839577, 0.8220365564682721, 0.7686333860059051, 0.7500998766696453, 0.8246255113821347, 0.8787904444845153], [0.5821419066990297, 1.000001, 0.5761621991759931, 0.3488541101833069, 0.7645967184822001, 0.33323216751683554, 0.8658008032543261, 0.8477344228783588, 0.9349601925299972, 0.9257079322658707, 0.6909414349684134, 0.9704721143921127, 0.9991036200443607, 0.8199480787199814, 0.2802030759050779, 0.7999939028986078, 0.2822973468360967, 0.32788256671067273, 0.9576763450305128, 0.5298489133830337, 0.5465853409027425, 0.7327627782351995, 0.8969572176547458, 0.6146241166484622, 0.3157559929125692, 0.9959689650301075, 0.9363318820781638, 0.5630167476775262, 0.7032197666465738, 0.6053655946233132, 0.37942512428579517, 0.9806139473046142, 0.8772368031332877, 0.779708181808582, 0.8451365868102719, 0.7614086267846282, 0.6261710416856676, 0.2655343784572293, 0.48636794993302424, 0.38327514908057064, 0.26252839980474435, 0.2469403557737889, 0.7011124747413184, 0.5835153629878224, 0.41510876760132603, 0.3522110778538512, 0.4982276820106589, 0.42542761779856925, 0.7358463265372949, 0.8525810704226321, 0.8694696666820851, 0.9924234668342403, 0.3112525020660045, 0.952817351446433, 0.974819113657995, 0.3781737429859888, 0.6657815188426265, 0.24790867771342723, 0.3301427910893828, 0.966829184843529, 0.5397963906050472, 0.9073518458312823, 0.465948340274645, 0.3992687215848224, 0.9805072351633467, 0.46261359732907653, 0.9664741394905855, 0.5179199784771112, 0.9565946541946777, 0.9684938662236363, 0.4295317776021381, 0.9562013424058307, 0.2504477909107998, 0.6799588497618207, 0.970472114364521, 0.24976471281890025, 0.8653298161041012, 0.21595523062382607, 0.7893005258376646, 0.7943839670531481], [0.9986541637514551, 0.5761621991759931, 1.000001, 0.9161866834252055, 0.9340419628376714, 0.9078951049315437, 0.5770612315012182, 0.8762377162459537, 0.7874484671197528, 0.6422585045091569, 0.8533263481266389, 0.7211305303212532, 0.5948593016021617, 0.9152275110685018, 0.8541920435234454, 0.9263562053723421, 0.8635207126887611, 0.8913722096759997, 0.5895053773058064, 0.9710968607706338, 0.9684938660528118, 0.9151662194958884, 0.8401502541800406, 0.9950782808670263, 0.8944106784127315, 0.5999547765428568, 0.7872581452795435, 0.9481387651941964, 0.9758233793833412, 0.9666035993080185, 0.9080727799847323, 0.6632052899896577, 0.718437855693016, 0.8477344225168266, 0.7845081637775645, 0.900959838898466, 0.985320797047534, 0.8459116487396324, 0.9887291749050229, 0.9079359576815098, 0.8410307445009662, 0.8238837484620245, 0.8444656177144697, 0.9064265827062932, 0.9543869980620476, 0.9107192062201243, 0.9856270693739501, 0.952737590630274, 0.9562013421339708, 0.7556777447760993, 0.8401502541800406, 0.6506233522955008, 0.8885411553501288, 0.7590109952861629, 0.7119582727882352, 0.9237339340739433, 0.8829882244041928, 0.8179051317562074, 0.8829882236773928, 0.7199934821956202, 0.9393761480045408, 0.8270529769945912, 0.9805072351075927, 0.9543869980620476, 0.6956839860351911, 0.9810942956547193, 0.649993214335379, 0.991961445185011, 0.7083949101950285, 0.6352370483531977, 0.9593754616186655, 0.7358463264745319, 0.8153005877051922, 0.9262476441037127, 0.7155410587431995, 0.826847892780619, 0.7773082347881024, 0.7667824806487434, 0.8369325879152565, 0.8871141496091395], [0.9174213823767984, 0.3488541101833069, 0.9161866834252055, 1.000001, 0.7666115941106229, 0.998356379776942, 0.34327095961740023, 0.6476630714262405, 0.5546081648776459, 0.39705010801205404, 0.6451468245986549, 0.48279157257433264, 0.36319274031334214, 0.7082889152931701, 0.9448742666881934, 0.7222595479241063, 0.9853207968514368, 0.9964192980487987, 0.35152658933336667, 0.8785927559028016, 0.9262980466063405, 0.7124426928838412, 0.6056374128792075, 0.8973947087638358, 0.9747375105828036, 0.36531848810458845, 0.5459314125999198, 0.82077218163036, 0.828829911338292, 0.8885411562904624, 0.9808859105186319, 0.4190405828986771, 0.470312972020236, 0.6193241642179202, 0.5402733377044081, 0.6879200732024696, 0.8527345353714171, 0.9715694972559795, 0.9609559120589726, 0.8934986126583522, 0.9801984507026197, 0.9665226850513342, 0.6320067498151463, 0.7500998766696452, 0.9919780535348379, 0.9976086547028011, 0.9639803690189551, 0.9348193185337605, 0.7987224766581699, 0.5095132133461528, 0.6013029300286392, 0.4140541349630658, 0.9666035992511882, 0.5162399179962224, 0.47099557935636127, 0.9318424732251801, 0.6888096673202846, 0.9318424732251801, 0.9149593904185856, 0.4741778306450351, 0.8200004175004852, 0.5999547765428569, 0.9759867722903823, 0.983111654445824, 0.45599549810776807, 0.9748191130590287, 0.4047283748201754, 0.9318590504922328, 0.4597638695934443, 0.39154978105332133, 0.9879896939382755, 0.4886789439661222, 0.9170307411831135, 0.7413414743075535, 0.47991044379828435, 0.9717433633965824, 0.5308667404180223, 0.8867057934381001, 0.6052642479566098, 0.6649432359636387], [0.9437359305432933, 0.7645967184822001, 0.9340419628376714, 0.7666115941106229, 1.000001, 0.7455034003910607, 0.6739405454953, 0.9438149370208655, 0.9349601925299972, 0.7603106961097108, 0.8263289167763265, 0.8874158960605983, 0.7777036428796603, 0.9806139470163439, 0.6497076071184162, 0.9740237828569237, 0.6784130484337935, 0.7467791909069532, 0.7322361907783574, 0.8589614517777916, 0.9349601925034152, 0.9082752006551164, 0.9464229052245113, 0.961366269899379, 0.7064058916169409, 0.7752636230710568, 0.9197263722847178, 0.8496855929352066, 0.9879690171098708, 0.9639803689641409, 0.8044800550675213, 0.8199480775147837, 0.8021599715902029, 0.8680787386333545, 0.8451365868102719, 0.9106039006386335, 0.9282367276198306, 0.649649821761398, 0.8778364353783288, 0.7299159092521722, 0.653892009014255, 0.6261710416856678, 0.8236225639114023, 0.8197936505520969, 0.8341373890693613, 0.7739885756687347, 0.8992418444580319, 0.7958233483451524, 0.9974635607186607, 0.8226087851041688, 0.9174194618751476, 0.8298227003072762, 0.6963307306120406, 0.903017450508975, 0.875582367745244, 0.7464416824108754, 0.8401502542813202, 0.606527219659331, 0.687574630280845, 0.8684058149966686, 0.829350456490465, 0.9573907797272536, 0.8716231687826298, 0.8023077201772926, 0.8650726925886085, 0.8653850540345901, 0.7937931610561964, 0.8859267282553916, 0.8439753257732954, 0.7813449649997835, 0.8478124900758982, 0.8743664640142016, 0.6018726396460039, 0.8893039079628882, 0.8874158960353681, 0.6333328139585227, 0.8499835024615652, 0.5476015100628726, 0.8631737973703202, 0.9166421865158958], [0.9066732267894504, 0.33323216751683554, 0.9078951049315437, 0.998356379776942, 0.7455034003910607, 1.000001, 0.33735469380269295, 0.6349519454350309, 0.5350136229391883, 0.3877598433216918, 0.6454831090501851, 0.4643474521164309, 0.3477595904781508, 0.692307111610582, 0.9612696992952963, 0.7082889138571692, 0.9928597290872911, 0.992398543023504, 0.3409493974498648, 0.8816540863080472, 0.9080727799847322, 0.7072860840469769, 0.5895053758501163, 0.8842346230435907, 0.9851475942038161, 0.3507384466108451, 0.5291723678626903, 0.824625511804147, 0.8130275666364882, 0.8682031954329027, 0.9684938660528118, 0.40472837355744823, 0.46261359596913465, 0.6142974797928155, 0.5330159019335226, 0.6815145919474521, 0.8478124889294363, 0.9831116549584373, 0.9573907797272536, 0.9079359576815097, 0.9879896939382755, 0.9782935295904592, 0.6319591345039023, 0.7552081805398339, 0.9856270690262572, 0.9923985429651571, 0.9543869973887025, 0.9425634560022258, 0.7797546897113292, 0.5025206641976954, 0.5895053758501163, 0.3970501067281281, 0.9786826149008985, 0.49934724396268443, 0.45354566687254555, 0.9437833332875177, 0.6897834134633154, 0.9505627081479515, 0.9316835460606226, 0.458664414063811, 0.8258232288028918, 0.580315453843419, 0.9700365528212346, 0.9856270690262572, 0.4384456697395616, 0.9706173442412688, 0.3924296294736818, 0.930076295514407, 0.446456562282928, 0.37942512301424663, 0.9801984507026197, 0.4738231880093428, 0.937417144417064, 0.739282383187246, 0.4607483022027666, 0.981813204803214, 0.5224843231262231, 0.910490516195154, 0.5999937007851952, 0.656785910122218], [0.5670461686355017, 0.8658008032543261, 0.5770612315012182, 0.34327095961740023, 0.6739405454953, 0.33735469380269295, 1.000001, 0.8541920431348735, 0.8243770319064023, 0.9853043001578792, 0.8401502541800406, 0.853140636396705, 0.8817509623828919, 0.7833269210189445, 0.3294563693696067, 0.7863031141534597, 0.29730318707010167, 0.3112525018447722, 0.9708072940353885, 0.6042795411468376, 0.4816189066170525, 0.8130275666364882, 0.8533263481266389, 0.5869791689884947, 0.3507384466108451, 0.9037926303524507, 0.8723257551815403, 0.6647950444929068, 0.6630110004016206, 0.5272273515369381, 0.336728674549731, 0.9257079322658708, 0.9724879839850444, 0.886354202046587, 0.939700588156544, 0.836011771380735, 0.6672356976532359, 0.29039513561007935, 0.4980290842243522, 0.4733271339713113, 0.2742571410473668, 0.2678857021996235, 0.8520093896021103, 0.7199934821956204, 0.39976203264362964, 0.33394847008726936, 0.4780939608845323, 0.4875103438716287, 0.6677008657031378, 0.9556731769648894, 0.8909050244299641, 0.8698400451806079, 0.35221107657200534, 0.8784383138231844, 0.8724909912058392, 0.44638976037933875, 0.8035175832723886, 0.2947291211992467, 0.4051525350853989, 0.9064265827062933, 0.6497014886148089, 0.8089371868213848, 0.4602871292262315, 0.4218876968889665, 0.8689594002456935, 0.46555162014956253, 0.9551093235847642, 0.5494043295868545, 0.9388533473195692, 0.9565345959809499, 0.40958751049516917, 0.9137968495884613, 0.30596874607407554, 0.7771219901315912, 0.8374564699719007, 0.2659684726708205, 0.9439018521420344, 0.2717617219683382, 0.896723537806577, 0.8551624146446699], [0.8734885489966285, 0.8477344228783588, 0.8762377162459537, 0.6476630714262405, 0.9438149370208655, 0.6349519454350309, 0.8541920431348735, 1.000001, 0.9607266709540788, 0.9107192062201241, 0.9374171444170641, 0.9366787936460237, 0.8653850530170035, 0.9898927787884264, 0.5882206040107296, 0.9912361429889275, 0.5757824918482739, 0.6130625937505957, 0.8762377161961288, 0.8580720664094358, 0.8105131883535263, 0.9746273588267717, 0.991961445354227, 0.8913722098533994, 0.6292766814203568, 0.8743664640142016, 0.9761001423233474, 0.882942026187356, 0.9417855732726717, 0.8499843923519359, 0.6538920090142549, 0.9215172526859416, 0.9472502139752749, 0.9750282496574346, 0.9715694972559795, 0.983249516353534, 0.9230353371981991, 0.5583553392137673, 0.8046004449237587, 0.7201743249047518, 0.5465853409027426, 0.5300441142336614, 0.9393761481702295, 0.8901269260289156, 0.7174123987129126, 0.642258504509157, 0.7987224766581698, 0.7615807453446657, 0.9439956899461444, 0.9601799304081265, 0.9967227620292566, 0.8997162247263246, 0.6258959007866945, 0.9643728441578923, 0.9375427121783376, 0.7124426928838412, 0.9336696469526615, 0.5427853689089543, 0.6574735435551999, 0.9509656416342157, 0.8649278682386625, 0.9724147173342541, 0.7763084083668869, 0.7217193637785487, 0.927103882074802, 0.7777036442056621, 0.9172841115014877, 0.8401502540844946, 0.9502792641964434, 0.9077592594431583, 0.7298150950143951, 0.9609559120589726, 0.5488613105928408, 0.9517570827202918, 0.9283066652968242, 0.5313146710585601, 0.9736202479705482, 0.49805514279452007, 0.9747375105828036, 0.9915110518498116], [0.7949070016114278, 0.9349601925299972, 0.7874484671197528, 0.5546081648776459, 0.9349601925299972, 0.5350136229391883, 0.8243770319064023, 0.9607266709540788, 1.000001, 0.9029607558075493, 0.8164377716094242, 0.9925719819656076, 0.9430814149456714, 0.9613662696807164, 0.4601946608585216, 0.9472502145878924, 0.470312972020236, 0.5300441142336614, 0.8999563346253571, 0.7271919519628468, 0.7641392043296443, 0.8788538979905598, 0.9878139544914174, 0.8238837482980561, 0.5084746010155422, 0.940966975487254, 0.9943309297927577, 0.7464416817742076, 0.8931078792098552, 0.8163190280367412, 0.5905648776547698, 0.9613662691154921, 0.9039515292034053, 0.8870779458334558, 0.9107163466505415, 0.8967469959764723, 0.8200724997874886, 0.44689592961408764, 0.7018039216798955, 0.5715019806798618, 0.4451410539931335, 0.4229791004146841, 0.8210771377315167, 0.7475399221114725, 0.6306907255090707, 0.5592751594270334, 0.7174123985701343, 0.6272019226072904, 0.9168724219954474, 0.9027151212115837, 0.959837371150382, 0.9706173442412688, 0.5015225458201836, 0.9935955769358537, 0.9887291745000141, 0.5732179110916036, 0.8078679329857348, 0.41835709339588223, 0.5146439263518717, 0.9820937214008629, 0.7225203417589745, 0.9971703056863486, 0.6836595529135627, 0.6084425351554724, 0.9853455427047542, 0.6791730728022496, 0.9404708444172719, 0.728411250911064, 0.9644848648497774, 0.9340419618334527, 0.6465978827182454, 0.9806139470163439, 0.4192537442149699, 0.8384604702773314, 0.9919780535348379, 0.4275608898825221, 0.9236179468782649, 0.37168082009441555, 0.8899928075701463, 0.9184414772252036], [0.6362322559055564, 0.9257079322658707, 0.6422585045091569, 0.39705010801205404, 0.7603106961097108, 0.3877598433216918, 0.9853043001578792, 0.9107192062201241, 0.9029607558075493, 1.000001, 0.8548680571694022, 0.9261429711165196, 0.9393761480045408, 0.8548680571694021, 0.36400886783073455, 0.8527345364743992, 0.3404905354015379, 0.3652198744448336, 0.9915235025023552, 0.6476630714262404, 0.5596281675189895, 0.8529023084784063, 0.9196686295456561, 0.659789271234421, 0.3924296294736818, 0.9551093235847642, 0.9384820605297259, 0.6998605053882181, 0.739282383187246, 0.6098952737328532, 0.3997620326436297, 0.9747375110003811, 0.9869553496311564, 0.9124925479992088, 0.9622509442325962, 0.8762377161961288, 0.7222595493254322, 0.32960430140677766, 0.5572702291459934, 0.5045550692251644, 0.31607301857849124, 0.30596874720738776, 0.8653850540345901, 0.7424974730735928, 0.4607483035572252, 0.39045121244518016, 0.5451459063567868, 0.5300441142336614, 0.7498879783342572, 0.9724879839850444, 0.9397005889300247, 0.9358607175822842, 0.3919601312592671, 0.9442219267246744, 0.9403763732840669, 0.4840212840314609, 0.8242114217779429, 0.3265116566422064, 0.43693927581472164, 0.9638835360590399, 0.6815145933498626, 0.8884221508200958, 0.5224843245392912, 0.4733271353627478, 0.937417144417064, 0.5256210445686368, 0.9904688753379473, 0.6049128353516134, 0.9832495166051289, 0.9901735320959768, 0.47249971857826095, 0.968231417685186, 0.3356342663261219, 0.8130275666364882, 0.9140273269700752, 0.30541982532522455, 0.9700365533915565, 0.29730318817131657, 0.9215172533956153, 0.8979320071740756], [0.8355106496972872, 0.6909414349684134, 0.8533263481266389, 0.6451468245986549, 0.8263289167763265, 0.6454831090501851, 0.8401502541800406, 0.9374171444170641, 0.8164377716094242, 0.8548680571694022, 1.000001, 0.7865623388991969, 0.7155268316980351, 0.9037926303524507, 0.6612234418114228, 0.9236179475365387, 0.6052642482663614, 0.5990852698454634, 0.7906686408198145, 0.9086773248137322, 0.7310869865817836, 0.9839730937212698, 0.8906813097148725, 0.83846047092097, 0.6791730716363742, 0.7360519459778977, 0.8577847847580669, 0.948574419817572, 0.8680787386333547, 0.7548763415399387, 0.6069443482224847, 0.802159971590203, 0.9238344674518434, 0.9879690171098708, 0.9589238088845551, 0.9820567260445627, 0.9262476441037129, 0.6026030348784029, 0.8044320719418728, 0.8174191402763527, 0.573875097558147, 0.5713542868963427, 0.9997018147169242, 0.9759867722903823, 0.6977479467671279, 0.6246278938116088, 0.765788178788125, 0.8220365566552441, 0.8454868685971859, 0.948833526037197, 0.9388533473195692, 0.7465643225867674, 0.6836595515067383, 0.838411338577563, 0.7948704016419501, 0.7885550540833641, 0.997170305510466, 0.618221478824166, 0.7507005802250624, 0.830744524124988, 0.9426581481175212, 0.8373031258332254, 0.7614086267846283, 0.7452343117078689, 0.7794675274089575, 0.7719631972339667, 0.8207721821204069, 0.8541920435234452, 0.853326348126639, 0.8103139004683386, 0.7038934032753772, 0.8516109546726535, 0.634951945435031, 0.985320797047534, 0.7702557873540767, 0.5659086380743618, 0.9472502142715213, 0.5908300501157676, 0.985320797047534, 0.9738658138946555], [0.7279609162550453, 0.9704721143921127, 0.7211305303212532, 0.48279157257433264, 0.8874158960605983, 0.4643474521164309, 0.853140636396705, 0.9366787936460237, 0.9925719819656076, 0.9261429711165196, 0.7865623388991969, 1.000001, 0.9759867722903823, 0.9261875527001057, 0.39703556557388436, 0.909870483854286, 0.40335217483889513, 0.45866441543911024, 0.934138730079061, 0.6659487444078874, 0.6935513744359583, 0.8416593501533539, 0.9717433633965824, 0.7590109952861629, 0.4413137821619971, 0.9737985572439188, 0.9898927786195633, 0.6917806407414339, 0.8376396435503874, 0.7498024508395507, 0.5171677405307096, 0.983111654445824, 0.9107163466505415, 0.8648735642449861, 0.9039515292034053, 0.8639328545097177, 0.7622895486323958, 0.3821278135436176, 0.6313008295383481, 0.5095100131590299, 0.37949381731853066, 0.3595263859056566, 0.7933945531268184, 0.7011124730543398, 0.5572702291459933, 0.4868542347931476, 0.6453412817276881, 0.5608381651201351, 0.8650726925394182, 0.901370041849804, 0.9442219267246744, 0.9925719819656076, 0.4352799748372358, 0.9950782808670263, 0.999103619928808, 0.5080007403462532, 0.7713737287813007, 0.35772507822544286, 0.4520285431979573, 0.9923985429651571, 0.6676170279559935, 0.9809474975738153, 0.6113220565858605, 0.5376120137402951, 0.9986583438696832, 0.6073102875163128, 0.9646160771606282, 0.6611238127314409, 0.9775158216825277, 0.9608835138157958, 0.5730319949383031, 0.9879524758238862, 0.3595625032668285, 0.7958233467984535, 0.999401626842626, 0.3634208435910066, 0.9194954199089231, 0.31592355704569636, 0.8703071124583095, 0.8901269260289156], [0.5999547765428568, 0.9991036200443607, 0.5948593016021617, 0.36319274031334214, 0.7777036428796603, 0.3477595904781508, 0.8817509623828919, 0.8653850530170035, 0.9430814149456714, 0.9393761480045408, 0.7155268316980351, 0.9759867722903823, 1.000001, 0.8360117712143531, 0.2955849660764562, 0.8176201759597849, 0.2960158339078466, 0.3409493974498648, 0.9666035993080185, 0.5516464331725972, 0.5606157839304672, 0.7552081805398339, 0.9107192062201241, 0.6319187976590676, 0.33149980651856703, 0.9986541637514551, 0.9472977940058719, 0.586183670268998, 0.7199934821956204, 0.6190546235048261, 0.3919601312592671, 0.9879690169132466, 0.8955223166385512, 0.8021599709972367, 0.8653298153918361, 0.7833269205289836, 0.647272140407515, 0.2792722173192221, 0.5045550692251644, 0.40311630311621194, 0.2754498671023801, 0.25987061612137285, 0.7256268460145373, 0.607894593012066, 0.43036815676649487, 0.3658108094897906, 0.514697244624258, 0.44504790253387144, 0.7507005802250623, 0.8724334740025553, 0.8870473146900463, 0.9950907762292831, 0.3271631826757578, 0.9622509442325962, 0.9809474975738153, 0.39703556557388436, 0.6902931936558216, 0.2621429829102617, 0.3480621248173036, 0.9758233793833413, 0.563016747181301, 0.9174213823767983, 0.4827915725743326, 0.4164309431075553, 0.9854929989499192, 0.47991044364819535, 0.9760592864737305, 0.5376120123495306, 0.967810027785919, 0.9775158216825277, 0.4447895099276112, 0.9668291843319363, 0.26514565715563443, 0.7033036585440673, 0.9748191131421746, 0.2625283996853202, 0.8844178472497787, 0.22944996789195388, 0.81154433004161, 0.8153005877051922], [0.9172841115014876, 0.8199480787199814, 0.9152275110685018, 0.7082889152931701, 0.9806139470163439, 0.692307111610582, 0.7833269210189445, 0.9898927787884264, 0.9613662696807164, 0.8548680571694021, 0.9037926303524507, 0.9261875527001057, 0.8360117712143531, 1.000001, 0.6261710403235125, 0.9983563799207928, 0.6292766815634857, 0.6785124425115617, 0.822036556655244, 0.8740033025752363, 0.8743664637656084, 0.9612696992952964, 0.9854929989499193, 0.9349601925034151, 0.6739088114412017, 0.8401502541800406, 0.9639803689641409, 0.8844178478029706, 0.9755487362645686, 0.9098704829983693, 0.7258941729206251, 0.8875486971800002, 0.8955232542584423, 0.9429037971568042, 0.9295372712027121, 0.9668919121897283, 0.9407749898485963, 0.6073102877235118, 0.8494633406094301, 0.7387773948908036, 0.6013029301483096, 0.5803154554579063, 0.9035231326911272, 0.875252588579318, 0.778052844771195, 0.7074415266466035, 0.8539239330748016, 0.7906686408198145, 0.9801984507026197, 0.9126271919689529, 0.9761001423233474, 0.8790893597035863, 0.6678853473643857, 0.9495685402420148, 0.9215172525287423, 0.740964553233744, 0.9082752006551162, 0.5809108691706205, 0.6837776018478463, 0.926356205372342, 0.8653298161041011, 0.9782935289931369, 0.829450265930922, 0.7687942666029208, 0.9107192062201241, 0.8279621942906116, 0.8734885489966286, 0.8743664637656084, 0.9152275110685019, 0.862358555236773, 0.7910369065268521, 0.9349601925299972, 0.5828654335354427, 0.9403763730076251, 0.9212116223442566, 0.5837993628817008, 0.9326228788107306, 0.529848913383034, 0.9403763730076251, 0.9738658138946555], [0.8408758658177512, 0.2802030759050779, 0.8541920435234454, 0.9448742666881934, 0.6497076071184162, 0.9612696992952963, 0.3294563693696067, 0.5882206040107296, 0.4601946608585216, 0.36400886783073455, 0.6612234418114228, 0.39703556557388436, 0.2955849660764562, 0.6261710403235125, 1.000001, 0.650671011259686, 0.9775158220160315, 0.9236179474822357, 0.3110060442268855, 0.8870176118637455, 0.8018268008404568, 0.692307111610582, 0.5287561217784622, 0.8103139004683386, 0.9934417107345684, 0.30243033521853724, 0.46787874597078377, 0.8416602310072926, 0.7362121692033001, 0.7593279649350072, 0.8675084668742538, 0.3574343407001926, 0.4458557048960355, 0.6056374128792075, 0.5167809453289043, 0.6623127243831451, 0.8199480775147837, 0.9878139547160956, 0.9159604538120725, 0.9593754616186654, 0.970386814109524, 0.9806139473046143, 0.6465978812736379, 0.7857281845549219, 0.9184414773415748, 0.9214169714847839, 0.8829882236773928, 0.9573907797272537, 0.6910368793558801, 0.48838653160347906, 0.5494043295868545, 0.33747473996913563, 0.9964192980487987, 0.43835208472996046, 0.391064556426437, 0.9759867722903823, 0.7057497896988792, 0.9971703056863486, 0.9856270693739501, 0.40506097005526204, 0.8520093883530785, 0.5033553502063932, 0.9126271913250705, 0.9634902514784914, 0.37579029276259796, 0.9219609347636594, 0.35454735839623286, 0.9037954679766023, 0.40335217502238, 0.34238952470962997, 0.9079359576815097, 0.42297909912151826, 0.996419297935481, 0.7367277390000702, 0.3902032849093987, 0.9747619912592574, 0.5011437807190248, 0.9853207971410909, 0.590830048673604, 0.6306907241884409], [0.9259404442142919, 0.7999939028986078, 0.9263562053723421, 0.7222595479241063, 0.9740237828569237, 0.7082889138571692, 0.7863031141534597, 0.9912361429889275, 0.9472502145878924, 0.8527345364743992, 0.9236179475365387, 0.909870483854286, 0.8176201759597849, 0.9983563799207928, 0.650671011259686, 1.000001, 0.6476630699792534, 0.6902382988181721, 0.8143669285665986, 0.8958203615892751, 0.8755090726119029, 0.9747375109430725, 0.9797739034719551, 0.9409669755942655, 0.695683984644525, 0.8238837484620244, 0.9543869980620475, 0.9075882936952884, 0.9774309252402548, 0.9080727791838958, 0.732063809449802, 0.8755823688263004, 0.899716225572689, 0.955268248578056, 0.9366787942518042, 0.9783907858720539, 0.955364216252585, 0.6276779321478052, 0.8644256956077785, 0.7667824795216908, 0.6190546235048263, 0.5999547765428569, 0.9227919660978666, 0.9000740584356429, 0.7896177502517278, 0.7188093342012383, 0.8635207126887611, 0.8142817145394847, 0.9774022872147656, 0.9193674603854752, 0.9774309256999901, 0.8610303600392769, 0.6907050482282698, 0.938155096373192, 0.90636872609293, 0.7665217516281136, 0.9290267506428452, 0.6052642482663614, 0.7111786764015647, 0.9152275110685018, 0.8901269260289155, 0.9665226850513342, 0.8420381490845458, 0.7872581452795437, 0.8944106793592768, 0.8420381490845458, 0.8650726936583595, 0.8913722086802628, 0.9077592603780216, 0.8535406804973987, 0.801596095232833, 0.9259404450853256, 0.6085756150082512, 0.9578356967116834, 0.9033586374036988, 0.602473780056203, 0.9375427125199327, 0.5557061165248861, 0.9521395998492446, 0.982506937108431], [0.8592671095478935, 0.2822973468360967, 0.8635207126887611, 0.9853207968514368, 0.6784130484337935, 0.9928597290872911, 0.29730318707010167, 0.5757824918482739, 0.470312972020236, 0.3404905354015379, 0.6052642482663614, 0.40335217483889513, 0.2960158339078466, 0.6292766815634857, 0.9775158220160315, 0.6476630699792534, 1.000001, 0.979424353444859, 0.29477322719827886, 0.8527345353714171, 0.8554362856956238, 0.6584588000491302, 0.5269598449315058, 0.8320181664106687, 0.9898927786195633, 0.29962558040733084, 0.4674148375769052, 0.7937931610561964, 0.753240617748872, 0.8091403701181339, 0.9388533473195692, 0.35073844661084513, 0.4140541349630657, 0.5657896220361549, 0.48279157257433264, 0.6306907240629218, 0.8035175832723886, 0.9973111825423355, 0.9259404442142919, 0.9058481805152975, 0.9986583438696832, 0.9959773028067876, 0.5911708060283509, 0.7243894669643588, 0.9589238083207668, 0.9747619906678568, 0.9153328649954712, 0.9292134223796332, 0.7155410587431997, 0.4535456682324963, 0.5320306958173799, 0.3408049329016396, 0.985753937279537, 0.43844566973956145, 0.39397257749686465, 0.9404708447648756, 0.6506710126368824, 0.9747375110003811, 0.9395707991928969, 0.40081087589539416, 0.7987550718460049, 0.5144161768224982, 0.9381550956009835, 0.9704721137939429, 0.37949381731853077, 0.9409669755942656, 0.34130671763501785, 0.8973947087128076, 0.3915497810978504, 0.3292099654986608, 0.9502315344422311, 0.41604155380694435, 0.9624170998716911, 0.6956839860351912, 0.39926872031719685, 0.9971703056863486, 0.4709955792626244, 0.9448742668548519, 0.5512984585658233, 0.6034662798532654], [0.8957847416915156, 0.32788256671067273, 0.8913722096759997, 0.9964192980487987, 0.7467791909069532, 0.992398543023504, 0.3112525018447722, 0.6130625937505957, 0.5300441142336614, 0.3652198744448336, 0.5990852698454634, 0.45866441543911024, 0.3409493974498648, 0.6785124425115617, 0.9236179474822357, 0.6902382988181721, 0.979424353444859, 1.000001, 0.32373856102014587, 0.8405899440750491, 0.919726373149906, 0.6711430993519073, 0.5753518580400597, 0.8762377161961288, 0.957390779632027, 0.3417155421187494, 0.5173999565796045, 0.7777988642666225, 0.8044800550675211, 0.8790893609372362, 0.9879690171098708, 0.39196013122583534, 0.433635597624809, 0.5771850339829402, 0.5011201839653928, 0.6472721400762657, 0.8178229715267894, 0.9622892077649203, 0.9393928592581859, 0.8558427778934484, 0.9778299001075319, 0.9607266709540788, 0.586183670268998, 0.7032212378638245, 0.9849033063365636, 0.9988077923658785, 0.950279264142408, 0.9029607558075493, 0.7771219914566013, 0.4708989897876245, 0.5657896220361549, 0.39102281922045623, 0.9471312748585, 0.48867894396612216, 0.44585570489603543, 0.9000740588589936, 0.6426928099410505, 0.9130513061188988, 0.8826981427559704, 0.4461894146347528, 0.7761345842877898, 0.5747495118069242, 0.9609559120589727, 0.9644848648497774, 0.43165807526230837, 0.957511007392001, 0.37586501555135504, 0.903358637069812, 0.42953177751665333, 0.36319274023073383, 0.9809474975738153, 0.45928253450933604, 0.8942497124569735, 0.698357877796996, 0.4570201619639115, 0.968231417685186, 0.4929871398776083, 0.8646672442879692, 0.5634092589392741, 0.6256581995628495], [0.5866015420096519, 0.9576763450305128, 0.5895053773058064, 0.35152658933336667, 0.7322361907783574, 0.3409493974498648, 0.9708072940353885, 0.8762377161961288, 0.8999563346253571, 0.9915235025023552, 0.7906686408198145, 0.934138730079061, 0.9666035993080185, 0.822036556655244, 0.3110060442268855, 0.8143669285665986, 0.29477322719827886, 0.32373856102014587, 1.000001, 0.5821419065335195, 0.5207954516074879, 0.7969316977800472, 0.8992418444580317, 0.6130625937505956, 0.33993054257580785, 0.9783907862058562, 0.9292134231444817, 0.6313008295383482, 0.6978735415248608, 0.5738750975581469, 0.3615224634954281, 0.9831116549584372, 0.9589238088845551, 0.8610303600392769, 0.9238344674518434, 0.8238837482980561, 0.6639003407250325, 0.2829698905525724, 0.5027210529369501, 0.43859526415201927, 0.27273945819780293, 0.2618194956694876, 0.8023077201772925, 0.6711430993519073, 0.414054136277633, 0.3477595916844725, 0.4969618775738708, 0.46741483895096125, 0.7155410587431995, 0.936725842544896, 0.9078951058923593, 0.955268248578056, 0.33850925876332033, 0.940774989554375, 0.9479195254698286, 0.4218876968889665, 0.758010906849611, 0.2765649996043799, 0.3758768145119959, 0.9643728446681851, 0.6114544892379884, 0.8778364350039591, 0.47191269772920225, 0.41904058421716184, 0.9486121395640261, 0.4733271353627477, 0.993900261274419, 0.5463400260303543, 0.9787481604246967, 0.9959773028067876, 0.426266264189537, 0.9635265482045984, 0.28369479443998663, 0.7508773498622136, 0.9246817015586163, 0.2621331086518102, 0.9363318818918163, 0.24838568441454265, 0.8716231685100352, 0.8508627245056744], [0.9576763445676382, 0.5298489133830337, 0.9710968607706338, 0.8785927559028016, 0.8589614517777916, 0.8816540863080472, 0.6042795411468376, 0.8580720664094358, 0.7271919519628468, 0.6476630714262404, 0.9086773248137322, 0.6659487444078874, 0.5516464331725972, 0.8740033025752363, 0.8870176118637455, 0.8958203615892751, 0.8527345353714171, 0.8405899440750491, 0.5821419065335195, 1.000001, 0.886920156693083, 0.9345405697599048, 0.802307719045194, 0.9462842657081195, 0.9057240142420158, 0.5634092592916794, 0.7455244632617416, 0.9928597290872911, 0.9240935841885762, 0.8814880372743973, 0.8315881809300634, 0.6333328125807876, 0.7367277389791239, 0.8766311600832484, 0.8044800550675211, 0.9161866835033503, 0.9853207968514368, 0.8494633404645224, 0.968231417685186, 0.9668291843319364, 0.8270529769945913, 0.8238837482980563, 0.8992418435063736, 0.9692745384087718, 0.9075882943356157, 0.8588347250616103, 0.9372964977106257, 0.9810942956547193, 0.8904623103132122, 0.7781692798145962, 0.8296559956386549, 0.6008368614633728, 0.9073518448194472, 0.7157694654984279, 0.6630110004016203, 0.963259397944873, 0.9363318820781638, 0.8529023084784064, 0.9363318813074559, 0.6846883473534079, 0.991961445185011, 0.7669726666037333, 0.9442219267246744, 0.9464229058922377, 0.6451468245986548, 0.952737590630274, 0.6338565882821376, 0.9878139545418634, 0.6879200734762874, 0.6194667564818869, 0.9085175941060234, 0.705652312562771, 0.8609402644065451, 0.9578206631793302, 0.6552729038205873, 0.8199480787199817, 0.790445281735374, 0.8199480787199817, 0.8654611231633262, 0.8945791621406876], [0.9794243537511678, 0.5465853409027425, 0.9684938660528118, 0.9262980466063405, 0.9349601925034152, 0.9080727799847322, 0.4816189066170525, 0.8105131883535263, 0.7641392043296443, 0.5596281675189895, 0.7310869865817836, 0.6935513744359583, 0.5606157839304672, 0.8743664637656084, 0.8018268008404568, 0.8755090726119029, 0.8554362856956238, 0.919726373149906, 0.5207954516074879, 0.886920156693083, 1.000001, 0.8205489049701942, 0.792650191353681, 0.9806139470163439, 0.8578781406950989, 0.5583553377693413, 0.7436568304642591, 0.845486868597186, 0.955364216252585, 0.9950907762292831, 0.9579640003462558, 0.6113220551481813, 0.6222473703135132, 0.7425790581078866, 0.6855780667067038, 0.8083051069702175, 0.9184414773415748, 0.825540699168788, 0.9598373715870118, 0.8149184676367427, 0.8396545602226124, 0.8103139015164512, 0.7222021097897028, 0.7858885296423679, 0.9643728446681851, 0.9363318820781638, 0.9853043003316687, 0.8826981427559702, 0.948574419817572, 0.6552729038205874, 0.7665217516281136, 0.6201672318284825, 0.8451365868102722, 0.717412397320991, 0.6778020941680508, 0.8496855929352066, 0.7637650778995365, 0.7686695817610159, 0.8030065295160298, 0.6712414270818781, 0.8321705415447115, 0.8035175832723888, 0.9714129430730337, 0.9248016925064181, 0.6639003392808018, 0.9638835360590399, 0.5856735487230301, 0.9419008838206482, 0.6455803807629358, 0.5713542854854733, 0.9717433636176054, 0.6815145921605914, 0.7552982757958308, 0.8245254206978266, 0.6939666254367329, 0.8200724997874886, 0.6837776013618302, 0.7052536847648404, 0.7318064625018902, 0.7997135119609734], [0.9041407321099965, 0.7327627782351995, 0.9151662194958884, 0.7124426928838412, 0.9082752006551164, 0.7072860840469769, 0.8130275666364882, 0.9746273588267717, 0.8788538979905598, 0.8529023084784063, 0.9839730937212698, 0.8416593501533539, 0.7552081805398339, 0.9612696992952964, 0.692307111610582, 0.9747375109430725, 0.6584588000491302, 0.6711430993519073, 0.7969316977800472, 0.9345405697599048, 0.8205489049701942, 1.000001, 0.939446925842927, 0.9106048539955403, 0.7222595479651758, 0.7699278111160108, 0.9058481805152975, 0.9593754616186654, 0.9388533473195693, 0.8457434804522698, 0.6910368793558802, 0.8330592326413704, 0.9172841114754081, 0.9879896938540061, 0.9578206631793302, 0.9986583438980763, 0.9669930954056607, 0.6485358945231584, 0.8637403171310604, 0.829655995638655, 0.6276779321478053, 0.618221478824166, 0.9825069369351348, 0.9678100277859191, 0.7705468133045098, 0.6980904648583566, 0.8396545602226125, 0.8535406804973988, 0.9232266010949174, 0.9426581480639193, 0.9668291843319364, 0.7941088670259452, 0.722691987451516, 0.8859267282553916, 0.8444656177144697, 0.8143669273217248, 0.9876578829352173, 0.6476630714262405, 0.7687942652921097, 0.8694696657619346, 0.9488335258213848, 0.9018427152949098, 0.8293669463364872, 0.7987224766581699, 0.8295934900143817, 0.8358455727154092, 0.8387272381484536, 0.9030174505089751, 0.8787904447843367, 0.8270529772532468, 0.7787337878901945, 0.8870473146900463, 0.6584587998993637, 0.995977302546165, 0.829158684319908, 0.6160052336113649, 0.9507059538229675, 0.6094040535590814, 0.9841666867492452, 0.993900261274419], [0.842038149108486, 0.8969572176547458, 0.8401502541800406, 0.6056374128792075, 0.9464229052245113, 0.5895053758501163, 0.8533263481266389, 0.991961445354227, 0.9878139544914174, 0.9196686295456561, 0.8906813097148725, 0.9717433633965824, 0.9107192062201241, 0.9854929989499193, 0.5287561217784622, 0.9797739034719551, 0.5269598449315058, 0.5753518580400597, 0.8992418444580317, 0.802307719045194, 0.792650191353681, 0.939446925842927, 1.000001, 0.8654611231633264, 0.5738390672502784, 0.9152275110685018, 0.9946441660688601, 0.8255406981980536, 0.9259404442142919, 0.8387272367519708, 0.6258959007866947, 0.950848226251769, 0.9395707991928969, 0.9448742666881934, 0.9551093237532278, 0.9528652102042773, 0.8818201671759954, 0.5064461204090932, 0.7604889327422746, 0.6531636922734458, 0.49934724406206393, 0.47991044379828435, 0.8941411717697088, 0.8307445241249881, 0.6793251792608451, 0.6049128353000182, 0.7644823142588388, 0.701966238062114, 0.9381550956009835, 0.9455973091548363, 0.9904688753379473, 0.9417855730584627, 0.5687100365138147, 0.9879896938540061, 0.9708885671510405, 0.6496498204245583, 0.8839570823713591, 0.48443120747671997, 0.5920480309065351, 0.9759867722903822, 0.8043579991079223, 0.9926945498705181, 0.7363970856760429, 0.6712414285026135, 0.9635265482045985, 0.7350759556888558, 0.9397005889300247, 0.792650191353681, 0.9682962635890365, 0.9316084792626601, 0.6935513743965214, 0.9809474976017047, 0.48809480387648024, 0.9075882936952883, 0.9665226850513342, 0.48279157257433264, 0.9622892077649203, 0.4381755212206906, 0.9462842657081195, 0.9677857225926366], [0.9982101325935507, 0.6146241166484622, 0.9950782808670263, 0.8973947087638358, 0.961366269899379, 0.8842346230435907, 0.5869791689884947, 0.8913722098533994, 0.8238837482980561, 0.659789271234421, 0.83846047092097, 0.7590109952861629, 0.6319187976590676, 0.9349601925034151, 0.8103139004683386, 0.9409669755942655, 0.8320181664106687, 0.8762377161961288, 0.6130625937505956, 0.9462842657081195, 0.9806139470163439, 0.9106048539955403, 0.8654611231633264, 1.000001, 0.8581636569778723, 0.6344770581854526, 0.8172968323986916, 0.9227919660978667, 0.9891731290893809, 0.984853837689567, 0.9063687260929302, 0.693862789374005, 0.7284112512838371, 0.8457629511681103, 0.7906686408198145, 0.8999563346253571, 0.9760592868067373, 0.8092216577858194, 0.9739269603993241, 0.8648735649089005, 0.8096282165492308, 0.7874484673884105, 0.830744524124988, 0.8798071721554417, 0.9432225471711784, 0.8973947087128077, 0.9810942956547193, 0.9195762472410416, 0.9774309256999902, 0.7622895486323958, 0.8551624146446699, 0.68889688686308, 0.849984392351936, 0.791036906526852, 0.7480094142323735, 0.8844178478029707, 0.8658008036558985, 0.7719631972339667, 0.837359202943859, 0.7508129220219302, 0.9104447844389136, 0.860940264406545, 0.9693110528884941, 0.9292134231444819, 0.7328793372878342, 0.9669930954056607, 0.6757766279704784, 0.9747619906678568, 0.734086663843127, 0.6612234418114226, 0.9507059537959378, 0.7641392043296442, 0.7669726666037333, 0.9142253349300097, 0.7553852210313087, 0.792650192611961, 0.7866981583643782, 0.7155343200193772, 0.8359829023077068, 0.890905024429964], [0.885223375033956, 0.3157559929125692, 0.8944106784127315, 0.9747375105828036, 0.7064058916169409, 0.9851475942038161, 0.3507384466108451, 0.6292766814203568, 0.5084746010155422, 0.3924296294736818, 0.6791730716363742, 0.4413137821619971, 0.33149980651856703, 0.6739088114412017, 0.9934417107345684, 0.695683984644525, 0.9898927786195633, 0.957390779632027, 0.33993054257580785, 0.9057240142420158, 0.8578781406950989, 0.7222595479651758, 0.5738390672502784, 0.8581636569778723, 1.000001, 0.33735469380269295, 0.5120354393112806, 0.8573405865075022, 0.7866981583643783, 0.817761357114162, 0.9149593902572036, 0.3939725774968649, 0.473823188049757, 0.6329598044201886, 0.5459314125999198, 0.6938627893740053, 0.8529023072523144, 0.9919780537700427, 0.9488335251519578, 0.9553242285999477, 0.9820937217473095, 0.984166687154286, 0.6649432347830957, 0.7970067538747155, 0.9565666260166984, 0.9573907795757383, 0.9262476434502207, 0.9682962630197378, 0.7455244632617418, 0.5162399179962224, 0.5877437642151934, 0.3773546802278547, 0.999401626842626, 0.4817323146686802, 0.4336355963245584, 0.9782935291878356, 0.7236167038395771, 0.985320797337188, 0.9773818324174758, 0.4451410526583838, 0.8637403160646252, 0.5531823303688713, 0.9499263202061194, 0.9856270690262572, 0.4179457840047692, 0.9562013415717832, 0.3877598433216918, 0.9328639613703467, 0.4398256082495327, 0.37491008629914085, 0.9484553139932368, 0.4626135957981499, 0.9804579870887231, 0.7617417425044806, 0.4352799748372358, 0.981813204803214, 0.5319510897229668, 0.9608835145664025, 0.6182214773702609, 0.6646955732828934], [0.6034662799390518, 0.9959689650301075, 0.5999547765428568, 0.36531848810458845, 0.7752636230710568, 0.3507384466108451, 0.9037926303524507, 0.8743664640142016, 0.940966975487254, 0.9551093235847642, 0.7360519459778977, 0.9737985572439188, 0.9986541637514551, 0.8401502541800406, 0.30243033521853724, 0.8238837484620244, 0.29962558040733084, 0.3417155421187494, 0.9783907862058562, 0.5634092592916794, 0.5583553377693413, 0.7699278111160108, 0.9152275110685018, 0.6344770581854526, 0.33735469380269295, 1.000001, 0.9502792641964433, 0.6008368619075188, 0.7222595479651758, 0.6160052320400753, 0.39037971772219604, 0.9928597290872911, 0.9137968501340491, 0.8200004180366985, 0.8829882236773927, 0.7978779294199442, 0.6569323165888166, 0.28369479456903934, 0.5097916011384812, 0.4146798222226873, 0.2785586130525709, 0.26374904032559604, 0.7464416824108753, 0.6258939355645519, 0.43211045952967814, 0.36663282003917774, 0.5167809453289043, 0.4545377148073974, 0.7503636556805153, 0.8910364824479085, 0.8978643574705218, 0.9928597289743782, 0.333539863055029, 0.9644132106468121, 0.9805072351075927, 0.40659528962946817, 0.7094572161039621, 0.2684547967552191, 0.3577250773636271, 0.9797739034719551, 0.5781280091495107, 0.9161866834252054, 0.4860535228141575, 0.4218876968889665, 0.9841666867492452, 0.4840212840314608, 0.9853043001578792, 0.5451459049465326, 0.9761001423233473, 0.9867746313400597, 0.4461894146601243, 0.9724879841232896, 0.2722621159556099, 0.7189454907553113, 0.9708885671510407, 0.2659684726708205, 0.9008467119056304, 0.23624382429110463, 0.8295934900143817, 0.8289556792510795], [0.790445281735374, 0.9363318820781638, 0.7872581452795435, 0.5459314125999198, 0.9197263722847178, 0.5291723678626903, 0.8723257551815403, 0.9761001423233474, 0.9943309297927577, 0.9384820605297259, 0.8577847847580669, 0.9898927786195633, 0.9472977940058719, 0.9639803689641409, 0.46787874597078377, 0.9543869980620475, 0.4674148375769052, 0.5173999565796045, 0.9292134231444817, 0.7455244632617416, 0.7436568304642591, 0.9058481805152975, 0.9946441660688601, 0.8172968323986916, 0.5120354393112806, 0.9502792641964433, 1.000001, 0.7726169814746996, 0.8875486971800002, 0.7949070003495652, 0.570636090491848, 0.9755487362645686, 0.9429037971568043, 0.9225592787150418, 0.9471312748028143, 0.923733933627474, 0.8327245560935652, 0.4470769428134796, 0.701643109995996, 0.5912048310619041, 0.44107786605523963, 0.4218876968889665, 0.8631737978778135, 0.782596917900147, 0.6204456976482948, 0.5465853409027426, 0.7082889152730323, 0.6399527408809798, 0.9057240142420157, 0.9416200228943381, 0.9804579870887231, 0.9708885671510407, 0.5068516977564953, 0.9986583438696832, 0.9901983996244028, 0.5869791689884947, 0.8457434804522697, 0.4253452676440689, 0.5298489120746557, 0.9924234665142825, 0.7500998766696451, 0.9915235025023552, 0.6778020956026725, 0.6094040535590814, 0.9856270693739501, 0.6757766279704783, 0.9635265482045985, 0.7348075535751092, 0.9840060431476447, 0.957511007392001, 0.6353321111163406, 0.993900261274419, 0.428815019894083, 0.8673287447118297, 0.985753937279537, 0.42492886767959365, 0.9576763445676382, 0.38152728676584774, 0.9261429711165196, 0.9438149366183581], [0.9316835455043555, 0.5630167476775262, 0.9481387651941964, 0.82077218163036, 0.8496855929352066, 0.824625511804147, 0.6647950444929068, 0.882942026187356, 0.7464416817742076, 0.6998605053882181, 0.948574419817572, 0.6917806407414339, 0.586183670268998, 0.8844178478029706, 0.8416602310072926, 0.9075882936952884, 0.7937931610561964, 0.7777988642666225, 0.6313008295383482, 0.9928597290872911, 0.845486868597186, 0.9593754616186654, 0.8255406981980536, 0.9227919660978667, 0.8573405865075022, 0.6008368619075188, 0.7726169814746996, 1.000001, 0.9130513061188988, 0.8473512870420145, 0.770365412811396, 0.6722015927672159, 0.788555054083364, 0.9161866835033503, 0.8508627245056744, 0.9439018521420344, 0.9817638908746703, 0.792650192611961, 0.934138730079061, 0.948574419817572, 0.765305125252038, 0.764206375004177, 0.9409669755942655, 0.9915235025023552, 0.8559824990339194, 0.7984818018137859, 0.8967469965628717, 0.955673177639142, 0.8798071721554418, 0.8279621942906116, 0.8618957536125641, 0.6316332003247639, 0.860940264406545, 0.7444369731147064, 0.692028980415862, 0.9349601925034151, 0.9693110528884941, 0.8044800550675212, 0.9066732268667839, 0.7189454907553114, 0.9991036199875492, 0.782596917900147, 0.9023071385945021, 0.9033586374036988, 0.6741838923564812, 0.912627191968953, 0.6784130484337934, 0.9644848651788352, 0.7284112512838373, 0.6645954214214094, 0.857878140695099, 0.7409645527913467, 0.8169300185580348, 0.9797739034719551, 0.6790629219551478, 0.758737031115246, 0.836011771380735, 0.7752636243928983, 0.9066732268667838, 0.9238344674518434], [0.979773903471955, 0.7032197666465738, 0.9758233793833412, 0.828829911338292, 0.9879690171098708, 0.8130275666364882, 0.6630110004016206, 0.9417855732726717, 0.8931078792098552, 0.739282383187246, 0.8680787386333547, 0.8376396435503874, 0.7199934821956204, 0.9755487362645686, 0.7362121692033001, 0.9774309252402548, 0.753240617748872, 0.8044800550675211, 0.6978735415248608, 0.9240935841885762, 0.955364216252585, 0.9388533473195693, 0.9259404442142919, 0.9891731290893809, 0.7866981583643783, 0.7222595479651758, 0.8875486971800002, 0.9130513061188988, 1.000001, 0.9736202482196792, 0.8459116487396324, 0.7777036428354384, 0.7978779294199443, 0.8901269260289155, 0.8507131567845042, 0.9348193185337605, 0.9724147175057701, 0.7291120729304098, 0.9342325754900309, 0.8158664205964018, 0.7279609162550454, 0.7046451051938958, 0.8631737973703203, 0.8817509623828919, 0.8874158970788601, 0.8298227015033953, 0.9430814157219349, 0.8726663037322429, 0.9964192980487987, 0.8258232298225118, 0.9127341566647583, 0.7739885742170346, 0.7787337878901944, 0.8654611231633264, 0.8279621930736343, 0.8295934900143817, 0.8870779465144153, 0.693671133768334, 0.7761345848835843, 0.8298227002836834, 0.8970792419954237, 0.9230353363298982, 0.9242792657115291, 0.8716231685100352, 0.8143669273217248, 0.9215172533956152, 0.7590109952861631, 0.943995689624077, 0.8130275666364885, 0.7453278956635284, 0.8979320071740755, 0.8410307445009662, 0.6910368788450572, 0.9316835455043555, 0.8341373878923496, 0.7097245282903177, 0.8499843919411122, 0.6372343566781393, 0.8829882231501994, 0.9326228788107306], [0.9783907862058562, 0.6053655946233132, 0.9666035993080185, 0.8885411562904624, 0.9639803689641409, 0.8682031954329027, 0.5272273515369381, 0.8499843923519359, 0.8163190280367412, 0.6098952737328532, 0.7548763415399387, 0.7498024508395507, 0.6190546235048261, 0.9098704829983693, 0.7593279649350072, 0.9080727791838958, 0.8091403701181339, 0.8790893609372362, 0.5738750975581469, 0.8814880372743973, 0.9950907762292831, 0.8457434804522698, 0.8387272367519708, 0.984853837689567, 0.817761357114162, 0.6160052320400753, 0.7949070003495652, 0.8473512870420145, 0.9736202482196792, 1.000001, 0.926356206243767, 0.6672356962409789, 0.6677008657031378, 0.7757180566243486, 0.7269340358914246, 0.8373592023248729, 0.9257079320481669, 0.7780699425277688, 0.9437833336759384, 0.7908258561981142, 0.7906686408198146, 0.7603106972719524, 0.7474836024365626, 0.7939850615616313, 0.9367258432608545, 0.8992418444580319, 0.9708560574197794, 0.860706060960043, 0.9724879839850444, 0.6979151673523666, 0.8091403690239667, 0.6785124411333093, 0.8051335751669252, 0.7707524500863535, 0.7340866624620136, 0.821868834932991, 0.7832277447262802, 0.7225203424163233, 0.7702557873540768, 0.7258941715549251, 0.8315203080593343, 0.8520093884499731, 0.9517570835756843, 0.8956047853703657, 0.7209637813660005, 0.9438149371177729, 0.6398101187299352, 0.9316835455043555, 0.6987650376711912, 0.6256581981650248, 0.9464229058922377, 0.734807553825807, 0.711009021585612, 0.8430238232905258, 0.7507005802250623, 0.7699278118551536, 0.7271919508084775, 0.6585724993456533, 0.7662907798638577, 0.8329197669716524], [0.9183213511928164, 0.37942512428579517, 0.9080727799847323, 0.9808859105186319, 0.8044800550675213, 0.9684938660528118, 0.336728674549731, 0.6538920090142549, 0.5905648776547698, 0.3997620326436297, 0.6069443482224847, 0.5171677405307096, 0.3919601312592671, 0.7258941729206251, 0.8675084668742538, 0.732063809449802, 0.9388533473195692, 0.9879690171098708, 0.3615224634954281, 0.8315881809300634, 0.9579640003462558, 0.6910368793558802, 0.6258959007866947, 0.9063687260929302, 0.9149593902572036, 0.39037971772219604, 0.570636090491848, 0.770365412811396, 0.8459116487396324, 0.926356206243767, 1.000001, 0.4398256082495327, 0.4639977345844487, 0.5990852698454633, 0.5298489133830339, 0.6710504020988527, 0.8308697142001165, 0.9125507956986673, 0.939446925842927, 0.8149184676367427, 0.9348193189855877, 0.9086335864656357, 0.5952920769434427, 0.6958521687602951, 0.9853043001578792, 0.9915110520471407, 0.9643728441578923, 0.8764027752362296, 0.8279621942906117, 0.499229690175641, 0.6052642482663614, 0.4461894146601244, 0.9013700425161078, 0.5426734876034268, 0.5018191470318252, 0.8619363404422258, 0.647835914917141, 0.8496855929352066, 0.8322645941174228, 0.49696187617139215, 0.7636787661867275, 0.6344770581854527, 0.9644848651788352, 0.9448742666881934, 0.48802126217105735, 0.9570091575917041, 0.41836716214821656, 0.9023071385945021, 0.4745545884102099, 0.40522758341249254, 0.985753937279537, 0.5081921466207787, 0.8289504739432196, 0.7094572166452272, 0.517477385107506, 0.9195762472410416, 0.5246884869778131, 0.7908258561981142, 0.586183670268998, 0.6544814096856099], [0.6646955733017915, 0.9806139473046142, 0.6632052899896577, 0.4190405828986771, 0.8199480775147837, 0.40472837355744823, 0.9257079322658708, 0.9215172526859416, 0.9613662691154921, 0.9747375110003811, 0.802159971590203, 0.983111654445824, 0.9879690169132466, 0.8875486971800002, 0.3574343407001926, 0.8755823688263004, 0.35073844661084513, 0.39196013122583534, 0.9831116549584372, 0.6333328125807876, 0.6113220551481813, 0.8330592326413704, 0.950848226251769, 0.693862789374005, 0.3939725774968649, 0.9928597290872911, 0.9755487362645686, 0.6722015927672159, 0.7777036428354384, 0.6672356962409789, 0.4398256082495327, 1.000001, 0.9505627078685152, 0.8777739724160513, 0.9295372706562014, 0.8581636569778723, 0.7236167038395771, 0.33448110766894545, 0.5730319950360553, 0.4808454220010344, 0.32724535721465525, 0.3120782702413214, 0.8115443306415134, 0.6977479455774525, 0.4886058244591899, 0.41853924760352856, 0.5760410268297532, 0.5207954516074879, 0.8002777382866284, 0.9346628175540543, 0.9417855732726717, 0.9904688751126652, 0.390451211360209, 0.9841666867492453, 0.9898927786195633, 0.4708989887398512, 0.7777988637676816, 0.3199414120012059, 0.41927875122180075, 0.9950907762292831, 0.6498945972046377, 0.9439018519541803, 0.5463400260614205, 0.48279157257433264, 0.990033663223564, 0.5453598671150177, 0.9959689650301075, 0.6113220551481813, 0.9949345959517677, 0.9950782808670263, 0.5027210515182186, 0.9924234665424984, 0.32487031973510905, 0.7863031129977148, 0.9778299001075319, 0.31395182331021354, 0.9438149366183582, 0.2849387015676599, 0.8859267282553916, 0.8852233753611399], [0.709145481170908, 0.8772368031332877, 0.718437855693016, 0.470312972020236, 0.8021599715902029, 0.46261359596913465, 0.9724879839850444, 0.9472502139752749, 0.9039515292034053, 0.9869553496311564, 0.9238344674518434, 0.9107163466505415, 0.8955223166385512, 0.8955232542584423, 0.4458557048960355, 0.899716225572689, 0.4140541349630657, 0.433635597624809, 0.9589238088845551, 0.7367277389791239, 0.6222473703135132, 0.9172841114754081, 0.9395707991928969, 0.7284112512838371, 0.473823188049757, 0.9137968501340491, 0.9429037971568043, 0.788555054083364, 0.7978779294199443, 0.6677008657031378, 0.4639977345844487, 0.9505627078685152, 1.000001, 0.9639803689641409, 0.9925719819656076, 0.9345405698130451, 0.8002777395570166, 0.40418367675998484, 0.6384257334739623, 0.5984305227820954, 0.3866589599450625, 0.3774431434090567, 0.931859050730678, 0.8296559956386551, 0.5348037214697037, 0.4602871292262315, 0.6193241645348668, 0.6204456976482948, 0.7997135119609733, 0.997170305510466, 0.9692745384087718, 0.9039515292034053, 0.47439074358154776, 0.9407779423963712, 0.9236179474822356, 0.5747495118069242, 0.8992418435063736, 0.40472837486620306, 0.5269598449315058, 0.9523897136443568, 0.7724844029486156, 0.9000740588589935, 0.599993702196233, 0.5560207993421006, 0.9163247484736536, 0.6050426134491309, 0.968231418015522, 0.6888968870001833, 0.9738658138946555, 0.9644848651788352, 0.5458308774341699, 0.9624170998716911, 0.41604155380694435, 0.8870176118133073, 0.8966531638634858, 0.3758650156368455, 0.9946441661254181, 0.37384568573513016, 0.9700365533915565, 0.948574419817572], [0.8352685052275206, 0.779708181808582, 0.8477344225168266, 0.6193241642179202, 0.8680787386333545, 0.6142974797928155, 0.886354202046587, 0.9750282496574346, 0.8870779458334558, 0.9124925479992088, 0.9879690171098708, 0.8648735642449861, 0.8021599709972367, 0.9429037971568042, 0.6056374128792075, 0.955268248578056, 0.5657896220361549, 0.5771850339829402, 0.8610303600392769, 0.8766311600832484, 0.7425790581078866, 0.9879896938540061, 0.9448742666881934, 0.8457629511681103, 0.6329598044201886, 0.8200004180366985, 0.9225592787150418, 0.9161866835033503, 0.8901269260289155, 0.7757180566243486, 0.5990852698454633, 0.8777739724160513, 0.9639803689641409, 1.000001, 0.9887291748488013, 0.9928597290872911, 0.917664296799818, 0.5572702291459933, 0.7845081634876055, 0.7590109954372203, 0.5350136229391883, 0.526959846236821, 0.9900336635952228, 0.9417855732726717, 0.680704223031384, 0.6046723459069141, 0.757853870196175, 0.7780528447711949, 0.8784383138231842, 0.9809474975738153, 0.979424353444859, 0.8307445234872726, 0.6344770581313357, 0.9079359571136074, 0.8724334740025553, 0.7363970856760429, 0.9801984508698293, 0.5610353896595007, 0.690238298935918, 0.9023071379579005, 0.9045050590154156, 0.901370041849804, 0.7452343113476739, 0.7119582741695748, 0.859369618834792, 0.7524055829672385, 0.8909050244299641, 0.8320181664106687, 0.9193674596827843, 0.8816540863080472, 0.6897834130514761, 0.9189086785133629, 0.5739759930964199, 0.9761328280023488, 0.8504995341922985, 0.5241287614445895, 0.983136344901458, 0.526959846356678, 0.9997018147169242, 0.9934417105650998], [0.7743612267589961, 0.8451365868102719, 0.7845081637775645, 0.5402733377044081, 0.8451365868102719, 0.5330159019335226, 0.939700588156544, 0.9715694972559795, 0.9107163466505415, 0.9622509442325962, 0.9589238088845551, 0.9039515292034053, 0.8653298153918361, 0.9295372712027121, 0.5167809453289043, 0.9366787942518042, 0.48279157257433264, 0.5011201839653928, 0.9238344674518434, 0.8044800550675211, 0.6855780667067038, 0.9578206631793302, 0.9551093237532278, 0.7906686408198145, 0.5459314125999198, 0.8829882236773927, 0.9471312748028143, 0.8508627245056744, 0.8507131567845042, 0.7269340358914246, 0.5298489133830339, 0.9295372706562014, 0.9925719819656076, 0.9887291748488013, 1.000001, 0.9700365534467151, 0.860940265520141, 0.4726901145599959, 0.7097245282903177, 0.6712414285026135, 0.4535456682324963, 0.4440579815990122, 0.9643728446681851, 0.8845955566261444, 0.6052642496542083, 0.5287561228456534, 0.6884897138176373, 0.6938627908018256, 0.8475995958926098, 0.9986583438696832, 0.9853043003316687, 0.8839570817430593, 0.5465853409027426, 0.9393761480045408, 0.9140273266476399, 0.6485358945231584, 0.9417855732726717, 0.4733271353627478, 0.5999547765428569, 0.9425003338902805, 0.8360117723940097, 0.9149593904185855, 0.6709907188451303, 0.6292766830063923, 0.9041095106460054, 0.6766370657627171, 0.9439956899461445, 0.7590109954372203, 0.9608835141709442, 0.9375427121783376, 0.6159046838373758, 0.9552682482972366, 0.4851089243116498, 0.9345405697599048, 0.8899928079917128, 0.44220133048355137, 0.9991036199856196, 0.4398256095942029, 0.9919780537700427, 0.9787481604246968], [0.8909050240753507, 0.7614086267846282, 0.900959838898466, 0.6879200732024696, 0.9106039006386335, 0.6815145919474521, 0.836011771380735, 0.983249516353534, 0.8967469959764723, 0.8762377161961288, 0.9820567260445627, 0.8639328545097177, 0.7833269205289836, 0.9668919121897283, 0.6623127243831451, 0.9783907858720539, 0.6306907240629218, 0.6472721400762657, 0.8238837482980561, 0.9161866835033503, 0.8083051069702175, 0.9986583438980763, 0.9528652102042773, 0.8999563346253571, 0.6938627893740053, 0.7978779294199442, 0.923733933627474, 0.9439018521420344, 0.9348193185337605, 0.8373592023248729, 0.6710504020988527, 0.8581636569778723, 0.9345405698130451, 0.9928597290872911, 0.9700365534467151, 1.000001, 0.9556731775304581, 0.6197034036265097, 0.8437625131850742, 0.802751964705956, 0.5999547764063973, 0.5895053772387653, 0.9817638911817106, 0.9553242285999477, 0.7489234214884062, 0.6748692614042446, 0.8219539815927084, 0.828829911338292, 0.9225592787150418, 0.9566747377513871, 0.9782935289931369, 0.8200004175004852, 0.6938627893937326, 0.9058481800517186, 0.8673287447118299, 0.7872581454138401, 0.9825069372144737, 0.617204711774838, 0.7396615440373369, 0.8916744710939147, 0.931859050730678, 0.916642185942548, 0.8092216574867261, 0.773988575536702, 0.8533263475928943, 0.8150549193076617, 0.8637403171310604, 0.8842346230435907, 0.9009598388984661, 0.852734535371417, 0.7580109064832411, 0.9080727796232855, 0.6276779321478052, 0.9901983996244028, 0.8516109546726535, 0.5877437656665337, 0.9645575343562567, 0.5783216308720418, 0.9901983996244028, 0.99821013253679], [0.9778299001075318, 0.6261710416856676, 0.985320797047534, 0.8527345353714171, 0.9282367276198306, 0.8478124889294363, 0.6672356976532359, 0.9230353371981991, 0.8200724997874886, 0.7222595493254322, 0.9262476441037129, 0.7622895486323958, 0.647272140407515, 0.9407749898485963, 0.8199480775147837, 0.955364216252585, 0.8035175832723886, 0.8178229715267894, 0.6639003407250325, 0.9853207968514368, 0.9184414773415748, 0.9669930954056607, 0.8818201671759954, 0.9760592868067373, 0.8529023072523144, 0.6569323165888166, 0.8327245560935652, 0.9817638908746703, 0.9724147175057701, 0.9257079320481669, 0.8308697142001165, 0.7236167038395771, 0.8002777395570166, 0.917664296799818, 0.860940265520141, 0.9556731775304581, 1.000001, 0.7913920939715448, 0.9609559120589726, 0.9119942515041315, 0.7763084070432641, 0.7645967184822002, 0.9193674596827843, 0.959837371150382, 0.897864357470522, 0.8405723520434908, 0.9439956899461445, 0.9439018519541803, 0.9505627081479514, 0.8360117723940097, 0.896723537806577, 0.6980904648583565, 0.8508627233550877, 0.8059588135308514, 0.758010906849611, 0.9127341566647583, 0.9479195254698286, 0.7797546897113292, 0.8719789523781459, 0.774637590547715, 0.9738658135347088, 0.8554362856956238, 0.9393928592581859, 0.9168724220475831, 0.741341474686944, 0.9439018521420344, 0.7188093357184899, 0.9809474971403153, 0.7724844031023547, 0.7045890679255095, 0.9033586365539078, 0.7926501926119609, 0.7845081622422505, 0.9761001425030544, 0.7532185488448873, 0.7641392043296443, 0.8520093895052155, 0.735860956373051, 0.9086773246070536, 0.9426581480639193], [0.8387272378861471, 0.2655343784572293, 0.8459116487396324, 0.9715694972559795, 0.649649821761398, 0.9831116549584373, 0.29039513561007935, 0.5583553392137673, 0.44689592961408764, 0.32960430140677766, 0.6026030348784029, 0.3821278135436176, 0.2792722173192221, 0.6073102877235118, 0.9878139547160956, 0.6276779321478052, 0.9973111825423355, 0.9622892077649203, 0.2829698905525724, 0.8494633404645224, 0.825540699168788, 0.6485358945231584, 0.5064461204090932, 0.8092216577858194, 0.9919780537700427, 0.28369479456903934, 0.4470769428134796, 0.792650192611961, 0.7291120729304098, 0.7780699425277688, 0.9125507956986673, 0.33448110766894545, 0.40418367675998484, 0.5572702291459933, 0.4726901145599959, 0.6197034036265097, 0.7913920939715448, 1.000001, 0.9124925479992086, 0.9159604545660124, 0.9959689649715506, 0.9986583438696832, 0.5882206040107296, 0.7259549431936739, 0.9404708447648755, 0.9565666263541399, 0.8945117649877706, 0.930076295514407, 0.6884897138176373, 0.4440579815990122, 0.5162399179962224, 0.32191033756800813, 0.9901983999154907, 0.4183671621482165, 0.37391336871266556, 0.9464229058922377, 0.6481939502624953, 0.9879524758238863, 0.9517570835756843, 0.38268723517883674, 0.7999939014027673, 0.49026520530752593, 0.9212116223442566, 0.963259397944873, 0.35952638590565666, 0.9261875529107669, 0.3272453583882963, 0.8870176129067692, 0.37586501563684555, 0.3154587610341119, 0.9302758334675274, 0.39841897998824444, 0.9783907858720539, 0.6888968882806819, 0.3773546816841226, 0.9974635607186607, 0.45976386959344406, 0.9657391762706453, 0.5426734874954247, 0.5908300501157675], [0.9856270693739501, 0.48636794993302424, 0.9887291749050229, 0.9609559120589726, 0.8778364353783288, 0.9573907797272536, 0.4980290842243522, 0.8046004449237587, 0.7018039216798955, 0.5572702291459934, 0.8044320719418728, 0.6313008295383481, 0.5045550692251644, 0.8494633406094301, 0.9159604538120725, 0.8644256956077785, 0.9259404442142919, 0.9393928592581859, 0.5027210529369501, 0.968231417685186, 0.9598373715870118, 0.8637403171310604, 0.7604889327422746, 0.9739269603993241, 0.9488335251519578, 0.5097916011384812, 0.701643109995996, 0.934138730079061, 0.9342325754900309, 0.9437833336759384, 0.939446925842927, 0.5730319950360553, 0.6384257334739623, 0.7845081634876055, 0.7097245282903177, 0.8437625131850742, 0.9609559120589726, 0.9124925479992086, 1.000001, 0.9393761480045408, 0.9077592594173495, 0.8945791621406877, 0.7932351661384404, 0.8829882238769994, 0.9820937219427643, 0.9529370041418471, 0.9926945500680827, 0.9775158216825277, 0.9067443875922718, 0.6791730728022496, 0.7641392042861935, 0.5594753453812346, 0.9437359296091471, 0.6712414285026135, 0.6217884918378483, 0.9597098216286748, 0.8408758668065178, 0.8870473146900464, 0.92950225440101, 0.6306907241884409, 0.9299361573405679, 0.7455034003910606, 0.9964192980487987, 0.9879896938540061, 0.605042613449131, 0.9982101325935507, 0.5612873029547816, 0.9949345960141069, 0.6201672332869637, 0.5465853409182826, 0.9831116546694326, 0.6476630714262404, 0.8826473415525355, 0.8852233759707785, 0.6256581998474612, 0.8967235377300921, 0.6998605052091369, 0.8405899440750491, 0.7717451219945011, 0.8238837482980562], [0.8889801229639606, 0.38327514908057064, 0.9079359576815098, 0.8934986126583522, 0.7299159092521722, 0.9079359576815097, 0.4733271339713113, 0.7201743249047518, 0.5715019806798618, 0.5045550692251644, 0.8174191402763527, 0.5095100131590299, 0.40311630311621194, 0.7387773948908036, 0.9593754616186654, 0.7667824795216908, 0.9058481805152975, 0.8558427778934484, 0.43859526415201927, 0.9668291843319364, 0.8149184676367427, 0.829655995638655, 0.6531636922734458, 0.8648735649089005, 0.9553242285999477, 0.4146798222226873, 0.5912048310619041, 0.948574419817572, 0.8158664205964018, 0.7908258561981142, 0.8149184676367427, 0.4808454220010344, 0.5984305227820954, 0.7590109954372203, 0.6712414285026135, 0.802751964705956, 0.9119942515041315, 0.9159604545660124, 0.9393761480045408, 1.000001, 0.8859267282553916, 0.895820362431975, 0.8046004436465084, 0.9172841114754081, 0.8942497133011675, 0.8650808393819142, 0.8942497131434384, 0.9901735320959768, 0.7703654128113959, 0.6438943918905825, 0.6884897124818316, 0.4475192598223321, 0.9616349071298813, 0.5602047004095877, 0.5069683943977065, 0.9950782808670263, 0.8539239330748016, 0.9397005889300247, 0.9924234665142825, 0.5298489120746557, 0.9573907797272537, 0.6140198466681659, 0.9171449411195394, 0.9551093237532279, 0.4894942245831567, 0.9298583128266327, 0.48443120747672, 0.9521396002823728, 0.5358764854273079, 0.4708989887398511, 0.8882436730547607, 0.5516464331725973, 0.9502792641964433, 0.8703572038695842, 0.4989471488042984, 0.8872821870594163, 0.6528664448853535, 0.926356206243767, 0.7453278958118625, 0.7717451222797428], [0.8376396435503874, 0.26252839980474435, 0.8410307445009662, 0.9801984507026197, 0.653892009014255, 0.9879896939382755, 0.2742571410473668, 0.5465853409027426, 0.4451410539931335, 0.31607301857849124, 0.573875097558147, 0.37949381731853066, 0.2754498671023801, 0.6013029301483096, 0.970386814109524, 0.6190546235048263, 0.9986583438696832, 0.9778299001075319, 0.27273945819780293, 0.8270529769945913, 0.8396545602226124, 0.6276779321478053, 0.49934724406206393, 0.8096282165492308, 0.9820937217473095, 0.2785586130525709, 0.44107786605523963, 0.765305125252038, 0.7279609162550454, 0.7906686408198146, 0.9348193189855877, 0.32724535721465525, 0.3866589599450625, 0.5350136229391883, 0.4535456682324963, 0.5999547764063973, 0.7763084070432641, 0.9959689649715506, 0.9077592594173495, 0.8859267282553916, 1.000001, 0.9973111825423355, 0.5598442972849735, 0.6940283537785719, 0.9488335253677699, 0.9708560570202168, 0.8992418435063736, 0.9098704829983693, 0.6907050496089832, 0.4249288676795937, 0.5029467808163192, 0.31873942409655426, 0.9774022875595572, 0.41287859984240777, 0.37000557648629334, 0.9233657275824182, 0.6193241645348669, 0.9708072939783109, 0.9246817015586163, 0.3758650143772278, 0.7705468117088882, 0.48848313019335154, 0.9230353363298982, 0.957390779672814, 0.356089261111442, 0.9252479236533557, 0.31759013783003875, 0.8755823687516187, 0.3661941848151484, 0.3059687460914737, 0.9393928592581859, 0.39037971772219604, 0.956534595518627, 0.6649432359636388, 0.375876814511996, 0.9991036199875492, 0.4422013290310391, 0.9416200228943382, 0.5206891924124517, 0.5730319949383031], [0.817620175959785, 0.2469403557737889, 0.8238837484620245, 0.9665226850513342, 0.6261710416856678, 0.9782935295904592, 0.2678857021996235, 0.5300441142336614, 0.4229791004146841, 0.30596874720738776, 0.5713542868963427, 0.3595263859056566, 0.25987061612137285, 0.5803154554579063, 0.9806139473046143, 0.5999547765428569, 0.9959773028067876, 0.9607266709540788, 0.2618194956694876, 0.8238837482980563, 0.8103139015164512, 0.618221478824166, 0.47991044379828435, 0.7874484673884105, 0.984166687154286, 0.26374904032559604, 0.4218876968889665, 0.764206375004177, 0.7046451051938958, 0.7603106972719524, 0.9086335864656357, 0.3120782702413214, 0.3774431434090567, 0.526959846236821, 0.4440579815990122, 0.5895053772387653, 0.7645967184822002, 0.9986583438696832, 0.8945791621406877, 0.895820362431975, 0.9973111825423355, 1.000001, 0.5570527599990251, 0.6955311280130642, 0.9305786284419623, 0.952737590630274, 0.8787904447843365, 0.9107192062201241, 0.664595422789004, 0.41604155512782154, 0.4880212621710572, 0.30106942472302894, 0.981813204803214, 0.393972578770839, 0.35116812324488356, 0.9292134231444819, 0.6169690200665435, 0.9839730937212698, 0.9366787942518043, 0.3588708637427956, 0.7717451219945012, 0.46555162014956253, 0.9063687260929301, 0.9502792641964433, 0.33735469497292175, 0.9107192064013743, 0.3045071430847424, 0.8654611243073761, 0.3515265894033271, 0.2931895619405981, 0.9196686295456561, 0.37384568573513016, 0.9724147171463597, 0.6584588013317572, 0.35524813786197695, 0.999401626842626, 0.43165807521321803, 0.9624170998716911, 0.5125452435236748, 0.5610353896275989], [0.8268349131051653, 0.7011124747413184, 0.8444656177144697, 0.6320067498151463, 0.8236225639114023, 0.6319591345039023, 0.8520093896021103, 0.9393761481702295, 0.8210771377315167, 0.8653850540345901, 0.9997018147169242, 0.7933945531268184, 0.7256268460145373, 0.9035231326911272, 0.6465978812736379, 0.9227919660978666, 0.5911708060283509, 0.586183670268998, 0.8023077201772925, 0.8992418435063736, 0.7222021097897028, 0.9825069369351348, 0.8941411717697088, 0.830744524124988, 0.6649432347830957, 0.7464416824108753, 0.8631737978778135, 0.9409669755942655, 0.8631737973703203, 0.7474836024365626, 0.5952920769434427, 0.8115443306415134, 0.931859050730678, 0.9900336635952228, 0.9643728446681851, 0.9817638911817106, 0.9193674596827843, 0.5882206040107296, 0.7932351661384404, 0.8046004436465084, 0.5598442972849735, 0.5570527599990251, 1.000001, 0.9704721137939429, 0.6855780667067038, 0.6119057398404473, 0.7551291580922268, 0.8096282165492307, 0.8417130759177183, 0.9553642168704501, 0.94250033422276, 0.755298275795831, 0.6693357152308281, 0.8446856792334759, 0.8022531499486334, 0.7752636230710569, 0.9950907759952622, 0.6034662798532654, 0.7367277375930418, 0.83846047092097, 0.9345405698130451, 0.8405556397030782, 0.7499154430274019, 0.7322361907783574, 0.7871765928871968, 0.7603106961097108, 0.8308697151771174, 0.843811074907158, 0.8617658898146452, 0.8207721821204069, 0.692028980415862, 0.8590081922381536, 0.6201672318284825, 0.9820937215963179, 0.7769463601021099, 0.551743420809941, 0.9532012918880726, 0.5760410268297532, 0.9879690171098708, 0.9747375110003811], [0.8867057934381, 0.5835153629878224, 0.9064265827062932, 0.7500998766696452, 0.8197936505520969, 0.7552081805398339, 0.7199934821956204, 0.8901269260289156, 0.7475399221114725, 0.7424974730735928, 0.9759867722903823, 0.7011124730543398, 0.607894593012066, 0.875252588579318, 0.7857281845549219, 0.9000740584356429, 0.7243894669643588, 0.7032212378638245, 0.6711430993519073, 0.9692745384087718, 0.7858885296423679, 0.9678100277859191, 0.8307445241249881, 0.8798071721554417, 0.7970067538747155, 0.6258939355645519, 0.782596917900147, 0.9915235025023552, 0.8817509623828919, 0.7939850615616313, 0.6958521687602951, 0.6977479455774525, 0.8296559956386551, 0.9417855732726717, 0.8845955566261444, 0.9553242285999477, 0.959837371150382, 0.7259549431936739, 0.8829882238769994, 0.9172841114754081, 0.6940283537785719, 0.6955311280130642, 0.9704721137939429, 1.000001, 0.7893005258376646, 0.7253740396456971, 0.8388114972780385, 0.9153328658565263, 0.8486157563226205, 0.8661995317241717, 0.8777739724160514, 0.6478359131679096, 0.8027519644549004, 0.756526701339847, 0.7051466827846478, 0.8931078792098552, 0.9887291748488013, 0.746779190779562, 0.8650726925394182, 0.7380750061408212, 0.9912361429889275, 0.7793239855490348, 0.8437739911192105, 0.8455443794367776, 0.6875746296161929, 0.8559824990339193, 0.711178677655953, 0.9237339340739432, 0.7552081805398341, 0.6983578769609761, 0.7917524114801429, 0.7611417603244127, 0.763567696568076, 0.985753937279537, 0.6861665887610854, 0.6884897138176373, 0.8686284798080082, 0.7226919888536809, 0.9342325747210509, 0.9366787936460237], [0.9573907804027181, 0.41510876760132603, 0.9543869980620476, 0.9919780535348379, 0.8341373890693613, 0.9856270690262572, 0.39976203264362964, 0.7174123987129126, 0.6306907255090707, 0.4607483035572252, 0.6977479467671279, 0.5572702291459933, 0.43036815676649487, 0.778052844771195, 0.9184414773415748, 0.7896177502517278, 0.9589238083207668, 0.9849033063365636, 0.414054136277633, 0.9075882943356157, 0.9643728446681851, 0.7705468133045098, 0.6793251792608451, 0.9432225471711784, 0.9565666260166984, 0.43211045952967814, 0.6204456976482948, 0.8559824990339194, 0.8874158970788601, 0.9367258432608545, 0.9853043001578792, 0.4886058244591899, 0.5348037214697037, 0.680704223031384, 0.6052642496542083, 0.7489234214884062, 0.897864357470522, 0.9404708447648755, 0.9820937219427643, 0.8942497133011675, 0.9488335253677699, 0.9305786284419623, 0.6855780667067038, 0.7893005258376646, 1.000001, 0.9919780534784316, 0.98932115813007, 0.9429037971568043, 0.8623585563522036, 0.5738750989415006, 0.6712414285026135, 0.4851089243116498, 0.9474494704451343, 0.5905648776211888, 0.544625902052837, 0.9298583128813026, 0.7387773960201285, 0.897169364221563, 0.9027151217727335, 0.546667137002221, 0.8516109546726535, 0.6757766279704784, 0.993900261274419, 0.9851475942038161, 0.5291723692938463, 0.9915235025023553, 0.47191269772920236, 0.958617809460053, 0.5300441142336614, 0.45791006618308583, 0.9995522325097193, 0.5610353896595007, 0.8839570817430593, 0.7932351672577369, 0.5546081648776456, 0.936725842544896, 0.5972169086627636, 0.8455930434852786, 0.6672377920067459, 0.7291120729304098], [0.9152275110685019, 0.3522110778538512, 0.9107192062201243, 0.9976086547028011, 0.7739885756687347, 0.9923985429651571, 0.33394847008726936, 0.642258504509157, 0.5592751594270334, 0.39045121244518016, 0.6246278938116088, 0.4868542347931476, 0.3658108094897906, 0.7074415266466035, 0.9214169714847839, 0.7188093342012383, 0.9747619906678568, 0.9988077923658785, 0.3477595916844725, 0.8588347250616103, 0.9363318820781638, 0.6980904648583566, 0.6049128353000182, 0.8973947087128077, 0.9573907795757383, 0.36663282003917774, 0.5465853409027426, 0.7984818018137859, 0.8298227015033953, 0.8992418444580319, 0.9915110520471407, 0.41853924760352856, 0.4602871292262315, 0.6046723459069141, 0.5287561228456534, 0.6748692614042446, 0.8405723520434908, 0.9565666263541399, 0.9529370041418471, 0.8650808393819142, 0.9708560570202168, 0.952737590630274, 0.6119057398404473, 0.7253740396456971, 0.9919780534784316, 1.000001, 0.9639803689641409, 0.9137968495884613, 0.80351758454792, 0.49805514279452007, 0.5948593016021619, 0.41753837575394986, 0.9471312748028144, 0.517477385107506, 0.473823188049757, 0.9076215347057696, 0.6677008669200959, 0.9076215347057696, 0.8869201568495194, 0.4741778306180722, 0.7958233467984536, 0.6042795411468377, 0.9724879839850445, 0.9714129424560466, 0.45928253450933626, 0.9690017383076275, 0.40183177670940434, 0.9196686292057411, 0.4570201618729562, 0.38874750074229597, 0.9891731290893809, 0.4875103438716287, 0.8899928073085158, 0.7238030005719385, 0.48510892440819553, 0.9601799304081265, 0.5207954513409645, 0.8574769618935817, 0.590945055676414, 0.6538920087167996], [0.9887291749050229, 0.4982276820106589, 0.9856270693739501, 0.9639803690189551, 0.8992418444580319, 0.9543869973887025, 0.4780939608845323, 0.7987224766581698, 0.7174123985701343, 0.5451459063567868, 0.765788178788125, 0.6453412817276881, 0.514697244624258, 0.8539239330748016, 0.8829882236773928, 0.8635207126887611, 0.9153328649954712, 0.950279264142408, 0.4969618775738708, 0.9372964977106257, 0.9853043003316687, 0.8396545602226125, 0.7644823142588388, 0.9810942956547193, 0.9262476434502207, 0.5167809453289043, 0.7082889152730323, 0.8967469965628717, 0.9430814157219349, 0.9708560574197794, 0.9643728441578923, 0.5760410268297532, 0.6193241645348668, 0.757853870196175, 0.6884897138176373, 0.8219539815927084, 0.9439956899461445, 0.8945117649877706, 0.9926945500680827, 0.8942497131434384, 0.8992418435063736, 0.8787904447843365, 0.7551291580922268, 0.8388114972780385, 0.98932115813007, 0.9639803689641409, 1.000001, 0.9462842657081195, 0.9230353371981992, 0.6574735449081393, 0.7553852210313088, 0.5719183621972969, 0.9174194618751477, 0.6790202889588379, 0.6329598044201886, 0.9232266010949174, 0.8021599725334446, 0.8533263481266389, 0.8867057936765008, 0.6353321111163406, 0.8889801229639605, 0.7604889326125448, 0.9974635607186607, 0.9746273588267717, 0.6172047116695507, 0.9950782808670263, 0.5583553392137675, 0.9794243536176115, 0.618221478824166, 0.5437301749587002, 0.9924234665142825, 0.6497014886517526, 0.8437739903254708, 0.8551472026564543, 0.6422585045091569, 0.8845955566261443, 0.6817713750337664, 0.7985344430648657, 0.7455244632617417, 0.8059588135308514], [0.9395707987387732, 0.42542761779856925, 0.952737590630274, 0.9348193185337605, 0.7958233483451524, 0.9425634560022258, 0.4875103438716287, 0.7615807453446657, 0.6272019226072904, 0.5300441142336614, 0.8220365566552441, 0.5608381651201351, 0.44504790253387144, 0.7906686408198145, 0.9573907797272537, 0.8142817145394847, 0.9292134223796332, 0.9029607558075493, 0.46741483895096125, 0.9810942956547193, 0.8826981427559702, 0.8535406804973988, 0.701966238062114, 0.9195762472410416, 0.9682962630197378, 0.4545377148073974, 0.6399527408809798, 0.955673177639142, 0.8726663037322429, 0.860706060960043, 0.8764027752362296, 0.5207954516074879, 0.6204456976482948, 0.7780528447711949, 0.6938627908018256, 0.828829911338292, 0.9439018519541803, 0.930076295514407, 0.9775158216825277, 0.9901735320959768, 0.9098704829983693, 0.9107192062201241, 0.8096282165492307, 0.9153328658565263, 0.9429037971568043, 0.9137968495884613, 0.9462842657081195, 1.000001, 0.8329197678531226, 0.6647950459390839, 0.725894172920625, 0.49407372931325566, 0.9700365528212346, 0.6085756163679105, 0.5557061165248859, 0.9959773026311156, 0.8592671108303355, 0.9338416170749545, 0.9820937215963179, 0.5738750975581469, 0.9593754616186654, 0.6710504020988525, 0.962417099871691, 0.9832495166051289, 0.5381591078023812, 0.9710968607706338, 0.518744959701533, 0.9831116549584372, 0.5738390686672834, 0.5045550692251642, 0.9393761480045408, 0.5942750872551944, 0.9381550956009835, 0.8874158970788603, 0.5518473547967069, 0.9063687260929301, 0.6785124425694344, 0.9063687260929302, 0.7644823142588387, 0.8015960965053139], [0.9635265483963581, 0.7358463265372949, 0.9562013421339708, 0.7987224766581699, 0.9974635607186607, 0.7797546897113292, 0.6677008657031378, 0.9439956899461444, 0.9168724219954474, 0.7498879783342572, 0.8454868685971859, 0.8650726925394182, 0.7507005802250623, 0.9801984507026197, 0.6910368793558801, 0.9774022872147656, 0.7155410587431997, 0.7771219914566013, 0.7155410587431995, 0.8904623103132122, 0.948574419817572, 0.9232266010949174, 0.9381550956009835, 0.9774309256999902, 0.7455244632617418, 0.7503636556805153, 0.9057240142420157, 0.8798071721554418, 0.9964192980487987, 0.9724879839850444, 0.8279621942906117, 0.8002777382866284, 0.7997135119609733, 0.8784383138231842, 0.8475995958926098, 0.9225592787150418, 0.9505627081479514, 0.6884897138176373, 0.9067443875922718, 0.7703654128113959, 0.6907050496089832, 0.664595422789004, 0.8417130759177183, 0.8486157563226205, 0.8623585563522036, 0.80351758454792, 0.9230353371981992, 0.8329197678531226, 1.000001, 0.8237794367535577, 0.9159604538120725, 0.804118992292895, 0.7362121692033002, 0.8863542020465869, 0.8540517210165907, 0.7861517326628984, 0.8619363404422257, 0.6480040583044481, 0.7293638912872888, 0.8508627233550876, 0.8613214313827283, 0.9430814149456714, 0.8992418444580318, 0.8369325889977995, 0.8420381490845458, 0.8944106793592768, 0.7773082347881025, 0.9151125923273692, 0.829655995638655, 0.7642063737011882, 0.8746657057839975, 0.8592671097189036, 0.6439968142280826, 0.9096305836695454, 0.863520712688761, 0.6709907188451304, 0.8499167970214333, 0.5896139561792437, 0.8724334740025553, 0.9248016920170641], [0.7452343113476739, 0.8525810704226321, 0.7556777447760993, 0.5095132133461528, 0.8226087851041688, 0.5025206641976954, 0.9556731769648894, 0.9601799304081265, 0.9027151212115837, 0.9724879839850444, 0.948833526037197, 0.901370041849804, 0.8724334740025553, 0.9126271919689529, 0.48838653160347906, 0.9193674603854752, 0.4535456682324963, 0.4708989897876245, 0.936725842544896, 0.7781692798145962, 0.6552729038205874, 0.9426581480639193, 0.9455973091548363, 0.7622895486323958, 0.5162399179962224, 0.8910364824479085, 0.9416200228943381, 0.8279621942906116, 0.8258232298225118, 0.6979151673523666, 0.499229690175641, 0.9346628175540543, 0.997170305510466, 0.9809474975738153, 0.9986583438696832, 0.9566747377513871, 0.8360117723940097, 0.4440579815990122, 0.6791730728022496, 0.6438943918905825, 0.4249288676795937, 0.41604155512782154, 0.9553642168704501, 0.8661995317241717, 0.5738750989415006, 0.49805514279452007, 0.6574735449081393, 0.6647950459390839, 0.8237794367535577, 1.000001, 0.9778299003949839, 0.8867057930210371, 0.5171677405013022, 0.9358607175272613, 0.9130513059041714, 0.6197034036793664, 0.9282687815926638, 0.44585570625914156, 0.5719183623111193, 0.9429037969350564, 0.8130275678793151, 0.9039515294691393, 0.6398101201217608, 0.598430524224641, 0.9039515292034053, 0.6455803821673137, 0.9517570830720671, 0.7298150950143952, 0.9638835357756877, 0.9463793305924995, 0.5844858057666339, 0.9551093231231301, 0.4579100661830859, 0.9172841114754081, 0.886920156693083, 0.41405413627763316, 0.9983563799207928, 0.41405413627763316, 0.98534554311028, 0.9669930954056607], [0.836011771214353, 0.8694696666820851, 0.8401502541800406, 0.6013029300286392, 0.9174194618751476, 0.5895053758501163, 0.8909050244299641, 0.9967227620292566, 0.959837371150382, 0.9397005889300247, 0.9388533473195692, 0.9442219267246744, 0.8870473146900463, 0.9761001423233474, 0.5494043295868545, 0.9774309256999901, 0.5320306958173799, 0.5657896220361549, 0.9078951058923593, 0.8296559956386549, 0.7665217516281136, 0.9668291843319364, 0.9904688753379473, 0.8551624146446699, 0.5877437642151934, 0.8978643574705218, 0.9804579870887231, 0.8618957536125641, 0.9127341566647583, 0.8091403690239667, 0.6052642482663614, 0.9417855732726717, 0.9692745384087718, 0.979424353444859, 0.9853043003316687, 0.9782935289931369, 0.896723537806577, 0.5162399179962224, 0.7641392042861935, 0.6884897124818316, 0.5029467808163192, 0.4880212621710572, 0.94250033422276, 0.8777739724160514, 0.6712414285026135, 0.5948593016021619, 0.7553852210313088, 0.725894172920625, 0.9159604538120725, 0.9778299003949839, 1.000001, 0.9151125923273691, 0.5852863483806534, 0.9715694972559795, 0.9479195249682419, 0.6766370643703435, 0.9295372706562014, 0.5045550692251644, 0.6225762785562927, 0.9643728441578923, 0.8438110755651376, 0.9668919121897283, 0.732879337287834, 0.6793251792608451, 0.9384820605297259, 0.7350759556888558, 0.9419531241570932, 0.8041189922928951, 0.9682962635890365, 0.9338416170749545, 0.6836595515067384, 0.9739269602054945, 0.5120354393112807, 0.9407749888906335, 0.9346628179936739, 0.4886058244591899, 0.9879690169132466, 0.4629811653377715, 0.9808859102118662, 0.9888657547530518], [0.656785910122218, 0.9924234668342403, 0.6506233522955008, 0.4140541349630658, 0.8298227003072762, 0.3970501067281281, 0.8698400451806079, 0.8997162247263246, 0.9706173442412688, 0.9358607175822842, 0.7465643225867674, 0.9925719819656076, 0.9950907762292831, 0.8790893597035863, 0.33747473996913563, 0.8610303600392769, 0.3408049329016396, 0.39102281922045623, 0.955268248578056, 0.6008368614633728, 0.6201672318284825, 0.7941088670259452, 0.9417855730584627, 0.68889688686308, 0.3773546802278547, 0.9928597289743782, 0.9708885671510407, 0.6316332003247639, 0.7739885742170346, 0.6785124411333093, 0.4461894146601244, 0.9904688751126652, 0.9039515292034053, 0.8307445234872726, 0.8839570817430593, 0.8200004175004852, 0.6980904648583565, 0.32191033756800813, 0.5594753453812346, 0.4475192598223321, 0.31873942409655426, 0.30106942472302894, 0.755298275795831, 0.6478359131679096, 0.4851089243116498, 0.41753837575394986, 0.5719183621972969, 0.49407372931325566, 0.804118992292895, 0.8867057930210371, 0.9151125923273691, 1.000001, 0.37219534570075846, 0.9818132043991419, 0.9946441660688601, 0.44354017354560094, 0.7256268450333022, 0.30135309864051574, 0.3911550037047246, 0.9879690169132467, 0.6077553005899154, 0.9507059537959378, 0.5385478148480262, 0.46799626472464967, 0.997170305510466, 0.5350136229391883, 0.9747375106401122, 0.591170805725812, 0.9760592864737305, 0.9738658135347088, 0.5003195670716536, 0.9806139470163439, 0.3038056627530064, 0.7441744975940467, 0.9919780535348379, 0.3043306655690462, 0.9018427147051782, 0.2645561697414885, 0.8384604702773315, 0.8499167970214334], [0.8778364340749543, 0.3112525020660045, 0.8885411553501288, 0.9666035992511882, 0.6963307306120406, 0.9786826149008985, 0.35221107657200534, 0.6258959007866945, 0.5015225458201836, 0.3919601312592671, 0.6836595515067383, 0.4352799748372358, 0.3271631826757578, 0.6678853473643857, 0.9964192980487987, 0.6907050482282698, 0.985753937279537, 0.9471312748585, 0.33850925876332033, 0.9073518448194472, 0.8451365868102722, 0.722691987451516, 0.5687100365138147, 0.849984392351936, 0.999401626842626, 0.333539863055029, 0.5068516977564953, 0.860940264406545, 0.7787337878901944, 0.8051335751669252, 0.9013700425161078, 0.390451211360209, 0.47439074358154776, 0.6344770581313357, 0.5465853409027426, 0.6938627893937326, 0.8508627233550877, 0.9901983999154907, 0.9437359296091471, 0.9616349071298813, 0.9774022875595572, 0.981813204803214, 0.6693357152308281, 0.8027519644549004, 0.9474494704451343, 0.9471312748028144, 0.9174194618751477, 0.9700365528212346, 0.7362121692033002, 0.5171677405013022, 0.5852863483806534, 0.37219534570075846, 1.000001, 0.47657001826155887, 0.4282190843438319, 0.9818132043991419, 0.7279609162550454, 0.9888657550437481, 0.9832495166051289, 0.4408983578810464, 0.8684058147991499, 0.5459456936163727, 0.9425634560022258, 0.9820937215963179, 0.4124782886509969, 0.9499263205302104, 0.3854458301817501, 0.9300762956730663, 0.4369392758147218, 0.37267275594909444, 0.9388533473195692, 0.4587532150000702, 0.9857539370553273, 0.7635676965029485, 0.4288150202110683, 0.9782935295904592, 0.5319510897380908, 0.967810028184228, 0.6197034021691192, 0.6639003392808018], [0.7627683037152041, 0.952817351446433, 0.7590109952861629, 0.5162399179962224, 0.903017450508975, 0.49934724396268443, 0.8784383138231844, 0.9643728441578923, 0.9935955769358537, 0.9442219267246744, 0.838411338577563, 0.9950782808670263, 0.9622509442325962, 0.9495685402420148, 0.43835208472996046, 0.938155096373192, 0.43844566973956145, 0.48867894396612216, 0.940774989554375, 0.7157694654984279, 0.717412397320991, 0.8859267282553916, 0.9879896938540061, 0.791036906526852, 0.4817323146686802, 0.9644132106468121, 0.9986583438696832, 0.7444369731147064, 0.8654611231633264, 0.7707524500863535, 0.5426734876034268, 0.9841666867492453, 0.9407779423963712, 0.9079359571136074, 0.9393761480045408, 0.9058481800517186, 0.8059588135308514, 0.4183671621482165, 0.6712414285026135, 0.5602047004095877, 0.41287859984240777, 0.393972578770839, 0.8446856792334759, 0.756526701339847, 0.5905648776211888, 0.517477385107506, 0.6790202889588379, 0.6085756163679105, 0.8863542020465869, 0.9358607175272613, 0.9715694972559795, 0.9818132043991419, 0.47657001826155887, 1.000001, 0.9959773026311156, 0.555706116524886, 0.8239354765000312, 0.3969603740271849, 0.49922968888416885, 0.9967227620292566, 0.7214475340330422, 0.9869553496311563, 0.6476630714262404, 0.578321630674733, 0.9928597290872911, 0.6453412817276881, 0.9717433633965825, 0.7046451035663043, 0.9879690169132467, 0.9668291841120312, 0.6056374128619884, 0.9964192980487987, 0.4003166887913022, 0.8444656171862672, 0.9915110520471407, 0.397050108012054, 0.9515380014986095, 0.35458075049848276, 0.9125507951278785, 0.9283066648745377], [0.7174123973209909, 0.974819113657995, 0.7119582727882352, 0.47099557935636127, 0.875582367745244, 0.45354566687254555, 0.8724909912058392, 0.9375427121783376, 0.9887291745000141, 0.9403763732840669, 0.7948704016419501, 0.999103619928808, 0.9809474975738153, 0.9215172525287423, 0.391064556426437, 0.90636872609293, 0.39397257749686465, 0.44585570489603543, 0.9479195254698286, 0.6630110004016203, 0.6778020941680508, 0.8444656177144697, 0.9708885671510405, 0.7480094142323735, 0.4336355963245584, 0.9805072351075927, 0.9901983996244028, 0.692028980415862, 0.8279621930736343, 0.7340866624620136, 0.5018191470318252, 0.9898927786195633, 0.9236179474822356, 0.8724334740025553, 0.9140273266476399, 0.8673287447118299, 0.758010906849611, 0.37391336871266556, 0.6217884918378483, 0.5069683943977065, 0.37000557648629334, 0.35116812324488356, 0.8022531499486334, 0.7051466827846478, 0.544625902052837, 0.473823188049757, 0.6329598044201886, 0.5557061165248859, 0.8540517210165907, 0.9130513059041714, 0.9479195249682419, 0.9946441660688601, 0.4282190843438319, 0.9959773026311156, 1.000001, 0.5033553502063932, 0.7776621395701464, 0.3519259264405987, 0.44816597092453747, 0.9962660368417652, 0.6682579586301617, 0.9759867722903822, 0.5999547765428568, 0.5285680334273616, 0.9995522325097193, 0.5967315273189373, 0.974761990954407, 0.6538920073327855, 0.9848538377474703, 0.9715694972559795, 0.560028865111225, 0.9923985431626628, 0.3545807493518883, 0.7984818008279233, 0.9973111824836997, 0.3545473582450295, 0.9291861968889389, 0.3115483786535068, 0.8784383138231843, 0.8936220377299456], [0.9085175941060235, 0.3781737429859888, 0.9237339340739433, 0.9318424732251801, 0.7464416824108754, 0.9437833332875177, 0.44638976037933875, 0.7124426928838412, 0.5732179110916036, 0.4840212840314609, 0.7885550540833641, 0.5080007403462532, 0.39703556557388436, 0.740964553233744, 0.9759867722903823, 0.7665217516281136, 0.9404708447648756, 0.9000740588589936, 0.4218876968889665, 0.963259397944873, 0.8496855929352066, 0.8143669273217248, 0.6496498204245583, 0.8844178478029707, 0.9782935291878356, 0.40659528962946817, 0.5869791689884947, 0.9349601925034151, 0.8295934900143817, 0.821868834932991, 0.8619363404422258, 0.4708989887398512, 0.5747495118069242, 0.7363970856760429, 0.6485358945231584, 0.7872581454138401, 0.9127341566647583, 0.9464229058922377, 0.9597098216286748, 0.9950782808670263, 0.9233657275824182, 0.9292134231444819, 0.7752636230710569, 0.8931078792098552, 0.9298583128813026, 0.9076215347057696, 0.9232266010949174, 0.9959773026311156, 0.7861517326628984, 0.6197034036793664, 0.6766370643703435, 0.44354017354560094, 0.9818132043991419, 0.555706116524886, 0.5033553502063932, 1.000001, 0.8279621942906116, 0.9579640003462558, 0.9949345959517677, 0.5221514656535486, 0.9419531233014158, 0.6171472319967046, 0.9448742666881934, 0.9783907862058562, 0.486153221290959, 0.9551093235847642, 0.4703129722341813, 0.9634902519316699, 0.5235301857125819, 0.45663008798794247, 0.9238934389088487, 0.5426547480261229, 0.963259397862713, 0.8535406805459334, 0.4989602018939992, 0.9231155088989748, 0.6319187977668649, 0.9381550963731922, 0.7222595479651756, 0.7573092518421499], [0.8653298161041011, 0.6657815188426265, 0.8829882244041928, 0.6888096673202846, 0.8401502542813202, 0.6897834134633154, 0.8035175832723886, 0.9336696469526615, 0.8078679329857348, 0.8242114217779429, 0.997170305510466, 0.7713737287813007, 0.6902931936558216, 0.9082752006551162, 0.7057497896988792, 0.9290267506428452, 0.6506710126368824, 0.6426928099410505, 0.758010906849611, 0.9363318820781638, 0.7637650778995365, 0.9876578829352173, 0.8839570823713591, 0.8658008036558985, 0.7236167038395771, 0.7094572161039621, 0.8457434804522697, 0.9693110528884941, 0.8870779465144153, 0.7832277447262802, 0.647835914917141, 0.7777988637676816, 0.8992418435063736, 0.9801984508698293, 0.9417855732726717, 0.9825069372144737, 0.9479195254698286, 0.6481939502624953, 0.8408758668065178, 0.8539239330748016, 0.6193241645348669, 0.6169690200665435, 0.9950907759952622, 0.9887291748488013, 0.7387773960201285, 0.6677008669200959, 0.8021599725334446, 0.8592671108303355, 0.8619363404422257, 0.9282687815926638, 0.9295372706562014, 0.7256268450333022, 0.7279609162550454, 0.8239354765000312, 0.7776621395701464, 0.8279621942906116, 1.000001, 0.6632052914323764, 0.7915105252239052, 0.8115443297349507, 0.9644132112705293, 0.8327245549822224, 0.7997135129953747, 0.7866981599248256, 0.7614572295346816, 0.8103139015164512, 0.7932351665894936, 0.887047315068344, 0.8308697142001167, 0.7817277027352107, 0.7441744992591297, 0.8329197669716525, 0.6793251792801591, 0.9934417107345684, 0.7558343296361619, 0.6114544895161391, 0.92921342264382, 0.6349519468548458, 0.9758233790908251, 0.9714129427874681], [0.8044320719418728, 0.24790867771342723, 0.8179051317562074, 0.9318424732251801, 0.606527219659331, 0.9505627081479515, 0.2947291211992467, 0.5427853689089543, 0.41835709339588223, 0.3265116566422064, 0.618221478824166, 0.35772507822544286, 0.2621429829102617, 0.5809108691706205, 0.9971703056863486, 0.6052642482663614, 0.9747375110003811, 0.9130513061188988, 0.2765649996043799, 0.8529023084784064, 0.7686695817610159, 0.6476630714262405, 0.48443120747671997, 0.7719631972339667, 0.985320797337188, 0.2684547967552191, 0.4253452676440689, 0.8044800550675212, 0.693671133768334, 0.7225203424163233, 0.8496855929352066, 0.3199414120012059, 0.40472837486620306, 0.5610353896595007, 0.4733271353627478, 0.617204711774838, 0.7797546897113292, 0.9879524758238863, 0.8870473146900464, 0.9397005889300247, 0.9708072939783109, 0.9839730937212698, 0.6034662798532654, 0.746779190779562, 0.897169364221563, 0.9076215347057696, 0.8533263481266389, 0.9338416170749545, 0.6480040583044481, 0.44585570625914156, 0.5045550692251644, 0.30135309864051574, 0.9888657550437481, 0.3969603740271849, 0.3519259264405987, 0.9579640003462558, 0.6632052914323764, 1.000001, 0.9737985578699444, 0.3650674185088013, 0.8163190279671143, 0.4601946608585216, 0.8859267282553916, 0.9439956899461445, 0.3374747411000979, 0.8955232542584424, 0.31726428727568334, 0.8716231687826298, 0.36342084376665923, 0.30583718429888984, 0.8850566546307798, 0.38212781354361763, 0.9983563798356393, 0.693551375863138, 0.35135889198164244, 0.9775158220160315, 0.4579100662611995, 0.9934417105650999, 0.5463400260614204, 0.5852863498259255], [0.8653298153918362, 0.3301427910893828, 0.8829882236773928, 0.9149593904185856, 0.687574630280845, 0.9316835460606226, 0.4051525350853989, 0.6574735435551999, 0.5146439263518717, 0.43693927581472164, 0.7507005802250624, 0.4520285431979573, 0.3480621248173036, 0.6837776018478463, 0.9856270693739501, 0.7111786764015647, 0.9395707991928969, 0.8826981427559704, 0.3758768145119959, 0.9363318813074559, 0.8030065295160298, 0.7687942652921097, 0.5920480309065351, 0.837359202943859, 0.9773818324174758, 0.3577250773636271, 0.5298489120746557, 0.9066732268667839, 0.7761345848835843, 0.7702557873540768, 0.8322645941174228, 0.41927875122180075, 0.5269598449315058, 0.690238298935918, 0.5999547765428569, 0.7396615440373369, 0.8719789523781459, 0.9517570835756843, 0.92950225440101, 0.9924234665142825, 0.9246817015586163, 0.9366787942518043, 0.7367277375930418, 0.8650726925394182, 0.9027151217727335, 0.8869201568495194, 0.8867057936765008, 0.9820937215963179, 0.7293638912872888, 0.5719183623111193, 0.6225762785562927, 0.3911550037047246, 0.9832495166051289, 0.49922968888416885, 0.44816597092453747, 0.9949345959517677, 0.7915105252239052, 0.9737985578699444, 1.000001, 0.4676922457418415, 0.9172841105846662, 0.5577340154820162, 0.91402732664764, 0.9612696991822628, 0.4315591641244588, 0.9261429713427696, 0.4205178308409348, 0.9326228792084649, 0.4708989887398512, 0.40755372324157774, 0.8942497131434384, 0.48809480387648013, 0.9809474976017049, 0.8130275667751806, 0.44292238402288886, 0.9283066658971901, 0.5821419052615222, 0.9639803695875783, 0.6757766266554227, 0.7072860840469768], [0.7222595479651756, 0.966829184843529, 0.7199934821956202, 0.4741778306450351, 0.8684058149966686, 0.458664414063811, 0.9064265827062933, 0.9509656416342157, 0.9820937214008629, 0.9638835360590399, 0.830744524124988, 0.9923985429651571, 0.9758233793833413, 0.926356205372342, 0.40506097005526204, 0.9152275110685018, 0.40081087589539416, 0.4461894146347528, 0.9643728446681851, 0.6846883473534079, 0.6712414270818781, 0.8694696657619346, 0.9759867722903822, 0.7508129220219302, 0.4451410526583838, 0.9797739034719551, 0.9924234665142825, 0.7189454907553114, 0.8298227002836834, 0.7258941715549251, 0.49696187617139215, 0.9950907762292831, 0.9523897136443568, 0.9023071379579005, 0.9425003338902805, 0.8916744710939147, 0.774637590547715, 0.38268723517883674, 0.6306907241884409, 0.5298489120746557, 0.3758650143772278, 0.3588708637427956, 0.83846047092097, 0.7380750061408212, 0.546667137002221, 0.4741778306180722, 0.6353321111163406, 0.5738750975581469, 0.8508627233550876, 0.9429037969350564, 0.9643728441578923, 0.9879690169132467, 0.4408983578810464, 0.9967227620292566, 0.9962660368417652, 0.5221514656535486, 0.8115443297349507, 0.3650674185088013, 0.4676922457418415, 1.000001, 0.6963307301171018, 0.9708885671510405, 0.6049128353516133, 0.538547814848026, 0.9943309298512183, 0.6034662798532654, 0.9872394022648625, 0.6672356962409789, 0.9959689650301075, 0.9840060431476447, 0.5612873014868126, 0.9991036199856196, 0.36947629114330677, 0.8258232288028916, 0.9876578829352173, 0.3612414920457744, 0.9552682482972366, 0.32609679248548, 0.9085175941060233, 0.9159604538120725], [0.9214169708822522, 0.5397963906050472, 0.9393761480045408, 0.8200004175004852, 0.829350456490465, 0.8258232288028918, 0.6497014886148089, 0.8649278682386625, 0.7225203417589745, 0.6815145933498626, 0.9426581481175212, 0.6676170279559935, 0.563016747181301, 0.8653298161041011, 0.8520093883530785, 0.8901269260289155, 0.7987550718460049, 0.7761345842877898, 0.6114544892379884, 0.991961445185011, 0.8321705415447115, 0.9488335258213848, 0.8043579991079223, 0.9104447844389136, 0.8637403160646252, 0.5781280091495107, 0.7500998766696451, 0.9991036199875492, 0.8970792419954237, 0.8315203080593343, 0.7636787661867275, 0.6498945972046377, 0.7724844029486156, 0.9045050590154156, 0.8360117723940097, 0.931859050730678, 0.9738658135347088, 0.7999939014027673, 0.9299361573405679, 0.9573907797272537, 0.7705468117088882, 0.7717451219945012, 0.9345405698130451, 0.9912361429889275, 0.8516109546726535, 0.7958233467984536, 0.8889801229639605, 0.9593754616186654, 0.8613214313827283, 0.8130275678793151, 0.8438110755651376, 0.6077553005899154, 0.8684058147991499, 0.7214475340330422, 0.6682579586301617, 0.9419531233014158, 0.9644132112705293, 0.8163190279671143, 0.9172841105846662, 0.6963307301171018, 1.000001, 0.7593279642657594, 0.897169363660395, 0.9041407321099965, 0.6502483260351222, 0.9085175941060234, 0.6574735449081393, 0.9607266706151698, 0.7071913561253533, 0.643698350271602, 0.8524775855837298, 0.7189454915109975, 0.8299468826483803, 0.9724879844996314, 0.6545594884973345, 0.7653051252520379, 0.8199480787199814, 0.7904452817353742, 0.8945791621406876, 0.9098704838542859], [0.8341373878923495, 0.9073518458312823, 0.8270529769945912, 0.5999547765428569, 0.9573907797272536, 0.580315453843419, 0.8089371868213848, 0.9724147173342541, 0.9971703056863486, 0.8884221508200958, 0.8373031258332254, 0.9809474975738153, 0.9174213823767983, 0.9782935289931369, 0.5033553502063932, 0.9665226850513342, 0.5144161768224982, 0.5747495118069242, 0.8778364350039591, 0.7669726666037333, 0.8035175832723888, 0.9018427152949098, 0.9926945498705181, 0.860940264406545, 0.5531823303688713, 0.9161866834252054, 0.9915235025023552, 0.782596917900147, 0.9230353363298982, 0.8520093884499731, 0.6344770581854527, 0.9439018519541803, 0.9000740588589935, 0.901370041849804, 0.9149593904185855, 0.916642185942548, 0.8554362856956238, 0.49026520530752593, 0.7455034003910606, 0.6140198466681659, 0.48848313019335154, 0.46555162014956253, 0.8405556397030782, 0.7793239855490348, 0.6757766279704784, 0.6042795411468377, 0.7604889326125448, 0.6710504020988525, 0.9430814149456714, 0.9039515294691393, 0.9668919121897283, 0.9507059537959378, 0.5459456936163727, 0.9869553496311563, 0.9759867722903822, 0.6171472319967046, 0.8327245549822224, 0.4601946608585216, 0.5577340154820162, 0.9708885671510405, 0.7593279642657594, 1.000001, 0.7279609162550454, 0.6538920087167996, 0.9706173448119322, 0.7236167036132706, 0.923115508584031, 0.7705468117088883, 0.953201291589965, 0.9151662191836566, 0.6913753796243077, 0.9717433636176054, 0.4607699981939205, 0.8658008024050428, 0.9797739034719551, 0.470312972020236, 0.9257079316868523, 0.41105380011672216, 0.9027151212115837, 0.9349044270690182], [0.9809474975738153, 0.465948340274645, 0.9805072351075927, 0.9759867722903823, 0.8716231687826298, 0.9700365528212346, 0.4602871292262315, 0.7763084083668869, 0.6836595529135627, 0.5224843245392912, 0.7614086267846283, 0.6113220565858605, 0.4827915725743326, 0.829450265930922, 0.9126271913250705, 0.8420381490845458, 0.9381550956009835, 0.9609559120589727, 0.47191269772920225, 0.9442219267246744, 0.9714129430730337, 0.8293669463364872, 0.7363970856760429, 0.9693110528884941, 0.9499263202061194, 0.4860535228141575, 0.6778020956026725, 0.9023071385945021, 0.9242792657115291, 0.9517570835756843, 0.9644848651788352, 0.5463400260614205, 0.599993702196233, 0.7452343113476739, 0.6709907188451303, 0.8092216574867261, 0.9393928592581859, 0.9212116223442566, 0.9964192980487987, 0.9171449411195394, 0.9230353363298982, 0.9063687260929301, 0.7499154430274019, 0.8437739911192105, 0.993900261274419, 0.9724879839850445, 0.9974635607186607, 0.962417099871691, 0.8992418444580318, 0.6398101201217608, 0.732879337287834, 0.5385478148480262, 0.9425634560022258, 0.6476630714262404, 0.5999547765428568, 0.9448742666881934, 0.7997135129953747, 0.8859267282553916, 0.91402732664764, 0.6049128353516133, 0.897169363660395, 0.7279609162550454, 1.000001, 0.9879690169132466, 0.5837993628817008, 0.9994016267857976, 0.5313146710585601, 0.9831116547348286, 0.5905648776211889, 0.516780945284826, 0.9949345959517677, 0.6204456976482948, 0.8773249304448499, 0.8499843929405894, 0.6073102877235117, 0.9107192062201241, 0.6624603623617292, 0.8355106496972872, 0.732236190424445, 0.7901632784687064], [0.9488335258213849, 0.3992687215848224, 0.9543869980620476, 0.983111654445824, 0.8023077201772926, 0.9856270690262572, 0.4218876968889665, 0.7217193637785487, 0.6084425351554724, 0.4733271353627478, 0.7452343117078689, 0.5376120137402951, 0.4164309431075553, 0.7687942666029208, 0.9634902514784914, 0.7872581452795437, 0.9704721137939429, 0.9644848648497774, 0.41904058421716184, 0.9464229058922377, 0.9248016925064181, 0.7987224766581699, 0.6712414285026135, 0.9292134231444819, 0.9856270690262572, 0.4218876968889665, 0.6094040535590814, 0.9033586374036988, 0.8716231685100352, 0.8956047853703657, 0.9448742666881934, 0.48279157257433264, 0.5560207993421006, 0.7119582741695748, 0.6292766830063923, 0.773988575536702, 0.9168724220475831, 0.963259397944873, 0.9879896938540061, 0.9551093237532279, 0.957390779672814, 0.9502792641964433, 0.7322361907783574, 0.8455443794367776, 0.9851475942038161, 0.9714129424560466, 0.9746273588267717, 0.9832495166051289, 0.8369325889977995, 0.598430524224641, 0.6793251792608451, 0.46799626472464967, 0.9820937215963179, 0.578321630674733, 0.5285680334273616, 0.9783907862058562, 0.7866981599248256, 0.9439956899461445, 0.9612696991822628, 0.538547814848026, 0.9041407321099965, 0.6538920087167996, 0.9879690169132466, 1.000001, 0.5120354406960895, 0.9915235025023553, 0.4733271353627478, 0.9759867728068206, 0.5300441142336615, 0.45928253450933604, 0.981763890932392, 0.5560207992156337, 0.938482059977956, 0.8296559968093433, 0.5318509043389762, 0.950848226251769, 0.6172047116695506, 0.9058481805152975, 0.6978735415248606, 0.7490174704369434], [0.7016431099959961, 0.9805072351633467, 0.6956839860351911, 0.45599549810776807, 0.8650726925886085, 0.4384456697395616, 0.8689594002456935, 0.927103882074802, 0.9853455427047542, 0.937417144417064, 0.7794675274089575, 0.9986583438696832, 0.9854929989499192, 0.9107192062201241, 0.37579029276259796, 0.8944106793592768, 0.37949381731853077, 0.43165807526230837, 0.9486121395640261, 0.6451468245986548, 0.6639003392808018, 0.8295934900143817, 0.9635265482045985, 0.7328793372878342, 0.4179457840047692, 0.9841666867492452, 0.9856270693739501, 0.6741838923564812, 0.8143669273217248, 0.7209637813660005, 0.48802126217105735, 0.990033663223564, 0.9163247484736536, 0.859369618834792, 0.9041095106460054, 0.8533263475928943, 0.741341474686944, 0.35952638590565666, 0.605042613449131, 0.4894942245831567, 0.356089261111442, 0.33735469497292175, 0.7871765928871968, 0.6875746296161929, 0.5291723692938463, 0.45928253450933626, 0.6172047116695507, 0.5381591078023812, 0.8420381490845458, 0.9039515292034053, 0.9384820605297259, 0.997170305510466, 0.4124782886509969, 0.9928597290872911, 0.9995522325097193, 0.486153221290959, 0.7614572295346816, 0.3374747411000979, 0.4315591641244588, 0.9943309298512183, 0.6502483260351222, 0.9706173448119322, 0.5837993628817008, 0.5120354406960895, 1.000001, 0.5803154552764164, 0.9740237827536777, 0.6366584880966475, 0.9820567257374307, 0.9714129424560465, 0.5446259020528372, 0.9892880307834095, 0.33991809239078324, 0.7823144396641062, 0.9974635607186607, 0.34080493408383666, 0.9202028933273477, 0.2978637026572647, 0.8658008030158881, 0.8807716187676067], [0.9797739033883865, 0.46261359732907653, 0.9810942956547193, 0.9748191130590287, 0.8653850540345901, 0.9706173442412688, 0.46555162014956253, 0.7777036442056621, 0.6791730728022496, 0.5256210445686368, 0.7719631972339667, 0.6073102875163128, 0.47991044364819535, 0.8279621942906116, 0.9219609347636594, 0.8420381490845458, 0.9409669755942656, 0.957511007392001, 0.4733271353627477, 0.952737590630274, 0.9638835360590399, 0.8358455727154092, 0.7350759556888558, 0.9669930954056607, 0.9562013415717832, 0.4840212840314608, 0.6757766279704783, 0.912627191968953, 0.9215172533956152, 0.9438149371177729, 0.9570091575917041, 0.5453598671150177, 0.6050426134491309, 0.7524055829672385, 0.6766370657627171, 0.8150549193076617, 0.9439018521420344, 0.9261875529107669, 0.9982101325935507, 0.9298583128266327, 0.9252479236533557, 0.9107192064013743, 0.7603106961097108, 0.8559824990339193, 0.9915235025023553, 0.9690017383076275, 0.9950782808670263, 0.9710968607706338, 0.8944106793592768, 0.6455803821673137, 0.7350759556888558, 0.5350136229391883, 0.9499263205302104, 0.6453412817276881, 0.5967315273189373, 0.9551093235847642, 0.8103139015164512, 0.8955232542584424, 0.9261429713427696, 0.6034662798532654, 0.9085175941060234, 0.7236167036132706, 0.9994016267857976, 0.9915235025023553, 0.5803154552764164, 1.000001, 0.5319510911616379, 0.9872394022648625, 0.5909184674038609, 0.5173999565796045, 0.991961445185011, 0.6197034036265096, 0.8884221500888231, 0.8581636579869675, 0.6026030348784028, 0.9139957647344265, 0.6672356976532358, 0.8475995958926099, 0.7392823831872458, 0.7949070016114278], [0.6485358944494035, 0.9664741394905855, 0.649993214335379, 0.4047283748201754, 0.7937931610561964, 0.3924296294736818, 0.9551093235847642, 0.9172841115014877, 0.9404708444172719, 0.9904688753379473, 0.8207721821204069, 0.9646160771606282, 0.9760592864737305, 0.8734885489966286, 0.35454735839623286, 0.8650726936583595, 0.34130671763501785, 0.37586501555135504, 0.993900261274419, 0.6338565882821376, 0.5856735487230301, 0.8387272381484536, 0.9397005889300247, 0.6757766279704784, 0.3877598433216918, 0.9853043001578792, 0.9635265482045985, 0.6784130484337934, 0.7590109952861631, 0.6398101187299352, 0.41836716214821656, 0.9959689650301075, 0.968231418015522, 0.8909050244299641, 0.9439956899461445, 0.8637403171310604, 0.7188093357184899, 0.3272453583882963, 0.5612873029547816, 0.48443120747672, 0.31759013783003875, 0.3045071430847424, 0.8308697151771174, 0.711178677655953, 0.47191269772920236, 0.40183177670940434, 0.5583553392137675, 0.518744959701533, 0.7773082347881025, 0.9517570830720671, 0.9419531241570932, 0.9747375106401122, 0.3854458301817501, 0.9717433633965825, 0.974761990954407, 0.4703129722341813, 0.7932351665894936, 0.31726428727568334, 0.4205178308409348, 0.9872394022648625, 0.6574735449081393, 0.923115508584031, 0.5313146710585601, 0.4733271353627478, 0.9740237827536777, 0.5319510911616379, 1.000001, 0.6034662798532656, 0.9950907762292831, 0.9997018147169242, 0.4851089243116498, 0.986955349518915, 0.3237944616701617, 0.7937931610561964, 0.9565666263541399, 0.30541982532522455, 0.9562013421339709, 0.28476283878964714, 0.8997162255726893, 0.8893737052756523], [0.9853042999057584, 0.5179199784771112, 0.991961445185011, 0.9318590504922328, 0.8859267282553916, 0.930076295514407, 0.5494043295868545, 0.8401502540844946, 0.728411250911064, 0.6049128353516134, 0.8541920435234452, 0.6611238127314409, 0.5376120123495306, 0.8743664637656084, 0.9037954679766023, 0.8913722086802628, 0.8973947087128076, 0.903358637069812, 0.5463400260303543, 0.9878139545418634, 0.9419008838206482, 0.9030174505089751, 0.792650191353681, 0.9747619906678568, 0.9328639613703467, 0.5451459049465326, 0.7348075535751092, 0.9644848651788352, 0.943995689624077, 0.9316835455043555, 0.9023071385945021, 0.6113220551481813, 0.6888968870001833, 0.8320181664106687, 0.7590109954372203, 0.8842346230435907, 0.9809474971403153, 0.8870176129067692, 0.9949345960141069, 0.9521396002823728, 0.8755823687516187, 0.8654611243073761, 0.843811074907158, 0.9237339340739432, 0.958617809460053, 0.9196686292057411, 0.9794243536176115, 0.9831116549584372, 0.9151125923273692, 0.7298150950143952, 0.8041189922928951, 0.591170805725812, 0.9300762956730663, 0.7046451035663043, 0.6538920073327855, 0.9634902519316699, 0.887047315068344, 0.8716231687826298, 0.9326228792084649, 0.6672356962409789, 0.9607266706151698, 0.7705468117088883, 0.9831116547348286, 0.9759867728068206, 0.6366584880966475, 0.9872394022648625, 0.6034662798532656, 1.000001, 0.6612234418114228, 0.5887119981633229, 0.9601799304081265, 0.6856060455639342, 0.871978953352219, 0.9238344674518435, 0.6536477778408915, 0.8654611242827699, 0.7480094142323737, 0.8289556803233046, 0.8199480775147837, 0.8644256956077784], [0.7074415266466034, 0.9565946541946777, 0.7083949101950285, 0.4597638695934443, 0.8439753257732954, 0.446456562282928, 0.9388533473195692, 0.9502792641964434, 0.9644848648497774, 0.9832495166051289, 0.853326348126639, 0.9775158216825277, 0.967810027785919, 0.9152275110685019, 0.40335217502238, 0.9077592603780216, 0.3915497810978504, 0.42953177751665333, 0.9787481604246967, 0.6879200734762874, 0.6455803807629358, 0.8787904447843367, 0.9682962635890365, 0.734086663843127, 0.4398256082495327, 0.9761001423233473, 0.9840060431476447, 0.7284112512838373, 0.8130275666364885, 0.6987650376711912, 0.4745545884102099, 0.9949345959517677, 0.9738658138946555, 0.9193674596827843, 0.9608835141709442, 0.9009598388984661, 0.7724844031023547, 0.37586501563684555, 0.6201672332869637, 0.5358764854273079, 0.3661941848151484, 0.3515265894033271, 0.8617658898146452, 0.7552081805398341, 0.5300441142336614, 0.4570201618729562, 0.618221478824166, 0.5738390686672834, 0.829655995638655, 0.9638835357756877, 0.9682962635890365, 0.9760592864737305, 0.4369392758147218, 0.9879690169132467, 0.9848538377474703, 0.5235301857125819, 0.8308697142001167, 0.36342084376665923, 0.4708989887398512, 0.9959689650301075, 0.7071913561253533, 0.953201291589965, 0.5905648776211889, 0.5300441142336615, 0.9820567257374307, 0.5909184674038609, 0.9950907762292831, 0.6612234418114228, 1.000001, 0.9924234665142825, 0.5437301749587005, 0.9974635606335834, 0.36968512967213235, 0.8369325879152566, 0.9699391116797516, 0.35279130125710484, 0.9715694972559796, 0.3271631838106339, 0.9262476441037129, 0.9238344674518435], [0.6338128125881828, 0.9684938662236363, 0.6352370483531977, 0.39154978105332133, 0.7813449649997835, 0.37942512301424663, 0.9565345959809499, 0.9077592594431583, 0.9340419618334527, 0.9901735320959768, 0.8103139004683386, 0.9608835138157958, 0.9775158216825277, 0.862358555236773, 0.34238952470962997, 0.8535406804973987, 0.3292099654986608, 0.36319274023073383, 0.9959773028067876, 0.6194667564818869, 0.5713542854854733, 0.8270529772532468, 0.9316084792626601, 0.6612234418114226, 0.37491008629914085, 0.9867746313400597, 0.957511007392001, 0.6645954214214094, 0.7453278956635284, 0.6256581981650248, 0.40522758341249254, 0.9950782808670263, 0.9644848651788352, 0.8816540863080472, 0.9375427121783376, 0.852734535371417, 0.7045890679255095, 0.3154587610341119, 0.5465853409182826, 0.4708989887398511, 0.3059687460914737, 0.2931895619405981, 0.8207721821204069, 0.6983578769609761, 0.45791006618308583, 0.38874750074229597, 0.5437301749587002, 0.5045550692251642, 0.7642063737011882, 0.9463793305924995, 0.9338416170749545, 0.9738658135347088, 0.37267275594909444, 0.9668291841120312, 0.9715694972559795, 0.45663008798794247, 0.7817277027352107, 0.30583718429888984, 0.40755372324157774, 0.9840060431476447, 0.643698350271602, 0.9151662191836566, 0.516780945284826, 0.45928253450933604, 0.9714129424560465, 0.5173999565796045, 0.9997018147169242, 0.5887119981633229, 0.9924234665142825, 1.000001, 0.4709955792626244, 0.9831363447896508, 0.31231838709099774, 0.7813449649997835, 0.9528652102042773, 0.2940683226276781, 0.9502315344422311, 0.2741790918791787, 0.8909050244299641, 0.8790893599035351], [0.963259397944873, 0.4295317776021381, 0.9593754616186655, 0.9879896939382755, 0.8478124900758982, 0.9801984507026197, 0.40958751049516917, 0.7298150950143951, 0.6465978827182454, 0.47249971857826095, 0.7038934032753772, 0.5730319949383031, 0.4447895099276112, 0.7910369065268521, 0.9079359576815097, 0.801596095232833, 0.9502315344422311, 0.9809474975738153, 0.426266264189537, 0.9085175941060234, 0.9717433636176054, 0.7787337878901945, 0.6935513743965214, 0.9507059537959378, 0.9484553139932368, 0.4461894146601243, 0.6353321111163406, 0.857878140695099, 0.8979320071740755, 0.9464229058922377, 0.985753937279537, 0.5027210515182186, 0.5458308774341699, 0.6897834130514761, 0.6159046838373758, 0.7580109064832411, 0.9033586365539078, 0.9302758334675274, 0.9831116546694326, 0.8882436730547607, 0.9393928592581859, 0.9196686295456561, 0.692028980415862, 0.7917524114801429, 0.9995522325097193, 0.9891731290893809, 0.9924234665142825, 0.9393761480045408, 0.8746657057839975, 0.5844858057666339, 0.6836595515067384, 0.5003195670716536, 0.9388533473195692, 0.6056374128619884, 0.560028865111225, 0.9238934389088487, 0.7441744992591297, 0.8850566546307798, 0.8942497131434384, 0.5612873014868126, 0.8524775855837298, 0.6913753796243077, 0.9949345959517677, 0.981763890932392, 0.5446259020528372, 0.991961445185011, 0.4851089243116498, 0.9601799304081265, 0.5437301749587005, 0.4709955792626244, 1.000001, 0.5753518580891337, 0.8717599904577, 0.799511860187156, 0.570636090491848, 0.9262980463166468, 0.6084425337603376, 0.831687388709429, 0.6765407764305104, 0.7392823831872459], [0.7368379897504429, 0.9562013424058307, 0.7358463264745319, 0.4886789439661222, 0.8743664640142016, 0.4738231880093428, 0.9137968495884613, 0.9609559120589726, 0.9806139470163439, 0.968231417685186, 0.8516109546726535, 0.9879524758238862, 0.9668291843319363, 0.9349601925299972, 0.42297909912151826, 0.9259404450853256, 0.41604155380694435, 0.45928253450933604, 0.9635265482045984, 0.705652312562771, 0.6815145921605914, 0.8870473146900463, 0.9809474976017047, 0.7641392043296442, 0.4626135957981499, 0.9724879841232896, 0.993900261274419, 0.7409645527913467, 0.8410307445009662, 0.734807553825807, 0.5081921466207787, 0.9924234665424984, 0.9624170998716911, 0.9189086785133629, 0.9552682482972366, 0.9080727796232855, 0.7926501926119609, 0.39841897998824444, 0.6476630714262404, 0.5516464331725973, 0.39037971772219604, 0.37384568573513016, 0.8590081922381536, 0.7611417603244127, 0.5610353896595007, 0.4875103438716287, 0.6497014886517526, 0.5942750872551944, 0.8592671097189036, 0.9551093231231301, 0.9739269602054945, 0.9806139470163439, 0.4587532150000702, 0.9964192980487987, 0.9923985431626628, 0.5426547480261229, 0.8329197669716525, 0.38212781354361763, 0.48809480387648013, 0.9991036199856196, 0.7189454915109975, 0.9717433636176054, 0.6204456976482948, 0.5560207992156337, 0.9892880307834095, 0.6197034036265096, 0.986955349518915, 0.6856060455639342, 0.9974635606335834, 0.9831363447896508, 0.5753518580891337, 1.000001, 0.3872067814560511, 0.8455443780098035, 0.9820567260445627, 0.37586501555135504, 0.9664741391058927, 0.3429729488196886, 0.924681701085399, 0.9305786281244723], [0.799713511438026, 0.2504477909107998, 0.8153005877051922, 0.9170307411831135, 0.6018726396460039, 0.937417144417064, 0.30596874607407554, 0.5488613105928408, 0.4192537442149699, 0.3356342663261219, 0.634951945435031, 0.3595625032668285, 0.26514565715563443, 0.5828654335354427, 0.996419297935481, 0.6085756150082512, 0.9624170998716911, 0.8942497124569735, 0.28369479443998663, 0.8609402644065451, 0.7552982757958308, 0.6584587998993637, 0.48809480387648024, 0.7669726666037333, 0.9804579870887231, 0.2722621159556099, 0.428815019894083, 0.8169300185580348, 0.6910368788450572, 0.711009021585612, 0.8289504739432196, 0.32487031973510905, 0.41604155380694435, 0.5739759930964199, 0.4851089243116498, 0.6276779321478052, 0.7845081622422505, 0.9783907858720539, 0.8826473415525355, 0.9502792641964433, 0.956534595518627, 0.9724147171463597, 0.6201672318284825, 0.763567696568076, 0.8839570817430593, 0.8899928073085158, 0.8437739903254708, 0.9381550956009835, 0.6439968142280826, 0.4579100661830859, 0.5120354393112807, 0.3038056627530064, 0.9857539370553273, 0.4003166887913022, 0.3545807493518883, 0.963259397862713, 0.6793251792801591, 0.9983563798356393, 0.9809474976017049, 0.36947629114330677, 0.8299468826483803, 0.4607699981939205, 0.8773249304448499, 0.938482059977956, 0.33991809239078324, 0.8884221500888231, 0.3237944616701617, 0.871978953352219, 0.36968512967213235, 0.31231838709099774, 0.8717599904577, 0.3872067814560511, 1.000001, 0.7057497896988794, 0.35253002599668576, 0.9643001888749514, 0.4687456465791107, 0.9959773028067876, 0.5592751579802278, 0.5948593016021617], [0.9126271915019049, 0.6799588497618207, 0.9262476441037127, 0.7413414743075535, 0.8893039079628882, 0.739282383187246, 0.7771219901315912, 0.9517570827202918, 0.8384604702773314, 0.8130275666364882, 0.985320797047534, 0.7958233467984535, 0.7033036585440673, 0.9403763730076251, 0.7367277390000702, 0.9578356967116834, 0.6956839860351912, 0.698357877796996, 0.7508773498622136, 0.9578206631793302, 0.8245254206978266, 0.995977302546165, 0.9075882936952883, 0.9142253349300097, 0.7617417425044806, 0.7189454907553113, 0.8673287447118297, 0.9797739034719551, 0.9316835455043555, 0.8430238232905258, 0.7094572166452272, 0.7863031129977148, 0.8870176118133073, 0.9761328280023488, 0.9345405697599048, 0.9901983996244028, 0.9761001425030544, 0.6888968882806819, 0.8852233759707785, 0.8703572038695842, 0.6649432359636388, 0.6584588013317572, 0.9820937215963179, 0.985753937279537, 0.7932351672577369, 0.7238030005719385, 0.8551472026564543, 0.8874158970788603, 0.9096305836695454, 0.9172841114754081, 0.9407749888906335, 0.7441744975940467, 0.7635676965029485, 0.8444656171862672, 0.7984818008279233, 0.8535406805459334, 0.9934417107345684, 0.693551375863138, 0.8130275667751806, 0.8258232288028916, 0.9724879844996314, 0.8658008024050428, 0.8499843929405894, 0.8296559968093433, 0.7823144396641062, 0.8581636579869675, 0.7937931610561964, 0.9238344674518435, 0.8369325879152566, 0.7813449649997835, 0.799511860187156, 0.8455443780098035, 0.7057497896988794, 1.000001, 0.7825969179001468, 0.654921240145504, 0.9242792648420579, 0.6584588014815236, 0.9706173442412687, 0.9801984507026197], [0.723616703839577, 0.970472114364521, 0.7155410587431995, 0.47991044379828435, 0.8874158960353681, 0.4607483022027666, 0.8374564699719007, 0.9283066652968242, 0.9919780535348379, 0.9140273269700752, 0.7702557873540767, 0.999401626842626, 0.9748191131421746, 0.9212116223442566, 0.3902032849093987, 0.9033586374036988, 0.39926872031719685, 0.4570201619639115, 0.9246817015586163, 0.6552729038205873, 0.6939666254367329, 0.829158684319908, 0.9665226850513342, 0.7553852210313087, 0.4352799748372358, 0.9708885671510407, 0.985753937279537, 0.6790629219551478, 0.8341373878923496, 0.7507005802250623, 0.517477385107506, 0.9778299001075319, 0.8966531638634858, 0.8504995341922985, 0.8899928079917128, 0.8516109546726535, 0.7532185488448873, 0.3773546816841226, 0.6256581998474612, 0.4989471488042984, 0.375876814511996, 0.35524813786197695, 0.7769463601021099, 0.6861665887610854, 0.5546081648776456, 0.48510892440819553, 0.6422585045091569, 0.5518473547967069, 0.863520712688761, 0.886920156693083, 0.9346628179936739, 0.9919780535348379, 0.4288150202110683, 0.9915110520471407, 0.9973111824836997, 0.4989602018939992, 0.7558343296361619, 0.35135889198164244, 0.44292238402288886, 0.9876578829352173, 0.6545594884973345, 0.9797739034719551, 0.6073102877235117, 0.5318509043389762, 0.9974635607186607, 0.6026030348784028, 0.9565666263541399, 0.6536477778408915, 0.9699391116797516, 0.9528652102042773, 0.570636090491848, 0.9820567260445627, 0.35253002599668576, 0.7825969179001468, 1.000001, 0.35952638590565666, 0.9063810552848497, 0.3091888930501346, 0.8558427778934483, 0.8784824376321257], [0.8220365564682721, 0.24976471281890025, 0.826847892780619, 0.9717433633965824, 0.6333328139585227, 0.981813204803214, 0.2659684726708205, 0.5313146710585601, 0.4275608898825221, 0.30541982532522455, 0.5659086380743618, 0.3634208435910066, 0.2625283996853202, 0.5837993628817008, 0.9747619912592574, 0.602473780056203, 0.9971703056863486, 0.968231417685186, 0.2621331086518102, 0.8199480787199817, 0.8200724997874886, 0.6160052336113649, 0.48279157257433264, 0.792650192611961, 0.981813204803214, 0.2659684726708205, 0.42492886767959365, 0.758737031115246, 0.7097245282903177, 0.7699278118551536, 0.9195762472410416, 0.31395182331021354, 0.3758650156368455, 0.5241287614445895, 0.44220133048355137, 0.5877437656665337, 0.7641392043296443, 0.9974635607186607, 0.8967235377300921, 0.8872821870594163, 0.9991036199875492, 0.999401626842626, 0.551743420809941, 0.6884897138176373, 0.936725842544896, 0.9601799304081265, 0.8845955566261443, 0.9063687260929301, 0.6709907188451304, 0.41405413627763316, 0.4886058244591899, 0.3043306655690462, 0.9782935295904592, 0.397050108012054, 0.3545473582450295, 0.9231155088989748, 0.6114544895161391, 0.9775158220160315, 0.9283066658971901, 0.3612414920457744, 0.7653051252520379, 0.470312972020236, 0.9107192062201241, 0.950848226251769, 0.34080493408383666, 0.9139957647344265, 0.30541982532522455, 0.8654611242827699, 0.35279130125710484, 0.2940683226276781, 0.9262980463166468, 0.37586501555135504, 0.9643001888749514, 0.654921240145504, 0.35952638590565666, 1.000001, 0.43036815676649487, 0.9526737869471965, 0.5097916009935411, 0.5600288665599804], [0.7686333860059051, 0.8653298161041012, 0.7773082347881024, 0.5308667404180223, 0.8499835024615652, 0.5224843231262231, 0.9439018521420344, 0.9736202479705482, 0.9236179468782649, 0.9700365533915565, 0.9472502142715213, 0.9194954199089231, 0.8844178472497787, 0.9326228788107306, 0.5011437807190248, 0.9375427125199327, 0.4709955792626244, 0.4929871398776083, 0.9363318818918163, 0.790445281735374, 0.6837776013618302, 0.9507059538229675, 0.9622892077649203, 0.7866981583643782, 0.5319510897229668, 0.9008467119056304, 0.9576763445676382, 0.836011771380735, 0.8499843919411122, 0.7271919508084775, 0.5246884869778131, 0.9438149366183582, 0.9946441661254181, 0.983136344901458, 0.9991036199856196, 0.9645575343562567, 0.8520093895052155, 0.45976386959344406, 0.6998605052091369, 0.6528664448853535, 0.4422013290310391, 0.43165807521321803, 0.9532012918880726, 0.8686284798080082, 0.5972169086627636, 0.5207954513409645, 0.6817713750337664, 0.6785124425694344, 0.8499167970214333, 0.9983563799207928, 0.9879690169132466, 0.9018427147051782, 0.5319510897380908, 0.9515380014986095, 0.9291861968889389, 0.6319187977668649, 0.92921342264382, 0.4579100662611995, 0.5821419052615222, 0.9552682482972366, 0.8199480787199814, 0.9257079316868523, 0.6624603623617292, 0.6172047116695506, 0.9202028933273477, 0.6672356976532358, 0.9562013421339709, 0.7480094142323737, 0.9715694972559796, 0.9502315344422311, 0.6084425337603376, 0.9664741391058927, 0.4687456465791107, 0.9242792648420579, 0.9063810552848497, 0.43036815676649487, 1.000001, 0.42346891423737615, 0.9869553496311564, 0.9755487362645686], [0.7500998766696453, 0.21595523062382607, 0.7667824806487434, 0.8867057934381001, 0.5476015100628726, 0.910490516195154, 0.2717617219683382, 0.49805514279452007, 0.37168082009441555, 0.29730318817131657, 0.5908300501157676, 0.31592355704569636, 0.22944996789195388, 0.529848913383034, 0.9853207971410909, 0.5557061165248861, 0.9448742668548519, 0.8646672442879692, 0.24838568441454265, 0.8199480787199817, 0.7052536847648404, 0.6094040535590814, 0.4381755212206906, 0.7155343200193772, 0.9608835145664025, 0.23624382429110463, 0.38152728676584774, 0.7752636243928983, 0.6372343566781393, 0.6585724993456533, 0.7908258561981142, 0.2849387015676599, 0.37384568573513016, 0.526959846356678, 0.4398256095942029, 0.5783216308720418, 0.735860956373051, 0.9657391762706453, 0.8405899440750491, 0.926356206243767, 0.9416200228943382, 0.9624170998716911, 0.5760410268297532, 0.7226919888536809, 0.8455930434852786, 0.8574769618935817, 0.7985344430648657, 0.9063687260929302, 0.5896139561792437, 0.41405413627763316, 0.4629811653377715, 0.2645561697414885, 0.967810028184228, 0.35458075049848276, 0.3115483786535068, 0.9381550963731922, 0.6349519468548458, 0.9934417105650999, 0.9639803695875783, 0.32609679248548, 0.7904452817353742, 0.41105380011672216, 0.8355106496972872, 0.9058481805152975, 0.2978637026572647, 0.8475995958926099, 0.28476283878964714, 0.8289556803233046, 0.3271631838106339, 0.2741790918791787, 0.831687388709429, 0.3429729488196886, 0.9959773028067876, 0.6584588014815236, 0.3091888930501346, 0.9526737869471965, 0.42346891423737615, 1.000001, 0.5125452436402532, 0.5451459063567867], [0.8246255113821347, 0.7893005258376646, 0.8369325879152565, 0.6052642479566098, 0.8631737973703202, 0.5999937007851952, 0.896723537806577, 0.9747375105828036, 0.8899928075701463, 0.9215172533956153, 0.985320797047534, 0.8703071124583095, 0.81154433004161, 0.9403763730076251, 0.590830048673604, 0.9521395998492446, 0.5512984585658233, 0.5634092589392741, 0.8716231685100352, 0.8654611231633262, 0.7318064625018902, 0.9841666867492452, 0.9462842657081195, 0.8359829023077068, 0.6182214773702609, 0.8295934900143817, 0.9261429711165196, 0.9066732268667838, 0.8829882231501994, 0.7662907798638577, 0.586183670268998, 0.8859267282553916, 0.9700365533915565, 0.9997018147169242, 0.9919780537700427, 0.9901983996244028, 0.9086773246070536, 0.5426734874954247, 0.7717451219945011, 0.7453278958118625, 0.5206891924124517, 0.5125452435236748, 0.9879690171098708, 0.9342325747210509, 0.6672377920067459, 0.590945055676414, 0.7455244632617417, 0.7644823142588387, 0.8724334740025553, 0.98534554311028, 0.9808859102118662, 0.8384604702773315, 0.6197034021691192, 0.9125507951278785, 0.8784383138231843, 0.7222595479651756, 0.9758233790908251, 0.5463400260614204, 0.6757766266554227, 0.9085175941060233, 0.8945791621406876, 0.9027151212115837, 0.732236190424445, 0.6978735415248606, 0.8658008030158881, 0.7392823831872458, 0.8997162255726893, 0.8199480775147837, 0.9262476441037129, 0.8909050244299641, 0.6765407764305104, 0.924681701085399, 0.5592751579802278, 0.9706173442412687, 0.8558427778934483, 0.5097916009935411, 0.9869553496311564, 0.5125452436402532, 1.000001, 0.991961445185011], [0.8787904444845153, 0.7943839670531481, 0.8871141496091395, 0.6649432359636387, 0.9166421865158958, 0.656785910122218, 0.8551624146446699, 0.9915110518498116, 0.9184414772252036, 0.8979320071740756, 0.9738658138946555, 0.8901269260289156, 0.8153005877051922, 0.9738658138946555, 0.6306907241884409, 0.982506937108431, 0.6034662798532654, 0.6256581995628495, 0.8508627245056744, 0.8945791621406876, 0.7997135119609734, 0.993900261274419, 0.9677857225926366, 0.890905024429964, 0.6646955732828934, 0.8289556792510795, 0.9438149366183581, 0.9238344674518434, 0.9326228788107306, 0.8329197669716524, 0.6544814096856099, 0.8852233753611399, 0.948574419817572, 0.9934417105650998, 0.9787481604246968, 0.99821013253679, 0.9426581480639193, 0.5908300501157675, 0.8238837482980562, 0.7717451222797428, 0.5730319949383031, 0.5610353896275989, 0.9747375110003811, 0.9366787936460237, 0.7291120729304098, 0.6538920087167996, 0.8059588135308514, 0.8015960965053139, 0.9248016920170641, 0.9669930954056607, 0.9888657547530518, 0.8499167970214334, 0.6639003392808018, 0.9283066648745377, 0.8936220377299456, 0.7573092518421499, 0.9714129427874681, 0.5852863498259255, 0.7072860840469768, 0.9159604538120725, 0.9098704838542859, 0.9349044270690182, 0.7901632784687064, 0.7490174704369434, 0.8807716187676067, 0.7949070016114278, 0.8893737052756523, 0.8644256956077784, 0.9238344674518435, 0.8790893599035351, 0.7392823831872459, 0.9305786281244723, 0.5948593016021617, 0.9801984507026197, 0.8784824376321257, 0.5600288665599804, 0.9755487362645686, 0.5451459063567867, 0.991961445185011, 1.000001]], "covariance_matrix_inverse": [[844173.3461441699, 5481.653432660511, -139525.93911607598, 20240.4239489083, 17725.877213347616, 32188.857478603422, 4889.2217653268235, 1664.4571159382097, 35692.534168588616, -16137.826960541031, -10129.965814737026, -3181.1999660104607, 826.1759630101752, -35635.85547118689, 3724.955669355875, -43995.14794654767, 22167.919383752367, -3718.6722371476676, 8958.724476207693, -6108.07071795323, -20127.056153239886, 7773.515338664708, 9669.467707856702, -161251.33113723868, 34376.98208610235, 11554.024694535181, 12019.912065184602, 11161.8046800755, -127879.52613784696, 7049.079901305504, 21472.234046447822, -4751.33100268145, -11947.77976418553, 11685.163033295425, 3763.553664439926, 10250.120719843557, -68680.78874976866, 13493.675553974004, -77801.45202678522, -2408.5915832952214, -9784.049979272178, -13687.576554733007, -12202.340528937668, 530.4719215671595, -25767.39595435996, 6389.0162833559325, -107236.37887172475, 9809.571321518311, -66514.5529603921, -5080.189757636385, 14298.627404688326, -27400.281091511788, 27698.32351793679, 6513.56271850933, -8730.564437718847, 12764.452927619895, 1225.9630460133064, -9347.288834393057, -8999.148772878189, -2120.793014181055, 12554.424406059154, 40644.25483459599, -75274.4110054273, 5615.113658420262, -15381.18159531071, -66309.21430708109, -2344.293899236024, -67879.30403687127, -422.9918419701601, 171.07385577879757, -38458.31070772148, 2564.1631564338113, -16156.88542731821, 9921.767507286078, -1274.0046043202635, -19903.16248061245, 5443.386325262304, 4238.361132483358, 10162.321020129548, 10987.719398755919], [5481.6533934610525, 386726.264781718, 8408.613631349017, 1301.3633066346379, -3037.265464194855, 826.2863341476226, 2476.7343315491757, -43988.45697290411, 30680.81731496564, -5513.810005685442, 19876.866120838105, 4143.132906996567, -335676.06991720217, -26188.087938464454, 4061.102838927176, -30976.619178879344, 3599.7512607304266, 6988.719802348077, 176.73620252632097, 15600.664169803975, 3500.1925487683025, 14050.906186094508, -6796.700529696514, 3930.2297648321946, -5804.899756837947, -157238.43273554862, 36427.33691491241, 7690.116848734059, -5748.132607079376, 3564.4128672004613, -6678.463880404761, 56008.37066142186, -20081.63997680018, 7318.538858711007, -22978.127595314778, -596.8589681659361, 23548.68876596362, -5079.44520486417, -156.40001385550593, -15880.621745757695, 7564.760191059749, -7274.584733895152, 24589.593633829714, -41135.581309607136, -3611.389509932903, 2826.0642529332295, -98.42006095104317, -4561.667906747493, -5341.3245559679135, -16263.349166885157, -46826.58203352511, -139590.5987447133, -4019.57066660098, 53605.485912702796, 31188.321597717488, -4251.243656369896, 14494.783475866632, -6408.695890160181, 15073.39727433613, 63312.225573076445, -14761.298037813445, 24912.651743970506, -3346.7337287719256, -9286.83986295374, -4709.886647627655, -3864.231162353275, 46610.37937513203, 9626.5221891939, 41678.28787254333, 42411.563099257924, -3073.6069182174897, 49428.44282232008, 14801.868097925315, 31314.474679922303, -53053.26550408558, 152.2128930630842, -35225.454751070916, -2927.7221423717697, 4191.302717040754, -22007.498799733945], [-139525.9390650245, 8408.613625100494, 845138.8690297096, 23782.65928657983, 18021.40600213889, 22162.11229785258, 1177.0532895960869, -9347.479941384776, 27127.54181650263, -9760.104421773898, -13062.990315091025, -4870.988439820668, 2517.8988772240896, -29562.548964095236, 16265.403473843819, -52318.2642220434, 11122.154299033216, -1028.1757325539077, 13019.359819075227, -40986.3813146832, 18245.535500961214, -4937.332764396895, 15987.030961924658, -127467.22338654855, 19250.216295086124, 7879.973444674089, 20855.825355407018, 8413.7396364253, -98987.4865557439, 19827.080799881147, -4732.274077875269, -7380.995813102828, -11057.187954854786, 20227.310469127235, 8832.840893398994, -1000.2316448297078, -123126.65605663355, 12508.586156703466, -105307.516628353, 5325.964075868488, -15150.411680134705, -7662.3620152405, -19134.668310975176, 9890.157522024358, 3752.7987093966553, 20605.04546119977, -66864.06332704448, -18159.909436850456, -33925.67614351412, -2827.7920446389276, 6470.281898186607, -23711.236836134747, 19582.129118443867, 15213.903005463768, -2696.6380268780613, 8292.166542426003, 11998.465345638002, 11487.10169738735, 387.6253368100088, 2319.7644724962497, 19256.24918556837, 38334.57250824603, -65007.265234013816, -29150.221902683348, -11144.543111905969, -74976.66711526208, -8914.595756037985, -121528.81639268143, -3839.2964019198607, -6712.618096800619, 476.90575948197124, 4765.524497617781, -2765.85748279377, 4813.924356413544, -18105.066673723082, -18256.620933227627, 8951.86446054118, -14868.318003822771, 18651.41808132812, -1470.246858557687], [20240.42390183822, 1301.3632904216354, 23782.659311347634, 822246.5262629578, -25306.505403129417, -170940.25370237013, -4059.444963511009, -2053.021591744984, -6778.518063411469, -1642.2776337545372, 9352.954621802051, 3129.1906655070334, -2370.3795100125594, 453.2823816746923, 9192.330536256733, 1133.944128075426, -96739.147184628, -138538.090882723, 9108.090593259185, 27793.739951036692, 24920.54058709229, -14494.773649047635, 2874.671359506272, 23929.701160787383, -47090.88570337646, -5315.017497803102, 5220.30795646278, 322.9303972400246, 16886.556730002183, 18746.94419366449, 23716.10342123794, -4124.428454466798, 2827.401594130643, -2793.1963168562993, 4230.895640498514, -13133.252657646184, 19512.48649090634, -19712.17464907849, -10735.317320708917, -7628.2466018208515, -46201.40834318685, 39362.708508860786, 13285.13862726422, -14892.637431512636, -119952.79089719051, -150708.44201762273, -31271.966351160852, 32825.09751121862, -398.30713324188577, 6213.598256134658, -1049.851561518343, 2465.540650375672, -23803.931480088362, 5471.3990854919175, 4419.626632471788, 22861.845168096235, -5443.360680111482, 47490.08486343359, -14511.445152379249, 2943.0978217659745, -3281.355444946111, -10787.610722408412, -53994.68544448143, -61531.071768915586, 4073.4450168648136, -45552.13846963056, -5251.935375017574, 26145.506401487994, -995.691543327238, -4900.735569118619, -102014.0281310566, 3167.771740214217, 5903.053371073447, -14782.313053480066, 279.8455525225761, 17212.257221460848, 2633.7323428225286, -12287.538286660101, -401.37630340020877, -10246.354924528308], [17725.877167769555, -3037.265551711491, 18021.405882691088, -25306.505445962666, 580132.6728817497, -38390.230687342024, 27560.668572157374, 27697.950620634605, -129161.78145252452, -17663.114054130372, -4939.427201781565, -2325.5106405397705, -786.6762632078596, -62544.15506451064, 7227.084050815855, -17912.678772450134, -25671.6028558846, -50912.758162881095, -23937.633675698293, -16526.24996258527, -28917.54110071742, 12140.903547192602, -2290.9843372072537, -11984.680692400749, -21666.051510725534, -24184.897026781277, 14808.857671312871, -6870.609284580195, -96421.8165901518, -205357.2077648593, 66406.48163225644, 17131.533522073787, -28003.667399234106, 2348.4027970495954, -7234.471965999626, 16894.967563159964, 1660.297365151643, 9385.468191138594, 14908.725590556913, 13877.708993982647, -16922.848987890895, 33204.53971720476, -8486.343766420847, 10707.358999126174, 41854.05112011218, -12257.99460616734, 57305.10465764244, -23907.624663479637, -245424.84531964813, -22096.773639707222, 37419.535742252556, 50027.87078667693, -15415.069214516277, 25558.71519442827, 32730.859048335275, -13307.619607578506, 1752.1430326842826, 26315.20079826271, 9993.16432062676, 45150.468866729956, -1628.1600861781606, -174585.65366280416, 38571.3634906039, -20672.55621385248, 36714.19504018641, 23953.45812829042, -12124.418278152956, -2388.6530887002946, 25921.930830244455, -21317.23562072606, 57408.098980721494, 44475.693099181866, 12671.735296939121, 2925.892859243526, -36333.22494257776, 16401.484127031534, 262.77155741855915, -24050.283855576326, -40.4519046017728, 23778.665440649547], [32188.85759912006, 826.2863598258109, 22162.112366198467, -170940.25349853636, -38390.23076881266, 807672.3323431786, -5393.885845555019, -8244.472328072621, -3801.651820419705, -4618.381675858373, 4635.979884813648, 4366.301552909493, -2323.3750961475503, 193.66578436282578, -5542.28144854288, -4959.915518693561, -132817.11677075966, -89744.41709276795, 14720.505066877287, 33370.00562236282, 33417.911649944945, -16675.48035286719, 5301.07431803252, 40741.10409997045, -93784.41656902182, -3336.9257594355918, 9467.058616838847, 13027.596992549583, 24824.842721716806, -1585.8517078087398, 67015.32817340556, -6317.088717478042, 3784.499969162647, 3179.20627501337, 8288.873246359528, -16120.58378630028, 5559.985432583154, -53477.09995926608, -22499.55428782395, -2281.9772424192797, -59446.06201319363, 28835.394252741426, 8950.218647715114, -24602.41798927589, -91246.85282182271, -105781.49241973319, -1887.7244726061383, 30054.847439356847, 3740.770361968997, 10267.273721261487, -5726.777897122288, -144.68873325015613, -61854.11362722982, 9340.518335517885, 6292.228563908738, 25678.606748622744, -5740.163902102611, 52897.89279887857, -15848.18008005061, 3057.96576588843, 8966.970558307401, -6810.372306626978, -44956.05765694271, -97698.99206804833, 4535.919762732554, -49838.31770640976, -8676.401208347848, 9553.92643117361, -4828.375838781728, -7107.527801516037, -65225.91238620145, 2347.259701486205, 9267.832780369125, -11310.96979219123, -2328.6280113137564, 9263.052246307414, 4126.5050774330675, 1252.7801998888992, 5860.376983451979, -15128.63449392148], [4889.221763709122, 2476.734316909067, 1177.0532492773607, -4059.4449406456765, 27560.66859273086, -5393.885842490492, 35592.384342411664, -6047.578108326465, 4214.162944029123, -74275.29100847256, -12576.506991125143, -4282.513445620908, -5968.824944646536, -22172.914956301316, 705.5336230394627, -23979.360542300743, -5059.536063834446, 6564.927032712182, -33223.749891664964, -10045.911274105767, -15051.351207775093, 1663.3499261679735, -18221.74427480417, 4911.623428418766, -1037.0150850049579, 304.55322081837716, -16093.799201341826, -4828.73161308403, -1721.6530872945261, -5146.393910117321, 1171.4209619567757, 16235.279211017523, -49690.70948244446, 18970.365298430625, 17477.133162701433, 7700.70047098508, -18339.438892537, -1957.8503701867385, 5828.644725249206, 1621.1072337260748, -619.3755265585286, 2003.3071656867837, -21582.973370991054, 14360.772027292187, -1742.492069272412, 38.09428172363955, 5040.140016480114, 375.45889695638965, 10609.95674777832, -20193.2657012957, 18747.401516400732, -7938.746169486079, 0.10416604491033787, -15497.60408442547, -14389.773617402674, 1156.1981751674577, 6219.404143620051, 3677.5473851779407, -1696.9301692540448, -653.2636856824575, 940.2369451993521, 408.79966201105594, 5425.428066704924, 3004.891433289583, -11714.809470688031, 5967.676505785236, 39744.231368928384, -1120.537746844749, 37411.756198819836, 35443.344339195086, -1861.1683974390755, 9896.224920126611, -618.4564559929436, -1261.8529894277158, 16766.83890445242, 1685.8969745315735, 33263.339208221434, -1118.7082620218769, 18051.25328829443, 11909.89532461536], [1664.457060961584, -43988.457044327566, -9347.479971014578, -2053.021546148292, 27697.950572883157, -8244.472344704307, -6047.578111984746, 828696.3647795523, -18.02775896085063, 19479.59295465906, 19789.054252182657, 20423.98275037405, 9149.16016227213, -113349.90418233995, 3852.990526562256, -138743.64540232532, -6718.770841611681, 22481.935236019905, -4086.0729503406797, 30867.074440488672, 116.32545682256006, -59213.189952070876, -120168.16174326405, 5923.43575468103, -7195.960997633193, 30531.231220832182, -65999.8264821655, 28951.59725356359, -19572.992896542248, 11016.107954518187, -21828.92542580985, 14569.391797254955, 28729.025139445042, -15068.274307515037, -16172.510630837996, -82181.10708484359, -34162.114335154045, -9284.88746930491, -852.393776808227, -28884.85917530328, 5622.811564173023, -4031.3428878902, 24284.452375575427, -23519.327228583323, -1434.2009495832804, 9268.202463151849, 10203.376889400708, 25216.519494705713, 11549.715114655968, 18735.11746977026, -159132.4285266476, 28013.688227437855, -2242.1976420414903, -34324.68387495531, 19008.83747835573, 15330.495714571012, 17242.648741823625, 4744.823576134709, -13755.504677995563, -21926.09531600726, 16743.804731840733, -18263.620476774377, 788.408823365149, -6988.707570712613, 27608.76143674743, -1822.374740611107, 646.9269057576473, 2789.7691099319927, -43104.41687591002, 7019.771263445173, 973.1504551160203, -52832.409972541784, 4330.928951263067, -6649.677525294879, 15726.207642228625, 1891.384827288826, -42477.206392933724, 2835.257622674449, -11537.178360542797, -117216.71881211057], [35692.534195469874, 30680.81737907002, 27127.541901899276, -6778.517961302448, -129161.78138300912, -3801.6516382028963, 4214.162951197238, -18.027729837712656, 773764.7089111514, 8283.129826026585, -3196.456106035281, -132995.0309838972, 28784.74243915339, -31534.567032511626, 14114.045215192347, 2597.1383623795973, 8384.905252143915, 6155.056533684388, -64368.93249875192, -13114.08038871178, 29212.918789802035, 8838.830060686012, -56756.09505300505, 43893.5901382034, 545.3558627610506, 18996.780775914107, -68198.35317366589, -4112.127908307068, 24671.5087627221, 11119.005102214167, -5666.421812618723, 37983.16320399842, 8200.347604629991, -9470.646771424716, -4013.579958291409, 7674.139924314283, 21525.92021223458, 2202.513434059054, -9122.672738170339, 1399.014101632435, 10048.190791579911, -7678.772721266628, -5637.928507870591, 11027.618603071913, -12222.585525908453, -4054.9427618211553, 10906.956880069496, -23517.735772897988, -36846.20489564082, -2758.146072642675, 4907.623087810892, -13146.463288657125, 3794.7469276218503, -63110.13768037385, -67380.15566067258, -9809.14293532905, 1192.2092119840747, 1290.6795710031438, 16388.048716120313, 2224.655920004476, -3687.515304096367, -214919.25916942809, -6828.09640307598, -23049.293876434207, -64360.63260974115, -11777.777973407718, 30794.773075389978, -7534.260785220206, 36627.99608007588, 19346.496269420397, -8483.858007833334, 9110.264495188901, 14900.249974019076, 5390.262265218514, -187234.85884210814, -750.8898229153988, 3997.3549464779508, -18419.00284945385, -10719.168318312464, 8240.735491343463], [-16137.827041496197, -5513.809922626819, -9760.104362565606, -1642.2775943166969, -17663.11403430183, -4618.381639282548, -74275.29101464745, 19479.592971725666, 8283.129688894029, 681317.3022273266, 59083.23903353864, -13209.293780041611, 47072.66962773967, 17696.269858354448, -10268.600272193216, 15556.133494699918, -5903.9351916891155, -4439.510552655081, -195375.35817977137, 9225.4123433314, 20181.00495127277, 15108.50234261077, 40600.05424928781, -22877.383433805408, -10030.998510630214, 90990.77178009285, 42130.83041608203, -20925.18811700956, -25254.830701748124, 15282.885906691306, -6500.028245108584, -2209.1628665563303, -171129.95114507707, 17077.4082128521, -63398.91632725266, 14281.023973782156, 4973.179062300216, -10207.630450696222, 4990.945616770072, 2027.9841299738064, 8408.060908524349, 6514.480430023642, 76530.72475905842, -67145.89619956358, 4332.520243578663, -1665.1034159608064, -1441.316815231202, 22783.952461847453, -23308.74443182936, -87965.4346767606, -6710.773929364807, -26585.606528053806, -8601.898256527811, 38522.340615614914, 16027.153131423976, 20326.332021033217, 10457.366175705938, -13140.135668191737, 16109.687338208978, 17349.36113276724, -39113.401438170076, 22537.799303269137, 2174.292826936594, 5987.797059124304, -1363.5199184441328, 3684.648044684079, -127269.75261204434, 10858.955397921434, -73081.19342077982, -126097.5080356304, 5342.382775936111, -976.3196135001431, -5136.4684856175345, 7292.055086797789, -66455.51841925, 12610.255334302454, -95436.70763717082, 7423.376585706433, 12920.313296253358, 9244.561277622252], [-10129.96587307138, 19876.86617449959, -13062.990221182132, 9352.95459908441, -4939.427077950853, 4635.9797436451845, -12576.506980277609, 19789.05423754356, -3196.4561037132194, 59083.238998339475, 674647.129102902, 2586.299779846862, -6017.19594754409, -3677.7363720936446, -9490.6832662817, 3148.220954030312, 2170.330928285899, -6545.331329757992, -450.6657413975922, 37997.77344870119, 14357.882751921834, 15706.119148367456, 763.9044419189555, -7263.250682451094, -11281.063474837856, -33621.72226403808, -3073.788146654544, 29313.576023771435, -8126.254200548925, 6231.52196909517, -17151.920346403065, -16744.167358632298, -1202.7400618965003, -64085.97955646604, -22720.738753989808, 17210.997209490906, 17279.156714745546, 6844.818640620531, -15956.286835873843, 27043.43615645064, -4693.54435166466, 7959.356567632312, -349046.9496678434, -137908.46851331968, 14295.10132543266, 8037.994136182164, 3828.719952638103, 6552.192656234343, -4660.753232730301, -40392.86468527608, 29837.784022721546, 7267.208144465622, -12800.438259728686, -4854.0709119731255, -3168.2165305228586, 4169.0854958342425, -198573.74953418807, 3884.4255462641977, -1414.5166849584466, -5603.489465984946, 18211.264402928246, -6122.126438223643, -3724.5901919169332, -16350.21974914415, 366.50233410780606, -10302.143423477792, 3360.266012194993, -8304.886331680496, 12736.801384189024, -3204.822368455111, 16268.861602974792, 2032.9481996642778, -7409.747786418872, 823.0327011663486, 9943.244531080663, 131.20002530079532, 13376.941594293656, 2233.8996280104784, -68738.81627455232, 25270.35104605057], [-3181.200052829209, 4143.132863554134, -4870.988464298932, 3129.1905353908405, -2325.5106682063365, 4366.301546937929, -4282.513443644038, 20423.982738290822, -132995.03087599477, -13209.293731044132, 2586.300029706593, 835951.9681961649, -4077.9377973072733, 20398.602221072262, -2039.772335897958, 22727.40951807269, 2005.0292888203323, 1776.2778297971302, 11779.796771737661, -1089.7466425335956, 598.8794500259711, -7729.8722951346135, 285.6171411870156, 2031.4817964385268, 4673.625870486066, 30044.65935016176, -35950.03182902459, -2700.741830477222, 15811.045344448728, 7017.222824635629, -2119.446065706392, -8527.43761401266, 2563.63478016446, -4348.940232669672, 3725.9516815797174, -3568.399226433449, -5763.820210320229, 1450.9338629487047, -4803.664802861406, 3893.4416572697564, -1760.0134477514955, -817.3561168981422, 5072.145275374874, 2274.960015860377, -2507.15777351456, 1548.7684537722496, -6880.315591792908, 6916.750680420062, 14382.1410586784, 5372.022552446884, 16682.6642263624, -128809.76589084517, 3568.298606022491, -57187.86408104828, -115402.18706330279, 6138.940245274879, -5521.822415875414, -975.3837307283217, -5226.26035179138, -34888.26385560331, 2101.875592640411, -81797.43682267005, -5352.078989504198, 3382.0945599658494, -135197.6501688704, -4333.302993782538, 9063.996780840924, -4410.061327871483, -862.2567537722591, 13839.796105888154, -3964.540530001771, -16532.122597379115, -7500.170892822121, -12666.525286086071, -222307.27319585756, -2416.6577915830367, 4664.308597202353, 3347.7638759454694, -2674.0163844009153, 3815.753893202364], [826.176046569145, -335676.06979319075, 2517.8988656666734, -2370.379505417823, -786.6762823258521, -2323.3750481945062, -5968.824969403426, 9149.160109790799, 28784.742374997455, 47072.66969695032, -6017.195973394465, -4077.9377704405906, 731217.5203159081, -6574.767036472851, 1966.4463428786366, -4533.120047484742, -1279.1603510535745, 428.79240144544315, -11267.154642889578, -3088.2493393533755, 726.8702268316234, -2936.1855004382, 8311.234625561123, -3145.855625852746, -470.2724380404881, -231144.92813160399, 7891.398456177226, 256.28018299432233, -11498.044048469252, 1435.0108780343548, 765.7294227078721, -59279.6658080029, 9579.82896554973, -10746.715077266655, -67.46169657261791, -1345.0929709238426, -498.63042819970946, -1250.850787115752, 4696.493567543501, -4416.473679199535, 1224.1493043171454, -771.2011074611586, -11041.385426244857, 19764.983962642124, -246.7192001975146, -1859.3220461727408, 2776.1468477857343, -3677.506883188201, -11881.468876429464, -4842.718386740011, 18452.152107482998, -110944.00061455618, 37.98131660637884, 469.28983039686597, -26662.06361921244, -4257.334289512076, 2139.844497071173, 1546.6497181233676, -1838.232443463075, -14370.05415741345, 3485.708775749004, 20763.394385642026, 3615.8107740665664, 1264.269334277298, -40378.185493585115, 4068.579648880262, -10327.88443566799, 3007.4538485394987, 12104.143742599372, -22203.26703384082, 77.94358799975033, 3743.7266739138413, 3564.233024858455, -3234.363627193629, 16876.422010288745, 724.1608317314189, 13532.829122392828, -1164.3464438411393, -11629.076610646738, 3207.4467481113224], [-35635.855437858765, -26188.088002665725, -29562.548973856752, 453.2822092780148, -62544.155071830544, 193.66579343127918, -22172.914984178766, -113349.90431479274, -31534.567085689105, 17696.269951476163, -3677.736488821935, 20398.602175381522, -6574.767076313828, 825226.2535323007, -10863.59042553038, -160904.45735917086, -2486.5533053937716, 1182.6777936049657, -3707.262878263351, 23316.398986788, 43094.50082984326, -14734.992025263258, -125771.2989910666, -55763.89748596569, -5906.179807557905, -5810.624161122312, -73010.73964897897, 16961.650748198685, -122507.79863464959, 56733.938822579745, -25649.558909442043, 13745.87336053787, 20966.0837554906, 12162.912211199297, 16517.803563905625, -23050.57867640322, -29629.524691859606, -10966.030496486495, 12688.455087465432, -14002.757978679934, 11003.187260187087, -1339.6930120937307, -4659.813795753044, -13285.333475839234, 5996.290675923478, -3958.187975655885, 4721.930450116802, 22027.5889415553, -107068.91535228361, 19717.159463636606, -67780.42934770482, 35140.2701871483, -6662.873191032075, -42875.35152984152, 8127.476196178306, 7910.237185263864, 5354.516632182858, -11946.594674463404, -8142.616804287411, -11130.726996614301, 8195.185792667793, -81725.3729751951, 10949.4125170988, 15620.043431552955, 23381.5927285039, 13490.37460405541, 18593.813741599926, 12319.045493445523, 4657.656400513157, 16151.32641493383, 6624.2517089937965, -20601.220659845512, -3674.0783295977826, 7865.520824840863, 50960.65647285859, 8224.540037537134, 13180.456721835842, 16369.15386922947, 13434.57663951825, -40519.74353167292], [3724.9556847531535, 4061.1028663430016, 16265.403388124418, 9192.330566215234, 7227.0840963488945, -5542.281506954362, 705.5335966891291, 3852.9905904631987, 14114.045316923508, -10268.600162982204, -9490.683299297027, -2039.7723577180234, 1966.4464369682482, -10863.590301571225, 785832.5550052855, -8035.15244010168, -26395.38392180499, 22299.968127112857, -728.0486682807331, 12946.931843924787, -5994.783184852246, -10213.543950771333, 2821.4023555449708, -10611.713589370924, -145608.37798513146, 8770.230135327785, 3324.5459706889583, 12685.719791658465, -23495.247882100408, 9299.587365697744, -24460.275526499914, -2749.9919951820407, 8044.5823226179255, -8137.718453995816, 7389.398052297277, -7287.254200599436, 15715.325640761215, -86046.95611614597, 22019.08230253833, 18607.30991035639, 36835.512026254066, -8558.543987886287, -7871.675094863834, 28042.349932424215, 6518.648880004387, 9480.057018951586, 6012.96209170627, -40745.38903866716, -19765.863655458084, 9943.463137919929, 8810.628249418318, -14503.808510253224, -172932.4134596517, 985.8300532008411, -5797.962992799852, -84692.33947848663, -13577.235546678818, -191000.61623231065, -84385.63713360709, -1534.149841585013, 27394.092429001725, 13057.284113998425, 15895.809023967766, -25619.112159675904, -8612.645207878071, 17761.413764806035, -2294.5216183052844, 24031.30746308598, 1433.004297420957, -1599.5210099684336, 3925.165209410202, 1893.2695710346604, -166500.90645833005, -13874.168836122033, 1886.1092442711274, 32780.30955470297, 8784.28007357314, 22299.668598942633, -5428.979943821318, -1447.0217777565974], [-43995.14798320875, -30976.619144540626, -52318.26416715369, 1133.9439940446389, -17912.678611468797, -4959.915529714312, -23979.360512465853, -138743.6453461045, 2597.1383231253894, 15556.133548325113, 3148.2208945357847, 22727.40957759796, -4533.120096297185, -160904.45752293634, -8035.152423716405, 823126.4166559657, -11128.842459337315, 6945.774044786062, 3883.1852894102462, 22160.947443942237, 38017.84089370308, -49307.02753256744, -104700.06397989122, -54397.965854826565, -5432.529034568562, 7352.206656029104, -46023.6100797544, 22916.990805890277, -109641.57855777649, 47527.02581063345, -34463.37610502062, 11367.4253680087, 29744.10854314609, 10217.427106295982, 18985.6589744736, -58871.47512767873, -77621.58086713642, -12992.421428388625, 1806.189875613868, -18027.022005403356, 5811.383250067847, 2737.581394345502, 3366.079721014684, -16183.165534057975, 14971.377378001318, 3351.5749798763745, 12313.943631838003, 38805.74241039549, -65847.42936089884, 30458.46726957622, -93833.18757727274, 15713.479979299025, -3186.1540295919044, -19315.681632241918, 16665.94728963299, 25474.04854336323, 11274.051762807867, -3209.5643232596117, -18330.706159790083, -4512.5863419769075, 18860.47367323678, -29650.6579095246, 11936.022361604057, 14014.832664985151, 21888.69044513026, 9950.035227198314, 8196.831056965173, -8111.349752462962, -6273.28152571305, 8575.886957973395, 17709.560268212983, -18594.03631519207, -10292.490679014325, -10790.11303696221, 29398.256868201708, 8816.917941964124, 7827.406994638995, 14609.929815997415, 14226.570803202048, -79078.37777973822], [22167.91949054087, 3599.751346365499, 11122.1544225759, -96739.14717521393, -25671.602801647387, -132817.1165909133, -5059.536036628666, -6718.770918695523, 8384.905384982601, -5903.935155064077, 2170.3309766436782, 2005.0292301273653, -1279.1603502949586, -2486.5534009139724, -26395.3840380494, -11128.842390961006, 841549.8460864945, -53368.576608254545, 16574.142435636117, 22819.04285998324, 18620.36363938745, -13437.646851917074, 8285.138522010506, 23482.938687761143, -87233.79426322097, 373.71166544745523, 10511.552013006793, 10408.815192532731, 5097.572825799069, -20579.527357676023, 56360.50907172527, -7850.290623889324, 291.0836348538843, 6869.0568851014505, 8160.063421112286, -11997.92149714515, -11988.345190554697, -116769.0048345779, -361.8014873044806, 203.06092882549652, -143280.13528158102, -93985.42688337358, 4836.4832769077475, -20934.263976852922, -15480.206211066297, -42445.68866901795, 29049.79251995794, 29080.56888028184, -3185.83990609002, 7334.701108187922, -2503.561137683096, -8394.38441346371, -63581.71601598798, 8159.086703281994, 1267.6703828545094, 25063.28810698282, -2700.759162298668, 6826.484855219133, -9798.43829738353, -388.1931884056475, 8050.117614895148, 9184.664350911491, 1235.1523785645152, -52313.350022530896, -1860.4096418052738, -7736.587849167127, -7506.422140226551, 6649.342816452667, -5832.823460894298, -5084.927208512174, 3459.8787798566646, 243.1258043009654, -1412.0404313061285, -8289.03526526688, -2393.7914313824613, -113614.68408821146, 4761.033282959897, 28607.31234257857, 8664.595516437696, -11022.651576765868], [-3718.6721955874254, 6988.719814050241, -1028.175628143615, -138538.09092309832, -50912.75824709807, -89744.41703997798, 6564.927045710212, 22481.93510449775, 6155.056466947703, -4439.510629980318, -6545.331514480643, 1776.277800323359, 428.7923590188749, 1182.6776889628861, 22299.968061461786, 6945.773973981484, -53368.57646912926, 614395.6230531203, 10204.778637952511, -14283.096250839662, 93060.0543307133, -4992.828145169283, 19173.088363642193, -15023.597636967746, 45679.58505883827, 487.32546290732256, 13353.341275134613, -3573.7817228731797, -33685.842985598516, 61866.79060429142, -192708.877093799, -11623.759710095957, -2684.233392833271, -7994.910500764696, -1105.5693767909224, 576.1710357211575, -9321.889650969451, 58503.3778390879, 22576.663005539565, -889.9204826468088, -139541.8573177863, 37807.161082695304, -8694.489744192279, 40552.016218580706, -27151.886504342783, -247492.29188689182, 20226.45919361689, -10474.037663153522, -46336.07415977919, -2856.2557980638417, 20556.972947478178, -8485.89257114113, 38707.80388422262, 7955.762298445699, -989.2441582849443, -24245.047105579568, -4019.3377492914956, 65121.70054642428, -47276.27428848055, -1921.0891420898288, 13865.668551995159, 2494.44991784713, 21635.78653844541, 32704.73478973198, -3405.0869749604044, 25320.143453248784, -10801.464520973617, 6567.261545245769, -6153.463083574139, -8696.04839288555, -14902.977760663078, 1402.0319185564488, -13309.079519441953, -13460.957282619907, 1847.2327609455951, -51636.87798988606, 1929.3227013779033, -17026.022380547012, -7359.218429610769, 9017.670742781655], [8958.724498706692, 176.73618447679948, 13019.359905077277, 9108.090468745186, -23937.633810409283, 14720.505025788423, -33223.7499197361, -4086.072936578688, -64368.9324014686, -195375.35825181528, -450.66581748682364, 11779.79685836659, -11267.154603908788, -3707.262921759988, -728.0486281773208, 3883.1854252961407, 16574.14249772591, 10204.778640812456, 357580.5024721314, 22430.33410930355, 7652.701089602771, -31458.002871351306, 3695.202989846794, 14967.197817984039, 4959.792392804539, -104590.68074487384, 25072.02894823164, 14930.756265951526, 21144.789505789562, 25712.954509986328, -9418.932524665039, -6157.739485122824, 80723.82900027516, -22697.792567937035, 36614.02421219771, -34185.04232538966, 26895.061882709513, 7769.481983961798, -8330.823346144973, 1992.8191048725066, 1772.1004447531634, -11433.393220833665, 12337.46121535208, -1853.0199814745783, -15473.538532196615, 4706.627458093167, -17392.554753158565, -1089.4688524211522, 4589.142529986441, 79567.45384477403, 48.09323318586363, 73730.16451869994, 1609.5314257130426, 39648.46254580796, 51715.5869103985, -7683.322971400483, -26291.66521463488, -1910.462920571334, -10542.650242943484, 61427.889600685194, 17723.239361923883, -68412.95719383264, -18008.41259744014, -9031.884987113524, 55102.74759721418, -15484.513113969957, -149543.00280619037, 8969.439539009563, 17084.633133440886, -222542.03524992653, -18864.509295340376, 54153.37753973818, -799.6309151638774, -25126.79292342082, -28487.643056498582, -11628.838591737907, 28616.257120786326, 3995.6239686881877, -12449.475577590792, -29293.61444245327], [-6108.0706557057665, 15600.664168084495, -40986.38121545198, 27793.739801772965, -16526.250240207795, 33370.00564688055, -10045.911294213845, 30867.074507800633, -13114.08040625052, 9225.412536733864, 37997.77338873614, -1089.7467247637333, -3088.2493872886253, 23316.398864469604, 12946.931679526318, 22160.947557135234, 22819.043001852802, -14283.096294132742, 22430.334010619266, 776514.5899683008, 12926.779372087454, -50718.53427838225, 18270.904300984534, 8774.681736778564, 4700.574105063628, -21013.13668003882, 1588.1883250013982, -172761.25212647638, 14569.024807826096, 526.5962911622894, -31040.669768803, -15794.502196225383, -12043.727050976624, -3732.3004331649818, 4259.534433683492, -24589.01390913847, -128056.40593030007, 11486.730013977374, -49793.127611428376, -3031.1127260943167, -4671.350491550228, -18110.46325288037, 38488.16079987727, 13990.390175635659, 29852.041558366356, 4537.551707145236, 20095.291957235793, -166454.84071459426, 6416.073924216832, -7547.117729328391, 31462.750484580756, 9822.485162577217, -2279.450100308373, -5074.960694730105, -6510.4033965735025, -99757.61604855415, 1499.0849724278387, -3350.210009209057, 36685.029199687786, -8009.910499869806, -136573.6544079525, -13440.264098752867, 6823.582363691939, -29953.922812263216, -1636.6733111022463, -11880.24538549319, -4747.564708945944, -129792.37321469662, -459.5442733038696, -4415.218599681869, 29551.302321119834, -1181.255265351234, 35132.63039978602, -94039.21296315119, 10699.29256249333, -18400.22661689927, 10634.71552633823, -12177.894644353773, -612.072108885256, 1031.4034017196886], [-20127.05606334639, 3500.1925934148007, 18245.53561024442, 24920.540516468696, -28917.541064752117, 33417.911702032834, -15051.351213594507, 116.32530848702275, 29212.91885134717, 20181.00488703246, 14357.882840244842, 598.8794075780451, 726.8701864401022, 43094.50086275013, -5994.783039614657, 38017.84080972786, 18620.363523266595, 93060.05451847782, 7652.701178810003, 12926.779304678017, 592090.988629863, -11903.575974267293, 7744.872149254743, -36786.16345269012, 8020.775906051433, 3479.67370578791, -5223.239502847319, -9586.636874302734, 11171.154442220286, -382039.8654935757, -134377.34008078903, -8630.07093334376, 20361.320552939666, -14206.096309806047, -3034.878362051194, -14367.539052532347, 40394.530354188115, -19733.595196141876, 13291.814837527096, -12303.994936256715, 25717.707312720802, -34962.037921859825, 18209.294973894608, -2934.3811295582864, -69195.39827516272, 20906.233258877503, -97567.08477950042, 16622.47071238323, -17569.31203736059, 11329.166173450585, -17384.483628570582, -9926.18844456794, 4765.719720950105, -10011.598359569827, -10193.070625335153, 5081.449204571958, -2054.5943905685895, -20458.581863773186, -2622.414651303062, -18405.532382879806, -13207.556183001228, 40331.79113192091, -39126.01176428203, 22458.648708524, -9660.39047584111, -10934.668150949748, 4096.620395392648, 38550.94091294938, -13476.859554417648, 7418.153962325878, -99823.83892823661, -19657.069790545775, -1061.3162504698403, -12768.293817471904, 10744.518842278048, -11519.699287240517, -7104.132195031679, 19190.988966827023, -11941.06222024179, -14788.877135169634], [7773.515267586191, 14050.906302696287, -4937.332777544815, -14494.77372209216, 12140.903512867542, -16675.480435975507, 1663.349944611837, -59213.189750294565, 8838.829983325857, 15108.502342382353, 15706.118963500368, -7729.872447369305, -2936.185653362498, -14734.992160498772, -10213.544165660587, -49307.02755397577, -13437.646651822048, -4992.828152460602, -31458.002936553847, -50718.53403599225, -11903.575932129554, 827187.8358692926, 7857.474140095625, 8788.137710485922, -4719.682975392373, -5998.727660283791, 21117.19315532584, -69079.53005206406, 663.75758173905, -15003.417539371843, 12340.292895132408, 6674.763577624412, 41546.176307976326, -99939.54866231522, -20640.172720525352, -161371.7880733002, -96497.84030665384, -593.457440974081, 14300.800908279285, 42902.57252051081, -1374.679568136398, 18428.790773567198, 28076.66796723649, 20323.927646266096, 759.3605516934647, -8966.744196549975, 15980.356708277764, 15949.56974487646, 14235.970636172602, 18711.35379170707, -50449.068775854124, -18241.519277346866, -3912.9056785478524, 18906.62930656954, -122.5175510434146, 20534.36949838404, -45388.616553806205, 3302.8717700999596, 2588.6774291314646, 17087.566302519845, -26132.729392581678, 18900.8740802332, 15876.32274659678, 12086.503722785348, -8501.127212481544, 16676.183857069096, 7941.2263198241535, -9828.76221822287, 20546.6104966691, 1543.2078335784652, 2621.925762750692, 20820.885003142954, -19796.231797390617, -163974.79126920915, -21046.789350566676, 13362.254834370548, -17274.422891257298, -241.67452771275077, -84467.64391139116, -137640.60676520696], [9669.467850208068, -6796.700440777185, 15987.031017065312, 2874.671313084151, -2290.984400828337, 5301.074217713182, -18221.74424728643, -120168.16190715054, -56756.09501457246, 40600.05425228772, 763.9046043282024, 285.61716693504894, 8311.234652598207, -125771.29911120962, 2821.4022678262777, -104700.06394449, 8285.13855154754, 19173.08821673501, 3695.202881437136, 18270.904440969352, 7744.871964938714, 7857.474088159465, 841676.5209505078, 4410.606448959753, -4412.109228614018, -2378.290846920412, -128344.01376731794, 13909.981027117557, -28744.926861816428, 39411.24240624789, -20800.582589044523, -8008.118658670882, 25240.005866724194, 3933.040194310147, -3102.312595760114, -8870.921011702269, 28848.259807876246, -5807.936135586059, 6309.028844837751, -15988.674655150373, 11924.262540881708, -13529.597283484229, 763.8571765880891, -16359.84731743922, -13395.835703646677, 2779.9798161603076, -4310.408303691916, -8559.305784214994, -27530.683584345312, 12613.7137114688, -104438.51924793128, 47012.276606781896, -4071.693311514516, -97697.33081929616, -21735.932283444614, -12147.155664708218, 7938.204733474083, -7182.484248605162, 7379.947844458744, -62144.49080880635, -2303.915262125045, -96363.93860081784, -4238.696402617138, -6442.715233312968, 6677.387204231705, -1512.9860711154524, 11004.996284565323, 18462.61984424778, -39508.64307865357, 15397.720625745003, -15387.18277869224, -79231.82687320333, 15043.721660123982, 27899.617649903183, 49278.53157852943, -2797.746974689995, -14726.252854314806, 1159.511662987891, 2863.8761527067886, -36762.5639084741], [-161251.33110924764, 3930.2296138311376, -127467.22337051989, 23929.701297588213, -11984.68096514396, 40741.10414449623, 4911.623436302025, 5923.435928834685, 43893.59004541778, -22877.383560541126, -7263.25072871422, 2031.481710524739, -3145.85561515497, -55763.8974888143, -10611.713403107151, -54397.965918574475, 23482.938705629622, -15023.597616791865, 14967.197904495599, 8774.681873684036, -36786.16335815239, 8788.137711101454, 4410.606554891069, 815529.934215289, 40355.94556294073, 10786.180212957084, 9022.144985361034, 7027.777040431656, -166211.3884877228, -10188.999520257614, 31041.387837117443, -7043.735045780534, -14852.234071224257, 8877.578770524075, 4669.977531887154, 13055.607938913881, -48614.31272237261, 12332.973921920411, -44787.23782558945, -2961.530848070266, -11668.60583499629, -12720.085968024576, -7230.062490964496, -1148.9607708227963, -20494.39975105145, -565.4091936351268, -108125.74315159784, 27614.893452435517, -113126.80289088709, -5685.749809705482, 23053.903812570363, -31705.266567843715, 27887.309505621713, 3768.7419116472356, -10961.815705929414, 14293.280310435532, -5139.324917271842, -22193.793931021446, -17807.185425627416, -4341.853785002736, 6899.45359402957, 38905.46567428566, -57278.180601740074, 39279.085099198, -16948.260399567942, -39254.42263763666, -879.8468234876349, -31046.319214828647, 2110.7870635993045, 2354.792674426862, -37125.643840294935, 3201.1115259223056, -28617.399775729173, 4972.684115453452, 16149.124220952259, -19441.22214679302, 8244.426656407097, 22469.088336900033, 7994.645909110331, 17005.671257929855], [34376.98209186473, -5804.89977382494, 19250.216285985032, -47090.88560840675, -21666.051652439703, -93784.41664382641, -1037.0150656175497, -7195.961149920292, 545.3560054564954, -10030.998517469206, -11281.063634595184, 4673.625913063847, -470.2723935228013, -5906.179730015645, -145608.3781297009, -5432.529060138477, -87233.79416957735, 45679.58509790855, 4959.792305236392, 4700.574022454508, 8020.775918522171, -4719.682967188361, -4412.109441803016, 40355.945661287325, 801911.5120290929, 5720.013695990719, 189.1651109611391, 19658.10729390821, 20279.7609426195, -14336.027739039897, 3502.7894263647354, -620.2935437464572, 6086.523883772244, 3323.440389574891, 8864.927832112995, -4892.3357369447085, 3393.9836266599837, -107650.93087685108, -31634.980330269973, 46984.40713468058, 20275.455019771718, 2910.1131628544213, -8916.87842665589, 380.195720007458, -13729.809996591925, 15037.097042936111, 25502.702453079062, -58192.776719789916, 2768.484892739207, 11353.989919067995, -4421.190319452915, -1095.5293350644822, -191711.81699145894, 1982.5227759241818, 3582.19447846478, -59338.443877940445, -10147.486206888152, -86339.17851240847, -14777.164546777301, 556.0117209515141, 28532.39450302496, -5171.987788751433, -15266.98282163111, -129499.66574977072, 3115.0231056915036, -35280.12458556158, -4122.355689934312, -23758.957469046123, -3473.4296050677303, -2590.5536657306197, 2259.9720503035946, -710.6622951043737, -50928.53967032487, -1815.0650420989539, 4859.726524974362, 38378.02578389763, 5365.01439799151, 82682.59521934105, 5221.41849804823, -5132.292063934933], [11554.024645043773, -157238.43283555118, 7879.973490151826, -5315.017465475724, -24184.89713905937, -3336.925693036525, 304.55322842269453, 30531.231220012014, 18996.780929911438, 90990.77187397686, -33621.72209142656, 30044.65930704879, -231144.92801854556, -5810.62432290325, 8770.23019149605, 7352.206615418436, 373.7118564015104, 487.325428628382, -104590.6807400002, -21013.136741247923, 3479.6737504942193, -5998.727734233015, -2378.2906415052753, 10786.179998593128, 5720.013718016472, 675478.4825362382, -19409.07241281513, -471.2409785826623, -896.5751585615291, 199.29483342151065, 2805.9002314820127, -138954.07486864147, 43508.723718715315, -22825.831353170743, 16376.598638548976, 2763.289516352998, -8279.167074177602, 3164.1819106096127, 1911.630309740973, 479.7261011911808, -601.4405378242981, -2363.51777869048, -49189.868330250065, 67523.62444606755, -2623.5872775246194, -4769.139189196749, 7977.0865015182335, -17350.77370039466, -16658.653060236928, 7191.626091279304, 49011.14166069329, -28653.38168833869, 6404.34143109149, -30895.228604961278, -29770.31417897081, -12064.501808219899, -2980.674329807264, 8301.385795493363, -6723.427827098065, -56591.767890742456, 18531.85952463084, -9012.960191396225, 4479.463318759736, -1630.3469235424193, -16079.555802957479, 3234.7621311517787, -68663.54688093028, -7669.256068262292, -8262.370160281154, -98651.93161356064, -1493.841577085203, -25385.367560113576, 4639.504759042592, -14411.887087622626, 113485.07474131984, -2484.12598621141, 48523.9235575052, -8726.004183985217, -23395.329229733296, 19244.10699310639], [12019.912120964094, 36427.33689559667, 20855.82538695299, 5220.30827718113, 14808.857575393902, 9467.058544510093, -16093.799213348711, -65999.8266211357, -68198.35307832038, 42130.8303215102, -3073.7881724673616, -35950.031718740436, 7891.398373524642, -73010.73957609758, 3324.545954654027, -46023.61007019279, 10511.552033377095, 13353.34119306026, 25072.028916966243, 1588.1882313151946, -5223.239488655886, 21117.193036484867, -128344.01361743906, 9022.144791921217, 189.1648647612335, -19409.07215749367, 866424.0696462223, -750.7889014977306, -3436.5059410556455, 27274.56130389032, -10001.387799249876, -46542.11739414325, 16510.78530919676, 2668.1751029313327, -2792.198763661701, 12453.576628498286, 39007.710547203096, -547.1404180349017, 3697.948611155787, -2093.433703258626, 6273.190369227955, -12052.737957716183, -4022.59267070545, -3389.8100537103865, -13768.095132355671, 2135.422147958101, -10983.953148932871, -19657.842040999607, -8262.251350217914, 4806.28818853883, -62408.02209549128, 13438.468253192425, -1210.773247993442, -120896.61380112283, -65825.12810433134, -17308.770695704134, 1155.4679424131618, -5463.379517850234, 12247.329823279519, -95823.14702728316, -9133.859015744223, -90333.95685135457, -7048.138751736217, -5073.6782777424605, -37776.83355617351, -3400.495884982617, -4779.190204092966, 13542.063899612294, -56111.62740170268, 3145.6131044711324, -17549.4537431094, -99007.42352913985, 12616.601989813935, 22192.354828647283, 25277.523281657377, -6221.527956339409, -8001.583212099006, -2547.700478540372, 872.6455691656671, -3175.7165781491512], [11161.804687574608, 7690.11688539315, 8413.739689501841, 322.9304395098099, -6870.609202259173, 13027.596713295221, -4828.731635686319, 28951.597263703796, -4112.127667093973, -20925.187919706714, 29313.57602965456, -2700.7419964365267, 256.2803997097953, 16961.65065572383, 12685.719737131121, 22916.990889575292, 10408.81529891288, -3573.7816708492137, 14930.756246321233, -172761.25219719368, -9586.636632416514, -69079.529837033, 13909.981148172255, 7027.7772212042, 19658.107717282415, -471.24111278787564, -750.7889536527043, 775833.1409609088, 5628.828903299, 3015.346580404232, 6682.159721540083, -7853.37983799251, 2208.2044545687795, -9354.18857118885, 16675.86300280096, -39210.41435889316, -65455.111547764354, -6679.888168818205, 13711.985282562511, -37927.621167666606, 8729.562380864383, -19198.309974075917, 51218.59405931883, -132256.92594634352, -7258.110979931964, -15007.96126507779, 2094.799622884117, -78461.83225594716, -7381.830806677156, 18293.167035654333, 27758.85453569831, -896.7718525770772, 16498.48724473672, -6797.490654478887, -9988.401288994746, -44747.95874369684, -64592.95645866735, -21092.18041062395, 38991.084375348524, -7251.713470648231, -223489.93912894424, -7055.60585588417, 13974.66464198325, 23119.82189041362, -7015.844214772115, 19032.910637201556, -3859.5671412938405, -29376.05937388752, -1046.4557388283665, -1316.8249060891426, -11820.367225681644, -822.0407430482189, 23642.83311864134, -132328.5089523828, 13384.326749197564, -5057.8873653025585, 13344.066161847699, -3921.9497324403587, 486.0290013493617, -7845.4880990768515], [-127879.52613159016, -5748.132549783354, -98987.48651492328, 16886.556831132963, -96421.81669043047, 24824.842740316446, -1721.653105316223, -19572.992958703442, 24671.508984319807, -25254.83081784289, -8126.2538016229055, 15811.045493200374, -11498.0440230639, -122507.79847902019, -23495.247929593268, -109641.57852455859, 5097.572862742142, -33685.8429570729, 21144.789581917183, 14569.02474863849, 11171.15456346414, 663.7573418993788, -28744.926796576572, -166211.3884540285, 20279.760783840113, -896.575319712616, -3436.5059115414924, 5628.82889889927, 793311.5344144759, 4889.981315452109, 18926.382338498202, -4755.01504082914, -15806.34017829192, 15997.235286197134, 14860.481502645767, 6557.406297979564, -54585.509006353954, 2884.103913160146, -2357.4974065658807, -7.272174044017442, -10927.458273791015, 3008.708700640541, -8667.612042681407, -3057.9128214565244, 16108.937087934539, -7017.090123370311, -45917.68946028119, 36392.47193010767, -178793.49607158525, -1450.8096010477905, 18775.417303019163, -16476.125036493417, 9283.152795385664, 1105.5697475846753, -258.90459581353053, 15151.774113537978, -5332.182002550874, -21127.84245843236, -21309.38998290314, 2032.7639927453286, 6551.887846264017, -7582.678012723968, -5143.328737358352, 52279.603874107146, -1958.350563116091, 6803.28603282551, 707.8042134554534, -4250.091837062913, 11149.98982711702, 2003.1241341800235, 8174.199329540584, 9561.196738576049, -30850.223066033926, -1015.0962008158454, 39409.26316546164, -3482.922032164095, 20540.88079257003, 32278.205601042027, 16051.3813620092, 10342.954305357336], [7049.079855024535, 3564.412888896514, 19827.080840388942, 18746.944208360073, -205357.2078828488, -1585.8517625258837, -5146.393899646677, 11016.108069320408, 11119.005089413065, 15282.88594060593, 6231.521967201389, 7017.222927022368, 1435.0108170387757, 56733.938768904, 9299.587283512894, 47527.02596544264, -20579.527250757073, 61866.79053767631, 25712.954388338017, 526.5962819815719, -382039.8654819242, -15003.417516524894, 39411.2422980768, -10188.999530767063, -14336.027757640646, 199.29489609900574, 27274.56123356307, 3015.346759601775, 4889.981252825828, 504581.53840162634, -44602.24134615015, -20186.38687753782, 12171.947379720066, -6051.0367253957575, -3854.639512627364, -16713.042083296703, 7864.142285183816, -8285.9433151785, 7411.839035746928, -6494.447819282589, -17830.5029236999, -1781.6846725945406, 7772.351746007146, 726.463294392302, 6365.469547258124, 44532.222596104424, -17054.60302065652, -394.6672581065382, -86233.68068292475, 8326.948426763007, -13639.455604737304, -5080.684650482649, -7981.700648080901, 19425.454512118165, 9249.387287214386, 1453.2298987689041, 3027.423396375757, 32643.287882940236, -13131.813213923378, -6810.038013553873, 6390.068156768374, 18878.067073346432, 4565.934508135451, -9802.33723480344, 4383.8209717190975, 6134.893601658562, -20530.738485161437, 5091.452864669936, -29525.276946838112, -14217.961808584423, -4263.039382702748, -12483.069578015937, 8989.818929567129, -9839.648400149625, -12657.045728769848, -11926.220502454838, -12921.31931759336, -7540.951218629857, -4295.365356667219, -17300.574339300114], [21472.234037763075, -6678.463903089547, -4732.2741427948395, 23716.1035029697, 66406.4817057716, 67015.32819574188, 1171.4209667400169, -21828.925398697367, -5666.421907236913, -6500.028259817733, -17151.920372772223, -2119.446072098155, 765.729465819841, -25649.558912527085, -24460.275626386723, -34463.37609846989, 56360.50907275842, -192708.8772055066, -9418.932534107582, -31040.669769932552, -134377.34009703744, 12340.292900800683, -20800.582610334037, 31041.38786466786, 3502.789380220135, 2805.9001984849306, -10001.38776829509, 6682.159819092114, 18926.382408749887, -44602.24134874969, 207239.19113228633, 11101.846885888652, -9616.05453912012, 21504.96576222687, 7175.7733694100325, 11209.08573746685, -46024.313846907644, 4450.309000132619, 9233.79635990191, 23254.96520138138, 43038.43147033866, -9718.091330734576, -23418.3167455834, -160.47147259867927, 7274.96722736952, -146891.68877043904, 35205.45053082907, -35520.015360792524, 49359.80932907333, -4251.2221962420945, -6256.160512875596, 4781.690876514317, -11286.260894878103, -4364.136265408726, 1745.9186314395151, -15690.02587879579, 10317.194103849524, -53504.8242382525, 31909.68021902878, 5489.867356321684, 9578.779271909452, -4814.0275582939075, 42474.949635158206, 23136.762502767157, 2657.6082660169805, 35621.14287007595, 6721.629229043948, -36527.82280616245, 9188.710956371948, 4330.33409847403, -9247.265334014624, 4114.836792642274, -3875.2956382054035, 20684.19180442637, -4291.673306198905, 15316.66666016941, 8478.928147551114, 15841.9821906094, 18677.139279331535, 4397.790958993619], [-4751.331074309215, 56008.370612998166, -7380.995913435171, -4124.42852475028, 17131.533556339284, -6317.088827209117, 16235.27917793926, 14569.391815037237, 37983.16297157625, -2209.1629543719177, -16744.167099659055, -8527.437556994219, -59279.665715204756, 13745.873679142253, -2749.991955820636, 11367.42535589549, -7850.290583448683, -11623.759603601331, -6157.739365537417, -15794.502238460496, -8630.07116261189, 6674.7638287535765, -8008.118902384299, -7043.735021697985, -620.2935273250052, -138954.07501058612, -46542.11732295437, -7853.379652079066, -4755.015470562081, -20186.38671416502, 11101.846900141996, 827268.0770197518, -5946.379650922207, 13619.117910209841, 12532.788199837336, 15025.66969530935, -19528.96942235283, 2583.6289155866048, 3238.4756026812584, 13483.13216348579, -6861.346252594875, 10523.733606228925, -22501.970706558925, 17724.57045700495, 10160.95404238607, -3536.0915297941006, 8472.853651426696, -1614.1226185473527, 2409.4927016956435, -109.67594149207287, 10862.827868949913, -46836.48357714426, -859.377362681645, -69197.14857002028, -71071.65435058078, 1180.5793354497303, -3404.870756505324, 5865.792376499078, -2746.591316719311, -125441.55359490638, 3384.58272169588, 37845.95389099524, 9826.462889881066, 5651.999120972969, -58597.66400848193, 8314.734818446897, -126391.19267659845, -8459.50579982692, -115798.59653220115, -122123.80892837672, 11557.500492997488, -108644.9802502856, -6970.448922638978, -5268.19448101254, 60601.38062287263, 4077.6363156868283, 12766.18558350666, -1330.357601707479, 13311.050235450908, 22193.95072507471], [-11947.779605920286, -20081.640016012003, -11057.187779730528, 2827.401575473349, -28003.66741629272, 3784.5000358228995, -49690.7094528468, 28729.02520035936, 8200.347513631941, -171129.95103550275, -1202.74005668659, 2563.6347702855755, 9579.828941307378, 20966.08382890029, 8044.582245831718, 29744.108454657704, 291.0837676027052, -2684.2334305214727, 80723.82875203017, -12043.727009535312, 20361.320392217647, 41546.176318477344, 25240.005862719507, -14852.234123913293, 6086.523772742469, 43508.72390718805, 16510.78531788457, 2208.2045701560714, -15806.340587149782, 12171.947491528452, -9616.054509257045, -5946.379941684578, 720814.8806483208, -42459.947493130305, -168941.58907647475, 32669.43806611933, 8583.921687146994, -6716.982006298612, -3943.110532371321, -20914.438371433018, 4099.750172090881, -7935.622267840999, -16927.741283805986, 20262.42481314717, 6479.12632165331, -1725.8972151724627, 1863.2969208862419, -11636.16963813482, -23599.101559352104, -235599.7397024328, -5809.647054901679, -9977.521845687197, 7334.116705714254, 12336.188226896595, 6151.507089070453, -4632.323529002619, 29429.362184636702, -5718.36504331426, 9273.984526194026, -5165.979125201546, -7930.597164629602, 9078.680527092656, 2551.878322954752, 4860.411619142139, 1448.360629951704, 1168.064357868602, -43876.37234308921, -9967.44663475843, -57707.306019027186, -22104.606195310425, 7129.232870019439, -16830.292585864325, 10050.728353985756, 42786.05849035707, -8382.60937428126, -453.37715652608597, -163331.90333112754, -3158.403746129755, -64242.54477413081, 22231.8079489056], [11685.163074327364, 7318.538873598155, 20227.31044389826, -2793.1962766940833, 2348.4026459012116, 3179.206187542675, 18970.365315847437, -15068.274504271223, -9470.646765425785, 17077.40812927754, -64085.979499573354, -4348.940248768672, -10746.715065288981, 12162.912183748507, -8137.718328453792, 10217.426947489066, 6869.056726476236, -7994.910633295152, -22697.792583422848, -3732.300326330391, -14206.096327258174, -99939.54866397822, 3933.0401857711245, 8877.578570141417, 3323.440326172047, -22825.831389900162, 2668.175332574784, -9354.188645656943, 15997.235461818296, -6051.036682470274, 21504.96573044607, 13619.118036561214, -42459.94767329706, 853437.2138576856, -102888.05954157875, -102201.06189563534, 5790.266236730995, 11487.63456492756, 10509.884938093955, 26249.6288773116, -4618.190333835189, 4173.644471504325, -69945.4845434061, 54134.69743157247, -11371.935107636687, -7128.0947025364685, -10315.452599776958, -5091.733148559279, 4286.009843820906, -85973.08685756745, -29313.40386036868, 3226.0597553282173, -1771.2171128450057, 1665.0962375871331, -3371.460790364626, -11977.554391296253, -64105.43488642461, 1844.7404008129115, -12585.090512736933, 12447.837192010697, 20401.96366605164, -8519.65221767802, -2520.515254185453, 5094.178651609215, -2554.5004943900904, 3103.178996723293, 24611.930014830003, 15632.669217493862, 26853.819482538933, 17918.90866855627, -14406.339482516358, 17388.567304615015, -10083.985601368644, -92454.54825174522, 4129.9780432242005, -3277.500423659546, -76668.47072056633, 4680.3130434361365, -145513.29387299574, -86502.42367024692], [3763.5537057753586, -22978.12750842438, 8832.841049210798, 4230.8956560384, -7234.471993377849, 8288.873292772667, 17477.133169348417, -16172.510659714037, -4013.579911537648, -63398.91642197943, -22720.738797680362, 3725.9518983429516, -67.46162433309361, 16517.803687891115, 7389.397999999987, 18985.659024762113, 8160.063322893548, -1105.569284864274, 36614.024257027006, 4259.534553292981, -3034.878142635039, -20640.17268237558, -3102.312660253263, 4669.977251558926, 8864.927779015447, 16376.598478128995, -2792.1987727128526, 16675.863058350067, 14860.481472296062, -3854.639627446757, 7175.773268272417, 12532.788223028454, -168941.589132272, -102888.05962236802, 841019.2992864002, -36226.508138426994, 24885.301673470443, 4838.592863183719, -3414.241386891831, -15423.226782259686, -2802.682915472275, -9327.78144569304, -35563.67527688797, 48351.75387346049, -4805.934064237774, 221.2636876421028, -9156.096939480289, -14338.674137763228, 2820.5126574356404, -177171.800345772, -50866.015649842404, 8248.540416973165, 7264.853013773111, 725.458026825304, 7968.793916001696, -15629.401807945083, 137.72917837258947, 2015.1254186892445, -8041.642058153473, 831.0221098375006, 19331.88968719525, -3641.0775565688623, -7015.213972683772, -1558.1206761271435, 8669.317718653469, -5648.982375768345, -3135.633614978836, 2710.771279684631, -25187.5903202514, 6890.746852857581, -6572.728626008561, -11247.526779993761, 7667.558185762491, -2570.2408870932245, -614.5342411468012, -9698.707924481449, -147575.03281344773, -1930.3904006030543, -116229.91160470217, -45666.43167698855], [10250.120743398953, -596.8590390162234, -1000.2316339831589, -13133.252583098802, 16894.967545717795, -16120.583777804777, 7700.700485868954, -82181.10705581272, 7674.139887583358, 14281.024055341135, 17210.997171808278, -3568.3994157297625, -1345.0928714832717, -23050.578697646477, -7287.254145608233, -58871.47519181176, -11997.921602903998, 576.1710400931346, -34185.04236033242, -24589.014076256924, -14367.539221518158, -161371.7880860214, -8870.920902326003, 13055.607971700978, -4892.3359791206985, 2763.2895750537705, 12453.576467712357, -39210.41407440955, 6557.406246942722, -16713.041943478915, 11209.085724890881, 15025.669721002818, 32669.438096030757, -102201.06179059022, -36226.508255986555, 840507.6342352607, -77243.63538847082, -235.87150255592974, 11644.557106419183, 26439.855166139936, -1703.3458780718872, 14790.528824878704, 27651.971209600237, 24573.794391065552, -2122.628332043181, -4990.014741862248, 12715.717926645355, 22074.75081998013, 21041.81446969913, 6812.207097217349, -78364.82949345963, -11078.955317414495, -3283.6826345538034, 16213.311422076533, 6868.968095875273, 20024.734684581297, -32779.85207263029, 6638.440000169997, -8107.27148206421, 17308.029650148823, -5175.182695675479, 16305.78098390797, 10545.879163842776, 6864.353371836458, -566.2325635112867, 11234.874213281351, 9899.76059813705, -2492.739479655443, 12950.981654244672, 4917.489451682269, -209.2324028237902, 13525.114754139477, -16588.088551659297, -137925.79487464664, -22001.487889654945, 9972.587219500247, -37212.17457436469, 821.810758171041, -89275.2577129406, -147538.29087847008], [-68680.78875292142, 23548.688810380263, -123126.65600433257, 19512.486406278276, 1660.2973586882624, 5559.985340608008, -18339.43889541146, -34162.11436662528, 21525.920279109643, 4973.178996169654, 17279.15669110175, -5763.820174098459, -498.63042825485286, -29629.52475012584, 15715.325733118501, -77621.58080002682, -11988.345163616905, -9321.88965429117, 26895.06191733802, -128056.40584100022, 40394.53030694244, -96497.84030444591, 28848.259807460145, -48614.3126887376, 3393.983727974132, -8279.167205026868, 39007.71046750727, -65455.11151271058, -54585.50896802262, 7864.142307534079, -46024.3138294404, -19528.96946214522, 8583.921616751077, 5790.266062650306, 24885.301668249613, -77243.63518289506, 778679.267733311, 2412.702286606154, -70056.92224316047, 35203.83762878781, -17219.503184801648, 7880.128173967361, 13488.043237384418, 31842.97278040622, 53865.71849191721, 18862.861521941057, 29348.952734067196, -42172.77289038147, -312.457802344959, 18351.767785407163, -5346.985841042966, -26538.25255940992, 8308.043412237825, 30478.926503435705, 1804.8114947336728, 8141.255855439848, 14759.676692536477, 21745.753949618367, 19780.53192261622, 8722.575721407773, -20680.146224576973, 37474.81731945938, 5549.6569994384645, -21627.424064232426, -10298.414173381734, -20374.014121390144, -18576.734434255184, -146577.19455644232, -1339.8558310609637, -17983.190386936494, 61516.27277308616, 14013.860061682239, -804.0920953508787, -89625.46688377384, -32194.190601891765, -3628.548412561866, 24778.277168348955, -24899.783589509512, 12469.243996787207, -61260.89972386005], [13493.675530860679, -5079.44525565976, 12508.586086475205, -19712.174636825934, 9385.468176485698, -53477.10006315716, -1957.8503790497728, -9284.88724892855, 2202.5133835135493, -10207.630532389758, 6844.818448680266, 1450.933747444162, -1250.850816204538, -10966.030395250647, -86046.95598331618, -12992.421304510644, -116769.00490454047, 58503.37774076526, 7769.481965110934, 11486.730203791663, -19733.59516012241, -593.4575166927087, -5807.936148993749, 12332.973825067169, -107650.93069854361, 3164.181981135616, -547.1403908127361, -6679.888451995208, 2884.1037784253595, -8285.943290544099, 4450.308956366508, 2583.6288544036, -6716.981952222499, 11487.634688624668, 4838.592934557988, -235.87176653904243, 2412.702371315, 824983.2021551548, 5424.580705686092, 38423.96981384371, -87343.38806812018, -172985.26103023102, 10713.28107089566, -36346.49240416083, -10208.648267597895, 22850.182299576853, 6208.773541447763, 14945.804991935482, 5834.651972662485, 1691.4330822696156, -4647.874023764831, -1513.2266173542375, -97499.34950362479, 1271.4582260294335, 1926.2330955556808, 19493.512825385304, -3086.5480618089327, -120923.93670845036, 49393.682085624714, 2072.1447030406225, -14700.126299036021, 680.045933366584, -636.7000678304282, -34345.96360509667, 1159.28294491863, -2138.798214436612, -71.04480521582688, 12696.335082369735, -343.1762676732919, 1067.344504541696, -7016.210162687529, 1011.4549863525316, -29707.97376291373, -1067.5319356529692, 470.5185695093801, -130256.55806662221, 1164.8292034125081, 37633.6228899075, 11943.893863413303, -2053.814185758509], [-77801.45207195389, -156.39999020061992, -105307.51667400697, -10735.3171766649, 14908.72555934524, -22499.55410318285, 5828.644727268788, -852.3939111607649, -9122.672462560993, 4990.945604843829, -15956.286907510594, -4803.664951951905, 4696.493537802603, 12688.455048361102, 22019.08247776077, 1806.1897025848161, -361.80152734319296, 22576.663007936088, -8330.823374608475, -49793.12777891427, 13291.814721368262, 14300.800965175222, 6309.028996996837, -44787.23775509883, -31634.980535713898, 1911.6303155654311, 3697.948537115776, 13711.985471280812, -2357.497268580912, 7411.839104708792, 9233.79642954055, 3238.4754486079064, -3943.1105141779617, 10509.885076884342, -3414.241456252153, 11644.557079290507, -70056.92221291478, 5424.580866143497, 860719.8911565266, 10979.906633438028, 2981.509874121321, 1160.4302615367571, -22223.154333047623, 12561.645345902827, -35680.61498415843, 18472.70493209844, -65698.17162331742, -74844.34399913784, 22937.522982020164, -6401.032997842031, -4399.027904148673, 6260.489617773961, -19824.841984184717, 3354.2823063680917, 3346.2277509205624, -27473.40253540806, 12256.253444426518, 27663.632249364724, 20544.43035181488, 2593.4912602928102, 20430.09044467857, 664.7862729360354, -98993.90334543177, -116939.1950782098, 2891.625473821339, -120014.63964660624, -2002.0717593369047, -137922.41445147328, -3664.8523459470703, -2565.9019025016214, -30445.200843373637, -865.4130526135965, 30826.566323673887, 23172.44659144759, -18116.33750812095, -1024.8841109843777, -4456.480767923221, -31265.205084517056, 7242.471605854663, 5554.55484426004], [-2408.5916671756668, -15880.621829465274, 5325.964111075334, -7628.246497954327, 13877.708936558112, -2281.9772111354964, 1621.1072437689545, -28884.859216252633, 1399.0140702072265, 2027.9840575522421, 27043.43593365914, 3893.4417745968467, -4416.473676305824, -14002.757931903927, 18607.309912815017, -18027.02203692704, 203.06089194932545, -889.9205707477344, 1992.8190771965492, -3031.1127170085424, -12303.9949478619, 42902.572558145, -15988.674581774947, -2961.530717194033, 46984.406972967095, 479.72625225287584, -2093.4337098829606, -37927.621252461315, -7.272192363619557, -6494.447778723444, 23254.96519167507, 13483.1321295873, -20914.43836194263, 26249.628811563336, -15423.226565360668, 26439.855178250284, 35203.83761519817, 38423.96979679287, 10979.906656012085, 522422.33436637704, -35203.96697876959, 2972.919063048382, 28803.95847040076, -130426.91737795468, -8679.241242469196, -1913.001850076924, -9522.220830768814, -50660.76018478969, 9844.384610948522, -18620.866011293376, -31837.437767658263, 4514.684160088031, 40272.99522582115, 4927.997207980566, 10706.540102518073, -149253.8669393137, 26687.261054823648, 74656.03066167804, -357174.46941840724, 8400.984763708606, -123858.25946313601, 2928.4624890828954, -3431.404702415632, 23555.829346317605, 9007.269887499217, 3324.1142793327363, 7934.6952091294625, 24879.366323315553, -619.1283285874224, 8219.85609030535, -9948.188113778377, 412.5416589635646, -35340.22098284771, 60772.09536384769, -8093.968098447733, -28286.84326176363, -23189.597050553606, -51.262574212179686, 19654.36576428168, 2410.651481195586], [-9784.050003342438, 7564.760138331062, -15150.41168078233, -46201.408553841684, -16922.848807545313, -59446.06186062491, -619.3755175996503, 5622.81157792249, 10048.190832626777, 8408.060961637655, -4693.544431494326, -1760.013459840108, 1224.1493118183307, 11003.187182814432, 36835.512218380245, 5811.383294188003, -143280.13527920516, -139541.85707628884, 1772.1003792477582, -4671.350374988986, 25717.7070830727, -1374.6796316556872, 11924.262594798245, -11668.606073918898, 20275.455185800252, -601.4404606607364, 6273.190323135647, 8729.562331065255, -10927.458262813405, -17830.502811902334, 43038.43161232493, -6861.346204873806, 4099.750221269913, -4618.190426274909, -2802.682855859597, -1703.3457377425298, -17219.5032180303, -87343.38823356698, 2981.510088307881, -35203.96695571962, 726740.2835384276, -194422.1164712327, -7857.768225962793, 18782.26193701484, 35444.36734323111, -50675.52554582792, 25807.316844936537, 4430.945118042251, -11223.372589900207, -1078.0782577513583, 2065.2744825536806, -7106.687942659778, 30194.291328906293, 2036.5531785801961, -3876.598554727883, 3108.657222921583, 5321.185126312195, 42417.150014231105, -31042.2388638008, -4805.8625010989235, 11965.290374172575, 15384.65936944907, 22612.17921163895, 18059.401863289113, -5501.814473929576, 16020.961906029821, -2265.952704795088, -11940.786598861001, -4522.083333940742, -1431.492901001208, 44062.13612438211, -3529.0036695080107, 20446.788584866783, 2544.780438864172, -2600.40778959171, -266284.9857391556, -1344.107621751531, -618.8193821561767, -5190.746297049142, -1185.661481064434], [-13687.576525933617, -7274.584691122901, -7662.3620014580265, 39362.70869715303, 33204.53984385431, 28835.394019962278, 2003.3071748016293, -4031.342891276343, -7678.772749501433, 6514.48037648525, 7959.356863333032, -817.3560901372337, -771.2011078828102, -1339.6930797906612, -8558.543860351818, 2737.5812773362186, -93985.42699165829, 37807.16096941865, -11433.393188959144, -18110.463465190598, -34962.03786461106, 18428.791125728778, -13529.597237459906, -12720.085930561681, 2910.1130346387627, -2363.517790891213, -12052.737987474331, -19198.30986182121, 3008.708500271481, -1781.6848807310278, -9718.091335936007, 10523.733507174944, -7935.622302362008, 4173.644281740564, -9327.78151598393, 14790.528815236534, 7880.128310692082, -172985.26094709887, 1160.430288723332, 2972.9190347332938, -194422.11656534162, 684286.7353681376, 6468.137244747786, -16969.22008355152, 13587.616112587924, 36894.960853587785, -18077.819663473725, -4084.1271954040253, 14614.760263650516, -11650.437051477955, -6685.163605956332, 10373.250358759655, 5062.122866739274, -7914.555613878783, 973.3367135934544, 14860.340649186312, 9734.696257233738, -110565.0608025499, 69405.96160834686, 1584.7374346034278, -32115.72348290496, -7316.671400120991, 328.55900754077396, 29027.36391501129, 4118.316118964872, 5686.594455314671, 10162.529648356625, -3285.3930363676172, 5682.72186277039, 8055.470986415655, 2297.680416844287, -877.3808438243111, 12079.961168852707, 17009.693888640064, 1603.7896529623372, -295175.3708764213, -8488.937993519423, -8382.600682551849, 1085.8857229043674, 8691.187331710767], [-12202.340499032269, 24589.593572965303, -19134.668261731385, 13285.138600211923, -8486.343834681093, 8950.218598774623, -21582.973408898008, 24284.452495118938, -5637.92859938932, 76530.7248494162, -349046.9494525036, 5072.1453292700135, -11041.385355267632, -4659.8139288421635, -7871.675219934718, 3366.0797608403127, 4836.483365507557, -8694.48967075376, 12337.461314854008, 38488.160817282354, 18209.29504082655, 28076.668120369948, 763.8573678202837, -7230.062597207582, -8916.878352213771, -49189.86829444134, -4022.5929278113863, 51218.59396954459, -8667.611818957677, 7772.351755476779, -23418.31678021429, -22501.97052451206, -16927.741295760294, -69945.48442291818, -35563.67527601747, 27651.97105594046, 13488.04328686708, 10713.28101149646, -22223.154388520896, 28803.95825996284, -7857.768194700322, 6468.137453714505, 616986.4616428176, -102815.01084943369, 19493.234763784993, 9310.648691015247, 7186.3637854402095, -3738.0573866922277, -4806.07289655952, -63549.18397413645, 36250.39192280633, 12356.36313157781, -11592.797537995508, -6092.782567630149, -2882.0510800712514, -4384.325946460274, -191689.79285989067, 7687.5345640524665, -7734.448977889231, -7324.813508361277, 45927.448493773794, -10123.769394150062, -2880.8399572839085, -19373.070562361216, 2425.145454056577, -12104.968787686372, 5625.289914523753, -19474.597157221244, 15438.81455648839, -1862.5819757967608, 21749.269993266757, 2174.9967832815173, -6675.94452326274, 18282.42321912124, 15727.85755274334, -3884.719537776321, 9456.199698645376, 1237.878053455193, -78463.00634272245, 34090.27434240304], [530.4719049922296, -41135.58123532529, 9890.157493379389, -14892.637409293271, 10707.35872653319, -24602.417860071277, 14360.771989283454, -23519.32724295366, 11027.618830120307, -67145.89612875813, -137908.46863866487, 2274.9599192196492, 19764.983856069724, -13285.333448211997, 28042.349968499417, -16183.165471748547, -20934.263986288424, 40552.01624043546, -1853.020020809968, 13990.39017770021, -2934.381101114027, 20323.927725289752, -16359.847434853538, -1148.9609083558125, 380.19571064835463, 67523.62447570181, -3389.810074659522, -132256.92567300634, -3057.9126949109705, 726.4633840388336, -160.47147179138926, 17724.570531886544, 20262.424848438306, 54134.69721378313, 48351.75378116523, 24573.794456244304, 31842.97272047955, -36346.492494245096, 12561.645315566573, -130426.91729418113, 18782.26189002012, -16969.220037475057, -102815.01070371112, 549903.0527421153, -20729.47113845005, 10940.815705768675, -10380.667020092002, 65577.36036676596, 5607.834942201649, 58478.47364164629, -26886.86636581818, -7602.0688356250985, 17691.752154760798, 4634.77482009032, 13182.863231028095, 55236.894988395965, -182126.82681720005, -5115.871026264215, 12686.49642274066, 472.08348294403686, -234724.6181631956, 13446.469552378681, -11938.974996878755, 6499.231934973958, 7778.851341884634, -5157.283135036755, -19995.220862652837, 44046.56857099697, -34723.38046772949, -9246.277329746596, -18280.11106334197, -17170.178098280663, 25719.00140306668, -19762.086409164567, -22750.915443839163, 9130.52595916831, 14814.974232347091, -7659.18309594543, 61404.814942133125, 16049.207169930805], [-25767.395945371274, -3611.38961858883, 3752.798746213284, -119952.7911580617, 41854.051249086646, -91246.85280134136, -1742.4920314539218, -1434.2008216405236, -12222.585437069856, 4332.520284464691, 14295.101215704699, -2507.1579530619315, -246.71908020791358, 5996.290640779363, 6518.648939602207, 14971.377334504881, -15480.206188750655, -27151.88651437814, -15473.538586883264, 29852.04143400284, -69195.39842726606, 759.3605663027321, -13395.83611079566, -20494.399316895404, -13729.809739480914, -2623.5871659278987, -13768.094960080887, -7258.1105936909225, 16108.9369881836, 6365.469563166192, 7274.967318655063, 10160.954275722097, 6479.126262082763, -11371.9349697679, -4805.934195223108, -2122.6282547877386, 53865.71814245321, -10208.648177943765, -35680.61497907958, -8679.24112033309, 35444.3675707963, 13587.616219242249, 19493.234680774378, -20729.471167941512, 824118.0827626439, -104306.43974124288, -128121.92417528447, 26287.19675339356, 20592.17381053109, 2072.950341166214, -6311.441827110571, 10220.07795275606, -1953.376234770655, -10035.415162036423, -1526.6809316085871, 18082.29178525763, -6726.576213362912, -9710.275998327477, 14259.769484175462, 1598.3224732184194, -20591.639170345767, -13215.092930908715, -114574.05840245758, -46705.36294261248, 2325.266251556047, -85431.21679231693, 10305.181450889155, 29643.360786246896, 8826.049343797307, 7416.67408704454, -181689.99860511374, 929.7616653614822, 6075.257768058514, -3357.7284689971234, 3654.3400096599703, 35576.78990920963, -4556.442024908146, -10351.515491535336, -10295.186398336833, -2790.6412557974672], [6389.016187823436, 2826.064264675153, 20605.045348849675, -150708.44197859542, -12257.994712310481, -105781.49250035686, 38.09423958489781, 9268.202633195975, -4054.9425021808966, -1665.1032837967407, 8037.994305424172, 1548.7684614222135, -1859.322055887019, -3958.187816193188, 9480.057297157186, 3351.5749631332687, -42445.68885988411, -247492.29184865608, 4706.627452767993, 4537.551596525388, 20906.233569092336, -8966.74421725065, 2779.979679849403, -565.4090945094698, 15037.09703220938, -4769.139138038799, 2135.422219380298, -15007.961502563143, -7017.090227822618, 44532.22250511806, -146891.6889236547, -3536.091422779989, -1725.8971294520725, -7128.094909428258, 221.26358077044227, -4990.0148748983565, 18862.861572642414, 22850.182134798422, 18472.705062322682, -1913.001960357889, -50675.525029229604, 36894.96066857192, 9310.648833201612, 10940.815810218812, -104306.43974868327, 787428.1289419252, -32824.83966849331, 16556.88050771583, -15712.385512064007, -891.4630922716924, 10545.809682729461, 689.9962517916225, 17268.378896831193, 1455.150871914005, 247.4175398201643, 1573.5575989701438, -4053.6789840421784, 24269.327346726885, -15718.598670305268, 1281.6742115228224, -10597.23364496975, -9433.516931588083, -25657.51411309402, 8013.464771544239, 666.7286421763135, -7311.075170821852, -2677.5778312010807, 35494.57736534477, 2288.7461879541574, -2984.039931752471, -98895.65693828603, 3696.792383084998, -8899.691940813977, -17408.2437407631, 4834.893268162529, 3443.2871254476822, 2752.7010993284352, -11111.51905832986, -5723.24111616775, 1316.8030656937722], [-107236.37887332472, -98.42012971535746, -66864.06336234004, -31271.9664833028, 57305.10509618794, -1887.7245550909313, 5040.1400017820215, 10203.376961686256, 10906.956604371651, -1441.3166385738054, 3828.7199992865426, -6880.315671147199, 2776.146936086855, 4721.93055954303, 6012.961688990971, 12313.943740511602, 29049.79282140387, 20226.45897676506, -17392.554741530992, 20095.292196392867, -97567.08481799214, 15980.356604027576, -4310.408345856986, -108125.74323724637, 25502.702426632964, 7977.086261935102, -10983.953038189598, 2094.7996616673045, -45917.689632584705, -17054.603112804805, 35205.45055720099, 8472.853560944937, 1863.2966214707246, -10315.452565260639, -9156.096910156864, 12715.717902049177, 29348.952822048985, 6208.773618726821, -65698.17168777635, -9522.221009970093, 25807.31673857649, -18077.820068742392, 7186.364020834229, -10380.66693517441, -128121.92419122887, -32824.83946478867, 834139.0714169824, 13122.83442620687, -12034.834569672445, -3742.356119270798, 3267.6840807428625, -5620.415925197056, 22948.588444274625, -12063.050303261987, -11023.309446576237, 7389.596927483413, -7146.652550365813, -25160.465462003223, 6997.892613324853, -4861.574728171635, -9169.752580573617, 16498.124370996837, -124681.07005554052, -15619.917146942233, -9774.571695288705, -94967.38531599255, 11993.60301762689, -8567.615068999501, 5765.5034453350445, 10976.030437367504, -147841.54086938236, -3282.755752265432, -3438.6116837042214, 10788.769429939743, 4192.407322768648, -1591.6763455465948, -7704.276812489745, 36.76886075166825, -11152.870381381197, 11580.935604356077], [9809.571422567771, -4561.667959092531, -18159.90937795198, 32825.097622728776, -23907.624542525205, 30054.847395861125, 375.45889301578035, 25216.5194478986, -23517.735772022632, 22783.95251830474, 6552.192802702117, 6916.750620573236, -3677.506961065301, 22027.58900832684, -40745.38878088921, 38805.74233339964, 29080.568760960043, -10474.037550271742, -1089.4687703571212, -166454.84058549223, 16622.470488950985, 15949.569508586033, -8559.305684519884, 27614.893413976453, -58192.77682460968, -17350.77360988455, -19657.84210981732, -78461.83235322253, 36392.4721322915, -394.6670026467606, -35520.01537910668, -1614.1222977961297, -11636.169600677747, -5091.73315836183, -14338.673976128155, 22074.750748362385, -42172.77281627479, 14945.805088096913, -74844.34406016186, -50660.76019390255, 4430.94530836623, -4084.127250270406, -3738.0574265781624, 65577.36027641992, 26287.196624773624, 16556.880320622375, 13122.83454279216, 772093.6155870414, 8894.493155607883, -22642.670497764117, 15036.163175534777, 27751.748241865414, -73736.75745613314, -16985.196902534415, 1314.818018152721, -187388.2618236606, 20615.279393147364, -12421.577852418786, -43359.55656795504, -8298.834262710207, -54633.28644907111, -33382.91365626722, -14409.021067934062, -94711.05596820345, 11578.822965527785, -41512.00468351717, 6202.839589155091, -126960.25013508456, 221.29373518280744, 4474.806181300564, 28215.57870043842, -8770.143056169652, 21387.11649814556, -5573.167876570624, 23363.790207625774, -8042.843623672374, -5692.77016069716, 34751.71671624275, -9359.88111064077, 26910.744863408894], [-66514.55297188635, -5341.324517743131, -33925.6762276627, -398.3070710900845, -245424.845197581, 3740.7703304177453, 10609.956735185222, 11549.714962823335, -36846.20474541408, -23308.74432917206, -4660.753447520556, 14382.140883146918, -11881.468754973019, -107068.91528966067, -19765.863587607262, -65847.42935541163, -3185.8398968089045, -46336.074382653765, 4589.142418426233, 6416.073648510468, -17569.312030116776, 14235.9706960443, -27530.683753210647, -113126.80312868615, 2768.4848675530293, -16658.653204590755, -8262.251354340537, -7381.830644495032, -178793.4958544707, -86233.68080582975, 49359.8094188075, 2409.4925488656236, -23599.101556048976, 4286.009793559917, 2820.512521983133, 21041.81434761622, -312.4578063360814, 5834.651892461031, 22937.522985702875, 9844.384667758433, -11223.37247467224, 14614.760074452724, -4806.07281342703, 5607.834829294801, 20592.17391359985, -15712.38546547529, -12034.834354283917, 8894.493569939967, 763927.0327537494, -13917.069867981447, 38038.14676518403, 15280.873371889247, -5094.115113514322, -309.0875902411008, 8661.984370566637, -6314.114684028687, -9081.145084935053, -10884.236157634336, -7104.129789333827, 13254.505357790016, -5551.419238398958, -86069.42605011212, 16881.299257374598, 34915.177353598825, 13974.345977930601, 24776.162743705376, 1136.458315931779, 21977.322898988717, 20953.21557145122, -1941.0161077866103, 18858.438023556733, 20665.997291301912, -14749.532459403023, -293.8368324776045, 35483.82400766965, 5241.449615634321, 12846.5910309131, 18907.679253605816, 3166.8576957625482, 29522.72165880369], [-5080.1898548934805, -16263.349158855492, -2827.7922861932625, 6213.598061052214, -22096.773635791917, 10267.273703832992, -20193.265724210516, 18735.11738475827, -2758.145759461381, -87965.43467298905, -40392.86464195835, 5372.022509187142, -4842.718509267986, 19717.159361508442, 9943.463136825638, 30458.467421682126, 7334.701276556918, -2856.2558077930776, 79567.45377989578, -7547.1177619319915, 11329.166213310276, 18711.353793136503, 12613.713785520555, -5685.749700437906, 11353.990073107581, 7191.626252717461, 4806.287897847331, 18293.167020630954, -1450.8091498506953, 8326.948379008953, -4251.222210540429, -109.67588590355946, -235599.73945811536, -85973.08723540774, -177171.8004748991, 6812.207335173078, 18351.767633392683, 1691.4329814856283, -6401.0329941991495, -18620.865883224542, -1078.0782374580822, -11650.43716147582, -63549.18407158144, 58478.473465535026, 2072.9503729298226, -891.463070027918, -3742.356144306315, -22642.670284838892, -13917.070118608746, 770699.0488693621, -13297.34548451711, 5314.834262635972, 10037.748657617083, 3268.3523536363386, 4762.40606617485, -18334.90222670996, 10500.035002923889, -116.53291637565547, -3249.1558475445772, -2585.665501226383, 19302.054693557096, -5584.351278427394, -2294.1955173277684, 1649.338350719481, 5777.123822742228, -2954.8621365067074, -11072.680536355949, -9248.01017994317, -29166.05334283298, 3105.912220223799, 1040.4007658989194, -9360.24316002208, 10438.803609924602, 27332.1607218841, 7683.175940816752, -8977.439411892958, -155960.16509466135, -3439.713547177284, -106745.38529671887, -651.9028634702347], [14298.627352591417, -46826.581993043306, 6470.281799639453, -1049.8516238377642, 37419.53561507059, -5726.7777898117065, 18747.401499938453, -159132.4284533725, 4907.623174409787, -6710.773644442595, 29837.78443388455, 16682.66412064941, 18452.152295361153, -67780.42932053596, 8810.628431172636, -93833.1876075046, -2503.5610331652983, 20556.97302470563, 48.093188213726556, 31462.750652160725, -17384.483528382952, -50449.06862227378, -104438.51935823134, 23053.90397515614, -4421.190105358485, 49011.14144359813, -62408.022197377475, 27758.854472286857, 18775.41735071488, -13639.455584699364, -6256.160501778584, 10862.827903950767, -5809.647335375737, -29313.403895721476, -50866.01554631543, -78364.82961808717, -5346.98598466315, -4647.873774187496, -4399.0278420857085, -31837.43784225777, 2065.2745038967932, -6685.163779338646, 36250.39173482227, -26886.866535246256, -6311.441987546361, 10545.80954318627, 3267.6840253175155, 15036.16270803887, 38038.14664414919, -13297.345424920051, 827213.6067901136, 25415.976649656917, 255.16437086012624, -34171.43777632638, 18079.235091531562, 7996.526202355929, 20577.351084594873, 6586.178285050825, -9052.227102544446, -30522.757494955662, 10773.695922463057, -2172.7842306728053, -6422.0592583846865, -13610.589787435205, 25456.432534045347, -8576.262430896124, -14397.386837003138, 6338.875532076642, -69659.96963316301, -1942.6619460998863, -4835.395133086735, -68291.13463115592, 10062.887625910516, 1462.5658864601091, 3535.147434463174, -3299.0174551719115, -83974.04793814772, -2446.4816147730485, -28580.00827649073, -117725.02249813711], [-27400.281075589013, -139590.5987883441, -23711.236854951207, 2465.5406562539383, 50027.87084502888, -144.68879614747468, -7938.746151311906, 28013.688051783633, -13146.463324601815, -26585.60652680208, 7267.208055485204, -128809.76603724914, -110944.00042322457, 35140.269992771515, -14503.808382049909, 15713.480049745744, -8394.384451442525, -8485.892525579358, 73730.1645568652, 9822.485116085772, -9926.188395413925, -18241.519237273722, 47012.27667632281, -31705.266595500252, -1095.5293380010287, -28653.381820978968, 13438.468348166565, -896.7715457907035, -16476.124973655846, -5080.684690630495, 4781.690851506956, -46836.483568601085, -9977.521965398273, 3226.059720565927, 8248.540590649325, -11078.95511690833, -26538.252619531908, -1513.22665134349, 6260.489570398448, 4514.684281297353, -7106.688118106374, 10373.250422820485, 12356.363138696703, -7602.068723738411, 10220.077927510303, 689.9963308710497, -5620.416163660325, 27751.748178544633, 15280.873337372645, 5314.83435564343, 25415.976820323638, 791875.9852692623, -3493.5821309477574, -19620.61481239456, -109129.61836283242, 15773.12611073281, -7294.447519720942, -1281.210498661254, -17280.086486024662, -41006.28367978177, 4458.829188649094, 41977.75615477352, 5785.926879000437, 19109.990142413662, -147306.60375624694, 9020.44328234428, -11988.63655073479, 3668.311177409324, -20594.16254274641, 1508.078361656491, 8560.438209411946, -17400.72450274979, -18937.173564465254, -21698.344876779032, -175755.82987945122, 4183.67168897668, 5199.311514433608, 16991.19136100986, 6274.717168542831, -706.8990526348782], [27698.323446579823, -4019.5706998419764, 19582.129116834956, -23803.931788690614, -15415.06935255889, -61854.113450404984, 0.10416587217636884, -2242.1975714898244, 3794.7468289591434, -8601.898453405016, -12800.438023103494, 3568.298648456823, 37.98128354321578, -6662.873157614997, -172932.41347887518, -3186.1538309156426, -63581.71596139555, 38707.80386696435, 1609.5314505923513, -2279.4500925631223, 4765.719772214947, -3912.905776855477, -4071.6932970113758, 27887.30959831728, -191711.81741331134, 6404.341588621201, -1210.7732426944556, 16498.487563949173, 9283.152681767087, -7981.700600578138, -11286.260941403709, -859.3775070009909, 7334.116620909812, -1771.2173083524742, 7264.85305207764, -3283.6826539474114, 8308.043334468197, -97499.3493269471, -19824.841967897904, 40272.994828856405, 30194.291354332036, 5062.122706289585, -11592.797709459024, 17691.752077178116, -1953.3761311580215, 17268.37900822867, 22948.58817692728, -73736.757309005, -5094.11508816762, 10037.749079670897, 255.1644927512681, -3493.5822187137, 802250.657164919, -183.71427163452913, 725.8888712649734, -85588.9637397687, -10650.321505985667, -115836.06359705002, -38188.6517228702, -917.9594158198603, 29999.71593987093, -1988.4372067932538, -4597.815650771453, -107455.99158792038, 371.4549632330318, -20728.213192992545, -2635.2060656773247, -17395.80282471453, -1796.6763025318614, -1525.182087810327, 8424.950147439711, -873.4796163575049, -78848.35188037454, -4005.2355834577675, 6999.517904294892, 41809.655287328744, 5996.447995828761, 88405.80847822344, 75.25120146555462, -1661.9165505023932], [6513.562525174119, 53605.485972552284, 15213.903084936785, 5471.399083228035, 25558.71521263459, 9340.518503308253, -15497.604043736754, -34324.68382349211, -63110.137613758154, 38522.340203411906, -4854.070824372393, -57187.86379585621, 469.28945092456803, -42875.35148918798, 985.830093801589, -19315.68154263403, 8159.086831173122, 7955.762372987008, 39648.46250535025, -5074.9606628328165, -10011.598233872466, 18906.62933633997, -97697.33085289548, 3768.742185032174, 1982.5229380519356, -30895.228439130515, -120896.61385941516, -6797.490409671172, 1105.5697157191864, 19425.454422285507, -4364.136229028296, -69197.14858586306, 12336.18837842441, 1665.0965844704099, 725.4580053483816, 16213.311275471357, 30478.926373490485, 1271.4581943366377, 3354.2821554009793, 4927.997304159635, 2036.5529941867549, -7914.55561563628, -6092.782787467339, 4634.7747547023455, -10035.415815076485, 1455.1509533352562, -12063.05012070877, -16985.1971539043, -309.08778692144915, 3268.352319410025, -34171.437746751115, -19620.61464372858, -183.71401547357289, 878795.4456119182, -89111.70817905548, -14248.02616309405, -2965.4720504011575, -3701.794951801042, 9190.89067467006, -107707.25903330104, -8684.786685562922, -71349.80659688948, -5528.600715728654, -444.30694550609303, -66693.87495094119, -1656.3383874489646, -15943.460748650588, 9388.495103288036, -61379.113987622564, -6282.860218736739, -14125.849554466355, -101025.2593718646, 6587.288607248367, 11805.035782474957, 3128.140667185007, -5824.256430184296, -484.9693071087178, -1336.9521725933546, 426.1709042778425, 9640.069262417452], [-8730.56432726103, 31188.32161677666, -2696.6378919404997, 4419.626624101735, 32730.85887404025, 6292.228634865386, -14389.773616593106, 19008.837563533707, -67380.15563765177, 16027.153010903858, -3168.2167593834424, -115402.18716052444, -26662.06364834501, 8127.4761518781115, -5797.963055788467, 16665.94721460983, 1267.6702941344909, -989.2442367703158, 51715.58702738967, -6510.403206930346, -10193.070757082303, -122.51743892943485, -21735.932621722004, -10961.815925141444, 3582.194397996518, -29770.31419471631, -65825.12800580969, -9988.401558909585, -258.9043122108159, 9249.387390366372, 1745.9187057281358, -71071.65480046486, 6151.5071089420435, -3371.460640091401, 7968.793876990611, 6868.968011113037, 1804.8115723643552, 1926.2329703424364, 3346.227628659633, 10706.540057228662, -3876.5983183731614, 973.3365857837053, -2882.051060847486, 13182.86331570128, -1526.6805952681132, 247.41729884453258, -11023.309821614625, 1314.8185872298984, 8661.98460325781, 4762.406162445501, 18079.235373367934, -109129.61815113014, 725.8887166540527, -89111.70818802193, 877865.5227889993, -621.3594731426223, -9261.010931612182, -1337.307586846358, -4105.612089753889, -88330.70249177836, -1570.657506249503, -39045.81507399674, -1314.1247757993112, 10125.356359774576, -125225.75179472085, 2588.195275794142, -15343.902599086778, 3020.0449400491952, -38253.474167527624, -5807.9121116090155, -5049.589797783557, -64485.018334807566, -8058.697212349941, -13541.389436915506, -99517.29863159393, -2374.669407676, 13055.963850542834, 5871.126015939765, -2174.8525080686304, 16676.17443280642], [12764.452863687611, -4251.243602045492, 8292.16638517726, 22861.845059199506, -13307.619593561814, 25678.60669038922, 1156.198169914992, 15330.495845370824, -9809.143022599923, 20326.332083856953, 4169.085565228656, 6138.940243564855, -4257.334302992977, 7910.237139787005, -84692.33946459091, 25474.048626864645, 25063.288071208444, -24245.04716959042, -7683.322945987414, -99757.6161803626, 5081.449470942396, 20534.369457725523, -12147.155802292104, 14293.28018720447, -59338.44368575939, -12064.501877896915, -17308.77064576533, -44747.95876139419, 15151.774042467105, 1453.2296451734474, -15690.025875998805, 1180.5793222173882, -4632.323584150601, -11977.554363482119, -15629.401948014813, 20024.7347083226, 8141.255867230082, 19493.512786260162, -27473.40249349041, -149253.86687581992, 3108.6575197752095, 14860.340471951384, -4384.3262072508405, 55236.89518238783, 18082.29185138845, 1573.5576289666337, 7389.596817347289, -187388.26174319233, -6314.114449043739, -18334.90213784187, 7996.526011365175, 15773.126195173603, -85588.9636812932, -14248.026030479235, -621.3592386985537, 791120.758722763, 17518.304437449744, -26850.72700513305, -163663.75584307965, -5946.6409265007405, -39186.49702890075, -19614.320498843757, 796.9872136180463, -53725.423142592765, 6385.947880136422, -11446.684673167041, 9309.652026214177, -55183.24170325302, 4498.148661854749, 6984.107601442648, 16389.95253654438, -5543.483763779025, -37225.360466450045, 9780.036621307141, 22364.907473336225, 3525.0075640469354, -6988.386153452247, 62916.157657370306, -15822.023321097058, 20228.7249261642], [1225.9630840791053, 14494.783422784953, 11998.465240266325, -5443.360686748748, 1752.1431125248314, -5740.16366614953, 6219.404192690352, 17242.648773188736, 1192.209077929253, 10457.366145097958, -198573.74969525667, -5521.822107010392, 2139.8444150001687, 5354.516536657991, -13577.235449190131, 11274.05159095443, -2700.7590713708178, -4019.3380522283064, -26291.665346014146, 1499.084890779943, -2054.5942853235247, -45388.61724806206, 7938.204879440773, -5139.324613643938, -10147.486489575282, -2980.6740782194565, 1155.4682565039602, -64592.95653479438, -5332.181909377234, 3027.423294623594, 10317.194093596496, -3404.870739340618, 29429.36209666156, -64105.43477852551, 137.72914945084804, -32779.85209790477, 14759.676662596583, -3086.548238648971, 12256.25357853714, 26687.260949945285, 5321.185034440838, 9734.696271010622, -191689.7926882133, -182126.82687176633, -6726.576600265581, -4053.678515392497, -7146.652149567459, 20615.279359237997, -9081.145358874024, 10500.034741250516, 20577.351183693307, -7294.447581296263, -10650.321434360381, -2965.4720953908504, -9261.011204899796, 17518.30433187084, 812345.4375018497, -11351.26048718352, 20372.909190164264, -878.0732451566134, -76047.92273325691, 944.2674767370354, -976.9763880934782, 4365.484850574034, -9316.742152238923, 3920.3249539638605, 2736.198061984044, 24030.335210554542, 13179.692549660811, -1847.1875767036647, -7535.984622478866, 6765.901810240184, -9407.189346957606, -80907.26833402296, 2831.229685652301, 10692.683855406684, 15491.84230374877, 5311.807797549886, -56782.68894847762, -10888.668464416207], [-9347.288901263486, -6408.6959166166935, 11487.10187069888, 47490.08493347159, 26315.20079399892, 52897.892972097616, 3677.54739228332, 4744.823387489176, 1290.6794539029936, -13140.135630031644, 3884.4251994728393, -975.3837847782729, 1546.6496655581464, -11946.594838368479, -191000.6159915503, -3209.5644511336127, 6826.484650035354, 65121.7005894866, -1910.4628290516403, -3350.209991517275, -20458.58195215728, 3302.8718030508267, -7182.48416511362, -22193.793640133, -86339.1785400724, 8301.385804739484, -5463.379638562355, -21092.180280047538, -21127.84238641942, 32643.287888704184, -53504.82421158631, 5865.792437967826, -5718.365147174779, 1844.7406851673522, 2015.125219649613, 6638.439897810256, 21745.75394459689, -120923.93661651127, 27663.63227752456, 74656.03080997468, 42417.15002182466, -110565.06047263784, 7687.534853813427, -5115.870942055405, -9710.275749606473, 24269.327249789058, -25160.46562287655, -12421.577771984495, -10884.236117494998, -116.53301667478705, 6586.1784779342015, -1281.2104519299724, -115836.06353564508, -3701.7947880931524, -1337.3076617705458, -26850.726823200654, -11351.26052770644, 711778.209866746, 29638.958344869017, 1139.0406043539306, -16155.41527636957, -1714.7652656073535, 5132.8739285036645, 22441.188468044184, -999.1171218163782, 19597.789698782573, 1917.8700714185122, 31475.63168164839, 2170.8686321438045, 2337.032267373746, -24842.335487745062, 1098.2623870888624, -183459.0768304466, -9948.827583879316, 2364.602132304219, -28472.72771620066, 1258.097656512232, -130621.74255209885, 2666.6014119572183, 9810.41608819245], [-8999.148699173715, 15073.397360332785, 387.62542731589025, -14511.445177344742, 9993.164425347799, -15848.180039862005, -1696.9301578610148, -13755.504602147905, 16388.048649540862, 16109.687267197049, -1414.5166172979932, -5226.2604624514315, -1838.2325116919694, -8142.616885234135, -84385.63713542072, -18330.706205493923, -9798.438301831337, -47276.274266479144, -10542.650220332784, 36685.02917727884, -2622.4146342797544, 2588.6774997178854, 7379.94781063941, -17807.18527908582, -14777.164586227125, -6723.427892243195, 12247.32981725975, 38991.08449808768, -21309.390038815713, -13131.813327001486, 31909.68022654051, -2746.5914245586773, 9273.984411626627, -12585.090378154477, -8041.642260742595, -8107.271612165583, 19780.531926067444, 49393.6821586681, 20544.430281181492, -357174.4693743752, -31042.239075120964, 69405.9617371883, -7734.448993244033, 12686.496437843654, 14259.769623666527, -15718.598629190294, 6997.892396063562, -43359.55654139805, -7104.129713032408, -3249.15560481451, -9052.227287991052, -17280.086505619736, -38188.65195185036, 9190.890771917499, -4105.61206104469, -163663.75569964875, 20372.909045480857, 29638.958508948213, 602135.9078661469, 4367.035372595461, 9760.026373462633, 24093.36139842643, 15169.968933326234, 13761.638168511845, -9895.255741596673, 18217.840646221688, 3588.646729162611, 29366.116151120357, 9151.510361290073, 442.3663891458824, 15924.891804275529, 7995.266402967443, -140705.84840061984, 29125.66525077208, -11658.732539747822, 18116.271228558588, -2641.942216273443, -7883.36829240407, -14351.413128826987, -16096.649409318934], [-2120.7930052652328, 63312.22556235012, 2319.7642494618576, 2943.097823917527, 45150.46891579011, 3057.9659243999204, -653.2637070680372, -21926.095174908576, 2224.6558284679745, 17349.361128966684, -5603.489867145617, -34888.26392758183, -14370.054182425702, -11130.726976474669, -1534.149956696045, -4512.586437758101, -388.1932017026966, -1921.0892626455466, 61427.88974379422, -8009.910508231106, -18405.532261751305, 17087.566284244574, -62144.49070774688, -4341.853603541052, 556.0115779629219, -56591.767904205284, -95823.1469580451, -7251.71362507698, 2032.7639729628083, -6810.038051246592, 5489.867276482937, -125441.55349470058, -5165.979058858957, 12447.837088992559, 831.0219792117613, 17308.029916687818, 8722.575851115775, 2072.1448120468967, 2593.491267824694, 8400.98478488278, -4805.862537794573, 1584.7373561267457, -7324.813425019689, 472.08340522604067, 1598.3225520631813, 1281.6744951094158, -4861.574889941365, -8298.834131750707, 13254.50535580824, -2585.6655230266147, -30522.757658328122, -41006.283702916626, -917.959278118503, -107707.2586815129, -88330.7027872911, -5946.64082271259, -878.0725029522843, 1139.040730868882, 4367.035381166813, 865196.941633741, -6407.78646482194, 2011.6011932567956, 1170.2719025262452, 3446.2383907777685, -70305.29643349526, 2753.9998556669743, -70341.93548131052, 1192.0093348896755, -110710.66764597197, -53784.95823438381, -532.1210550518172, -127638.55841026298, -308.8761569533762, 9329.466664329118, 33962.862160827106, -2089.6110007284947, -6735.05502986898, -474.6518746275699, 11087.173849525563, 12365.739326254417], [12554.424421088486, -14761.298125566418, 19256.249085961426, -3281.3554725603376, -1628.1598867655407, 8966.970506059879, 940.2369705943867, 16743.8045932144, -3687.5154746440744, -39113.401587019725, 18211.26464713622, 2101.875640241207, 3485.7089166820465, 8195.185874396766, 27394.09244079079, 18860.473624734823, 8050.117549103151, 13865.668594061699, 17723.239443008588, -136573.65430772453, -13207.556549735009, -26132.729291721666, -2303.9152658948155, 6899.453341950233, 28532.394390684993, 18531.85931668686, -9133.858973163531, -223489.93927060836, 6551.887809470423, 6390.06832732626, 9578.779371734701, 3384.582756018315, -7930.596931958608, 20401.96387426508, 19331.889764024472, -5175.182522107709, -20680.14615818552, -14700.126308384646, 20430.09048179159, -123858.2597046495, 11965.29033758667, -32115.723432519895, 45927.44821260103, -234724.61791068935, -20591.63887191692, -10597.233889311734, -9169.752504012411, -54633.28652547146, -5551.419196515731, 19302.054511137292, 10773.69578988409, 4458.829676057649, 29999.715731362972, -8684.786806028496, -1570.657444503545, -39186.49681849583, -76047.9229142558, -16155.415081990059, 9760.02658353577, -6407.78634952587, 733575.0432214141, -9221.040722667049, 4816.4343288294785, 28404.369793943217, 1659.1142720492041, 14936.347136066915, -4757.5891981321665, 354.8188063004758, -12577.514872894484, 1470.6515354783485, -25769.472617409876, -8931.719806080464, 34306.30906142725, -87329.80246243229, 11441.982366920021, -10423.405189216817, 4596.431547163551, -2226.760855792078, 27269.850398143455, 10888.162012069695], [40644.25483258659, 24912.651794266483, 38334.572517232176, -10787.610728912006, -174585.6535513079, -6810.372514738157, 408.79971624801664, -18263.620367012452, -214919.2594255796, 22537.799254386362, -6122.126366322968, -81797.43685597966, 20763.39437735654, -81725.37317207531, 13057.284300271025, -29650.657949236334, 9184.664272525937, 2494.4499243474575, -68412.95714279721, -13440.26432605848, 40331.791114505664, 18900.87408856797, -96363.93868852337, 38905.465586280625, -5171.987789618666, -9012.960271630132, -90333.95683498382, -7055.6057018148185, -7582.677868410531, 18878.06697518037, -4814.027592638319, 37845.95384383488, 9078.680130641538, -8519.652510988182, -3641.077372617923, 16305.781173073052, 37474.8173697777, 680.0460256066419, 664.7864022550895, 2928.462505956596, 15384.659363276192, -7316.671297029377, -10123.76943035061, 13446.469530732187, -13215.092730604449, -9433.51685358857, 16498.124459198116, -33382.91351046214, -86069.42593270139, -5584.351167545096, -2172.7844018809865, 41977.75600819812, -1988.4373568958708, -71349.80661929882, -39045.81509220203, -19614.320528493074, 944.2674552766564, -1714.7653510348825, 24093.361422074933, 2011.6014404830732, -9221.04079704063, 759578.7742247976, -730.0005252523918, -24582.223466738305, -20505.987020809494, -4965.271916245108, 35358.18868820433, 3960.270088249329, 41223.08962331979, 20484.091677392444, -8549.53271631469, 5059.47639178181, 21949.585580805036, 13167.149412230952, -95679.64557639675, 3216.519803161993, 8172.6418459340475, -19595.45013318329, -10884.4629618365, 13881.979971850946], [-75274.41104690541, -3346.7336198521593, -65007.265304199675, -53994.68553686133, 38571.36342736342, -44956.05753248066, 5425.428049684557, 788.4088877006135, -6828.096666659631, 2174.2928885495653, -3724.5902898586446, -5352.078932232794, 3615.810728061032, 10949.412424195212, 15895.809041820503, 11936.022348212531, 1235.1522539015953, 21635.78668565152, -18008.4127377014, 6823.582376489181, -39126.01161810843, 15876.322632952228, -4238.696049510184, -57278.18054136547, -15266.982670694879, 4479.463454872244, -7048.138961177822, 13974.664346345631, -5143.328645728544, 4565.93444748036, 42474.94953743592, 9826.462845137752, 2551.878482654231, -2520.5154932265236, -7015.214065615954, 10545.879220487137, 5549.657089985962, -636.7004877638469, -98993.9033674712, -3431.404520361428, 22612.17902695928, 328.5592791508211, -2880.84017413202, -11938.97510823538, -114574.05834921, -25657.51406972328, -124681.07014077475, -14409.020757694394, 16881.299145124056, -2294.1953211790474, -6422.0592820640695, 5785.92638516173, -4597.8159220987145, -5528.6013309813225, -1314.1245499795743, 796.9868812205832, -976.9757301023955, 5132.874235071994, 15169.968916867452, 1170.2718310386329, 4816.434193163968, -730.0001756518006, 873676.1007244576, -81015.74764303621, 185.89247673939883, -117999.18398128687, 6847.119445295232, -51814.90763898698, 2811.503321222799, 5215.939605573753, -118772.68903272938, -1234.7663738419196, 16717.048067728294, 19309.239407322144, -7554.112467170136, 12342.78463864117, -8145.355755677733, -19993.79079812759, -4049.8209841620433, 5101.855525207445], [5615.113608523791, -9286.839917006208, -29150.22205677288, -61531.07163294254, -20672.55592518797, -97698.99217952791, 3004.8914180993047, -6988.707650225298, -23049.29382709992, 5987.797182112265, -16350.21980265707, 3382.0946935362185, 1264.2694159943583, 15620.043366878954, -25619.11231586228, 14014.832482203712, -52313.34973886452, 32704.734677221328, -9031.885092749942, -29953.922960566084, 22458.648786051624, 12086.503770698937, -6442.715023489351, 39279.084900536225, -129499.66597358829, -1630.3469543392634, -5073.678328562783, 23119.82192589065, 52279.603989142364, -9802.33741135975, 23136.762539774852, 5651.99925392652, 4860.411812323269, 5094.178637858078, -1558.1206978492987, 6864.353336820482, -21627.424095340786, -34345.96371832215, -116939.19502212989, 23555.8294903774, 18059.401810676813, 29027.36382116538, -19373.07030982164, 6499.2320279574315, -46705.36298274208, 8013.4648211044305, -15619.916692084855, -94711.05622244928, 34915.177189915434, 1649.337968624491, -13610.589471535324, 19109.990228580176, -107455.99167096666, -444.3066744545593, 10125.356089669454, -53725.42288451934, 4365.484615224158, 22441.188743214618, 13761.637968113102, 3446.238571193668, 28404.369638936143, -24582.22366413786, -81015.74779265403, 818320.425754443, 13428.739519193605, -111971.00020085761, -1093.5247755697142, -105007.17236088491, -3804.778796640485, -1973.8947489072204, -26959.835586691792, -2541.0014591638524, 31217.378077441248, 21638.31395484892, -4777.696338539605, 38122.52318206241, -4803.450818506093, 3379.60580790551, 3463.7399414003476, -528.6282237725516], [-15381.18164029949, -4709.88656241232, -11144.543100508052, 4073.444982427041, 36714.194886227066, 4535.919650376448, -11714.809455641298, 27608.76152830594, -64360.63233396546, -1363.519817648157, 366.50229030433746, -135197.6500655948, -40378.18559446656, 23381.59265628386, -8612.64511387325, 21888.69048128907, -1860.4097656326553, -3405.087000424029, 55102.747283354314, -1636.6734942900707, -9660.390539803382, -8501.127229854266, 6677.387356773949, -16948.26039631464, 3115.023200710368, -16079.555662580524, -37776.83354072509, -7015.844352230151, -1958.3503258643752, 4383.821089361318, 2657.6082648610322, -58597.66413488957, 1448.3606933982203, -2554.500461754478, 8669.317957541882, -566.2327493548223, -10298.414259053508, 1159.2828846490588, 2891.6253857536926, 9007.269838229156, -5501.8144658098745, 4118.316222753353, 2425.1456110562694, 7778.851079219621, 2325.2665435101126, 666.7286381038292, -9774.571817718108, 11578.822607668746, 13974.345856252685, 5777.123499047743, 25456.432335023816, -147306.60395537486, 371.4550038538998, -66693.87501673053, -125225.75168796527, 6385.948118471778, -9316.7421653245, -999.1174006508281, -9895.255802014653, -70305.29670831206, 1659.1147529528032, -20505.98707090542, 185.89235918665506, 13428.7396319144, 858046.618079421, 3738.461914526616, -12039.935715531776, 1369.1594156376414, -28410.611933763972, -1511.2508547963394, -610.6677134689545, -44897.69461823202, -13130.043021844485, -19114.988059455285, -149592.08127054898, -625.5424018147859, 11687.467215296321, 9742.645279815135, -427.47992439598585, 11157.925069787978], [-66309.21427214814, -3864.2311471051967, -74976.66698305866, -45552.138400785334, 23953.457962709374, -49838.31781681901, 5967.676501723145, -1822.374677481727, -11777.778088689933, 3684.6479471639427, -10302.143432873068, -4333.303121877906, 4068.5795989573176, 13490.374574965062, 17761.41365466864, 9950.035229171252, -7736.587980271118, 25320.143418426145, -15484.512902889091, -11880.245394493137, -10934.668280994623, 16676.18388751194, -1512.986439117313, -39254.42251913024, -35280.124541277066, 3234.762137654832, -3400.4955802226305, 19032.91065209669, 6803.2859267146905, 6134.893741002034, 35621.142854560465, 8314.734790333765, 1168.0644265090637, 3103.179043422279, -5648.98235359362, 11234.874260469678, -20374.01405497144, -2138.7978867403253, -120014.63972514936, 3324.1142627485006, 16020.962001992266, 5686.594482413963, -12104.96888991486, -5157.28315883609, -85431.2166763396, -7311.075136191736, -94967.38565959387, -41512.00467253586, 24776.16296411196, -2954.8620631753643, -8576.262500251996, 9020.443403029105, -20728.213255032897, -1656.338425307767, 2588.1951160613153, -11446.684537882762, 3920.325023219109, 19597.78953202728, 18217.84058537266, 2754.0000763304024, 14936.347169409037, -4965.271743411939, -117999.18400586511, -111971.00015374347, 3738.4618896458314, 875222.5007495376, 3054.7617054672996, -88535.45093103418, -228.95632635514744, 1705.0975845001383, -82527.54602958032, -1122.0690331181374, 26348.526104549237, 24111.383683803055, -12538.73937478896, 12411.203949717577, -7578.6094265827305, -26170.273437299882, 833.8050878928647, 4188.163573246191], [-2344.2939491026045, 46610.37919692954, -8914.595680327386, -5251.935316606609, -12124.418245999177, -8676.401223305873, 39744.23136975619, 646.9270348785067, 30794.773164408252, -127269.75252919502, 3360.2662772991002, 9063.99653609865, -10327.884395631942, 18593.81365230242, -2294.521550889577, 8196.830961746497, -7506.422157220288, -10801.464546299667, -149543.00281232366, -4747.564489103144, 4096.6205218681125, 7941.226453710795, 11004.996188206764, -879.8469874816752, -4122.355668559973, -68663.54671008613, -4779.190199924027, -3859.5670717039075, 707.8044225427169, -20530.73863392983, 6721.629225494772, -126391.19248180675, -43876.37250617294, 24611.92988105506, -3135.633441958933, 9899.760518306664, -18576.73443265025, -71.04488537104803, -2002.0718725632591, 7934.6951729327575, -2265.952572204879, 10162.529439400527, 5625.2899966098075, -19995.220935018933, 10305.181464707071, -2677.5779291167432, 11993.60304512835, 6202.839810577752, 1136.4583088483855, -11072.680473435768, -14397.386718614827, -11988.636355945695, -2635.2061002653713, -15943.460829802096, -15343.902704401884, 9309.651886491252, 2736.1977952505567, 1917.8700870643193, 3588.6466752181705, -70341.93563554385, -4757.589137123124, 35358.18867525447, 6847.119549193703, -1093.5249812884306, -12039.935890469531, 3054.7619955977307, 829973.0538709847, -9573.357362106382, -123367.69526188188, -174064.12577996426, 13782.261632373209, -75669.33651202175, -5059.871466938092, 5358.027201374491, 18805.27627506668, 7104.929428626037, -23019.44585190136, -2105.1124935180583, 24118.70609074932, 6794.464234731282], [-67879.30411220882, 9626.522215372914, -121528.81635191261, 26145.506392800347, -2388.6532322192775, 9553.926696404635, -1120.5377565470267, 2789.7690442773273, -7534.260713702185, 10858.955258743428, -8304.886360018736, -4410.061145842746, 3007.453883730576, 12319.045633777683, 24031.30746475262, -8111.349639092215, 6649.342739418833, 6567.261651395577, 8969.439609451309, -129792.37304026951, 38550.94106592445, -9828.762016763287, 18462.61988614439, -31046.319128572584, -23758.95730071661, -7669.2560991069195, 13542.063884887488, -29376.059283878472, -4250.092123696583, 5091.4528424963155, -36527.82286703428, -8459.505935645398, -9967.446610191497, 15632.669280696748, 2710.7713688391077, -2492.7397033957022, -146577.19453935194, 12696.33492469436, -137922.41445485209, 24879.36627162477, -11940.786591505, -3285.392835090725, -19474.59687827527, 44046.56849097774, 29643.3607030914, 35494.57725025796, -8567.615001066159, -126960.24999201026, 21977.322960682224, -9248.010163627216, 6338.875150546958, 3668.311018072318, -17395.80267864422, 9388.495007897094, 3020.0453871028913, -55183.242094732486, 24030.33497363892, 31475.631823594646, 29366.11645080314, 1192.0090245216227, 354.8188962368396, 3960.270090882453, -51814.907571748285, -105007.17285225607, 1369.159182757377, -88535.45081434696, -9573.35701332175, 809415.8060782957, -6185.611176010073, -9445.612685600965, 37748.34720882624, 777.5334336858627, 35240.52828561179, -7787.080285013741, -20178.166518904236, -14382.851377214396, 4867.357405074716, -34504.693157134425, 13058.889877861335, -27.477598150257048], [-422.9917058938832, 41678.2879283515, -3839.2964116904695, -995.6916209753076, 25921.9310717426, -4828.375960293205, 37411.75621697588, -43104.41695602711, 36627.99601720777, -73081.19333502943, 12736.801185164597, -862.2565643305936, 12104.143812465765, 4657.656151605269, 1433.0043233124577, -6273.281600054835, -5832.823508361167, -6153.463142568752, 17084.633146714976, -459.544170755811, -13476.859607546648, 20546.610282246922, -39508.64286750011, 2110.7868006303115, -3473.429691606501, -8262.370161653658, -56111.627420719844, -1046.4558356456694, 11149.990183183083, -29525.276978012746, 9188.710959348764, -115798.59646845955, -57707.30612758384, 26853.819631275845, -25187.59062798863, 12950.981600423951, -1339.8557818935778, -343.1762566719701, -3664.8522827409124, -619.1281460583208, -4522.083442320761, 5682.721869521382, 15438.814689050248, -34723.38030788165, 8826.049536175518, 2288.746425291024, 5765.503462254906, 221.29387953879075, 20953.215495835884, -29166.053220777943, -69659.96960963738, -20594.162791202998, -1796.6764437789607, -61379.11382595432, -38253.474197472664, 4498.148473547275, 13179.692390572616, 2170.8686206345233, 9151.510150566086, -110710.66752205418, -12577.514949711254, 41223.08930465929, 2811.5033001143247, -3804.7781338720747, -28410.612128921628, -228.95665451082235, -123367.69510356826, -6185.611398547837, 846941.5533378278, -102296.75328744049, 10644.570237155109, -126607.76453656916, 1954.541136093793, 25991.80223479096, 26048.31766460254, 2461.0058287154407, -55205.55348994567, -4291.710448364145, 23233.37513480658, -6195.042383505621], [171.073927041737, 42411.56324837312, -6712.618276074715, -4900.735417949648, -21317.235477565606, -7107.5277638002035, 35443.34440695588, 7019.771108459878, 19346.496242494966, -126097.50806451125, -3204.82249937086, 13839.796151164723, -22203.267218487843, 16151.326613741187, -1599.52104488212, 8575.886939792992, -5084.927360408046, -8696.048454394593, -222542.03537841036, -4415.218763344321, 7418.154038690512, 1543.2076173139424, 15397.720496128575, 2354.7929617526324, -2590.5537608624836, -98651.93159893816, 3145.6130303596, -1316.8248832172806, 2003.1239944898261, -14217.961928038752, 4330.33407711717, -122123.80903605091, -22104.606386094227, 17918.90870277452, 6890.746744560763, 4917.489591414529, -17983.190516800838, 1067.344444254192, -2565.9019435938144, 8219.855965185494, -1431.4929342559396, 8055.471170582704, -1862.581762173476, -9246.277360521584, 7416.674194568243, -2984.0398212455657, 10976.030353919683, 4474.806285877425, -1941.016227024634, 3105.912134945407, -1942.6619788841922, 1508.0783766025675, -1525.1821920100629, -6282.860681936078, -5807.912055127427, 6984.1078350506305, -1847.18756318348, 2337.0324008588377, 442.36640292315684, -53784.95790496943, 1470.651600855319, 20484.09177549998, 5215.939445362097, -1973.8947886301187, -1511.251175202878, 1705.0977663485917, -174064.1256165103, -9445.612521562338, -102296.75295366552, 809481.597005648, 10581.028690741645, -55786.896904612586, -5044.420472120551, -1238.182338372875, 21956.163300083022, 5452.568949957136, -7137.181686906471, -2062.4783402272974, 18922.869728578506, 5912.1925349557305], [-38458.31070923498, -3073.606855009449, 476.90573042528956, -102014.02808861356, 57408.09879896579, -65225.912324605226, -1861.168371563731, 973.150233542616, -8483.85774887061, 5342.382703299019, 16268.861670756642, -3964.5404040777985, 77.94354697232835, 6624.251534168682, 3925.165243202053, 17709.560264164043, 3459.878873996967, -14902.977591447116, -18864.50931903514, 29551.302412484474, -99823.83893227819, 2621.9258340541537, -15387.182636498575, -37125.644101709804, 2259.9721089432414, -1493.841590509913, -17549.4540060831, -11820.367249136072, 8174.199761757826, -4263.039333294163, -9247.265311261552, 11557.500113154267, 7129.232802604471, -14406.33960198691, -6572.728313590456, -209.23235939150788, 61516.27282557102, -7016.210237945843, -30445.200672073133, -9948.188093964143, 44062.13574833857, 2297.6804488861053, 21749.269873407142, -18280.11101662392, -181689.99862751985, -98895.65712119851, -147841.54102183416, 28215.578423531646, 18858.43816416691, 1040.4005456361524, -4835.395166134882, 8560.438295147278, 8424.950175494887, -14125.849320624657, -5049.5900065505575, 16389.9525910723, -7535.98458766477, -24842.33542106828, 15924.891886345215, -532.1208991660668, -25769.472659996354, -8549.532833198637, -118772.68898559512, -26959.8354392425, -610.6676994602592, -82527.54618312568, 13782.261624902709, 37748.34723960422, 10644.570448809684, 10581.028867073343, 805017.5708912037, -369.6676430501886, 1639.5765202785865, -4017.487679690092, 6629.882946624085, 30222.1672869282, -5284.80043644475, -4576.121479411616, -13423.157012030011, -287.1547212800543], [2564.163130448592, 49428.442760856466, 4765.524627436426, 3167.77161707637, 44475.693120370815, 2347.2596868960236, 9896.22486393064, -52832.40992608445, 9110.26440485831, -976.3194649123203, 2032.9480575738041, -16532.122759744314, 3743.726835187599, -20601.220569737317, 1893.2694884406872, -18594.036227762783, 243.1256837868389, 1402.0320329686933, 54153.3776274311, -1181.2553629514996, -19657.069804955878, 20820.884880415128, -79231.8269304463, 3201.1117921194455, -710.662188854712, -25385.367608712913, -99007.42335690743, -822.040860030149, 9561.196580185999, -12483.069559229189, 4114.836779180235, -108644.9801863895, -16830.29249233382, 17388.56719199946, -11247.526652050468, 13525.114687016185, 14013.859959632706, 1011.4550977377029, -865.4130229426237, 412.5417388604293, -3529.003508901941, -877.3808659463087, 2174.9967502970107, -17170.17785445104, 929.7617539775924, 3696.7923355331836, -3282.755502231306, -8770.1430133252, 20665.99711312046, -9360.243129061773, -68291.1348849989, -17400.72461535325, -873.4795447319165, -101025.25930334414, -64485.01848373732, -5543.483740760385, 6765.901754057269, 1098.2623887887182, 7995.266342408737, -127638.5582805749, -8931.720039518377, 5059.476459711276, -1234.7668228267776, -2541.0013632639125, -44897.69437234336, -1122.0690733282706, -75669.33675177663, 777.5334076813341, -126607.76462693053, -55786.89699271496, -369.66766859971864, 864912.7352661879, 4874.478352817764, 23293.30368494115, 40492.10853654324, -2929.45547477034, -30217.347267528377, -3103.340806300665, 14828.998347440009, -3543.655524902125], [-16156.885346759445, 14801.868093808114, -2765.8575053367836, 5903.053353696397, 12671.735251082397, 9267.832660836073, -618.4564506064546, 4330.928954107965, 14900.250130897633, -5136.4684270596035, -7409.747592055858, -7500.170813060966, 3564.233047520189, -3674.078355150016, -166500.90666348388, -10292.490749614582, -1412.0404279229817, -13309.079490159073, -799.6309184656042, 35132.63035353067, -1061.3162820439716, -19796.231927962996, 15043.721634282909, -28617.399962382948, -50928.53929801693, 4639.504723398243, 12616.60187364578, 23642.833010069746, -30850.223162079787, 8989.819040971523, -3875.295749637361, -6970.448797811493, 10050.72841578797, -10083.985792402977, 7667.558241492804, -16588.088316015575, -804.091893172478, -29707.97377573349, 30826.56645395341, -35340.22098972638, 20446.788870197364, 12079.96099199927, -6675.944617583602, 25719.001334995843, 6075.257743826589, -8899.691864394525, -3438.611719627677, 21387.116423071308, -14749.532458495054, 10438.803390096506, 10062.8879023492, -18937.173451847917, -78848.35216955474, 6587.288537590631, -8058.697355445147, -37225.36058089465, -9407.189372206209, -183459.0763778869, -140705.84827450267, -308.87593994417256, 34306.30923985287, 21949.585681326553, 16717.047976248334, 31217.37778145748, -13130.04314778392, 26348.525988522462, -5059.871632888604, 35240.5285943456, 1954.5409952095451, -5044.420422532143, 1639.576817708777, 4874.478377681799, 751767.5344367385, -17239.944627441673, -10514.182080466106, 27521.84293784696, 9977.313231360751, -241893.4014644544, -7019.672214077951, -9615.82779510346], [9921.767498267332, 31314.47472525813, 4813.924328733328, -14782.313010073243, 2925.8930053501504, -11310.96964276774, -1261.8529537265467, -6649.677598746786, 5390.262149894468, 7292.054810477643, 823.0328905740844, -12666.52493047444, -3234.3638333999425, 7865.521065300581, -13874.16894215105, -10790.113057624689, -8289.035354637477, -13460.957167187433, -25126.792954547378, -94039.21316047428, -12768.293659776547, -163974.79114669267, 27899.617623629154, 4972.684205757193, -1815.0652291517126, -14411.886931273571, 22192.354390296667, -132328.50914648414, -1015.0964835009795, -9839.648558994271, 20684.19177232892, -5268.194306566453, 42786.05841779849, -92454.54836701932, -2570.240784822302, -137925.7948138, -89625.46677686699, -1067.5320403946375, 23172.44662667478, 60772.09560866215, 2544.780508226111, 17009.693827990795, 18282.42306940967, -19762.08635257783, -3357.728293170757, -17408.243980910596, 10788.769400787749, -5573.168087712411, -293.8369256811604, 27332.16096108662, 1462.5659803037083, -21698.345039574262, -4005.235389711749, 11805.036061900031, -13541.389425607485, 9780.03663524011, -80907.26861661884, -9948.827245219192, 29125.664998026103, 9329.467044006531, -87329.80221812119, 13167.149507772025, 19309.239077587852, 21638.31377857811, -19114.988226997528, 24111.38378524862, 5358.027382071484, -7787.079888716462, 25991.802149364143, -1238.182250971461, -4017.4875663357298, 23293.303112660742, -17239.944470431372, 808747.5273518205, -8292.313200724004, 15346.128076875635, 6988.0531355101775, -438.81285288755265, -75041.0193336433, -96763.54025155812], [-1274.004552343048, -53053.26560837333, -18105.066748326775, 279.84554761479245, -36333.22490552175, -2328.628019825456, 16766.83885541532, 15726.207600321668, -187234.85890805197, -66455.51839668286, 9943.24462438758, -222307.27314758056, 16876.42208667324, 50960.65661918511, 1886.1091864133227, 29398.2568906966, -2393.7912079519274, 1847.2327224859105, -28487.64286599698, 10699.292616805185, 10744.518925539745, -21046.789574336606, 49278.531717259204, 16149.124107550186, 4859.726628236594, 113485.07477171591, 25277.52328362614, 13384.326771453692, 39409.2630417393, -12657.045745658199, -4291.673359032908, 60601.380832511924, -8382.609301247014, 4129.978079753708, -614.5343164771504, -22001.488129810943, -32194.19050903391, 470.51848994002256, -18116.337315448145, -8093.968164294202, -2600.4076906395367, 1603.789616249796, 15727.857444354398, -22750.91536583907, 3654.339695486242, 4834.893401040178, 4192.4074598342595, 23363.790071571417, 35483.82403955861, 7683.176070895792, 3535.147388232874, -175755.82987793774, 6999.5177888787375, 3128.1408596815436, -99517.29860327144, 22364.90751807198, 2831.2295461619115, 2364.6021825455196, -11658.732581313872, 33962.86203380385, 11441.982473592709, -95679.6457940707, -7554.112688635569, -4777.696318924576, -149592.08120680836, -12538.739424116407, 18805.27602060974, -20178.166466011407, 26048.317538598592, 21956.163131137542, 6629.883130971414, 40492.10847729085, -10514.181952614908, -8292.313188681528, 604541.3797976455, -494.39173594498726, -12993.234339484277, 1511.103901132896, 6625.54685546048, -21639.849809579664], [-19903.16252990917, 152.21289249737575, -18256.6210200307, 17212.25716971393, 16401.4839383962, 9263.052290695217, 1685.8969568925095, 1891.3848195097867, -750.8898749287732, 12610.255371703986, 131.1999906432378, -2416.6577270374896, 724.1608483778502, 8224.540130563339, 32780.30919595267, 8816.91789826696, -113614.6839088104, -51636.877973129864, -11628.838540997192, -18400.226575908295, -11519.699193559089, 13362.254677609992, -2797.747084816904, -19441.22192719511, 38378.02574598374, -2484.1259781553927, -6221.52789952942, -5057.887205722572, -3482.921753407104, -11926.220417195369, 15316.666568873377, 4077.6363880687945, -453.3771618815847, -3277.500385180724, -9698.707930127448, 9972.587218727911, -3628.5485509168375, -130256.55805181399, -1024.8842224659502, -28286.84328695754, -266284.9857437168, -295175.3710589688, -3884.7193779817517, 9130.525918529012, 35576.79021969901, 3443.2872183344825, -1591.6766681954266, -8042.843509111479, 5241.449455750816, -8977.439461237716, -3299.017423469685, 4183.671561892068, 41809.65523063596, -5824.256437205853, -2374.6694792253757, 3525.0075598107046, 10692.683745749533, -28472.72739962937, 18116.27123534895, -2089.6110011987303, -10423.40526396893, 3216.5198433578207, 12342.784525564899, 38122.523116653065, -625.5424711512436, 12411.204135881393, 7104.929284882402, -14382.851229341724, 2461.0057211723015, 5452.568994270634, 30222.167073086028, -2929.455335367714, 27521.84310162027, 15346.12808387632, -494.3915651037231, 671196.0824738034, -7168.518335867207, -9795.842824871856, -5986.479324133137, 5918.2399553058585], [5443.386208252556, -35225.45479019116, 8951.86436371646, 2633.7324832536456, 262.77134556206454, 4126.505010591984, 33263.33920609389, -42477.20639582963, 3997.354939673736, -95436.70783298444, 13376.941635853133, 4664.30863000704, 13532.829160825786, 13180.456634488575, 8784.280177615952, 7827.407153932289, 4761.033366513447, 1929.3227154610456, 28616.257320749177, 10634.715426689283, -7104.132208439279, -17274.42288173919, -14726.252665472073, 8244.426707394116, 5365.0143618247075, 48523.92342533074, -8001.583325633068, 13344.066158440559, 20540.880629090967, -12921.319230125811, 8478.928161043352, 12766.185628821564, -163331.90329235388, -76668.47058555586, -147575.03282137672, -37212.17472953386, 24778.277258941558, 1164.8291531178181, -4456.4807613798475, -23189.597118215195, -1344.1075124629178, -8488.93812092918, 9456.199626499301, 14814.974296674452, -4556.4423363948945, 2752.701078687324, -7704.276884682681, -5692.77025454076, 12846.591317000588, -155960.16509339496, -83974.04768951361, 5199.311636302706, 5996.448110394271, -484.9694919478576, 13055.9639338501, -6988.386130085654, 15491.842152071216, 1258.0976169498151, -2641.94224879864, -6735.0552289414045, 4596.43171122449, 8172.641837492661, -8145.355485991064, -4803.451028751388, 11687.46730680951, -7578.609227163511, -23019.445878393322, 4867.357559913753, -55205.55340161423, -7137.181769772486, -5284.8004597595755, -30217.347199639393, 9977.313251248688, 6988.053143965471, -12993.234387967592, -7168.518352525266, 843921.9002928128, -3276.5418825419483, -88236.68307333787, -57007.913552281614], [4238.361116064393, -2927.722142028386, -14868.318050393727, -12287.538302376726, -24050.283847026465, 1252.7802100999086, -1118.7082671076873, 2835.2576410886136, -18419.002876650204, 7423.37656188625, 2233.899660851782, 3347.7638786850034, -1164.3464393925694, 16369.15392579307, 22299.668606192623, 14609.929911799514, 28607.312408671794, -17026.02240222264, 3995.6239360797485, -12177.894652256377, 19190.98902758907, -241.67454887944035, 1159.5116432764046, 22469.088299767463, 82682.59504167132, -8726.004172178094, -2547.7003877548873, -3921.9497515434964, 32278.20565011334, -7540.951258496757, 15841.98222089711, -1330.3576303737004, -3158.403720650336, 4680.313052441155, -1930.3903437648682, 821.8107215241587, -24899.783674318125, 37633.62285954193, -31265.205114353386, -51.262614394306894, -618.8194681286768, -8382.60068354059, 1237.8779761195092, -7659.183090597227, -10351.515576329899, -11111.519056706591, 36.768899407531116, 34751.716753181456, 18907.679205094682, -3439.7134725891565, -2446.4817543313507, 16991.191337024666, 88405.80858181423, -1336.952182378625, 5871.126044630542, 62916.15761918616, 5311.807850768869, -130621.74271538554, -7883.368283432036, -474.6519563625475, -2226.7608595302227, -19595.450162254547, -19993.79063900115, 3379.6060073046046, 9742.645265325224, -26170.273464424376, -2105.1124152769185, -34504.69320459604, -4291.710432712639, -2062.478324803636, -4576.121583191144, -3103.3408207122984, -241893.40132811153, -438.81268179860086, 1511.1039360817035, -9795.842716009693, -3276.5418850145575, 170782.20809035664, 3850.7132621185965, 457.31517812099963], [10162.321030409772, 4191.302705724654, 18651.418113100044, -401.37623442710566, -40.451692125496734, 5860.376925863291, 18051.253281248803, -11537.178395674695, -10719.168367337074, 12920.31337704338, -68738.81653058752, -2674.0164353904433, -11629.076544942076, 13434.576723881224, -5428.979893716078, 14226.570838905121, 8664.59522454033, -7359.218506825209, -12449.475646669207, -612.0721998356398, -11941.062382330721, -84467.6439046569, 2863.875925904097, 7994.646054907797, 5221.418661715088, -23395.329443855633, 872.6458986669691, 486.02905301023293, 16051.381219502075, -4295.365370559796, 18677.139410962318, 13311.05029352434, -64242.54470143556, -145513.29372532232, -116229.91161877247, -89275.25756439549, 12469.243743391205, 11943.894159182522, 7242.471578223101, 19654.36584624713, -5190.746350062904, 1085.8858334415147, -78463.00603076082, 61404.81493081859, -10295.186049028509, -5723.241210761876, -11152.87045589254, -9359.880975048593, 3166.8577600902886, -106745.38540676965, -28580.00843545703, 6274.717282778786, 75.25121666177716, 426.17102496282405, -2174.8524538993083, -15822.023541314178, -56782.68909866093, 2666.6011717934202, -14351.41303950334, 11087.173874200062, 27269.85045131304, -10884.463228167398, -4049.8209810467747, 3463.740072425098, -427.4798659323293, 833.8049362104477, 24118.706354244154, 13058.889940677273, 23233.374820456407, 18922.869748563317, -13423.157187594104, 14828.998305072078, -7019.672480830231, -75041.019432663, 6625.5467874484575, -5986.479327118872, -88236.68328417822, 3850.713440099259, 852317.2528211906, -77024.24349698063], [10987.719449864815, -22007.4989408286, -1470.246848501275, -10246.35485882075, 23778.66552397827, -15128.634371977028, 11909.89525510209, -117216.71869633054, 8240.735533348296, 9244.561295993357, 25270.35096601797, 3815.7538156858645, 3207.446708165262, -40519.74350486435, -1447.0217184733226, -79078.3778498099, -11022.651543669863, 9017.670624604736, -29293.614165892435, 1031.4033671958382, -14788.877324253268, -137640.60664369797, -36762.564152631276, 17005.67121835188, -5132.292178433408, 19244.107204908498, -3175.716427435021, -7845.4878776141595, 10342.954351026825, -17300.57421206903, 4397.791012036738, 22193.950642394546, 22231.80823778208, -86502.42390303135, -45666.43155897185, -147538.29100902952, -61260.89941670868, -2053.814356381135, 5554.554706956979, 2410.651359854845, -1185.661541316749, 8691.18761326208, 34090.27466782003, 16049.207248397102, -2790.6413664679894, 1316.8030484352744, 11580.9356897646, 26910.745057968164, 29522.721519698247, -651.9031140912167, -117725.02249438268, -706.8987244210854, -1661.9165093136726, 9640.06928471594, 16676.17476684244, 20228.72498801663, -10888.668754998469, 9810.415863336668, -16096.649428861512, 12365.739402928308, 10888.161887424567, 13881.979979367929, 5101.855659883281, -528.6282341950758, 11157.924896099761, 4188.163693181845, 6794.464013901615, -27.47813411274762, -6195.042551148713, 5912.192147761767, -287.1546464440319, -3543.65548653145, -9615.827584094297, -96763.54012901285, -21639.850053441103, 5918.239871293524, -57007.91313294162, 457.3151492855505, -77024.24382480873, 846402.3033566951]], "optimal_y_mu": [[0.0006345739709852083], [-0.5044834330290149], [0.02498273397098516], [0.19423664497098514], [-0.2016566650290148], [0.23696147197098516], [-0.40727567102901485], [-0.21152903902901488], [-0.34844815102901483], [-0.39374275302901485], [-0.045066755029014804], [-0.3995663440290148], [-0.48876897902901484], [-0.19888352602901482], [0.4317837229709852], [-0.1694882540290148], [0.3279204269709851], [0.17471374697098518], [-0.45891151702901484], [0.13860747797098516], [-0.05874757302901479], [-0.07756794302901482], [-0.27769613302901486], [-0.03785659402901487], [0.34141636997098523], [-0.4803386370290148], [-0.3317168790290148], [0.11464755797098514], [-0.11171452602901488], [-0.10659346302901485], [0.06083017597098517], [-0.4240624050290148], [-0.30019553402901483], [-0.1413501370290149], [-0.2329006960290148], [-0.11014308102901482], [0.01838266297098512], [0.38458489897098513], [0.11342737697098515], [0.3351490759709851], [0.3412869569709852], [0.39885732097098525], [-0.059690441029014885], [0.09362716497098511], [0.11795683697098513], [0.1529723379709852], [0.051179652970985146], [0.24731452297098522], [-0.16100244802901487], [-0.25545555902901484], [-0.23761503302901482], [-0.4506845380290148], [0.3623073499709851], [-0.35795077302901485], [-0.40209914502901484], [0.31669845897098525], [-0.007499966029014815], [0.4844178989709852], [0.3983396679709851], [-0.3828720480290148], [0.14420921897098515], [-0.31276709702901484], [0.10089278897098519], [0.2146469469709852], [-0.4162976160290148], [0.11919550597098516], [-0.41932958102901485], [0.11133827897098514], [-0.37542154802901484], [-0.4312355910290148], [0.09728770897098515], [-0.3637928530290148], [0.5033307069709853], [-0.01788999402901481], [-0.40751600902901486], [0.3761545569709851], [-0.25534463402901486], [0.5804794309709852], [-0.15506793102901484], [-0.1478577700290148]], "training_R2": 0.9999999727699606, "training_rmse": 4.790723917374777e-05}, "map": {"x_data_columns": "list", "x_data": "numpy", "x_data_min": "numpy", "x_data_max": "numpy", "x_data_scaled": "numpy", "optimal_weights": "numpy", "optimal_p": "str", "optimal_mean": "numpy", "optimal_variance": "numpy", "regularization_parameter": "str", "optimal_covariance_matrix": "numpy", "covariance_matrix_inverse": "numpy", "optimal_y_mu": "numpy", "training_R2": "str", "training_rmse": "str"}}, "Reformer_Duty": {"attr": {"x_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "x_data": [[0.363768116, 0.926315789], [0.789855072, 0.821052632], [0.363768116, 0.957894737], [0.191304348, 0.926315789], [0.485507246, 0.821052632], [0.18115942, 0.957894737], [0.779710145, 1.147368421], [0.576811594, 0.978947368], [0.637681159, 0.831578947], [0.749275362, 1.052631579], [0.536231884, 1.189473684], [0.688405797, 0.831578947], [0.779710145, 0.842105263], [0.536231884, 0.915789474], [0.160869565, 1.126315789], [0.526086957, 0.947368421], [0.14057971, 1.0], [0.171014493, 0.884210526], [0.789855072, 1.0], [0.363768116, 1.105263158], [0.333333333, 0.810526316], [0.515942029, 1.084210526], [0.607246377, 0.915789474], [0.384057971, 0.905263158], [0.18115942, 1.063157895], [0.779710145, 0.873684211], [0.647826087, 0.894736842], [0.404347826, 1.147368421], [0.444927536, 0.894736842], [0.373913043, 0.8], [0.211594203, 0.810526316], [0.739130435, 0.915789474], [0.688405797, 1.094736842], [0.576811594, 1.115789474], [0.637681159, 1.094736842], [0.536231884, 1.073684211], [0.414492754, 1.031578947], [0.130434783, 1.042105263], [0.302898551, 0.978947368], [0.272463768, 1.189473684], [0.120289855, 0.989473684], [0.110144928, 1.031578947], [0.546376812, 1.189473684], [0.444927536, 1.2], [0.242028986, 0.905263158], [0.191304348, 0.884210526], [0.302898551, 0.905263158], [0.282608696, 1.105263158], [0.465217391, 0.852631579], [0.657971014, 1.105263158], [0.607246377, 1.0], [0.739130435, 0.831578947], [0.18115942, 1.084210526], [0.668115942, 0.884210526], [0.698550725, 0.852631579], [0.252173913, 1.136842105], [0.505797101, 1.178947368], [0.130434783, 1.136842105], [0.22173913, 1.178947368], [0.698550725, 0.905263158], [0.394202899, 1.168421053], [0.607246377, 0.842105263], [0.282608696, 0.936842105], [0.242028986, 1.010526316], [0.708695652, 0.842105263], [0.282608696, 0.957894737], [0.749275362, 0.968421053], [0.333333333, 1.021052632], [0.708695652, 0.957894737], [0.75942029, 0.968421053], [0.252173913, 0.894736842], [0.688405797, 0.926315789], [0.14057971, 1.168421053], [0.485507246, 1.115789474], [0.688405797, 0.810526316], [0.110144928, 1.010526316], [0.647826087, 1.073684211], [0.110144928, 1.2], [0.586956522, 1.115789474], [0.556521739, 1.052631579]], "x_data_min": [[0.110144928, 0.8]], "x_data_max": [[0.789855072, 1.2]], "x_data_scaled": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "optimal_weights": [1.3101224015766715, 0.10854236084702704], "optimal_p": 2, "optimal_mean": [[23315.946815233874]], "optimal_variance": [[45046972.9234169]], "regularization_parameter": 1.000000000001e-06, "optimal_covariance_matrix": [[1.000001, 0.593129080444338, 0.9993237181953364, 0.9191139699279413, 0.9516638242547532, 0.9091579198500991, 0.5922942215814742, 0.8775811866229146, 0.8034434276483889, 0.6490418614753787, 0.8769326817877485, 0.7371640914257961, 0.6093189043713966, 0.9190448847230679, 0.8659948809635681, 0.9277298355911832, 0.8650746626144407, 0.8989200695319409, 0.595407240101279, 0.9785107501223411, 0.9883464605424401, 0.920738325857574, 0.8452001945139589, 0.9985329988545414, 0.8982890997022301, 0.6111077714310984, 0.7949402972465598, 0.9628875493945138, 0.9808310848146796, 0.988945534100208, 0.927964364558662, 0.6705746931809431, 0.7275306604595563, 0.8580773844541721, 0.7929438429757829, 0.9056720212099343, 0.9852960966087853, 0.8491793451755638, 0.9876905309141838, 0.9318160173412694, 0.8429795013963106, 0.827021891633969, 0.8680205754697413, 0.9328676239126862, 0.9585559748526101, 0.9180092294088752, 0.9892508559541311, 0.9604032637566186, 0.9676658992797417, 0.7655422996535071, 0.8421561593915491, 0.666554341248951, 0.8945157897797399, 0.7680739663574202, 0.7250535563507837, 0.9367103258963757, 0.9043854614945868, 0.8315559459222928, 0.9043854607660947, 0.7275102408493418, 0.9584954598697633, 0.841207148684778, 0.9814210778042468, 0.9542425540648108, 0.7102123008512201, 0.9808310847726553, 0.6553167455099733, 0.9913226070314838, 0.713154560456028, 0.6407543253278427, 0.9646493904253429, 0.7416660765161278, 0.8344186501246955, 0.9357742394085123, 0.734950978963079, 0.8292628784865549, 0.7838444756376223, 0.791978693937875, 0.847376124029219, 0.8903125995341713], [0.593129080444338, 1.000001, 0.5900607324015228, 0.3593520805083484, 0.768998273439628, 0.34529036314436157, 0.9300395697219754, 0.8644866855098733, 0.936372598402693, 0.9597803123462003, 0.7599611748361352, 0.9711635984529315, 0.9994076524672233, 0.8282038790414608, 0.3057173817108251, 0.8121128786961627, 0.29607331169757256, 0.33665846548922296, 0.9785107503599159, 0.5657382286069284, 0.5537317496684201, 0.7712522330837698, 0.9042507722895196, 0.6238948060767056, 0.33607194967979986, 0.9978313073209201, 0.9409303470235637, 0.6103820613647651, 0.7110135293458152, 0.6120731818178418, 0.3873984887863563, 0.9867042912713206, 0.9231176090793687, 0.8289145559234885, 0.890047810298795, 0.7979542572053208, 0.6507614442440022, 0.28189445163103466, 0.5019076491110522, 0.4269079144528832, 0.2751196759323921, 0.26179604375710935, 0.7709072603991348, 0.64739535202603, 0.42492169401934665, 0.36108499550466894, 0.5080186497123352, 0.4563812830420903, 0.7411645012751994, 0.9011168890930842, 0.890222840778837, 0.9926556417587913, 0.33365554571623324, 0.9562530630596988, 0.9759767641746517, 0.41169909139997757, 0.7292739878235625, 0.2723343876148335, 0.3670926390981518, 0.9719501797602936, 0.5911034389623997, 0.9094996822362381, 0.47772280280018364, 0.41669780224338376, 0.9811997888676632, 0.47600225777435573, 0.9807844932606472, 0.5389484578023667, 0.9691054249510839, 0.982790247014142, 0.43889515310714516, 0.963963395645185, 0.27879390756461964, 0.724989475244025, 0.9711635984390614, 0.26329590066752107, 0.9043854614945869, 0.24474463407972133, 0.8388928630643759, 0.8263219612094662], [0.9993237181953364, 0.5900607324015228, 1.000001, 0.9184923898736669, 0.9467407207873214, 0.9097731829000653, 0.5975262075118888, 0.8789675640936058, 0.7996476564980137, 0.6521227363496492, 0.886276426214747, 0.7336814489707867, 0.6067138215360325, 0.9180092294088751, 0.8728568964000495, 0.927939065533027, 0.8672231774928498, 0.8966930267198779, 0.5968860041540879, 0.9853751014817294, 0.9827902468445031, 0.9263614297920939, 0.8442477534661325, 0.996958033281402, 0.902960252131852, 0.6093189043713966, 0.7933285767729263, 0.9713931432825517, 0.9788424756750405, 0.9829425385684609, 0.9227476025026433, 0.6698190345008284, 0.732304012471904, 0.8644866853246757, 0.7981463729779636, 0.910792246349117, 0.9890805375237183, 0.8528255164967674, 0.9892508559541311, 0.941744545379785, 0.8446920923214737, 0.8301984144021167, 0.8772693611325483, 0.9432326655245087, 0.9570440642176569, 0.9157348938755423, 0.9876905309141838, 0.9671405892773698, 0.9639633955075129, 0.77091265590625, 0.8442477534661325, 0.6634052860054779, 0.89997874827266, 0.7661710901575377, 0.7222793410669188, 0.9445585866044541, 0.913609578825953, 0.8385231669259746, 0.9136095780900307, 0.7263627539012304, 0.9678348636662686, 0.8376106505484121, 0.9811997888396364, 0.9570440642176569, 0.7071758582574676, 0.9814948518823543, 0.6560560434102879, 0.994681485769659, 0.7136371802961937, 0.6414771945824101, 0.9626935892440319, 0.7411645012434437, 0.8425490722655666, 0.9427638871441312, 0.7308192854126355, 0.8316974674320617, 0.7882759476223784, 0.8007783262843302, 0.8537054931837728, 0.894538739450503], [0.9191139699279413, 0.3593520805083484, 0.9184923898736669, 1.000001, 0.7764957685094019, 0.9990321063708749, 0.3624248165545058, 0.6548735667654578, 0.564896055046209, 0.40914909928544446, 0.6808859258114117, 0.49320784958910835, 0.37284221944687473, 0.7135835397549561, 0.9706762787468064, 0.7275102408285615, 0.9890805374248367, 0.9976327141194598, 0.3607323220770785, 0.8993629001621126, 0.9358517079606641, 0.7292279313761003, 0.6122112220526544, 0.8997312739012489, 0.9870888564150454, 0.37393682714745596, 0.5533988672209228, 0.8505639923793518, 0.8326983396284156, 0.899978749204729, 0.9897897665495868, 0.4269387128771109, 0.4867624952558086, 0.6403193298624504, 0.5575138626514827, 0.7032003088148947, 0.8617646956923801, 0.9805888986575476, 0.9634899180111942, 0.9364506914083153, 0.9831370218820373, 0.9741448259627985, 0.6673115392265979, 0.7919786939378749, 0.9924318193746612, 0.9987980375065427, 0.96501201162023, 0.9556500438153261, 0.8053783332522917, 0.5276712827543978, 0.610006309566408, 0.42437905189286523, 0.9829425385119059, 0.524188906454492, 0.4803152866026466, 0.9602382980894256, 0.7234193689677163, 0.9602382980894256, 0.955115177314046, 0.4819427293048879, 0.8551276876217441, 0.6093189043713968, 0.9765638366703745, 0.9879659601525931, 0.465838121407548, 0.9759767636274469, 0.41310471956706857, 0.9386697802522206, 0.46776799038525263, 0.39993641655727125, 0.9888791265630875, 0.49621995287942205, 0.9540300769050218, 0.7635309009983992, 0.49172714203521173, 0.9767844728325858, 0.5456744945472263, 0.9328676239126863, 0.6260901815977578, 0.6776908914171988], [0.9516638242547532, 0.768998273439628, 0.9467407207873214, 0.7764957685094019, 1.000001, 0.7592911945886478, 0.7278330401013949, 0.9602585058642517, 0.936372598402693, 0.791620631668158, 0.9054014007547889, 0.8897490171918153, 0.782119313711852, 0.9867042909874633, 0.6962320132946593, 0.9846256146551658, 0.6983016527763631, 0.7533875181093733, 0.7524730775688901, 0.9077157467306216, 0.93637259838932, 0.9516037447907594, 0.9530239502817233, 0.9665754537962862, 0.7390199651573395, 0.7808856929956647, 0.9245970419083446, 0.913095499315984, 0.9916819364267834, 0.9650120115926656, 0.8082894321359536, 0.8282038778501624, 0.845730818926111, 0.9207455317727133, 0.890047810298795, 0.9506655420492042, 0.9566019874766459, 0.6766051696852483, 0.8945157908977818, 0.8018872916124624, 0.672009497615738, 0.6507614442440024, 0.90249938875792, 0.9029508579415771, 0.8412071498463805, 0.7802402888136281, 0.9054070107182315, 0.8423682191885102, 0.9981577815258256, 0.8701040260218863, 0.9382393848577506, 0.8331992260976276, 0.7337063090350046, 0.9073146262775438, 0.8786372746370974, 0.8008828325416871, 0.9157046237708627, 0.6536590325815994, 0.7526268008224444, 0.8750122834633375, 0.8998764821274189, 0.9585559741907868, 0.8817594445989166, 0.8249265111807823, 0.8680057779203978, 0.8785837393206907, 0.808944745060858, 0.9113737258745088, 0.8573066543790262, 0.7965281510330007, 0.8537876345900699, 0.88315242174489, 0.657547434181487, 0.942771265273773, 0.889749017179108, 0.6544897246074919, 0.8886865272099331, 0.608375777032208, 0.9156539591076526, 0.95058093652101], [0.9091579198500991, 0.34529036314436157, 0.9097731829000653, 0.9990321063708749, 0.7592911945886478, 1.000001, 0.3533521083727435, 0.6413325555386379, 0.5478115614858369, 0.39798712930529195, 0.6744217639966554, 0.4768975988725301, 0.3587852805843265, 0.6985691885176333, 0.9797965079990142, 0.7135835383488238, 0.9941448952916809, 0.9960328142558282, 0.3492843597494407, 0.8964678424255078, 0.9227476025026432, 0.7198944313904173, 0.5968860027116938, 0.8881453318794409, 0.9925113963609085, 0.3603258180549666, 0.5378022783539832, 0.8473761242470575, 0.8187325459386682, 0.8849083156554409, 0.9827902468445031, 0.4131047182833956, 0.47600225640498095, 0.6307666832963554, 0.546783082926976, 0.69307734612859, 0.8537876334602192, 0.9879659605496937, 0.9585559741907868, 0.9417445453797849, 0.9888791265630876, 0.9821767878680736, 0.6605905476884157, 0.7889474566628566, 0.9876905305732143, 0.9960328141985201, 0.9570440635568774, 0.9570323641714312, 0.7895212432611471, 0.5171442849273804, 0.5968860027116938, 0.4091490979906895, 0.9892342016543247, 0.5085917712758021, 0.4645792464390728, 0.9646169105131667, 0.717483601981526, 0.9713972319428504, 0.9628875496833028, 0.4672057494408918, 0.8531893722621033, 0.5921935486140909, 0.9709446217528108, 0.9876905305732143, 0.45011040564568516, 0.9712366008967767, 0.40038760623775166, 0.9339123573872221, 0.45422297290869196, 0.38739848751585215, 0.9831370218820373, 0.4817616303484164, 0.9658596321734733, 0.7561017524306014, 0.4750371743921544, 0.9839502616115227, 0.5343770702518172, 0.9473709786241075, 0.6163899195435294, 0.666554341248951], [0.5922942215814742, 0.9300395697219754, 0.5975262075118888, 0.3624248165545058, 0.7278330401013949, 0.3533521083727435, 1.000001, 0.8728568962005927, 0.8826257608902853, 0.9913226071589054, 0.8442477534661325, 0.9127520193307572, 0.9387405397813926, 0.8150646614561791, 0.33746922745013197, 0.8109548330140828, 0.30940864371580645, 0.3336555455971025, 0.985087560048208, 0.6115213321288141, 0.5262405698865942, 0.8187325459386682, 0.8862764262147469, 0.6165164553759828, 0.3603258180549666, 0.9504559524382551, 0.9115401680157177, 0.6706251007190638, 0.6968931305519619, 0.577630699298015, 0.37075311890118634, 0.9597803123462003, 0.9748036761770029, 0.8892141339424606, 0.9426293431103252, 0.8421561594757422, 0.6788635377136498, 0.3003095631908695, 0.5148171793984202, 0.48150820617658413, 0.28650871809862594, 0.2779257096227722, 0.8559081167185741, 0.7263627539012306, 0.4233418421698065, 0.3574466669549387, 0.5043603667769595, 0.49562351510755576, 0.7121967315761579, 0.9576917330367385, 0.9056720213910201, 0.9302325375875801, 0.361084994247969, 0.921001182177156, 0.9253251433688217, 0.4541888312308039, 0.8078035180457811, 0.3025526875743639, 0.41332214080765384, 0.9432326655245087, 0.655908117136993, 0.862809544250774, 0.4815221083621386, 0.4349540583684174, 0.925411395760669, 0.4842807990115167, 0.975943902418619, 0.5622272707347414, 0.9620824599062439, 0.9773690966730972, 0.43497629328946025, 0.9447933926043107, 0.3139064777603284, 0.7818254178466529, 0.9042839553746203, 0.2769247448924832, 0.9483741647057431, 0.27993850640958834, 0.8993931831565838, 0.8629963378397447], [0.8775811866229146, 0.8644866855098733, 0.8789675640936058, 0.6548735667654578, 0.9602585058642517, 0.6413325555386379, 0.8728568962005927, 1.000001, 0.9750762960056641, 0.9157348938755423, 0.9658596321734733, 0.9511847598899208, 0.8785837383096783, 0.9926514637200042, 0.6033030423337464, 0.9920588949629028, 0.5827864145766495, 0.6230980692039845, 0.8789675640684992, 0.8697662508731324, 0.8291538449220088, 0.9821380047575198, 0.9946814858548945, 0.8966930268095231, 0.6384466132989287, 0.8831524217448901, 0.9810699899273403, 0.9015965739195286, 0.947305458734706, 0.8706944241939039, 0.6720094976157379, 0.9255009830153003, 0.9565622915264502, 0.9873769820723584, 0.9805888986575477, 0.9892994399536714, 0.9262665472711851, 0.5668100810785938, 0.8083501917925865, 0.7462208397804428, 0.5537317496684202, 0.5382471434715089, 0.9678348638333261, 0.9208372582170177, 0.7250535577274458, 0.6521227363496492, 0.8053783332522916, 0.7739318402029625, 0.9549099578024127, 0.9709282760632701, 0.9970769434855367, 0.9144367845257422, 0.6367212852954709, 0.9707089627270247, 0.9485215042338714, 0.7292279313761003, 0.9594104238908747, 0.5588144979594856, 0.6806861421452054, 0.9553190855938022, 0.8878838541669563, 0.9847868762468749, 0.7814141504593275, 0.7272368667076465, 0.9398581617277957, 0.7821193150168634, 0.9190448847230679, 0.8442477534179027, 0.9515875219658493, 0.9097047997954827, 0.7381066811109726, 0.9634899180111942, 0.5689354906347655, 0.9643091361660759, 0.9469045091621863, 0.5388948748913576, 0.9798171269340005, 0.5216766792821244, 0.9870888564150454, 0.9951611142071166], [0.8034434276483889, 0.936372598402693, 0.7996476564980137, 0.564896055046209, 0.936372598402693, 0.5478115614858369, 0.8826257608902853, 0.9750762960056641, 1.000001, 0.9338279395373916, 0.8904047043909833, 0.9927302600468081, 0.9443314078133869, 0.96657545368585, 0.49478495153464863, 0.9565622921318597, 0.4867624952558086, 0.5382471434715089, 0.9185953163608362, 0.7683012511585763, 0.7687670924523635, 0.9182153550779494, 0.9925901817976548, 0.830198414319119, 0.5339884963055493, 0.9432672575262124, 0.9970065951830858, 0.8008828321985435, 0.897569687213353, 0.8203958769283158, 0.5974246466329468, 0.9665754531297165, 0.9471704682096699, 0.9367826215971585, 0.9541065748968002, 0.9333743181516005, 0.8450226685009683, 0.46780840745321783, 0.7170860535837188, 0.6280510278022696, 0.46023451395785614, 0.4420630946696664, 0.8953558763500565, 0.820830146094246, 0.639166880525135, 0.5672789396833706, 0.7250535576549599, 0.6647582590016003, 0.9188376602111339, 0.9493470306539972, 0.9783677740519668, 0.9712366008967767, 0.5303084694855904, 0.9955042745470354, 0.9892508555843662, 0.6159126994068924, 0.8770592582394755, 0.45255522908731466, 0.5641356558982196, 0.9859103152636124, 0.7826431278466929, 0.997301813380412, 0.6941722511564596, 0.6277395163176811, 0.9857269372983848, 0.6918801487655181, 0.9531171796416097, 0.7504960170244827, 0.9751880997313817, 0.9467407199578797, 0.6543323108059289, 0.9867042909874633, 0.45945794462581807, 0.8865090062038566, 0.9924318193746612, 0.44446206327346865, 0.9607359829400662, 0.4142657210146905, 0.9397948722328895, 0.9494926136457278], [0.6490418614753787, 0.9597803123462003, 0.6521227363496492, 0.40914909928544446, 0.791620631668158, 0.39798712930529195, 0.9913226071589054, 0.9157348938755423, 0.9338279395373916, 1.000001, 0.8681333245109768, 0.9572835129277072, 0.9678348636662686, 0.8681333245109768, 0.373262842702556, 0.8617646967832041, 0.3490481450972738, 0.38004362577091805, 0.9934725732019847, 0.6548735667654578, 0.5883892611359566, 0.8563585925786501, 0.9324811864121715, 0.6750471525359361, 0.40038760623775166, 0.975943902418619, 0.9549484332398397, 0.7093053333271487, 0.7561017524306014, 0.6422088663408229, 0.4233418421698066, 0.9870888566551065, 0.988358940067722, 0.9166301708321322, 0.9641419496550984, 0.8789675640684992, 0.727510242209888, 0.3375453377175808, 0.5662564750327751, 0.5181949114347859, 0.3247875241704946, 0.3139064788981761, 0.8785837393206907, 0.7577517517298483, 0.47503717575875287, 0.40571901449483755, 0.5600339681261374, 0.5382471434715089, 0.774182732605692, 0.9748036761770029, 0.9426293438696233, 0.9671120956250323, 0.40014690845151873, 0.9627885384509641, 0.9661541487686697, 0.4938384997212541, 0.8361637899123886, 0.33595064570540906, 0.44933289997838366, 0.9782116810190215, 0.693077347524293, 0.9164295582025415, 0.5343770716661415, 0.48150820756179863, 0.9658596321734733, 0.5359862084015585, 0.9952008113653046, 0.6118431839639173, 0.989299440080833, 0.9949104026428619, 0.4878980732752149, 0.9788950620078075, 0.3465384403985283, 0.8187325459386682, 0.9509721998726045, 0.31362345850468454, 0.9709446223114582, 0.3094086448373504, 0.925500983787994, 0.9000018379852419], [0.8769326817877485, 0.7599611748361352, 0.886276426214747, 0.6808859258114117, 0.9054014007547889, 0.6744217639966554, 0.8442477534661325, 0.9658596321734733, 0.8904047043909833, 0.8681333245109768, 1.000001, 0.858506813896995, 0.7788285299618801, 0.9504559524382551, 0.6688128140241685, 0.9607359833109295, 0.6260901817587095, 0.6430993916901061, 0.8132134081417779, 0.9147029686094732, 0.8072206631861409, 0.9913534077599165, 0.9369604616838517, 0.8865090065457043, 0.6918801474908021, 0.7899720997566269, 0.9100591827843927, 0.9507295636198527, 0.9207455317727135, 0.8372615138709915, 0.6728225265570348, 0.8457308189261111, 0.9307586863011265, 0.9916819364267834, 0.9653411009906433, 0.9909459286791273, 0.9427638871441312, 0.6177350348100714, 0.8315559459222926, 0.8209510711651135, 0.5958666704003256, 0.5875821516025599, 0.9997081908303066, 0.9765638366703745, 0.7406369963654309, 0.66992015183932, 0.8112435849269057, 0.8292628785813023, 0.9127688537174099, 0.9542425541738379, 0.9620824599062439, 0.8157603022774775, 0.6941722497585516, 0.8935624122437086, 0.8592581222215255, 0.7939848088020527, 0.9973018132082684, 0.6257264657085942, 0.7553721942185864, 0.8785245750843788, 0.944118482544738, 0.9083200246686796, 0.7979542572053208, 0.7655422998393748, 0.8468743632382484, 0.8034915875903047, 0.8505639926344526, 0.8728568964000494, 0.886276426214747, 0.8399564332718911, 0.7499540500985535, 0.8934664100951563, 0.641332555538638, 0.9890805375237183, 0.849519690684863, 0.5847622340770996, 0.9565622916767269, 0.597559383173091, 0.9890805375237183, 0.9862249841078231], [0.7371640914257961, 0.9711635984529315, 0.7336814489707867, 0.49320784958910835, 0.8897490171918153, 0.4768975988725301, 0.9127520193307572, 0.9511847598899208, 0.9927302600468081, 0.9572835129277072, 0.858506813896995, 1.000001, 0.9765638366703745, 0.9319488195005146, 0.4282283668855421, 0.9196065619980089, 0.41883316821855204, 0.467205750811842, 0.9527258000509564, 0.7049209368845223, 0.6991995920398111, 0.8801685770970084, 0.9767844728325857, 0.7661710901575377, 0.46486392332238735, 0.9754633642317385, 0.9926514636349426, 0.7434432750543167, 0.8429795013963106, 0.754918093212217, 0.5246619455440298, 0.9879659601525931, 0.9541065748968002, 0.9138293656025536, 0.9471704682096699, 0.8999370826524187, 0.7867100688527975, 0.4013511253768517, 0.646509885280212, 0.561301672617269, 0.3937024800764116, 0.3770558907113387, 0.8658037945923526, 0.7709072589492575, 0.566256475032775, 0.49528833394939886, 0.6536932213907453, 0.5958441001441857, 0.8680057778956042, 0.9479626980224463, 0.9627885384509641, 0.9927302600468081, 0.46166027433501505, 0.996958033281402, 0.999407652381174, 0.547249750996143, 0.8382677341093312, 0.3882648272146253, 0.49687537735708914, 0.9960328141985201, 0.7243944819560457, 0.9814210778042467, 0.6222088025752359, 0.5561326416925492, 0.9987581969313929, 0.6201543178537973, 0.9770572536211153, 0.6825819082045804, 0.9880800364714372, 0.973357250912293, 0.5813862816956041, 0.9939299029133445, 0.3953390585478125, 0.8423682178943456, 0.9996993738539482, 0.37910208107330756, 0.9565392889473145, 0.35334623566595447, 0.9194473204304666, 0.9208372582170177], [0.6093189043713966, 0.9994076524672233, 0.6067138215360325, 0.37284221944687473, 0.782119313711852, 0.3587852805843265, 0.9387405397813926, 0.8785837383096783, 0.9443314078133869, 0.9678348636662686, 0.7788285299618801, 0.9765638366703745, 1.000001, 0.8421561593915491, 0.3195704161662065, 0.8270218916339688, 0.3087349084929626, 0.3492843597494407, 0.9829425385684609, 0.5841586604738692, 0.5679616068125604, 0.7889474566628566, 0.9157348938755422, 0.6397917666889232, 0.3502581298388367, 0.9993237181953364, 0.95008660252839, 0.6295429690399648, 0.7263627539012306, 0.6261499180561465, 0.40014690845151873, 0.9916819363276417, 0.9352544330169865, 0.8457308186120667, 0.9043854607660946, 0.8150646612000845, 0.6685833431009952, 0.2944752661732089, 0.5181949114347859, 0.44419701070147394, 0.2871339503277157, 0.27371701343560506, 0.7895853528653894, 0.6671632202712535, 0.43932424309742957, 0.3741898849260774, 0.5234014555399245, 0.47344671963723695, 0.7553721942185863, 0.9148395820798534, 0.9036999267079906, 0.9952664433086879, 0.34794889889768427, 0.9641419496550984, 0.9814210778042468, 0.4282283668855421, 0.7484642951105309, 0.2852594216059939, 0.38296053169162336, 0.9788424756750406, 0.6103820610945254, 0.9191139699279411, 0.4932078495891083, 0.43211891231646077, 0.9858010350508272, 0.49172714195796097, 0.98663922358331, 0.5561326402846408, 0.976875522017819, 0.9880800364714372, 0.4533702004283478, 0.9719501792569902, 0.2921184810497685, 0.7435935006066342, 0.9759767636692633, 0.2751196758695244, 0.9178657171230546, 0.2571231446147937, 0.8554121038008038, 0.8425490722655665], [0.9190448847230679, 0.8282038790414608, 0.9180092294088751, 0.7135835397549561, 0.9867042909874633, 0.6985691885176333, 0.8150646614561791, 0.9926514637200042, 0.96657545368585, 0.8681333245109768, 0.9504559524382551, 0.9319488195005146, 0.8421561593915491, 1.000001, 0.650761442858629, 0.9990321064711599, 0.6384466133718746, 0.6846028780461266, 0.8292628785813022, 0.8969998992513485, 0.8831524216187593, 0.9797965079990142, 0.9858010350508272, 0.93637259838932, 0.6891810548066513, 0.8442477534661325, 0.9650120115926656, 0.9178657174114495, 0.9763436429072895, 0.9196065611514341, 0.7361120332365386, 0.8898159002071722, 0.9163195290401972, 0.9686952482765595, 0.9503654556673259, 0.9832294538824614, 0.9501627844672621, 0.620154317960081, 0.8546223482053367, 0.7802778322494437, 0.6100063096273923, 0.5921935501381798, 0.950178600675944, 0.9245599862322813, 0.7822957055475843, 0.713154560456028, 0.8568737124336376, 0.8132134081417779, 0.9831370218820373, 0.9357742396490756, 0.9810699899273403, 0.8855455057507485, 0.6860797985252549, 0.9512299452316427, 0.9255009829359927, 0.7695412109557438, 0.9516037447907593, 0.6064628652970827, 0.7207597531752488, 0.927939065533027, 0.9043854614945869, 0.9821767873743051, 0.8330113591253371, 0.7776055433990232, 0.9157348938755423, 0.832260309924529, 0.8775811866229147, 0.8831524216187593, 0.9180092294088751, 0.8666366902497059, 0.7952391231012184, 0.936372598402693, 0.6143422143892087, 0.9661541484907241, 0.9294303357892997, 0.5939767859779367, 0.9491135615275418, 0.5657382286069285, 0.966154148490724, 0.986224984107823], [0.8659948809635681, 0.3057173817108251, 0.8728568964000495, 0.9706762787468064, 0.6962320132946593, 0.9797965079990142, 0.33746922745013197, 0.6033030423337464, 0.49478495153464863, 0.373262842702556, 0.6688128140241685, 0.4282283668855421, 0.3195704161662065, 0.650761442858629, 1.000001, 0.6703446163748271, 0.988080036640777, 0.9607359832556521, 0.32216153142137455, 0.8895483982823973, 0.8589915407825648, 0.6985691885176333, 0.5515117795610742, 0.8399564332718912, 0.9961340430512283, 0.3232669085117476, 0.4922307760282943, 0.8450096203638755, 0.7670579020959426, 0.8179591311824582, 0.9277923343129465, 0.375952151586253, 0.4539157901963018, 0.6122112220526543, 0.5244647940689041, 0.6693660481327371, 0.8282038778501624, 0.9925901819110633, 0.9305906046659549, 0.9626935892440318, 0.9827770477888611, 0.9867042912713208, 0.6543323093753057, 0.7925537290574686, 0.9494926134934556, 0.9584954601846132, 0.9136095780900306, 0.9585559741907868, 0.7308989864054356, 0.4960707761873939, 0.5622272707347414, 0.3652556166854311, 0.9976327141194596, 0.4632941530868155, 0.4186898013445265, 0.9765638366703745, 0.7122973754324947, 0.997301813380412, 0.9876905309141837, 0.42615143195734445, 0.8559081155370216, 0.5380400383723016, 0.9357742390029817, 0.9726083270446585, 0.4042034280522798, 0.9405696129332828, 0.36835726790323803, 0.9122310898382827, 0.41883316831425976, 0.3559914273942328, 0.9417445453797849, 0.4420630933470591, 0.9976327140624673, 0.7416103291828047, 0.42451067454481634, 0.9837420097529611, 0.5095101133191063, 0.9890805377093778, 0.5975593817376036, 0.6391668791547934], [0.9277298355911832, 0.8121128786961627, 0.927939065533027, 0.7275102408285615, 0.9846256146551658, 0.7135835383488238, 0.8109548330140828, 0.9920588949629028, 0.9565622921318597, 0.8617646967832041, 0.9607359833109295, 0.9196065619980089, 0.8270218916339688, 0.9990321064711599, 0.6703446163748271, 1.000001, 0.6548735653336514, 0.6975197787731431, 0.8194097930568504, 0.9124456046304418, 0.8886410978429765, 0.9870888565983129, 0.9808310848146796, 0.943267257580099, 0.7071758568740617, 0.8301984144021166, 0.9570440642176568, 0.9331752700236343, 0.9796521621594069, 0.9227476017062685, 0.7458931826818243, 0.8786372756987252, 0.9144367853675577, 0.9738098112164526, 0.9511847604919269, 0.9889455339307199, 0.9606695393229536, 0.6376312932999924, 0.8676796086203599, 0.8007783251324809, 0.6261499180561467, 0.6093189043713968, 0.9598951740610083, 0.9399062086711858, 0.7945221296503981, 0.7257624118057775, 0.8672231774928498, 0.831088194420449, 0.983541685222307, 0.9359102393319737, 0.9796521626103327, 0.871271255862548, 0.7046289241278842, 0.9418502564611694, 0.9135348588967771, 0.7889011191160431, 0.9631475677126999, 0.6260901817587095, 0.741523970554388, 0.918009229408875, 0.9208372582170176, 0.9741448259627985, 0.8452001945018879, 0.7933285767729266, 0.9029602530670088, 0.8452001945018879, 0.8680057789943283, 0.8966930257396193, 0.9097048007246322, 0.8566805061729258, 0.8068325684919612, 0.9277298364452361, 0.6347126428010261, 0.9763710457959572, 0.9162945483827457, 0.6106026880554029, 0.9485215047262063, 0.5863142150660843, 0.9706885351703849, 0.9899078218306031], [0.8650746626144407, 0.29607331169757256, 0.8672231774928498, 0.9890805374248367, 0.6983016527763631, 0.9941448952916809, 0.30940864371580645, 0.5827864145766495, 0.4867624952558086, 0.3490481450972738, 0.6260901817587095, 0.41883316821855204, 0.3087349084929626, 0.6384466133718746, 0.988080036640777, 0.6548735653336514, 1.000001, 0.9883464603871701, 0.3025754306620248, 0.8617646956923802, 0.8783476091241254, 0.6674066443575514, 0.5366715565218032, 0.8401328958677551, 0.9926514636349426, 0.3106204045453328, 0.4784774940733974, 0.8089447450608581, 0.763239550170693, 0.8339972669510722, 0.9620824599062439, 0.3603258180549667, 0.4243790518928652, 0.5776834915016934, 0.49320784958910835, 0.639166879090894, 0.8078035180457811, 0.998506579137977, 0.9277298355911832, 0.9289714040581319, 0.9987581969313929, 0.9967022734971914, 0.6118200072718938, 0.748411629993901, 0.96534110043522, 0.9837420093154092, 0.9223757157019197, 0.9373301386329728, 0.7308192854126356, 0.46457924780231596, 0.5392595648968068, 0.3551628607338761, 0.9905644276984031, 0.45011040564568505, 0.40755296708161143, 0.9531171798185698, 0.6703446177633209, 0.9870888566551065, 0.9604032639897969, 0.41109124879890463, 0.8173807178834174, 0.5302158874943811, 0.9418502557024989, 0.971163597880288, 0.3937024800764117, 0.943267257580099, 0.3494681927676069, 0.8997312738755491, 0.3999364165801187, 0.3373424171268164, 0.9580734410844716, 0.4254010695524288, 0.9809409968931427, 0.7071758582574676, 0.4166978009487163, 0.997301813380412, 0.48031528655462796, 0.9706762789143543, 0.5632001238005389, 0.6111077713874596], [0.8989200695319409, 0.33665846548922296, 0.8966930267198779, 0.9976327141194598, 0.7533875181093733, 0.9960328142558282, 0.3336555455971025, 0.6230980692039845, 0.5382471434715089, 0.38004362577091805, 0.6430993916901061, 0.467205750811842, 0.3492843597494407, 0.6846028780461266, 0.9607359832556521, 0.6975197787731431, 0.9883464603871701, 1.000001, 0.33451432187829994, 0.8706567291674345, 0.9245970427595136, 0.694532593604914, 0.5825674217439157, 0.8789675640684993, 0.9782252117690955, 0.3496784061182031, 0.5247802719901954, 0.8176102985818895, 0.8082894321359534, 0.8855455068709501, 0.9916819364267834, 0.40014690843437417, 0.45422006283882754, 0.6045058099357119, 0.523286904978421, 0.6685833429291198, 0.8329018325108223, 0.9786488416796406, 0.9460957144294916, 0.9117391715058678, 0.9852960966087853, 0.9750762960056641, 0.6295429690399648, 0.7554732048047625, 0.9855046774567363, 0.9988332742523282, 0.9515875219386682, 0.9338279395373916, 0.7818254191511741, 0.49382434800814023, 0.5776834915016934, 0.39966594686427115, 0.9729452750446919, 0.496219952879422, 0.45391579019630174, 0.939906209103817, 0.6860820057567025, 0.9531659049665255, 0.935917563609138, 0.45408642159392765, 0.8219681825976142, 0.5822609700526817, 0.9634899180111942, 0.9751880997313817, 0.43998520090210735, 0.9617533219321621, 0.3855682715638574, 0.9162945482126224, 0.4388951530632675, 0.37284221940427553, 0.9814210778042468, 0.4675219273779364, 0.9441936263762525, 0.7284394711027273, 0.4663636583157273, 0.9788950620078075, 0.5121924498082094, 0.9248185543384156, 0.5903828886033169, 0.6436006454946959], [0.595407240101279, 0.9785107503599159, 0.5968860041540879, 0.3607323220770785, 0.7524730775688901, 0.3492843597494407, 0.985087560048208, 0.8789675640684992, 0.9185953163608362, 0.9934725732019847, 0.8132134081417779, 0.9527258000509564, 0.9829425385684609, 0.8292628785813022, 0.32216153142137455, 0.8194097930568504, 0.3025754306620248, 0.33451432187829994, 1.000001, 0.5931290803596279, 0.540449473065298, 0.8044707667392816, 0.9054070107182314, 0.6230980692039844, 0.34875965522948205, 0.988945534100208, 0.9373301393880024, 0.646509885280212, 0.7082930343108366, 0.5958666704003253, 0.37810602201562643, 0.9879659605496937, 0.9653411009906433, 0.871271255862548, 0.9307586863011265, 0.8301984143191189, 0.6701715706211052, 0.2910453356596147, 0.5103150240726873, 0.4568223372066142, 0.2804439791643568, 0.2696045799561989, 0.8249265111807822, 0.694532593604914, 0.42437905321139807, 0.3587852818022779, 0.5073698910012295, 0.47847749544989304, 0.7308192854126355, 0.9447454753772041, 0.9097731838422779, 0.9738098112164527, 0.34802639289084236, 0.9501627843179908, 0.9623540255183053, 0.4349540583684174, 0.7783840336757536, 0.2877172906152203, 0.3918130276477482, 0.9707089632296853, 0.62929858138901, 0.8945157907061511, 0.4807848727606466, 0.426938714197499, 0.9650346472047345, 0.4815082075617986, 0.9946681270124684, 0.5536068952829507, 0.9803151318828702, 0.9967022734971914, 0.43721584317052165, 0.967665899183001, 0.29680864458897854, 0.7620357081065613, 0.9478684495712654, 0.269766753458438, 0.940930346929496, 0.2625646368116648, 0.8817594444603916, 0.8553292816449892], [0.9785107501223411, 0.5657382286069284, 0.9853751014817294, 0.8993629001621126, 0.9077157467306216, 0.8964678424255078, 0.6115213321288141, 0.8697662508731324, 0.7683012511585763, 0.6548735667654578, 0.9147029686094732, 0.7049209368845223, 0.5841586604738692, 0.8969998992513485, 0.8895483982823973, 0.9124456046304418, 0.8617646956923802, 0.8706567291674345, 0.5931290803596279, 1.000001, 0.9402981698269507, 0.9361614668704711, 0.8249265100416613, 0.9720937805642775, 0.9086796696566661, 0.5903828887888161, 0.7719165038539625, 0.9941448952916809, 0.9524233511420639, 0.9384666067379175, 0.8828515389029117, 0.6544897232141813, 0.7416103291722129, 0.8791657967061242, 0.8082894321359534, 0.9184923899130202, 0.9890805374248367, 0.8546223481321029, 0.9788950620078075, 0.9719501792569903, 0.8376106505484122, 0.8301984143191191, 0.9054070097805405, 0.9755370828413759, 0.9331752706679337, 0.889145698392095, 0.9630574108157078, 0.9814948518823543, 0.9300826290288279, 0.7823545112384233, 0.838933883729965, 0.6373996185962534, 0.90949968126833, 0.7439246157398736, 0.6968931305519616, 0.9646493904253429, 0.9409303470235637, 0.8563585925786502, 0.9409303462656343, 0.7082471798505733, 0.9946814857696589, 0.8064716811366516, 0.9627885384509641, 0.9530239509397271, 0.6808859258114116, 0.9671405892773698, 0.6478233299852434, 0.9925901817397329, 0.703200308955497, 0.6334274281565931, 0.9367103258963757, 0.7257282288720898, 0.8659204111125576, 0.9587721569540919, 0.6992214653677448, 0.828203879041461, 0.7949402972465598, 0.828203879041461, 0.8682015383330309, 0.898312146257899], [0.9883464605424401, 0.5537317496684201, 0.9827902468445031, 0.9358517079606641, 0.93637259838932, 0.9227476025026432, 0.5262405698865942, 0.8291538449220088, 0.7687670924523635, 0.5883892611359566, 0.8072206631861409, 0.6991995920398111, 0.5679616068125604, 0.8831524216187593, 0.8589915407825648, 0.8886410978429765, 0.8783476091241254, 0.9245970427595136, 0.540449473065298, 0.9402981698269507, 1.000001, 0.8646993370560644, 0.8022967763583122, 0.9867042909874633, 0.8967633151204246, 0.5668100796436545, 0.7518035298949071, 0.91276885371741, 0.9606695393229536, 0.9952664433086879, 0.9588442284976872, 0.6222088011432477, 0.6621151987496112, 0.7934833289986654, 0.7279929536661903, 0.848979200835378, 0.9494926134934556, 0.8580251010590019, 0.9783677742755339, 0.8976956549442793, 0.8603378507356308, 0.8399564343351101, 0.797619084604559, 0.8709080884683414, 0.9707089632296853, 0.9409303470235637, 0.991322607330017, 0.9359175636091379, 0.9507295636198528, 0.6992214653677449, 0.788901119116043, 0.6267149689061442, 0.8900478102987951, 0.7250535563507838, 0.6842427505696628, 0.913095499315984, 0.8382610154210626, 0.8278055591180117, 0.8803861484577273, 0.6809077562273542, 0.9071924344543848, 0.8078035180457812, 0.9820427265380107, 0.950491956270824, 0.6701715691944108, 0.9782116810190213, 0.6019893540515199, 0.97038038387615, 0.6608172766772425, 0.5875821501826486, 0.9767844729441885, 0.6930773462374729, 0.8250985077184941, 0.8790769942865038, 0.6994098529284076, 0.8450226685009684, 0.7207597529179035, 0.7833614967297569, 0.7822166865724003, 0.8344186503987883], [0.920738325857574, 0.7712522330837698, 0.9263614297920939, 0.7292279313761003, 0.9516037447907594, 0.7198944313904173, 0.8187325459386682, 0.9821380047575198, 0.9182153550779494, 0.8563585925786501, 0.9913534077599165, 0.8801685770970084, 0.7889474566628566, 0.9797965079990142, 0.6985691885176333, 0.9870888565983129, 0.6674066443575514, 0.694532593604914, 0.8044707667392816, 0.9361614668704711, 0.8646993370560644, 1.000001, 0.9580235135466726, 0.9314186289447165, 0.7275102408493419, 0.7966348158082883, 0.9289714040581319, 0.9626935892440318, 0.962082459906244, 0.8940439944852837, 0.7308989864054356, 0.8517185021476325, 0.9190448847099422, 0.9888791265207184, 0.9587721569540919, 0.998758196945657, 0.9694131713452206, 0.65531674554741, 0.8726476650989109, 0.8389338837299651, 0.6376312932999924, 0.6257264657085942, 0.9899078216597357, 0.9768755220178191, 0.7909793527245458, 0.721811135874018, 0.8603378507356308, 0.8566805061729259, 0.9572625983897304, 0.9441184825177704, 0.9719501792569902, 0.8314759434945268, 0.7277290152185572, 0.9113737258745088, 0.8772693611325483, 0.8194097918310556, 0.9936398650536419, 0.6548735667654578, 0.7776055421015432, 0.8902228398568718, 0.9542425540648107, 0.9385644261668947, 0.8444054911001727, 0.8053783332522916, 0.864916541326424, 0.8477125011631883, 0.8491793453089705, 0.9073146262775439, 0.8903125996867556, 0.8376106506800014, 0.8011988199712893, 0.9036999267079907, 0.6674066442812968, 0.9967022732824468, 0.8735773436871671, 0.6245986551872597, 0.9518021324932148, 0.6212274054122541, 0.9851343557478038, 0.9946681270124684], [0.8452001945139589, 0.9042507722895196, 0.8442477534661325, 0.6122112220526544, 0.9530239502817233, 0.5968860027116938, 0.8862764262147469, 0.9946814858548945, 0.9925901817976548, 0.9324811864121715, 0.9369604616838517, 0.9767844728325857, 0.9157348938755422, 0.9858010350508272, 0.5515117795610742, 0.9808310848146796, 0.5366715565218032, 0.5825674217439157, 0.9054070107182314, 0.8249265100416613, 0.8022967763583122, 0.9580235135466726, 1.000001, 0.868201538333031, 0.588864398415687, 0.9180092294088751, 0.9950420325173037, 0.858025100071647, 0.9277298355911833, 0.8491793440518115, 0.636721285295471, 0.9518736800818203, 0.9604032639897969, 0.9706762787468064, 0.9759439025870761, 0.9692686133297901, 0.891853157155207, 0.5191696167996988, 0.7669201447000606, 0.6916743742765072, 0.5085917713266477, 0.49172714203521173, 0.9405221100334585, 0.8785245750843789, 0.6850146828244675, 0.6118431839377025, 0.7689404716706424, 0.7238214385592108, 0.9418502557024989, 0.9688449666059812, 0.9952008113653046, 0.9473054586264714, 0.5862145585778963, 0.9888791265207184, 0.9739979965376375, 0.6766051683227164, 0.9266632270268967, 0.5077076531777063, 0.6259944362564709, 0.9765638366703744, 0.84197640528015, 0.9963235505465511, 0.7414431123018874, 0.6809077576377276, 0.967665899183001, 0.7407746217094858, 0.9426293438696233, 0.8022967763583122, 0.9700692114883696, 0.9346848786593123, 0.6991995920198395, 0.9814210778182633, 0.516409650435828, 0.9331752700236342, 0.9741448259627985, 0.49320784958910835, 0.9786488416796406, 0.469760000304017, 0.9720937805642775, 0.980199008358913], [0.9985329988545414, 0.6238948060767056, 0.996958033281402, 0.8997312739012489, 0.9665754537962862, 0.8881453318794409, 0.6165164553759828, 0.8966930268095231, 0.830198414319119, 0.6750471525359361, 0.8865090065457043, 0.7661710901575377, 0.6397917666889232, 0.93637259838932, 0.8399564332718912, 0.943267257580099, 0.8401328958677551, 0.8789675640684993, 0.6230980692039844, 0.9720937805642775, 0.9867042909874633, 0.9314186289447165, 0.868201538333031, 1.000001, 0.8748932016166286, 0.6410915629138735, 0.8208893643631567, 0.9598951740610083, 0.9894739606392442, 0.9922217724344252, 0.9135348588967772, 0.699357281774295, 0.7504960172174155, 0.8733441290333595, 0.8132134081417779, 0.9185953163608362, 0.9866392237524029, 0.8227435801895785, 0.9778864357683509, 0.9138293659549362, 0.8170111721147368, 0.7996476566350597, 0.8785245750843788, 0.9329177406059809, 0.9444023945969477, 0.8997312738755492, 0.9814948518823543, 0.9452358907827667, 0.9796521626103328, 0.7867100688527975, 0.8629963378397446, 0.6968385079568722, 0.870694424193904, 0.7952391231012181, 0.7540107099570063, 0.9178657174114495, 0.9113392044366933, 0.8034915875903047, 0.8820315062498106, 0.755428976051091, 0.9538281578493806, 0.8659204111125576, 0.9705797718555895, 0.9373301393880024, 0.7396618098087169, 0.9694131713452206, 0.6832148638073127, 0.9837420093154092, 0.7402736493220398, 0.6688128140241684, 0.9518021324796213, 0.7687670924523634, 0.8064716811366517, 0.9424689461550447, 0.7643303792603791, 0.8022967776046683, 0.8053045621491997, 0.762089333100594, 0.8634598948221375, 0.9056720213910201], [0.8982890997022301, 0.33607194967979986, 0.902960252131852, 0.9870888564150454, 0.7390199651573395, 0.9925113963609085, 0.3603258180549666, 0.6384466132989287, 0.5339884963055493, 0.40038760623775166, 0.6918801474908021, 0.46486392332238735, 0.3502581298388367, 0.6891810548066513, 0.9961340430512283, 0.7071758568740617, 0.9926514636349426, 0.9782252117690955, 0.34875965522948205, 0.9086796696566661, 0.8967633151204246, 0.7275102408493419, 0.588864398415687, 0.8748932016166286, 1.000001, 0.3533521083727435, 0.528981815174036, 0.8640998254564833, 0.8053045621491998, 0.8586976710409241, 0.9551151771491841, 0.40755296708161154, 0.48176163036905784, 0.6403209948820892, 0.5533988672209228, 0.6993572817742951, 0.8563585914087061, 0.9924318196318188, 0.9542425534059656, 0.966122965983131, 0.9859103156039672, 0.985134356144572, 0.6776908901296331, 0.8105881912265771, 0.9729530736495775, 0.9782252117128118, 0.9427638864932113, 0.9700692109302258, 0.7719165038539627, 0.524188906454492, 0.5959893442304851, 0.3988249371886773, 0.9996993738539482, 0.4994988980679355, 0.45422006150598204, 0.9821767874724966, 0.734950978963079, 0.9890805378082594, 0.9863293674122536, 0.460234512607362, 0.8726476640445202, 0.5781190479787391, 0.9607804633409217, 0.9876905305732143, 0.43941275585692174, 0.9639633949528822, 0.39798712930529195, 0.9353174167965276, 0.450821477100809, 0.3850758853212193, 0.9670126500610504, 0.4760022563166042, 0.9878875419842342, 0.7675545319202992, 0.46166027433501505, 0.9839502616115227, 0.53921903144196, 0.9733572514850358, 0.6257264642685101, 0.6705746931713661], [0.6111077714310984, 0.9978313073209201, 0.6093189043713966, 0.37393682714745596, 0.7808856929956647, 0.3603258180549666, 0.9504559524382551, 0.8831524217448901, 0.9432672575262124, 0.975943902418619, 0.7899720997566269, 0.9754633642317385, 0.9993237181953364, 0.8442477534661325, 0.3232669085117476, 0.8301984144021166, 0.3106204045453328, 0.3496784061182031, 0.988945534100208, 0.5903828887888161, 0.5668100796436545, 0.7966348158082883, 0.9180092294088751, 0.6410915629138735, 0.3533521083727435, 1.000001, 0.9515875219658492, 0.6373996188329385, 0.7275102408493419, 0.6245986536873279, 0.3993356211547918, 0.9941448952916809, 0.9447933928876728, 0.8551276879026394, 0.9136095780900306, 0.8226354035755077, 0.6735772420847136, 0.2968086446568024, 0.5208895532826284, 0.450552633538778, 0.28875726475627866, 0.27576150815616224, 0.8008828325416871, 0.6770143391412975, 0.44021677098296713, 0.37461202854993886, 0.5244647940689041, 0.4784913088513972, 0.7552018743278336, 0.9245872256837271, 0.9092189742710038, 0.9941448952348878, 0.3513392490756266, 0.9652296497585487, 0.9811997888396364, 0.43337712507609016, 0.7588310945112209, 0.2886892078999444, 0.38826482614676816, 0.9808310848146796, 0.6185572800054444, 0.9184923898736668, 0.4948789759476883, 0.4349540583684174, 0.9851343557478038, 0.493838499721254, 0.9913226071589054, 0.5600339667083524, 0.9810699899273403, 0.9927702593042346, 0.4540864216068981, 0.9748036762466131, 0.2960310018833996, 0.7518555276922584, 0.9739979965376375, 0.2769247448924832, 0.9263913289062232, 0.26091974278579294, 0.8649165413264239, 0.8496083995684465], [0.7949402972465598, 0.9409303470235637, 0.7933285767729263, 0.5533988672209228, 0.9245970419083446, 0.5378022783539832, 0.9115401680157177, 0.9810699899273403, 0.9970065951830858, 0.9549484332398397, 0.9100591827843927, 0.9926514636349426, 0.95008660252839, 0.9650120115926656, 0.4922307760282943, 0.9570440642176568, 0.4784774940733974, 0.5247802719901954, 0.9373301393880024, 0.7719165038539625, 0.7518035298949071, 0.9289714040581319, 0.9950420325173037, 0.8208893643631567, 0.528981815174036, 0.9515875219658492, 1.000001, 0.8094475742516405, 0.8898159002071722, 0.8034434264002516, 0.5801639251008063, 0.9763436429072895, 0.9686952482765595, 0.9536583910857512, 0.9729452749887119, 0.9445585863751227, 0.8461209790554796, 0.4612388584433418, 0.71021230085122, 0.6322460747292632, 0.45146579536414677, 0.4349540583684174, 0.9156539596344878, 0.8353062584665465, 0.626856312703957, 0.5537317496684202, 0.7135835397447646, 0.6647747786881434, 0.908679669656666, 0.9700972180378603, 0.9878875419842342, 0.9739979965376376, 0.5262848691340043, 0.9987581969313929, 0.9915370355081117, 0.6165164553759828, 0.8940439944852837, 0.44983693448132556, 0.5657382272398037, 0.9926556414590448, 0.7919786939378748, 0.9934725732019847, 0.684242751986944, 0.6212274054122541, 0.9876905309141838, 0.6832148638073127, 0.967665899183001, 0.7472961799023714, 0.9868742002311971, 0.9617533219321621, 0.641525414851699, 0.9946681270124684, 0.45820308345916577, 0.8977505258070946, 0.9905644276984031, 0.43652623160231124, 0.9785107501223411, 0.4135289913282024, 0.9572835129277072, 0.9602585056585371], [0.9628875493945138, 0.6103820613647651, 0.9713931432825517, 0.8505639923793518, 0.913095499315984, 0.8473761242470575, 0.6706251007190638, 0.9015965739195286, 0.8008828321985435, 0.7093053333271487, 0.9507295636198527, 0.7434432750543167, 0.6295429690399648, 0.9178657174114495, 0.8450096203638755, 0.9331752700236343, 0.8089447450608581, 0.8176102985818895, 0.646509885280212, 0.9941448952916809, 0.91276885371741, 0.9626935892440318, 0.858025100071647, 0.9598951740610083, 0.8640998254564833, 0.6373996188329385, 0.8094475742516405, 1.000001, 0.9531659049665255, 0.9189859516857676, 0.8333260128490286, 0.7017291565171683, 0.7939848088020526, 0.9184923899130202, 0.8553292816449892, 0.9483741647057431, 0.9906567614148355, 0.8022967776046683, 0.9527258000509565, 0.9507295636198527, 0.7821376597654497, 0.7752710175736686, 0.943267257580099, 0.9934725732019847, 0.8918317110032256, 0.8388809215611794, 0.9333743184581986, 0.957691733697965, 0.9329177406059809, 0.832260309924529, 0.8768024329666986, 0.6801257387437405, 0.8659204111125576, 0.7832748146672057, 0.7375813512221953, 0.93637259838932, 0.9705797718555895, 0.8082894321359535, 0.9091579198890526, 0.7518555276922585, 0.9994076524386765, 0.8353062584665465, 0.9304436305270166, 0.9162945483827457, 0.7218898542996756, 0.9357742396490757, 0.698301652776363, 0.975188099898512, 0.7504960172174158, 0.6843800599980946, 0.8967633151204246, 0.7695412107249432, 0.8207042717850496, 0.9808310848146797, 0.7365459742896074, 0.7724788363607114, 0.8421561594757422, 0.7808856942986179, 0.9091579198890525, 0.9307586863011265], [0.9808310848146796, 0.7110135293458152, 0.9788424756750405, 0.8326983396284156, 0.9916819364267834, 0.8187325459386682, 0.6968931305519619, 0.947305458734706, 0.897569687213353, 0.7561017524306014, 0.9207455317727135, 0.8429795013963106, 0.7263627539012306, 0.9763436429072895, 0.7670579020959426, 0.9796521621594069, 0.763239550170693, 0.8082894321359534, 0.7082930343108366, 0.9524233511420639, 0.9606695393229536, 0.962082459906244, 0.9277298355911833, 0.9894739606392442, 0.8053045621491998, 0.7275102408493419, 0.8898159002071722, 0.9531659049665255, 1.000001, 0.9798171270599433, 0.8528255164967673, 0.7821193136895118, 0.8226354035755078, 0.9208372582170176, 0.8759081337741417, 0.9556500438153261, 0.9847868764168584, 0.7443809052662836, 0.939870029358219, 0.8665142403597657, 0.7371640914257961, 0.7185428803106965, 0.9156539591076527, 0.9387405397813926, 0.8897490182029686, 0.8331992272842118, 0.944331408574056, 0.900521555173369, 0.9976327141194598, 0.8531893732929832, 0.9210593291109781, 0.7802402874448922, 0.8011988199712892, 0.868201538333031, 0.8322603087273958, 0.8649165413264239, 0.9367826219583922, 0.725979648899317, 0.8219681829145741, 0.833199226085728, 0.943546384748141, 0.9262665464184793, 0.9268933883913882, 0.8817594444603915, 0.8194097918310557, 0.9255009837879938, 0.7661710901575379, 0.9549099576387577, 0.8187325459386684, 0.7526516796049686, 0.9000018379852418, 0.8446920923214737, 0.7308989861340313, 0.9628875493945138, 0.8412071486847781, 0.7211401060684398, 0.8706944239825062, 0.6831487298579467, 0.9136095778160211, 0.9491135615275418], [0.988945534100208, 0.6120731818178418, 0.9829425385684609, 0.899978749204729, 0.9650120115926656, 0.8849083156554409, 0.577630699298015, 0.8706944241939039, 0.8203958769283158, 0.6422088663408229, 0.8372615138709915, 0.754918093212217, 0.6261499180561465, 0.9196065611514341, 0.8179591311824582, 0.9227476017062685, 0.8339972669510722, 0.8855455068709501, 0.5958666704003253, 0.9384666067379175, 0.9952664433086879, 0.8940439944852837, 0.8491793440518115, 0.9922217724344252, 0.8586976710409241, 0.6245986536873279, 0.8034434264002516, 0.9189859516857676, 0.9798171270599433, 1.000001, 0.9279390663872726, 0.6788635363075106, 0.7121967315761579, 0.8316099589523376, 0.7739690800901933, 0.8820315059222865, 0.9597803121253108, 0.8123123208708218, 0.9646169109016713, 0.8762621758772672, 0.813213408141778, 0.7916206328523818, 0.8292364653200441, 0.8844024183072596, 0.9447454760838495, 0.9054070107182315, 0.9784187622263889, 0.9168089756047084, 0.9748036761770029, 0.7467476955784372, 0.833997265847411, 0.6846028766574318, 0.8520110109080938, 0.778599843060646, 0.7402736479590718, 0.887809117885805, 0.863518063822171, 0.782643128204377, 0.8495196906848631, 0.7361120318812328, 0.9109675422100988, 0.8559081155859175, 0.9643091368444606, 0.9236795477702889, 0.7268543122368638, 0.9602585061557861, 0.6578436548409227, 0.9628875493945138, 0.7155246022077634, 0.6436006440875361, 0.9530239509397271, 0.7472961800304451, 0.7815546768859792, 0.9021584445788021, 0.7553721942185863, 0.7966348167724641, 0.7683012499650318, 0.7365087760321352, 0.8217182791003989, 0.8712235849673202], [0.927964364558662, 0.3873984887863563, 0.9227476025026433, 0.9897897665495868, 0.8082894321359536, 0.9827902468445031, 0.37075311890118634, 0.6720094976157379, 0.5974246466329468, 0.4233418421698066, 0.6728225265570348, 0.5246619455440298, 0.40014690845151873, 0.7361120332365386, 0.9277923343129465, 0.7458931826818243, 0.9620824599062439, 0.9916819364267834, 0.37810602201562643, 0.8828515389029117, 0.9588442284976872, 0.7308989864054356, 0.636721285295471, 0.9135348588967772, 0.9551151771491841, 0.3993356211547918, 0.5801639251008063, 0.8333260128490286, 0.8528255164967673, 0.9279390663872726, 1.000001, 0.45082147710080894, 0.49683474118855525, 0.643099391690106, 0.5657382286069285, 0.707628479981951, 0.8608029103609582, 0.9464286020401408, 0.9580235135466726, 0.8976956549442793, 0.9556500440473504, 0.939568840012195, 0.66017914284039, 0.7731406170041341, 0.9913226071589054, 0.995161114306606, 0.9707089627270247, 0.9293848891230635, 0.8322603099245292, 0.5358202494995356, 0.6260901817587095, 0.4540864216068982, 0.9479626983744525, 0.5517374542907755, 0.5098549188801026, 0.9259769639741249, 0.7135320629077003, 0.913095499315984, 0.9117654944185904, 0.5073698896000003, 0.834056625099312, 0.6410915629138736, 0.9751880998985121, 0.9706762787468064, 0.4958843683754254, 0.9713837949540027, 0.4331270112217359, 0.9304436305270167, 0.48896278642581964, 0.41981027254409653, 0.9905644276984031, 0.5200679648976986, 0.9037570020397251, 0.758831095375765, 0.5248197200738476, 0.9452358907827668, 0.5562075604593021, 0.8762621758772672, 0.6295429690399647, 0.6858170458023519], [0.6705746931809431, 0.9867042912713206, 0.6698190345008284, 0.4269387128771109, 0.8282038778501624, 0.4131047182833956, 0.9597803123462003, 0.9255009830153003, 0.9665754531297165, 0.9870888566551065, 0.8457308189261111, 0.9879659601525931, 0.9916819363276417, 0.8898159002071722, 0.375952151586253, 0.8786372756987252, 0.3603258180549667, 0.40014690843437417, 0.9879659605496937, 0.6544897232141813, 0.6222088011432477, 0.8517185021476325, 0.9518736800818203, 0.699357281774295, 0.40755296708161154, 0.9941448952916809, 0.9763436429072895, 0.7017291565171683, 0.7821193136895118, 0.6788635363075106, 0.45082147710080894, 1.000001, 0.9713972316633965, 0.9031653478477, 0.9503654551205191, 0.8748932016166286, 0.7349509789630791, 0.3459398414815334, 0.5813862817454238, 0.5125424633654335, 0.3363296484225432, 0.3227189854588145, 0.8554121041184433, 0.7406369951296351, 0.49618265449778304, 0.4266820535519838, 0.5829178497886598, 0.5404494730652981, 0.8061657177314466, 0.9578798839473318, 0.947305458734706, 0.9952008112515978, 0.405719013303648, 0.9851343557478038, 0.9926514636349426, 0.49382434679242804, 0.8176102977918392, 0.33830235702529454, 0.44660254317644305, 0.995266443308688, 0.6833984055253418, 0.948374164610931, 0.553606895298764, 0.49320784958910835, 0.9937099757302853, 0.5531077592285036, 0.9978313073209201, 0.6222088011432477, 0.9961779715691965, 0.996958033281402, 0.5103150226633243, 0.9926556414732218, 0.34672180309076894, 0.8109548318475956, 0.9852960966087853, 0.32369076919557743, 0.9602585056585371, 0.30830201904207455, 0.9113737258745088, 0.8982890998690106], [0.7275306604595563, 0.9231176090793687, 0.732304012471904, 0.4867624952558086, 0.845730818926111, 0.47600225640498095, 0.9748036761770029, 0.9565622915264502, 0.9471704682096699, 0.988358940067722, 0.9307586863011265, 0.9541065748968002, 0.9352544330169865, 0.9163195290401972, 0.4539157901963018, 0.9144367853675577, 0.4243790518928652, 0.45422006283882754, 0.9653411009906433, 0.7416103291722129, 0.6621151987496112, 0.9190448847099422, 0.9604032639897969, 0.7504960172174155, 0.48176163036905784, 0.9447933928876728, 0.9686952482765595, 0.7939848088020526, 0.8226354035755078, 0.7121967315761579, 0.49683474118855525, 0.9713972316633965, 1.000001, 0.9650120115926656, 0.9927302600468081, 0.9361614668972114, 0.8061657189838131, 0.41282534439128415, 0.6501649347595851, 0.6085407814672943, 0.3974191341689649, 0.3863806315275019, 0.9386697803728744, 0.8389338837299651, 0.5546714496213748, 0.48152210836213866, 0.6403193300270598, 0.626856312703957, 0.8344186503987882, 0.9973018132082683, 0.9755370828413759, 0.9471704682096699, 0.48205142133200823, 0.969248216097246, 0.960735983255652, 0.5822609700526817, 0.9054070097805406, 0.4131047195906681, 0.5366715565218032, 0.975655006664557, 0.7794782244231774, 0.9399062091038168, 0.6163899209621257, 0.5656183707434554, 0.9565099547173052, 0.6189900207415425, 0.9788950621755731, 0.6968385080265374, 0.9862249841078231, 0.975188099898512, 0.5673553599864798, 0.9809409968931427, 0.4254010695524288, 0.8895483982569883, 0.9466769676997759, 0.3855682716079105, 0.9950420325457259, 0.38452631798102516, 0.9709446223114582, 0.9507295636198527], [0.8580773844541721, 0.8289145559234885, 0.8644866853246757, 0.6403193298624504, 0.9207455317727133, 0.6307666832963554, 0.8892141339424606, 0.9873769820723584, 0.9367826215971585, 0.9166301708321322, 0.9916819364267834, 0.9138293656025536, 0.8457308186120667, 0.9686952482765595, 0.6122112220526543, 0.9738098112164526, 0.5776834915016934, 0.6045058099357119, 0.871271255862548, 0.8791657967061242, 0.7934833289986654, 0.9888791265207184, 0.9706762787468064, 0.8733441290333595, 0.6403209948820892, 0.8551276879026394, 0.9536583910857512, 0.9184923899130202, 0.9208372582170176, 0.8316099589523376, 0.643099391690106, 0.9031653478477, 0.9650120115926656, 1.000001, 0.9892508559258744, 0.9941448952916809, 0.9235551306985917, 0.566256475032775, 0.7981463728297761, 0.7661710902341343, 0.5478115614858369, 0.5366715578808826, 0.9937099760011534, 0.947305458734706, 0.7061739624864113, 0.632664426994852, 0.7844071694180496, 0.7822957055475842, 0.9210011821771559, 0.9814210778042468, 0.9883464603871701, 0.8785245747456101, 0.6410915628864056, 0.9417445450838873, 0.9148395820798534, 0.7414431123018874, 0.9831370219662836, 0.5681751106058592, 0.6975197788329144, 0.9304436298846032, 0.9080651470832222, 0.9479626980224463, 0.7655422996535071, 0.7222793424383136, 0.9047140048671268, 0.7692339988274349, 0.9056720213910202, 0.8401328958677551, 0.935910238631937, 0.8964678424255077, 0.7174836017663386, 0.9420768373311239, 0.5818671975613795, 0.9766372456264207, 0.9061683145719862, 0.5352212651732641, 0.9846161391806847, 0.5366715579422001, 0.9997081908303066, 0.9961340429658683], [0.7929438429757829, 0.890047810298795, 0.7981463729779636, 0.5575138626514827, 0.890047810298795, 0.546783082926976, 0.9426293431103252, 0.9805888986575477, 0.9541065748968002, 0.9641419496550984, 0.9653411009906433, 0.9471704682096699, 0.9043854607660946, 0.9503654556673259, 0.5244647940689041, 0.9511847604919269, 0.49320784958910835, 0.523286904978421, 0.9307586863011265, 0.8082894321359534, 0.7279929536661903, 0.9587721569540919, 0.9759439025870761, 0.8132134081417779, 0.5533988672209228, 0.9136095780900306, 0.9729452749887119, 0.8553292816449892, 0.8759081337741417, 0.7739690800901933, 0.5657382286069285, 0.9503654551205191, 0.9927302600468081, 0.9892508559258744, 1.000001, 0.970944622339192, 0.8659204122086419, 0.4811825723291006, 0.7211401060684398, 0.6809077576377276, 0.46457924780231596, 0.4529954892661519, 0.9707089632296853, 0.8932620809461166, 0.6260901831636073, 0.5515117807997518, 0.7102197071642038, 0.6993572831826446, 0.8832836138806966, 0.9987581969313929, 0.991322607330017, 0.9266632266960342, 0.5537317496684202, 0.9678348636662686, 0.9509721995443109, 0.65531674554741, 0.947305458734706, 0.48150820756179863, 0.6093189043713967, 0.9657396036527132, 0.842156160554462, 0.955115177314046, 0.6876803691196458, 0.6384466148044994, 0.9440299274196325, 0.690581191335016, 0.9549099578024127, 0.7661710902341344, 0.973357251093011, 0.9485215042338714, 0.6385409416014606, 0.9738098109363047, 0.494395625304868, 0.9361614668704711, 0.9397948723249222, 0.4520430725319572, 0.9994076524097208, 0.45082147844962034, 0.9924318196318188, 0.9803151318828702], [0.9056720212099343, 0.7979542572053208, 0.910792246349117, 0.7032003088148947, 0.9506655420492042, 0.69307734612859, 0.8421561594757422, 0.9892994399536714, 0.9333743181516005, 0.8789675640684992, 0.9909459286791273, 0.8999370826524187, 0.8150646612000845, 0.9832294538824614, 0.6693660481327371, 0.9889455339307199, 0.639166879090894, 0.6685833429291198, 0.8301984143191189, 0.9184923899130202, 0.848979200835378, 0.998758196945657, 0.9692686133297901, 0.9185953163608362, 0.6993572817742951, 0.8226354035755077, 0.9445585863751227, 0.9483741647057431, 0.9556500438153261, 0.8820315059222865, 0.707628479981951, 0.8748932016166286, 0.9361614668972114, 0.9941448952916809, 0.970944622339192, 1.000001, 0.9576917336432544, 0.626479470526151, 0.8517364264824312, 0.8135181216158378, 0.609318904301779, 0.5968860041199895, 0.9906567615704684, 0.966122965983131, 0.7674436141780664, 0.6964669231535316, 0.840605737831509, 0.8326983396284156, 0.9536583910857512, 0.9581957796335021, 0.9821767873743051, 0.8551276876217441, 0.6993572817842832, 0.9289714038193175, 0.8977505258070946, 0.793328576840908, 0.9899078218011133, 0.625209300013256, 0.7497718679790414, 0.9103218963616908, 0.9386697803728744, 0.950580936222336, 0.8227435800368241, 0.7802402887467682, 0.8862764259362775, 0.8257174469928545, 0.8726476650989109, 0.8881453318794409, 0.910792246349117, 0.8617646956923801, 0.7783840334867682, 0.9227476023181431, 0.6376312932999924, 0.9915370355081117, 0.8934664100951563, 0.5959893456707126, 0.9653022067024062, 0.5911706147041177, 0.9915370355081117, 0.9985329988260195], [0.9852960966087853, 0.6507614442440022, 0.9890805375237183, 0.8617646956923801, 0.9566019874766459, 0.8537876334602192, 0.6788635377136498, 0.9262665472711851, 0.8450226685009683, 0.727510242209888, 0.9427638871441312, 0.7867100688527975, 0.6685833431009952, 0.9501627844672621, 0.8282038778501624, 0.9606695393229536, 0.8078035180457811, 0.8329018325108223, 0.6701715706211052, 0.9890805374248367, 0.9494926134934556, 0.9694131713452206, 0.891853157155207, 0.9866392237524029, 0.8563585914087061, 0.6735772420847136, 0.8461209790554796, 0.9906567614148355, 0.9847868764168584, 0.9597803121253108, 0.8608029103609582, 0.7349509789630791, 0.8061657189838131, 0.9235551306985917, 0.8659204122086419, 0.9576917336432544, 1.000001, 0.7954184725509127, 0.9634899180111942, 0.9285642499368774, 0.7814141491554927, 0.7689982734396281, 0.935910238631937, 0.9783677740519668, 0.9092189742710038, 0.8555684877621987, 0.9549099578024127, 0.948374164610931, 0.9713972319428504, 0.8421561605544621, 0.8993931831565838, 0.721811135874018, 0.8553292805130985, 0.8210754892935263, 0.7783840336757536, 0.921059329110978, 0.9623540255183053, 0.7895212432611471, 0.8868394014689639, 0.786914306102906, 0.986224983924716, 0.8783476091241254, 0.9460957144294916, 0.9188376602373794, 0.7635309011946831, 0.9483741647057431, 0.7257624132459769, 0.9814210773665232, 0.7794782245011045, 0.711708658496835, 0.9162945475392199, 0.8022967776046682, 0.7981463715898677, 0.9810699902103793, 0.7819934410296444, 0.7687670924523635, 0.8559081166696781, 0.7543419329569745, 0.9147029685049636, 0.9441184825177704], [0.8491793451755638, 0.28189445163103466, 0.8528255164967674, 0.9805888986575476, 0.6766051696852483, 0.9879659605496937, 0.3003095631908695, 0.5668100810785938, 0.46780840745321783, 0.3375453377175808, 0.6177350348100714, 0.4013511253768517, 0.2944752661732089, 0.620154317960081, 0.9925901819110633, 0.6376312932999924, 0.998506579137977, 0.9786488416796406, 0.2910453356596147, 0.8546223481321029, 0.8580251010590019, 0.65531674554741, 0.5191696167996988, 0.8227435801895785, 0.9924318196318188, 0.2968086446568024, 0.4612388584433418, 0.8022967776046683, 0.7443809052662836, 0.8123123208708218, 0.9464286020401408, 0.3459398414815334, 0.41282534439128415, 0.566256475032775, 0.4811825723291006, 0.626479470526151, 0.7954184725509127, 1.000001, 0.9166301708321322, 0.9305906054155556, 0.9978313072635083, 0.9987581969313929, 0.6033030423337464, 0.7427600208945111, 0.9531171798185698, 0.9729530739854593, 0.9075119779764876, 0.9339123573872221, 0.7102197071642038, 0.4529954892661519, 0.524188906454492, 0.33934657294856513, 0.9915370357933595, 0.4331270112217358, 0.39078357154460586, 0.953023950939727, 0.662159789582539, 0.9939299029133446, 0.9643091368444606, 0.39536322386340383, 0.8121128773421016, 0.5107699142113188, 0.9294303357892997, 0.9646493904253428, 0.3770558907113388, 0.9319488196069945, 0.33632964960296785, 0.8895483993060269, 0.38556827160791074, 0.32447030271554306, 0.9448212289610791, 0.40985707276133093, 0.9889455339307199, 0.6968385093601496, 0.3988249385760727, 0.9981577815258256, 0.46776799038525246, 0.9820822947627474, 0.5517374542356164, 0.5975593831730909], [0.9876905309141838, 0.5019076491110522, 0.9892508559541311, 0.9634899180111942, 0.8945157908977818, 0.9585559741907868, 0.5148171793984202, 0.8083501917925865, 0.7170860535837188, 0.5662564750327751, 0.8315559459222926, 0.646509885280212, 0.5181949114347859, 0.8546223482053367, 0.9305906046659549, 0.8676796086203599, 0.9277298355911832, 0.9460957144294916, 0.5103150240726873, 0.9788950620078075, 0.9783677742755339, 0.8726476650989109, 0.7669201447000606, 0.9778864357683509, 0.9542425534059656, 0.5208895532826284, 0.71021230085122, 0.9527258000509565, 0.939870029358219, 0.9646169109016713, 0.9580235135466726, 0.5813862817454238, 0.6501649347595851, 0.7981463728297761, 0.7211401060684398, 0.8517364264824312, 0.9634899180111942, 0.9166301708321322, 1.000001, 0.9678348636662686, 0.9097047997824904, 0.8983121462578991, 0.8202273415957493, 0.9136095785519435, 0.985910315702532, 0.9594427285897599, 0.9963235506461567, 0.9880800364714372, 0.9180180643657108, 0.6918801487655181, 0.7687670924304046, 0.5744359128766842, 0.9516638234617729, 0.6809077576377276, 0.6346188816017799, 0.9760816314384171, 0.865994881960094, 0.9036999267079907, 0.9552195199401194, 0.6391668791547934, 0.9531391528903517, 0.7592911945886477, 0.9976327141194596, 0.9888791265207184, 0.6189900207415426, 0.9985329988545414, 0.5683032505376139, 0.996177971684237, 0.6267149703485032, 0.5537317496763284, 0.9879659602654732, 0.6548735667654578, 0.9056807365216303, 0.8982891006325493, 0.6436006456417652, 0.8993931831180487, 0.7093053332359767, 0.8706567291674345, 0.7854369282926972, 0.830198414319119], [0.9318160173412694, 0.4269079144528832, 0.941744545379785, 0.9364506914083153, 0.8018872916124624, 0.9417445453797849, 0.48150820617658413, 0.7462208397804428, 0.6280510278022696, 0.5181949114347859, 0.8209510711651135, 0.561301672617269, 0.44419701070147394, 0.7802778322494437, 0.9626935892440318, 0.8007783251324809, 0.9289714040581319, 0.9117391715058678, 0.4568223372066142, 0.9719501792569903, 0.8976956549442793, 0.8389338837299651, 0.6916743742765072, 0.9138293659549362, 0.966122965983131, 0.450552633538778, 0.6322460747292632, 0.9507295636198527, 0.8665142403597657, 0.8762621758772672, 0.8976956549442793, 0.5125424633654335, 0.6085407814672943, 0.7661710902341343, 0.6809077576377276, 0.8135181216158378, 0.9285642499368774, 0.9305906054155556, 0.9678348636662686, 1.000001, 0.9113737258745088, 0.9124456054704244, 0.8083501905368266, 0.9190448847099422, 0.9441936269033206, 0.9213690070486993, 0.9441936267403439, 0.9949104026428619, 0.8333260128490286, 0.6529565861965175, 0.7102197058157069, 0.4943792817860622, 0.9693235963947505, 0.6022259142213657, 0.5533313245794166, 0.996958033281402, 0.8568737124336376, 0.9426293438696233, 0.9926556414590448, 0.5657382272398037, 0.9585559741907868, 0.6705316930625381, 0.9573477986677983, 0.9759439025870761, 0.5371426260816224, 0.9639912259152785, 0.5077076531777063, 0.9706885353921972, 0.5621339689524845, 0.493824346792428, 0.941671309764413, 0.5841586604738693, 0.9515875219658492, 0.8759994326939391, 0.5554257876396195, 0.9080666069816553, 0.664553213227586, 0.9279390663872726, 0.7526516796802135, 0.785436928438525], [0.8429795013963106, 0.2751196759323921, 0.8446920923214737, 0.9831370218820373, 0.672009497615738, 0.9888791265630876, 0.28650871809862594, 0.5537317496684202, 0.46023451395785614, 0.3247875241704946, 0.5958666704003256, 0.3937024800764116, 0.2871339503277157, 0.6100063096273923, 0.9827770477888611, 0.6261499180561467, 0.9987581969313929, 0.9852960966087853, 0.2804439791643568, 0.8376106505484122, 0.8603378507356308, 0.6376312932999924, 0.5085917713266477, 0.8170111721147368, 0.9859103156039672, 0.28875726475627866, 0.45146579536414677, 0.7821376597654497, 0.7371640914257961, 0.813213408141778, 0.9556500440473504, 0.3363296484225432, 0.3974191341689649, 0.5478115614858369, 0.46457924780231596, 0.609318904301779, 0.7814141491554927, 0.9978313072635083, 0.9097047997824904, 0.9113737258745088, 1.000001, 0.998506579137977, 0.5816059986104581, 0.7196982120376382, 0.9542425535149928, 0.9784187618323255, 0.9054070097805406, 0.9196065611514341, 0.7046289255063078, 0.4365262316023113, 0.5104301134779318, 0.33190946488067247, 0.9835416855618442, 0.4237733910066577, 0.3825371029420054, 0.9379526241084108, 0.6403193300270599, 0.9850875599915294, 0.9478684495712654, 0.3855682703434087, 0.7909793513037275, 0.5030029330921157, 0.9262665464184792, 0.9585559741634068, 0.36916111364511467, 0.9273812238931931, 0.32556969896833254, 0.8786372756610793, 0.37438682605439644, 0.31390647776929476, 0.9460957144294916, 0.3993356211547918, 0.9773690964357997, 0.677690891417199, 0.39181302764774834, 0.9994076524386765, 0.45204307112784264, 0.9700972180378603, 0.5334540050737262, 0.5813862816956041], [0.827021891633969, 0.26179604375710935, 0.8301984144021167, 0.9741448259627985, 0.6507614442440024, 0.9821767878680736, 0.2779257096227722, 0.5382471434715089, 0.4420630946696664, 0.3139064788981761, 0.5875821516025599, 0.3770558907113387, 0.27371701343560506, 0.5921935501381798, 0.9867042912713208, 0.6093189043713968, 0.9967022734971914, 0.9750762960056641, 0.2696045799561989, 0.8301984143191191, 0.8399564343351101, 0.6257264657085942, 0.49172714203521173, 0.7996476566350597, 0.985134356144572, 0.27576150815616224, 0.4349540583684174, 0.7752710175736686, 0.7185428803106965, 0.7916206328523818, 0.939568840012195, 0.3227189854588145, 0.3863806315275019, 0.5366715578808826, 0.4529954892661519, 0.5968860041199895, 0.7689982734396281, 0.9987581969313929, 0.8983121462578991, 0.9124456054704244, 0.998506579137977, 1.000001, 0.5731850825730326, 0.7138592270119638, 0.9416259999915035, 0.9671405892773698, 0.8903125996867556, 0.9157348938755423, 0.6843800613762834, 0.4254010708741372, 0.4958843683754252, 0.3169492444119047, 0.9839502616115227, 0.40755296837131544, 0.3665894518477245, 0.9373301393880024, 0.632143172181082, 0.9913534077599165, 0.9511847604919269, 0.3706068876607569, 0.7854369282926973, 0.4842807990115167, 0.9135348588967772, 0.9515875219658492, 0.3533521095722513, 0.9157348939670913, 0.31315232479292116, 0.8682015394444024, 0.3607323221131422, 0.30175775561636664, 0.9324811864121715, 0.38452631798102516, 0.9847868762340184, 0.6674066457021054, 0.3747952964016635, 0.9996993738539482, 0.439985200876972, 0.9809409968931427, 0.5223010111783295, 0.56817511058963], [0.8680205754697413, 0.7709072603991348, 0.8772693611325483, 0.6673115392265979, 0.90249938875792, 0.6605905476884157, 0.8559081167185741, 0.9678348638333261, 0.8953558763500565, 0.8785837393206907, 0.9997081908303066, 0.8658037945923526, 0.7895853528653894, 0.950178600675944, 0.6543323093753057, 0.9598951740610083, 0.6118200072718938, 0.6295429690399648, 0.8249265111807822, 0.9054070097805405, 0.797619084604559, 0.9899078216597357, 0.9405221100334585, 0.8785245750843788, 0.6776908901296331, 0.8008828325416871, 0.9156539596344878, 0.943267257580099, 0.9156539591076527, 0.8292364653200441, 0.66017914284039, 0.8554121041184433, 0.9386697803728744, 0.9937099760011534, 0.9707089632296853, 0.9906567615704684, 0.935910238631937, 0.6033030423337464, 0.8202273415957493, 0.8083501905368266, 0.5816059986104581, 0.5731850825730326, 1.000001, 0.971163597880288, 0.7279929536661902, 0.6565643828664379, 0.8001917036540342, 0.8170111721147367, 0.9087816898301789, 0.9606695399309627, 0.9657396039861048, 0.8250985077184942, 0.6799359853700916, 0.9001059486261919, 0.8670674513843507, 0.7808856929956647, 0.9952664430796314, 0.6111077713874596, 0.7416103278067842, 0.8865090065457043, 0.9361614668972115, 0.9117728027197001, 0.78616511098217, 0.7524730775688903, 0.8550701048933382, 0.791620631668158, 0.8608029113515098, 0.8624746001290629, 0.8948534866850602, 0.8505639926344526, 0.7375813512221954, 0.9010605340332303, 0.6267149689061442, 0.985910315362177, 0.8567402842583898, 0.5704342592961993, 0.9624429559965711, 0.5829178497886598, 0.9916819364267834, 0.9870888566551065], [0.9328676239126862, 0.64739535202603, 0.9432326655245087, 0.7919786939378749, 0.9029508579415771, 0.7889474566628566, 0.7263627539012306, 0.9208372582170177, 0.820830146094246, 0.7577517517298483, 0.9765638366703745, 0.7709072589492575, 0.6671632202712535, 0.9245599862322813, 0.7925537290574686, 0.9399062086711858, 0.748411629993901, 0.7554732048047625, 0.694532593604914, 0.9755370828413759, 0.8709080884683414, 0.9768755220178191, 0.8785245750843789, 0.9329177406059809, 0.8105881912265771, 0.6770143391412975, 0.8353062584665465, 0.9934725732019847, 0.9387405397813926, 0.8844024183072596, 0.7731406170041341, 0.7406369951296351, 0.8389338837299651, 0.947305458734706, 0.8932620809461166, 0.966122965983131, 0.9783677740519668, 0.7427600208945111, 0.9136095785519435, 0.9190448847099422, 0.7196982120376382, 0.7138592270119638, 0.971163597880288, 1.000001, 0.8388928630643759, 0.7787553139397978, 0.8903554404817455, 0.9223757165510437, 0.9203279688806524, 0.8738948612877401, 0.9031653478477, 0.7135320613604602, 0.8135181214880334, 0.8114704615741627, 0.7677699705217879, 0.8975696872133528, 0.9892508559258744, 0.7533875180448144, 0.8680057778956042, 0.7855753363861891, 0.9920588949629028, 0.8507745869663845, 0.8854193169024964, 0.8684067480979857, 0.7526268004569808, 0.8918317110032256, 0.7415239718343285, 0.944558586604454, 0.7889474566628567, 0.728439470032337, 0.8448682111945114, 0.8033859420867072, 0.7684782139324091, 0.9905644276984031, 0.7626078270195646, 0.7102197071642038, 0.8802363216607662, 0.7277290166002991, 0.9398700286011435, 0.9511847598899209], [0.9585559748526101, 0.42492169401934665, 0.9570440642176569, 0.9924318193746612, 0.8412071498463805, 0.9876905305732143, 0.4233418421698065, 0.7250535577274458, 0.639166880525135, 0.47503717575875287, 0.7406369963654309, 0.566256475032775, 0.43932424309742957, 0.7822957055475843, 0.9494926134934556, 0.7945221296503981, 0.96534110043522, 0.9855046774567363, 0.42437905321139807, 0.9331752706679337, 0.9707089632296853, 0.7909793527245458, 0.6850146828244675, 0.9444023945969477, 0.9729530736495775, 0.44021677098296713, 0.626856312703957, 0.8918317110032256, 0.8897490182029686, 0.9447454760838495, 0.9913226071589054, 0.49618265449778304, 0.5546714496213748, 0.7061739624864113, 0.6260901831636073, 0.7674436141780664, 0.9092189742710038, 0.9531171798185698, 0.985910315702532, 0.9441936269033206, 0.9542425535149928, 0.9416259999915035, 0.7279929536661902, 0.8388928630643759, 1.000001, 0.9924318193463136, 0.9895483400579346, 0.9686952482765595, 0.866636691346697, 0.5958666718059724, 0.6809077576377276, 0.494395625304868, 0.968283688413229, 0.5974246466158821, 0.5527337025228132, 0.9639912259707432, 0.7802778334166991, 0.9308144778176868, 0.9493470308972732, 0.5537733740539917, 0.8934664100951563, 0.6832148638073127, 0.9946681270124684, 0.9925113963609085, 0.5378022797773729, 0.9934725732019847, 0.48078487276064663, 0.9677947026990088, 0.538247143471509, 0.46681960314947407, 0.9996330478037665, 0.5681751106058592, 0.9266632266960341, 0.8202273427283812, 0.5648960550462089, 0.9447454753772041, 0.6149552794171624, 0.8973991537515404, 0.6924995209641136, 0.7443809052662836], [0.9180092294088752, 0.36108499550466894, 0.9157348938755423, 0.9987980375065427, 0.7802402888136281, 0.9960328141985201, 0.3574466669549387, 0.6521227363496492, 0.5672789396833706, 0.40571901449483755, 0.66992015183932, 0.49528833394939886, 0.3741898849260774, 0.713154560456028, 0.9584954601846132, 0.7257624118057775, 0.9837420093154092, 0.9988332742523282, 0.3587852818022779, 0.889145698392095, 0.9409303470235637, 0.721811135874018, 0.6118431839377025, 0.8997312738755492, 0.9782252117128118, 0.37461202854993886, 0.5537317496684202, 0.8388809215611794, 0.8331992272842118, 0.9054070107182315, 0.995161114306606, 0.4266820535519838, 0.48152210836213866, 0.632664426994852, 0.5515117807997518, 0.6964669231535316, 0.8555684877621987, 0.9729530739854593, 0.9594427285897599, 0.9213690070486993, 0.9784187618323255, 0.9671405892773698, 0.6565643828664379, 0.7787553139397978, 0.9924318193463136, 1.000001, 0.9650120115926656, 0.9447933926043107, 0.8078035193006918, 0.5216766792821244, 0.6067138215360328, 0.42616919773306944, 0.972945274988712, 0.5248197200738476, 0.48176163036905784, 0.9476184487825631, 0.7121967328464541, 0.947618448782563, 0.9402981699892551, 0.48194272929112186, 0.8423682178943457, 0.6115213321288143, 0.9748036761770029, 0.9820427260871892, 0.4675219273779366, 0.9730466881585197, 0.41161690014414326, 0.9324811862390427, 0.4663636582691036, 0.3984960235036343, 0.9894739606392442, 0.4956235151075558, 0.939794871962527, 0.7544030258727049, 0.4943956253542944, 0.9709282760632701, 0.5404494729263626, 0.9172918727298288, 0.6186053856483408, 0.672009497462177], [0.9892508559541311, 0.5080186497123352, 0.9876905309141838, 0.96501201162023, 0.9054070107182315, 0.9570440635568774, 0.5043603667769595, 0.8053783332522916, 0.7250535576549599, 0.5600339681261374, 0.8112435849269057, 0.6536932213907453, 0.5234014555399245, 0.8568737124336376, 0.9136095780900306, 0.8672231774928498, 0.9223757157019197, 0.9515875219386682, 0.5073698910012295, 0.9630574108157078, 0.991322607330017, 0.8603378507356308, 0.7689404716706424, 0.9814948518823543, 0.9427638864932113, 0.5244647940689041, 0.7135835397447646, 0.9333743184581986, 0.944331408574056, 0.9784187622263889, 0.9707089627270247, 0.5829178497886598, 0.6403193300270598, 0.7844071694180496, 0.7102197071642038, 0.840605737831509, 0.9549099578024127, 0.9075119779764876, 0.9963235506461567, 0.9441936267403439, 0.9054070097805406, 0.8903125996867556, 0.8001917036540342, 0.8903554404817455, 0.9895483400579346, 0.9650120115926656, 1.000001, 0.9720937805642775, 0.9262665472711852, 0.6806861435159555, 0.7643303792603792, 0.5808184390067614, 0.9382393848577507, 0.6848602270120407, 0.6403209948820892, 0.9572625983897304, 0.8457308198993186, 0.886276426214747, 0.9328676238296958, 0.641525414851699, 0.9318160173412693, 0.7669201446343422, 0.9981577815258256, 0.9821380047575198, 0.625209299959681, 0.996958033281402, 0.5668100810785939, 0.9883464605577681, 0.6257264657085942, 0.5522768656222178, 0.9926556414590448, 0.6559081171557283, 0.8854193160873939, 0.8828260513770969, 0.6521227363496492, 0.8932620809461165, 0.7000359670597596, 0.8484958715460678, 0.7719165038539626, 0.8210754892935263], [0.9604032637566186, 0.4563812830420903, 0.9671405892773698, 0.9556500438153261, 0.8423682191885102, 0.9570323641714312, 0.49562351510755576, 0.7739318402029625, 0.6647582590016003, 0.5382471434715089, 0.8292628785813023, 0.5958441001441857, 0.47344671963723695, 0.8132134081417779, 0.9585559741907868, 0.831088194420449, 0.9373301386329728, 0.9338279395373916, 0.47847749544989304, 0.9814948518823543, 0.9359175636091379, 0.8566805061729259, 0.7238214385592108, 0.9452358907827667, 0.9700692109302258, 0.4784913088513972, 0.6647747786881434, 0.957691733697965, 0.900521555173369, 0.9168089756047084, 0.9293848891230635, 0.5404494730652981, 0.626856312703957, 0.7822957055475842, 0.6993572831826446, 0.8326983396284156, 0.948374164610931, 0.9339123573872221, 0.9880800364714372, 0.9949104026428619, 0.9196065611514341, 0.9157348938755423, 0.8170111721147367, 0.9223757165510437, 0.9686952482765595, 0.9447933926043107, 0.9720937805642775, 1.000001, 0.8712235858696089, 0.670625102146724, 0.7361120332365385, 0.5263371994759887, 0.9709446217528108, 0.6347126441887531, 0.586314215066084, 0.9967022733251512, 0.8650746637959387, 0.9358096868305948, 0.9859103153621771, 0.5958666704003253, 0.9626935892440318, 0.7076284799819509, 0.9809409968931427, 0.989299440080833, 0.5701781938308662, 0.9853751014817294, 0.5324524832495501, 0.9879659605496937, 0.5888643998386969, 0.5181949114347858, 0.9678348636662686, 0.6134317493712939, 0.9418502557024989, 0.8897490182029687, 0.5910265435934883, 0.9135348588967772, 0.6846028780754588, 0.9135348588967772, 0.7689404716706422, 0.8068325697453633], [0.9676658992797417, 0.7411645012751994, 0.9639633955075129, 0.8053783332522917, 0.9981577815258256, 0.7895212432611471, 0.7121967315761579, 0.9549099578024127, 0.9188376602111339, 0.774182732605692, 0.9127688537174099, 0.8680057778956042, 0.7553721942185863, 0.9831370218820373, 0.7308989864054356, 0.983541685222307, 0.7308192854126356, 0.7818254191511741, 0.7308192854126355, 0.9300826290288279, 0.9507295636198528, 0.9572625983897304, 0.9418502557024989, 0.9796521626103328, 0.7719165038539627, 0.7552018743278336, 0.908679669656666, 0.9329177406059809, 0.9976327141194598, 0.9748036761770029, 0.8322603099245292, 0.8061657177314466, 0.8344186503987882, 0.9210011821771559, 0.8832836138806966, 0.9536583910857512, 0.9713972319428504, 0.7102197071642038, 0.9180180643657108, 0.8333260128490286, 0.7046289255063078, 0.6843800613762834, 0.9087816898301789, 0.9203279688806524, 0.866636691346697, 0.8078035193006918, 0.9262665472711852, 0.8712235858696089, 1.000001, 0.861866278875369, 0.9305906046659549, 0.8081071793113027, 0.7670579020959427, 0.8892141339424606, 0.8569381230690601, 0.8323485740265746, 0.9259769639741249, 0.6889242987423111, 0.7863581810850411, 0.8553292805130984, 0.921316373907343, 0.9443314078133869, 0.9054070107182314, 0.8537054942643956, 0.8452001945018879, 0.9029602530670088, 0.7882759476223784, 0.9337319166558052, 0.8389338837299651, 0.7752710162800838, 0.8781750804385908, 0.8650746627009249, 0.6931511285697601, 0.9529933941898452, 0.8672231774928496, 0.6876803691196459, 0.8801094734219927, 0.644438333453385, 0.9148395820798534, 0.9504919557786322], [0.7655422996535071, 0.9011168890930842, 0.77091265590625, 0.5276712827543978, 0.8701040260218863, 0.5171442849273804, 0.9576917330367385, 0.9709282760632701, 0.9493470306539972, 0.9748036761770029, 0.9542425541738379, 0.9479626980224463, 0.9148395820798534, 0.9357742396490756, 0.4960707761873939, 0.9359102393319737, 0.46457924780231596, 0.49382434800814023, 0.9447454753772041, 0.7823545112384233, 0.6992214653677449, 0.9441184825177704, 0.9688449666059812, 0.7867100688527975, 0.524188906454492, 0.9245872256837271, 0.9700972180378603, 0.832260309924529, 0.8531893732929832, 0.7467476955784372, 0.5358202494995356, 0.9578798839473318, 0.9973018132082683, 0.9814210778042468, 0.9987581969313929, 0.9581957796335021, 0.8421561605544621, 0.4529954892661519, 0.6918801487655181, 0.6529565861965175, 0.4365262316023113, 0.4254010708741372, 0.9606695399309627, 0.8738948612877401, 0.5958666718059724, 0.5216766792821244, 0.6806861435159555, 0.670625102146724, 0.861866278875369, 1.000001, 0.9852960968922376, 0.9328676234832949, 0.5246619455290434, 0.967112095569388, 0.9531659047471582, 0.626479470552993, 0.9330002009318159, 0.4539157915543712, 0.5808184390648278, 0.9686952480536183, 0.81873254716345, 0.9471704684821541, 0.6578436562413731, 0.6085407829028394, 0.9471704682096699, 0.6608172780840232, 0.964309136345114, 0.7381066811109726, 0.9782116807376071, 0.9589766640497229, 0.6083347948525962, 0.9759439021816675, 0.4668196031494741, 0.9190448847099422, 0.9402981698269507, 0.42437905321139824, 0.9990321064711599, 0.42437905321139824, 0.9857269376953917, 0.9694131713452206], [0.8421561593915491, 0.890222840778837, 0.8442477534661325, 0.610006309566408, 0.9382393848577506, 0.5968860027116938, 0.9056720213910201, 0.9970769434855367, 0.9783677740519668, 0.9426293438696233, 0.9620824599062439, 0.9627885384509641, 0.9036999267079906, 0.9810699899273403, 0.5622272707347414, 0.9796521626103327, 0.5392595648968068, 0.5776834915016934, 0.9097731838422779, 0.838933883729965, 0.788901119116043, 0.9719501792569902, 0.9952008113653046, 0.8629963378397446, 0.5959893442304851, 0.9092189742710038, 0.9878875419842342, 0.8768024329666986, 0.9210593291109781, 0.833997265847411, 0.6260901817587095, 0.947305458734706, 0.9755370828413759, 0.9883464603871701, 0.991322607330017, 0.9821767873743051, 0.8993931831565838, 0.524188906454492, 0.7687670924304046, 0.7102197058157069, 0.5104301134779318, 0.4958843683754252, 0.9657396039861048, 0.9031653478477, 0.6809077576377276, 0.6067138215360328, 0.7643303792603792, 0.7361120332365385, 0.9305906046659549, 0.9852960968922376, 1.000001, 0.9337319166558052, 0.5947362848992181, 0.9805888986575476, 0.962354025019971, 0.6905811899443397, 0.9503654551205191, 0.5181949114347859, 0.6420061463154682, 0.9707089627270246, 0.8624746009740775, 0.9832294538824614, 0.7396618098087169, 0.6850146828244675, 0.9549484332398397, 0.7407746217094858, 0.9437637124816374, 0.8081071793113027, 0.9700692114883696, 0.9358096868305948, 0.6941722497585516, 0.9778864356705884, 0.5289818151740361, 0.9501627836619625, 0.9578798843882361, 0.49618265449778304, 0.9916819363276417, 0.4829357835991823, 0.9897897663940901, 0.990866477066499], [0.666554341248951, 0.9926556417587913, 0.6634052860054779, 0.42437905189286523, 0.8331992260976276, 0.4091490979906895, 0.9302325375875801, 0.9144367845257422, 0.9712366008967767, 0.9671120956250323, 0.8157603022774775, 0.9927302600468081, 0.9952664433086879, 0.8855455057507485, 0.3652556166854311, 0.871271255862548, 0.3551628607338761, 0.39966594686427115, 0.9738098112164527, 0.6373996185962534, 0.6267149689061442, 0.8314759434945268, 0.9473054586264714, 0.6968385079568722, 0.3988249371886773, 0.9941448952348878, 0.9739979965376376, 0.6801257387437405, 0.7802402874448922, 0.6846028766574318, 0.4540864216068982, 0.9952008112515978, 0.9471704682096699, 0.8785245747456101, 0.9266632266960342, 0.8551276876217441, 0.721811135874018, 0.33934657294856513, 0.5744359128766842, 0.4943792817860622, 0.33190946488067247, 0.3169492444119047, 0.8250985077184942, 0.7135320613604602, 0.494395625304868, 0.42616919773306944, 0.5808184390067614, 0.5263371994759887, 0.8081071793113027, 0.9328676234832949, 0.9337319166558052, 1.000001, 0.3960764014515273, 0.9839502612152314, 0.9950420325173037, 0.4791974591325431, 0.7895853518205003, 0.3282819710248383, 0.4312945019531549, 0.9916819363276418, 0.6607680125815648, 0.9518021324796213, 0.5496263847498192, 0.4855565583177161, 0.9973018132082683, 0.5478115614858369, 0.9870888564718391, 0.6118200071146108, 0.98663922358331, 0.986224983924716, 0.5090890008737783, 0.9867042909874633, 0.33524028574645015, 0.7888298089431853, 0.9924318193746612, 0.3186692506633, 0.9385644258585919, 0.2970191559634139, 0.8865090062038568, 0.880109473421993], [0.8945157897797399, 0.33365554571623324, 0.89997874827266, 0.9829425385119059, 0.7337063090350046, 0.9892342016543247, 0.361084994247969, 0.6367212852954709, 0.5303084694855904, 0.40014690845151873, 0.6941722497585516, 0.46166027433501505, 0.34794889889768427, 0.6860797985252549, 0.9976327141194596, 0.7046289241278842, 0.9905644276984031, 0.9729452750446919, 0.34802639289084236, 0.90949968126833, 0.8900478102987951, 0.7277290152185572, 0.5862145585778963, 0.870694424193904, 0.9996993738539482, 0.3513392490756266, 0.5262848691340043, 0.8659204111125576, 0.8011988199712892, 0.8520110109080938, 0.9479626983744525, 0.405719013303648, 0.48205142133200823, 0.6410915628864056, 0.5537317496684202, 0.6993572817842832, 0.8553292805130985, 0.9915370357933595, 0.9516638234617729, 0.9693235963947505, 0.9835416855618442, 0.9839502616115227, 0.6799359853700916, 0.8135181214880334, 0.968283688413229, 0.972945274988712, 0.9382393848577507, 0.9709446217528108, 0.7670579020959427, 0.5246619455290434, 0.5947362848992181, 0.3960764014515273, 1.000001, 0.49680287005314067, 0.4513611067118526, 0.9839502612152314, 0.7371640914257961, 0.9908664773515538, 0.989299440080833, 0.4580257604109525, 0.875012283363363, 0.5743075436065885, 0.9570323641714312, 0.985910315362177, 0.43651573378857256, 0.9607804635055829, 0.396792293194701, 0.9339123574672502, 0.4493328999783839, 0.38391981131977426, 0.962082459906244, 0.4740027841672899, 0.9905644275852261, 0.7684782138994832, 0.45820308362930995, 0.9821767878680736, 0.5392190314496612, 0.976875522411261, 0.6264794690843339, 0.6701715691944107], [0.7680739663574202, 0.9562530630596988, 0.7661710901575377, 0.524188906454492, 0.9073146262775438, 0.5085917712758021, 0.921001182177156, 0.9707089627270247, 0.9955042745470354, 0.9627885384509641, 0.8935624122437086, 0.996958033281402, 0.9641419496550984, 0.9512299452316427, 0.4632941530868155, 0.9418502564611694, 0.45011040564568505, 0.496219952879422, 0.9501627843179908, 0.7439246157398736, 0.7250535563507838, 0.9113737258745088, 0.9888791265207184, 0.7952391231012181, 0.4994988980679355, 0.9652296497585487, 0.9987581969313929, 0.7832748146672057, 0.868201538333031, 0.778599843060646, 0.5517374542907755, 0.9851343557478038, 0.969248216097246, 0.9417445450838873, 0.9678348636662686, 0.9289714038193175, 0.8210754892935263, 0.4331270112217358, 0.6809077576377276, 0.6022259142213657, 0.4237733910066577, 0.40755296837131544, 0.9001059486261919, 0.8114704615741627, 0.5974246466158821, 0.5248197200738476, 0.6848602270120407, 0.6347126441887531, 0.8892141339424606, 0.967112095569388, 0.9805888986575476, 0.9839502612152314, 0.49680287005314067, 1.000001, 0.9967022733251512, 0.5863142150660842, 0.8749000487873596, 0.42184886144457884, 0.5358202481430501, 0.9970769434855367, 0.7652465081106505, 0.988358940067722, 0.6548735667654578, 0.5911706146028013, 0.9941448952916809, 0.6536932213907453, 0.9767844728325858, 0.7185428788129883, 0.9916819363276418, 0.97195017914594, 0.6122112220439108, 0.9976327141194598, 0.4300024264869642, 0.8772693608569089, 0.995161114306606, 0.4091490992854444, 0.9748011405083415, 0.3865467231328332, 0.9464286017427714, 0.9469045089458089], [0.7250535563507837, 0.9759767641746517, 0.7222793410669188, 0.4803152866026466, 0.8786372746370974, 0.4645792464390728, 0.9253251433688217, 0.9485215042338714, 0.9892508555843662, 0.9661541487686697, 0.8592581222215255, 0.999407652381174, 0.9814210778042468, 0.9255009829359927, 0.4186898013445265, 0.9135348588967771, 0.40755296708161143, 0.45391579019630174, 0.9623540255183053, 0.6968931305519616, 0.6842427505696628, 0.8772693611325483, 0.9739979965376375, 0.7540107099570063, 0.45422006150598204, 0.9811997888396364, 0.9915370355081117, 0.7375813512221953, 0.8322603087273958, 0.7402736479590718, 0.5098549188801026, 0.9926514636349426, 0.960735983255652, 0.9148395820798534, 0.9509721995443109, 0.8977505258070946, 0.7783840336757536, 0.39078357154460586, 0.6346188816017799, 0.5533313245794166, 0.3825371029420054, 0.3665894518477245, 0.8670674513843507, 0.7677699705217879, 0.5527337025228132, 0.48176163036905784, 0.6403209948820892, 0.586314215066084, 0.8569381230690601, 0.9531659047471582, 0.962354025019971, 0.9950420325173037, 0.4513611067118526, 0.9967022733251512, 1.000001, 0.5380400383723015, 0.8372816476479773, 0.3790662174967488, 0.48824557982832545, 0.9981225685814984, 0.7186954317861187, 0.9765638366703744, 0.6093189043713966, 0.5444862921457543, 0.9996330478037665, 0.6076722905572152, 0.9837420095984145, 0.6720094960702346, 0.9922217724915141, 0.9805888986575476, 0.5676628382878601, 0.9960328142980966, 0.38654672190960354, 0.8388809205475878, 0.9985065790805264, 0.3683572678243254, 0.9603616844747641, 0.3451945910511361, 0.9210011821771559, 0.9191200544309124], [0.9367103258963757, 0.41169909139997757, 0.9445585866044541, 0.9602382980894256, 0.8008828325416871, 0.9646169105131667, 0.4541888312308039, 0.7292279313761003, 0.6159126994068924, 0.4938384997212541, 0.7939848088020527, 0.547249750996143, 0.4282283668855421, 0.7695412109557438, 0.9765638366703745, 0.7889011191160431, 0.9531171798185698, 0.939906209103817, 0.4349540583684174, 0.9646493904253429, 0.913095499315984, 0.8194097918310556, 0.6766051683227164, 0.9178657174114495, 0.9821767874724966, 0.43337712507609016, 0.6165164553759828, 0.93637259838932, 0.8649165413264239, 0.887809117885805, 0.9259769639741249, 0.49382434679242804, 0.5822609700526817, 0.7414431123018874, 0.65531674554741, 0.793328576840908, 0.921059329110978, 0.953023950939727, 0.9760816314384171, 0.996958033281402, 0.9379526241084108, 0.9373301393880024, 0.7808856929956647, 0.8975696872133528, 0.9639912259707432, 0.9476184487825631, 0.9572625983897304, 0.9967022733251512, 0.8323485740265746, 0.626479470552993, 0.6905811899443397, 0.4791974591325431, 0.9839502612152314, 0.5863142150660842, 0.5380400383723015, 1.000001, 0.832260309924529, 0.9588442284976872, 0.9961779715691965, 0.5480404504610971, 0.9437637116809894, 0.6593835119902586, 0.9706762787468064, 0.988945534100208, 0.5220816245318084, 0.9759439024186191, 0.4867624953670388, 0.9726083274923422, 0.5418731997749141, 0.47289954740617507, 0.9610164166582589, 0.5656945672884541, 0.9646493903840118, 0.856680506197396, 0.5423356774686472, 0.9342351488595441, 0.6397917667437478, 0.9418502564611694, 0.7275102408493418, 0.7653077056656362], [0.9043854614945868, 0.7292739878235625, 0.913609578825953, 0.7234193689677163, 0.9157046237708627, 0.717483601981526, 0.8078035180457811, 0.9594104238908747, 0.8770592582394755, 0.8361637899123886, 0.9973018132082684, 0.8382677341093312, 0.7484642951105309, 0.9516037447907593, 0.7122973754324947, 0.9631475677126999, 0.6703446177633209, 0.6860820057567025, 0.7783840336757536, 0.9409303470235637, 0.8382610154210626, 0.9936398650536419, 0.9266632270268967, 0.9113392044366933, 0.734950978963079, 0.7588310945112209, 0.8940439944852837, 0.9705797718555895, 0.9367826219583922, 0.863518063822171, 0.7135320629077003, 0.8176102977918392, 0.9054070097805406, 0.9831370219662836, 0.947305458734706, 0.9899078218011133, 0.9623540255183053, 0.662159789582539, 0.865994881960094, 0.8568737124336376, 0.6403193300270599, 0.632143172181082, 0.9952664430796314, 0.9892508559258744, 0.7802778334166991, 0.7121967328464541, 0.8457308198993186, 0.8650746637959387, 0.9259769639741249, 0.9330002009318159, 0.9503654551205191, 0.7895853518205003, 0.7371640914257961, 0.8749000487873596, 0.8372816476479773, 0.832260309924529, 1.000001, 0.6698190359267726, 0.7954782646889146, 0.8554121031833125, 0.9652296503694439, 0.8992834125430151, 0.8344186514549975, 0.8053045635379142, 0.8238946910922542, 0.8399564343351101, 0.8202273418300372, 0.9036999269015888, 0.8608029103609584, 0.8085809620878103, 0.7888298103820292, 0.8712235849673203, 0.6850146828342509, 0.9961340430512283, 0.8297419221692942, 0.6292985815328113, 0.9373301387668412, 0.6413325569594197, 0.9788424753083657, 0.9820427262554943], [0.8315559459222928, 0.2723343876148335, 0.8385231669259746, 0.9602382980894256, 0.6536590325815994, 0.9713972319428504, 0.3025526875743639, 0.5588144979594856, 0.45255522908731466, 0.33595064570540906, 0.6257264657085942, 0.3882648272146253, 0.2852594216059939, 0.6064628652970827, 0.997301813380412, 0.6260901817587095, 0.9870888566551065, 0.9531659049665255, 0.2877172906152203, 0.8563585925786502, 0.8278055591180117, 0.6548735667654578, 0.5077076531777063, 0.8034915875903047, 0.9890805378082594, 0.2886892078999444, 0.44983693448132556, 0.8082894321359535, 0.725979648899317, 0.782643128204377, 0.913095499315984, 0.33830235702529454, 0.4131047195906681, 0.5681751106058592, 0.48150820756179863, 0.625209300013256, 0.7895212432611471, 0.9939299029133446, 0.9036999267079907, 0.9426293438696233, 0.9850875599915294, 0.9913534077599165, 0.6111077713874596, 0.7533875180448144, 0.9308144778176868, 0.947618448782563, 0.886276426214747, 0.9358096868305948, 0.6889242987423111, 0.4539157915543712, 0.5181949114347859, 0.3282819710248383, 0.9908664773515538, 0.42184886144457884, 0.3790662174967488, 0.9588442284976872, 0.6698190359267726, 1.000001, 0.975463364792587, 0.3861118239824234, 0.8203958768931655, 0.49478495153464863, 0.9113737258745088, 0.9549099578024127, 0.365255617883316, 0.9163195290401972, 0.3311369500677569, 0.8817594445989166, 0.37910208116535066, 0.31946070337724586, 0.9214650446043002, 0.4013511253768517, 0.9990321064283557, 0.6991995934478432, 0.3847783717057829, 0.988080036640777, 0.46681960318947646, 0.9961340429658683, 0.5536068952987638, 0.5947362863364175], [0.9043854607660947, 0.3670926390981518, 0.9136095780900307, 0.955115177314046, 0.7526268008224444, 0.9628875496833028, 0.41332214080765384, 0.6806861421452054, 0.5641356558982196, 0.44933289997838366, 0.7553721942185864, 0.49687537735708914, 0.38296053169162336, 0.7207597531752488, 0.9876905309141837, 0.741523970554388, 0.9604032639897969, 0.935917563609138, 0.3918130276477482, 0.9409303462656343, 0.8803861484577273, 0.7776055421015432, 0.6259944362564709, 0.8820315062498106, 0.9863293674122536, 0.38826482614676816, 0.5657382272398037, 0.9091579198890526, 0.8219681829145741, 0.8495196906848631, 0.9117654944185904, 0.44660254317644305, 0.5366715565218032, 0.6975197788329144, 0.6093189043713967, 0.7497718679790414, 0.8868394014689639, 0.9643091368444606, 0.9552195199401194, 0.9926556414590448, 0.9478684495712654, 0.9511847604919269, 0.7416103278067842, 0.8680057778956042, 0.9493470308972732, 0.9402981699892551, 0.9328676238296958, 0.9859103153621771, 0.7863581810850411, 0.5808184390648278, 0.6420061463154682, 0.4312945019531549, 0.989299440080833, 0.5358202481430501, 0.48824557982832545, 0.9961779715691965, 0.7954782646889146, 0.975463364792587, 1.000001, 0.498818025552256, 0.9190448838241315, 0.6074983839337357, 0.9509721995443109, 0.979796507886266, 0.47265088530401744, 0.9572835128843431, 0.4407690629424027, 0.9491135617308688, 0.49382434679242804, 0.4274668060392581, 0.9441936267403439, 0.516409650435828, 0.9814210778182634, 0.8187325460088266, 0.49182178188561065, 0.9469045097614834, 0.5931290790110225, 0.965012012203423, 0.6832148624507061, 0.7198944313904172], [0.7275102408493418, 0.9719501797602936, 0.7263627539012304, 0.4819427293048879, 0.8750122834633375, 0.4672057494408918, 0.9432326655245087, 0.9553190855938022, 0.9859103152636124, 0.9782116810190215, 0.8785245750843788, 0.9960328141985201, 0.9788424756750406, 0.927939065533027, 0.42615143195734445, 0.918009229408875, 0.41109124879890463, 0.45408642159392765, 0.9707089632296853, 0.7082471798505733, 0.6809077562273542, 0.8902228398568718, 0.9765638366703744, 0.755428976051091, 0.460234512607362, 0.9808310848146796, 0.9926556414590448, 0.7518555276922585, 0.833199226085728, 0.7361120318812328, 0.5073698896000003, 0.995266443308688, 0.975655006664557, 0.9304436298846032, 0.9657396036527132, 0.9103218963616908, 0.786914306102906, 0.39536322386340383, 0.6391668791547934, 0.5657382272398037, 0.3855682703434087, 0.3706068876607569, 0.8865090065457043, 0.7855753363861891, 0.5537733740539917, 0.48194272929112186, 0.641525414851699, 0.5958666704003253, 0.8553292805130984, 0.9686952480536183, 0.9707089627270246, 0.9916819363276418, 0.4580257604109525, 0.9970769434855367, 0.9981225685814984, 0.5480404504610971, 0.8554121031833125, 0.3861118239824234, 0.498818025552256, 1.000001, 0.7337063087730366, 0.9739979965376375, 0.6118431839639171, 0.5496263847498191, 0.9970065952404501, 0.6111077713874595, 0.990047521734498, 0.6788635363075106, 0.9978313073209201, 0.9868742002311971, 0.5683032490907778, 0.9994076524097208, 0.3946202465706148, 0.8531893722621032, 0.993639865053642, 0.37183465650299286, 0.9738098109363047, 0.35320000442241023, 0.9367103258963756, 0.9305906046659549], [0.9584954598697633, 0.5911034389623997, 0.9678348636662686, 0.8551276876217441, 0.8998764821274189, 0.8531893722621033, 0.655908117136993, 0.8878838541669563, 0.7826431278466929, 0.693077347524293, 0.944118482544738, 0.7243944819560457, 0.6103820610945254, 0.9043854614945869, 0.8559081155370216, 0.9208372582170176, 0.8173807178834174, 0.8219681825976142, 0.62929858138901, 0.9946814857696589, 0.9071924344543848, 0.9542425540648107, 0.84197640528015, 0.9538281578493806, 0.8726476640445202, 0.6185572800054444, 0.7919786939378748, 0.9994076524386765, 0.943546384748141, 0.9109675422100988, 0.834056625099312, 0.6833984055253418, 0.7794782244231774, 0.9080651470832222, 0.842156160554462, 0.9386697803728744, 0.986224983924716, 0.8121128773421016, 0.9531391528903517, 0.9585559741907868, 0.7909793513037275, 0.7854369282926973, 0.9361614668972115, 0.9920588949629028, 0.8934664100951563, 0.8423682178943457, 0.9318160173412693, 0.9626935892440318, 0.921316373907343, 0.81873254716345, 0.8624746009740775, 0.6607680125815648, 0.875012283363363, 0.7652465081106505, 0.7186954317861187, 0.9437637116809894, 0.9652296503694439, 0.8203958768931655, 0.9190448838241315, 0.7337063087730366, 1.000001, 0.817959130820316, 0.9308144775252233, 0.920738325857574, 0.7027839195357616, 0.9367103258963756, 0.6806861435159555, 0.9750762956690494, 0.7330534610791216, 0.6667264557275201, 0.8976128763852642, 0.7518555286998009, 0.8332618582282146, 0.9748036766817839, 0.7172424682762037, 0.7821376597654497, 0.8282038790414608, 0.79494029724656, 0.898312146257899, 0.9196065619980089], [0.841207148684778, 0.9094996822362381, 0.8376106505484121, 0.6093189043713968, 0.9585559741907868, 0.5921935486140909, 0.862809544250774, 0.9847868762468749, 0.997301813380412, 0.9164295582025415, 0.9083200246686796, 0.9814210778042467, 0.9191139699279411, 0.9821767873743051, 0.5380400383723016, 0.9741448259627985, 0.5302158874943811, 0.5822609700526817, 0.8945157907061511, 0.8064716811366516, 0.8078035180457812, 0.9385644261668947, 0.9963235505465511, 0.8659204111125576, 0.5781190479787391, 0.9184923898736668, 0.9934725732019847, 0.8353062584665465, 0.9262665464184793, 0.8559081155859175, 0.6410915629138736, 0.948374164610931, 0.9399062091038168, 0.9479626980224463, 0.955115177314046, 0.950580936222336, 0.8783476091241254, 0.5107699142113188, 0.7592911945886477, 0.6705316930625381, 0.5030029330921157, 0.4842807990115167, 0.9117728027197001, 0.8507745869663845, 0.6832148638073127, 0.6115213321288143, 0.7669201446343422, 0.7076284799819509, 0.9443314078133869, 0.9471704684821541, 0.9832294538824614, 0.9518021324796213, 0.5743075436065885, 0.988358940067722, 0.9765638366703744, 0.6593835119902586, 0.8992834125430151, 0.49478495153464863, 0.6074983839337357, 0.9739979965376375, 0.817959130820316, 1.000001, 0.7371640914257961, 0.672009497462177, 0.9712366014555921, 0.7349509788476177, 0.9342351486994324, 0.7909793513037277, 0.9624429558453707, 0.9263614296333316, 0.6980967588961104, 0.9767844729441885, 0.5016791280239827, 0.9113392034690634, 0.9808310848146796, 0.4867624952558086, 0.9597803120446359, 0.45492167386847765, 0.9493470306539972, 0.9633259708296918], [0.9814210778042468, 0.47772280280018364, 0.9811997888396364, 0.9765638366703745, 0.8817594445989166, 0.9709446217528108, 0.4815221083621386, 0.7814141504593275, 0.6941722511564596, 0.5343770716661415, 0.7979542572053208, 0.6222088025752359, 0.4932078495891083, 0.8330113591253371, 0.9357742390029817, 0.8452001945018879, 0.9418502557024989, 0.9634899180111942, 0.4807848727606466, 0.9627885384509641, 0.9820427265380107, 0.8444054911001727, 0.7414431123018874, 0.9705797718555895, 0.9607804633409217, 0.4948789759476883, 0.684242751986944, 0.9304436305270166, 0.9268933883913882, 0.9643091368444606, 0.9751880998985121, 0.553606895298764, 0.6163899209621257, 0.7655422996535071, 0.6876803691196458, 0.8227435800368241, 0.9460957144294916, 0.9294303357892997, 0.9976327141194596, 0.9573477986677983, 0.9262665464184792, 0.9135348588967772, 0.78616511098217, 0.8854193169024964, 0.9946681270124684, 0.9748036761770029, 0.9981577815258256, 0.9809409968931427, 0.9054070107182314, 0.6578436562413731, 0.7396618098087169, 0.5496263847498192, 0.9570323641714312, 0.6548735667654578, 0.6093189043713966, 0.9706762787468064, 0.8344186514549975, 0.9113737258745088, 0.9509721995443109, 0.6118431839639171, 0.9308144775252233, 0.7371640914257961, 1.000001, 0.9916819363276418, 0.5939767859779367, 0.999699373825393, 0.5388948748913576, 0.9879659604368135, 0.5974246466158821, 0.5244647940464329, 0.9961779715691965, 0.626856312703957, 0.9106613604409172, 0.8706944249844402, 0.620154317960081, 0.9157348938755423, 0.6764185732166382, 0.8769326817877486, 0.7524730773861956, 0.8010313313780127], [0.9542425540648108, 0.41669780224338376, 0.9570440642176569, 0.9879659601525931, 0.8249265111807823, 0.9876905305732143, 0.4349540583684174, 0.7272368667076465, 0.6277395163176811, 0.48150820756179863, 0.7655422998393748, 0.5561326416925492, 0.43211891231646077, 0.7776055433990232, 0.9726083270446585, 0.7933285767729266, 0.971163597880288, 0.9751880997313817, 0.426938714197499, 0.9530239509397271, 0.950491956270824, 0.8053783332522916, 0.6809077576377276, 0.9373301393880024, 0.9876905305732143, 0.4349540583684174, 0.6212274054122541, 0.9162945483827457, 0.8817594444603915, 0.9236795477702889, 0.9706762787468064, 0.49320784958910835, 0.5656183707434554, 0.7222793424383136, 0.6384466148044994, 0.7802402887467682, 0.9188376602373794, 0.9646493904253428, 0.9888791265207184, 0.9759439025870761, 0.9585559741634068, 0.9515875219658492, 0.7524730775688903, 0.8684067480979857, 0.9925113963609085, 0.9820427260871892, 0.9821380047575198, 0.989299440080833, 0.8537054942643956, 0.6085407829028394, 0.6850146828244675, 0.4855565583177161, 0.985910315362177, 0.5911706146028013, 0.5444862921457543, 0.988945534100208, 0.8053045635379142, 0.9549099578024127, 0.979796507886266, 0.5496263847498191, 0.920738325857574, 0.672009497462177, 0.9916819363276418, 1.000001, 0.5289818165740807, 0.9934725732019847, 0.48150820756179863, 0.9765638371760669, 0.538247143471509, 0.4675219273779364, 0.9906567614718345, 0.5656183706788307, 0.9549484326903959, 0.8389338848884285, 0.5531309350066196, 0.9518736800818203, 0.6252092999596809, 0.9289714040581319, 0.7082930343108365, 0.7545209801011938], [0.7102123008512201, 0.9811997888676632, 0.7071758582574676, 0.465838121407548, 0.8680057779203978, 0.45011040564568516, 0.925411395760669, 0.9398581617277957, 0.9857269372983848, 0.9658596321734733, 0.8468743632382484, 0.9987581969313929, 0.9858010350508272, 0.9157348938755423, 0.4042034280522798, 0.9029602530670088, 0.3937024800764117, 0.43998520090210735, 0.9650346472047345, 0.6808859258114116, 0.6701715691944108, 0.864916541326424, 0.967665899183001, 0.7396618098087169, 0.43941275585692174, 0.9851343557478038, 0.9876905309141838, 0.7218898542996756, 0.8194097918310557, 0.7268543122368638, 0.4958843683754254, 0.9937099757302853, 0.9565099547173052, 0.9047140048671268, 0.9440299274196325, 0.8862764259362775, 0.7635309011946831, 0.3770558907113388, 0.6189900207415426, 0.5371426260816224, 0.36916111364511467, 0.3533521095722513, 0.8550701048933382, 0.7526268004569808, 0.5378022797773729, 0.4675219273779366, 0.625209299959681, 0.5701781938308662, 0.8452001945018879, 0.9471704682096699, 0.9549484332398397, 0.9973018132082683, 0.43651573378857256, 0.9941448952916809, 0.9996330478037665, 0.5220816245318084, 0.8238946910922542, 0.365255617883316, 0.47265088530401744, 0.9970065952404501, 0.7027839195357616, 0.9712366014555921, 0.5939767859779367, 0.5289818165740807, 1.000001, 0.5921935500451457, 0.9846256147130257, 0.6562138703554817, 0.990945928523449, 0.9820427260871891, 0.5527337025228134, 0.9940396849545808, 0.37251301133013814, 0.8252493496003953, 0.9981577815258256, 0.35516286193953067, 0.9541943597990145, 0.3319304285440884, 0.9113392040982865, 0.9087059043717015], [0.9808310847726553, 0.47600225777435573, 0.9814948518823543, 0.9759767636274469, 0.8785837393206907, 0.9712366008967767, 0.4842807990115167, 0.7821193150168634, 0.6918801487655181, 0.5359862084015585, 0.8034915875903047, 0.6201543178537973, 0.49172714195796097, 0.832260309924529, 0.9405696129332828, 0.8452001945018879, 0.943267257580099, 0.9617533219321621, 0.4815082075617986, 0.9671405892773698, 0.9782116810190213, 0.8477125011631883, 0.7407746217094858, 0.9694131713452206, 0.9639633949528822, 0.493838499721254, 0.6832148638073127, 0.9357742396490757, 0.9255009837879938, 0.9602585061557861, 0.9713837949540027, 0.5531077592285036, 0.6189900207415425, 0.7692339988274349, 0.690581191335016, 0.8257174469928545, 0.9483741647057431, 0.9319488196069945, 0.9985329988545414, 0.9639912259152785, 0.9273812238931931, 0.9157348939670913, 0.791620631668158, 0.8918317110032256, 0.9934725732019847, 0.9730466881585197, 0.996958033281402, 0.9853751014817294, 0.9029602530670088, 0.6608172780840232, 0.7407746217094858, 0.5478115614858369, 0.9607804635055829, 0.6536932213907453, 0.6076722905572152, 0.9759439024186191, 0.8399564343351101, 0.9163195290401972, 0.9572835128843431, 0.6111077713874595, 0.9367103258963756, 0.7349509788476177, 0.999699373825393, 0.9934725732019847, 0.5921935500451457, 1.000001, 0.5392190328690994, 0.990047521734498, 0.5976043021111545, 0.5247802719901954, 0.994681485769659, 0.626479470526151, 0.9164295574643476, 0.8748932026233942, 0.6177350348100714, 0.9173883964836147, 0.6788635377136497, 0.8832836138806968, 0.7561017524306012, 0.8034434276483889], [0.6553167455099733, 0.9807844932606472, 0.6560560434102879, 0.41310471956706857, 0.808944745060858, 0.40038760623775166, 0.975943902418619, 0.9190448847230679, 0.9531171796416097, 0.9952008113653046, 0.8505639926344526, 0.9770572536211153, 0.98663922358331, 0.8775811866229147, 0.36835726790323803, 0.8680057789943283, 0.3494681927676069, 0.3855682715638574, 0.9946681270124684, 0.6478233299852434, 0.6019893540515199, 0.8491793453089705, 0.9426293438696233, 0.6832148638073127, 0.39798712930529195, 0.9913226071589054, 0.967665899183001, 0.698301652776363, 0.7661710901575379, 0.6578436548409227, 0.4331270112217359, 0.9978313073209201, 0.9788950621755731, 0.9056720213910202, 0.9549099578024127, 0.8726476650989109, 0.7257624132459769, 0.33632964960296785, 0.5683032505376139, 0.5077076531777063, 0.32556969896833254, 0.31315232479292116, 0.8608029113515098, 0.7415239718343285, 0.48078487276064663, 0.41161690014414326, 0.5668100810785939, 0.5324524832495501, 0.7882759476223784, 0.964309136345114, 0.9437637124816374, 0.9870888564718391, 0.396792293194701, 0.9767844728325858, 0.9837420095984145, 0.4867624953670388, 0.8202273418300372, 0.3311369500677569, 0.4407690629424027, 0.990047521734498, 0.6806861435159555, 0.9342351486994324, 0.5388948748913576, 0.48150820756179863, 0.9846256147130257, 0.5392190328690994, 1.000001, 0.6111077713874598, 0.9952664433086879, 0.9997081908303066, 0.494395625304868, 0.9883589400112595, 0.3403428425665579, 0.808944745060858, 0.9729530739854593, 0.31362345850468454, 0.9639633955075129, 0.3027824438754532, 0.9144367853675578, 0.8956825593931781], [0.9913226070314838, 0.5389484578023667, 0.994681485769659, 0.9386697802522206, 0.9113737258745088, 0.9339123573872221, 0.5622272707347414, 0.8442477534179027, 0.7504960170244827, 0.6118431839639173, 0.8728568964000494, 0.6825819082045804, 0.5561326402846408, 0.8831524216187593, 0.9122310898382827, 0.8966930257396193, 0.8997312738755491, 0.9162945482126224, 0.5536068952829507, 0.9925901817397329, 0.97038038387615, 0.9073146262775439, 0.8022967763583122, 0.9837420093154092, 0.9353174167965276, 0.5600339667083524, 0.7472961799023714, 0.975188099898512, 0.9549099576387577, 0.9628875493945138, 0.9304436305270167, 0.6222088011432477, 0.6968385080265374, 0.8401328958677551, 0.7661710902341344, 0.8881453318794409, 0.9814210773665232, 0.8895483993060269, 0.996177971684237, 0.9706885353921972, 0.8786372756610793, 0.8682015394444024, 0.8624746001290629, 0.944558586604454, 0.9677947026990088, 0.9324811862390427, 0.9883464605577681, 0.9879659605496937, 0.9337319166558052, 0.7381066811109726, 0.8081071793113027, 0.6118200071146108, 0.9339123574672502, 0.7185428788129883, 0.6720094960702346, 0.9726083274923422, 0.9036999269015888, 0.8817594445989166, 0.9491135617308688, 0.6788635363075106, 0.9750762956690494, 0.7909793513037277, 0.9879659604368135, 0.9765638371760669, 0.6562138703554817, 0.990047521734498, 0.6111077713874598, 1.000001, 0.6688128140241685, 0.5964823395771203, 0.9709282760632701, 0.6951643671284145, 0.8868394024384506, 0.9307586863011266, 0.6786936015714298, 0.8682015394320028, 0.7540107099570063, 0.849608400643883, 0.8282038778501624, 0.8676796086203598], [0.713154560456028, 0.9691054249510839, 0.7136371802961937, 0.46776799038525263, 0.8573066543790262, 0.45422297290869196, 0.9620824599062439, 0.9515875219658493, 0.9751880997313817, 0.989299440080833, 0.886276426214747, 0.9880800364714372, 0.976875522017819, 0.9180092294088751, 0.41883316831425976, 0.9097048007246322, 0.3999364165801187, 0.4388951530632675, 0.9803151318828702, 0.703200308955497, 0.6608172766772425, 0.8903125996867556, 0.9700692114883696, 0.7402736493220398, 0.450821477100809, 0.9810699899273403, 0.9868742002311971, 0.7504960172174158, 0.8187325459386684, 0.7155246022077634, 0.48896278642581964, 0.9961779715691965, 0.9862249841078231, 0.935910238631937, 0.973357251093011, 0.910792246349117, 0.7794782245011045, 0.38556827160791074, 0.6267149703485032, 0.5621339689524845, 0.37438682605439644, 0.3607323221131422, 0.8948534866850602, 0.7889474566628567, 0.538247143471509, 0.4663636582691036, 0.6257264657085942, 0.5888643998386969, 0.8389338837299651, 0.9782116807376071, 0.9700692114883696, 0.98663922358331, 0.4493328999783839, 0.9916819363276418, 0.9922217724915141, 0.5418731997749141, 0.8608029103609584, 0.37910208116535066, 0.49382434679242804, 0.9978313073209201, 0.7330534610791216, 0.9624429558453707, 0.5974246466158821, 0.538247143471509, 0.990945928523449, 0.5976043021111545, 0.9952664433086879, 0.6688128140241685, 1.000001, 0.9926556414590447, 0.5522768656222181, 0.9981577814830588, 0.38855748497055415, 0.853705493183773, 0.9842254389797159, 0.3613836807174009, 0.9805888986575477, 0.34794890007885004, 0.9427638871441312, 0.9307586863011266], [0.6407543253278427, 0.982790247014142, 0.6414771945824101, 0.39993641655727125, 0.7965281510330007, 0.38739848751585215, 0.9773690966730972, 0.9097047997954827, 0.9467407199578797, 0.9949104026428619, 0.8399564332718911, 0.973357250912293, 0.9880800364714372, 0.8666366902497059, 0.3559914273942328, 0.8566805061729258, 0.3373424171268164, 0.37284221940427553, 0.9967022734971914, 0.6334274281565931, 0.5875821501826486, 0.8376106506800014, 0.9346848786593123, 0.6688128140241684, 0.3850758853212193, 0.9927702593042346, 0.9617533219321621, 0.6843800599980946, 0.7526516796049686, 0.6436006440875361, 0.41981027254409653, 0.996958033281402, 0.975188099898512, 0.8964678424255077, 0.9485215042338714, 0.8617646956923801, 0.711708658496835, 0.32447030271554306, 0.5537317496763284, 0.493824346792428, 0.31390647776929476, 0.30175775561636664, 0.8505639926344526, 0.728439470032337, 0.46681960314947407, 0.3984960235036343, 0.5522768656222178, 0.5181949114347858, 0.7752710162800838, 0.9589766640497229, 0.9358096868305948, 0.986224983924716, 0.38391981131977426, 0.97195017914594, 0.9805888986575476, 0.47289954740617507, 0.8085809620878103, 0.31946070337724586, 0.4274668060392581, 0.9868742002311971, 0.6667264557275201, 0.9263614296333316, 0.5244647940464329, 0.4675219273779364, 0.9820427260871891, 0.5247802719901954, 0.9997081908303066, 0.5964823395771203, 0.9926556414590447, 1.000001, 0.48031528655462796, 0.984616139124436, 0.32853369645449576, 0.7965281510330007, 0.9692686133297901, 0.30221174634292736, 0.9580734410844716, 0.29176520009651424, 0.9056720213910202, 0.8855455058519266], [0.9646493904253429, 0.43889515310714516, 0.9626935892440319, 0.9888791265630875, 0.8537876345900699, 0.9831370218820373, 0.43497629328946025, 0.7381066811109726, 0.6543323108059289, 0.4878980732752149, 0.7499540500985535, 0.5813862816956041, 0.4533702004283478, 0.7952391231012184, 0.9417445453797849, 0.8068325684919612, 0.9580734410844716, 0.9814210778042468, 0.43721584317052165, 0.9367103258963757, 0.9767844729441885, 0.8011988199712893, 0.6991995920198395, 0.9518021324796213, 0.9670126500610504, 0.4540864216068981, 0.641525414851699, 0.8967633151204246, 0.9000018379852418, 0.9530239509397271, 0.9905644276984031, 0.5103150226633243, 0.5673553599864798, 0.7174836017663386, 0.6385409416014606, 0.7783840334867682, 0.9162945475392199, 0.9448212289610791, 0.9879659602654732, 0.941671309764413, 0.9460957144294916, 0.9324811864121715, 0.7375813512221954, 0.8448682111945114, 0.9996330478037665, 0.9894739606392442, 0.9926556414590448, 0.9678348636662686, 0.8781750804385908, 0.6083347948525962, 0.6941722497585516, 0.5090890008737783, 0.962082459906244, 0.6122112220439108, 0.5676628382878601, 0.9610164166582589, 0.7888298103820292, 0.9214650446043002, 0.9441936267403439, 0.5683032490907778, 0.8976128763852642, 0.6980967588961104, 0.9961779715691965, 0.9906567614718345, 0.5527337025228134, 0.994681485769659, 0.494395625304868, 0.9709282760632701, 0.5522768656222181, 0.48031528655462796, 1.000001, 0.5825674217688762, 0.9174772279213989, 0.8289971340367027, 0.5801639251008063, 0.935851707813641, 0.6277395149090821, 0.8865488136747784, 0.7040009668522663, 0.7561017524306013], [0.7416660765161278, 0.963963395645185, 0.7411645012434437, 0.49621995287942205, 0.88315242174489, 0.4817616303484164, 0.9447933926043107, 0.9634899180111942, 0.9867042909874633, 0.9788950620078075, 0.8934664100951563, 0.9939299029133445, 0.9719501792569902, 0.936372598402693, 0.4420630933470591, 0.9277298364452361, 0.4254010695524288, 0.4675219273779364, 0.967665899183001, 0.7257282288720898, 0.6930773462374729, 0.9036999267079907, 0.9814210778182633, 0.7687670924523634, 0.4760022563166042, 0.9748036762466131, 0.9946681270124684, 0.7695412107249432, 0.8446920923214737, 0.7472961800304451, 0.5200679648976986, 0.9926556414732218, 0.9809409968931427, 0.9420768373311239, 0.9738098109363047, 0.9227476023181431, 0.8022967776046682, 0.40985707276133093, 0.6548735667654578, 0.5841586604738693, 0.3993356211547918, 0.38452631798102516, 0.9010605340332303, 0.8033859420867072, 0.5681751106058592, 0.4956235151075558, 0.6559081171557283, 0.6134317493712939, 0.8650746627009249, 0.9759439021816675, 0.9778864356705884, 0.9867042909874633, 0.4740027841672899, 0.9976327141194598, 0.9960328142980966, 0.5656945672884541, 0.8712235849673203, 0.4013511253768517, 0.516409650435828, 0.9994076524097208, 0.7518555286998009, 0.9767844729441885, 0.626856312703957, 0.5656183706788307, 0.9940396849545808, 0.626479470526151, 0.9883589400112595, 0.6951643671284145, 0.9981577814830588, 0.984616139124436, 0.5825674217688762, 1.000001, 0.41032595399889127, 0.8684067468754395, 0.9909459286791273, 0.3855682715638574, 0.9807844930645429, 0.3682328777266963, 0.9478684493275931, 0.9416259998301252], [0.8344186501246955, 0.27879390756461964, 0.8425490722655666, 0.9540300769050218, 0.657547434181487, 0.9658596321734733, 0.3139064777603284, 0.5689354906347655, 0.45945794462581807, 0.3465384403985283, 0.641332555538638, 0.3953390585478125, 0.2921184810497685, 0.6143422143892087, 0.9976327140624673, 0.6347126428010261, 0.9809409968931427, 0.9441936263762525, 0.29680864458897854, 0.8659204111125576, 0.8250985077184941, 0.6674066442812968, 0.516409650435828, 0.8064716811366517, 0.9878875419842342, 0.2960310018833996, 0.45820308345916577, 0.8207042717850496, 0.7308989861340313, 0.7815546768859792, 0.9037570020397251, 0.34672180309076894, 0.4254010695524288, 0.5818671975613795, 0.494395625304868, 0.6376312932999924, 0.7981463715898677, 0.9889455339307199, 0.9056807365216303, 0.9515875219658492, 0.9773690964357997, 0.9847868762340184, 0.6267149689061442, 0.7684782139324091, 0.9266632266960341, 0.939794871962527, 0.8854193160873939, 0.9418502557024989, 0.6931511285697601, 0.4668196031494741, 0.5289818151740361, 0.33524028574645015, 0.9905644275852261, 0.4300024264869642, 0.38654672190960354, 0.9646493903840118, 0.6850146828342509, 0.9990321064283557, 0.9814210778182634, 0.3946202465706148, 0.8332618582282146, 0.5016791280239827, 0.9106613604409172, 0.9549484326903959, 0.37251301133013814, 0.9164295574643476, 0.3403428425665579, 0.8868394024384506, 0.38855748497055415, 0.32853369645449576, 0.9174772279213989, 0.41032595399889127, 1.000001, 0.7122973754324948, 0.3914358394795571, 0.9806502279179431, 0.47916133857435217, 0.9967022734971914, 0.5672789382472442, 0.6067138215360326], [0.9357742394085123, 0.724989475244025, 0.9427638871441312, 0.7635309009983992, 0.942771265273773, 0.7561017524306014, 0.7818254178466529, 0.9643091361660759, 0.8865090062038566, 0.8187325459386682, 0.9890805375237183, 0.8423682178943456, 0.7435935006066342, 0.9661541484907241, 0.7416103291828047, 0.9763710457959572, 0.7071758582574676, 0.7284394711027273, 0.7620357081065613, 0.9587721569540919, 0.8790769942865038, 0.9967022732824468, 0.9331752700236342, 0.9424689461550447, 0.7675545319202992, 0.7518555276922584, 0.8977505258070946, 0.9808310848146797, 0.9628875493945138, 0.9021584445788021, 0.758831095375765, 0.8109548318475956, 0.8895483982569883, 0.9766372456264207, 0.9361614668704711, 0.9915370355081117, 0.9810699902103793, 0.6968385093601496, 0.8982891006325493, 0.8759994326939391, 0.677690891417199, 0.6674066457021054, 0.985910315362177, 0.9905644276984031, 0.8202273427283812, 0.7544030258727049, 0.8828260513770969, 0.8897490182029687, 0.9529933941898452, 0.9190448847099422, 0.9501627836619625, 0.7888298089431853, 0.7684782138994832, 0.8772693608569089, 0.8388809205475878, 0.856680506197396, 0.9961340430512283, 0.6991995934478432, 0.8187325460088266, 0.8531893722621032, 0.9748036766817839, 0.9113392034690634, 0.8706944249844402, 0.8389338848884285, 0.8252493496003953, 0.8748932026233942, 0.808944745060858, 0.9307586863011266, 0.853705493183773, 0.7965281510330007, 0.8289971340367027, 0.8684067468754395, 0.7122973754324948, 1.000001, 0.8353062584665464, 0.665603056566322, 0.9268933875381052, 0.6674066457783601, 0.9712366008967767, 0.9831370218820373], [0.734950978963079, 0.9711635984390614, 0.7308192854126355, 0.49172714203521173, 0.889749017179108, 0.4750371743921544, 0.9042839553746203, 0.9469045091621863, 0.9924318193746612, 0.9509721998726045, 0.849519690684863, 0.9996993738539482, 0.9759767636692633, 0.9294303357892997, 0.42451067454481634, 0.9162945483827457, 0.4166978009487163, 0.4663636583157273, 0.9478684495712654, 0.6992214653677448, 0.6994098529284076, 0.8735773436871671, 0.9741448259627985, 0.7643303792603791, 0.46166027433501505, 0.9739979965376375, 0.9905644276984031, 0.7365459742896074, 0.8412071486847781, 0.7553721942185863, 0.5248197200738476, 0.9852960966087853, 0.9466769676997759, 0.9061683145719862, 0.9397948723249222, 0.8934664100951563, 0.7819934410296444, 0.3988249385760727, 0.6436006456417652, 0.5554257876396195, 0.39181302764774834, 0.3747952964016635, 0.8567402842583898, 0.7626078270195646, 0.5648960550462089, 0.4943956253542944, 0.6521227363496492, 0.5910265435934883, 0.8672231774928496, 0.9402981698269507, 0.9578798843882361, 0.9924318193746612, 0.45820308362930995, 0.995161114306606, 0.9985065790805264, 0.5423356774686472, 0.8297419221692942, 0.3847783717057829, 0.49182178188561065, 0.993639865053642, 0.7172424682762037, 0.9808310848146796, 0.620154317960081, 0.5531309350066196, 0.9981577815258256, 0.6177350348100714, 0.9729530739854593, 0.6786936015714298, 0.9842254389797159, 0.9692686133297901, 0.5801639251008063, 0.9909459286791273, 0.3914358394795571, 0.8353062584665464, 1.000001, 0.3770558907113387, 0.9496616386690393, 0.3495421814214531, 0.9117391715058678, 0.9147662331435408], [0.8292628784865549, 0.26329590066752107, 0.8316974674320617, 0.9767844728325858, 0.6544897246074919, 0.9839502616115227, 0.2769247448924832, 0.5388948748913576, 0.44446206327346865, 0.31362345850468454, 0.5847622340770996, 0.37910208107330756, 0.2751196758695244, 0.5939767859779367, 0.9837420097529611, 0.6106026880554029, 0.997301813380412, 0.9788950620078075, 0.269766753458438, 0.828203879041461, 0.8450226685009684, 0.6245986551872597, 0.49320784958910835, 0.8022967776046683, 0.9839502616115227, 0.2769247448924832, 0.43652623160231124, 0.7724788363607114, 0.7211401060684398, 0.7966348167724641, 0.9452358907827668, 0.32369076919557743, 0.3855682716079105, 0.5352212651732641, 0.4520430725319572, 0.5959893456707126, 0.7687670924523635, 0.9981577815258256, 0.8993931831180487, 0.9080666069816553, 0.9994076524386765, 0.9996993738539482, 0.5704342592961993, 0.7102197071642038, 0.9447454753772041, 0.9709282760632701, 0.8932620809461165, 0.9135348588967772, 0.6876803691196459, 0.42437905321139824, 0.49618265449778304, 0.3186692506633, 0.9821767878680736, 0.4091490992854444, 0.3683572678243254, 0.9342351488595441, 0.6292985815328113, 0.988080036640777, 0.9469045097614834, 0.37183465650299286, 0.7821376597654497, 0.4867624952558086, 0.9157348938755423, 0.9518736800818203, 0.35516286193953067, 0.9173883964836147, 0.31362345850468454, 0.8682015394320028, 0.3613836807174009, 0.30221174634292736, 0.935851707813641, 0.3855682715638574, 0.9806502279179431, 0.665603056566322, 0.3770558907113387, 1.000001, 0.43932424309742957, 0.9759397948457618, 0.5208895532082354, 0.5676628397249583], [0.7838444756376223, 0.9043854614945869, 0.7882759476223784, 0.5456744945472263, 0.8886865272099331, 0.5343770702518172, 0.9483741647057431, 0.9798171269340005, 0.9607359829400662, 0.9709446223114582, 0.9565622916767269, 0.9565392889473145, 0.9178657171230546, 0.9491135615275418, 0.5095101133191063, 0.9485215047262063, 0.48031528655462796, 0.5121924498082094, 0.940930346929496, 0.7949402972465598, 0.7207597529179035, 0.9518021324932148, 0.9786488416796406, 0.8053045621491997, 0.53921903144196, 0.9263913289062232, 0.9785107501223411, 0.8421561594757422, 0.8706944239825062, 0.7683012499650318, 0.5562075604593021, 0.9602585056585371, 0.9950420325457259, 0.9846161391806847, 0.9994076524097208, 0.9653022067024062, 0.8559081166696781, 0.46776799038525246, 0.7093053332359767, 0.664553213227586, 0.45204307112784264, 0.439985200876972, 0.9624429559965711, 0.8802363216607662, 0.6149552794171624, 0.5404494729263626, 0.7000359670597596, 0.6846028780754588, 0.8801094734219927, 0.9990321064711599, 0.9916819363276417, 0.9385644258585919, 0.5392190314496612, 0.9748011405083415, 0.9603616844747641, 0.6397917667437478, 0.9373301387668412, 0.46681960318947646, 0.5931290790110225, 0.9738098109363047, 0.8282038790414608, 0.9597803120446359, 0.6764185732166382, 0.6252092999596809, 0.9541943597990145, 0.6788635377136497, 0.9639633955075129, 0.7540107099570063, 0.9805888986575477, 0.9580734410844716, 0.6277395149090821, 0.9807844930645429, 0.47916133857435217, 0.9268933875381052, 0.9496616386690393, 0.43932424309742957, 1.000001, 0.4357721907831268, 0.988358940067722, 0.9763436429072895], [0.791978693937875, 0.24474463407972133, 0.8007783262843302, 0.9328676239126863, 0.608375777032208, 0.9473709786241075, 0.27993850640958834, 0.5216766792821244, 0.4142657210146905, 0.3094086448373504, 0.597559383173091, 0.35334623566595447, 0.2571231446147937, 0.5657382286069285, 0.9890805377093778, 0.5863142150660843, 0.9706762789143543, 0.9248185543384156, 0.2625646368116648, 0.828203879041461, 0.7833614967297569, 0.6212274054122541, 0.469760000304017, 0.762089333100594, 0.9733572514850358, 0.26091974278579294, 0.4135289913282024, 0.7808856942986179, 0.6831487298579467, 0.7365087760321352, 0.8762621758772672, 0.30830201904207455, 0.38452631798102516, 0.5366715579422001, 0.45082147844962034, 0.5911706147041177, 0.7543419329569745, 0.9820822947627474, 0.8706567291674345, 0.9279390663872726, 0.9700972180378603, 0.9809409968931427, 0.5829178497886598, 0.7277290166002991, 0.8973991537515404, 0.9172918727298288, 0.8484958715460678, 0.9135348588967772, 0.644438333453385, 0.42437905321139824, 0.4829357835991823, 0.2970191559634139, 0.976875522411261, 0.3865467231328332, 0.3451945910511361, 0.9418502564611694, 0.6413325569594197, 0.9961340429658683, 0.965012012203423, 0.35320000442241023, 0.79494029724656, 0.45492167386847765, 0.8769326817877486, 0.9289714040581319, 0.3319304285440884, 0.8832836138806968, 0.3027824438754532, 0.849608400643883, 0.34794890007885004, 0.29176520009651424, 0.8865488136747784, 0.3682328777266963, 0.9967022734971914, 0.6674066457783601, 0.3495421814214531, 0.9759397948457618, 0.4357721907831268, 1.000001, 0.5223010112380051, 0.5600339681261373], [0.847376124029219, 0.8388928630643759, 0.8537054931837728, 0.6260901815977578, 0.9156539591076526, 0.6163899195435294, 0.8993931831565838, 0.9870888564150454, 0.9397948722328895, 0.925500983787994, 0.9890805375237183, 0.9194473204304666, 0.8554121038008038, 0.966154148490724, 0.5975593817376036, 0.9706885351703849, 0.5632001238005389, 0.5903828886033169, 0.8817594444603916, 0.8682015383330309, 0.7822166865724003, 0.9851343557478038, 0.9720937805642775, 0.8634598948221375, 0.6257264642685101, 0.8649165413264239, 0.9572835129277072, 0.9091579198890525, 0.9136095778160211, 0.8217182791003989, 0.6295429690399647, 0.9113737258745088, 0.9709446223114582, 0.9997081908303066, 0.9924318196318188, 0.9915370355081117, 0.9147029685049636, 0.5517374542356164, 0.7854369282926972, 0.7526516796802135, 0.5334540050737262, 0.5223010111783295, 0.9916819364267834, 0.9398700286011435, 0.6924995209641136, 0.6186053856483408, 0.7719165038539626, 0.7689404716706422, 0.9148395820798534, 0.9857269376953917, 0.9897897663940901, 0.8865090062038568, 0.6264794690843339, 0.9464286017427714, 0.9210011821771559, 0.7275102408493418, 0.9788424753083657, 0.5536068952987638, 0.6832148624507061, 0.9367103258963756, 0.898312146257899, 0.9493470306539972, 0.7524730773861956, 0.7082930343108365, 0.9113392040982865, 0.7561017524306012, 0.9144367853675578, 0.8282038778501624, 0.9427638871441312, 0.9056720213910202, 0.7040009668522663, 0.9478684493275931, 0.5672789382472442, 0.9712366008967767, 0.9117391715058678, 0.5208895532082354, 0.988358940067722, 0.5223010112380051, 1.000001, 0.9946814857696589], [0.8903125995341713, 0.8263219612094662, 0.894538739450503, 0.6776908914171988, 0.95058093652101, 0.666554341248951, 0.8629963378397447, 0.9951611142071166, 0.9494926136457278, 0.9000018379852419, 0.9862249841078231, 0.9208372582170177, 0.8425490722655665, 0.986224984107823, 0.6391668791547934, 0.9899078218306031, 0.6111077713874596, 0.6436006454946959, 0.8553292816449892, 0.898312146257899, 0.8344186503987883, 0.9946681270124684, 0.980199008358913, 0.9056720213910201, 0.6705746931713661, 0.8496083995684465, 0.9602585056585371, 0.9307586863011265, 0.9491135615275418, 0.8712235849673202, 0.6858170458023519, 0.8982890998690106, 0.9507295636198527, 0.9961340429658683, 0.9803151318828702, 0.9985329988260195, 0.9441184825177704, 0.5975593831730909, 0.830198414319119, 0.785436928438525, 0.5813862816956041, 0.56817511058963, 0.9870888566551065, 0.9511847598899209, 0.7443809052662836, 0.672009497462177, 0.8210754892935263, 0.8068325697453633, 0.9504919557786322, 0.9694131713452206, 0.990866477066499, 0.880109473421993, 0.6701715691944107, 0.9469045089458089, 0.9191200544309124, 0.7653077056656362, 0.9820427262554943, 0.5947362863364175, 0.7198944313904172, 0.9305906046659549, 0.9196065619980089, 0.9633259708296918, 0.8010313313780127, 0.7545209801011938, 0.9087059043717015, 0.8034434276483889, 0.8956825593931781, 0.8676796086203598, 0.9307586863011266, 0.8855455058519266, 0.7561017524306013, 0.9416259998301252, 0.6067138215360326, 0.9831370218820373, 0.9147662331435408, 0.5676628397249583, 0.9763436429072895, 0.5600339681261373, 0.9946814857696589, 1.000001]], "covariance_matrix_inverse": [[859455.2247447696, 4593.475903328182, -131117.6544520888, 8324.656232252439, 5293.6178470287, 16073.885318343682, -5892.590164082405, -1960.6201608699116, 37427.531159878745, -4211.313681712597, -9850.93327394072, 3130.3713757375567, -3556.281741031906, -33437.7442185878, 17058.748030600702, -42945.565157316225, 12922.155707882632, -3155.64211705146, 25153.478046255917, -16943.526446921824, -26649.805706913095, 5245.579070603357, 6468.497969497775, -143048.19168106312, 31824.40654862786, 2449.4424163888452, 8544.907349851012, 7113.545110240356, -114104.16208799923, -13287.57283748287, 36511.655893738694, -12225.368611697357, -10425.405044448855, 14498.463084973286, 5865.513684767439, 8417.490319380086, -75651.02567416025, 16342.78192647403, -79796.63417927419, -672.9234900589018, -13710.000166557871, -6003.268573566344, -13785.252120227908, 6278.692900954171, -26165.098054350125, 4849.818785097232, -95281.13322269413, 2712.0511771532792, -62345.86868138592, -4494.794187939304, 10691.96655029035, -22203.69683431588, 30208.644015030863, 3585.321779988053, -7117.140456833027, 13491.437695320268, 5574.87299541122, 8004.1971053610805, -4284.593280039659, -7986.707858056793, 11677.857620200657, 39214.24865288583, -72367.36613244851, -6624.418081557466, -11487.732444627984, -67360.04303677294, -3798.0989951456827, -75215.21823611818, -5856.144108429503, 81.20675383604421, -35120.04506082699, -3851.1837574251936, -7718.072871397654, 7850.65240714996, 10350.848808431898, -16490.279772029833, 7644.239990185205, -18567.182933084416, 12885.255163848073, 8927.157113177154], [4593.475928322776, 439406.72923893994, 8406.713935848415, -2878.9429518716875, -4219.25175515426, -1858.148066207023, -8519.589296670538, -23133.966814671952, 24190.46625544809, 34105.849027430435, 21337.168896998617, -841.7455396964659, -344695.169569965, -17690.722751485493, 8690.810380920519, -21332.28569554016, 827.5460635906007, 10702.740545957344, -2550.7904508295446, 12555.675031600962, -237.75227276849586, -4637.730058464193, 7255.92076173635, 2307.0984715269196, 2727.8751088504528, -209047.04848890382, 38550.640289999785, 7691.233800748716, -6071.06594572786, 4356.633585668464, 2410.5171391815484, 31368.94439435874, -10413.287419295517, -16467.03248141021, -26446.41450979171, -14561.098019010271, 14800.326421402156, -4975.224657516656, 4614.371334961987, -31200.23062048299, 4206.2401627704985, -9899.790477653427, 20776.626748334544, -1816.840309111366, -9161.28653330396, 607.0531479392819, -3350.8867982422007, 2392.6228260863086, -6847.135466675449, -22892.27386444336, -19281.109148424894, -137430.08359117983, 4904.0576402364895, 47244.66045292411, 15255.101540078304, -2833.259009833537, 18800.084094157985, 158.59809873651864, -3993.599020086276, 55569.724085947906, -4913.643531046099, 18598.92444190879, -3259.662451002713, -311.3324952087425, -16545.250150915857, -960.6180326150437, 50026.41568039105, 13042.213984492586, 59811.51578489982, 38449.65665430766, -9404.5249375298, 56759.844556351876, 11861.375463890727, 11698.383152721479, -36542.46321747845, -3461.8694084318013, -21934.741560062765, -533.9918425103212, -19209.146524963562, -24615.1421170398], [-131117.65451188583, 8406.71388303907, 861698.2448919013, 14548.92385060484, 12959.072318176473, 18072.108696252257, -6948.449121671777, -1211.604405708647, 30351.883648401523, -2281.1157264082203, -2651.583301200145, -13.519529959802835, -2917.8303840561907, -28214.92353009406, 17125.20501314729, -42507.90049975655, 12945.854522176143, -8144.682952585356, 23616.88035820783, -55060.13382336581, 11248.972674841598, -9239.149691754516, 11510.13378082669, -124828.91400779806, 22264.25795223628, -613.2232966480816, 12377.60888310894, -10955.051847421879, -98544.9347102313, 17924.07853006325, 21376.51574742113, -12269.364913678923, -10677.53535247869, 12153.4119585357, 6426.579340423534, -2269.6323717818564, -109137.0098332829, 16613.37135036414, -93786.5065111788, 16021.03386639704, -14315.501582721676, -4789.586582365981, -7891.155907650236, 24232.89054890875, -7905.576541270879, 9735.422009325866, -72689.09086170327, -29019.616651787688, -44033.90505509607, -4998.914379655885, 12912.489048853413, -20871.966735078073, 21143.786596519483, 6414.866264446015, -6819.132727353705, -962.3088624367117, 11409.160353046662, 9970.582492405742, 9716.709874905338, -5002.765048268175, 5697.922229107112, 34968.33616196802, -64309.329917442614, -23734.55195793584, -11648.425901069413, -69398.71103116802, -4495.045144636315, -108982.76382884399, -3058.1287372292736, -1646.50399343409, -12630.947291906761, 16.664127497602184, -246.2685563065403, -8633.199354583954, 2691.341563777389, -16070.667544321643, 9479.256395287182, -21819.221932017317, 11248.179775802251, 2092.860527313234], [8324.656288836788, -2878.9429628147545, 14548.92373168011, 839711.7632499355, -14965.27868871774, -152415.20874428868, 4692.312281848807, -2463.8190233846613, -7742.610304245795, -13480.103506836493, 4927.752684158521, -254.63494616209965, 1307.9114480831634, -3710.2670623324348, -3683.274312112507, -2136.570623296628, -87422.11836779494, -135086.8968891112, -2549.811195837681, 36687.45280543653, 31442.04657003063, -7699.180293774947, 2056.1820743611843, 11100.365201724524, -51246.172601562175, 5135.8003960203805, 6224.157929643834, 7885.353860746978, 6683.039852152059, 35988.78537050776, -7007.167365960585, 3420.420148709028, 1079.1630694294286, -487.56909022353125, 3756.329542730297, -7972.174215842025, 23415.83035032511, -25170.431987393644, -14065.779162040528, -4437.037998932176, -40386.00304707055, 30236.433975856984, 10411.24246752853, -26392.58203608687, -112890.1020881161, -143517.9860363298, -36879.94571667224, 33951.2381103474, -2556.8245434808855, 6774.609040097583, -1604.6171267099849, -384.8955334503653, -31808.30176425877, 7305.907655642264, 4916.213742434176, 21688.333441104904, -9677.145718087364, 31430.9537211111, -12738.84874406599, 7465.211857552223, 200.25837575608202, -10254.781793821216, -55128.88641822159, -58211.72731559193, 2984.1176153693523, -46429.04100427304, -4396.7387483945395, 24992.48353182609, 1109.5129434928042, -4422.162039582036, -97913.57119003874, 6541.982163495504, 1790.3144133981634, -6919.7772029385305, -7831.5967810058055, 13922.88691296719, 332.5593715217589, 8220.08905673353, 1611.9645991585983, -7083.545040378849], [5293.617883937926, -4219.2518304461, 12959.072253837978, -14965.278791946168, 618335.9562869043, -27302.893115561328, 36235.45588302885, 25359.245166397755, -125681.10037665459, -36412.696748562455, -8632.880888032707, -11384.920099219471, 4780.706770823166, -76567.24477458649, -3732.042073809678, -31640.299655938474, -24628.14147313905, -35474.01794729842, -47729.57653477894, -7330.32995401889, -43597.1526048328, 13579.909898225016, -7839.7147003115615, -29227.898033163965, -22177.06432373964, -8116.802029196936, 12447.316165386861, -3261.9063905633784, -112874.12603615633, -190453.36482596028, 51576.46176132993, 30516.716496951674, -30479.371596588455, 2704.56901193622, -4348.493251975142, 18863.54011199455, 4174.648675106611, 2081.0064284067203, 23790.123706826296, 8031.985734930736, -16596.94711771854, 24478.40753931649, -11931.825875216546, 11551.442490672254, 39840.65196148429, -5289.221767706006, 46240.475116863556, -15962.792469995957, -242129.74991567258, -21480.360396659755, 42630.5784141298, 38934.968627053306, -19319.703914307036, 23780.17393500538, 26610.111943101594, -15358.04528667811, -1848.4638973000683, 19301.285133068723, -1865.6971636688295, 51380.901040498335, 1108.14939557276, -168301.40423374958, 39690.62155640372, -5994.994069419185, 27966.8676175314, 30586.921012195835, -4099.152757993818, 9350.266586230693, 38821.92728889342, -15752.586239296985, 50378.48309866789, 52957.236699857254, 7224.30701726726, 3779.718133788749, -46128.99994830226, 10798.038066974674, 5326.000169758802, -425.1775560667009, 500.9594153454022, 26602.939871924653], [16073.885313852657, -1858.147992216566, 18072.108776527573, -152415.20882873907, -27302.89305307599, 839010.8006503613, 4607.320865883645, -1737.3384055927318, -6373.109720009537, -14555.078707062963, 3590.0312364659917, 621.2027274723491, 1277.5240944811924, -2486.48511390609, -30172.593177931078, -1846.476045724508, -109636.98980496114, -98473.18327346163, 869.6606215840199, 34351.30312149238, 41533.9055554576, -10626.60346658625, 4980.88338897032, 18735.43788166882, -87691.22195695393, 5173.298777884541, 8895.438112465245, 9224.636672341028, 8463.218833840756, 28909.576377798396, 49428.48898223155, 912.2094437567426, 1576.0384759353979, 66.22298608388908, 5397.550476201189, -10090.410809915178, 19281.636013193965, -55205.345133693634, -15235.735320876109, 10120.655908570201, -48360.328335724924, 14371.495870803925, 9254.656002302534, -24056.779570207244, -95151.10306340425, -111802.42750456138, -20979.605212680934, 24826.468931783773, -6261.629461191077, 8389.823013955312, -837.8572828103415, -1717.7353344848875, -66912.60319951309, 9269.61433377144, 5497.832434657567, 14254.543634257767, -10937.370546382916, 14565.518637394585, -9108.999484558022, 7038.547605304401, 4982.448281837195, -9189.353425193316, -47191.161857582534, -75904.19711412759, 3003.948651750401, -44402.89649894873, -7047.389995371608, 20123.87133926822, -1024.889997451593, -6465.946902104986, -76459.61875146063, 6208.835920698103, -2975.8152923335824, -9952.983241616375, -7904.80270703545, 4474.181045712816, 1428.6220204378888, 37198.5573360416, 2594.8190680266325, -8317.428808878869], [-5892.59014498694, -8519.589315842732, -6948.449093606685, 4692.312265741313, 36235.455893912615, 4607.320861992232, 63389.9066958813, -3890.5174672298326, -2973.2121806283294, -106323.20611028382, -14273.048075205043, -11538.194117408659, 1662.3914648787481, -30359.46456355193, -6063.034999754964, -29962.39729438066, 368.189892480499, 10796.778683759961, -61086.60964931312, -2902.246391920599, -5068.788267737971, 10369.44109590512, -16600.431996382238, -7418.807767051257, -2032.653344716341, 22557.0117141219, -9732.131814413202, -886.837519738903, -15215.219655301644, 18478.35457830559, -20249.67112016952, 34769.29457127229, -63165.59111411755, 23276.35222069764, 13696.60505313158, 15367.091374503314, -15524.107864655858, -6273.166017261761, 4621.066026123147, 1286.020480568922, 5139.205605568029, -3751.420967581599, -21738.21716142484, 1679.4765939459592, -352.83975464876374, 3014.3968016220456, -385.02918402258575, 4164.344883874758, 5476.64928241817, -26400.63183891083, 22329.75567715722, -12670.03201865633, -2952.0548852048028, -7223.135411825704, -10500.860891435837, 2629.6161510325173, 3935.2452675830555, -7362.793783063404, 522.3204261043389, 14446.27161448584, -75.62708266294727, -4805.577864772055, 3696.2576642729723, 7231.59006108026, -11887.453104063541, 5406.621947830376, 39757.07580123997, 104.42476688554382, 45370.8319431287, 33681.857421241664, -2431.482822928902, 22994.700622002623, -3086.851439418302, 7321.962163890594, -3679.1899090389543, 1211.5229311641558, 27376.357484484008, 9162.03631013835, 21492.650451667843, 17917.777444197905], [-1960.6201624594835, -23133.966780424515, -1211.6045186048661, -2463.818993363461, 25359.245211923506, -1737.3383129856902, -3890.5174672237977, 857323.914483042, -5655.014550148623, 26481.384247615453, 30808.099151966133, 19623.166870300487, 2212.001539488304, -110210.89066714601, -2047.879253369041, -120921.46157532782, 111.9064152832356, 15659.108038069982, -7389.934666767417, 20728.28934314812, 3885.986526931047, -67233.07776052495, -116468.0914590211, -5247.914190823811, -914.1800192444861, 6193.142073971965, -73912.30806039879, 10751.199309229509, -31183.19857739462, 31009.425179186073, -13047.762036452856, 5844.409019968937, 25677.42731096803, -36500.825762261855, -23419.887787321655, -83745.29923070881, -19656.640661711226, -6310.136715302299, 9704.734045682173, -19478.106100872872, 7719.675672488822, -5434.0595224932395, 36291.28844065958, 3403.207489555379, -10895.238860923444, 641.8518160999572, -2678.1796506136634, 20861.501381580543, -7267.454635205749, 9302.578971258088, -129414.89094104288, 32209.35347904931, -61.140722961555525, -46792.38122659349, 5896.827732828991, 8136.363844719687, 12013.724077742032, -3567.0008970780636, -13503.198929839586, -28559.12303099864, 8225.64779223142, -31739.702420942118, -574.6758189534438, 6123.046982185876, 20249.683484103814, 3460.1103934173016, 8469.747611992048, 16388.614411916118, -28553.805282833215, 11394.192926074702, -12092.395386228038, -48667.59886363054, -1213.5626890831197, -29022.754091601317, 42778.88841401651, 1275.1998053524792, -38527.6741612124, 8450.112901403883, -32189.349717295067, -106110.9280892183], [37427.5311847128, 24190.466230656948, 30351.883577488083, -7742.610337049338, -125681.10043171949, -6373.109706292207, -2973.2121628767322, -5655.014531204123, 784538.2714884578, 7959.11021754689, -4813.16629022139, -131162.77624610384, 29717.51460384708, -32793.04609363631, 14275.077111477203, 831.321772355112, 6274.982643429271, 549.7347049544729, -59086.43176754747, -12496.887682504746, 24393.268156558963, 10189.270784802713, -60983.80814150126, 43660.52945389454, -3558.2241093330945, 28710.619491278823, -71470.63329835665, -3312.281991720597, 23365.6659773477, 1723.9218848136456, 635.1498287903054, 38007.05708563102, 14983.234124429477, -8116.384984383066, -991.5976138434752, 7913.479495331713, 26896.88934720956, 5081.59324028274, -7699.573456118483, 5851.0616944502135, 6278.181073315705, -3070.8930106188604, -6081.040966118469, 8533.798742025416, -8227.3607908009, -4187.056667024441, 13775.489553584803, -29678.776095324174, -38120.57381259732, 4013.187855117933, -2200.90536061455, -19165.490213457728, -295.67095339585507, -65848.22159547683, -68718.30167710633, -15566.023596675614, -1572.0945433433394, 6276.017357466244, 18615.13338180504, -2654.66103159453, -3231.941886361538, -204357.83015176686, -4127.190451443572, -26651.36225529993, -66393.3873435362, -10044.388027984283, 31979.444043677522, -5967.862439876586, 31008.74599831367, 22881.211919430792, -3858.0282016330266, 2517.5106781040167, 18453.710227811036, 6976.829604388779, -183618.3208592039, -91.68031660807534, 4256.734002746653, -22284.549340210604, -8801.021489189032, 6651.68240629732], [-4211.313672321949, 34105.84910600598, -2281.115760879019, -13480.103488605755, -36412.696566069244, -14555.078742438593, -106323.20611019326, 26481.384280062135, 7959.110323546682, 745695.5248189562, 56496.06150773037, -6200.753211474689, 35284.553024251756, 32220.940066857936, -67.69737651097722, 27118.66370752509, -9834.005987379476, -10316.55087923855, -167726.90233622724, -5466.61521454882, 13147.298634704579, 478.73606674067156, 47650.559267510966, -8151.538752137779, -1120.439714255949, 35413.26349639668, 39992.19458082507, -25128.845545526394, -8338.582820259791, -7584.841162383335, 20601.14308967942, -37283.26098226989, -153405.51007228674, 2910.369276565282, -62717.94314120864, 2426.9738247958226, -6025.099080665103, -4910.619013563614, 7420.261587384262, -5019.279645866395, 2826.5446655449873, 9395.319913764672, 66315.53204747959, -28181.48541591138, -858.7219793740344, -9326.704239577623, 3712.44917360604, 17721.200023331963, -18220.10443457207, -88840.60943232592, 1391.9736801931551, -14555.295976612111, 1814.2817536923692, 31151.86818219777, 9851.210587705129, 17283.578939709223, 19128.83839986395, -2749.58276602151, 7919.085416371969, -252.18405126401498, -32672.321626558136, 21102.392202167917, 4152.701948070634, 7563.156676083527, -1407.8510833576702, 5609.938158024741, -131526.34516580342, 7155.25075829977, -75803.58339818494, -133201.86192173016, 1988.8985282265555, -11026.98205399371, -3669.022551667587, -6350.184598023209, -43198.0577516722, 11362.822603610104, -83226.18512340641, -3040.9014848216943, -1302.082528142841, 3080.506664933239], [-9850.933179129128, 21337.16885487397, -2651.583277525409, 4927.752688981154, -8632.88076456118, 3590.031276105338, -14273.048044440002, 30808.099329112832, -4813.166289231471, 56496.061394000055, 696984.1416984755, 3281.8593976142984, -12994.676875790748, -365.12416817657, -11627.082201399879, 14564.307688568624, 4292.072859816968, -5551.425106919437, 4771.769611314909, 39023.49235872685, 15058.278002233616, 9204.41534385107, 1929.2815529125867, -12058.042275095271, -9851.35793645566, -42944.402222737684, -6631.057323409925, 12933.037688490944, -11956.30555691834, 15223.83926700815, -3522.9771802570217, -15896.086063610603, -6597.365139049845, -75613.4039422989, -30878.546171588685, 12456.210802331478, 35822.47056696545, 4061.7319196876538, -7625.435445444494, 26011.261113495555, 972.7207715812104, 6006.14071769324, -321566.0548148499, -142611.00382116795, 2071.789948923779, 3257.5851650990403, -8072.198341942931, 12746.807690164069, -15622.523768050438, -46050.482034445624, 37551.03545471724, 8141.559804815652, -11814.942841708216, -9928.066236620596, -8350.227801363008, 7022.009746607209, -199510.70628284244, -4392.10568650497, 4386.732657207259, -6818.087950321157, -204.6158660309033, -12281.977864293192, -8726.169777344552, -10099.618972107886, -2446.582347081667, -9641.197006466826, 11763.357220536487, 9117.181722206542, 20093.231832979687, 5062.788858196799, 2224.833264974018, 4765.852018043877, -7836.178140302779, -12849.016999439567, 24863.743926323914, 2819.959389455157, 6846.720009803087, 4795.4485427353975, -79359.39866789288, 25255.545320447745], [3130.371338418004, -841.7455987057509, -13.519501133744422, -254.63488925989986, -11384.9201917275, 621.2027544918059, -11538.194145630912, 19623.16686927229, -131162.7760445333, -6200.753226789326, 3281.8594295695334, 842384.5165230881, -7833.951673736178, 20750.759743847415, 696.6328428717129, 25173.58552178735, 1337.615281413666, -1355.8537552365046, 26559.337602788884, -7814.042707397228, 1321.007449966437, -4962.62172690493, -4187.985936088488, 8862.143201662313, 2965.035156838656, 24785.229502589482, -40749.81138987464, -7976.0057787849955, 20639.508955832443, 1196.5447919467535, 2437.026143260543, -13397.370019799628, 1962.4048645930188, -1964.356238526728, 4021.904025392721, -457.3285346585704, -3933.8223602434264, 3087.9662608216536, -5580.912933924264, 10542.374729519446, -1294.7901849094724, 2042.0879323470188, 5625.509176618296, 1964.3795985698418, -2504.051850215758, -490.5024171286455, -2893.619728655053, 229.59158213445593, 12742.17270433982, 4832.418206377318, 14386.368083248479, -123165.00727810824, 2805.1241976246615, -60881.245683973146, -113368.41283892065, 4122.757696143138, -5216.880825126152, 877.6088557745597, 2844.286146761658, -40368.097118721176, -2342.269111305252, -83840.41442262122, -4461.362158768732, -1662.3439476361245, -130731.6552914926, -4863.956452142925, 8272.103001557978, -6855.08724297132, -6828.755117419454, 14885.73951677706, -2718.5684582952254, -23279.27031989515, -4283.688378788092, -12265.613566678812, -210486.80134438848, -165.31878714504836, 4250.4095404002765, -4639.808390361096, -525.4214956193114, 6466.855411229178], [-3556.281740216054, -344695.1694919496, -2917.830401137937, 1307.9114633444992, 4780.7068425764055, 1277.5240950232853, 1662.3914689502683, 2212.0015829526296, 29717.514748843318, 35284.553061379775, -12994.67699526299, -7833.951662164173, 739420.0486226411, -7222.623664773752, -930.6456268498873, -9385.335718255687, 46.1924578140157, -1276.3962301408635, -22940.73136022332, 1683.2098948752941, 1397.851860604412, -124.1963423551249, 9181.647069051824, -6621.351876720832, -431.37826027230665, -210955.09436424234, 12586.191056445627, 7547.31451501083, -12971.024259224545, 1762.7879608367894, -3868.8181283961935, -51276.20433936833, 12001.622727168893, -4882.468146281537, 3297.8419121059187, -245.27361327616094, -3512.8358218328503, -293.33902195281786, 2502.3495552308873, -4159.323628879024, -367.4787306402084, -945.2751826815612, -18047.39296131217, 14223.531664434884, 3429.6524073684363, -258.23556556031616, 2764.0156591864434, -2573.1290859446835, -7838.866201695973, 507.1140665827115, 10635.131443146134, -115866.89555638807, -1083.0888039825454, 6598.8875925282955, -22437.969754715592, -4784.930621493896, 506.00487065093984, 346.38438967945035, -5049.787735129416, -8912.201166505518, 9333.739094596456, 26438.912174815126, 3856.813720858203, 2151.8271591323182, -39774.90539389716, 3669.9168323823747, -14738.836885146136, 381.51918244219644, 7895.226158909201, -25925.267618589154, 3466.6572304914366, 4878.494182051708, 1119.4521243181898, 2999.407736085558, -1675.392281590374, -759.345163924319, 12619.272793425409, 3311.938613049272, -5643.468153517884, 971.8413261825978], [-33437.74423632889, -17690.722731698577, -28214.92360984976, -3710.267186172026, -76567.24486249012, -2486.4850268629475, -30359.464575554255, -110210.8907394496, -32793.04613046078, 32220.940175453045, -365.1242514012885, 20750.75977521799, -7222.623656072857, 839855.3779012836, -8660.234601825332, -148650.82985638466, -2140.1924171205296, -11277.047820297954, 3159.4663673253262, 22538.425957623684, 45233.89617227686, -23934.708288298334, -117953.81897413866, -51846.21290320505, -1128.8461840681614, -14432.057753536308, -70217.38916394148, 17410.501116520867, -113041.62945452872, 45166.445038151855, -7910.218517328577, 5229.151750777782, 31202.90894596999, 5528.011152008904, 16274.855439337378, -32100.296395521185, -30692.710282948497, -3793.2303781559367, 10445.976409764213, -13697.88447009951, 5337.168009352499, 3840.0748080088, -780.8321131247553, -6765.925535093554, 6103.877390890205, -8791.847240096055, 4655.619321586126, 22937.267247868054, -105875.7716976875, 25047.702883849932, -70281.68028182225, 37585.460798763575, -2306.8880612173307, -42553.9183248532, 7185.316640533814, 8591.437790412694, 5557.690170966054, -7395.475636689322, -13508.124288315825, -15766.401186240522, 12000.942700615056, -80473.20354524333, 9330.144342920888, 15129.854145572073, 23227.56714747738, 11361.952186129434, 15056.180676677048, 10328.144251433596, -875.5109317278201, 13175.039802241909, 7822.7308809834585, -24923.91360318968, -7464.633259512702, -126.41188253924777, 51535.86187030016, 7476.406769760179, 12237.254834779133, 11994.729908946645, 7898.326381807223, -48018.0294633354], [17058.74795761472, 8690.810431377786, 17125.20497926735, -3683.274342200102, -3732.042083344771, -30172.593406374242, -6063.035022632241, -2047.8793954491716, 14275.077173145692, -67.69727154830339, -11627.08221794507, 696.6327749514713, -930.6455885580721, -8660.234556393334, 809098.8036164406, -11383.01705303157, -45422.71738491074, 33439.03248394645, 7716.16006436223, 13355.134255378527, -10345.02160482258, -14336.908645317691, 3916.773324947286, 9301.49007441304, -150632.73758599118, -486.64533644996203, 5125.379478523419, 20596.087433735658, -8478.418466854404, -14617.366836587395, -17907.243547220507, -9063.896903622424, 10548.382138723302, -5568.862469909456, 9458.40737112127, -12084.00646369311, 1532.5746699596184, -85822.07661833745, 12151.357425531918, 4542.563654365551, 28024.408834797367, 535.1244635603559, -12030.867416490457, 28079.109351231637, 11735.988995263358, 17493.029336438656, 23679.292781876313, -36646.34066836506, -10077.461633906194, 11039.323722491336, 4670.976304464747, -12534.094476185925, -167765.37221236946, 2386.238936540953, -4437.7684774668905, -74109.05548275121, -8301.874946796177, -156763.2260019914, -91929.31092090279, -3498.8075053550874, 34917.53265420913, 13299.222053620762, 17099.019998366384, -46937.885818694216, -6858.988312084371, 10994.981455995221, -4346.399722760291, 10549.337124815367, -656.4955464083023, -3603.861070630967, 15611.355981771878, 176.3548531672431, -154511.357958455, -11937.729917073655, 4602.209120964325, 34889.64973590821, 11253.983598988325, -9025.388907446295, -3043.869660694688, -7586.990002132814], [-42945.56511309981, -21332.285769651993, -42507.90068931667, -2136.5705878658227, -31640.29979496583, -1846.475988065078, -29962.397292520163, -120921.46155985855, 831.3217278502773, 27118.663686445532, 14564.30756546035, 25173.585411310396, -9385.335798131508, -148650.82983905077, -11383.017088801336, 844921.0163595073, -4498.544376291623, -10613.08466493978, 10507.413870127513, 13234.769426830826, 42195.71896873014, -57778.321641228766, -100917.41082508121, -57953.394562920985, 616.2402696153453, -7457.850645309008, -52128.94293104847, 7937.39947642033, -109445.35122133806, 50570.4628235462, -12603.642369253083, 2501.761456973591, 35250.08067380648, -5982.6634696383135, 14094.126861172053, -63856.14012559852, -62341.861370720835, -4319.274852232785, 7404.4028718231875, -5385.762105298993, 3696.3575591075773, 6782.022845195412, 17346.681807563284, -159.9069607523686, 8725.411578784657, -7329.940844799045, 3250.129169380017, 31633.201399017944, -79282.51910777236, 30001.145754575602, -82050.24834359938, 20763.45188043931, -737.3830082964287, -28498.883541252355, 9681.059637823126, 18217.26357479576, 6578.9708762232485, -7600.086012918168, -14983.436858086568, -13354.649387168462, 11281.259404661267, -36274.23707991565, 9593.003893784618, 20318.840295083475, 19441.37988144599, 11613.404047587623, 11296.533902782065, 673.828769873933, -5206.245910892236, 11597.645808522127, 9832.622176697621, -22870.750734462257, -15171.698066249237, -29172.574112459744, 50008.52439319708, 8786.010344128605, 6645.914650130105, 13063.822609537892, -583.7148654098688, -76480.65128184545], [12922.155675026639, 827.546012183403, 12945.854541797376, -87422.11812186068, -24628.141579357605, -109636.98982549954, 368.18989899029765, 111.9063400544364, 6274.982555184382, -9834.005981134562, 4292.072791810431, 1337.61530416716, 46.19243391450098, -2140.192333904062, -45422.71763619122, -4498.544453765411, 862955.2968996761, -68366.65878507598, 10738.262445859542, 17738.153174813175, 27062.261505839004, -9411.724908076943, 7952.153907778636, 8765.634305061645, -78424.53061340931, 4024.282971906862, 9089.126344986225, 896.3076358378382, -5325.1150247653295, 1930.1392301434037, 56010.3945487143, -4576.964683419742, -1327.2731724497744, 2927.379528906508, 4832.878762264278, -7450.452850878562, 2410.7720401340775, -114264.9919215691, 8058.674409042206, 14530.512138484139, -133330.21939693653, -103583.65412528056, 7969.974848513345, -16445.08811168124, -23536.826800673884, -54655.35513651655, 12560.131459956121, 20431.07811416209, -14034.019759265224, 5058.491598424828, 1396.142837133068, -7452.7527563036665, -64703.208844000015, 7196.7257588019165, 1369.8403700840122, 12709.660437397379, -6063.119272703226, -27574.752699371915, 999.2655996075848, 874.7740305628648, -88.4102316651264, 5667.680831743727, -1048.2719417802987, -32787.00924097638, -1460.6302701302964, -2534.660605178149, -6812.598694863449, 17633.98733674112, -4861.219678201426, -4663.078084388211, -10252.179091389306, 1200.2840812016245, -11480.881072267373, -10194.196351408564, -2557.027412780641, -115689.12322071198, 1745.8042417766374, 53173.40229949168, 4659.395845755331, -5167.357539214133], [-3155.642138022725, 10702.740557697743, -8144.682883020963, -135086.89702871136, -35474.01784124648, -98473.18329535336, 10796.778671698332, 15659.10815046598, 549.7346885368481, -10316.550824746568, -5551.425104325334, -1355.8537878598747, -1276.3961795179525, -11277.047897832419, 33439.03246760583, -10613.084763745226, -68366.65884769533, 663668.2086165295, 5478.395333834519, 98.58104021738747, 85126.09007309696, -4773.319180781429, 17969.304905805737, -9533.286201584167, 36177.650199201664, -4630.219908281801, 17434.006779569914, 6504.1874041717, -33411.38527390997, 67709.13987726647, -229288.89617302845, -7483.814907686379, -12600.2169050402, -1767.7674189102122, -872.325707647882, -84.02924169874882, -22839.473474306742, 34786.26552736841, 17406.995548889157, -31120.107619319326, -130714.57270426508, 23167.71482968105, -9116.600797038785, 25944.136577569727, -29084.099096900063, -224685.71919602397, 24702.347843939373, 13452.1099244966, -33966.43351948241, -9246.840857941184, 22628.069841787263, -9352.480692445286, 38663.37349817009, 12747.865594813817, 67.60933337725129, -2065.1742757589072, 2463.4054143179364, 76347.44542641328, -58001.530599525766, 6259.159588709018, 15333.56513753293, -2093.0793756155617, 18543.558493434277, 23615.80649748832, -3828.794930378373, 19678.886804179023, -8596.850956205255, 4247.760061768134, 3867.005335954711, -8957.889564523613, -15580.36685789278, 11530.480802847014, -3707.2545506312085, -6137.953656620952, -5551.906984597199, -52720.50588555639, 4455.557520058731, -14749.0967778096, -2177.410706468225, 6603.51838856506], [25153.47793382907, -2550.790473027377, 23616.880289762234, -2549.811188791739, -47729.57664627251, 869.6606721116956, -61086.609662994044, -7389.934684765825, -59086.43176456377, -167726.90233523404, 4771.769602798813, 26559.33759475338, -22940.731177827387, 3159.4664268182423, 7716.160074912586, 10507.413864664626, 10738.262451014585, 5478.39532032322, 404500.93244604924, 10837.925705356356, 5483.4862715023955, -33773.201427322354, -782.4663971544636, 34121.51253248628, 2047.7534067954343, -127439.16443316419, 17610.543635261954, 5587.3618001740515, 37743.653070005596, 3063.071886910881, 8489.540398087602, -25604.51745497294, 84301.65468425067, -19125.41115808986, 38664.98215405855, -35599.30922421393, 24174.586636880176, 10493.47598670201, -9658.793709326164, 8553.468468448069, 938.7127148203622, -3690.1512520943766, 17213.95322673701, -1665.9003294070733, -16848.831937399267, 396.6376598019413, -6815.129826058867, -7616.32536263787, 5985.918699974299, 81357.18090669952, -7049.9318905935925, 86357.75601856638, 2361.83777745595, 32393.287256273416, 54667.95105728839, -6336.361260815759, -22766.358035175635, 6880.217581830394, -463.62872143985004, 45528.431390185724, 10564.166983120367, -69420.84948903145, -16095.494561627962, -19855.218598622214, 63733.094855695614, -16853.41545511205, -153015.42896006332, 4041.375199463508, 1016.4674545272461, -221168.13639641827, -16518.21035755572, 36846.26027354897, 4916.748358373809, -29252.74726735714, -548.666473578662, -6243.344542085951, 29110.471380019182, -13484.03693798696, -8712.556564867456, -31055.783926950833], [-16943.526398934297, 12555.675174255917, -55060.13376371861, 36687.45279946742, -7330.329905171112, 34351.30318354564, -2902.2463842795732, 20728.289332988857, -12496.887830454665, -5466.615093372622, 39023.49238225183, -7814.042657584989, 1683.2097824217562, 22538.426049770627, 13355.134492716687, 13234.769296102219, 17738.152970195275, 98.5811423945437, 10837.925665501449, 803752.3375701993, 18441.868061466852, -49947.984080627066, 23475.34001943126, 1873.2427653676643, -1930.8003191972348, -6726.710833188074, 11215.05887098728, -153498.5759020129, 11425.99576706606, 3090.241755140886, -54234.70977304421, -6374.240772190421, -10890.974044805604, 621.019104490818, 4442.2742551362735, -28388.721996346343, -129868.84227239828, 3302.715361376403, -60309.79679992192, -23257.005249178386, -4741.408233362724, -22420.45407914973, 43290.16508779795, -16187.479215610872, 38344.554096524975, 20263.361832750896, 20032.403852329182, -144604.10870881393, 14573.416577106897, -2493.573154531632, 20724.01700598403, 929.9427711940518, -5448.862660690778, 4521.930645956965, -4246.403490842183, -84279.9722735866, -45.95257062310405, 544.6911474575255, 24673.338872246368, 955.7163478792597, -129662.96857864279, -5416.853116613841, 1435.8741242834362, -37621.64408340008, -4455.4335114212845, -20651.00796814311, -5146.903842487108, -131874.14479958327, 772.8075885697377, -4732.414514265361, 39408.14078420795, 5296.183425611203, 35176.7815056908, -83145.9836508936, -11430.740545459497, -20498.27826996009, 5185.7612224993445, -3862.480951770041, 4061.947703123444, -8261.374329483802], [-26649.805728334028, -237.7522992401825, 11248.972657471435, 31442.04658333577, -43597.15261477787, 41533.90547304808, -5068.788238700804, 3885.9865937437853, 24393.268178228172, 13147.298604651232, 15058.278063555732, 1321.0074387494874, 1397.8518788248925, 45233.8961486284, -10345.021399513143, 42195.718703174156, 27062.261542567114, 85126.09008751561, 5483.486291260832, 18441.868042446575, 614314.9559727993, -4300.87725012462, 11814.911483444703, -41952.28987988473, 6969.606437490607, 5884.8128920685, -685.5886177511284, -6557.299634253992, 6655.364397691976, -367248.4485001217, -151433.73306636486, -6287.72691732201, 14957.979215023583, -13002.538395859821, -7753.474057785842, -8537.744689988565, 45494.64019028466, -20231.210384095033, 5334.958281191955, -8947.573747611594, 33284.964032026284, -37382.93591508564, 20872.479198371548, -17658.41122271369, -64470.69100627997, 20609.84556552703, -98265.53907550516, 17054.75105620821, -25187.878454151763, 7596.305615760417, -17505.24150081752, -7349.651464505628, 2477.0124532883165, -5081.24183295734, -5746.955467626075, 7694.783754592425, -4155.50640282847, -34292.64715872707, 7656.843853973195, -14307.25569829598, -15938.682842462158, 35096.26575506213, -42916.91606727706, 18623.195430396485, -5989.218075890975, -16828.142926503213, 791.446837466586, 33843.85715148705, -15829.44240815663, 4570.826816005292, -94304.95579138678, -17433.712819923407, -2076.045760058963, -5003.0022169244985, 5644.171018715715, -8803.523168949578, -14162.401459635881, 21724.166183698104, -11455.985698910747, -10954.60393747637], [5245.57911070069, -4637.730171385904, -9239.149609660535, -7699.180337892078, 13579.909931094493, -10626.603328115214, 10369.44105441833, -67233.07767739815, 10189.27063095183, 478.7361239241929, 9204.415379234895, -4962.621643546793, -124.19611068222827, -23934.708379687432, -14336.908618413428, -57778.321594302855, -9411.724890064304, -4773.3191531720995, -33773.20140643617, -49947.98397156573, -4300.877099528296, 842295.6928088858, 123.22456859835935, 6870.14122692419, -10382.98218479218, 10385.975496650231, 19875.49945211851, -66179.35620269008, -4258.687632233568, -6920.56611748197, -7163.562371570734, 16305.996352869355, 33481.38375410209, -87741.80639946632, -20423.515905439242, -148803.21118371142, -94237.47087764922, -3474.8718807062855, 9845.525287657463, 50466.192191352035, 4204.078110362624, 16269.501461881233, 21975.512744204676, 2977.9277705141626, 6866.199392781305, -5956.84805270354, 19350.732492755233, 9461.770546891928, 12825.45473796709, 16695.82270688191, -58661.17129845421, -17347.584981286975, -10251.447818357165, 21786.09339732742, 7237.995606171857, 18262.33576000058, -46680.70462480194, -5540.066177821621, 15866.446418619522, 21526.417082168024, -29173.633701992538, 18871.995161060255, 16897.131559856138, 7225.608496238555, -2524.353448040996, 15232.059031581171, 6546.604044863183, -15425.031363570923, 15650.22040174849, 1925.8706822763047, 8936.004903817176, 19687.34651822153, -16712.66547546048, -148118.7922004382, -26902.795486434694, 15441.539357354677, -21859.178161135307, 1596.9142270233162, -73640.90176865447, -130903.63328898743], [6468.4979285743875, 7255.920859303122, 11510.133911108851, 2056.1822208783083, -7839.7148309061695, 4980.883364023272, -16600.431963180563, -116468.09159093504, -60983.80808314069, 47650.55928281346, 1929.281657589367, -4187.98592320008, 9181.647055543594, -117953.81909567765, 3916.773548719995, -100917.41074803975, 7952.153847961558, 17969.304938998175, -782.4663855233678, 23475.340056660283, 11814.911576624656, 123.22447533724532, 852807.8390664193, 2711.008279010881, -427.33459926438456, -10751.573609787814, -119718.11165050874, 19628.47318036107, -27318.158297643535, 39471.01495971277, -18114.476814751408, -12731.33012015768, 29087.94372550311, -1765.7663125067113, -4715.308729919935, -16745.460023944564, 22850.480592130065, -5500.464259770387, 4852.850789146262, -25865.18079206718, 10735.09017213828, -14348.10124499445, 1176.0524602151904, -11445.017337785206, -13879.884402626394, 2093.7277647263286, -5536.508014498749, -337.1221040240016, -26022.356634995547, 12831.872579357938, -101567.77902705685, 45237.56574097968, 92.5703360348786, -92066.09081146943, -23027.03432880257, -7495.220135136929, 10373.937490743334, -6186.749330538319, -2420.1552135554375, -59477.63044057998, 3883.1770873137148, -96034.65442149805, -5798.798616850517, -3538.139154599865, 3800.3011324747404, -2813.780912644098, 7483.3209267437815, 17790.98763808581, -37182.832195261835, 10110.79601200568, -15568.192546612423, -74356.11155290059, 11878.55029307691, 24128.459966630813, 39571.57941065133, -3995.8302919591806, -14680.933332371751, 4005.5382238924853, -2480.612345443501, -43198.992988295795], [-143048.19172497204, 2307.0984475762416, -124828.91403990831, 11100.36513132045, -29227.898102851068, 18735.43798956033, -7418.807728237362, -5247.914198854999, 43660.529572179155, -8151.538836639364, -12058.042206186848, 8862.143189372155, -6621.35185878332, -51846.21293948448, 9301.489912237314, -57953.39448649396, 8765.63409635701, -9533.28591605515, 34121.51246535954, 1873.2429653326215, -41952.28988711624, 6870.141422891492, 2711.0086737457177, 842353.8016058276, 35715.97533144632, 1470.1996721073713, 9359.877569111137, 12631.921216395309, -143697.23480889766, -40654.92964147715, 39443.18392734089, -15638.6999010291, -12212.725688579438, 18035.767414671245, 9187.407407124738, 10116.428426877514, -67454.25131748735, 14182.234486048459, -55454.15400375378, -8020.318557500384, -17909.93081428651, -3380.720742079393, -15086.332446058728, -2638.336669303306, -15087.097237481705, 3650.9388932117877, -87318.12543016406, 25210.3592584386, -99413.48921751868, -3038.299035733024, 12245.976517497284, -24605.4402350987, 31855.48749259091, 5213.975074640578, -5244.848466662909, 22405.08432954844, 2098.691958204038, 4246.598001371401, -16834.151816201924, -8646.880807156513, 13201.78152450721, 38277.67640161968, -54505.97769347915, 17587.985422442347, -9944.866261666417, -45289.90273535915, -6174.596395521023, -49531.54555191541, -7373.457529439355, -1157.4975755831547, -25097.858879345793, -3936.9591751407656, -18150.694939086185, 9748.692706287904, 20228.663223906395, -15871.658236465784, 10632.546651542449, -7376.863630336591, 16691.74075421137, 10483.31682603484], [31824.406514800474, 2727.875006385612, 22264.258085972688, -51246.1727390667, -22177.064389826544, -87691.22186642795, -2032.6533172259965, -914.1800688471023, -3558.2241112406687, -1120.439836820464, -9851.358074174634, 2965.035151660495, -431.3781180788365, -1128.8462649945673, -150632.73774568018, 616.2403900095508, -78424.53086577797, 36177.6502123822, 2047.7534682960531, -1930.8006853050433, 6969.606379357544, -10382.982158658257, -427.3343989966122, 35715.97557923514, 817154.7632946157, -2281.3786066303737, 1289.1288081259265, 12332.76326438065, 19953.254526489458, -8573.34549864769, 24972.004471378925, -4471.570886086811, 8759.913967914928, -3787.716595641917, 7607.001851367038, -8606.575294020944, 5336.200439126446, -101563.0265405366, -23126.996861842686, 47333.264833421876, 19930.1487752071, -620.4208460119822, -9339.036274465152, 19709.40163027773, -25916.15188170124, 2464.5098943867392, 14295.322548696682, -58830.16964953017, 1372.6699395146022, 9772.018779823877, 1616.6582468127324, 1097.1827240220573, -181863.5801315431, 1688.2396530596911, 1991.6344849734285, -65565.77165606589, -8925.632543779804, -98262.98929640306, -21006.130595886883, 129.84354533127578, 26988.992760734476, -8299.31940616493, -17300.811961884465, -111379.96663969575, 2221.7157585910854, -30738.170390487907, -4967.032468318957, -15014.393406025267, -889.781035436685, -5077.575551763807, -12907.070146904218, 880.3389663561737, -60627.09076380066, -10605.655564640252, 3769.1759899596136, 34677.914186737864, 7738.093425147508, 93025.09244667231, -1598.6315779045808, -5328.265933619562], [2449.442422173394, -209047.0485631938, -613.2232781431053, 5135.800335353344, -8116.802173816247, 5173.298868253951, 22557.01170136742, 6193.142041813066, 28710.61941676563, 35413.26354357075, -42944.40212494244, 24785.229405273258, -210955.09431820945, -14432.05774628199, -486.64534932563834, -7457.850899547856, 4024.2830023130273, -4630.219911220609, -127439.16434803481, -6726.710727010364, 5884.812784588223, 10385.975521273385, -10751.573579379168, 1470.1997127835175, -2281.3785349256045, 750841.3704099638, -13884.36207664717, 12144.838428141205, -8351.5146939235, 2609.635382788658, -12227.311049041558, -104734.59195079275, 41539.25289020972, 338.38163955461033, 23681.438672587483, 12899.030245326692, -1873.4012059799138, 4308.114685879853, -3521.0465357789967, 10850.990999349935, -1555.6027370848662, -521.3517660152787, -52755.241526312035, 27727.561418737143, 8217.792009215544, 809.8370079064473, 8295.482041232975, -19250.002026295493, -12238.084538015868, 22284.30516051489, 18651.17582997838, -44570.007212243516, -3948.0431765467642, -17885.757306785355, -15777.252661156595, -14791.4092326688, -11265.715419385355, 2615.0541811000517, -29.169701245887385, -41746.362310147684, 20809.54455789305, 8217.79545686347, 4859.871911050141, -6316.212495126571, -11729.506243875778, 1211.5001383882473, -74100.36042914401, -10388.921093001005, -23921.46280260983, -97755.6026625272, 8915.769043122786, -26628.515780784455, 3428.550874085537, 7668.442501336764, 72834.51215709515, -2666.6938912193305, 36800.30955976965, -1492.0676026667952, 251.97848430602426, 16782.61635393451], [8544.907396930948, 38550.64038586386, 12377.60890071501, 6224.158046148303, 12447.316343186061, 8895.43789789477, -9732.131822754653, -73912.30782001867, -71470.63327104339, 39992.19449161264, -6631.0572594740715, -40749.81135516573, 12586.191027899333, -70217.3892093062, 5125.379468039459, -52128.94287294984, 9089.12647551934, 17434.00680154044, 17610.543688169048, 11215.058739717224, -685.5884991739224, 19875.499405973012, -119718.11170897781, 9359.878020487806, 1289.1290452905403, -13884.362154649454, 879064.4129789826, 11528.711763134168, -1041.0156702410998, 25975.426898627793, -16410.76767952311, -43871.95838762035, 17200.115508951676, 7406.350490334304, -2483.3352729484404, 8294.829876968079, 28617.478524449096, -3483.4302666439467, -1162.2496565227775, -15555.931628451386, 7134.009497335427, -14707.568923926337, -8747.296634695405, -11928.097422838991, -11505.031499647426, 5214.661496576596, -8543.770009808233, -9787.832638432057, -883.8701599274239, 6232.56883760535, -70629.6936828936, 9549.810928535626, 1247.4296609646146, -108522.08446713943, -60268.163210912695, -10107.212842290346, 5759.622680031938, -5326.216638771067, 4911.102457375428, -87166.33451961687, -1700.5193635146145, -86258.18275228427, -8320.698911362397, -5899.818836436852, -36860.28501293453, -6368.135548469164, -11458.8625775845, 8764.327706733277, -57987.950728521064, -4247.907347426282, -14168.306631799162, -93108.49497309982, 12045.722895886354, 30126.537835230007, 1258.7052923503331, -6886.6367389515135, -10691.774221383763, 642.850837026918, 5234.073648032072, -11580.350986410962], [7113.545025612428, 7691.2337272756595, -10955.052080517233, 7885.353851486604, -3261.9064331039044, 9224.636630822555, -886.8375232665802, 10751.199207476531, -3312.2816741995002, -25128.845515661025, 12933.037675521118, -7976.00579081668, 7547.3146139339315, 17410.50108296212, 20596.087508182485, 7937.399607714225, 896.3076747958288, 6504.187280074246, 5587.3617322034215, -153498.57588899782, -6557.299764376025, -66179.35628547653, 19628.473227760365, 12631.921485645255, 12332.763250455706, 12144.838526185482, 11528.71181354893, 807344.1650010097, 12881.84527495792, -11067.402662329734, -20040.72539406069, -3996.079090268846, 8533.21084940446, 3372.081491591253, 22872.0459913321, -41841.019156614006, -88183.55840600557, -9791.396107245775, -4801.667801304773, -56254.82701534319, 1669.9270521462063, -18275.159718213323, 33119.64010958056, -152086.9511317438, 11853.56481392514, 1947.3389601786441, 17756.248441787153, -66685.32458020697, 11022.195780601409, 26853.761819369152, 11084.50867273892, -7579.523923984709, 14583.35958819949, 5924.630256277678, -3926.7319887141166, -32349.029883970692, -61846.846774797115, -3270.3817497802497, 23607.600490229404, 296.60373855936115, -199789.01691995873, 3806.115176846404, 14876.94841736408, 5981.714380202027, -6683.021846312414, 9962.718919000152, -11267.815624612738, -51292.38170220207, -6400.126247829832, -8601.041113349569, 11659.57158991027, 2021.920244159206, 26904.21751075326, -112512.96139204704, -15046.667115814093, -8304.220682709565, 13617.620625164149, -7798.95206244567, 12682.176798467559, -19182.6199013209], [-114104.16206989363, -6071.065881380932, -98544.93476536986, 6683.039842616056, -112874.12608456844, 8463.218922039536, -15215.219640303247, -31183.198576033035, 23365.666136432912, -8338.583010188735, -11956.30542916266, 20639.508586737706, -12971.024300423356, -113041.62947752135, -8478.418576113196, -109445.35126667396, -5325.114894949547, -33411.38544724506, 37743.65319955275, 11425.995825784548, 6655.364257806648, -4258.687717000338, -27318.158504859755, -143697.23495216368, 19953.254773883385, -8351.514949279694, -1041.0154942171112, 12881.845540829625, 816863.9904796215, -25069.24371826961, 31999.389975303948, -13117.43413815758, -8365.661259622468, 23044.58242308458, 19574.34347162837, 48.65576794418956, -71621.94941530334, 7025.734922268182, -12702.98699014717, -5626.989661441049, -18502.12122190881, 10984.466835658672, -14698.210476245984, -4997.223135024377, 20341.98044085346, -4690.148904004376, -30824.886140687853, 37607.11257573439, -163165.5184815441, 4677.856752186089, 4873.519235064427, -9711.114057370653, 14959.84938154724, 4036.7783536143747, 5688.798339007308, 23250.98316388593, 786.3686733189583, -539.9037538615942, -25054.157770158345, -1893.3750169269072, 14535.642789854484, -6274.007846505086, -4635.436326951073, 36551.18759465803, 4589.042336071057, 379.6047491305915, -5748.832631487125, -20198.75664965945, -96.97253252470166, -2632.7379681265907, 17707.606722313358, 1927.8503199445818, -26479.812728319477, 1786.2462976089819, 37354.3454120423, -2339.516995778401, 21746.13903362368, 11165.113850517899, 23203.87597143395, 23.397973568108807], [-13287.572837382102, 4356.633618894458, 17924.078560952847, 35988.78533604397, -190453.36479911796, 28909.57656753335, 18478.354561449833, 31009.425139098432, 1723.9218360489426, -7584.841046452044, 15223.83909696958, 1196.5448125624123, 1762.7879865128302, 45166.44499516734, -14617.366966939511, 50570.46291417513, 1930.1392700410217, 67709.13990837488, 3063.0718786084467, 3090.241733906774, -367248.44845771906, -6920.5661301752525, 39471.01500292139, -40654.92981343996, -8573.345624123674, 2609.635280428793, 25975.42703081665, -11067.402681499407, -25069.24385155971, 560321.7720219357, -71960.55143322669, -8157.65181263878, -5463.577379977025, -15091.072624687398, -13965.870668968744, -6010.5942308512585, 30593.404080668457, -19090.983887697806, 20462.373597210426, -625.8462484173422, 2760.2228293207786, -22614.380576619373, 19396.25452934452, 295.6787329748421, -7370.889758704973, 39575.77088505119, -44436.87725691265, 2735.1520133838653, -108095.1700133336, -6644.114600398507, 8851.302527420003, -5932.350180763097, -11845.590539085166, 18051.774935072477, 5085.793564131868, -4168.0005376675235, -2490.876701727442, -11636.558732993895, -2961.2071521395883, 2910.9871450442224, -10326.230888619479, 4539.048531519533, -1186.4751416429015, 17215.166318506832, 559.0473170185799, 12200.798237240511, -13515.740483493195, 27284.589596845795, -12051.051317028936, -10847.347955969211, -26910.374713640853, 2129.330997549316, -928.5398972699198, -13376.309255015496, -11490.4153006597, -13875.863366189405, -17401.397632986675, 29930.23177111562, -14160.061712524637, -897.548807879877], [36511.65589422536, 2410.5171186644657, 21376.515725979523, -7007.167301477082, 51576.46172848167, 49428.48889902103, -20249.67113195927, -13047.762072151685, 635.1498287442017, 20601.14302112294, -3522.9771788623384, 2437.026119784039, -3868.818192946275, -7910.218515035031, -17907.243533820758, -12603.642198428568, 56010.394517803965, -229288.8962182299, 8489.540413546814, -54234.7097664183, -151433.7331210126, -7163.562291466745, -18114.476790113196, 39443.18405230655, 24972.00444214471, -12227.311032487805, -16410.76774359714, -20040.725510845685, 31999.38993515019, -71960.55141690966, 299627.87841984176, -3750.8446394545854, 5483.069192184887, 4874.118571941246, 7388.389912207226, -3572.940985196631, -33080.14416551417, 29353.677742321066, 29944.69936132537, 35092.749500857164, 26733.994610793154, 8756.91311657078, -10329.967400922435, 39157.55334476383, -15616.361620386806, -178816.33805673514, 25430.60154606978, -48672.0980947433, 43442.39880771953, 1651.0741589918068, -3817.3955399229776, 7443.122413517404, 5810.3352751590955, -13758.71271291547, -4399.384871345115, -32706.317465659755, 11487.866860422855, -42790.52299850062, 26740.608157832066, -8630.993182167156, -1543.513952730085, -628.1677756503726, 43475.99302358036, 41076.1188224205, 411.73301655639386, 46085.735136577954, 7496.618655395221, -16125.133254660885, 3272.9831166701783, 6352.079254180632, -32735.769172736116, -7264.679708361474, -10773.042898692933, -8707.40295682529, 15055.053062266274, 15983.929160259522, 12070.907503201379, -2768.578311158882, 4424.077554754402, -2490.040605577567], [-12225.36860021081, 31368.944381242436, -12269.365004264586, 3420.420261523466, 30516.716495376404, 912.2093861054225, 34769.29454988211, 5844.409061374021, 38007.05690719131, -37283.26088678036, -15896.086075946585, -13397.370065333129, -51276.20450925286, 5229.151633306304, -9063.896827637996, 2501.7617721094075, -4576.964748688412, -7483.814832454058, -25604.517341778723, -6374.2406183523335, -6287.7268136044095, 16305.996707627954, -12731.330046680394, -15638.70011467419, -4471.570943264194, -104734.5917253307, -43871.95850394286, -3996.0792562314496, -13117.434323752346, -8157.651863473284, -3750.8447700414968, 849901.3209913652, -15304.395012032699, 23626.907837589024, 11882.334977059796, 21736.831692635937, -13304.464926591501, -1188.2412357029689, 1990.490930547658, 14899.373393633845, -3160.348126756214, 6984.401105622705, -17893.906324159758, -6782.29456494192, 12259.43001931632, 859.4833106589118, 4185.66769417206, 1741.3383183540948, 2603.0926248741803, 605.7077802501216, 1079.7469710927046, -54159.47889005767, -5988.425352913113, -62607.591306876886, -65344.368469824476, 2764.7501221997964, -6322.272426381519, -2504.816486346712, 2063.3551694867506, -112991.08212799573, -619.1781864261391, 40396.57500708547, 8135.298994912233, 6405.504460514904, -57496.33744447967, 7179.074206784271, -124144.23003630673, -5916.835957472342, -114612.18916266522, -118624.94077383606, 12172.261900453783, -102190.36958170736, -7809.683311764544, 6113.689710913929, 40762.38638857372, 3921.762875378989, 4470.660192143667, 7036.809813300416, 23034.510219852116, 23443.782598157268], [-10425.405159550595, -10413.287441048717, -10677.53529755023, 1079.16316301231, -30479.37184065346, 1576.0385057105984, -63165.59111253792, 25677.42721794056, 14983.234215041337, -153405.5100280914, -6597.365185004557, 1962.4047624370658, 12001.622661344405, 31202.90903370846, 10548.382062832408, 35250.08058086385, -1327.2731623145798, -12600.216970778452, 84301.65461812314, -10890.974029791561, 14957.979248495096, 33481.38382995922, 29087.94388053798, -12212.725503573163, 8759.914069298191, 41539.25298847143, 17200.115120960574, 8533.210854780496, -8365.661254383534, -5463.5773733130445, 5483.069165649889, -15304.395053762719, 739449.9775600245, -47744.76334845088, -163919.38091728085, 23996.364800334242, 6715.252228533858, 923.9487997357614, -5768.817172639126, -21296.571242487487, -5355.383745933835, -2906.4210426933946, -23228.113137440214, 31728.053064078817, 10602.090686015861, -2897.150041689886, 3986.007448700075, -14415.582009690008, -18663.859259565335, -223780.13317891007, -11939.053842961916, -13802.148624336825, 9489.748519371235, 10867.609145079043, 3053.267008246776, -8893.139701964303, 27575.2598744502, 4198.633841016618, -559.3167107553365, -12797.168523427534, 2799.514149915907, 19823.42821689007, 3373.1138935020626, 3114.471135347255, -2047.1482259313664, 664.3982922828319, -47302.60774013139, -12724.72132567314, -64819.009565827604, -24800.449479977637, 12197.530320361566, -24477.913855005583, 8518.004940910003, 37930.9885655622, -9710.943930840309, -3857.8121552393377, -158738.09971037632, -6499.935912256599, -68186.34251896567, 13784.703331761615], [14498.463055627426, -16467.03248126895, 12153.411941169259, -487.5689886214853, 2704.568951006935, 66.22278885464965, 23276.352206423468, -36500.8256183131, -8116.38487701359, 2910.369365112491, -75613.40413300855, -1964.356313163793, -4882.468115562261, 5528.0111009526745, -5568.862530027171, -5982.663451476343, 2927.379229574031, -1767.767395631508, -19125.411245060648, 621.01919586109, -13002.538344576642, -87741.80626602599, -1765.7663396081412, 18035.767378454726, -3787.7165149922375, 338.3816082704158, 7406.350433149644, 3372.0815107827016, 23044.582646454044, -15091.072761227337, 4874.118557731476, 23626.907958046508, -47744.76327654368, 876028.3041782496, -97077.56258345018, -94457.21980459012, -8374.154959345353, 7568.201476295077, 885.6315332724209, 25086.86091491961, -2864.1556479750475, 5021.172273815294, -82554.61239597948, 28811.192652681962, -2390.9700627492393, -160.4549615947643, 1954.1160339571777, -4278.303548961377, 17221.22681949185, -82114.53172073109, -50643.12650996555, 3686.268847952958, -5855.974608809218, 11439.321316442243, 9739.00927563974, -5834.290599000818, -60496.0721479724, 4397.884098331705, -6492.989090010883, 19370.504682324547, 25386.263321592265, -3215.6763548122967, -292.1157710803854, -6440.817647552764, 6716.046321042359, -818.5624242533371, 17231.436803365123, 1080.6606519435918, 14352.74796695304, 13859.923645991574, -2597.434408047083, 14490.768647712579, -5985.628348878802, -70949.0096394756, -15832.187351547918, -780.6298892973235, -80504.50283585323, 291.73005997395654, -124206.39894986934, -89189.66645433063], [5865.5137684052215, -26446.41448548849, 6426.579212688651, 3756.32941147208, -4348.493126550312, 5397.550629021611, 13696.605050528367, -23419.88799224211, -991.5976140249331, -62717.94298872132, -30878.545882398255, 4021.904027754203, 3297.8419518685055, 16274.855400427215, 9458.4073726591, 14094.12673387003, 4832.8789068124515, -872.3257798106744, 38664.98212945489, 4442.274294157293, -7753.473960428926, -20423.51570131523, -4715.308446447569, 9187.407314730404, 7607.0016664091645, 23681.43860810667, -2483.3350022290324, 22872.04616759245, 19574.343515908397, -13965.870786929027, 7388.389884860703, 11882.335039925021, -163919.38117163884, -97077.562557032, 846728.568876707, -36597.6901608308, 16853.03139261394, 6698.00100774571, -6274.755238699112, -14846.204256021285, -7129.185652344701, -6483.2389909955455, -45121.13718684878, 48936.41493442131, -441.2803299472318, 2563.4045711710746, -3567.540625136647, -15327.614768273916, 10083.19570662817, -171123.99752080694, -57240.326825831, 6994.331188087425, 6913.387607357982, 1790.0713049116082, 9921.55967697449, -15639.331607219263, -171.78603671282582, 9257.128982226943, -12180.6953796738, -617.7938766869945, 26857.971622808953, 1678.0021280191672, -4937.691475957366, -5354.523527082381, 9665.500558337671, -5986.09588470527, -6724.668056496055, -3465.2040800394625, -30990.45426949026, 4477.679671782665, -1046.4574164011901, -15139.130181487379, 7712.530919652673, 783.3507437305423, -6004.444522302698, -10607.888880098268, -144037.0464728143, -4915.841874686923, -110214.08898230383, -48134.91252760982], [8417.490295286208, -14561.097932122606, -2269.632154114988, -7972.17432256895, 18863.540065859426, -10090.410906885549, 15367.091405204032, -83745.29907660036, 7913.479567400911, 2426.97361542729, 12456.210726623662, -457.32849556114326, -245.27366307504923, -32100.296462697042, -12084.006647455062, -63856.140290981115, -7450.452728715666, -84.02924923765828, -35599.309160892604, -28388.72212952699, -8537.744669411652, -148803.21122133065, -16745.459772535105, 10116.42839935929, -8606.575093491025, 12899.030126106894, 8294.829419049014, -41841.01897227006, 48.65559113178939, -6010.594215060885, -3572.941071513916, 21736.831847704478, 23996.365074817713, -94457.21993743636, -36597.690201149555, 852648.7278656667, -73266.72805072379, -2034.7923798546765, 10753.892763922551, 36988.24782150321, 3556.742723733769, 13016.056252446546, 22933.240707637364, 16700.502094107218, 822.9856190122149, -4574.401433348148, 13714.633902020398, 13925.09373852906, 16410.551526637177, 2790.392297235517, -79040.3548861986, -8496.840538664394, -8473.767022761114, 15225.950423788561, 11024.868181735546, 15644.35521979171, -35030.088546397616, -2450.823024052461, 4490.524949064237, 19219.97008801948, -10036.028954783662, 12982.906432535603, 11957.34059725409, 5611.836335901227, 3960.6534566417026, 11942.89140210387, 10158.257691046834, -4884.808886907897, 11071.93704816621, 6231.724703200616, 2126.393239401348, 12487.566809836462, -14970.221533970827, -128589.07350203123, -20100.917566626387, 11920.029984076513, -39283.95697092427, 2897.186338865683, -82677.70130423506, -137773.72089698506], [-75651.02560610298, 14800.326406434267, -109137.00982416848, 23415.830281189676, 4174.648670720351, 19281.635954886595, -15524.1078470185, -19656.64055901485, 26896.88934507144, -6025.099200493109, 35822.47045211439, -3933.8223654485573, -3512.835884974589, -30692.710244572667, 1532.5746136683279, -62341.86136823258, 2410.7721545969216, -22839.47359217216, 24174.58653795043, -129868.84242005058, 45494.640059568774, -94237.47079820768, 22850.480433792625, -67454.25119119974, 5336.20041367572, -1873.4009626557158, 28617.478766641434, -88183.55824653266, -71621.94952882749, 30593.40406228755, -33080.14405118589, -13304.465015586944, 6715.252224997857, -8374.15490113612, 16853.03132605754, -73266.72804836697, 817959.3732139041, 5341.68891382809, -56371.78260222624, 52562.20635553012, -10483.550027054374, 4572.290329790438, 39054.10603370655, 29925.578190610464, 42324.610073227836, 8753.589731110276, 7648.366441658769, -51208.06951281341, -24288.394392513244, 16005.72139335585, 3023.985529722302, -29265.40906877659, 3140.147889904008, 20373.84435267946, -4407.037594404183, -5596.202705847047, 4707.716543237692, -969.8164349884007, 35619.24827914962, 4888.649446263022, -43982.06791975555, 35111.46355487247, 608.1042886334852, -8139.2136305963495, -14026.232012561799, -15965.619555183952, -8567.527659444899, -120408.15809795767, 3299.5193673306853, -6946.732741914533, 44674.91228581125, 12293.03710227508, -3541.001812571475, -102050.9964410947, -12924.769894247449, -3086.328569926995, 17212.110956526798, -12465.844005117877, -505.71143319068017, -52301.42126274825], [16342.781969862232, -4975.224621788359, 16613.371291582604, -25170.43190048109, 2081.0064094507675, -55205.345118612095, -6273.166025019037, -6310.136652601998, 5081.593225167178, -4910.619100578917, 4061.7318961400274, 3087.9662617980816, -293.3390550602823, -3793.2305057121453, -85822.07677869133, -4319.2748061387065, -114264.9920064143, 34786.26543875687, 10493.475964877425, 3302.715249987881, -20231.2104123132, -3474.871908925874, -5500.464075971582, 14182.234669109002, -101563.02675332871, 4308.114724600962, -3483.4302172656135, -9791.395894544554, 7025.734707218987, -19090.983875445963, 29353.677783065596, -1188.2413576078734, 923.9489017610431, 7568.201399099497, 6698.001113342746, -2034.7926703080884, 5341.688936346481, 840656.3551681916, 6362.105776627738, 52063.451449571105, -98553.35006541017, -161700.32809702904, 7949.282992195136, -23014.852193302544, -8168.90851284742, 12877.535221679625, 7389.160511287194, 2793.6821117015493, 3338.871848210871, 6863.805059546929, -5145.178705130803, -714.1010930636357, -94502.52555192866, -2292.6084678176508, 530.7690650886766, 8500.645460873155, -6708.295184083973, -114020.55732914715, 47828.819671833146, -3447.8416612277165, -10747.89368165801, 3191.8751107526955, 1395.0615484783123, -33247.25757257899, 941.5490053876086, -283.05494708851916, -1397.1641657448367, 10865.376274284938, -5367.179006407592, 801.5564523701112, -4370.426738411885, -4953.706120241917, -34148.687997755675, -7181.395944733902, 5524.668544741469, -131645.30575041467, 2637.377147337917, 28725.628685220592, 8880.215814652825, -2095.0312878304208], [-79796.63419838116, 4614.371273376628, -93786.50660624554, -14065.779216933988, 23790.123631855367, -15235.735325470001, 4621.066026319561, 9704.734176286316, -7699.573521078557, 7420.2617154285335, -7625.435522335859, -5580.912929960665, 2502.349482964211, 10445.976325220918, 12151.357424436417, 7404.402696730587, 8058.674234870793, 17406.99571592136, -9658.793702138064, -60309.79678965025, 5334.9581950504835, 9845.525073720293, 4852.850865407053, -55454.15397365223, -23126.996668709085, -3521.0462160627076, -1162.249787725467, -4801.66784039714, -12702.986782666125, 20462.373568489267, 29944.69943400009, 1990.4910055889657, -5768.817172522446, 885.6316655588417, -6274.755343793154, 10753.892699040312, -56371.78273323963, 6362.1056008387295, 879116.7656303395, 17996.428774777294, 7443.28844495587, -3366.2743611606834, -14066.693915454342, 32143.928674033454, -51741.20777218809, 5277.66366193775, -81546.68557858652, -80137.7134528764, 11994.219370553303, -10848.941703502964, 7318.397459335948, 5067.388736425764, -17416.74737102796, -2608.701065496228, -2480.566062670373, -38760.44192431538, 11500.866237093245, 11095.345278107707, 23301.436439972196, 65.9555908295051, 8030.2288102666735, -1294.6153427198108, -98430.9736996999, -95215.90950006577, -1201.0249544250123, -109311.62127339201, 2750.671442143164, -117347.04292494853, 2961.014876159057, 937.4912912977746, -51759.051673432434, 633.0971961246369, 25507.85882329639, 9392.472336372773, -7773.713590705945, -1694.820674935254, -2252.7370887472575, -17530.02334758383, -1905.2172794204757, 10612.494649482986], [-672.9235347230809, -31200.230699817144, 16021.034005294026, -4437.038133813746, 8031.985754764574, 10120.655738004283, 1286.0204713838336, -19478.106022920478, 5851.061664529311, -5019.279762622051, 26011.261086993087, 10542.374644670985, -4159.323643775783, -13697.884418276424, 4542.563687619958, -5385.761928460189, 14530.511827908686, -31120.107520243117, 8553.468551173655, -23257.00519180095, -8947.573812879278, 50466.1921006874, -25865.18078927142, -8020.3186738505765, 47333.265075715135, 10850.990925839871, -15555.93165591698, -56254.82715606375, -5626.989760350426, -625.8461560627089, 35092.74941722088, 14899.373359967936, -21296.571197142006, 25086.860724933464, -14846.204199286014, 36988.24816712123, 52562.206305847205, 52063.45140877892, 17996.428713807316, 562182.5534230389, -35868.50774600661, 11067.57559484356, 29842.507461275774, -119940.26543339316, -7352.634951376868, -16391.248188665977, -13875.640503861801, -79105.36947903309, -5934.48047027939, -16984.144837840737, -27498.767256375508, 9511.762994905142, 32332.363244236945, -6524.376760958888, 9657.84030942297, -171472.0661168632, 17206.638896169883, 59386.612712151924, -335103.51447957836, -396.1245480867818, -133293.80695608965, -526.4560898177722, 917.9364410461956, 29116.06060931464, 12042.735285585315, 10336.43115344489, 9725.379254384643, 28153.104858047194, -7886.274702654205, 13115.499235394096, -11408.029017525263, -10265.743640299585, -40292.56379476867, 54396.86746586975, 11956.294931653103, -25942.64913103526, -24047.295748782293, 742.2963916622508, 18999.369208636137, 16083.086684672517], [-13710.00020704005, 4206.240098467549, -14315.501558216176, -40386.00289218531, -16596.947351595572, -48360.328706431144, 5139.205586675245, 7719.675655563265, 6278.181102011057, 2826.5447908365827, 972.7206179003053, -1294.790146341463, -367.47868569747334, 5337.167968079326, 28024.40887258016, 3696.3575091658854, -133330.21906936838, -130714.57273900314, 938.7126892060683, -4741.408238813616, 33284.96407827187, 4204.078202110177, 10735.089949170433, -17909.930865650596, 19930.14875352063, -1555.6025766704402, 7134.009480900087, 1669.9268718367903, -18502.121042457755, 2760.2227387763387, 26733.99463999327, -3160.3480525661116, -5355.383728167775, -2864.15565723247, -7129.185528637064, 3556.7427231919974, -10483.550101676356, -98553.35027162264, 7443.288207354379, -35868.507955270885, 744051.3041738581, -207538.9800279187, -1675.882014527076, 9710.951917157747, 27154.887418381903, -52412.07471163116, 17276.4300345007, 6989.435572475184, -17437.546886805332, -8448.080068535897, 4842.956451396019, -5349.063632311474, 27584.95781359336, 4000.756002494307, -1631.9875554485568, 5172.136713961465, 7543.308503534285, 16204.250084601445, -17228.542914421603, -425.2012585364867, -291.0748501448619, 9360.614260714276, 19778.79464866406, 26148.78369270898, -3388.9949079847106, 17282.876226944863, -1138.8082717671334, -4250.449123910231, -1142.379153335003, -831.7512419976349, 32942.745112953955, 793.4080427449276, 20781.79894252153, 6180.847550039846, -3055.2526632213007, -263364.07427408185, -5229.6779384938345, 14662.344312853611, -4389.82651509217, 3412.0353625233433], [-6003.268512334549, -9899.790444524078, -4789.586482538686, 30236.43373077923, 24478.407765764674, 14371.496103363555, -3751.420940696896, -5434.059348358678, -3070.89296326395, 9395.319931383921, 6006.140978262211, 2042.08796722874, -945.2751985254669, 3840.0749462438102, 535.1243237088858, 6782.022713566937, -103583.6543311564, 23167.714928539397, -3690.1512805106245, -22420.45393210799, -37382.93581089628, 16269.501302223745, -14348.101264695772, -3380.7209854938183, -620.4205300343075, -521.3517904832623, -14707.568951639718, -18275.159831204946, 10984.466986947991, -22614.380627406383, 8756.913011186662, 6984.401174642802, -2906.421162379559, 5021.172336656245, -6483.23913563342, 13016.056461427546, 4572.290398202194, -161700.32809549881, -3366.274473581908, 11067.575534167489, -207538.98013059824, 701395.1739437528, 5050.281359013775, -14688.965054722828, 22024.139563344528, 35173.71616743108, -6509.988582320451, -11071.709913845638, 16083.689261920423, -6561.49543378343, -10396.945350726284, 10761.811378079503, 4621.990788940402, -10846.268947249593, 449.7465943390326, 12772.916084410728, 7717.888730625633, -87945.90519248169, 68556.24866510567, -4023.886081941303, -27562.05507208295, -3176.1923165842136, 3949.8499606477812, 16407.034017121205, 4569.497495230241, 4178.4958147544485, 9001.837735494872, -11346.071068625628, -619.4694625445094, 8797.456242212014, 14795.214741489954, -7549.665456972174, 15152.214562895528, 14468.676100923854, 7709.107665134642, -292266.3920611494, -7546.683879765833, -31169.76071737567, 2584.553274957591, 6987.27419670447], [-13785.252209363429, 20776.62685930837, -7891.15582823667, 10411.242310925485, -11931.825889197382, 9254.656070085653, -21738.217172244254, 36291.28843797932, -6081.040888197242, 66315.53190790396, -321566.05488689616, 5625.509179711871, -18047.393052855674, -780.8322722526078, -12030.867340440976, 17346.681743956153, 7969.9746908130255, -9116.60086347582, 17213.953283838193, 43290.165015243496, 20872.479295222394, 21975.512645726616, 1176.0526075828636, -15086.332347952904, -9339.036234257583, -52755.24160348259, -8747.29645312264, 33119.64006328882, -14698.210591053243, 19396.254383027826, -10329.967408060773, -17893.90637510894, -23228.113138344637, -82554.61264813853, -45121.136962596414, 22933.240741080925, 39054.10607141068, 7949.283013018801, -14066.693728040873, 29842.507659054038, -1675.8818603999891, 5050.281556307923, 652501.5306596095, -115854.86425119512, 7515.445223828406, 5341.010879186848, -7412.260351660477, 4033.2827392555173, -18879.276550142426, -68137.08287640523, 42775.76625705289, 11677.987878121961, -12777.273558385794, -12113.615196433942, -8665.69207713048, -744.906251970344, -195399.49088314577, -2460.7874060330405, 325.7331842608867, -8215.464068410629, 23605.99808332281, -15838.07035912054, -9545.214149950982, -14040.832959743098, -1083.1734847067642, -12678.928355869633, 16304.845377873578, 1269.0166784133978, 22745.577969727197, 9636.161561762907, 7664.844350545476, 4712.573699976163, -7510.29361745198, 3504.488818572416, 32196.752439764077, -687.0958546724095, -536.9633433743469, 5040.837635871274, -89703.11060433707, 34061.482351839666], [6278.692882478471, -1816.8403558051652, 24232.890630434566, -26392.581990656065, 11551.442432894555, -24056.77955289666, 1679.47658185881, 3403.207382862394, 8533.79862759725, -28181.485402073286, -142611.00378450484, 1964.379610628568, 14223.531715361434, -6765.9255621431375, 28079.10917677205, -159.90690375469535, -16445.08795067685, 25944.136585751054, -1665.9003198728608, -16187.47922214796, -17658.411302050325, 2977.927963973091, -11445.01734952545, -2638.3368384755727, 19709.40169842365, 27727.561367383114, -11928.097385293122, -152086.95111437252, -4997.222853718269, 295.67886016734366, 39157.55337341348, -6782.294680262141, 31728.05307149405, 28811.192696509446, 48936.415017170955, 16700.502301506425, 29925.578201231743, -23014.85191432679, 32143.92859780417, -119940.26554152602, 9710.951621170387, -14688.964937329065, -115854.8641175579, 623949.2230982549, -35885.816852451346, -8841.558338166971, -18996.872815982264, 47377.139474323085, -3794.6179968558226, 53281.398115659365, 6315.977026790576, -2110.3577854621544, 30704.79589140931, -10185.733485504928, -2411.34137769521, 33633.85818909308, -181479.52555964846, -1501.2366983713384, -965.5567617965137, -14052.962331882847, -229425.0041382502, 5730.3039656535775, -6001.422519314373, 30515.980049717684, -1076.810503067758, 9692.61029114116, -18245.998712371053, 54721.07704631557, -22879.60555759636, -13126.660834473601, -37516.40116840404, -18500.81476629303, 17869.046297653134, -50706.3518546568, 4692.392982328368, 3208.177988757336, 34100.82500264652, -7582.627027819658, 36906.4276329423, 24219.786633991844], [-26165.097952999553, -9161.286477609372, -7905.576576791268, -112890.10200126343, 39840.651734799154, -95151.10304217791, -352.8397379642956, -10895.238727095782, -8227.360944177542, -858.7219273674772, 2071.78980837626, -2504.052031893968, 3429.652452610536, 6103.8774423656805, 11735.98859966727, 8725.411579118709, -23536.826617598123, -29084.09953987325, -16848.832022298448, 38344.554052080304, -64470.69103617745, 6866.199339925498, -13879.884260566989, -15087.097116791021, -25916.151501521355, 8217.791812297042, -11505.031665075712, 11853.564815807857, 20341.98031653732, -7370.889709973546, -15616.361563421298, 12259.430296844661, 10602.090409825802, -2390.9700214711856, -441.2804414457966, 822.9857194199064, 42324.610059873026, -8168.908614274856, -51741.2078968449, -7352.63494370918, 27154.88736610223, 22024.13977046025, 7515.445224857755, -35885.81706286823, 846374.9615382124, -91254.82383429774, -110924.1271509713, 24013.942298158945, 27967.74965507485, 8700.847199770047, -16521.71506097162, 7429.80361541954, -10002.538328910556, -6927.533798231911, 1381.1897108321841, 21762.348118359165, -9141.40694213895, 8314.90812234368, 12153.778503905018, 1805.378951118681, -5034.942496000248, -6032.64711517104, -110827.39690700074, -67578.00386292169, 3337.52177562282, -92082.16135208143, 7000.835170165861, 9128.878019834381, 2103.9732428780007, 5747.901750341708, -154999.88727294467, -2410.095508679164, 11261.374328791375, 10311.634610980935, -4248.4616528205615, 35985.477967509556, -5039.937514084159, -21832.267990914945, -1591.0873353040004, -5196.84504344675], [4849.818755792337, 607.0531796276485, 9735.422036682143, -143517.98606104258, -5289.221787853819, -111802.42728107644, 3014.3968270775263, 641.8517283688007, -4187.056604089259, -9326.704311741772, 3257.5852667186714, -490.50230360006015, -258.2354797543022, -8791.847210026444, 17493.029427651145, -7329.9409416909575, -54655.35505269574, -224685.7190765099, 396.63768257723495, 20263.3620582155, 20609.845619540774, -5956.848108864749, 2093.727793759978, 3650.938944623741, 2464.509778517288, 809.8369239338913, 5214.6616983744, 1947.3390573367733, -4690.148909205374, 39575.7709945418, -178816.33817076116, 859.4831864439695, -2897.1499108766693, -160.45509658406695, 2563.4044725270574, -4574.401594009898, 8753.58977804496, 12877.535196800383, 5277.663960020022, -16391.24831892472, -52412.0747139274, 35173.71614720235, 5341.010743511679, -8841.558277692484, -91254.82424405564, 808068.9999143953, -22074.304500986113, 29238.089899304076, -5643.65665061107, 1277.2879681048146, 4729.871412013008, -2042.6712622549699, 11826.31978122286, 5285.862828326203, 1968.2831930268774, 15825.495470438194, -4026.868948737027, 41367.58625335232, -23646.098267889556, 5430.844221045755, -1044.555469609565, -6917.691855990696, -26500.42251846596, -9863.555682110713, 466.02887121138957, -15604.220970764147, -2711.62773686379, 23540.71501306697, 3349.86915182834, -3097.1333402355262, -82626.86839787311, 6611.388913454227, -1925.6124004635512, -6640.368344043491, -3637.5199708438563, 2525.074883675719, 2596.7750147107395, -15966.589062088238, 914.4218855897685, -2237.025082281545], [-95281.13320301814, -3350.8866967341046, -72689.09079719729, -36879.945767655416, 46240.475036154014, -20979.605178148184, -385.02915435490036, -2678.17969901354, 13775.48972457927, 3712.4489885141747, -8072.198359698678, -2893.6197659233717, 2764.015572689475, 4655.6193042499945, 23679.29261528817, 3250.129193863799, 12560.131416420554, 24702.347909508808, -6815.1299757700535, 20032.403611206697, -98265.53908075104, 19350.732573593643, -5536.5081985265315, -87318.12549853411, 14295.32256923843, 8295.482116792415, -8543.769867479488, 17756.24838839194, -30824.885785653507, -44436.87723386397, 25430.601457764562, 4185.667410031037, 3986.0075957040194, 1954.1159178952294, -3567.5406699981904, 13714.63355737105, 7648.366316739997, 7389.160631462993, -81546.68546002235, -13875.640696346127, 17276.429877390932, -6509.988637487803, -7412.260386060865, -18996.872802875074, -110924.12729513677, -22074.30441898055, 860138.9133083728, 10181.151185742212, 858.8503539724785, 257.0681428827461, -8044.171630216246, -4013.4818085936677, 20679.82972638375, -8518.719197239261, -5860.330616853236, 15084.262155761753, -2896.334510942393, 4700.01138619354, 6317.126845377329, -6691.089405632573, 4759.768149971902, 20957.37485450215, -119201.45167763176, -42647.76882325829, -5345.959188218364, -101818.57085951879, 6478.641779766198, -33409.95756471454, -3032.845161541171, 7255.824333303375, -123242.56668008564, -8489.372758564874, 8298.629204388191, 23398.57840088402, 1365.8676741946292, 2044.201645805064, -5480.313306688897, -28336.474126522204, 332.5553114971597, 7099.427267091401], [2712.0510742791244, 2392.6227773939227, -29019.616649110303, 33951.23836088314, -15962.792434095754, 24826.468788819937, 4164.344904216468, 20861.501368685895, -29678.77619539025, 17721.199855772615, 12746.80780326348, 229.59154184150375, -2573.129041587016, 22937.267305697467, -36646.34092904862, 31633.201262899445, 20431.078080983076, 13452.110055261106, -7616.325272518665, -144604.10850404028, 17054.751159132422, 9461.770668848092, -337.12228421050565, 25210.35937473109, -58830.16986488539, -19250.002188569844, -9787.832591736193, -66685.32439207555, 37607.112521512005, 2735.1518693364524, -48672.09811214047, 1741.338073958516, -14415.582198246011, -4278.3036863960215, -15327.614816244128, 13925.093804722643, -51208.06964717867, 2793.682291252141, -80137.71335598097, -79105.36954127642, 6989.435337040856, -11071.709674193924, 4033.2827829149155, 47377.139291980566, 24013.94231193124, 29238.089776963618, 10181.150656654925, 802686.5667676205, 20168.10457486655, -23389.52147237307, 13122.743926021734, 24594.585833376652, -69395.2317210526, -8646.66947732129, 1856.0617501107513, -164959.3665535331, 24057.393108939148, -8244.728577849379, -60977.334287414415, -27.721993835675633, -51713.8760121857, -33017.4611017677, -21067.260601461792, -95198.57551738033, 9123.228149866387, -48413.92459780814, 5971.960451056496, -124685.69472470321, 6244.298191927334, 2554.191072504695, 26893.658473537173, 511.63484624254056, 18768.180958954585, -3909.297852077557, 6206.647935960046, -9231.728286709787, -7482.940438123263, 43369.906599989015, -8323.005243629066, 17393.699270941288], [-62345.86870349489, -6847.135395806926, -44033.90491616701, -2556.8243097831173, -242129.74978032045, -6261.6295823147275, 5476.649257364472, -7267.45463679894, -38120.57403004307, -18220.104152333126, -15622.523484606816, 12742.172798147396, -7838.865987605394, -105875.77165544847, -10077.46140747004, -79282.51921355106, -14034.020026658214, -33966.43349147804, 5985.918562863595, 14573.416637949003, -25187.878496881218, 12825.454884206654, -26022.356954573177, -99413.48897815192, 1372.6699777065735, -12238.08467573714, -883.8698348430967, 11022.195587792496, -163165.51866747558, -108095.17008044338, 43442.39883946397, 2603.0923790209554, -18663.859417195617, 17221.226772486752, 10083.195736310368, 16410.55145732519, -24288.39430610292, 3338.871745348022, 11994.219131677111, -5934.480426171204, -17437.547152613162, 16083.689615462585, -18879.27669316691, -3794.6179100464433, 27967.7494822926, -5643.6565601045595, 858.850523769436, 20168.10419146109, 786936.0072578124, -7264.544849013621, 21800.849656840397, 15290.3592161418, -1221.921019482335, 8372.917958467171, 15532.71547671364, 5886.0892994934065, -2781.145157914421, 5293.962729046506, -20288.186809318482, 17145.895001298406, 9310.128042287433, -79448.69282863218, 17600.37272324434, 24570.826356538062, 17711.834305294655, 19157.870907083307, -5217.702238566318, 6203.266758570184, 14461.001981507894, -7902.293747282794, 29995.649207814437, 19898.38985476273, -13622.98673276338, 11280.103167588566, 15198.575846674716, 3338.020662438918, 15887.887973945019, 12903.435666841087, 15705.04513785413, 18172.12960573503], [-4494.794112999688, -22892.27380321666, -4998.914483999136, 6774.609121902493, -21480.360364619315, 8389.822963951294, -26400.631864434148, 9302.579024943707, 4013.1875963013144, -88840.60931274341, -46050.4819483778, 4832.418196287404, 507.114112613788, 25047.702976307042, 11039.323724861195, 30001.14577214835, 5058.491785810125, -9246.840825627993, 81357.18093030015, -2493.573022162732, 7596.305726564924, 16695.822234982308, 12831.872602931777, -3038.2991631203126, 9772.018593542594, 22284.305033544526, 6232.569034043043, 26853.76161535932, 4677.856520595866, -6644.114583067264, 1651.0740495134637, 605.707785954399, -223780.13309043428, -82114.53163128185, -171123.99769435677, 2790.3926050430073, 16005.721304576806, 6863.805123568919, -10848.941760553213, -16984.145059821276, -8448.080003097264, -6561.495543054799, -68137.08291895971, 53281.39812346611, 8700.846958205408, 1277.2881918473286, 257.06828181788444, -23389.521453046946, -7264.544758240172, 783046.7935430575, -26228.765375500887, 269.8442329866984, 8691.244190134175, 5089.2704757866395, 6485.3878363071335, -19356.138386879, 7550.192359454821, 8345.030025223607, -8698.487174713498, -5151.784153220509, 27838.239553549938, 5474.0920359646825, -1630.4942138412266, -3826.101170787015, 5371.902859441699, -5034.440711352427, -14969.145965461199, -14102.332358435266, -39169.967734590886, 1817.6243172070376, 9023.459048152134, -16069.202573207267, 9629.743334665303, 29759.917156280062, -1070.2652628625644, -10817.210649078928, -155583.11498607474, -6397.238714801724, -101786.07240106635, -7994.855662129], [10691.966596487284, -19281.109298951276, 12912.48921740494, -1604.6171577683615, 42630.57860087348, -837.8571907180055, 22329.75566091811, -129414.89080714488, -2200.90556289145, 1391.9737813092968, 37551.03544733165, 14386.367949095315, 10635.131394878892, -70281.68017948531, 4670.976220475231, -82050.2483134556, 1396.1425796807682, 22628.069832182995, -7049.931754343495, 20724.017137931864, -17505.241614544695, -58661.17141662816, -101567.77912643488, 12245.97650033411, 1616.6580278990266, 18651.175893661344, -70629.6936489427, 11084.50848492184, 4873.519029694729, 8851.302450319952, -3817.395501081039, 1079.747282060225, -11939.053881324642, -50643.12646677954, -57240.32683181701, -79040.35487759457, 3023.985504981666, -5145.178517051466, 7318.397364325209, -27498.767233000985, 4842.956380639286, -10396.945230342335, 42775.76634290948, 6315.977035603036, -16521.714701886245, 4729.871301393207, -8044.171718409719, 13122.74396187538, 21800.84981142819, -26228.765524640028, 863270.2499466372, 29261.70629006245, 3324.5965370997324, -47386.84224247321, 2767.724642845857, 2453.5618910589874, 17065.78660474278, 911.4573334856275, -12859.719155511062, -36068.78457267133, 4900.847956398228, -17512.185615836064, -6423.343851849633, 641.0900466927664, 16171.121888132795, -1864.4630556228194, -5077.484385768125, 19217.26064748538, -49014.55199442503, 2065.9541635140163, -18794.941164521475, -60351.046467810345, 5530.366291915567, -20751.864125362223, 31590.32784965771, -4512.363677260967, -75319.51971173189, 4119.595645056959, -49615.910231426424, -104338.64747179928], [-22203.69692178659, -137430.08359194503, -20871.966725045186, -384.8955149047016, 38934.96855347004, -1717.7352932033498, -12670.032081138079, 32209.35340369609, -19165.49040063742, -14555.295844199825, 8141.559820284404, -123165.00716246624, -115866.89546863038, 37585.46087019019, -12534.094269694364, 20763.451810708157, -7452.752855235577, -9352.48057376705, 86357.75613990647, 929.9426539230504, -7349.651389072867, -17347.584843450844, 45237.56603491255, -24605.440252817763, 1097.182626532318, -44570.00731424271, 9549.811066457558, -7579.523782506752, -9711.114271589298, -5932.350252245084, 7443.122356316699, -54159.479012922166, -13802.148642671105, 3686.2688637328083, 6994.33110992099, -8496.840477937862, -29265.408987884497, -714.1010008098433, 5067.388734342009, 9511.762685847549, -5349.06350706332, 10761.81134410747, 11677.987974297737, -2110.3579050097887, 7429.803681282949, -2042.671327765179, -4013.481547835259, 24594.58573301903, 15290.35952591542, 269.84438328415473, 29261.70595345628, 803531.1906648275, -899.381118600573, -23067.443854300443, -106928.5936627331, 16855.550117627085, -5230.799002286967, -2571.8944517924765, -11999.105985251308, -45014.872976924315, 521.3181443009685, 32136.64595869203, 5155.721696443186, 17965.296370142692, -141307.91556787112, 7957.523588540346, -13679.477023401108, -43.3850627041369, -22946.255798379327, -223.61025889804566, 6338.564703420181, -20951.712881163898, -19618.457663685534, -24114.85222364845, -164024.28553992134, 5486.317688409398, 6162.650813643159, 12441.241572059613, 6161.735591757499, 3486.1393210520096], [30208.644059532755, 4904.057681774603, 21143.78682481839, -31808.30196815315, -19319.70405744454, -66912.60299604504, -2952.0549511233703, -61.14057833101487, -295.67102503396114, 1814.2815967791657, -11814.942843466857, 2805.1243217322994, -1083.088921893194, -2306.8880826878963, -167765.3718689396, -737.3828692509753, -64703.208725864235, 38663.37362796797, 2361.8379118391636, -5448.862248547722, 2477.012487099983, -10251.447903563068, 92.57050982027256, 31855.48696835064, -181863.58009685887, -3948.0430997527587, 1247.4299546027669, 14583.359463541234, 14959.84934798103, -11845.590550302917, 5810.335248916955, -5988.425323635339, 9489.748698679703, -5855.974684292895, 6913.387310541654, -8473.766928997755, 3140.147885099426, -94502.52566730497, -17416.74730355361, 32332.36318741991, 27584.95799382429, 4621.990668566444, -12777.273738956248, 30704.796109362687, -10002.538459534537, 11826.319675262563, 20679.830102354306, -69395.23216117099, -1221.9207317459473, 8691.244619961835, 3324.5962826834048, -899.3812635680328, 812313.0825343112, 971.1619605914824, 288.5231572596164, -83777.35759106939, -7062.424899340377, -112612.17986984363, -47012.19003229772, -1103.884259305428, 31428.378520180828, -4778.208535835612, -6412.557448780097, -101329.32369331946, 421.44967439626373, -20426.93736774634, -4165.059591506284, -15546.998893700753, 13.376353851514756, -4489.423882214405, 591.5796046881616, 670.4488445475114, -82105.59221318664, -9736.604676434465, 5645.762894371651, 39877.48482216542, 8616.873616259507, 85818.43928264543, -3907.4197279606774, -4795.950303126303], [3585.3217997986267, 47244.66050060501, 6414.866513405963, 7305.907487228184, 23780.173981873646, 9269.614268545562, -7223.135407444237, -46792.38155135899, -65848.22157203493, 31151.86836684604, -9928.066028121832, -60881.245560853386, 6598.887683479871, -42553.91832558728, 2386.238991876867, -28498.88355659367, 7196.725659010896, 12747.865674067407, 32393.287036728194, 4521.930539796721, -5081.242057087473, 21786.093401392285, -92066.09070528358, 5213.974868442237, 1688.2398259409974, -17885.757191144945, -108522.08413337581, 5924.630365400696, 4036.7783770340047, 18051.775228793857, -13758.71272525427, -62607.591343564905, 10867.609015996351, 11439.321401034651, 1790.0711925859878, 15225.950709741403, 20373.84455340049, -2292.6085996445845, -2608.701127608735, -6524.376486303227, 4000.755887487983, -10846.268918890544, -12113.615478649208, -10185.733566975545, -6927.533576951363, 5285.862805870787, -8518.719269874864, -8646.66978618826, 8372.917588836137, 5089.270761278321, -47386.842297594674, -23067.444224996423, 971.1618237868263, 892657.314544645, -80125.22945004518, -7243.613947408199, 1703.4994684244198, -4987.80695060453, 5568.84743983813, -97319.0587450166, -2694.9232337400517, -66745.75145988376, -6704.250785488048, -2988.456013036412, -63035.70802766113, -5181.489176626205, -23581.588340770857, 3194.208854528531, -66156.65739857478, -13683.263463176045, -9721.269813905923, -96118.682851305, 7013.234369281968, 24506.40055947277, -24372.31969795123, -5951.558782383484, -4906.653878400136, 1384.3166450712713, 9513.851411707303, 2032.4838102973517], [-7117.14052761497, 15255.101399223851, -6819.132628510014, 4916.213727992066, 26610.11206593604, 5497.832417630388, -10500.860943900812, 5896.827838043909, -68718.30180487249, 9851.210708720768, -8350.228005583811, -113368.4127757213, -22437.96957313828, 7185.316731701686, -4437.768500716275, 9681.05958396821, 1369.84021361796, 67.60919625530212, 54667.951183924, -4246.403351682793, -5746.955375306555, 7237.995177304083, -23027.03433597581, -5244.84833157426, 1991.6346224378096, -15777.252606300843, -60268.16351598793, -3926.731845422276, 5688.798226706487, 5085.793374445968, -4399.384842639189, -65344.36873030064, 3053.2670952180765, 9739.00945419624, 9921.5595119129, 11024.867994176097, -4407.037831885297, 530.7689879647053, -2480.5662436552407, 9657.840201105073, -1631.987496939849, 449.7465439007189, -8665.692186445018, -2411.341262252389, 1381.1897937566634, 1968.283494570145, -5860.3304509943555, 1856.061496212276, 15532.715504986485, 6485.387983116236, 2767.7248520408875, -106928.59361381392, 288.5229512466956, -80125.2293336713, 889015.1281055772, 2836.0696697941326, -6155.048405643728, -3224.3537582939493, 963.5384134914141, -82538.05107674115, -833.6289066383891, -37174.84151245538, -1757.8046602673674, 4774.8992110662675, -116938.11552230554, -742.2750158454957, -22704.79019229458, -4456.099303366039, -48461.55022783239, -11020.945394497061, -552.2315867498248, -66208.83360071466, -6420.530447089216, -446.37442661834257, -116253.93397727294, -1015.2018204383851, 8222.473216351002, 3693.669122934495, 10087.594743769512, 13858.007246720936], [13491.437804359453, -2833.258978009165, -962.3089337626047, 21688.333457495697, -15358.045355159918, 14254.543874697922, 2629.616156934139, 8136.363710027436, -15566.023579908804, 17283.5790941475, 7022.009791140455, 4122.7576513918975, -4784.930579935192, 8591.437875651363, -74109.05562488383, 18217.26346086422, 12709.660517854569, -2065.1744013988828, -6336.361380386536, -84279.97244690954, 7694.7837684283195, 18262.335797888696, -7495.220068475248, 22405.084232585174, -65565.77160988245, -14791.409199925842, -10107.21250731885, -32349.029704064465, 23250.983293296358, -4168.000463603959, -32706.317446586756, 2764.750165915287, -8893.13986525097, -5834.290676336355, -15639.331608640243, 15644.355135977949, -5596.202642631152, 8500.645575160037, -38760.4420133529, -171472.06610530353, 5172.136896466237, 12772.915894752225, -744.906030821747, 33633.85824161928, 21762.348015027434, 15825.495403272163, 15084.262105181702, -164959.36625265217, 5886.089169853184, -19356.13836531588, 2453.5616030979277, 16855.550052752606, -83777.35793704307, -7243.613918837488, 2836.06949642775, 813640.0451080395, 22253.20186765755, -14486.299200083175, -172316.8303498855, -165.72499867733305, -35442.3166143904, -21538.028946190996, -3343.907663010469, -66768.8312910292, 8155.608993523522, -20833.082755736206, 7562.904524787206, -63598.73442516975, 5594.033312829676, 4884.0575039288415, 23824.355949815632, -608.8784649930194, -33343.5917387618, 16255.881449977458, 11501.066716468682, 5577.006473480766, -9321.788435810326, 56723.02369891115, -10005.963050093993, 12627.051453630787], [5574.873005690629, 18800.08402585586, 11409.16015777504, -9677.145559622542, -1848.4638518061952, -10937.370611287186, 3935.245274317939, 12013.723967498554, -1572.0945607040965, 19128.838514395804, -199510.70623525127, -5216.880719655694, 506.00463906758074, 5557.690328736201, -8301.874979127671, 6578.970705220317, -6063.1192046876085, 2463.405463418059, -22766.358119390083, -45.95251852160621, -4155.5064013455385, -46680.70481567866, 10373.93746856574, 2098.691985934783, -8925.63280746471, -11265.715067983348, 5759.622501300841, -61846.84669279957, 786.3687364857028, -2490.876882233874, 11487.866890438847, -6322.272248969129, 27575.259898609253, -60496.07214352903, -171.7861391307197, -35030.08879965642, 4707.716502290772, -6708.295287861167, 11500.866006152015, 17206.638654879043, 7543.30840149425, 7717.888789777091, -195399.49104530795, -181479.5254741165, -9141.407192026147, -4026.8690793756127, -2896.3345027783976, 24057.39323657793, -2781.1450076052924, 7550.192376871235, 17065.786725271824, -5230.798787476741, -7062.424906082072, 1703.4991988126308, -6155.048722318804, 22253.202306414136, 819595.8227735586, -9335.514835443935, 19242.09122461303, 1651.7288912915149, -74770.35166995307, 95.60999574334171, -284.2116704002821, 3283.1058108482025, -7000.606292831192, 3683.6383501155483, 223.070505716705, 20317.17490556888, 13193.243300032635, -5253.976131017075, -8795.696767344522, 8886.146916041367, -6529.6610856498055, -77078.14198318447, -2673.3421114604266, 11780.759720255968, 15792.064287250925, 1985.4608353849849, -53977.83138246434, -15188.725484469209], [8004.197130998456, 158.59804623999122, 9970.582466630847, 31430.95376760944, 19301.285100521636, 14565.518336111198, -7362.793784132043, -3567.000853693746, 6276.017468258094, -2749.5827214358856, -4392.105607021004, 877.6087367059868, 346.3844326288111, -7395.475523318958, -156763.22588346666, -7600.0860383421805, -27574.75289298029, 76347.44541074138, 6880.217491970526, 544.6913035875314, -34292.647058616276, -5540.066185388562, -6186.749498158802, 4246.597993634875, -98262.98924309282, 2615.054208301099, -5326.216767754973, -3270.381646594161, -539.9035616818541, -11636.55872796664, -42790.52314619466, -2504.816456754671, 4198.633984998812, 4397.883778422586, 9257.129138970267, -2450.8226807721667, -969.8163486996272, -114020.55747533955, 11095.345130504906, 59386.61272121177, 16204.249970606777, -87945.9049166907, -2460.787267851294, -1501.2365313345188, 8314.908436044383, 41367.58661154393, 4700.011266700302, -8244.728321922006, 5293.962522107519, 8345.029717615198, 911.4573755163366, -2571.8944908823128, -112612.17978919536, -4987.807049650344, -3224.3539675783945, -14486.299173309873, -9335.515068051574, 779618.9161753913, 7503.800387829133, -4831.304454006836, 5133.457453373015, 4976.859537086133, 10281.266485210585, -13406.976092777139, -2457.7769965517573, 10551.453528119768, -234.4996821171444, 8075.920417673288, -1997.2420613150905, 938.010435786047, 3166.018047500187, -4103.167193415932, -167896.97885451932, -10404.842688101175, 6827.800196641892, -28468.30319995706, 8218.945320499324, -180116.59792441456, 6012.715190925015, 67.54437307008483], [-4284.593213328065, -3993.5989996425214, 9716.70973934985, -12738.848633643316, -1865.6971601573662, -9108.999382444206, 522.3204337110083, -13503.198823876484, 18615.133485524064, 7919.085484404733, 4386.732664882315, 2844.286253639925, -5049.787766585033, -13508.124390703362, -91929.31090650025, -14983.43692952784, 999.2657434700606, -58001.53069208808, -463.628797466592, 24673.33874696674, 7656.843940052772, 15866.44637033755, -2420.15515122506, -16834.15157746254, -21006.13088283098, -29.169582052441065, 4911.102183184945, 23607.600554386485, -25054.157754978045, -2961.207268348404, 26740.6081856545, 2063.3553171387834, -559.3167326638134, -6492.988806995584, -12180.69540599855, 4490.524650990609, 35619.2483994631, 47828.81965123498, 23301.436598019412, -335103.5144726855, -17228.5431556249, 68556.24866597368, 325.7332234564048, -965.5569189575407, 12153.778459873573, -23646.098193742444, 6317.126838076127, -60977.33433844255, -20288.186897518128, -8698.48731817541, -12859.718971379069, -11999.106214001498, -47012.18972259212, 5568.847579980432, 963.5383825895269, -172316.83021364524, 19242.09126527964, 7503.8004113303305, 635314.6896059794, 2781.4240589321475, -9288.01002073005, 18641.998933455576, 16143.565483986651, 10877.914245918124, -2817.7767481570513, 19833.94373171073, 5453.380923299152, 32041.49471559855, 3458.473621542687, 5136.225354231962, 13120.394479712004, 2566.865488365635, -134850.39445309047, 35510.89337996511, 1441.2993304892564, 26259.66802807477, -10375.158389283453, -10172.422712822317, -9310.010506146124, -6105.378988908073], [-7986.7078127829855, 55569.72409481922, -5002.765169525661, 7465.211917991426, 51380.9010532145, 7038.547691246592, 14446.27165051656, -28559.123080116435, -2654.6608866616316, -252.18429186845717, -6818.087935252959, -40368.097096149526, -8912.201037008675, -15766.401353590245, -3498.80771417246, -13354.64945068262, 874.774212077488, 6259.1594524098, 45528.431556381394, 955.7162089618585, -14307.255754656744, 21526.417244491324, -59477.6304013158, -8646.880454955579, 129.84344247171668, -41746.3627082903, -87166.334461414, 296.60393522720324, -1893.3748176367183, 2910.9871640564747, -8630.993185827796, -112991.08193052984, -12797.168657899767, 19370.504847009015, -617.7933023609986, 19219.969731206034, 4888.649702020414, -3447.8415866145333, 65.95559237858345, -396.12460356777245, -425.2014083192495, -4023.8860583012415, -8215.463923509631, -14052.962378671993, 1805.3790801685918, 5430.8442621921795, -6691.089363966346, -27.721793939657328, 17145.89473571025, -5151.784309328504, -36068.78447382757, -45014.872622562114, -1103.8841463964695, -97319.05875626595, -82538.05131654067, -165.72465497016807, 1651.7288278867543, -4831.304472337207, 2781.424130633998, 877796.4761718279, -5364.4722502346385, 1758.6920894321563, -779.0657585472683, 5002.777595767914, -68965.41971227237, 835.2026869928064, -72394.50151224688, 408.8285067214748, -107591.45061818283, -56839.869813428195, -876.8888441769437, -118279.04642445732, -944.1861990138773, 19224.439962926954, 11356.393915524184, -2662.186673473805, -11601.461147627097, 6782.378467949861, 17256.534155168014, 10048.92074462166], [11677.857649345966, -4913.643400121865, 5697.92232059338, 200.25824035745805, 1108.1493678366014, 4982.4483533389, -75.6271067307729, 8225.64791875655, -3231.9419487842597, -32672.321621237817, -204.61598035301512, -2342.2691301260156, 9333.739112637593, 12000.94265198081, 34917.53282118826, 11281.259358336869, -88.41011295206133, 15333.565163391075, 10564.167061647566, -129662.9684894583, -15938.682735216995, -29173.633674679735, 3883.1771034640738, 13201.781582704352, 26988.99258114091, 20809.544552941046, -1700.5194258109163, -199789.01693444684, 14535.64272244386, -10326.230930840413, -1543.514012998171, -619.1781988810887, 2799.514359151973, 25386.26335311217, 26857.9716870675, -10036.029201528112, -43982.06788536942, -10747.893897159976, 8030.228848033628, -133293.80691217497, -291.0748271123151, -27562.055259252855, 23605.998076895725, -229425.00416532552, -5034.942598080055, -1044.5552772487717, 4759.768068323408, -51713.87625804965, 9310.128036388658, 27838.239337775893, 4900.847848435481, 521.3177478327416, 31428.378516016437, -2694.9230799022835, -833.6287005061417, -35442.31651127554, -74770.35157192871, 5133.4577797121365, -9288.01010531052, -5364.471859243108, 759607.3354611791, -1233.305513497742, 8507.64560714849, 17891.34958517471, -429.04323377188814, 11052.983642150859, -11707.197905807627, -19536.50504422765, -16082.523017612753, -6361.5316530317605, -7039.548767510151, -8767.414599387786, 34052.995712205455, -79447.4893321287, -5083.2334516673245, -15480.961565753301, 11438.534725746591, -8367.849048768516, 32309.141531189744, 3136.2983369007816], [39214.24861898217, 18598.924400573418, 34968.33620238896, -10254.781816974932, -168301.40417948872, -9189.353480113858, -4805.577860164593, -31739.702389330505, -204357.830204051, 21102.392282556986, -12281.977894064781, -83840.41414957406, 26438.912157368406, -80473.2036570717, 13299.22194283634, -36274.23722451826, 5667.680851854552, -2093.079376020149, -69420.84957037443, -5416.853218330406, 35096.265756118424, 18871.99518409922, -96034.65417596899, 38277.676405757644, -8299.319571206197, 8217.79548722689, -86258.18285652032, 3806.115441811273, -6274.007769746797, 4539.048397776606, -628.1677732766368, 40396.57496950042, 19823.428080497848, -3215.676387156816, 1678.0023120706692, 12982.906222743235, 35111.46332579144, 3191.875154287339, -1294.6152871478478, -526.4561550256154, 9360.614151156507, -3176.1922595586707, -15838.07026719444, 5730.30393918247, -6032.647485390095, -6917.691793889174, 20957.374948167108, -33017.46088778976, -79448.692762036, 5474.092089148453, -17512.185513540528, 32136.646138618707, -4778.208227913064, -66745.75165498306, -37174.84151336443, -21538.029045580555, 95.60991006987636, 4976.859418177525, 18641.998933581162, 1758.692065427933, -1233.305530955863, 776162.648518451, 1631.645529494844, -28064.11051803117, -22677.545229136267, -4804.237026357683, 32366.950321133958, 1857.6989345375216, 32906.10763323305, 19712.55093604233, -165.72530058469974, 504.8659509783022, 23456.37006631595, 20130.330537833175, -109838.68853241418, 2306.6611697727703, 7868.5014295486735, -19738.89475410275, -4969.340171680125, 5350.995590563251], [-72367.36617973428, -3259.662351743067, -64309.32993595591, -55128.886309792106, 39690.621655360264, -47191.162245476145, 3696.257689169662, -574.6759204225771, -4127.190804576833, 4152.701896356408, -8726.169620162389, -4461.362027589836, 3856.813734039363, 9330.144250665038, 17099.020349591076, 9593.003881193981, -1048.271556866658, 18543.558364197226, -16095.494576084837, 1435.8741588981882, -42916.91615451543, 16897.131785409158, -5798.798712273187, -54505.97753190245, -17300.812283552197, 4859.871732564053, -8320.69892363448, 14876.948381998767, -4635.436779875408, -1186.4752890185848, 43475.99311585688, 8135.299210666834, 3373.1139372564517, -292.11590960922075, -4937.691360949338, 11957.340907334654, 608.1041084854044, 1395.0614428027548, -98430.97336562508, 917.9366919184469, 19778.794771135847, 3949.849810933114, -9545.214316810903, -6001.42239784395, -110827.396742055, -26500.422428035527, -119201.45121716769, -21067.26074042414, 17600.37309252599, -1630.4942400710788, -6423.343619501656, 5155.721592156282, -6412.557279970963, -6704.250640732025, -1757.8047653010983, -3343.907638506268, -284.21170993468974, 10281.266503843844, 16143.565194445504, -779.0653658549145, 8507.64537228318, 1631.6456463930851, 877919.51119299, -83086.32191190078, -81.83426305683463, -115288.61536411247, 6145.444698994596, -56037.26026469563, 1355.1064827775983, 4801.773924866498, -114431.5675827601, -3220.678836375105, 18771.718005225433, 20568.49149555, -5517.320651990789, 13018.453482538831, -5571.248390781761, -24476.79719789317, -2042.449674322625, 6342.883810818679], [-6624.418153657053, -311.3324112997186, -23734.552155918725, -58211.72721232069, -5994.993903570238, -75904.19696967294, 7231.5900725855145, 6123.046987491189, -26651.362164748298, 7563.156760857201, -10099.618851425548, -1662.34408246349, 2151.827180369361, 15129.85417059668, -46937.88559991529, 20318.840331102172, -32787.009185775474, 23615.806448768468, -19855.218548331293, -37621.644107200824, 18623.195385295036, 7225.608609986607, -3538.139618340367, 17587.985359450926, -111379.96701550344, -6316.212589314826, -5899.819172721133, 5981.714330276404, 36551.18804164905, 17215.166458444444, 41076.1188244871, 6405.504332247962, 3114.471109075792, -6440.8177139125455, -5354.52322660398, 5611.836334583939, -8139.213496144972, -33247.25769347887, -95215.90968715042, 29116.060494832127, 26148.783357011678, 16407.034171155487, -14040.832851693118, 30515.98000555342, -67578.00391390272, -9863.555605802694, -42647.76866318204, -95198.57554784583, 24570.825768615337, -3826.101386005822, 641.0901835539828, 17965.296436803823, -101329.32329902421, -2988.4560910703067, 4774.899107569014, -66768.8313003324, 3283.105973031259, -13406.976211121573, 10877.914530602193, 5002.777881902151, 17891.349484011844, -28064.11025659249, -83086.32189324268, 856346.7049809225, 8609.36309496617, -99074.87480118012, 2076.861218005157, -79644.30076431902, 5380.58106797795, -1565.9416586326245, -56688.060932142405, 3211.918623737174, 14756.296262044023, 7711.300297215668, -5362.193101225191, 33366.873135721464, -2588.6660810888065, 38555.06860109959, -7698.325517326209, 4688.702841844652], [-11487.73246270441, -16545.250157249753, -11648.426189048201, 2984.1175024452486, 27966.86754845036, 3003.9486765962383, -11887.453031210425, 20249.683474263045, -66393.38742946705, -1407.851341879645, -2446.58227121993, -130731.6552901999, -39774.90524126367, 23227.56720373732, -6858.988335477331, 19441.379795192428, -1460.6303228215745, -3828.7949875252198, 63733.09474363919, -4455.433502516133, -5989.218132078305, -2524.3534545372563, 3800.300860893055, -9944.866290040662, 2221.715789838366, -11729.506333038553, -36860.28493555601, -6683.0218725483055, 4589.042204611761, 559.0473152333795, 411.7330924819928, -57496.337500178946, -2047.1482685693722, 6716.046218119111, 9665.500678697785, 3960.6533836301746, -14026.231735232064, 941.5490116715855, -1201.0246499647135, 12042.73522648683, -3388.994887418444, 4569.497677197155, -1083.1736476380847, -1076.8104578881123, 3337.5216357525137, 466.02891357063186, -5345.9593461624245, 9123.22776663032, 17711.834568176935, 5371.902718243163, 16171.121799880166, -141307.91576145534, 421.4497569234691, -63035.70830237084, -116938.11549216388, 8155.608986296702, -7000.606275408264, -2457.7772632393417, -2817.7766937572032, -68965.41914759012, -429.0430574208775, -22677.54494067426, -81.8340156086155, 8609.363201880204, 866177.1859710881, 1267.714927356584, -17198.902929508895, -4793.824352719472, -37056.72348858313, -4771.067015617319, 1769.4421851590505, -48692.404966243106, -11613.34430762488, -11319.607673265033, -154010.8207255071, 1146.4495191151555, 8622.18029054858, 5349.284606801075, 8098.325546536698, 11568.24962439754], [-67360.04299494966, -960.6181997387042, -69398.71106777966, -46429.04105573521, 30586.92101923744, -44402.896442317084, 5406.621841466892, 3460.110351755564, -10044.38775211437, 5609.938283138709, -9641.197104922394, -4863.956528443467, 3669.9168403508297, 11361.95223677094, 10994.981654179323, 11613.40420312394, -2534.6607320658204, 19678.886745850592, -16853.415295202045, -20651.007906567356, -16828.142780223487, 15232.05907819337, -2813.7808746671694, -45289.902670527, -30738.17043431603, 1211.5002251621872, -6368.134980837038, 9962.718943953576, 379.6047749423825, 12200.798239884625, 46085.73500734626, 7179.074070087905, 664.3985692890534, -818.5624474568655, -5986.095918356724, 11942.891562115823, -15965.619499679786, -283.05507370222676, -109311.62156183457, 10336.431012312765, 17282.876237332846, 4178.496063258482, -12678.92785486852, 9692.61037372043, -92082.16111428481, -15604.220891887768, -101818.57128589165, -48413.92454792791, 19157.87069122425, -5034.440693704106, -1864.463105368498, 7957.523928067399, -20426.937367831342, -5181.489393745263, -742.274900262038, -20833.08267834352, 3683.6376487277753, 10551.45340535924, 19833.943874094388, 835.2026315071423, 11052.983692891297, -4804.237331525425, -115288.61510101074, -99074.87495149413, 1267.7150076979758, 883134.2439855213, 4955.732259608554, -79607.34206514362, 2779.733489470508, 2902.2780713518378, -92302.4529302975, -946.2359431724256, 23030.3957386461, 17739.345397397887, -7356.993826534414, 11763.226383232912, -4813.081444716073, -17933.96155072353, -3000.9343826848894, 8021.521058380037], [-3798.098920474334, 50026.415611278666, -4495.044918083265, -4396.738741440232, -4099.152786978083, -7047.390065219597, 39757.0758376324, 8469.747561473796, 31979.443991242068, -131526.34512337443, 11763.357100906327, 8272.102955426979, -14738.837227422826, 15056.180574885593, -4346.399682871985, 11296.533850246344, -6812.598733284867, -8596.850893432043, -153015.4288663474, -5146.9038639675555, 791.4466563368385, 6546.603956923615, 7483.32073270411, -6174.596578172087, -4967.032416372073, -74100.36014732782, -11458.862171980742, -11267.815467490287, -5748.832320245112, -13515.74029999074, 7496.618700702705, -124144.22976816588, -47302.607877686765, 17231.436733698007, -6724.667946170393, 10158.257949218316, -8567.528151694436, -1397.164291448789, 2750.6715903032873, 9725.379291355983, -1138.808098461938, 9001.837618969636, 16304.845320266682, -18245.998547411225, 7000.835241855309, -2711.627843139271, 6478.641594449257, 5971.960322444781, -5217.702161823091, -14969.146067883668, -5077.484341564795, -13679.476528788402, -4165.059558891536, -23581.588500624774, -22704.79011285465, 7562.904597381612, 223.07058605939213, -234.49965493918634, 5453.380836879151, -72394.5014605309, -11707.198076938452, 32366.950145682873, 6145.444372087404, 2076.8615237854815, -17198.90335892226, 4955.732239600462, 839645.1200758931, -1485.6721474791952, -113561.75763249965, -165542.88377336075, 8895.181953993188, -73127.78159121868, -4714.16652424229, -1373.3725254117303, 33280.23231484139, 7022.31681724505, -23132.178774176093, 257.98341861038176, 17054.67831409545, 10831.744486944453], [-75215.218200255, 13042.213976354891, -108982.76362187127, 24992.48347118331, 9350.26667454556, 20123.871315754066, 104.4248114843276, 16388.614258272137, -5967.862527942622, 7155.250706840901, 9117.181686689348, -6855.086920541442, 381.5192485328704, 10328.144097607497, 10549.336903847774, 673.82877989018, 17633.987526545592, 4247.759979057204, 4041.3750592123683, -131874.1446991907, 33843.857143250265, -15425.031470969256, 17790.988032609657, -49531.545813112745, -15014.393232694169, -10388.92113716407, 8764.327352206206, -51292.38199893746, -20198.756778235347, 27284.589541313246, -16125.133228943683, -5916.835705934222, -12724.721186424213, 1080.6609421688536, -3465.2041452435838, -4884.808910826535, -120408.15786219906, 10865.376453416393, -117347.04294018714, 28153.10500693367, -4250.449201362033, -11346.071120514607, 1269.01647775374, 54721.07698522071, 9128.877930968321, 23540.715245556108, -33409.95728543299, -124685.69479809183, 6203.266854186076, -14102.332687232634, 19217.260771039735, -43.385157673516204, -15546.998967810014, 3194.2088367351325, -4456.099653504478, -63598.73450184935, 20317.175282817774, 8075.920799735436, 32041.494812164026, 408.82874059563835, -19536.50495070528, 1857.6990112392323, -56037.26028816652, -79644.30093578668, -4793.824417437021, -79607.34201704615, -1485.6723239201974, 840304.3611897194, 3692.162353948302, -2695.3419841451314, 10602.956155090787, 4752.696295042313, 28256.340029743635, -24843.007219845837, -9843.857933437977, -15376.256035382448, 3117.4473680587794, -13599.291323858039, -440.8711101647345, 4411.835782551454], [-5856.144191797788, 59811.51575784945, -3058.1286980781597, 1109.5128109920267, 38821.92717163533, -1024.8899627164637, 45370.831935707014, -28553.805328764876, 31008.746125133475, -75803.58355789573, 20093.231817497788, -6828.754997941556, 7895.226250682178, -875.5106715860319, -656.4955023687623, -5206.246056320828, -4861.219618150846, 3867.0054186831426, 1016.4672490190959, 772.8074636445037, -15829.442384121956, 15650.220502396875, -37182.83220965316, -7373.457580890786, -889.7812898878187, -23921.462727715196, -57987.9507920782, -6400.1261825590045, -96.97265548491542, -12051.051433245271, 3272.9831482782947, -114612.18938836582, -64819.00951689083, 14352.74780961851, -30990.45458157185, 11071.937276925579, 3299.519211242059, -5367.178907363444, 2961.014560730987, -7886.274626425762, -1142.3789843477518, -619.4695408619347, 22745.577927350863, -22879.60575713231, 2103.972908420951, 3349.8691007927123, -3032.8448276567296, 6244.2985732185, 14461.002147502386, -39169.96715424221, -49014.55207350691, -22946.255963684907, 13.376497831531536, -66156.65745105389, -48461.55040017588, 5594.032888338855, 13193.243522167688, -1997.2418418765235, 3458.4735911145945, -107591.45094682607, -16082.522738751328, 32906.10769774181, 1355.1068768133975, 5380.581008903622, -37056.72334545355, 2779.7337678403755, -113561.75732811194, 3692.162187811815, 867236.7165871497, -97472.48734933647, 1160.1745061902498, -114477.1629047745, 464.07163761628624, 16428.951392334508, 34818.164609077896, 621.4372801237266, -51871.387126002395, 3874.070941812866, 10606.596184805632, -1178.3980604225512], [81.20688928367842, 38449.656738103215, -1646.5040288720986, -4422.162055915724, -15752.586078480694, -6465.946950582544, 33681.8574394352, 11394.193063713026, 22881.21191302603, -133201.86197670174, 5062.788907100877, 14885.739516087271, -25925.26761398142, 13175.039817959123, -3603.8610188834705, 11597.645906818441, -4663.078145510613, -8957.889527943944, -221168.13648949013, -4732.41452292695, 4570.827033804302, 1925.8705794637522, 10110.796221994771, -1157.4975963683573, -5077.57552012029, -97755.60279644841, -4247.907571377115, -8601.041223326109, -2632.7381880763796, -10847.347998956586, 6352.079165089682, -118624.94048603045, -24800.44946517425, 13859.923671655186, 4477.6796721509745, 6231.724500042829, -6946.732525362255, 801.5563477047629, 937.4916397247758, 13115.499155759782, -831.7512224519932, 8797.456373736872, 9636.161404491424, -13126.660985296254, 5747.901662425135, -3097.1332525105727, 7255.823895648006, 2554.1908743173126, -7902.293996441628, 1817.6243633709444, 2065.954570707085, -223.61047235747557, -4489.42394519898, -13683.263450197925, -11020.945153759916, 4884.057503008447, -5253.975984675433, 938.0102735001485, 5136.225433208835, -56839.86984903939, -6361.5313901537875, 19712.550931265952, 4801.77411830459, -1565.9416332369974, -4771.067016041122, 2902.278199542999, -165542.88341369014, -2695.3422280632544, -97472.48766119736, 818603.5708756824, 7941.015878663265, -56617.77402376657, -3999.656455537819, -5886.664936781576, 36233.62390224478, 6253.594724068211, -9029.788397885111, -1894.053617432212, 15329.878426814452, 9312.252693422823], [-35120.04505576028, -9404.525036730045, -12630.947285338867, -97913.57123462428, 50378.48319291894, -76459.61882731752, -2431.4828518762206, -12092.395333014869, -3858.0281603051208, 1988.8986504015302, 2224.8333843714827, -2718.5683041266966, 3466.657133661098, 7822.730965432006, 15611.355785316076, 9832.622270276479, -10252.179221450824, -15580.366701894092, -16518.210359349516, 39408.14079350616, -94304.95571107994, 8936.004894223574, -15568.192376282534, -25097.858959664507, -12907.070034414952, 8915.769251798227, -14168.306607354392, 11659.571512329132, 17707.606563102785, -26910.374752673844, -32735.769160407766, 12172.26177418402, 12197.530192828102, -2597.4343350840586, -1046.4574118401576, 2126.3931562397365, 44674.91227141918, -4370.426453254608, -51759.05179815635, -11408.029118135099, 32942.7451952468, 14795.214376218564, 7664.844269661164, -37516.40105408113, -154999.88708076937, -82626.8686601755, -123242.56698761653, 26893.658338803627, 29995.64929717743, 9023.459224349117, -18794.941326427022, 6338.5648216888885, 591.5794565159692, -9721.269890874759, -552.2311776310231, 23824.355810486373, -8795.696958589375, 3166.0182742930187, 13120.394715786486, -876.8889492888705, -7039.548594526304, -165.72565370651097, -114431.56723347104, -56688.06067320787, 1769.442108184502, -92302.45312079103, 8895.181919485327, 10602.956359017646, 1160.1745331108932, 7941.0158573778235, 838740.5154611026, -5259.529249121965, 10425.19653386124, 12649.705184065164, -2104.6812966240996, 32027.904162993014, -5834.749445792293, -26063.806038282382, -2000.7093681697634, -4866.054101148945], [-3851.1837728942246, 56759.84461851146, 16.664046640349458, 6541.982223610777, 52957.23670072031, 6208.835926936886, 22994.700602280027, -48667.598840724524, 2517.510755063695, -11026.981844164384, 4765.851916987429, -23279.270360319868, 4878.494169106489, -24923.91349510201, 176.35475007369322, -22870.750790108097, 1200.2841751906392, 11530.48067568739, 36846.26020931129, 5296.183463952384, -17433.712830791534, 19687.346547379584, -74356.11176955719, -3936.9591803140843, 880.3390806558053, -26628.515855961952, -93108.4951778739, 2021.9201392769673, 1927.8502110121312, 2129.3309917408214, -7264.679614167188, -102190.36977061158, -24477.913868351767, 14490.76862826069, -15139.130110079273, 12487.56668340921, 12293.037249939507, -4953.706044966665, 633.0973766442439, -10265.743666771958, 793.408109281342, -7549.665580739654, 4712.574106067786, -18500.814689360617, -2410.095551539831, 6611.38875589453, -8489.372967877141, 511.6346620359998, 19898.38989850257, -16069.20311424133, -60351.04640670928, -20951.712978524763, 670.4491534839817, -96118.6824535331, -66208.83352758033, -608.8784338187062, 8886.14652114287, -4103.167392123588, 2566.8656301091305, -118279.04647466818, -8767.414606605824, 504.86593635824727, -3220.6788424410656, 3211.9179576885526, -48692.40471044106, -946.2357711069695, -73127.78174857348, 4752.696593682749, -114477.16296188998, -56617.77374426063, -5259.528977226875, 877312.8415792236, 3452.8741723131416, 23768.310589192544, 30061.989345188067, -4235.237307923878, -31109.141033264812, 5393.732352377683, 11440.318095991748, -3301.5082099805745], [-7718.072923258091, 11861.375470108705, -246.2686980805322, 1790.3144380203332, 7224.3071915653, -2975.8153493548493, -3086.851379837916, -1213.5626672850506, 18453.710173667274, -3669.0225841012048, -7836.178121810815, -4283.688359494717, 1119.4520196166138, -7464.6333206881845, -154511.35811338018, -15171.69817562932, -11480.881020564892, -3707.2546174947897, 4916.748330246216, 35176.781662379646, -2076.0457290651975, -16712.6652300296, 11878.550360082982, -18150.695043644908, -60627.09068283948, 3428.550852819955, 12045.722989250771, 26904.217363136875, -26479.812663985907, -928.5400187220822, -10773.042805301047, -7809.683259461571, 8518.004878844133, -5985.628147110004, 7712.530897129428, -14970.221721660104, -3541.002199159326, -34148.68823982406, 25507.858923462805, -40292.56357056538, 20781.798985022608, 15152.214506400773, -7510.293635250516, 17869.04616923702, 11261.374402919006, -1925.6125479805917, 8298.62878837908, 18768.180640642087, -13622.986476039403, 9629.743165009111, 5530.366327834865, -19618.457301735307, -82105.5924536639, 7013.234234392493, -6420.530510372915, -33343.59208857816, -6529.66103641886, -167896.97852574388, -134850.39436082283, -944.1860612113112, 34052.99581489483, 23456.369863842367, 18771.71798597571, 14756.296790149514, -11613.344543303621, 23030.395886042174, -4714.166364762212, 28256.34039259932, 464.07165694490305, -3999.6566498008197, 10425.19663675211, 3452.8742261961843, 764802.5068563309, -11011.99142147297, -6245.658312533369, 31200.243182843074, 9074.93617066029, -260321.35247987465, -3504.413526761729, -10606.322288967856], [7850.652444078677, 11698.383161197418, -8633.19945297611, -6919.77707482275, 3779.7181063911084, -9952.983232399809, 7321.962182249289, -29022.754241708553, 6976.829597854243, -6350.184549719438, -12849.016821217921, -12265.613804774712, 2999.407700955387, -126.41193256268636, -11937.729974064372, -29172.574084315827, -10194.196588972156, -6137.953687576086, -29252.747197087032, -83145.983801354, -5003.002075982726, -148118.79200477406, 24128.459842974742, 9748.692862321643, -10605.655669275953, 7668.442306408088, 30126.537841062247, -112512.9617115759, 1786.2465842680422, -13376.309339616233, -8707.403052317693, 6113.689758415228, 37930.98822951285, -70949.00943648625, 783.3511521003777, -128589.07337960924, -102050.99658204072, -7181.39610410757, 9392.472158785158, 54396.86754776895, 6180.847606209051, 14468.676168210093, 3504.4886052451193, -50706.35148425697, 10311.634680187626, -6640.368209179154, 23398.57804905455, -3909.297382420535, 11280.103123419016, 29759.91714882258, -20751.864037632444, -24114.85195426093, -9736.604505103995, 24506.40070263329, -446.37443284657644, 16255.881317399935, -77078.14223672164, -10404.842489964123, 35510.89329945767, 19224.439681823846, -79447.48947579043, 20130.33055205346, 20568.491348571908, 7711.300408261977, -11319.607458208464, 17739.345258986486, -1373.372383444262, -24843.006917542087, 16428.951555907905, -5886.665095377542, 12649.705325406665, 23768.31059230189, -11011.99162133516, 837203.7393304688, -33507.441300518534, 16798.24309732313, 1102.173928500309, -1793.8780734378806, -55415.42363947431, -99821.78749422048], [10350.84889991856, -36542.46312975275, 2691.341601880266, -7831.596745209793, -46128.99994475433, -7904.80263727874, -3679.189885247859, 42778.88851264662, -183618.32080305554, -43198.05771604402, 24863.743908274715, -210486.80159993094, -1675.3924290808118, 51535.8618285911, 4602.209064137227, 50008.52443215388, -2557.027358053993, -5551.9069352385895, -548.6664555222172, -11430.74046402498, 5644.171002357158, -26902.79544427243, 39571.57935554361, 20228.66317151788, 3769.175938153436, 72834.51212519573, 1258.7053396999281, -15046.667212799171, 37354.345503718534, -11490.41510039569, 15055.052946538823, 40762.38651681185, -9710.943947076601, -15832.187422722402, -6004.444472631465, -20100.917341618668, -12924.769990247418, 5524.668526785514, -7773.713733318655, 11956.295036688723, -3055.252686567307, 7709.107689209218, 32196.75260483946, 4692.39291216971, -4248.461785827118, -3637.5199054747422, 1365.8675426643952, 6206.648228150707, 15198.575608759837, -1070.2654760867176, 31590.327718313423, -164024.2854167021, 5645.762784854978, -24372.319488041587, -116253.93400020295, 11501.066709487686, -2673.342117053041, 6827.800180727754, 1441.2992273051118, 11356.393767459434, -5083.233593405541, -109838.68852459668, -5517.32083642263, -5362.1930937464795, -154010.8207053867, -7356.99359657, 33280.23223023998, -9843.857969671935, 34818.16459688792, 36233.62388016664, -2104.6811738402503, 30061.989510933057, -6245.658293754378, -33507.44125375978, 668901.7721918796, 2803.2775876626947, -6286.721560099177, -12327.962942293176, -12520.04856541506, -6325.425234363373], [-16490.279789152646, -3461.8693927154422, -16070.667699136888, 13922.886919835848, 10798.0381031823, 4474.1811608391, 1211.5229271457295, 1275.1997004835168, -91.68033910561638, 11362.822536270489, 2819.9593413455573, -165.31882000100464, -759.345212163241, 7476.406702298523, 34889.64994963913, 8786.010555160756, -115689.12318201191, -52720.50599450239, -6243.344485334127, -20498.27848795483, -8803.523279008165, 15441.53948053234, -3995.830169100076, -15871.65808319558, 34677.913851362806, -2666.6939753227007, -6886.636704779845, -8304.22058840624, -2339.517133818292, -13875.863230738109, 15983.929209902708, 3921.7628380632714, -3857.812197656528, -780.6299674526325, -10607.888869367423, 11920.02992659228, -3086.3286071243256, -131645.30560115268, -1694.8204837867847, -25942.64907565774, -263364.0741821497, -292266.3922583332, -687.0956381515293, 3208.1780389914534, 35985.47807073952, 2525.074921530572, 2044.201503561723, -9231.728164509193, 3338.0206159689387, -10817.210491637132, -4512.3636787178675, 5486.317831606754, 39877.484966185395, -5951.558979531915, -1015.2019009729316, 5577.006559264257, 11780.759676474852, -28468.303244623363, 26259.667888006363, -2662.1867047027636, -15480.961675385694, 2306.661116000148, 13018.453538357888, 33366.87293409275, 1146.4496333687496, 11763.226417965181, 7022.316798221978, -15376.255878285134, 621.4374877910832, 6253.594732791289, 32027.904006639634, -4235.237363319767, 31200.24306228443, 16798.243056425545, 2803.2776147287454, 675747.676917995, -9056.365111892716, -16728.110683496645, -3785.795416557508, 7115.668333059721], [7644.239938036276, -21934.74167814628, 9479.256346223936, 332.55924715326, 5326.000094460449, 1428.6221159876109, 27376.357493878066, -38527.67409504048, 4256.73402809557, -83226.18556463513, 6846.7197469703715, 4250.409560663741, 12619.272858394294, 12237.254594030619, 11253.983703538615, 6645.914850195653, 1745.804117923544, 4455.557590789201, 29110.4715125871, 5185.761226699693, -14162.401619257505, -21859.177967433527, -14680.933615996515, 10632.546737244735, 7738.093700224496, 36800.30964514933, -10691.77427218936, 13617.620608217343, 21746.13933745155, -17401.39749090231, 12070.907547079589, 4470.660015021191, -158738.09938324324, -80504.50265577821, -144037.04644717363, -39283.95720834275, 17212.110881049637, 2637.3771349145095, -2252.7371416398373, -24047.29557800953, -5229.678008040489, -7546.68378053444, -536.9632703065465, 34100.825132161146, -5039.937415854794, 2596.774942804498, -5480.3134537034975, -7482.940832686146, 15887.887804934797, -155583.11482500244, -75319.51974756859, 6162.650887889691, 8616.873595797979, -4906.653906502704, 8222.473521913877, -9321.788361829296, 15792.064239670173, 8218.945357010423, -10375.158454134147, -11601.460895834536, 11438.534720749249, 7868.501642505154, -5571.248332905781, -2588.66618189264, 8622.179987930596, -4813.081182589611, -23132.17892234759, 3117.4473905298682, -51871.387083903195, -9029.78819363913, -5834.74949918906, -31109.141199502483, 9074.935947453288, 1102.174061565678, -6286.721604997323, -9056.365136239949, 853190.2374462225, -4794.229949096955, -91936.0001296897, -55315.02392674949], [-18567.18292217407, -533.9918338267172, -21819.221839962596, 8220.089056591385, -425.1776224475658, 37198.55750392313, 9162.036285050206, 8450.112841564098, -22284.549399614098, -3040.901478692395, 4795.448480755048, -4639.808346895324, 3311.9386635215355, 11994.729895697084, -9025.388853605486, 13063.822644108339, 53173.4023200806, -14749.096729426132, -13484.036880217343, -3862.4810221450534, 21724.16616711857, 1596.9141312360266, 4005.5382460768883, -7376.863623799124, 93025.09236586008, -1492.0676278192045, 642.85087549777, -7798.952014243023, 11165.113728691978, 29930.23179183495, -2768.5782783431796, 7036.809749177022, -6499.93595555676, 291.7300619728808, -4915.841907875189, 2897.1862853415664, -12465.843860293116, 28725.6288259775, -17530.023378783437, 742.2962886384769, 14662.34434882694, -31169.76080762998, 5040.837642072152, -7582.627036412911, -21832.26821929209, -15966.589166488453, -28336.473914482463, 43369.90662601702, 12903.435703212437, -6397.238558546445, 4119.595608905505, 12441.24146736754, 85818.43939702182, 1384.3167722126152, 3693.6692263389277, 56723.02376669491, 1985.46087769414, -180116.59805073193, -10172.422712230558, 6782.378391662411, -8367.84897524363, -19738.894693604707, -24476.79713273926, 38555.06838118006, 5349.284628280091, -17933.9615967268, 257.98331617369104, -13599.29137196818, 3874.0710135188788, -1894.053572891381, -26063.806030766245, 5393.73228443576, -260321.35241503452, -1793.878122831491, -12327.962988640507, -16728.110744711903, -4794.229997718809, 225971.4433011546, -512.3525456035452, 4027.2866702865695], [12885.255173083518, -19209.146536610446, 11248.179926464789, 1611.9646590787067, 500.95931141313895, 2594.8189160457678, 21492.65047817172, -32189.349777823758, -8801.021498941944, -1302.082323481227, -79359.39865444392, -525.4214107197373, -5643.4680730144855, 7898.326485817602, -3043.869563806882, -583.7147872604909, 4659.39578695861, -2177.4105920829547, -8712.556640004343, 4061.9476851938034, -11455.98591680381, -73640.90147931092, -2480.6126139665457, 16691.74071372294, -1598.631571306259, 251.97863482171712, 5234.073604963237, 12682.176927706758, 23203.875824654802, -14160.061495098378, 4424.077661232933, 23034.510138750506, -68186.34278315012, -124206.3990455152, -110214.0888659067, -82677.70143517674, -505.7115030092098, 8880.215738398398, -1905.2172094958933, 18999.369157830813, -4389.826605452835, 2584.5530556605313, -89703.11073633723, 36906.42779543323, -1591.0875991351697, 914.4216349958801, 332.55522625667487, -8323.005468310997, 15705.04524917989, -101786.07248991741, -49615.910456406105, 6161.735453776858, -3907.4199039973946, 9513.851831168306, 10087.594557017046, -10005.96320575896, -53977.83140349014, 6012.715037246522, -9310.01038139701, 17256.53442732095, 32309.141379121018, -4969.340094704404, -2042.4495377110209, -7698.324849971509, 8098.325429367565, -3000.934399981949, 17054.678244617848, -440.87132804755026, 10606.596603500193, 15329.878156265855, -2000.7092617436986, 11440.317751113653, -3504.4132605418454, -55415.42354576514, -12520.048575320796, -3785.794997527345, -91935.99977170161, -512.352628672447, 872627.9402374914, -80293.30605576457], [8927.157009244658, -24615.142044555414, 2092.8604354200334, -7083.545065465671, 26602.939963942084, -8317.42882800697, 17917.777415343637, -106110.92819930168, 6651.682534021126, 3080.5066655858395, 25255.54552817211, 6466.855557307087, 971.8412500276451, -48018.02936213007, -7586.989963155658, -76480.65125133976, -5167.357297624377, 6603.518379027426, -31055.78394593776, -8261.374432271887, -10954.604067423512, -130903.63353678497, -43198.992995199405, 10483.31699704129, -5328.26593312028, 16782.616208770934, -11580.350549633804, -19182.620050815018, 23.39792557096123, -897.5486782938161, -2490.0404905875757, 23443.782671998746, 13784.703355220498, -89189.6663446875, -48134.912625351455, -137773.72087754318, -52301.420886031854, -2095.031417553428, 10612.4946210001, 16083.08684102361, 3412.0354214016743, 6987.274354936787, 34061.482407425814, 24219.786672157585, -5196.844933587937, -2237.025201961014, 7099.427180366954, 17393.699232296574, 18172.1294073999, -7994.85560375638, -104338.64746377131, 3486.1393525936933, -4795.9501198558355, 2032.483671489379, 13858.007047870484, 12627.051257253534, -15188.725861931514, 67.54436364224784, -6105.379013491929, 10048.92088003711, 3136.298436544079, 5350.995219456686, 6342.884098380636, 4688.702638894422, 11568.249467628528, 8021.521171468601, 10831.744300225215, 4411.835777979435, -1178.3983794317942, 9312.253135332478, -4866.054342821508, -3301.5081570412485, -10606.322305255533, -99821.78734989195, -6325.42510638843, 7115.668074400677, -55315.02404245392, 4027.286652358653, -80293.30598188874, 860258.246197261]], "optimal_y_mu": [[1908.1555547661264], [-13124.654755233874], [2353.8066247661263], [8309.232944766125], [-3703.238005233874], [9267.518774766126], [-11434.097625233873], [-5286.093275233874], [-8557.306925233874], [-10809.882855233875], [-1656.7889552338747], [-10108.944345233875], [-12737.337825233873], [-4444.787795233875], [13242.245734766126], [-3763.1825452338744], [11629.685354766123], [8287.991654766127], [-12409.242085233875], [4454.331974766126], [1327.1356047661247], [-1943.0608452338747], [-6901.512915233874], [876.0240347661274], [11212.214744766126], [-12605.584775233874], [-8414.810525233874], [3360.2351947661264], [-1445.2228252338755], [-203.3808852338734], [5523.598834766126], [-11172.365895233874], [-8432.270275233874], [-4027.5285952338745], [-6554.210145233876], [-2848.400305233874], [1414.0391447661277], [12855.065094766127], [4974.713244766124], [9611.629434766124], [12215.146194766123], [13457.223534766126], [-2079.6855652338745], [2328.827844766125], [6061.954354766127], [7549.463164766126], [3830.467494766126], [7794.775024766124], [-2655.617005233875], [-7236.915285233874], [-6198.600175233874], [-11599.897225233874], [11603.756654766126], [-9140.732195233873], [-10285.032615233875], [9590.43193476613], [-497.81948523387473], [14732.087724766126], [11623.198744766123], [-9967.190715233874], [4073.8432747661245], [-7509.801755233873], [5077.202014766124], [7847.9740347661245], [-10650.862865233874], [5414.2171247661245], [-11227.719055233874], [4439.422034766125], [-9977.374825233874], [-11552.955775233873], [5514.210514766124], [-9513.642505233875], [14925.017014766127], [-375.9206452338731], [-10240.036535233874], [13033.209904766125], [-7092.998075233874], [16883.323764766123], [-4426.216575233873], [-3840.226665233873]], "training_R2": 0.9999998344985632, "training_rmse": 3.4724025568339933}, "map": {"x_data_columns": "list", "x_data": "numpy", "x_data_min": "numpy", "x_data_max": "numpy", "x_data_scaled": "numpy", "optimal_weights": "numpy", "optimal_p": "str", "optimal_mean": "numpy", "optimal_variance": "numpy", "regularization_parameter": "str", "optimal_covariance_matrix": "numpy", "covariance_matrix_inverse": "numpy", "optimal_y_mu": "numpy", "training_R2": "str", "training_rmse": "str"}}, "AR": {"attr": {"x_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "x_data": [[0.363768116, 0.926315789], [0.789855072, 0.821052632], [0.363768116, 0.957894737], [0.191304348, 0.926315789], [0.485507246, 0.821052632], [0.18115942, 0.957894737], [0.779710145, 1.147368421], [0.576811594, 0.978947368], [0.637681159, 0.831578947], [0.749275362, 1.052631579], [0.536231884, 1.189473684], [0.688405797, 0.831578947], [0.779710145, 0.842105263], [0.536231884, 0.915789474], [0.160869565, 1.126315789], [0.526086957, 0.947368421], [0.14057971, 1.0], [0.171014493, 0.884210526], [0.789855072, 1.0], [0.363768116, 1.105263158], [0.333333333, 0.810526316], [0.515942029, 1.084210526], [0.607246377, 0.915789474], [0.384057971, 0.905263158], [0.18115942, 1.063157895], [0.779710145, 0.873684211], [0.647826087, 0.894736842], [0.404347826, 1.147368421], [0.444927536, 0.894736842], [0.373913043, 0.8], [0.211594203, 0.810526316], [0.739130435, 0.915789474], [0.688405797, 1.094736842], [0.576811594, 1.115789474], [0.637681159, 1.094736842], [0.536231884, 1.073684211], [0.414492754, 1.031578947], [0.130434783, 1.042105263], [0.302898551, 0.978947368], [0.272463768, 1.189473684], [0.120289855, 0.989473684], [0.110144928, 1.031578947], [0.546376812, 1.189473684], [0.444927536, 1.2], [0.242028986, 0.905263158], [0.191304348, 0.884210526], [0.302898551, 0.905263158], [0.282608696, 1.105263158], [0.465217391, 0.852631579], [0.657971014, 1.105263158], [0.607246377, 1.0], [0.739130435, 0.831578947], [0.18115942, 1.084210526], [0.668115942, 0.884210526], [0.698550725, 0.852631579], [0.252173913, 1.136842105], [0.505797101, 1.178947368], [0.130434783, 1.136842105], [0.22173913, 1.178947368], [0.698550725, 0.905263158], [0.394202899, 1.168421053], [0.607246377, 0.842105263], [0.282608696, 0.936842105], [0.242028986, 1.010526316], [0.708695652, 0.842105263], [0.282608696, 0.957894737], [0.749275362, 0.968421053], [0.333333333, 1.021052632], [0.708695652, 0.957894737], [0.75942029, 0.968421053], [0.252173913, 0.894736842], [0.688405797, 0.926315789], [0.14057971, 1.168421053], [0.485507246, 1.115789474], [0.688405797, 0.810526316], [0.110144928, 1.010526316], [0.647826087, 1.073684211], [0.110144928, 1.2], [0.586956522, 1.115789474], [0.556521739, 1.052631579]], "x_data_min": [[0.110144928, 0.8]], "x_data_max": [[0.789855072, 1.2]], "x_data_scaled": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "optimal_weights": [6.313773843532621, 0.022810572583265184], "optimal_p": 2, "optimal_mean": [[0.0033772731450751083]], "optimal_variance": [[1.4329739531751178e-07]], "regularization_parameter": 1.000000000001e-06, "optimal_covariance_matrix": [[1.000001, 0.0835221134540437, 0.9998578389413942, 0.6659916135546229, 0.8153681668738139, 0.6339102867813099, 0.09336010655110256, 0.5375889939166553, 0.3582166588035751, 0.13090816367658253, 0.6594486328118926, 0.23656447639560432, 0.09391776145262169, 0.6659810931060262, 0.5664863855983818, 0.6975877794848343, 0.5058477501386809, 0.6016984488828236, 0.08358942903196667, 0.9954451311176898, 0.9855357241770257, 0.7261370221186396, 0.4447872493956169, 0.9943269697509769, 0.6323101096540572, 0.09397563966696215, 0.33192794697460615, 0.9709596466429389, 0.9137867001786183, 0.9963255301064956, 0.7273309489533234, 0.14580095875421298, 0.2359114113744964, 0.5350558181810198, 0.35722775813088264, 0.6639327779066302, 0.9639246472785248, 0.47428381842773376, 0.9502512246763823, 0.8835570523909027, 0.4445413999009073, 0.4145169009984627, 0.6277717311326235, 0.904209166072992, 0.8166056044956751, 0.6658233062941956, 0.9505665063801964, 0.9097538531355481, 0.8681212035765823, 0.30500384364767136, 0.4444501189874225, 0.1456168200974437, 0.6317510024902413, 0.2819284910941308, 0.21600549748484207, 0.8381945098511986, 0.7521851692521448, 0.47219810411189367, 0.7521851663322097, 0.21615910083102946, 0.9792042804505949, 0.4443448181572793, 0.9139021866845884, 0.8158319860578357, 0.19653322106380386, 0.9137867001703908, 0.13117312643692391, 0.9861586531643077, 0.19670404798942073, 0.11770925004663914, 0.8433876790739384, 0.23686736394361368, 0.5020266837244134, 0.812488099632224, 0.23641504519046008, 0.4147526974260709, 0.3309488783549571, 0.4107623379058786, 0.5036550535467101, 0.6004830499121243], [0.0835221134540437, 1.000001, 0.08343112570903025, 0.007464457138130979, 0.28199975716656156, 0.006307184269654847, 0.9835495912702893, 0.5358932374286338, 0.7287109963291117, 0.9703003344520186, 0.4072154283492358, 0.8687797027761738, 0.9985313934635353, 0.41464133240834666, 0.004427734930815372, 0.3855563074936394, 0.0031335615838649082, 0.00533134713437638, 0.9954451311684811, 0.08269633169389039, 0.057949913469101534, 0.3551515283685394, 0.6331897097274056, 0.10525078622586417, 0.006271418076626285, 0.9982002028767326, 0.7584731812474808, 0.12922952086645997, 0.19657979550851046, 0.0940068196298446, 0.010360747107506492, 0.9642140035308686, 0.8595652598853527, 0.5311819132132197, 0.7209821487994891, 0.4114117235568125, 0.14488487829722332, 0.0026073405983798093, 0.039002564134142576, 0.025282195116006923, 0.002174941588528772, 0.0017997769081959491, 0.4362697766244806, 0.19274533870549823, 0.016533577481773414, 0.0074720074822143346, 0.03910188497973329, 0.029370536443792183, 0.2368336906305388, 0.7794130135907371, 0.6311126313633186, 0.96543329311108, 0.0062619147270040485, 0.8161929167652776, 0.8921967621272502, 0.018966657560590374, 0.32596792726893464, 0.002588503850705856, 0.011925910964018188, 0.8914219370382079, 0.1157308979172728, 0.6339603606841876, 0.029653983336952537, 0.016465810581419264, 0.9138588775369436, 0.029631506839434774, 0.9747247503211393, 0.05762129649796018, 0.9114800322005737, 0.9843687934131434, 0.019223349216529743, 0.86742209505621, 0.0030942105704727524, 0.27852881589723644, 0.8687797027735662, 0.0018019389394705492, 0.7521851692521451, 0.0017744824246035352, 0.5627137201154946, 0.4715719454406554], [0.9998578389413942, 0.08343112570903025, 1.000001, 0.6658969354818174, 0.8144799169506309, 0.6340004169517401, 0.09353281659789435, 0.5377673593526078, 0.3578603395869999, 0.1310385080851816, 0.6609190915397228, 0.236329164980495, 0.09383323433065066, 0.6658233062941953, 0.5674267755969987, 0.6976208392238228, 0.5061115144110104, 0.6013848686756709, 0.08363301508116233, 0.9969086162975754, 0.9843687925943025, 0.7270667384908757, 0.4446818686832339, 0.9939971736777224, 0.6329996900835821, 0.09391776145262169, 0.3317864054162307, 0.9727558580248615, 0.9133970409325535, 0.9950515065425248, 0.7264697468328885, 0.1457664150281495, 0.23623585232736277, 0.5358932374045072, 0.35771904133572224, 0.6647198448464446, 0.9647015331370541, 0.47471106413076314, 0.9505665063801964, 0.8855272349260978, 0.44473104324215695, 0.4148509855344441, 0.6291715557363882, 0.9063112961402988, 0.8163347546344593, 0.6654763068782881, 0.9502512246763823, 0.9110913565697282, 0.8674220950301753, 0.305452254706235, 0.4446818686832339, 0.14547197459687267, 0.6325598708336816, 0.2817815616898691, 0.2158315456348695, 0.8396655265542078, 0.7537909664659996, 0.47302680352487503, 0.7537909635398309, 0.2160874056796145, 0.9812017243562722, 0.4439449024431413, 0.9138588775314582, 0.8163347546344593, 0.19635633878625303, 0.9139166235250684, 0.13120421184653536, 0.9868599189955929, 0.19673201562102302, 0.1177371447866072, 0.843028039557294, 0.23683369062840634, 0.503050750060634, 0.8137597298628788, 0.2361351160350821, 0.4150082949349934, 0.33134120560492836, 0.41171728936338187, 0.5044433272361365, 0.6010809469860452], [0.6659916135546229, 0.007464457138130979, 0.6658969354818174, 1.000001, 0.30591582213379787, 0.9984525283114027, 0.008752386188008826, 0.1311544787283773, 0.06559462434282622, 0.014165666349944091, 0.19479923784501416, 0.03410594549054699, 0.008804665595542062, 0.19672890791063247, 0.9818064044869382, 0.21615910082973225, 0.964701533116786, 0.994138501456507, 0.0074704732005287655, 0.6629581090781634, 0.7576110075655603, 0.23602696564155345, 0.09401127475536206, 0.6018125185826492, 0.9959321387045961, 0.008810091601386462, 0.05794259054863447, 0.5340678279113289, 0.41511320101168625, 0.632559873990827, 0.9924909269755682, 0.016550039609267292, 0.034011791878174345, 0.1305364650657201, 0.06541354240109218, 0.19612384146594622, 0.505440384813854, 0.9488112680623927, 0.8431745408448301, 0.9049379235737741, 0.9328721351942555, 0.9124740678169584, 0.17678265595220802, 0.4107623379058783, 0.9653875406011575, 0.9997472832134794, 0.8434542958179855, 0.8882591965018698, 0.35839778219014656, 0.050756424467238395, 0.09394001808270289, 0.016529137812124322, 0.9950515062666158, 0.04472561213006431, 0.029687729642002125, 0.9446387680361671, 0.25646977549408456, 0.9446387680361671, 0.9784775415193954, 0.029708840839017085, 0.5649850021958187, 0.09391776145262186, 0.8923095178194353, 0.9644729722992038, 0.02575015063642191, 0.8921967598927121, 0.01419433816041598, 0.7580898718483244, 0.025772532700093283, 0.012142622353447275, 0.9504914298218463, 0.034149613358012004, 0.9574143827301836, 0.3048352573364381, 0.03408440171265231, 0.9129931253631237, 0.05777168064886732, 0.9042091660729922, 0.11713793689299486, 0.16120194291701648], [0.8153681668738139, 0.28199975716656156, 0.8144799169506309, 0.30591582213379787, 1.000001, 0.2812479181649128, 0.3017832136957877, 0.8891576761880056, 0.7287109963291117, 0.38349106740078015, 0.9469456786741891, 0.569717084170623, 0.30638009061278487, 0.9642140021940765, 0.23374136675048324, 0.9755257496212296, 0.19583592709490913, 0.25866688947299726, 0.2807152852621477, 0.8073066352366323, 0.7287109963269249, 0.9777204501443177, 0.8156129247479817, 0.8679155249467415, 0.27965304366943255, 0.30627847117181495, 0.697092071388937, 0.9001474879647939, 0.9769908168988853, 0.8434542958129224, 0.3586696389894055, 0.4146413295340404, 0.5636745563361901, 0.8813406152539166, 0.7209821487994891, 0.9567038148758659, 0.9275234831907205, 0.17729724346942982, 0.6317510056717917, 0.5274943539812778, 0.16091698997383302, 0.14488487829722357, 0.9324077700972617, 0.9579337766031231, 0.44434482111428303, 0.3062252578603228, 0.6333597728254152, 0.5632028316133453, 0.9942484369536794, 0.6583661360695058, 0.8129374359751255, 0.4151656611147626, 0.27922927338104764, 0.6336399731635568, 0.5377248828939893, 0.4684831859863748, 0.9763959471871864, 0.17601635847857117, 0.37944166961629017, 0.5372578976414593, 0.8771045114565442, 0.8166056017785219, 0.5686381457808418, 0.4425235654756573, 0.5062074627862045, 0.5682071414962935, 0.3852397259387908, 0.724578689889953, 0.5048897656103231, 0.357566499196415, 0.4748235611635207, 0.5688268097901399, 0.19337663533263524, 0.9876916870276771, 0.569717084168913, 0.14505892522307787, 0.6913129305898679, 0.1428486324935414, 0.8581000430328205, 0.9262935380851739], [0.6339102867813099, 0.006307184269654847, 0.6340004169517401, 0.9984525283114027, 0.2812479181649128, 1.000001, 0.007438090843439921, 0.11773156531053082, 0.057819155732059424, 0.01213016080852986, 0.17717685132458372, 0.02964321080987431, 0.007461981221902788, 0.17849155586185575, 0.9903766284493667, 0.19672890605536808, 0.9775002493544664, 0.997821833850958, 0.006322446600844803, 0.6320404783954452, 0.7264697468328881, 0.2156815821040923, 0.08363301410718815, 0.5695011322062065, 0.9984215674920696, 0.007468703145125287, 0.05095968229821394, 0.5036550535739206, 0.3862146459680846, 0.5997151989329865, 0.9843687925943024, 0.014194337944116099, 0.029631506428621772, 0.11732127021415621, 0.05779632630758418, 0.17819574382166328, 0.4748235581353483, 0.9644729736595131, 0.816605601778522, 0.8855272349260975, 0.9504914298218464, 0.9326805836149925, 0.1603384610382979, 0.38321855741762595, 0.9502512230954612, 0.9978218335742808, 0.8163347519182074, 0.8661076505757489, 0.33145114055484454, 0.044598618921301535, 0.08363301410718815, 0.014165666133911058, 0.9977278467339425, 0.03911115082345802, 0.025735510720232505, 0.9291512688201611, 0.2352229886071167, 0.9610510525000538, 0.9709596467041377, 0.025766019184159984, 0.5344138358139415, 0.08349441005720364, 0.8687385295329457, 0.9502512230954612, 0.022257313685138284, 0.8687934244087397, 0.01214549991228776, 0.7283082122329386, 0.022299897271730918, 0.010360746943754572, 0.9328721351942555, 0.02970649440900714, 0.9715887104336615, 0.2809992304871639, 0.02961887088637489, 0.9330342513863813, 0.05089130324297587, 0.9256353127210759, 0.10498344252088916, 0.1456168200974437], [0.09336010655110256, 0.9835495912702893, 0.09353281659789435, 0.008752386188008826, 0.3017832136957877, 0.007438090843439921, 1.000001, 0.5674267755697494, 0.7483451961691934, 0.9861586531909462, 0.4446818686832339, 0.8797271005400293, 0.9868027525555617, 0.4414065021395475, 0.005334042707738908, 0.4128113812176705, 0.0037519087298589957, 0.006261914726534185, 0.9955074511068317, 0.09398900124118353, 0.06462474302005715, 0.3862146459680846, 0.6609190915397228, 0.1167592176166171, 0.007468703145125287, 0.9893781805345957, 0.7812990627269399, 0.14580326195997625, 0.21421473521028284, 0.10356031703222256, 0.011950804543222013, 0.9703003344520186, 0.8919712867972849, 0.5696450910865017, 0.7587607875054081, 0.4444501189967603, 0.16126052246409608, 0.0031429311073357486, 0.044556368030896486, 0.029703209718938934, 0.0026162522735646665, 0.002179584747092734, 0.47507114847810666, 0.2160874056796148, 0.019078140122336013, 0.008726983347690589, 0.04436463130636515, 0.034140983177463204, 0.2556284648950285, 0.8164508194285467, 0.6639327779345283, 0.9639449428698068, 0.0074720073598407745, 0.8352206208732172, 0.9026678516921133, 0.02229954500758408, 0.3586243125226123, 0.0031478501284590383, 0.014195907606287517, 0.9063112961402991, 0.13119799417533923, 0.6572023574346215, 0.03393451187376645, 0.019186943655110294, 0.9210844484577043, 0.0339752766370523, 0.9829237162192416, 0.06552937637033351, 0.9286376943606891, 0.9898604853429694, 0.022097911850175667, 0.8861289443975351, 0.003763305486047615, 0.3063558924503252, 0.8780055754418163, 0.0021779327117331386, 0.787830456962293, 0.0021828925782473294, 0.6017649869135194, 0.505592110013824], [0.5375889939166553, 0.5358932374286338, 0.5377673593526078, 0.1311544787283773, 0.8891576761880056, 0.11773156531053082, 0.5674267755697494, 1.000001, 0.947687820401645, 0.665476306878288, 0.9715887104336615, 0.8408999873728392, 0.56820713834523, 0.977191470716083, 0.09372213033014237, 0.9653112948031203, 0.07422310600411468, 0.10522252539285677, 0.5377673593493798, 0.5365793733366742, 0.4429991688218835, 0.9491260720091085, 0.9868599190133646, 0.6013848686883054, 0.11762003128585788, 0.5688268097901401, 0.9324596075175103, 0.6633037954297936, 0.7876438011263712, 0.5671310563623188, 0.1609169899738329, 0.6972352397612939, 0.8418968421423101, 0.9973339019147497, 0.9488112680623927, 0.9764970752976452, 0.6973564082789928, 0.0656412692380176, 0.35867530486529275, 0.2802234979249861, 0.05794991346910158, 0.0509685387143374, 0.9812017251724786, 0.7829670134819934, 0.2160054994613531, 0.13103850808518167, 0.3583977821901464, 0.30570326645279333, 0.8415910144663304, 0.9118400648511803, 0.9873589002799188, 0.6954752117242784, 0.11755316159853699, 0.8911825795808416, 0.8148016320827186, 0.23602696564155337, 0.9280950814511855, 0.0654455833011219, 0.17752144163855085, 0.8160253192344777, 0.6307637932665978, 0.9847887287057449, 0.30632202069646497, 0.21614203037557506, 0.7863384479598039, 0.3063800930764348, 0.6659810931060265, 0.4446818686778954, 0.7883906899000046, 0.6339904018574642, 0.23662801325843835, 0.8431745408448301, 0.07384885679751131, 0.8899445912846927, 0.8401033534799487, 0.05098142257546995, 0.9322092332557154, 0.05063469875873383, 0.995932138704596, 0.9936203978153823], [0.3582166588035751, 0.7287109963291117, 0.3578603395869999, 0.06559462434282622, 0.7287109963291117, 0.057819155732059424, 0.7483451961691934, 0.947687820401645, 1.000001, 0.8376518133273838, 0.8530722865580933, 0.9654485426429665, 0.7590485057767518, 0.8679155249259017, 0.044186281913262196, 0.841896844710174, 0.034011791878174345, 0.0509685387143374, 0.7257815193855275, 0.3548655205026223, 0.28198193896060153, 0.8092601822720147, 0.9864235180453186, 0.4148509855257279, 0.05750944667777923, 0.7588686690673587, 0.9980267656568076, 0.4684831859441915, 0.601508380759082, 0.38637940685631067, 0.08364887018755926, 0.8679155225193351, 0.955963571520141, 0.9397420781188301, 0.9901755808788525, 0.8615636004583574, 0.5033607656248145, 0.029523576741520115, 0.21550448877172115, 0.15864540046141726, 0.025684743897543705, 0.022173091144711176, 0.8761766880064655, 0.59031605424401, 0.11764790615465007, 0.06565267636803905, 0.21600549945681496, 0.1766402924465212, 0.66594953274936, 0.9838275714360173, 0.9834362430558772, 0.8687934244087397, 0.05742592860661468, 0.9870314153657809, 0.9505665047930446, 0.1294747226666773, 0.7749931908609856, 0.029318618823890863, 0.092409316905181, 0.9498910291899826, 0.4376572025918673, 0.9874056935315594, 0.17825486871479376, 0.11720272020977754, 0.9333880514663335, 0.17813101410958845, 0.8412587190201188, 0.28056012407385134, 0.9312819618781758, 0.8144799142087716, 0.1311316906826417, 0.9642140021940765, 0.03360165579944716, 0.7203787733495004, 0.9653875406011574, 0.02219832448363845, 0.9902844994759314, 0.021872519068486387, 0.9543943414407133, 0.9075720518463516], [0.13090816367658253, 0.9703003344520186, 0.1310385080851816, 0.014165666349944091, 0.38349106740078015, 0.01213016080852986, 0.9861586531909462, 0.665476306878288, 0.8376518133273838, 1.000001, 0.5363675093251116, 0.9440271532264201, 0.9812017243562722, 0.5363675093251116, 0.008806752125283547, 0.5054403878971347, 0.006321547795162035, 0.010319096069028866, 0.9773612868871642, 0.13115447872837724, 0.09323041515435633, 0.4751236835955211, 0.7570367696381461, 0.16106958063737936, 0.01214549991228776, 0.9829237162192416, 0.8657109738002254, 0.19648045003244083, 0.2809992304871639, 0.14448262209458804, 0.01907814012233602, 0.9959321390196086, 0.9503863326006571, 0.6656129820249445, 0.8432944244703985, 0.5377673593493798, 0.21615910280764852, 0.005334295586308156, 0.0656277906395797, 0.04461764489078209, 0.00448439938980696, 0.0037633055517877346, 0.5682071414962935, 0.28112798771316944, 0.029618871297012735, 0.01414062602874824, 0.06547557125427604, 0.0509685387143374, 0.33008739283980393, 0.8919712867972849, 0.7587607904508697, 0.9916620693571601, 0.012143965129497475, 0.9102282262310211, 0.9599586039218152, 0.03411510571956138, 0.4437836348970706, 0.00532898954617773, 0.022249228487312166, 0.9624639720870766, 0.17819574555102488, 0.7542793313102608, 0.05089130389209122, 0.02970321013074606, 0.9715887104336615, 0.05092347083503391, 0.9989895159840068, 0.09399939489112792, 0.9764970753240229, 0.9975854257909961, 0.034028451554189466, 0.9484666025887986, 0.006311968481479595, 0.3862146459680846, 0.9427157558363426, 0.003762592241399872, 0.8687385319417946, 0.003751908795400029, 0.6972352428420218, 0.6018505466189309], [0.6594486328118926, 0.4072154283492358, 0.6609190915397228, 0.19479923784501416, 0.9469456786741891, 0.17717685132458372, 0.4446818686832339, 0.9715887104336615, 0.8530722865580933, 0.5363675093251116, 1.000001, 0.715536002846348, 0.4372080475638806, 0.9893781805345957, 0.14572036945655073, 0.9902844998188801, 0.11713793689932331, 0.15943678580714712, 0.4130527323347226, 0.66531863967434, 0.5581808668640552, 0.992820223264839, 0.9234883601345494, 0.7203787734078783, 0.17813101238727075, 0.4385153239856169, 0.8331254375495478, 0.7882412555054624, 0.8813406152539169, 0.6827069665503567, 0.23206736406106154, 0.5636745563361902, 0.7277906740954063, 0.9769908168988851, 0.8676824814076414, 0.9980904133620481, 0.8137597298628789, 0.10503154836145256, 0.4721981041118936, 0.3864343427680814, 0.09347816437555151, 0.08335735345485713, 0.9985944895611566, 0.8923095178194353, 0.3028912374386392, 0.19413569453062948, 0.4697503878655688, 0.4147526974360294, 0.9184256100292423, 0.8158319860774246, 0.9286376943606893, 0.5594166785107955, 0.1782548669848584, 0.7780352631821531, 0.6864378045408922, 0.33184406320849874, 0.9874056927101923, 0.10531564858333566, 0.25880994056502116, 0.6896441071933136, 0.7590125379767749, 0.917483062198358, 0.4114117235568127, 0.30500384366323396, 0.654632734699553, 0.41201006503777693, 0.5340678279449906, 0.5674267755969987, 0.6609190915397232, 0.5027250453899489, 0.32788908697574026, 0.7215632323780101, 0.11773156531053088, 0.9647015331370541, 0.7139553068107319, 0.08327312218332507, 0.8418968421701054, 0.0836528344334164, 0.964701533137054, 0.9917386597471456], [0.23656447639560432, 0.8687797027761738, 0.236329164980495, 0.03410594549054699, 0.569717084170623, 0.02964321080987431, 0.8797271005400293, 0.8408999873728392, 0.9654485426429665, 0.9440271532264201, 0.715536002846348, 1.000001, 0.8923095178194352, 0.7279861452532118, 0.022025423156859767, 0.6962996740740446, 0.01648350711600865, 0.025766019548526094, 0.8652871383423207, 0.2343514015482705, 0.17852539420436153, 0.6599592720071755, 0.9129931253631237, 0.2817815616898692, 0.029484426568397323, 0.8920981083953687, 0.9771914706984856, 0.3272888038874518, 0.4445413999009072, 0.2587772356911499, 0.04473409118989847, 0.9644729722992038, 0.9901755808788525, 0.8338495911965381, 0.955963571520141, 0.722658307606268, 0.3566357286114735, 0.01410849635896351, 0.13080067549961769, 0.09231156398051757, 0.012102599223704043, 0.010301994347935156, 0.7453250172372974, 0.43626977367538516, 0.0656277906395796, 0.034136129659255346, 0.1311047644604384, 0.10423816236478126, 0.5062074627831656, 0.9769330799176041, 0.910228226231021, 0.9654485426429666, 0.029441607821588955, 0.9939971736777226, 0.9985313931806673, 0.07324819350895605, 0.6231871667791417, 0.014010552669419064, 0.05011902874972772, 0.9978218335742808, 0.3014830313975314, 0.9139021866845883, 0.10519094873572474, 0.06537945158331648, 0.9943740924026231, 0.10511786022195357, 0.9480921082099748, 0.17762522994533722, 0.9921303943828628, 0.9309142527159644, 0.0741855958943156, 0.9987212778368173, 0.01628473837731805, 0.5632028284443931, 0.999936814818072, 0.010313718185324885, 0.969610835853637, 0.01016234346163311, 0.8588459070187924, 0.7829670134819934], [0.09391776145262169, 0.9985313934635353, 0.09383323433065066, 0.008804665595542062, 0.30638009061278487, 0.007461981221902788, 0.9868027525555617, 0.56820713834523, 0.7590485057767518, 0.9812017243562722, 0.4372080475638806, 0.8923095178194352, 1.000001, 0.4444501189874225, 0.005273302126402257, 0.4145169009984623, 0.003750190347551309, 0.006322446600844803, 0.9950515065425248, 0.09308913908830249, 0.06566927129466067, 0.38321855741762595, 0.6654763068782876, 0.11767206734242103, 0.007424356273431891, 0.9998578389413942, 0.7881291982965085, 0.1438790602336842, 0.2160874056796148, 0.10533062132756893, 0.012143965129497475, 0.9769908168783589, 0.8842412282914509, 0.5636745562922033, 0.7521851663322094, 0.44140650211040117, 0.16074422862761747, 0.0031299995931795936, 0.04461764489078209, 0.029203984336156077, 0.0026174510718129404, 0.002172606559537518, 0.46708657111450763, 0.21226103323976409, 0.0192272972966904, 0.008811344231251463, 0.044711483934792184, 0.03381411324355773, 0.25880994056502105, 0.8086340197776258, 0.6636286952872031, 0.9777318973675317, 0.007414042712633657, 0.8432944244703985, 0.9139021866845884, 0.022025423156859767, 0.3529200732794309, 0.0031091545181798842, 0.013970109046533561, 0.9133970409325537, 0.1292295208544361, 0.6659916135546226, 0.03410594549054696, 0.019160592742576355, 0.9334027961234763, 0.034084401711526977, 0.9851777181336614, 0.06537945078566279, 0.9316203825854142, 0.9921303943828628, 0.022291092337573523, 0.8914219348136369, 0.003706841463908733, 0.30314493084645294, 0.8921967599007454, 0.0021749415884243267, 0.7824353541601808, 0.0021442389604009273, 0.5954577987211225, 0.5030507500606339], [0.6659810931060262, 0.41464133240834666, 0.6658233062941953, 0.19672890791063247, 0.9642140021940765, 0.17849155586185575, 0.4414065021395475, 0.977191470716083, 0.8679155249259017, 0.5363675093251116, 0.9893781805345957, 0.7279861452532118, 0.4444501189874225, 1.000001, 0.14488487681079085, 0.9984525285972451, 0.1176200312886821, 0.16154608374576898, 0.41475269743602916, 0.6625916689380748, 0.5688268097730675, 0.9903766284493667, 0.9334027961234765, 0.7287109963269246, 0.17798474970904016, 0.4446818686832339, 0.8434542958129222, 0.7824353542118455, 0.8922672319270173, 0.6962996709849116, 0.2364934847962976, 0.5697260839445815, 0.7254032722796082, 0.972187466401772, 0.8648361867169001, 0.9964520299965827, 0.8150977274430511, 0.1051178602257396, 0.47492108015591544, 0.3823297069439667, 0.09394001808467656, 0.08349441103232039, 0.9879875991738905, 0.882106677663689, 0.30639461289017494, 0.1967040479894209, 0.4751837308408042, 0.41305273233472284, 0.9328721351942555, 0.8124880996761187, 0.9324596075175103, 0.569150384829595, 0.17781613431343424, 0.7883284221197038, 0.6972352397487374, 0.3296705104823618, 0.9777204501443179, 0.10462583930101815, 0.25627133148940234, 0.6976208392238226, 0.7521851692521451, 0.9326805817850934, 0.4151459895981794, 0.3060076532102997, 0.665476306878288, 0.4150673013406988, 0.5375889939166555, 0.5688268097730675, 0.6658233062941955, 0.5060395650638677, 0.33195416499741365, 0.7287109963291117, 0.11667256197832578, 0.9599586025909227, 0.7275722684213931, 0.0835471854674386, 0.8405148533610924, 0.08269633169389054, 0.9599586025909226, 0.9917386597471456], [0.5664863855983818, 0.004427734930815372, 0.5674267755969987, 0.9818064044869382, 0.23374136675048324, 0.9903766284493667, 0.005334042707738908, 0.09372213033014237, 0.044186281913262196, 0.008806752125283547, 0.14572036945655073, 0.022025423156859767, 0.005273302126402257, 0.14488487681079085, 1.000001, 0.16083312512616035, 0.9921303944185961, 0.9902844995442928, 0.0044767552852948, 0.5696900856983185, 0.6565901230498767, 0.17849155586185575, 0.06526491201395895, 0.5027250453899491, 0.9938244670273118, 0.0052860626359700884, 0.03884331568853385, 0.4447661712533443, 0.32944665379844973, 0.5296987855886335, 0.9518197594544916, 0.010295649338964243, 0.022296727094928692, 0.09401127475536197, 0.04473055805299021, 0.1457456927229047, 0.4146413295340404, 0.9864235180690037, 0.7567139491581524, 0.8430280395572938, 0.9751405722411919, 0.9642140035308688, 0.13113168930094818, 0.33171827730448505, 0.9075720498903335, 0.9792042805181914, 0.7537909635398307, 0.8166056017785221, 0.27900440665665077, 0.0341474556084792, 0.06552937637033351, 0.010233385281167203, 0.994138501456507, 0.02946347484220498, 0.019033889339721166, 0.8923095178194351, 0.19665433757510747, 0.9874056935315595, 0.9502512246763822, 0.019104679150104307, 0.4750711454426522, 0.06492660064442829, 0.8124880969726666, 0.9121714185291587, 0.016360803245229517, 0.8133613260684507, 0.008782301281582623, 0.6649403907617363, 0.016483507116800238, 0.007449732246095118, 0.8855272349260975, 0.022173090825005713, 0.9941385014445717, 0.2368636222284395, 0.021985100105835653, 0.9636049363422532, 0.03912598157592088, 0.9647015344542541, 0.08365283345946224, 0.11764790488488117], [0.6975877794848343, 0.3855563074936394, 0.6976208392238228, 0.21615910082973225, 0.9755257496212296, 0.19672890605536808, 0.4128113812176705, 0.9653112948031203, 0.841896844710174, 0.5054403878971347, 0.9902844998188801, 0.6962996740740446, 0.4145169009984623, 0.9984525285972451, 0.16083312512616035, 1.000001, 0.13115447734644378, 0.1784351728760106, 0.38628176507673895, 0.6951566825741012, 0.600245950890102, 0.9959321387434554, 0.9137867001786185, 0.7588686690764694, 0.1963563369350917, 0.41485098553444366, 0.8163347546344588, 0.8120133515117481, 0.9135557689082056, 0.726469743811342, 0.2581240053881714, 0.537724886025111, 0.6954752148097535, 0.9615521734532395, 0.8408999899376626, 0.9963255300706113, 0.8426552420586129, 0.11758844919621725, 0.5061674820864198, 0.41171728650934497, 0.10533062132756911, 0.09391776145262186, 0.9861148005380437, 0.9056386535856273, 0.3318912452182649, 0.21604986056692588, 0.5061115144110104, 0.4432161589154976, 0.949410983047174, 0.7856431472182472, 0.9135557709347002, 0.5367743621568681, 0.1962075069287658, 0.7586289560235375, 0.6651399953178762, 0.35684423383335484, 0.9868160346321775, 0.11713793689932331, 0.2798519050049242, 0.6658233062941951, 0.7829670134819933, 0.9124740678169583, 0.4447872493942822, 0.3317864054162311, 0.6329996932429226, 0.4447872493942822, 0.5062074658711259, 0.6013848655073689, 0.6339904050198468, 0.4751612122329442, 0.35853368213663145, 0.6975877825796821, 0.13029542574325884, 0.9738013352520969, 0.6957719076341389, 0.09395931143036329, 0.8148016347645223, 0.09316122197802057, 0.9467900200839121, 0.985862713635589], [0.5058477501386809, 0.0031335615838649082, 0.5061115144110104, 0.964701533116786, 0.19583592709490913, 0.9775002493544664, 0.0037519087298589957, 0.07422310600411468, 0.034011791878174345, 0.006321547795162035, 0.11713793689932331, 0.01648350711600865, 0.003750190347551309, 0.1176200312886821, 0.9921303944185961, 0.13115447734644378, 1.000001, 0.9855357241444879, 0.0031478998547982704, 0.5054403848138541, 0.5987780476800599, 0.14565593009428612, 0.05093714729201855, 0.44422550736489513, 0.9771914706984856, 0.0037549919390676696, 0.02966382175283799, 0.3852397259387908, 0.2815546395826214, 0.4724891032043402, 0.9286376943606893, 0.0074687031451253, 0.016529137812124308, 0.07408605169131526, 0.03410594549054699, 0.11764790488240945, 0.3586243125226123, 0.998342128247539, 0.6975877794848344, 0.7844154508770476, 0.9943740924026231, 0.9872809186539171, 0.10481938904205458, 0.28039618981609754, 0.8676824790017209, 0.9636049349744917, 0.6967397821645165, 0.7578623706428832, 0.2361351160350824, 0.025735511084167197, 0.05098867052858443, 0.007446085000000814, 0.9767593444596001, 0.022257313685138242, 0.014154034761310096, 0.8412587190529431, 0.16083312673161645, 0.9959321390196086, 0.9097538531819671, 0.014179770795704308, 0.41349666169231647, 0.050807764255034873, 0.758628953078588, 0.8687797003646033, 0.012102599223704054, 0.7588686690764695, 0.006323145760277216, 0.6018125185790364, 0.012142622353593065, 0.005333621420500753, 0.8421761731932315, 0.016537495361165083, 0.9959641862297888, 0.1963563387862532, 0.016465810334873633, 0.9874056935315595, 0.02968772964137839, 0.9818064053036477, 0.06555318923969546, 0.09397563966555193], [0.6016984488828236, 0.00533134713437638, 0.6013848686756709, 0.994138501456507, 0.25866688947299726, 0.997821833850958, 0.006261914726534185, 0.10522252539285677, 0.0509685387143374, 0.010319096069028866, 0.15943678580714712, 0.025766019548526094, 0.006322446600844803, 0.16154608374576898, 0.9902844995442928, 0.1784351728760106, 0.9855357241444879, 1.000001, 0.005324193391090705, 0.5976723931259235, 0.6970920744815858, 0.19561331594478706, 0.07421724379928926, 0.5377673593493799, 0.9940460228702385, 0.006323944894284953, 0.04473621120580866, 0.47052275940283395, 0.3586696389894051, 0.5691503879995554, 0.9769908168988852, 0.012143965129388137, 0.02561383803720388, 0.10455479504631926, 0.0506675038867877, 0.16074422861893325, 0.4434192458885254, 0.9742783242787122, 0.7874323113054281, 0.8573277449859256, 0.9639246472785249, 0.947687820401645, 0.1438790602336842, 0.35361205417931935, 0.9333438188923886, 0.9943898004514259, 0.7883906898952717, 0.8376518133273838, 0.3063558949137808, 0.03886970996320478, 0.07408605169131526, 0.012140896145581458, 0.992916068209792, 0.03414961335801197, 0.022296727094928685, 0.9056386555945599, 0.21351203971683033, 0.9688912161115655, 0.9535655011434729, 0.02229848824853092, 0.5004431040280116, 0.07420903749125975, 0.8431745408448301, 0.9312819618781757, 0.019233372850146854, 0.8428549344886523, 0.010350441240429976, 0.6957719076069914, 0.01922334921612587, 0.008804665595330644, 0.9139021866845883, 0.025769682993863098, 0.976115504360752, 0.25684277531282496, 0.02575625290737895, 0.9484666025887986, 0.044508532074185245, 0.9372070234130214, 0.09329671209121014, 0.1306767603394825], [0.08358942903196667, 0.9954451311684811, 0.08363301508116233, 0.0074704732005287655, 0.2807152852621477, 0.006322446600844803, 0.9955074511068317, 0.5377673593493798, 0.7257815193855275, 0.9773612868871642, 0.4130527323347226, 0.8652871383423207, 0.9950515065425248, 0.41475269743602916, 0.0044767552852948, 0.38628176507673895, 0.0031478998547982704, 0.005324193391090705, 1.000001, 0.08352211345153689, 0.057654984920587384, 0.3583128692027948, 0.6333597728254149, 0.10522252539285668, 0.006320449428398852, 0.9963255301064956, 0.7578623735848571, 0.13080067549961769, 0.19642148741221613, 0.09347816437555134, 0.010308017432464473, 0.964472973659513, 0.8676824814076414, 0.5367743621568681, 0.7277906740954063, 0.41485098552572774, 0.14578253591086252, 0.002624904231313433, 0.03913896361691984, 0.025644607362789368, 0.0021837203201252493, 0.0018109277160889565, 0.4425235654756571, 0.19561331594478706, 0.016529138059618153, 0.007461981343977763, 0.03909138575325418, 0.02966382216409901, 0.2361351160350821, 0.787196007529065, 0.6340004201160752, 0.9615521734532395, 0.0063176544469428575, 0.8150977274161403, 0.8895651011059172, 0.019186943655110294, 0.3304630376869141, 0.0026185677352938584, 0.012090369740890514, 0.8911825818048154, 0.11726383324270616, 0.6317510056433493, 0.029693827302139552, 0.016550039857024405, 0.9106740747591767, 0.029703210130746033, 0.9776083449324382, 0.05794716726528136, 0.913685661452823, 0.9872809186539171, 0.019207868419986042, 0.8681212035583433, 0.0031351955172170313, 0.2814612541890781, 0.8643581614566119, 0.001811156585380285, 0.7584731812315454, 0.0018008860473290483, 0.5686381457620682, 0.4750036118621516], [0.9954451311176898, 0.08269633169389039, 0.9969086162975754, 0.6629581090781634, 0.8073066352366323, 0.6320404783954452, 0.09398900124118353, 0.5365793733366742, 0.3548655205026223, 0.13115447872837724, 0.66531863967434, 0.2343514015482705, 0.09308913908830249, 0.6625916689380748, 0.5696900856983185, 0.6951566825741012, 0.5054403848138541, 0.5976723931259235, 0.08352211345153689, 1.000001, 0.9752678003985158, 0.7286764632482347, 0.4425235625307736, 0.9887352884275147, 0.6338401944037154, 0.09329671209737055, 0.3298840968672766, 0.9775002493544663, 0.9081600481830293, 0.9854157912590028, 0.7197531630218795, 0.14505892373485946, 0.23686362222772828, 0.5377928449571546, 0.3586696389894051, 0.6658969354878129, 0.964701533116786, 0.474921080147363, 0.9484666025887987, 0.891421934813637, 0.4439449024431416, 0.4148509855257282, 0.6333597696642769, 0.9127479780832656, 0.8120133542136209, 0.6613681813718011, 0.9452209157021461, 0.9139166235250684, 0.8609241705417205, 0.30639945298161414, 0.444092197919194, 0.14425456602271325, 0.6339603575162471, 0.28004206471774384, 0.21421473521028256, 0.8433876790739384, 0.7584731812474805, 0.4751236835955213, 0.7584731783031358, 0.21494351195153244, 0.9868599189955928, 0.44042443027643935, 0.9102282262310211, 0.8156129274618319, 0.19479923784501393, 0.9110913565697282, 0.13085647565039105, 0.9864235172484537, 0.19612384147418707, 0.1174251009406301, 0.8381945098511986, 0.23578846415835208, 0.5059516408628457, 0.8166443046643352, 0.23395192629526657, 0.4146413324083471, 0.33192794697460615, 0.4146413324083471, 0.5062314527197523, 0.6016129107961742], [0.9855357241770257, 0.057949913469101534, 0.9843687925943025, 0.7576110075655603, 0.7287109963269249, 0.7264697468328881, 0.06462474302005715, 0.4429991688218835, 0.28198193896060153, 0.09323041515435633, 0.5581808668640552, 0.17852539420436153, 0.06566927129466067, 0.5688268097730675, 0.6565901230498767, 0.600245950890102, 0.5987780476800599, 0.6970920744815858, 0.057654984920587384, 0.9752678003985158, 1.000001, 0.6272661789818876, 0.3581091574232841, 0.9642140021940766, 0.7221219695563044, 0.06564126843716962, 0.25855250152577547, 0.9184256100292423, 0.8426552420586126, 0.9777318973675319, 0.8166572051297539, 0.10519094756902575, 0.17649246405604338, 0.438924215545445, 0.2787709135064972, 0.56412885611166, 0.9075720498903336, 0.5653867710218831, 0.983436243103104, 0.9313625949674845, 0.5353517258650788, 0.5027250484566659, 0.5269030594043366, 0.8254618854469571, 0.8911825818048154, 0.7584731812474808, 0.9861586540112761, 0.9535655011434728, 0.7882412555054625, 0.23395192629526682, 0.3568442338333547, 0.10535058985562416, 0.7209821487994891, 0.21600549748484227, 0.16152821974915843, 0.9001474879647938, 0.6532278548604372, 0.5611425516658977, 0.8273417327166455, 0.16136244903417077, 0.9334246288774815, 0.35862431252261234, 0.9632548969190524, 0.8872494943404968, 0.14578253441522063, 0.9624639720870763, 0.09367920539187927, 0.9937012029392406, 0.14535252813219293, 0.08335735248409305, 0.9129931253850457, 0.17819574382754635, 0.5909598370823741, 0.7191053764641636, 0.17853667507665708, 0.5033607656248145, 0.25627133147017306, 0.4954091422376083, 0.40969308894041967, 0.502026683759069], [0.7261370221186396, 0.3551515283685394, 0.7270667384908757, 0.23602696564155345, 0.9777204501443177, 0.2156815821040923, 0.3862146459680846, 0.9491260720091085, 0.8092601822720147, 0.4751236835955211, 0.992820223264839, 0.6599592720071755, 0.38321855741762595, 0.9903766284493667, 0.17849155586185575, 0.9959321387434554, 0.14565593009428612, 0.19561331594478706, 0.3583128692027948, 0.7286764632482347, 0.6272661789818876, 1.000001, 0.8887223616778143, 0.7848492645630867, 0.21615910083102977, 0.3840002712887278, 0.7844154508770473, 0.8430280395572938, 0.9286376943606894, 0.7503693978884669, 0.27900440665665077, 0.5041963615003483, 0.6659810931040273, 0.9504914298132879, 0.8166443046643352, 0.9943740924056076, 0.8684503907568004, 0.13117312643849877, 0.5369524573096038, 0.4440921979191943, 0.11758844919621725, 0.10531564858333566, 0.9858627128155054, 0.9316203825854146, 0.35704158589852636, 0.23552043806315612, 0.535351725865079, 0.4751612122329445, 0.9580952083259308, 0.7590125379722188, 0.8914219348136369, 0.5016540926813927, 0.21617275974618222, 0.7245786898899527, 0.6291715557363882, 0.38628176229191363, 0.9973175646553226, 0.1311544787283773, 0.30600765074964453, 0.6311126282133962, 0.8158319860578355, 0.8848979764312181, 0.47372223883411085, 0.3583977821901465, 0.5968421352103668, 0.474111529958786, 0.4742838184433922, 0.6336399731635572, 0.6004830499337521, 0.4439449024577982, 0.3844615621254979, 0.6636286952872033, 0.14565593009078875, 0.987280917823764, 0.658917570869972, 0.10527572855824388, 0.7884280529237623, 0.10515605924443654, 0.9332701025938739, 0.9776083449324382], [0.4447872493956169, 0.6331897097274056, 0.4446818686832339, 0.09401127475536206, 0.8156129247479817, 0.08363301410718815, 0.6609190915397228, 0.9868599190133646, 0.9864235180453186, 0.7570367696381461, 0.9234883601345494, 0.9129931253631237, 0.6654763068782876, 0.9334027961234765, 0.06526491201395895, 0.9137867001786185, 0.05093714729201855, 0.07421724379928926, 0.6333597728254149, 0.4425235625307736, 0.3581091574232841, 0.8887223616778143, 1.000001, 0.5062314527197527, 0.08339554782524909, 0.6658233062941953, 0.9776855633713116, 0.5653867678864605, 0.6975877794848346, 0.4742838154030036, 0.11755316159853704, 0.7884405076569202, 0.909753853181967, 0.9818064044869383, 0.9829237170368805, 0.9300911110017245, 0.6007012608570631, 0.044635268766074626, 0.2818394338323462, 0.21387661171882005, 0.03911115082427975, 0.03408440171265231, 0.9405291880674226, 0.6896441071933141, 0.16156650032010803, 0.09399939489028152, 0.2819953025090965, 0.23565813562529073, 0.7586289530785879, 0.9605198459125202, 0.9989895159840068, 0.787643801107459, 0.08331654233005183, 0.9504914298132879, 0.8918163070918605, 0.17729724174878794, 0.8602580337422006, 0.04442634626549943, 0.12991725757997924, 0.892309517819435, 0.5329301058598558, 0.99922625650857, 0.23685239743613024, 0.16136245064491078, 0.8681212035583435, 0.2368075035845664, 0.7587607904508697, 0.3581091574232841, 0.8685738681347652, 0.7284347775259168, 0.17852539420329, 0.9139021866873313, 0.050526831266019236, 0.8120133515117479, 0.9124740678169583, 0.03410594549054699, 0.9742783242787122, 0.03375860677101148, 0.9887352884275148, 0.962874562169588], [0.9943269697509769, 0.10525078622586417, 0.9939971736777224, 0.6018125185826492, 0.8679155249467415, 0.5695011322062065, 0.1167592176166171, 0.6013848686883054, 0.4148509855257279, 0.16106958063737936, 0.7203787734078783, 0.2817815616898692, 0.11767206734242103, 0.7287109963269246, 0.5027250453899491, 0.7588686690764694, 0.44422550736489513, 0.5377673593493799, 0.10522252539285668, 0.9887352884275147, 0.9642140021940766, 0.7848492645630867, 0.5062314527197527, 1.000001, 0.5677047128885816, 0.1177222667704778, 0.3864282383917967, 0.9861148005380437, 0.9506115551576197, 0.9970182755565931, 0.6651399953178767, 0.1785338547914893, 0.28056012408900843, 0.5980596121648707, 0.4130527323347227, 0.7257815193855276, 0.9851777181691442, 0.41406533247973026, 0.9132094865050926, 0.8338495912641114, 0.3860438570414834, 0.3578603395998891, 0.6896441071933137, 0.9389259625264204, 0.7590604993525212, 0.6018125185790366, 0.9139166235250684, 0.8638531077637785, 0.9135557709347002, 0.3566357286114735, 0.5055921100138239, 0.178398533486335, 0.5671310563623189, 0.3319541649974133, 0.25871183833816824, 0.7824353542118456, 0.8079828197317439, 0.41201006503777704, 0.6902217398202186, 0.25881402896515937, 0.9887838787636394, 0.5059516408628455, 0.8686699182322963, 0.7578623735848572, 0.23673269940653038, 0.8684503907568004, 0.16147719685580195, 0.9636049349744917, 0.2367738387798818, 0.1457203694565505, 0.7884280529213963, 0.28198193896060136, 0.44042443027643957, 0.8633210733344941, 0.2816391578270606, 0.35810916010430166, 0.3848747657262551, 0.35426061695756755, 0.566137494961593, 0.6639327779345282], [0.6323101096540572, 0.006271418076626285, 0.6329996900835821, 0.9959321387045961, 0.27965304366943255, 0.9984215674920696, 0.007468703145125287, 0.11762003128585788, 0.05750944667777923, 0.01214549991228776, 0.17813101238727075, 0.029484426568397323, 0.007424356273431891, 0.17798474970904016, 0.9938244670273118, 0.1963563369350917, 0.9771914706984856, 0.9940460228702385, 0.006320449428398852, 0.6338401944037154, 0.7221219695563044, 0.21615910083102977, 0.08339554782524909, 0.5677047128885816, 1.000001, 0.007438090843439921, 0.05078288974994036, 0.5057279027458237, 0.3848747657262553, 0.5959377146006547, 0.978477540705455, 0.014154034761310122, 0.029706494409274628, 0.11769251637681113, 0.05794259054863447, 0.17853385479148942, 0.47512368056115684, 0.9653875419337816, 0.8158319833432568, 0.8902961175492993, 0.9498910307703043, 0.933270104405322, 0.16120194131368462, 0.38540407092178997, 0.9472537757556247, 0.9940460225946081, 0.8137597271551954, 0.868573865726373, 0.32988409686727693, 0.04472561213006431, 0.08360659560784896, 0.01408978756034777, 0.999936814818072, 0.03896315214499871, 0.025613837674989818, 0.9326805818046887, 0.23641504519046025, 0.9647015344745222, 0.9758802492603265, 0.02568474353432693, 0.5369524541829803, 0.08307341290073944, 0.8668193925607203, 0.9502512230954612, 0.02214508742034337, 0.8674220926249768, 0.01213016080852986, 0.7285383473064185, 0.022264698388953705, 0.010347661885623798, 0.9296357562657277, 0.029631506427465606, 0.9762040343309198, 0.2818884118422321, 0.029441607821588955, 0.9330342513863813, 0.05098786507731701, 0.9309142545591622, 0.1053156474152535, 0.14580095875377538], [0.09397563966696215, 0.9982002028767326, 0.09391776145262169, 0.008810091601386462, 0.30627847117181495, 0.007468703145125287, 0.9893781805345957, 0.5688268097901401, 0.7588686690673587, 0.9829237162192416, 0.4385153239856169, 0.8920981083953687, 0.9998578389413942, 0.4446818686832339, 0.0052860626359700884, 0.41485098553444366, 0.0037549919390676696, 0.006323944894284953, 0.9963255301064956, 0.09329671209737055, 0.06564126843716962, 0.3840002712887278, 0.6658233062941953, 0.1177222667704778, 0.007438090843439921, 1.000001, 0.7883906899000044, 0.14425456603397033, 0.21615910083102977, 0.10527572738839266, 0.012138786669036549, 0.9775002493544663, 0.8861289444533871, 0.5649850022348205, 0.7537909635398307, 0.4422649912933072, 0.16099581042855818, 0.0031351955173675897, 0.04466630369601722, 0.02929130587645283, 0.002620553960024057, 0.0021760069196975727, 0.46848318598637456, 0.21291588493204092, 0.019235499747358345, 0.008813432343669655, 0.04473055805299021, 0.03388951298732671, 0.25879767575210033, 0.8104371366435026, 0.6644783785347175, 0.9775002493427309, 0.007429166354005467, 0.8434942683890689, 0.9138588775314582, 0.022080813736231688, 0.3539417754957654, 0.0031169735675072156, 0.014010552456971075, 0.9137867001786186, 0.12959135645590003, 0.665896935481817, 0.03413019851903926, 0.019186943655110294, 0.9332701025938739, 0.034115105719561355, 0.9861586531909462, 0.06547557045544955, 0.9324596075175101, 0.9931182521747459, 0.02229848824866478, 0.8919712868106706, 0.003717220417585547, 0.3038496904284108, 0.8918163070918607, 0.0021779327117331386, 0.7839571085626608, 0.002150854204331633, 0.5968421352103668, 0.5039335953275779], [0.33192794697460615, 0.7584731812474808, 0.3317864054162307, 0.05794259054863447, 0.697092071388937, 0.05095968229821394, 0.7812990627269399, 0.9324596075175103, 0.9980267656568076, 0.8657109738002254, 0.8331254375495478, 0.9771914706984856, 0.7881291982965085, 0.8434542958129222, 0.03884331568853385, 0.8163347546344588, 0.02966382175283799, 0.04473621120580866, 0.7578623735848571, 0.3298840968672766, 0.25855250152577547, 0.7844154508770473, 0.9776855633713116, 0.3864282383917967, 0.05078288974994036, 0.7883906899000044, 1.000001, 0.4407654696925048, 0.5697260839445815, 0.3582166561217527, 0.07415279009985819, 0.8922672319270173, 0.9721874664017721, 0.9269229479702847, 0.992916067934475, 0.8396655265113645, 0.47392433085122504, 0.025696512956018262, 0.19653322106380372, 0.14400866977938728, 0.02227138189885282, 0.019186943655110294, 0.858100045412171, 0.5622072678392139, 0.10535558374716436, 0.05794991346910158, 0.1967289079100417, 0.1605513618998621, 0.6338401944037149, 0.9923045458005657, 0.9762040343309197, 0.8918163070918609, 0.050728368968714424, 0.9943740924026231, 0.9652045575897188, 0.1167592176166171, 0.7503693978884669, 0.025561695647227364, 0.0826963307308246, 0.9654332917696997, 0.4107623379058782, 0.9773612868871642, 0.1615282213615531, 0.1051560592444365, 0.9502512246763823, 0.16147719685580186, 0.8681212035583435, 0.25822596381464447, 0.9500861188517228, 0.8428549344886523, 0.11773900467096102, 0.9776083449324382, 0.02939513622983536, 0.6927887750898357, 0.9767593444596001, 0.019201497598485148, 0.9954451311176898, 0.0189843429315922, 0.9440271532264201, 0.889157676147975], [0.9709596466429389, 0.12922952086645997, 0.9727558580248615, 0.5340678279113289, 0.9001474879647939, 0.5036550535739206, 0.14580326195997625, 0.6633037954297936, 0.4684831859441915, 0.19648045003244083, 0.7882412555054624, 0.3272888038874518, 0.1438790602336842, 0.7824353542118455, 0.4447661712533443, 0.8120133515117481, 0.3852397259387908, 0.47052275940283395, 0.13080067549961769, 0.9775002493544663, 0.9184256100292423, 0.8430280395572938, 0.5653867678864605, 0.9861148005380437, 0.5057279027458237, 0.14425456603397033, 0.4407654696925048, 1.000001, 0.9688912161115654, 0.9705802395441465, 0.5921933785934389, 0.21452628093095885, 0.3318440632084985, 0.6658969354878129, 0.4750036118621516, 0.787830456962293, 0.9966875868342523, 0.3581091601043016, 0.8652871383423208, 0.7882412555054623, 0.33079730306725447, 0.3058143566702283, 0.7588686690764693, 0.9773612868871642, 0.6918263891129793, 0.5325177546558632, 0.861563600517833, 0.8164508221451845, 0.9389259625264206, 0.4150673013406988, 0.5679648420138289, 0.21312115050733405, 0.5059516408628456, 0.38263784982192234, 0.30262819018628756, 0.7287109963269247, 0.8686699182322962, 0.3586696389894053, 0.6339102867870174, 0.3038496904284108, 0.9985313934575413, 0.5622072678392139, 0.8115132471264346, 0.6957719076341392, 0.2782781365919632, 0.8124880996761188, 0.19583592709490893, 0.9312819619117174, 0.2805601240890087, 0.1777234639400674, 0.7221219695563045, 0.3296705104615827, 0.3864099258415106, 0.9137867001786186, 0.326648337213286, 0.30558256199862155, 0.4444501189967603, 0.306278473634648, 0.6339102867870172, 0.7277906740954063], [0.9137867001786183, 0.19657979550851046, 0.9133970409325535, 0.41511320101168625, 0.9769908168988853, 0.3862146459680846, 0.21421473521028284, 0.7876438011263712, 0.601508380759082, 0.2809992304871639, 0.8813406152539169, 0.4445413999009072, 0.2160874056796148, 0.8922672319270173, 0.32944665379844973, 0.9135557689082056, 0.2815546395826214, 0.3586696389894051, 0.19642148741221613, 0.9081600481830293, 0.8426552420586126, 0.9286376943606894, 0.6975877794848346, 0.9506115551576197, 0.3848747657262553, 0.21615910083102977, 0.5697260839445815, 0.9688912161115654, 1.000001, 0.9322092332808966, 0.4747110641307629, 0.30638009061094607, 0.44226499129330743, 0.7829670134819933, 0.5984281752803378, 0.8882591965018699, 0.984788729524935, 0.2580139377118728, 0.7582934808507533, 0.6577943803380498, 0.23656447639560438, 0.2155964239465194, 0.8581000430328208, 0.9868027525555617, 0.56971708732835, 0.4151656639914576, 0.7590485087233303, 0.6932376210545144, 0.994138501456507, 0.5344138389257831, 0.6965306946794034, 0.3062252553924033, 0.3844615621254977, 0.5062314527197528, 0.4150672984634395, 0.5968421352103666, 0.9397420781949846, 0.2566602620294021, 0.5004431040685662, 0.41516566111351655, 0.955193723769622, 0.6973564051851717, 0.6974555592975399, 0.5686381457620678, 0.3862817622919138, 0.6972352428420213, 0.2817815616898694, 0.8415910144360192, 0.38621464596808497, 0.2586137732947571, 0.6018505466189307, 0.4447310432421569, 0.2790044066348781, 0.9709596466429391, 0.44434481815727955, 0.21575996109982237, 0.5671310563333818, 0.2133198762970013, 0.7537909634923198, 0.8405148533610927], [0.9963255301064956, 0.0940068196298446, 0.9950515065425248, 0.632559873990827, 0.8434542958129224, 0.5997151989329865, 0.10356031703222256, 0.5671310563623188, 0.38637940685631067, 0.14448262209458804, 0.6827069665503567, 0.2587772356911499, 0.10533062132756893, 0.6962996709849116, 0.5296987855886335, 0.726469743811342, 0.4724891032043402, 0.5691503879995554, 0.09347816437555134, 0.9854157912590028, 0.9777318973675319, 0.7503693978884669, 0.4742838154030036, 0.9970182755565931, 0.5959377146006547, 0.10527572738839266, 0.3582166561217527, 0.9705802395441465, 0.9322092332808966, 1.000001, 0.6976208423188176, 0.16126052085437353, 0.2556284648950285, 0.5616835286132832, 0.38167798793403773, 0.6902217397663561, 0.9703003333758343, 0.44109284019797435, 0.9291512706236146, 0.8502067629472955, 0.41305273233472295, 0.38349107016548706, 0.6517436179452369, 0.9123523430802316, 0.7871960103666361, 0.6333597728254152, 0.931929484615928, 0.8805474002309721, 0.8919712867972849, 0.32759398282910057, 0.47248910019105583, 0.1615460821346505, 0.594959472168079, 0.3060898387705511, 0.2367738366789874, 0.8035532943773724, 0.7724631510420437, 0.4376572026339021, 0.7139553068107323, 0.23649348269789072, 0.9753322753549192, 0.47507114544835555, 0.8899445935403012, 0.7834742837288624, 0.21611812926100585, 0.8891576783668956, 0.14521482714761647, 0.970959646642939, 0.21540578527904683, 0.13067675896258238, 0.8156129274618319, 0.25822596382394486, 0.4660841761773933, 0.8316001927931688, 0.25880994056502105, 0.384000274034055, 0.3548655178458885, 0.37771933197234053, 0.530209448607706, 0.6282578415522327], [0.7273309489533234, 0.010360747107506492, 0.7264697468328885, 0.9924909269755682, 0.3586696389894055, 0.9843687925943024, 0.011950804543222013, 0.1609169899738329, 0.08364887018755926, 0.01907814012233602, 0.23206736406106154, 0.04473409118989847, 0.012143965129497475, 0.2364934847962976, 0.9518197594544916, 0.2581240053881714, 0.9286376943606893, 0.9769908168988852, 0.010308017432464473, 0.7197531630218795, 0.8166572051297539, 0.27900440665665077, 0.11755316159853704, 0.6651399953178767, 0.978477540705455, 0.012138786669036549, 0.07415279009985819, 0.5921933785934389, 0.4747110641307629, 0.6976208423188176, 1.000001, 0.022264698388953705, 0.044224688687006054, 0.15943678580714712, 0.08269633169389054, 0.23454027968411056, 0.5657709442182806, 0.9069557818293742, 0.8887223616778143, 0.9313625949674846, 0.8882591965471919, 0.8627621084470514, 0.2117921257739997, 0.46502516151516987, 0.9861586531909463, 0.993620397836258, 0.8911825795808416, 0.9219141823795475, 0.415067301340699, 0.06487021616024734, 0.11713793689932331, 0.02229848824866482, 0.9769330799938403, 0.057905989823828934, 0.03913154455701538, 0.963016528619142, 0.3005272939299194, 0.9001474879647938, 0.9794563823270432, 0.03909138523296748, 0.6225279435513812, 0.11772226677047785, 0.9312819619117175, 0.9818064044869383, 0.03414475861313354, 0.9305172899317429, 0.019169977995446674, 0.8115132471264347, 0.03404404379983299, 0.016491581077213907, 0.9767593444596001, 0.044651488879549533, 0.916512525290796, 0.35394177811477645, 0.0447369179001949, 0.8638531077637784, 0.07349855112202217, 0.8502067629472954, 0.1438790602336842, 0.19509487351489482], [0.14580095875421298, 0.9642140035308686, 0.1457664150281495, 0.016550039609267292, 0.4146413295340404, 0.014194337944116099, 0.9703003344520186, 0.6972352397612939, 0.8679155225193351, 0.9959321390196086, 0.5636745563361902, 0.9644729722992038, 0.9769908168783589, 0.5697260839445815, 0.010295649338964243, 0.537724886025111, 0.0074687031451253, 0.012143965129388137, 0.964472973659513, 0.14505892373485946, 0.10519094756902575, 0.5041963615003483, 0.7884405076569202, 0.1785338547914893, 0.014154034761310122, 0.9775002493544663, 0.8922672319270173, 0.21452628093095885, 0.30638009061094607, 0.16126052085437353, 0.022264698388953705, 1.000001, 0.9610510511676469, 0.6936648359536364, 0.8648361843188719, 0.5677047128885816, 0.23641504519046036, 0.006309675594091358, 0.07418559589565155, 0.05044707807544883, 0.0053302523200173335, 0.004478382103744303, 0.5954577987675896, 0.3028912350030438, 0.03414907390779542, 0.016547948240565533, 0.07422662354926611, 0.05765498492058744, 0.35847138703222065, 0.909250998336769, 0.7876438011263712, 0.9989895159600198, 0.014140625813776144, 0.9332701025938741, 0.9771914706984857, 0.03886970944831842, 0.4705227564373958, 0.0062801421502614455, 0.02552296054916169, 0.9777318973675319, 0.19495007920111893, 0.7878304569457409, 0.057947167265629256, 0.03410594549054699, 0.9866572798827741, 0.0579361837520405, 0.9982002028767326, 0.10519094756902575, 0.9871717527442142, 0.9939971736777224, 0.03913896309599993, 0.9654332917725975, 0.0074085402039949745, 0.4128113783560496, 0.9639246472785249, 0.004481212761303848, 0.8891576761479753, 0.00443557559511214, 0.7245786898899531, 0.6323101096787288], [0.2359114113744964, 0.8595652598853527, 0.23623585232736277, 0.034011791878174345, 0.5636745563361901, 0.029631506428621772, 0.8919712867972849, 0.8418968421423101, 0.955963571520141, 0.9503863326006571, 0.7277906740954063, 0.9901755808788525, 0.8842412282914509, 0.7254032722796082, 0.022296727094928692, 0.6954752148097535, 0.016529137812124308, 0.02561383803720388, 0.8676824814076414, 0.23686362222772828, 0.17649246405604338, 0.6659810931040273, 0.909753853181967, 0.28056012408900843, 0.029706494409274628, 0.8861289444533871, 0.9721874664017721, 0.3318440632084985, 0.44226499129330743, 0.2556284648950285, 0.044224688687006054, 0.9610510511676469, 1.000001, 0.8434542958129224, 0.9654485426429665, 0.7286764632526087, 0.35847138971595, 0.014192320278489847, 0.13095573469712005, 0.09389254364410912, 0.012126520619061148, 0.010355020359649319, 0.7580898718688024, 0.4440921979191943, 0.06534331407316461, 0.03393451187376648, 0.1305364650727723, 0.10535558374716436, 0.5020266837590689, 0.9874056927101923, 0.9127479780832657, 0.9559635715201411, 0.02971024878569888, 0.9881263408990933, 0.9902844995442928, 0.07420903749125975, 0.6333597696642771, 0.014194338160586364, 0.05093714729201851, 0.9934965785818027, 0.30616237839909194, 0.9056386555945598, 0.1049834436852867, 0.06561224185122388, 0.9853829319180452, 0.1050763552878093, 0.9484666026229592, 0.17839853349008308, 0.9917386597471457, 0.9312819619117174, 0.07380570612681275, 0.9959641862297888, 0.016537495361165083, 0.5696900856948982, 0.9885501899274423, 0.010350441240678502, 0.9776855633771805, 0.010344556777028517, 0.8687385319417946, 0.7882412555054624], [0.5350558181810198, 0.5311819132132197, 0.5358932374045072, 0.1305364650657201, 0.8813406152539166, 0.11732127021415621, 0.5696450910865017, 0.9973339019147497, 0.9397420781188301, 0.6656129820249445, 0.9769908168988851, 0.8338495911965381, 0.5636745562922033, 0.972187466401772, 0.09401127475536197, 0.9615521734532395, 0.07408605169131526, 0.10455479504631926, 0.5367743621568681, 0.5377928449571546, 0.438924215545445, 0.9504914298132879, 0.9818064044869383, 0.5980596121648707, 0.11769251637681113, 0.5649850022348205, 0.9269229479702847, 0.6658969354878129, 0.7829670134819933, 0.5616835286132832, 0.15943678580714712, 0.6936648359536364, 0.8434542958129224, 1.000001, 0.9505665063744902, 0.9775002493544663, 0.6969269167171068, 0.0656277906395796, 0.3577190413217648, 0.28178156169578933, 0.057819155732059424, 0.050937147940495545, 0.9866572807242481, 0.7876438011263712, 0.2148111333680587, 0.1302069524074711, 0.3564160819092403, 0.3063946128901747, 0.835220620873217, 0.9139021866845884, 0.985535724144488, 0.6896441071374271, 0.11772226676941779, 0.8855272348676256, 0.8086340197776258, 0.23685239743613024, 0.9328721352110549, 0.06567445912098656, 0.17843517287922384, 0.811513244426226, 0.6337500901756797, 0.9769330799176041, 0.30500384364767136, 0.21583154760978884, 0.7800658348645035, 0.3053123569133719, 0.6639327779345285, 0.44422550736489513, 0.7856431443862745, 0.632040478395445, 0.23522298859229082, 0.8392014139543178, 0.07419848785615459, 0.8923236135622347, 0.8323756145726404, 0.050908189002816635, 0.9331669095683107, 0.0509371479417186, 0.9985944895611566, 0.9938244670094146], [0.35722775813088264, 0.7209821487994891, 0.35771904133572224, 0.06541354240109218, 0.7209821487994891, 0.05779632630758418, 0.7587607875054081, 0.9488112680623927, 0.9901755808788525, 0.8432944244703985, 0.8676824814076414, 0.955963571520141, 0.7521851663322094, 0.8648361867169001, 0.04473055805299021, 0.8408999899376626, 0.03410594549054699, 0.0506675038867877, 0.7277906740954063, 0.3586696389894051, 0.2787709135064972, 0.8166443046643352, 0.9829237170368805, 0.4130527323347227, 0.05794259054863447, 0.7537909635398307, 0.992916067934475, 0.4750036118621516, 0.5984281752803378, 0.38167798793403773, 0.08269633169389054, 0.8648361843188719, 0.9654485426429665, 0.9505665063744902, 1.000001, 0.8687385319470092, 0.5059516439492451, 0.029698987491039025, 0.2157599610998224, 0.16136245064491078, 0.025735511084167197, 0.022287219589269523, 0.8911825818048154, 0.6009005661512318, 0.11713793816604916, 0.06526491280629759, 0.21506918113475373, 0.17853385652413234, 0.6604494403123227, 0.9943740924026231, 0.9861586540112761, 0.8602580336776513, 0.05794991346910158, 0.9812017243562722, 0.9427157542679581, 0.13117312643849877, 0.7876438011263712, 0.02970321013074606, 0.09391776145262178, 0.9457735396962951, 0.44445012194512673, 0.9784775415193954, 0.17790323403549818, 0.11762003256062131, 0.92494832860022, 0.17806068052408677, 0.8415910144663306, 0.2817815616957895, 0.930914252752287, 0.8148016320827186, 0.13046019122395094, 0.9615521721201378, 0.03412319031694138, 0.7286764632482347, 0.9543943401948769, 0.022277363903188435, 0.9985313931866613, 0.022264698709979984, 0.9653875419337817, 0.9136856614528234], [0.6639327779066302, 0.4114117235568125, 0.6647198448464446, 0.19612384146594622, 0.9567038148758659, 0.17819574382166328, 0.4444501189967603, 0.9764970752976452, 0.8615636004583574, 0.5377673593493798, 0.9980904133620481, 0.722658307606268, 0.44140650211040117, 0.9964520299965827, 0.1457456927229047, 0.9963255300706113, 0.11764790488240945, 0.16074422861893325, 0.41485098552572774, 0.6658969354878129, 0.56412885611166, 0.9943740924056076, 0.9300911110017245, 0.7257815193855276, 0.17853385479148942, 0.4422649912933072, 0.8396655265113645, 0.787830456962293, 0.8882591965018699, 0.6902217397663561, 0.23454027968411056, 0.5677047128885816, 0.7286764632526087, 0.9775002493544663, 0.8687385319470092, 1.000001, 0.8164508221353827, 0.10534227034306545, 0.47458359970089453, 0.38569641291068574, 0.09391776145036679, 0.08363301508015841, 0.9966875868671582, 0.8902961175492994, 0.30516288185008594, 0.19572768170623772, 0.47327345394167447, 0.4151132010116863, 0.9269229479702847, 0.8165411082843069, 0.9326805817850934, 0.5649850021958185, 0.17853385479202527, 0.7844154508346692, 0.6927887750898357, 0.33178640542220605, 0.9858627128450951, 0.10529735002737962, 0.25840550849608834, 0.6948163472199345, 0.7580898718688024, 0.9262935380240104, 0.4140653324635741, 0.3062252578548081, 0.6609190914960822, 0.4143794149886867, 0.5369524573096037, 0.5695011322062067, 0.6647198448464449, 0.5054403848138538, 0.3304630376700529, 0.7264697468023623, 0.11758844919621725, 0.9652045575897188, 0.7215632323780101, 0.0836065965815156, 0.8435075929987067, 0.08346408082709211, 0.9652045575897187, 0.9943269697450082], [0.9639246472785248, 0.14488487829722332, 0.9647015331370541, 0.505440384813854, 0.9275234831907205, 0.4748235581353483, 0.16126052246409608, 0.6973564082789928, 0.5033607656248145, 0.21615910280764852, 0.8137597298628789, 0.3566357286114735, 0.16074422862761747, 0.8150977274430511, 0.4146413295340404, 0.8426552420586129, 0.3586243125226123, 0.4434192458885254, 0.14578253591086252, 0.964701533116786, 0.9075720498903336, 0.8684503907568004, 0.6007012608570631, 0.9851777181691442, 0.47512368056115684, 0.16099581042855818, 0.47392433085122504, 0.9966875868342523, 0.984788729524935, 0.9703003333758343, 0.5657709442182806, 0.23641504519046036, 0.35847138971595, 0.6969269167171068, 0.5059516439492451, 0.8164508221353827, 1.000001, 0.33196989680690575, 0.8431745408448301, 0.7563673725338687, 0.3063220182332821, 0.2819997571665618, 0.7856431443862741, 0.9834362430558771, 0.6644783785347178, 0.5046744692338545, 0.8415910144663306, 0.7878304569457408, 0.9610510525000538, 0.44445012194512684, 0.6017649869135193, 0.23552043806315612, 0.4750036088328312, 0.4138887656887666, 0.33046303768691404, 0.6965306946794033, 0.8895651011059171, 0.3314511405548444, 0.5999899924868645, 0.3312208425084135, 0.9917386597084499, 0.59877804768006, 0.7874323113054281, 0.6659495327533577, 0.30483525735290684, 0.7878304569622929, 0.21604986254773328, 0.9139021846600681, 0.30616237840552457, 0.19662016895488313, 0.6957719045473474, 0.3581091601043015, 0.357719038643668, 0.9324596093049958, 0.35618531715524476, 0.28198193896060153, 0.47507114847240306, 0.28086165866339274, 0.6653186396583648, 0.7590125379722187], [0.47428381842773376, 0.0026073405983798093, 0.47471106413076314, 0.9488112680623927, 0.17729724346942982, 0.9644729736595131, 0.0031429311073357486, 0.0656412692380176, 0.029523576741520115, 0.005334295586308156, 0.10503154836145256, 0.01410849635896351, 0.0031299995931795936, 0.1051178602257396, 0.9864235180690037, 0.11758844919621725, 0.998342128247539, 0.9742783242787122, 0.002624904231313433, 0.474921080147363, 0.5653867710218831, 0.13117312643849877, 0.044635268766074626, 0.41406533247973026, 0.9653875419337816, 0.0031351955173675897, 0.025696512956018262, 0.3581091601043016, 0.2580139377118728, 0.44109284019797435, 0.9069557818293742, 0.006309675594091358, 0.014192320278489847, 0.0656277906395796, 0.029698987491039025, 0.10534227034306545, 0.33196989680690575, 1.000001, 0.6656129820249442, 0.7567139520956684, 0.9982002025999505, 0.9943740924026231, 0.09372213033014237, 0.2578957667707268, 0.8412587190529431, 0.9472537773315589, 0.6642160146148482, 0.7283082122329388, 0.2150691811347538, 0.022287219589269523, 0.04472561213006431, 0.006284210918367711, 0.9652045589278843, 0.019169977995446664, 0.01208368696994367, 0.8156129274618317, 0.14541453765998202, 0.9987212778368173, 0.8899445935403012, 0.012113310168678676, 0.38555630470015767, 0.04448252526657723, 0.7275722684213933, 0.8433876790739382, 0.010301994347935176, 0.7279861452706917, 0.00533025241017404, 0.5696900888576054, 0.01035044124067852, 0.004483478575612937, 0.8141326043553481, 0.014170814044220234, 0.9963255300706113, 0.17839853521766486, 0.014089787776153953, 0.9942484369536794, 0.025772532700093227, 0.9908617352677201, 0.05790598982261229, 0.08365283443341635], [0.9502512246763823, 0.039002564134142576, 0.9505665063801964, 0.8431745408448301, 0.6317510056717917, 0.816605601778522, 0.044556368030896486, 0.35867530486529275, 0.21550448877172115, 0.0656277906395797, 0.4721981041118936, 0.13080067549961769, 0.04461764489078209, 0.47492108015591544, 0.7567139491581524, 0.5061674820864198, 0.6975877794848344, 0.7874323113054281, 0.03913896361691984, 0.9484666025887987, 0.983436243103104, 0.5369524573096038, 0.2818394338323462, 0.9132094865050926, 0.8158319833432568, 0.04466630369601722, 0.19653322106380372, 0.8652871383423208, 0.7582934808507533, 0.9291512706236146, 0.8887223616778143, 0.07418559589565155, 0.13095573469712005, 0.3577190413217648, 0.2157599610998224, 0.47458359970089453, 0.8431745408448301, 0.6656129820249442, 1.000001, 0.9812017243562722, 0.6339904018555614, 0.6016129107961745, 0.4419926067870522, 0.7537909664184889, 0.9498910307902614, 0.8424289811447265, 0.9992262565295635, 0.9921303943828628, 0.6960467360649589, 0.17813101410958845, 0.2819819389589089, 0.07399832950222637, 0.8153681641363061, 0.16136245064491078, 0.11747148360695553, 0.9620231601738264, 0.5664863887399023, 0.6636286952872034, 0.9087197132805271, 0.11764790488488117, 0.8877682245207742, 0.2812479181649127, 0.994138501456507, 0.9504914298132879, 0.10507635528780936, 0.9943269697509769, 0.06567757153264736, 0.9871717535535353, 0.10535059102409382, 0.05794991346927545, 0.9644729723223618, 0.13115447872837724, 0.6940703886470819, 0.6323101128099562, 0.13067676034575793, 0.6017649869081009, 0.19648045002713327, 0.5976723931259234, 0.3310900626215515, 0.4148509855257279], [0.8835570523909027, 0.025282195116006923, 0.8855272349260978, 0.9049379235737741, 0.5274943539812778, 0.8855272349260975, 0.029703209718938934, 0.2802234979249861, 0.15864540046141726, 0.04461764489078209, 0.3864343427680814, 0.09231156398051757, 0.029203984336156077, 0.3823297069439667, 0.8430280395572938, 0.41171728650934497, 0.7844154508770476, 0.8573277449859256, 0.025644607362789368, 0.891421934813637, 0.9313625949674845, 0.4440921979191943, 0.21387661171882005, 0.8338495912641114, 0.8902961175492993, 0.02929130587645283, 0.14400866977938728, 0.7882412555054623, 0.6577943803380498, 0.8502067629472955, 0.9313625949674846, 0.05044707807544883, 0.09389254364410912, 0.28178156169578933, 0.16136245064491078, 0.38569641291068574, 0.7563673725338687, 0.7567139520956684, 0.9812017243562722, 1.000001, 0.7245786898899528, 0.6951566856581637, 0.3586753021800368, 0.6659810931040273, 0.9761155052518296, 0.9018554397008226, 0.9761155044398541, 0.9975854257909961, 0.5921933785934389, 0.13107370261582726, 0.2150691791668105, 0.05006601156698413, 0.8909151409629943, 0.11618517389245647, 0.08231185783849923, 0.9939971736777226, 0.47518373084080406, 0.7587607904508699, 0.9654332917696998, 0.0826963307308246, 0.8166056017785221, 0.2124858061273262, 0.9895495362827211, 0.9829237170368805, 0.0729617973613859, 0.9909886992941881, 0.04442634626549943, 0.9467900201293792, 0.07366244043894964, 0.0388697094483184, 0.9821505395709841, 0.09308913908830257, 0.7883906899000044, 0.537385220152596, 0.09210763780119875, 0.6944542409532856, 0.1455248379991677, 0.6976208423188175, 0.25861377330019036, 0.33109006263447005], [0.4445413999009073, 0.002174941588528772, 0.44473104324215695, 0.9328721351942555, 0.16091698997383302, 0.9504914298218464, 0.0026162522735646665, 0.05794991346910158, 0.025684743897543705, 0.00448439938980696, 0.09347816437555151, 0.012102599223704043, 0.0026174510718129404, 0.09394001808467656, 0.9751405722411919, 0.10533062132756911, 0.9943740924026231, 0.9639246472785249, 0.0021837203201252493, 0.4439449024431416, 0.5353517258650788, 0.11758844919621725, 0.03911115082427975, 0.3860438570414834, 0.9498910307703043, 0.002620553960024057, 0.02227138189885282, 0.33079730306725447, 0.23656447639560438, 0.41305273233472295, 0.8882591965471919, 0.0053302523200173335, 0.012126520619061148, 0.057819155732059424, 0.025735511084167197, 0.09391776145036679, 0.3063220182332821, 0.9982002025999505, 0.6339904018555614, 0.7245786898899528, 1.000001, 0.998342128247539, 0.08317846276367236, 0.2353753844878159, 0.8158319833628459, 0.931929482807082, 0.6333597696642771, 0.6962996709849117, 0.1962075087785242, 0.01920149759848516, 0.0391408179506036, 0.005315453542145912, 0.949410984626697, 0.016524177515691282, 0.010333287408113685, 0.786003135521218, 0.13053646507277236, 0.9955074508307962, 0.864358161456612, 0.010350441077089467, 0.3570415832072838, 0.039020435056877356, 0.6973564051851716, 0.8166056017736202, 0.00878632543722835, 0.6975326834076016, 0.004486666815355881, 0.5377248860202692, 0.008812318622151132, 0.003763305486070207, 0.7874323113054281, 0.012138786669036549, 0.9898604852924632, 0.1612019429170166, 0.012090369740890535, 0.9985313934575413, 0.0222773635814446, 0.9923045458005657, 0.05087281645247867, 0.0741855958943156], [0.4145169009984627, 0.0017997769081959491, 0.4148509855344441, 0.9124740678169584, 0.14488487829722357, 0.9326805836149925, 0.002179584747092734, 0.0509685387143374, 0.022173091144711176, 0.0037633055517877346, 0.08335735345485713, 0.010301994347935156, 0.002172606559537518, 0.08349441103232039, 0.9642140035308688, 0.09391776145262186, 0.9872809186539171, 0.947687820401645, 0.0018109277160889565, 0.4148509855257282, 0.5027250484566659, 0.10531564858333566, 0.03408440171265231, 0.3578603395998891, 0.933270104405322, 0.0021760069196975727, 0.019186943655110294, 0.3058143566702283, 0.2155964239465194, 0.38349107016548706, 0.8627621084470514, 0.004478382103744303, 0.010355020359649319, 0.050937147940495545, 0.022287219589269523, 0.08363301508015841, 0.2819997571665618, 0.9943740924026231, 0.6016129107961745, 0.6951566856581637, 0.998342128247539, 1.000001, 0.07396443810737359, 0.21530032871571225, 0.7866490499823554, 0.9110913565697281, 0.600483049933752, 0.665476306878288, 0.17772346566484584, 0.016537495608784085, 0.0341447586131335, 0.004461435667253455, 0.9330342513863813, 0.014154034977165747, 0.00877342690630328, 0.7578623735848571, 0.11737502950007131, 0.992820223264839, 0.8408999899376628, 0.008793545783310541, 0.3310900626215518, 0.033975276637052326, 0.6651399953178767, 0.7883906899000043, 0.007438090965124072, 0.6654763068922694, 0.0037614036912078305, 0.5062314558093786, 0.007470473200685733, 0.003146110201482365, 0.7570367696381461, 0.010344556777028517, 0.9847887294865105, 0.14565593158513201, 0.010288983491467186, 0.999936814818072, 0.01923337284991594, 0.9959641862297888, 0.0446917119586588, 0.06567445912059233], [0.6277717311326235, 0.4362697766244806, 0.6291715557363882, 0.17678265595220802, 0.9324077700972617, 0.1603384610382979, 0.47507114847810666, 0.9812017251724786, 0.8761766880064655, 0.5682071414962935, 0.9985944895611566, 0.7453250172372974, 0.46708657111450763, 0.9879875991738905, 0.13113168930094818, 0.9861148005380437, 0.10481938904205458, 0.1438790602336842, 0.4425235654756571, 0.6333597696642769, 0.5269030594043366, 0.9858627128155054, 0.9405291880674226, 0.6896441071933137, 0.16120194131368462, 0.46848318598637456, 0.858100045412171, 0.7588686690764693, 0.8581000430328208, 0.6517436179452369, 0.2117921257739997, 0.5954577987675896, 0.7580898718688024, 0.9866572807242481, 0.8911825818048154, 0.9966875868671582, 0.7856431443862741, 0.09372213033014237, 0.4419926067870522, 0.3586753021800368, 0.08317846276367236, 0.07396443810737359, 1.000001, 0.8687797003646034, 0.2787709135064971, 0.1761804823977633, 0.4397014656855374, 0.3860438570414832, 0.8992521064870687, 0.84265524462879, 0.9457735412697666, 0.5909598370823743, 0.1613140251182068, 0.8058795779163731, 0.7170295787321984, 0.30627847117181506, 0.977731896283105, 0.09397563966555193, 0.23686362012603765, 0.7203787734078781, 0.7286764632526087, 0.9344130763373233, 0.3829341426247215, 0.2807152852621478, 0.6857333406599249, 0.3834910674007802, 0.5657709473558339, 0.5356308712796004, 0.6923183527561633, 0.5340678279449906, 0.30262819018628767, 0.7516031708685743, 0.10535058985562416, 0.9498910292099395, 0.7436785140630253, 0.07388969822646659, 0.8671343904987491, 0.07422662354926611, 0.9769908168988851, 0.9959321390196086], [0.904209166072992, 0.19274533870549823, 0.9063112961402988, 0.4107623379058783, 0.9579337766031231, 0.38321855741762595, 0.2160874056796148, 0.7829670134819934, 0.59031605424401, 0.28112798771316944, 0.8923095178194353, 0.43626977367538516, 0.21226103323976409, 0.882106677663689, 0.33171827730448505, 0.9056386535856273, 0.28039618981609754, 0.35361205417931935, 0.19561331594478706, 0.9127479780832656, 0.8254618854469571, 0.9316203825854146, 0.6896441071933141, 0.9389259625264204, 0.38540407092178997, 0.21291588493204092, 0.5622072678392139, 0.9773612868871642, 0.9868027525555617, 0.9123523430802316, 0.46502516151516987, 0.3028912350030438, 0.4440921979191943, 0.7876438011263712, 0.6009005661512318, 0.8902961175492994, 0.9834362430558771, 0.2578957667707268, 0.7537909664184889, 0.6659810931040273, 0.2353753844878159, 0.21530032871571225, 0.8687797003646034, 1.000001, 0.5627137201154944, 0.40931143121672753, 0.7497177451615623, 0.696739785255602, 0.9774298972812363, 0.5371136419347495, 0.6936648359536364, 0.30052729148176277, 0.38569641289795165, 0.49909310526197226, 0.40809121295225187, 0.6015083807590818, 0.9505665063744902, 0.2586668894683389, 0.5062074627831656, 0.41006214983815575, 0.9653112948031203, 0.685007951460339, 0.6907780347697725, 0.5668175863011562, 0.37944166957756936, 0.691826389112979, 0.2798519073328546, 0.8396655265542075, 0.38321855741762634, 0.25684277312203635, 0.5939077760306302, 0.44006975113356095, 0.28195966778509507, 0.9767593444596002, 0.43527850190384315, 0.21506918113475368, 0.5684315789621887, 0.21617276172422348, 0.7582934779071058, 0.8408999873728392], [0.8166056044956751, 0.016533577481773414, 0.8163347546344593, 0.9653875406011575, 0.44434482111428303, 0.9502512230954612, 0.019078140122336013, 0.2160054994613531, 0.11764790615465007, 0.029618871297012735, 0.3028912374386392, 0.0656277906395796, 0.0192272972966904, 0.30639461289017494, 0.9075720498903335, 0.3318912452182649, 0.8676824790017209, 0.9333438188923886, 0.016529138059618153, 0.8120133542136209, 0.8911825818048154, 0.35704158589852636, 0.16156650032010803, 0.7590604993525212, 0.9472537757556247, 0.019235499747358345, 0.10535558374716436, 0.6918263891129793, 0.56971708732835, 0.7871960103666361, 0.9861586531909463, 0.03414907390779542, 0.06534331407316461, 0.2148111333680587, 0.11713793816604916, 0.30516288185008594, 0.6644783785347178, 0.8412587190529431, 0.9498910307902614, 0.9761155052518296, 0.8158319833628459, 0.7866490499823554, 0.2787709135064971, 0.5627137201154944, 1.000001, 0.9653875405953625, 0.9506265718930871, 0.9721874664017721, 0.506039568150804, 0.09347816543826076, 0.16136245064491078, 0.03412319031694138, 0.9462965909760158, 0.0836488701870571, 0.05792794748300055, 0.9909886995689706, 0.38232970970030056, 0.8370830213552533, 0.9838275709671976, 0.0579508288992961, 0.7215632323780103, 0.16147719685580195, 0.9776083449324383, 0.9984215674920696, 0.05095968294820151, 0.9773612868871643, 0.02969382730213958, 0.8906196465062123, 0.050968538714337444, 0.025761542711458925, 0.9985787153691492, 0.06567445912098656, 0.8602580336776513, 0.4419926097284024, 0.06559462434282613, 0.7871960075290653, 0.10493204580854336, 0.7787361351286216, 0.19549284057927196, 0.2580139377118728], [0.6658233062941956, 0.0074720074822143346, 0.6654763068782881, 0.9997472832134794, 0.3062252578603228, 0.9978218335742808, 0.008726983347690589, 0.13103850808518167, 0.06565267636803905, 0.01414062602874824, 0.19413569453062948, 0.034136129659255346, 0.008811344231251463, 0.1967040479894209, 0.9792042805181914, 0.21604986056692588, 0.9636049349744917, 0.9943898004514259, 0.007461981343977763, 0.6613681813718011, 0.7584731812474808, 0.23552043806315612, 0.09399939489028152, 0.6018125185790366, 0.9940460225946081, 0.008813432343669655, 0.05794991346910158, 0.5325177546558632, 0.4151656639914576, 0.6333597728254152, 0.993620397836258, 0.016547948240565533, 0.03393451187376648, 0.1302069524074711, 0.06526491280629759, 0.19572768170623772, 0.5046744692338545, 0.9472537773315589, 0.8424289811447265, 0.9018554397008226, 0.931929482807082, 0.9110913565697281, 0.1761804823977633, 0.40931143121672753, 0.9653875405953625, 1.000001, 0.8434542958129224, 0.8861289443975352, 0.35862431520748667, 0.05063469875873387, 0.09383323433065083, 0.016543766296312323, 0.992916067934475, 0.0447369179001949, 0.029706494409274628, 0.942016096852522, 0.2556284670923388, 0.9420160968525219, 0.9752678012097861, 0.02970884083883875, 0.5632028284443934, 0.0939890012411837, 0.891971286797285, 0.9632548955488968, 0.025769682993863157, 0.8916331839739919, 0.014183579437033723, 0.7570367696086081, 0.025756252906837872, 0.012133418746096265, 0.95061155515762, 0.03414098317746323, 0.9543943401175351, 0.3040657629585845, 0.03412319031765831, 0.9118400648511803, 0.05765498491747261, 0.9010152921308604, 0.11684224608393257, 0.16091698996610532], [0.9505665063801964, 0.03910188497973329, 0.9502512246763823, 0.8434542958179855, 0.6333597728254152, 0.8163347519182074, 0.04436463130636515, 0.3583977821901464, 0.21600549945681496, 0.06547557125427604, 0.4697503878655688, 0.1311047644604384, 0.044711483934792184, 0.4751837308408042, 0.7537909635398307, 0.5061115144110104, 0.6967397821645165, 0.7883906898952717, 0.03909138575325418, 0.9452209157021461, 0.9861586540112761, 0.535351725865079, 0.2819953025090965, 0.9139166235250684, 0.8137597271551954, 0.04473055805299021, 0.1967289079100417, 0.861563600517833, 0.7590485087233303, 0.931929484615928, 0.8911825795808416, 0.07422662354926611, 0.1305364650727723, 0.3564160819092403, 0.21506918113475373, 0.47327345394167447, 0.8415910144663306, 0.6642160146148482, 0.9992262565295635, 0.9761155044398541, 0.6333597696642771, 0.600483049933752, 0.4397014656855374, 0.7497177451615623, 0.9506265718930871, 0.8434542958129224, 1.000001, 0.9887352884275147, 0.697356408278993, 0.17752144336136857, 0.2816391578270608, 0.07417036282724439, 0.8129374359751256, 0.16155884380237012, 0.11769251637681113, 0.9580952083259309, 0.5636745594621176, 0.660919091539723, 0.9042091641377915, 0.11773900467096102, 0.8835570523909027, 0.2818394338272707, 0.9942484369536794, 0.9491260720091086, 0.1052973500254834, 0.9939971736777224, 0.06564126923801769, 0.9855357249642995, 0.10531564858333566, 0.057917882521975876, 0.9654332917696998, 0.13119799417612676, 0.6907780317051363, 0.6300069801333282, 0.1310385080851816, 0.6009005661512317, 0.19593804184333816, 0.5944427817285812, 0.32988409686727665, 0.4138887656887666], [0.9097538531355481, 0.029370536443792183, 0.9110913565697282, 0.8882591965018698, 0.5632028316133453, 0.8661076505757489, 0.034140983177463204, 0.30570326645279333, 0.1766402924465212, 0.0509685387143374, 0.4147526974360294, 0.10423816236478126, 0.03381411324355773, 0.41305273233472284, 0.8166056017785221, 0.4432161589154976, 0.7578623706428832, 0.8376518133273838, 0.02966382216409901, 0.9139166235250684, 0.9535655011434728, 0.4751612122329445, 0.23565813562529073, 0.8638531077637785, 0.868573865726373, 0.03388951298732671, 0.1605513618998621, 0.8164508221451845, 0.6932376210545144, 0.8805474002309721, 0.9219141823795475, 0.05765498492058744, 0.10535558374716436, 0.3063946128901747, 0.17853385652413234, 0.4151132010116863, 0.7878304569457408, 0.7283082122329388, 0.9921303943828628, 0.9975854257909961, 0.6962996709849117, 0.665476306878288, 0.3860438570414832, 0.696739785255602, 0.9721874664017721, 0.8861289443975352, 0.9887352884275147, 1.000001, 0.6282578446879069, 0.14580326345583106, 0.23649348479629745, 0.057335285652383064, 0.8687385295329457, 0.13029542711614073, 0.0931612219780204, 0.9872809178326537, 0.5058477532350742, 0.7286189117602679, 0.9498910292099397, 0.09347816437555134, 0.8430280395572938, 0.23454027968411037, 0.9959641862297888, 0.976497075324023, 0.08283230240192303, 0.9969086162975754, 0.050852730382326204, 0.964472973659513, 0.08339554879645793, 0.04461764489078203, 0.9812017243562722, 0.10487735959035102, 0.758628953078588, 0.5697170873283502, 0.1040604780581877, 0.6651399953178767, 0.16154608374722346, 0.6651399953178767, 0.28199530250909627, 0.3585336848208268], [0.8681212035765823, 0.2368336906305388, 0.8674220950301753, 0.35839778219014656, 0.9942484369536794, 0.33145114055484454, 0.2556284648950285, 0.8415910144663304, 0.66594953274936, 0.33008739283980393, 0.9184256100292423, 0.5062074627831656, 0.25880994056502105, 0.9328721351942555, 0.27900440665665077, 0.949410983047174, 0.2361351160350824, 0.3063558949137808, 0.2361351160350821, 0.8609241705417205, 0.7882412555054625, 0.9580952083259308, 0.7586289530785879, 0.9135557709347002, 0.32988409686727693, 0.25879767575210033, 0.6338401944037149, 0.9389259625264206, 0.994138501456507, 0.8919712867972849, 0.415067301340699, 0.35847138703222065, 0.5020266837590689, 0.835220620873217, 0.6604494403123227, 0.9269229479702847, 0.9610510525000538, 0.2150691811347538, 0.6960467360649589, 0.5921933785934389, 0.1962075087785242, 0.17772346566484584, 0.8992521064870687, 0.9774298972812363, 0.506039568150804, 0.35862431520748667, 0.697356408278993, 0.6282578446879069, 1.000001, 0.5963991745838603, 0.7567139491581523, 0.3586526392136625, 0.32944665379844995, 0.5696450910865015, 0.4751912342500577, 0.5316436172234751, 0.963016528619142, 0.2136976246596209, 0.4380929721521862, 0.47500360883283094, 0.920226389376166, 0.7590485057767518, 0.6333597728254151, 0.5044433303133355, 0.4447872493942822, 0.6329996932429226, 0.33134120560492847, 0.7852585085991262, 0.4440921979191943, 0.30581435421112735, 0.5376654290016049, 0.5058477501493083, 0.2335236187046641, 0.9846204982819968, 0.5061115144110101, 0.1779032340354983, 0.6295990733432039, 0.17549162873095933, 0.8086340197776256, 0.8872494921263381], [0.30500384364767136, 0.7794130135907371, 0.305452254706235, 0.050756424467238395, 0.6583661360695058, 0.044598618921301535, 0.8164508194285467, 0.9118400648511803, 0.9838275714360173, 0.8919712867972849, 0.8158319860774246, 0.9769330799176041, 0.8086340197776258, 0.8124880996761187, 0.0341474556084792, 0.7856431472182472, 0.025735511084167197, 0.03886970996320478, 0.787196007529065, 0.30639945298161414, 0.23395192629526682, 0.7590125379722188, 0.9605198459125202, 0.3566357286114735, 0.04472561213006431, 0.8104371366435026, 0.9923045458005657, 0.4150673013406988, 0.5344138389257831, 0.32759398282910057, 0.06487021616024734, 0.909250998336769, 0.9874056927101923, 0.9139021866845884, 0.9943740924026231, 0.8165411082843069, 0.44445012194512684, 0.022287219589269523, 0.17813101410958845, 0.13107370261582726, 0.01920149759848516, 0.016537495608784085, 0.84265524462879, 0.5371136419347495, 0.09347816543826076, 0.05063469875873387, 0.17752144336136857, 0.14580326345583106, 0.5963991745838603, 1.000001, 0.9639246486149159, 0.9042091640672305, 0.04473409118962994, 0.9916620690821908, 0.968891215036944, 0.10534227034401399, 0.7281586634347281, 0.022296727416416823, 0.0741703628288027, 0.9721874653234946, 0.38621464875242645, 0.9559635728454947, 0.1452148286374343, 0.09389254471152933, 0.955963571520141, 0.14535252962342338, 0.8899445913194168, 0.23662801325843846, 0.9624639707527106, 0.8664771359572536, 0.10469362411668852, 0.9829237161690892, 0.02576154271145894, 0.6659810931040273, 0.9752678003985157, 0.016529138059618167, 0.9984525285972451, 0.016529138059618167, 0.9333880532780104, 0.8684503907568005], [0.4444501189874225, 0.6311126313633186, 0.4446818686832339, 0.09394001808270289, 0.8129374359751255, 0.08363301410718815, 0.6639327779345283, 0.9873589002799188, 0.9834362430558772, 0.7587607904508697, 0.9286376943606893, 0.910228226231021, 0.6636286952872031, 0.9324596075175103, 0.06552937637033351, 0.9135557709347002, 0.05098867052858443, 0.07408605169131526, 0.6340004201160752, 0.444092197919194, 0.3568442338333547, 0.8914219348136369, 0.9989895159840068, 0.5055921100138239, 0.08360659560784896, 0.6644783785347175, 0.9762040343309197, 0.5679648420138289, 0.6965306946794034, 0.47248910019105583, 0.11713793689932331, 0.7876438011263712, 0.9127479780832657, 0.985535724144488, 0.9861586540112761, 0.9326805817850934, 0.6017649869135193, 0.04472561213006431, 0.2819819389589089, 0.2150691791668105, 0.0391408179506036, 0.0341447586131335, 0.9457735412697666, 0.6936648359536364, 0.16136245064491078, 0.09383323433065083, 0.2816391578270608, 0.23649348479629745, 0.7567139491581523, 0.9639246486149159, 1.000001, 0.785258508599126, 0.0835696237299833, 0.9488112680623926, 0.8895650988859798, 0.17806067879603596, 0.8648361843188719, 0.04461764489078209, 0.13060865567727103, 0.8911825795808413, 0.5356308743728062, 0.9964520299965827, 0.23673269940653027, 0.16156650032010803, 0.8657109738002254, 0.2368075035845664, 0.758952590515221, 0.3586526392136626, 0.8685738681347652, 0.7286189117602677, 0.1782548669848584, 0.9132094864859062, 0.050782889749940406, 0.8150977247040047, 0.9092510003537149, 0.03414907390779542, 0.9769908168783589, 0.03395542452053887, 0.9924909269428008, 0.9650673430909373], [0.1456168200974437, 0.96543329311108, 0.14547197459687267, 0.016529137812124322, 0.4151656611147626, 0.014165666133911058, 0.9639449428698068, 0.6954752117242784, 0.8687934244087397, 0.9916620693571601, 0.5594166785107955, 0.9654485426429666, 0.9777318973675317, 0.569150384829595, 0.010233385281167203, 0.5367743621568681, 0.007446085000000814, 0.012140896145581458, 0.9615521734532395, 0.14425456602271325, 0.10535058985562416, 0.5016540926813927, 0.787643801107459, 0.178398533486335, 0.01408978756034777, 0.9775002493427309, 0.8918163070918609, 0.21312115050733405, 0.3062252553924033, 0.1615460821346505, 0.02229848824866482, 0.9989895159600198, 0.9559635715201411, 0.6896441071374271, 0.8602580336776513, 0.5649850021958185, 0.23552043806315612, 0.006284210918367711, 0.07399832950222637, 0.05006601156698413, 0.005315453542145912, 0.004461435667253455, 0.5909598370823743, 0.30052729148176277, 0.03412319031694138, 0.016543766296312323, 0.07417036282724439, 0.057335285652383064, 0.3586526392136625, 0.9042091640672305, 0.785258508599126, 1.000001, 0.014069325671942693, 0.9330342495753913, 0.9776855633713117, 0.03862487703541756, 0.46708656813567806, 0.006240584809138192, 0.02533656850485702, 0.976990816878359, 0.19357529481598512, 0.7884280529213962, 0.05785935742709999, 0.03399406634678467, 0.9874056927101923, 0.057819155732059424, 0.9959321389807493, 0.1048193890363917, 0.9851777181336614, 0.9917386597084499, 0.03911918344944254, 0.9642140021940766, 0.00735629531427333, 0.41041857635919843, 0.9653875406011575, 0.004466512853720569, 0.884897976370132, 0.004400957722491586, 0.7203787733495008, 0.6295990733432043], [0.6317510024902413, 0.0062619147270040485, 0.6325598708336816, 0.9950515062666158, 0.27922927338104764, 0.9977278467339425, 0.0074720073598407745, 0.11755316159853699, 0.05742592860661468, 0.012143965129497475, 0.1782548669848584, 0.029441607821588955, 0.007414042712633657, 0.17781613431343424, 0.994138501456507, 0.1962075069287658, 0.9767593444596001, 0.992916068209792, 0.0063176544469428575, 0.6339603575162471, 0.7209821487994891, 0.21617275974618222, 0.08331654233005183, 0.5671310563623189, 0.999936814818072, 0.007429166354005467, 0.050728368968714424, 0.5059516408628456, 0.3844615621254977, 0.594959472168079, 0.9769330799938403, 0.014140625813776144, 0.02971024878569888, 0.11772226676941779, 0.05794991346910158, 0.17853385479202527, 0.4750036088328312, 0.9652045589278843, 0.8153681641363061, 0.8909151409629943, 0.949410984626697, 0.9330342513863813, 0.1613140251182068, 0.38569641289795165, 0.9462965909760158, 0.992916067934475, 0.8129374359751256, 0.8687385295329457, 0.32944665379844995, 0.04473409118962994, 0.0835696237299833, 0.014069325671942693, 1.000001, 0.03891886184622078, 0.025579872425184242, 0.933034249575391, 0.2365644763956045, 0.9650673444289126, 0.976497075324023, 0.025658789512069693, 0.5372578976285596, 0.0829580112870353, 0.8661076505757489, 0.9498910292099396, 0.022114324523591068, 0.8668193925919402, 0.012122498523068284, 0.7283082122460542, 0.022249228487312204, 0.010341125555192648, 0.9286376943606892, 0.029605305379490392, 0.9767593444361471, 0.28195966778255654, 0.02939513623212925, 0.9326805836149925, 0.050987865077470024, 0.9316203843936604, 0.10534226917468803, 0.14578253441522052], [0.2819284910941308, 0.8161929167652776, 0.2817815616898691, 0.04472561213006431, 0.6336399731635568, 0.03911115082345802, 0.8352206208732172, 0.8911825795808416, 0.9870314153657809, 0.9102282262310211, 0.7780352631821531, 0.9939971736777226, 0.8432944244703985, 0.7883284221197038, 0.02946347484220498, 0.7586289560235375, 0.022257313685138242, 0.03414961335801197, 0.8150977274161403, 0.28004206471774384, 0.21600549748484227, 0.7245786898899527, 0.9504914298132879, 0.3319541649974133, 0.03896315214499871, 0.8434942683890689, 0.9943740924026231, 0.38263784982192234, 0.5062314527197528, 0.3060898387705511, 0.057905989823828934, 0.9332701025938741, 0.9881263408990933, 0.8855272348676256, 0.9812017243562722, 0.7844154508346692, 0.4138887656887666, 0.019169977995446664, 0.16136245064491078, 0.11618517389245647, 0.016524177515691282, 0.014154034977165747, 0.8058795779163731, 0.49909310526197226, 0.0836488701870571, 0.0447369179001949, 0.16155884380237012, 0.13029542711614073, 0.5696450910865015, 0.9916620690821908, 0.9488112680623926, 0.9330342495753913, 0.03891886184622078, 1.000001, 0.9872809178326537, 0.09316122197802049, 0.6890451882189774, 0.01906398082559302, 0.06487021536880636, 0.9873589002799187, 0.354568540718135, 0.950386332600657, 0.13115447872837724, 0.08346408082408599, 0.9775002493544664, 0.1311047644604384, 0.9129931253631238, 0.2155964219653395, 0.976990816878359, 0.8914219347922329, 0.09401127475507984, 0.994138501456507, 0.02204456768154557, 0.6291715556948436, 0.993620397836258, 0.014165666349944067, 0.9893133547191055, 0.013997500764134842, 0.9069557817694874, 0.840103353439605], [0.21600549748484207, 0.8921967621272502, 0.2158315456348695, 0.029687729642002125, 0.5377248828939893, 0.025735510720232505, 0.9026678516921133, 0.8148016320827186, 0.9505665047930446, 0.9599586039218152, 0.6864378045408922, 0.9985313931806673, 0.9139021866845884, 0.6972352397487374, 0.019033889339721166, 0.6651399953178762, 0.014154034761310096, 0.022296727094928685, 0.8895651011059172, 0.21421473521028256, 0.16152821974915843, 0.6291715557363882, 0.8918163070918605, 0.25871183833816824, 0.025613837674989818, 0.9138588775314582, 0.9652045575897188, 0.30262819018628756, 0.4150672984634395, 0.2367738366789874, 0.03913154455701538, 0.9771914706984857, 0.9902844995442928, 0.8086340197776258, 0.9427157542679581, 0.6927887750898357, 0.33046303768691404, 0.01208368696994367, 0.11747148360695553, 0.08231185783849923, 0.010333287408113685, 0.00877342690630328, 0.7170295787321984, 0.40809121295225187, 0.05792794748300055, 0.029706494409274628, 0.11769251637681113, 0.0931612219780204, 0.4751912342500577, 0.968891215036944, 0.8895650988859798, 0.9776855633713117, 0.025579872425184242, 0.9872809178326537, 1.000001, 0.06492660064442822, 0.5927830185706879, 0.01200662590977847, 0.044062907606404765, 0.9996051580843597, 0.27801889914664807, 0.892309517819435, 0.09391776145262169, 0.05774522109668821, 0.9985787153691492, 0.09386436704744558, 0.9636049363104395, 0.16091698835981194, 0.9970182758330476, 0.9488112680623927, 0.06566201014772749, 0.9978218335952448, 0.013997500550666411, 0.5325177515550621, 0.9983421279707174, 0.008782301281187227, 0.9587462272202697, 0.008663250919508337, 0.8352206208732172, 0.7547441642171961], [0.8381945098511986, 0.018966657560590374, 0.8396655265542078, 0.9446387680361671, 0.4684831859863748, 0.9291512688201611, 0.02229954500758408, 0.23602696564155337, 0.1294747226666773, 0.03411510571956138, 0.33184406320849874, 0.07324819350895605, 0.022025423156859767, 0.3296705104823618, 0.8923095178194351, 0.35684423383335484, 0.8412587190529431, 0.9056386555945599, 0.019186943655110294, 0.8433876790739384, 0.9001474879647938, 0.38628176229191363, 0.17729724174878794, 0.7824353542118456, 0.9326805818046887, 0.022080813736231688, 0.1167592176166171, 0.7287109963269247, 0.5968421352103666, 0.8035532943773724, 0.963016528619142, 0.03886970944831842, 0.07420903749125975, 0.23685239743613024, 0.13117312643849877, 0.33178640542220605, 0.6965306946794033, 0.8156129274618317, 0.9620231601738264, 0.9939971736777226, 0.786003135521218, 0.7578623735848571, 0.30627847117181506, 0.6015083807590818, 0.9909886995689706, 0.942016096852522, 0.9580952083259309, 0.9872809178326537, 0.5316436172234751, 0.10534227034401399, 0.17806067879603596, 0.03862487703541756, 0.933034249575391, 0.09316122197802049, 0.06492660064442822, 1.000001, 0.4150673013406988, 0.8166572051297538, 0.9871717527442142, 0.06517836742160082, 0.7589525875621812, 0.17633918980277577, 0.9818064044869383, 0.9963255301064956, 0.05723755196019814, 0.9829237162192417, 0.03401179187980768, 0.9121714205525828, 0.05768687047498211, 0.02959081119227149, 0.9916783137662659, 0.0737602502774511, 0.8433876790663442, 0.475161212235797, 0.07310947462590968, 0.757335797559782, 0.1176720673445401, 0.7586289560235377, 0.21615910083102963, 0.2817148009194309], [0.7521851692521448, 0.32596792726893464, 0.7537909664659996, 0.25646977549408456, 0.9763959471871864, 0.2352229886071167, 0.3586243125226123, 0.9280950814511855, 0.7749931908609856, 0.4437836348970706, 0.9874056927101923, 0.6231871667791417, 0.3529200732794309, 0.9777204501443179, 0.19665433757510747, 0.9868160346321775, 0.16083312673161645, 0.21351203971683033, 0.3304630376869141, 0.7584731812474805, 0.6532278548604372, 0.9973175646553226, 0.8602580337422006, 0.8079828197317439, 0.23641504519046025, 0.3539417754957654, 0.7503693978884669, 0.8686699182322962, 0.9397420781949846, 0.7724631510420437, 0.3005272939299194, 0.4705227564373958, 0.6333597696642771, 0.9328721352110549, 0.7876438011263712, 0.9858627128450951, 0.8895651011059171, 0.14541453765998202, 0.5664863887399023, 0.47518373084080406, 0.13053646507277236, 0.11737502950007131, 0.977731896283105, 0.9505665063744902, 0.38232970970030056, 0.2556284670923388, 0.5636745594621176, 0.5058477532350742, 0.963016528619142, 0.7281586634347281, 0.8648361843188719, 0.46708656813567806, 0.2365644763956045, 0.6890451882189774, 0.5927830185706879, 0.4150673013406988, 1.000001, 0.1457664165236263, 0.33197514090908, 0.5954577956305133, 0.8434942709618052, 0.8548529467833702, 0.5020266868215256, 0.38487476851942004, 0.5605843783300116, 0.5027250484566658, 0.44199260681358415, 0.6636286953170805, 0.5657709442182808, 0.4125571339217602, 0.410418579237492, 0.6282578415522331, 0.16156650032059294, 0.9938244670273118, 0.6218497709536711, 0.11726383324833761, 0.7578623706656293, 0.11773156658296949, 0.9133970389228595, 0.9632548955835899], [0.47219810411189367, 0.002588503850705856, 0.47302680352487503, 0.9446387680361671, 0.17601635847857117, 0.9610510525000538, 0.0031478501284590383, 0.0654455833011219, 0.029318618823890863, 0.00532898954617773, 0.10531564858333566, 0.014010552669419064, 0.0031091545181798842, 0.10462583930101815, 0.9874056935315595, 0.11713793689932331, 0.9959321390196086, 0.9688912161115655, 0.0026185677352938584, 0.4751236835955213, 0.5611425516658977, 0.1311544787283773, 0.04442634626549943, 0.41201006503777704, 0.9647015344745222, 0.0031169735675072156, 0.025561695647227364, 0.3586696389894053, 0.2566602620294021, 0.4376572026339021, 0.9001474879647938, 0.0062801421502614455, 0.014194338160586364, 0.06567445912098656, 0.02970321013074606, 0.10529735002737962, 0.3314511405548444, 0.9987212778368173, 0.6636286952872034, 0.7587607904508699, 0.9955074508307962, 0.992820223264839, 0.09397563966555193, 0.2586668894683389, 0.8370830213552533, 0.9420160968525219, 0.660919091539723, 0.7286189117602679, 0.2136976246596209, 0.022296727416416823, 0.04461764489078209, 0.006240584809138192, 0.9650673444289126, 0.01906398082559302, 0.01200662590977847, 0.8166572051297538, 0.1457664165236263, 1.000001, 0.8920981106323373, 0.012053184169105443, 0.3863794068528319, 0.044186281913262196, 0.7245786898899529, 0.8415910144663306, 0.010233385442906168, 0.7254032722796084, 0.005312851288347057, 0.5686381457808417, 0.010313718185851152, 0.004468841828438638, 0.8098612401081459, 0.01410849635896351, 0.9984525285882548, 0.17852539593692257, 0.01398401920662553, 0.9921303944185961, 0.025761542711922845, 0.9938244670094146, 0.0579471672656292, 0.08356962470321935], [0.7521851663322097, 0.011925910964018188, 0.7537909635398309, 0.9784775415193954, 0.37944166961629017, 0.9709596467041377, 0.014195907606287517, 0.17752144163855085, 0.092409316905181, 0.022249228487312166, 0.25880994056502116, 0.05011902874972772, 0.013970109046533561, 0.25627133148940234, 0.9502512246763822, 0.2798519050049242, 0.9097538531819671, 0.9535655011434729, 0.012090369740890514, 0.7584731783031358, 0.8273417327166455, 0.30600765074964453, 0.12991725757997924, 0.6902217398202186, 0.9758802492603265, 0.014010552456971075, 0.0826963307308246, 0.6339102867870174, 0.5004431040685662, 0.7139553068107323, 0.9794563823270432, 0.02552296054916169, 0.05093714729201851, 0.17843517287922384, 0.09391776145262178, 0.25840550849608834, 0.5999899924868645, 0.8899445935403012, 0.9087197132805271, 0.9654332917696998, 0.864358161456612, 0.8408999899376628, 0.23686362012603765, 0.5062074627831656, 0.9838275709671976, 0.9752678012097861, 0.9042091641377915, 0.9498910292099397, 0.4380929721521862, 0.0741703628288027, 0.13060865567727103, 0.02533656850485702, 0.976497075324023, 0.06487021536880636, 0.044062907606404765, 0.9871717527442142, 0.33197514090908, 0.8920981106323373, 1.000001, 0.04426172985799186, 0.6659810899667374, 0.129100974503124, 0.9427157542679583, 0.9903766279001409, 0.03851338095324144, 0.9440271517153553, 0.022159434745670645, 0.8405148533989334, 0.03886970944831842, 0.01911705665917231, 0.9761155044398541, 0.05052683126601919, 0.9139021866873314, 0.3862146459750399, 0.050011470405461826, 0.8401033560423423, 0.083522112481361, 0.8434542983855369, 0.16147719524682438, 0.21568158210409216], [0.21615910083102946, 0.8914219370382079, 0.2160874056796145, 0.029708840839017085, 0.5372578976414593, 0.025766019184159984, 0.9063112961402991, 0.8160253192344777, 0.9498910291899826, 0.9624639720870766, 0.6896441071933136, 0.9978218335742808, 0.9133970409325537, 0.6976208392238226, 0.019104679150104307, 0.6658233062941951, 0.014179770795704308, 0.02229848824853092, 0.8911825818048154, 0.21494351195153244, 0.16136244903417077, 0.6311126282133962, 0.892309517819435, 0.25881402896515937, 0.02568474353432693, 0.9137867001786186, 0.9654332917696997, 0.3038496904284108, 0.41516566111351655, 0.23649348269789072, 0.03909138523296748, 0.9777318973675319, 0.9934965785818027, 0.811513244426226, 0.9457735396962951, 0.6948163472199345, 0.3312208425084135, 0.012113310168678676, 0.11764790488488117, 0.0826963307308246, 0.010350441077089467, 0.008793545783310541, 0.7203787734078781, 0.41006214983815575, 0.0579508288992961, 0.02970884083883875, 0.11773900467096102, 0.09347816437555134, 0.47500360883283094, 0.9721874653234946, 0.8911825795808413, 0.976990816878359, 0.025658789512069693, 0.9873589002799187, 0.9996051580843597, 0.06517836742160082, 0.5954577956305133, 0.012053184169105443, 0.04426172985799186, 1.000001, 0.2792292733600954, 0.8918163070918605, 0.09399939489112775, 0.05785935742709993, 0.9980267659335417, 0.09397563966555185, 0.9648996643085233, 0.16126052085437353, 0.9982002028767326, 0.9500861188517227, 0.06567757073115923, 0.9985313931866613, 0.01405843962269081, 0.5344138358139411, 0.9973175646553226, 0.008799659940861012, 0.9615521721201378, 0.008705091371464104, 0.8381945098511984, 0.7567139491581523], [0.9792042804505949, 0.1157308979172728, 0.9812017243562722, 0.5649850021958187, 0.8771045114565442, 0.5344138358139415, 0.13119799417533923, 0.6307637932665978, 0.4376572025918673, 0.17819574555102488, 0.7590125379767749, 0.3014830313975314, 0.1292295208544361, 0.7521851692521451, 0.4750711454426522, 0.7829670134819933, 0.41349666169231647, 0.5004431040280116, 0.11726383324270616, 0.9868599189955928, 0.9334246288774815, 0.8158319860578355, 0.5329301058598558, 0.9887838787636394, 0.5369524541829803, 0.12959135645590003, 0.4107623379058782, 0.9985313934575413, 0.955193723769622, 0.9753322753549192, 0.6225279435513812, 0.19495007920111893, 0.30616237839909194, 0.6337500901756797, 0.44445012194512673, 0.7580898718688024, 0.9917386597084499, 0.38555630470015767, 0.8877682245207742, 0.8166056017785221, 0.3570415832072838, 0.3310900626215518, 0.7286764632526087, 0.9653112948031203, 0.7215632323780103, 0.5632028284443934, 0.8835570523909027, 0.8430280395572938, 0.920226389376166, 0.38621464875242645, 0.5356308743728062, 0.19357529481598512, 0.5372578976285596, 0.354568540718135, 0.27801889914664807, 0.7589525875621812, 0.8434942709618052, 0.3863794068528319, 0.6659810899667374, 0.2792292733600954, 1.000001, 0.5296987855393483, 0.8370830212999801, 0.7261370221186398, 0.2549147197972163, 0.8381945098511984, 0.17752144336136857, 0.9476878188249888, 0.2571838141309102, 0.16065030406036016, 0.7509978927911475, 0.30384969285073804, 0.41517221945259236, 0.8919712890232269, 0.300855040895709, 0.3307973030672546, 0.41464133240834666, 0.33192794697460654, 0.6016129107961742, 0.6962996740740446], [0.4443448181572793, 0.6339603606841876, 0.4439449024431413, 0.09391776145262186, 0.8166056017785219, 0.08349441005720364, 0.6572023574346215, 0.9847887287057449, 0.9874056935315594, 0.7542793313102608, 0.917483062198358, 0.9139021866845883, 0.6659916135546226, 0.9326805817850934, 0.06492660064442829, 0.9124740678169583, 0.050807764255034873, 0.07420903749125975, 0.6317510056433493, 0.44042443027643935, 0.35862431252261234, 0.8848979764312181, 0.99922625650857, 0.5059516408628455, 0.08307341290073944, 0.665896935481817, 0.9773612868871642, 0.5622072678392139, 0.6973564051851717, 0.47507114544835555, 0.11772226677047785, 0.7878304569457409, 0.9056386555945598, 0.9769330799176041, 0.9784775415193954, 0.9262935380240104, 0.59877804768006, 0.04448252526657723, 0.2812479181649127, 0.2124858061273262, 0.039020435056877356, 0.033975276637052326, 0.9344130763373233, 0.685007951460339, 0.16147719685580195, 0.0939890012411837, 0.2818394338272707, 0.23454027968411037, 0.7590485057767518, 0.9559635728454947, 0.9964520299965827, 0.7884280529213962, 0.0829580112870353, 0.950386332600657, 0.892309517819435, 0.17633918980277577, 0.8548529467833702, 0.044186281913262196, 0.129100974503124, 0.8918163070918605, 0.5296987855393483, 1.000001, 0.2365644763956045, 0.16091698996610532, 0.8687934268177409, 0.2364150451826549, 0.7573357975325052, 0.3570415832072838, 0.8671343904701206, 0.727066738464689, 0.1784661813138579, 0.9129931253850457, 0.050220471436079994, 0.8079828169802304, 0.9137867001786185, 0.034011791878174345, 0.970300334387949, 0.03353166340024066, 0.9838275714360174, 0.9593673782002528], [0.9139021866845884, 0.029653983336952537, 0.9138588775314582, 0.8923095178194353, 0.5686381457808418, 0.8687385295329457, 0.03393451187376645, 0.30632202069646497, 0.17825486871479376, 0.05089130389209122, 0.4114117235568127, 0.10519094873572474, 0.03410594549054696, 0.4151459895981794, 0.8124880969726666, 0.4447872493942822, 0.758628953078588, 0.8431745408448301, 0.029693827302139552, 0.9102282262310211, 0.9632548969190524, 0.47372223883411085, 0.23685239743613024, 0.8686699182322963, 0.8668193925607203, 0.03413019851903926, 0.1615282213615531, 0.8115132471264346, 0.6974555592975399, 0.8899445935403012, 0.9312819619117175, 0.057947167265629256, 0.1049834436852867, 0.30500384364767136, 0.17790323403549818, 0.4140653324635741, 0.7874323113054281, 0.7275722684213933, 0.994138501456507, 0.9895495362827211, 0.6973564051851716, 0.6651399953178767, 0.3829341426247215, 0.6907780347697725, 0.9776083449324383, 0.891971286797285, 0.9942484369536794, 0.9959641862297888, 0.6333597728254151, 0.1452148286374343, 0.23673269940653027, 0.05785935742709999, 0.8661076505757489, 0.13115447872837724, 0.09391776145262169, 0.9818064044869383, 0.5020266868215256, 0.7245786898899529, 0.9427157542679583, 0.09399939489112775, 0.8370830212999801, 0.2365644763956045, 1.000001, 0.976990816878359, 0.0835471854674386, 0.9999368148120695, 0.05098142257546995, 0.964472973636355, 0.08364887018705713, 0.04473055805258738, 0.9871717527442143, 0.10535558374716436, 0.7532791156295902, 0.5671310594784778, 0.10511786022573956, 0.665476306878288, 0.16113829363161916, 0.6594486328118928, 0.2807152852478246, 0.35799038328393945], [0.8158319860578357, 0.016465810581419264, 0.8163347546344593, 0.9644729722992038, 0.4425235654756573, 0.9502512230954612, 0.019186943655110294, 0.21614203037557506, 0.11720272020977754, 0.02970321013074606, 0.30500384366323396, 0.06537945158331648, 0.019160592742576355, 0.3060076532102997, 0.9121714185291587, 0.3317864054162311, 0.8687797003646033, 0.9312819618781757, 0.016550039857024405, 0.8156129274618319, 0.8872494943404968, 0.3583977821901465, 0.16136245064491078, 0.7578623735848572, 0.9502512230954612, 0.019186943655110294, 0.1051560592444365, 0.6957719076341392, 0.5686381457620678, 0.7834742837288624, 0.9818064044869383, 0.03410594549054699, 0.06561224185122388, 0.21583154760978884, 0.11762003256062131, 0.3062252578548081, 0.6659495327533577, 0.8433876790739382, 0.9504914298132879, 0.9829237170368805, 0.8166056017736202, 0.7883906899000043, 0.2807152852621478, 0.5668175863011562, 0.9984215674920696, 0.9632548955488968, 0.9491260720091086, 0.976497075324023, 0.5044433303133355, 0.09389254471152933, 0.16156650032010803, 0.03399406634678467, 0.9498910292099396, 0.08346408082408599, 0.05774522109668821, 0.9963255301064956, 0.38487476851942004, 0.8415910144663306, 0.9903766279001409, 0.05785935742709993, 0.7261370221186398, 0.16091698996610532, 0.976990816878359, 1.000001, 0.050782890397672954, 0.9773612868871643, 0.02970321013074606, 0.8923095200462213, 0.050968538714337444, 0.025769682993863098, 0.996687587110615, 0.06561224184964848, 0.8657109713997713, 0.4440922008745166, 0.06530513327781116, 0.7884405076569201, 0.10529735002548336, 0.7844154508770474, 0.196421487412216, 0.25874862453958314], [0.19653322106380386, 0.9138588775369436, 0.19635633878625303, 0.02575015063642191, 0.5062074627862045, 0.022257313685138284, 0.9210844484577043, 0.7863384479598039, 0.9333880514663335, 0.9715887104336615, 0.654632734699553, 0.9943740924026231, 0.9334027961234763, 0.665476306878288, 0.016360803245229517, 0.6329996932429226, 0.012102599223704054, 0.019233372850146854, 0.9106740747591767, 0.19479923784501393, 0.14578253441522063, 0.5968421352103668, 0.8681212035583435, 0.23673269940653038, 0.02214508742034337, 0.9332701025938739, 0.9502512246763823, 0.2782781365919632, 0.3862817622919138, 0.21611812926100585, 0.03414475861313354, 0.9866572798827741, 0.9853829319180452, 0.7800658348645035, 0.92494832860022, 0.6609190914960822, 0.30483525735290684, 0.010301994347935176, 0.10507635528780936, 0.0729617973613859, 0.00878632543722835, 0.007438090965124072, 0.6857333406599249, 0.37944166957756936, 0.05095968294820151, 0.025769682993863157, 0.1052973500254834, 0.08283230240192303, 0.4447872493942822, 0.955963571520141, 0.8657109738002254, 0.9874056927101923, 0.022114324523591068, 0.9775002493544664, 0.9985787153691492, 0.05723755196019814, 0.5605843783300116, 0.010233385442906168, 0.03851338095324144, 0.9980267659335417, 0.2549147197972163, 0.8687934268177409, 0.0835471854674386, 0.050782890397672954, 1.000001, 0.08349441102956379, 0.9755257506680743, 0.14513914721913554, 0.9980904133290959, 0.9632548955488965, 0.057927947483000654, 0.9933849854524031, 0.011962703880561368, 0.5008622655387351, 0.9942484369536795, 0.007446085121815734, 0.9433861289847668, 0.0073409722383514465, 0.8079828196686925, 0.7241324325271185], [0.9137867001703908, 0.029631506839434774, 0.9139166235250684, 0.8921967598927121, 0.5682071414962935, 0.8687934244087397, 0.0339752766370523, 0.3063800930764348, 0.17813101410958845, 0.05092347083503391, 0.41201006503777693, 0.10511786022195357, 0.034084401711526977, 0.4150673013406988, 0.8133613260684507, 0.4447872493942822, 0.7588686690764695, 0.8428549344886523, 0.029703210130746033, 0.9110913565697282, 0.9624639720870763, 0.474111529958786, 0.2368075035845664, 0.8684503907568004, 0.8674220926249768, 0.034115105719561355, 0.16147719685580186, 0.8124880996761188, 0.6972352428420213, 0.8891576783668956, 0.9305172899317429, 0.0579361837520405, 0.1050763552878093, 0.3053123569133719, 0.17806068052408677, 0.4143794149886867, 0.7878304569622929, 0.7279861452706917, 0.9943269697509769, 0.9909886992941881, 0.6975326834076016, 0.6654763068922694, 0.3834910674007802, 0.691826389112979, 0.9773612868871643, 0.8916331839739919, 0.9939971736777224, 0.9969086162975754, 0.6329996932429226, 0.14535252962342338, 0.2368075035845664, 0.057819155732059424, 0.8668193925919402, 0.1311047644604384, 0.09386436704744558, 0.9829237162192417, 0.5027250484566658, 0.7254032722796084, 0.9440271517153553, 0.09397563966555185, 0.8381945098511984, 0.2364150451826549, 0.9999368148120695, 0.9773612868871643, 0.08349441102956379, 1.000001, 0.050987865727664, 0.964899664308523, 0.08365415589061827, 0.04473621120580866, 0.9868599189955928, 0.1053422703430654, 0.754279328382196, 0.5677047160368589, 0.10503154836145252, 0.6657286521501264, 0.16126052246409597, 0.6604494403123229, 0.28099923048716363, 0.3582166588035751], [0.13117312643692391, 0.9747247503211393, 0.13120421184653536, 0.01419433816041598, 0.3852397259387908, 0.01214549991228776, 0.9829237162192416, 0.6659810931060265, 0.8412587190201188, 0.9989895159840068, 0.5340678279449906, 0.9480921082099748, 0.9851777181336614, 0.5375889939166555, 0.008782301281582623, 0.5062074658711259, 0.006323145760277216, 0.010350441240429976, 0.9776083449324382, 0.13085647565039105, 0.09367920539187927, 0.4742838184433922, 0.7587607904508697, 0.16147719685580195, 0.01213016080852986, 0.9861586531909462, 0.8681212035583435, 0.19583592709490893, 0.2817815616898694, 0.14521482714761647, 0.019169977995446674, 0.9982002028767326, 0.9484666026229592, 0.6639327779345285, 0.8415910144663306, 0.5369524573096037, 0.21604986254773328, 0.00533025241017404, 0.06567757153264736, 0.04442634626549943, 0.004486666815355881, 0.0037614036912078305, 0.5657709473558339, 0.2798519073328546, 0.02969382730213958, 0.014183579437033723, 0.06564126923801769, 0.050852730382326204, 0.33134120560492847, 0.8899445913194168, 0.758952590515221, 0.9959321389807493, 0.012122498523068284, 0.9129931253631238, 0.9636049363104395, 0.03401179187980768, 0.44199260681358415, 0.005312851288347057, 0.022159434745670645, 0.9648996643085233, 0.17752144336136857, 0.7573357975325052, 0.05098142257546995, 0.02970321013074606, 0.9755257506680743, 0.050987865727664, 1.000001, 0.09397563966555202, 0.9777318973675317, 0.9985944895611566, 0.03412319031694138, 0.9503863325892472, 0.006288083656648667, 0.3852397259387908, 0.9472537773315589, 0.003762592241399872, 0.8674220950301755, 0.0037348783416145987, 0.6954752148097539, 0.6012423862615557], [0.9861586531643077, 0.05762129649796018, 0.9868599189955929, 0.7580898718483244, 0.724578689889953, 0.7283082122329386, 0.06552937637033351, 0.4446818686778954, 0.28056012407385134, 0.09399939489112792, 0.5674267755969987, 0.17762522994533722, 0.06537945078566279, 0.5688268097730675, 0.6649403907617363, 0.6013848655073689, 0.6018125185790364, 0.6957719076069914, 0.05794716726528136, 0.9864235172484537, 0.9937012029392406, 0.6336399731635572, 0.3581091574232841, 0.9636049349744917, 0.7285383473064185, 0.06547557045544955, 0.25822596381464447, 0.9312819619117174, 0.8415910144360192, 0.970959646642939, 0.8115132471264347, 0.10519094756902575, 0.17839853349008308, 0.44422550736489513, 0.2817815616957895, 0.5695011322062067, 0.9139021846600681, 0.5696900888576054, 0.9871717535535353, 0.9467900201293792, 0.5377248860202692, 0.5062314558093786, 0.5356308712796004, 0.8396655265542075, 0.8906196465062123, 0.7570367696086081, 0.9855357249642995, 0.964472973659513, 0.7852585085991262, 0.23662801325843846, 0.3586526392136626, 0.1048193890363917, 0.7283082122460542, 0.2155964219653395, 0.16091698835981194, 0.9121714205525828, 0.6636286953170805, 0.5686381457808417, 0.8405148533989334, 0.16126052085437353, 0.9476878188249888, 0.3570415832072838, 0.964472973636355, 0.8923095200462213, 0.14513914721913554, 0.964899664308523, 0.09397563966555202, 1.000001, 0.14572036945655073, 0.0836211247496192, 0.9118400648511803, 0.17830837626847906, 0.5999899956478175, 0.7277906740954067, 0.1774121087924465, 0.5062314558078592, 0.2587118383381684, 0.5039335984016668, 0.4146413295340404, 0.5061674820864196], [0.19670404798942073, 0.9114800322005737, 0.19673201562102302, 0.025772532700093283, 0.5048897656103231, 0.022299897271730918, 0.9286376943606891, 0.7883906899000046, 0.9312819618781758, 0.9764970753240229, 0.6609190915397232, 0.9921303943828628, 0.9316203825854142, 0.6658233062941955, 0.016483507116800238, 0.6339904050198468, 0.012142622353593065, 0.01922334921612587, 0.913685661452823, 0.19612384147418707, 0.14535252813219293, 0.6004830499337521, 0.8685738681347652, 0.2367738387798818, 0.022264698388953705, 0.9324596075175101, 0.9500861188517228, 0.2805601240890087, 0.38621464596808497, 0.21540578527904683, 0.03404404379983299, 0.9871717527442142, 0.9917386597471457, 0.7856431443862745, 0.930914252752287, 0.6647198448464449, 0.30616237840552457, 0.01035044124067852, 0.10535059102409382, 0.07366244043894964, 0.008812318622151132, 0.007470473200685733, 0.6923183527561633, 0.38321855741762634, 0.050968538714337444, 0.025756252906837872, 0.10531564858333566, 0.08339554879645793, 0.4440921979191943, 0.9624639707527106, 0.8685738681347652, 0.9851777181336614, 0.022249228487312204, 0.976990816878359, 0.9970182758330476, 0.05768687047498211, 0.5657709442182808, 0.010313718185851152, 0.03886970944831842, 0.9982002028767326, 0.2571838141309102, 0.8671343904701206, 0.08364887018705713, 0.050968538714337444, 0.9980904133290959, 0.08365415589061827, 0.9777318973675317, 0.14572036945655073, 1.000001, 0.9654332917696996, 0.05791788252197598, 0.9942484369447271, 0.012069188526142575, 0.5044433272361369, 0.9913157600284531, 0.007473305966430537, 0.9488112680623928, 0.007414042833924391, 0.8137597298628793, 0.7277906740954068], [0.11770925004663914, 0.9843687934131434, 0.1177371447866072, 0.012142622353447275, 0.357566499196415, 0.010360746943754572, 0.9898604853429694, 0.6339904018574642, 0.8144799142087716, 0.9975854257909961, 0.5027250453899489, 0.9309142527159644, 0.9921303943828628, 0.5060395650638677, 0.007449732246095118, 0.4751612122329442, 0.005333621420500753, 0.008804665595330644, 0.9872809186539171, 0.1174251009406301, 0.08335735248409305, 0.4439449024577982, 0.7284347775259168, 0.1457203694565505, 0.010347661885623798, 0.9931182521747459, 0.8428549344886523, 0.1777234639400674, 0.2586137732947571, 0.13067675896258238, 0.016491581077213907, 0.9939971736777224, 0.9312819619117174, 0.632040478395445, 0.8148016320827186, 0.5054403848138538, 0.19662016895488313, 0.004483478575612937, 0.05794991346927545, 0.0388697094483184, 0.003763305486070207, 0.003146110201482365, 0.5340678279449906, 0.25684277312203635, 0.025761542711458925, 0.012133418746096265, 0.057917882521975876, 0.04461764489078203, 0.30581435421112735, 0.8664771359572536, 0.7286189117602677, 0.9917386597084499, 0.010341125555192648, 0.8914219347922329, 0.9488112680623927, 0.02959081119227149, 0.4125571339217602, 0.004468841828438638, 0.01911705665917231, 0.9500861188517227, 0.16065030406036016, 0.727066738464689, 0.04473055805258738, 0.025769682993863098, 0.9632548955488965, 0.04473621120580866, 0.9985944895611566, 0.0836211247496192, 0.9654332917696996, 1.000001, 0.02968772964137839, 0.9331669095571076, 0.005304046270084982, 0.357566499196415, 0.9300911110017245, 0.0031471043276626778, 0.8421761731932316, 0.003123923890252805, 0.6639327779345285, 0.569150384843261], [0.8433876790739384, 0.019223349216529743, 0.843028039557294, 0.9504914298218463, 0.4748235611635207, 0.9328721351942555, 0.022097911850175667, 0.23662801325843835, 0.1311316906826417, 0.034028451554189466, 0.32788908697574026, 0.0741855958943156, 0.022291092337573523, 0.33195416499741365, 0.8855272349260975, 0.35853368213663145, 0.8421761731932315, 0.9139021866845883, 0.019207868419986042, 0.8381945098511986, 0.9129931253850457, 0.3844615621254979, 0.17852539420329, 0.7884280529213963, 0.9296357562657277, 0.02229848824866478, 0.11773900467096102, 0.7221219695563045, 0.6018505466189307, 0.8156129274618319, 0.9767593444596001, 0.03913896309599993, 0.07380570612681275, 0.23522298859229082, 0.13046019122395094, 0.3304630376700529, 0.6957719045473474, 0.8141326043553481, 0.9644729723223618, 0.9821505395709841, 0.7874323113054281, 0.7570367696381461, 0.30262819018628767, 0.5939077760306302, 0.9985787153691492, 0.95061155515762, 0.9654332917696998, 0.9812017243562722, 0.5376654290016049, 0.10469362411668852, 0.1782548669848584, 0.03911918344944254, 0.9286376943606892, 0.09401127475507984, 0.06566201014772749, 0.9916783137662659, 0.410418579237492, 0.8098612401081459, 0.9761155044398541, 0.06567757073115923, 0.7509978927911475, 0.1784661813138579, 0.9871717527442143, 0.996687587110615, 0.057927947483000654, 0.9868599189955928, 0.03412319031694138, 0.9118400648511803, 0.05791788252197598, 0.02968772964137839, 1.000001, 0.07421724379995755, 0.8345480075630519, 0.471892375230779, 0.07415279009985819, 0.7576110075405476, 0.11720271894235108, 0.7490429901172669, 0.2146720500163321, 0.28099923048716374], [0.23686736394361368, 0.86742209505621, 0.23683369062840634, 0.034149613358012004, 0.5688268097901399, 0.02970649440900714, 0.8861289443975351, 0.8431745408448301, 0.9642140021940765, 0.9484666025887986, 0.7215632323780101, 0.9987212778368173, 0.8914219348136369, 0.7287109963291117, 0.022173090825005713, 0.6975877825796821, 0.016537495361165083, 0.025769682993863098, 0.8681212035583433, 0.23578846415835208, 0.17819574382754635, 0.6636286952872033, 0.9139021866873313, 0.28198193896060136, 0.029631506427465606, 0.8919712868106706, 0.9776083449324382, 0.3296705104615827, 0.4447310432421569, 0.25822596382394486, 0.044651488879549533, 0.9654332917725975, 0.9959641862297888, 0.8392014139543178, 0.9615521721201378, 0.7264697468023623, 0.3581091601043015, 0.014170814044220234, 0.13115447872837724, 0.09308913908830257, 0.012138786669036549, 0.010344556777028517, 0.7516031708685743, 0.44006975113356095, 0.06567445912098656, 0.03414098317746323, 0.13119799417612676, 0.10487735959035102, 0.5058477501493083, 0.9829237161690892, 0.9132094864859062, 0.9642140021940766, 0.029605305379490392, 0.994138501456507, 0.9978218335952448, 0.0737602502774511, 0.6282578415522331, 0.01410849635896351, 0.05052683126601919, 0.9985313931866613, 0.30384969285073804, 0.9129931253850457, 0.10535558374716436, 0.06561224184964848, 0.9933849854524031, 0.1053422703430654, 0.9503863325892472, 0.17830837626847906, 0.9942484369447271, 0.9331669095571076, 0.07421724379995755, 1.000001, 0.01641257463534723, 0.5668175831271763, 0.9980904133620481, 0.010350441240429976, 0.9747247502801819, 0.010250859050854697, 0.8643581614099152, 0.7866490499540231], [0.5020266837244134, 0.0030942105704727524, 0.503050750060634, 0.9574143827301836, 0.19337663533263524, 0.9715887104336615, 0.003763305486047615, 0.07384885679751131, 0.03360165579944716, 0.006311968481479595, 0.11773156531053088, 0.01628473837731805, 0.003706841463908733, 0.11667256197832578, 0.9941385014445717, 0.13029542574325884, 0.9959641862297888, 0.976115504360752, 0.0031351955172170313, 0.5059516408628457, 0.5909598370823741, 0.14565593009078875, 0.050526831266019236, 0.44042443027643957, 0.9762040343309198, 0.003717220417585547, 0.02939513622983536, 0.3864099258415106, 0.2790044066348781, 0.4660841761773933, 0.916512525290796, 0.0074085402039949745, 0.016537495361165083, 0.07419848785615459, 0.03412319031694138, 0.11758844919621725, 0.357719038643668, 0.9963255300706113, 0.6940703886470819, 0.7883906899000044, 0.9898604852924632, 0.9847887294865105, 0.10535058985562416, 0.28195966778509507, 0.8602580336776513, 0.9543943401175351, 0.6907780317051363, 0.758628953078588, 0.2335236187046641, 0.02576154271145894, 0.050782889749940406, 0.00735629531427333, 0.9767593444361471, 0.02204456768154557, 0.013997500550666411, 0.8433876790663442, 0.16156650032059294, 0.9984525285882548, 0.9139021866873314, 0.01405843962269081, 0.41517221945259236, 0.050220471436079994, 0.7532791156295902, 0.8657109713997713, 0.011962703880561368, 0.754279328382196, 0.006288083656648667, 0.5999899956478175, 0.012069188526142575, 0.005304046270084982, 0.8345480075630519, 0.01641257463534723, 1.000001, 0.19665433757510764, 0.016250817194496545, 0.9839179503781355, 0.029672726362407285, 0.9872809186539171, 0.06565267556705176, 0.09383323433065074], [0.812488099632224, 0.27852881589723644, 0.8137597298628788, 0.3048352573364381, 0.9876916870276771, 0.2809992304871639, 0.3063558924503252, 0.8899445912846927, 0.7203787733495004, 0.3862146459680846, 0.9647015331370541, 0.5632028284443931, 0.30314493084645294, 0.9599586025909227, 0.2368636222284395, 0.9738013352520969, 0.1963563387862532, 0.25684277531282496, 0.2814612541890781, 0.8166443046643352, 0.7191053764641636, 0.987280917823764, 0.8120133515117479, 0.8633210733344941, 0.2818884118422321, 0.3038496904284108, 0.6927887750898357, 0.9137867001786186, 0.9709596466429391, 0.8316001927931688, 0.35394177811477645, 0.4128113783560496, 0.5696900856948982, 0.8923236135622347, 0.7286764632482347, 0.9652045575897188, 0.9324596093049958, 0.17839853521766486, 0.6323101128099562, 0.537385220152596, 0.1612019429170166, 0.14565593158513201, 0.9498910292099395, 0.9767593444596002, 0.4419926097284024, 0.3040657629585845, 0.6300069801333282, 0.5697170873283502, 0.9846204982819968, 0.6659810931040273, 0.8150977247040047, 0.41041857635919843, 0.28195966778255654, 0.6291715556948436, 0.5325177515550621, 0.475161212235797, 0.9938244670273118, 0.17852539593692257, 0.3862146459750399, 0.5344138358139411, 0.8919712890232269, 0.8079828169802304, 0.5671310594784778, 0.4440922008745166, 0.5008622655387351, 0.5677047160368589, 0.3852397259387908, 0.7277906740954067, 0.5044433272361369, 0.357566499196415, 0.471892375230779, 0.5668175831271763, 0.19665433757510764, 1.000001, 0.5622072678392137, 0.14557312284503013, 0.6974555562032785, 0.14565593158862938, 0.8687934244087394, 0.9328721351942554], [0.23641504519046008, 0.8687797027735662, 0.2361351160350821, 0.03408440171265231, 0.569717084168913, 0.02961887088637489, 0.8780055754418163, 0.8401033534799487, 0.9653875406011574, 0.9427157558363426, 0.7139553068107319, 0.999936814818072, 0.8921967599007454, 0.7275722684213931, 0.021985100105835653, 0.6957719076341389, 0.016465810334873633, 0.02575625290737895, 0.8643581614566119, 0.23395192629526657, 0.17853667507665708, 0.658917570869972, 0.9124740678169583, 0.2816391578270606, 0.029441607821588955, 0.8918163070918607, 0.9767593444596001, 0.326648337213286, 0.44434481815727955, 0.25880994056502105, 0.0447369179001949, 0.9639246472785249, 0.9885501899274423, 0.8323756145726404, 0.9543943401948769, 0.7215632323780101, 0.35618531715524476, 0.014089787776153953, 0.13067676034575793, 0.09210763780119875, 0.012090369740890535, 0.010288983491467186, 0.7436785140630253, 0.43527850190384315, 0.06559462434282613, 0.03412319031765831, 0.1310385080851816, 0.1040604780581877, 0.5061115144110101, 0.9752678003985157, 0.9092510003537149, 0.9653875406011575, 0.02939513623212925, 0.993620397836258, 0.9983421279707174, 0.07310947462590968, 0.6218497709536711, 0.01398401920662553, 0.050011470405461826, 0.9973175646553226, 0.300855040895709, 0.9137867001786185, 0.10511786022573956, 0.06530513327781116, 0.9942484369536795, 0.10503154836145252, 0.9472537773315589, 0.1774121087924465, 0.9913157600284531, 0.9300911110017245, 0.07415279009985819, 0.9980904133620481, 0.016250817194496545, 0.5622072678392137, 1.000001, 0.010301994347935156, 0.9681415428333839, 0.010139253060202443, 0.8573277449859257, 0.7818793531382333], [0.4147526974260709, 0.0018019389394705492, 0.4150082949349934, 0.9129931253631237, 0.14505892522307787, 0.9330342513863813, 0.0021779327117331386, 0.05098142257546995, 0.02219832448363845, 0.003762592241399872, 0.08327312218332507, 0.010313718185324885, 0.0021749415884243267, 0.0835471854674386, 0.9636049363422532, 0.09395931143036329, 0.9874056935315595, 0.9484666025887986, 0.001811156585380285, 0.4146413324083471, 0.5033607656248145, 0.10527572855824388, 0.03410594549054699, 0.35810916010430166, 0.9330342513863813, 0.0021779327117331386, 0.019201497598485148, 0.30558256199862155, 0.21575996109982237, 0.384000274034055, 0.8638531077637784, 0.004481212761303848, 0.010350441240678502, 0.050908189002816635, 0.022277363903188435, 0.0836065965815156, 0.28198193896060153, 0.9942484369536794, 0.6017649869081009, 0.6944542409532856, 0.9985313934575413, 0.999936814818072, 0.07388969822646659, 0.21506918113475368, 0.7871960075290653, 0.9118400648511803, 0.6009005661512317, 0.6651399953178767, 0.1779032340354983, 0.016529138059618167, 0.03414907390779542, 0.004466512853720569, 0.9326805836149925, 0.014165666349944067, 0.008782301281187227, 0.757335797559782, 0.11726383324833761, 0.9921303944185961, 0.8401033560423423, 0.008799659940861012, 0.3307973030672546, 0.034011791878174345, 0.665476306878288, 0.7884405076569201, 0.007446085121815734, 0.6657286521501264, 0.003762592241399872, 0.5062314558078592, 0.007473305966430537, 0.0031471043276626778, 0.7576110075405476, 0.010350441240429976, 0.9839179503781355, 0.14557312284503013, 0.010301994347935156, 1.000001, 0.0192272972966904, 0.9948949137686568, 0.04466630369467656, 0.06566201094882858], [0.3309488783549571, 0.7521851692521451, 0.33134120560492836, 0.05777168064886732, 0.6913129305898679, 0.05089130324297587, 0.787830456962293, 0.9322092332557154, 0.9902844994759314, 0.8687385319417946, 0.8418968421701054, 0.969610835853637, 0.7824353541601808, 0.8405148533610924, 0.03912598157592088, 0.8148016347645223, 0.02968772964137839, 0.044508532074185245, 0.7584731812315454, 0.33192794697460615, 0.25627133147017306, 0.7884280529237623, 0.9742783242787122, 0.3848747657262551, 0.05098786507731701, 0.7839571085626608, 0.9954451311176898, 0.4444501189967603, 0.5671310563333818, 0.3548655178458885, 0.07349855112202217, 0.8891576761479753, 0.9776855633771805, 0.9331669095683107, 0.9985313931866613, 0.8435075929987067, 0.47507114847240306, 0.025772532700093227, 0.19648045002713327, 0.1455248379991677, 0.0222773635814446, 0.01923337284991594, 0.8671343904987491, 0.5684315789621887, 0.10493204580854336, 0.05765498491747261, 0.19593804184333816, 0.16154608374722346, 0.6295990733432039, 0.9984525285972451, 0.9769908168783589, 0.884897976370132, 0.050987865077470024, 0.9893133547191055, 0.9587462272202697, 0.1176720673445401, 0.7578623706656293, 0.025761542711922845, 0.083522112481361, 0.9615521721201378, 0.41464133240834666, 0.970300334387949, 0.16113829363161916, 0.10529735002548336, 0.9433861289847668, 0.16126052246409597, 0.8674220950301755, 0.2587118383381684, 0.9488112680623928, 0.8421761731932316, 0.11720271894235108, 0.9747247502801819, 0.029672726362407285, 0.6974555562032785, 0.9681415428333839, 0.0192272972966904, 1.000001, 0.01919452245724228, 0.9503863326006571, 0.8922672319270171], [0.4107623379058786, 0.0017744824246035352, 0.41171728936338187, 0.9042091660729922, 0.1428486324935414, 0.9256353127210759, 0.0021828925782473294, 0.05063469875873383, 0.021872519068486387, 0.003751908795400029, 0.0836528344334164, 0.01016234346163311, 0.0021442389604009273, 0.08269633169389054, 0.9647015344542541, 0.09316122197802057, 0.9818064053036477, 0.9372070234130214, 0.0018008860473290483, 0.4146413324083471, 0.4954091422376083, 0.10515605924443654, 0.03375860677101148, 0.35426061695756755, 0.9309142545591622, 0.002150854204331633, 0.0189843429315922, 0.306278473634648, 0.2133198762970013, 0.37771933197234053, 0.8502067629472954, 0.00443557559511214, 0.010344556777028517, 0.0509371479417186, 0.022264698709979984, 0.08346408082709211, 0.28086165866339274, 0.9908617352677201, 0.5976723931259234, 0.6976208423188175, 0.9923045458005657, 0.9959641862297888, 0.07422662354926611, 0.21617276172422348, 0.7787361351286216, 0.9010152921308604, 0.5944427817285812, 0.6651399953178767, 0.17549162873095933, 0.016529138059618167, 0.03395542452053887, 0.004400957722491586, 0.9316203843936604, 0.013997500764134842, 0.008663250919508337, 0.7586289560235377, 0.11773156658296949, 0.9938244670094146, 0.8434542983855369, 0.008705091371464104, 0.33192794697460654, 0.03353166340024066, 0.6594486328118928, 0.7844154508770474, 0.0073409722383514465, 0.6604494403123229, 0.0037348783416145987, 0.5039335984016668, 0.007414042833924391, 0.003123923890252805, 0.7490429901172669, 0.010250859050854697, 0.9872809186539171, 0.14565593158862938, 0.010139253060202443, 0.9948949137686568, 0.01919452245724228, 1.000001, 0.04469171195973189, 0.06547557125427594], [0.5036550535467101, 0.5627137201154946, 0.5044433272361365, 0.11713793689299486, 0.8581000430328205, 0.10498344252088916, 0.6017649869135194, 0.995932138704596, 0.9543943414407133, 0.6972352428420218, 0.964701533137054, 0.8588459070187924, 0.5954577987211225, 0.9599586025909226, 0.08365283345946224, 0.9467900200839121, 0.06555318923969546, 0.09329671209121014, 0.5686381457620682, 0.5062314527197523, 0.40969308894041967, 0.9332701025938739, 0.9887352884275148, 0.566137494961593, 0.1053156474152535, 0.5968421352103668, 0.9440271532264201, 0.6339102867870172, 0.7537909634923198, 0.530209448607706, 0.1438790602336842, 0.7245786898899531, 0.8687385319417946, 0.9985944895611566, 0.9653875419337817, 0.9652045575897187, 0.6653186396583648, 0.05790598982261229, 0.3310900626215515, 0.25861377330019036, 0.05087281645247867, 0.0446917119586588, 0.9769908168988851, 0.7582934779071058, 0.19549284057927196, 0.11684224608393257, 0.32988409686727665, 0.28199530250909627, 0.8086340197776256, 0.9333880532780104, 0.9924909269428008, 0.7203787733495008, 0.10534226917468803, 0.9069557817694874, 0.8352206208732172, 0.21615910083102963, 0.9133970389228595, 0.0579471672656292, 0.16147719524682438, 0.8381945098511984, 0.6016129107961742, 0.9838275714360174, 0.2807152852478246, 0.196421487412216, 0.8079828196686925, 0.28099923048716363, 0.6954752148097539, 0.4146413295340404, 0.8137597298628793, 0.6639327779345285, 0.2146720500163321, 0.8643581614099152, 0.06565267556705176, 0.8687934244087394, 0.8573277449859257, 0.04466630369467656, 0.9503863326006571, 0.04469171195973189, 1.000001, 0.9868599189955928], [0.6004830499121243, 0.4715719454406554, 0.6010809469860452, 0.16120194291701648, 0.9262935380851739, 0.1456168200974437, 0.505592110013824, 0.9936203978153823, 0.9075720518463516, 0.6018505466189309, 0.9917386597471456, 0.7829670134819934, 0.5030507500606339, 0.9917386597471456, 0.11764790488488117, 0.985862713635589, 0.09397563966555193, 0.1306767603394825, 0.4750036118621516, 0.6016129107961742, 0.502026683759069, 0.9776083449324382, 0.962874562169588, 0.6639327779345282, 0.14580095875377538, 0.5039335953275779, 0.889157676147975, 0.7277906740954063, 0.8405148533610927, 0.6282578415522327, 0.19509487351489482, 0.6323101096787288, 0.7882412555054624, 0.9938244670094146, 0.9136856614528234, 0.9943269697450082, 0.7590125379722187, 0.08365283443341635, 0.4148509855257279, 0.33109006263447005, 0.0741855958943156, 0.06567445912059233, 0.9959321390196086, 0.8408999873728392, 0.2580139377118728, 0.16091698996610532, 0.4138887656887666, 0.3585336848208268, 0.8872494921263381, 0.8684503907568005, 0.9650673430909373, 0.6295990733432043, 0.14578253441522052, 0.840103353439605, 0.7547441642171961, 0.2817148009194309, 0.9632548955835899, 0.08356962470321935, 0.21568158210409216, 0.7567139491581523, 0.6962996740740446, 0.9593673782002528, 0.35799038328393945, 0.25874862453958314, 0.7241324325271185, 0.3582166588035751, 0.6012423862615557, 0.5061674820864196, 0.7277906740954068, 0.569150384843261, 0.28099923048716374, 0.7866490499540231, 0.09383323433065074, 0.9328721351942554, 0.7818793531382333, 0.06566201094882858, 0.8922672319270171, 0.06547557125427594, 0.9868599189955928, 1.000001]], "covariance_matrix_inverse": [[820746.1223830455, -1065.9255243262085, -177206.0942406673, 2043.4841301994422, 48610.20850056078, -945.8047177800238, 1730.7601989143886, 2093.360361702432, -12787.392745122692, -9528.82070044151, -9038.253160445815, 460.28896617193743, -1.5043297252377443, 15974.086906682805, -10212.642493418616, 10547.049576063735, 3206.831933569481, -34473.604830146025, 5855.926806544814, -63772.87398065399, -58156.63336547212, 4054.355907178572, -4491.11664522097, -175965.80198044376, 420.2509449872593, -489.466059878472, -3430.1348621386132, -10454.435353014938, -73188.89449556303, -84424.2943751475, 31577.459481079975, -1315.281797370365, 2132.2794012647755, -6896.014527821953, 3349.0563477174264, 3617.967122319728, -116292.23569936772, 19251.880876894975, -70962.38819577676, 46524.16088779108, -7521.10033346258, 6659.338020078695, -15320.75695143424, 50764.8065722172, 30395.24042040847, -4551.702562213668, -65384.037392164464, 9739.046765337924, -6036.107764633471, 4507.348593049688, 892.4350221061403, 3733.2110541864813, -4235.858872127943, -278.0180597765861, 2826.0782210034927, 18991.580083280256, 12306.538944486234, 16311.957540355445, -20730.78134859251, 3909.9988295374515, 16479.358262831036, -9522.10139682217, -27793.247551576675, 15668.613298057146, 3658.776497222545, -29970.904514092726, -5005.742715342763, -113333.95908796994, 2863.6224530348663, -4837.992168452685, 28410.5714952646, 4773.58371002514, -10443.58900328945, 3439.2980867676592, -324.2655718396107, -5002.411835827788, 6455.6299728998865, -4737.7126802477205, -7204.3893369170355, 2365.068201555728], [-1065.925523876289, 356889.331525022, 635.3144533816528, -2714.3643415718134, 8930.951103888157, -4359.5428793006795, 2933.7297367550914, 2539.137693303266, -8301.02684274415, 39948.82123584498, 7898.008229959935, 5.236394556192453, -327569.1060188801, -8893.269433612337, 2255.262636011682, -12940.990085440259, -3141.6781182740965, -7709.138427539784, -23428.023584172668, 5859.589796016559, -6133.964102589387, -20530.093571975332, 535.434075589918, 2570.267152376252, -121.29680972884694, -216207.57145672085, -7867.426900539713, 11136.41933285602, 8047.019717662617, -8519.518823696686, 7282.051442361565, 63419.15779514364, -86037.40962791986, 33363.19886247811, 3849.3062224597466, -10723.903483006128, 11599.859327654141, -853.3751470851685, -5456.557119964616, -6281.850021635689, 1683.7943948405966, 1844.7797850205843, 22418.95622575831, -10569.304494653717, 8077.9184021540195, -2819.6487790821384, -2069.6116420715375, -7314.997556750002, 7525.31994894489, -35618.79451250256, 10577.648545012738, -8205.5071075427, 1068.0390825288482, -6398.277449773107, 11564.509766855641, -1656.9971044930548, -22620.803377204396, 744.9596269842208, 5768.066096071671, 14206.83719273737, 11409.245869637338, -1454.3688290942507, 344.3501130927902, 2254.013746559584, 16175.94230125908, -1076.696608914983, 80531.85831267777, -4767.984925959092, 15693.76201049833, 81099.13472482646, 8800.281292217313, 583.2292776843802, 3141.0755714734482, -22691.435555443288, -5581.950589770448, 3010.1003710904215, -12987.277894325069, -4538.198354638163, 39797.616219457566, 1302.3943665575955], [-177206.09431047758, 635.3144663591403, 813362.74289443, 3340.3122429410787, 50953.84239150894, 840.5594988641246, 3540.8566928614378, 3868.6694420587582, -14867.893782715546, -8971.371600275905, -5024.956596011657, -298.33883421609715, 511.54560346762736, 11555.868917522688, -10771.922370661203, 6593.885699496551, 4308.218828242565, -37468.021934630124, 3191.747410887701, -96265.15057935135, -9408.91528814713, 849.8738234462016, -1458.0253123841123, -165559.79362921283, 1813.3239583052255, -727.7897234605748, 793.1034312604949, -29764.399199818243, -66549.48885419923, -26605.97563946922, 27776.60940521897, -1852.7891867886503, 399.06984401543343, -8712.8844509261, 1580.8374285169157, 1779.828725468222, -138250.82525095387, 20074.514453556323, -83001.90015747254, 50366.39506166502, -7526.326172918652, 7606.205201549048, -13434.669285439219, 59286.08542877813, 34326.36026441565, -5422.519979707609, -57774.90949315644, -6484.250775306109, 2514.374887973538, 1552.856243644849, 5057.990984104145, 2086.1672936444243, -3033.559590007337, 2997.5500169482166, 2832.4136013921925, 16264.238755705075, 18830.37390187123, 14581.861811972767, -12461.477176967908, 5666.945747451088, 583.2578274891422, -14139.719307376763, -28396.635047388467, 11894.210529332595, 2677.0680558158138, -34832.655588642156, -5330.397563819103, -138535.0476313101, 4242.216384780649, -5339.305698493831, 34150.816080532146, 7744.993668381976, -13355.089208074314, -1137.6215282944213, -2724.411588412449, -4728.53177543726, 6438.655005889556, -4490.523011461357, -9446.678782830115, 1904.2423660720808], [2043.4841199612702, -2714.364344332757, 3340.312307677271, 819116.9825334313, 678.8629948023852, -177387.8203391645, -2019.1992346545876, -5422.6251981279065, 1519.4952278221126, -5283.375673424813, -2524.8772037637254, 61.50249867516205, 956.50111563528, 11674.57021818973, -6289.529447042751, 11444.775986930686, -60261.407845842135, -118776.33374778413, 4984.6081224362615, -2425.18863341284, 51296.02382257166, 9557.027353196208, -4250.987492665643, -13710.835510347344, -114882.06266038233, 1697.4808931948928, -2802.1339958193626, -6337.561246527391, -14596.037326819935, -14776.413400170346, -65920.99836658537, -535.5864195286618, 6535.296662810968, -8607.180260825464, 2424.751629523133, 2041.2935314031686, 1571.6941560911685, -33220.00420852203, 12832.252366609277, 24725.41312495073, 24667.94875802179, -2021.7077568104842, -4717.638749355635, -975.0643794147977, -85343.83929755272, -158578.9875433388, 29920.061726143507, 2.0289004245068343, -10842.39969314807, 8017.405195018736, -8550.557126542146, 1389.7770126451612, -89217.57896306965, -1452.3731311069703, -117.57713050432315, -4442.49397763354, 6960.802770562076, 17197.809420755835, 38713.15860885844, -448.9829612089881, -14925.460801775474, 4881.14401377763, -1365.577640396002, -89895.37291518907, 231.25635658900376, -6079.016822490851, -1856.460375872379, 13571.857069150108, -491.97014054290423, -1031.2176585966713, -52340.304181519336, -493.0796513605903, 70390.05374771633, 16373.130600712864, 591.4376120050786, 23686.572745833557, 2811.7186811335464, -17402.555614016306, -8239.941365980996, -4327.7928858385485], [48610.20851463161, 8930.95115878626, 50953.84247319626, 678.862903262593, 469322.3678669699, 1615.747708495745, 15882.9238113282, 20981.7678150671, -15634.886531637774, 12267.583610791751, -36502.28703025965, 11359.870997746882, 4325.735964786945, -154030.9090924284, 645.8726101616048, -88163.26865983284, -2776.6393471543233, -6165.7737881339945, -21675.19719745084, -7433.2433128608245, 31373.100967180162, 55183.718175359354, 9331.331517399782, 28749.66771384113, 6732.450370489515, 3214.85514096013, 39719.37082588756, 8216.651142725541, -130464.81828537432, -73456.55570185835, 7837.8745245723385, -13165.99698303809, -25167.058107090696, 17552.83012355718, -4496.8013240119835, 48739.608504914955, 76158.95054163526, 270.8788467169116, -9936.78628182085, -6593.572891887009, -5853.051901984173, 9108.042748855083, -43858.688038373824, -22553.32356506812, -4364.797392015783, -1.9356820922101108, 16572.234313310862, -38137.53954743111, -333163.50333457795, -24432.566361553607, 51839.907007270034, -18751.55699236434, 8264.212586778795, 32950.47428619856, 4939.984711263421, -3477.581491519075, -2480.9748954639604, -6574.9767218329525, 38545.30923047048, 4119.353068516468, -24170.44581186972, -98359.53281202252, -6729.987449252037, -16454.015499486828, -4741.513882314224, -13455.98280307066, -3967.580063155894, 1117.4226886528916, -8854.505104703456, 1114.7240902279261, -1714.7423178150298, 12499.103153172002, -13844.270904299063, 61003.297747803445, 6561.301444174559, 3144.7378219795487, 1747.842667832593, 1808.066692562828, 12086.10911760803, 45569.81065878303], [-945.80465195601, -4359.542869503876, 840.5595026988713, -177387.8202679068, 1615.7477293459106, 805719.3601832353, -1756.7945728870125, -6663.651544661907, 2211.6723306072004, -6018.029622057973, -3679.2704425675297, -115.5637289037965, 1592.9924727058656, 8837.804099877023, -35465.19600313659, 9192.260164611758, -103547.36808024354, -107338.21338707925, 4653.83656809121, -7955.845274605357, 48409.62202049798, 7513.956521254841, -3969.6802462481523, -14001.827451487321, -145476.78049239982, 2532.5110027450473, -1959.6449474348674, -3599.068830339065, -7786.901402173767, -26778.00964710546, 14449.538022706422, -20.763278028939954, 3202.119120557542, -7065.674727935086, 5069.905903770801, -505.6906821567325, 9587.955870445374, -74749.49599811733, 9877.48946237227, 24736.49658407741, 12739.060074066158, 916.5809812729791, -4758.564569408105, 1128.4764520865199, -53804.33907495141, -133938.83587360213, 36017.78764961909, -8773.963666114383, -6917.846197911483, 8446.202272429051, -7157.967543139832, 2499.5644619442924, -117161.09457614049, -1267.3151491098058, -501.59765455166576, -4190.083069042076, 4774.764637224403, -8197.340750813164, 54252.115717513276, -1300.708812052983, -15195.689333340326, 4592.039912038569, 8425.288148733893, -86337.43780108057, 10.05523644550555, -127.65184930779293, -1207.88644934015, 5220.846392270138, -2049.42156614725, 301.17593951772363, -19352.13826346623, -1352.3481956873056, 57749.93187075871, 17206.775511860073, 494.593478379614, 33449.07344063035, 4353.407957575713, 13915.049998473844, -5642.271575065159, -6153.27831162075], [1730.7602052429108, 2933.7297283475327, 3540.8566934281007, -2019.1992421940674, 15882.923816659628, -1756.794579161557, 91657.51850550856, -13753.836450613757, -158.91118603825416, -145725.3617781397, 10190.87383267322, -25413.106975748724, 13471.528172694392, -333.32524143930743, 2055.9958386882136, -4974.39010778518, 73.463368515328, -1034.2077744183637, -102156.8576195088, 2776.365041963872, 869.7984521160262, -3137.658568547802, -3099.7102967781816, -2333.743830032926, -427.73037693217583, 55971.605687868454, 10282.674269893309, -1405.8483680714735, -4244.2031503176495, -11521.690486371532, 4635.254895505268, 51989.33326515814, -32637.39509287598, -4144.7857782263345, 3540.6398125055075, -7383.420831529991, 3649.659619352186, 733.9284254511252, 2073.306250172616, -798.6322131590754, -611.9362888413551, 838.5068522834754, 10379.500572757293, -5190.999694663744, -1333.8046401181325, -877.2016863989097, 3439.65508401185, -1606.695908776848, 1052.5656798276023, -5425.751016851615, -6294.552370724315, -46698.737438167846, 179.5350042679461, 15188.753181905096, -4935.21092939189, -1779.0123382003042, 6513.0802265139655, 751.6275423910422, 2487.7649097508965, 40297.22932184808, -4621.226986670098, 11820.144775902585, 762.0734860797793, -4579.475146450312, -20400.875466608562, 96.39435703651893, 29468.770102558927, 4524.024800182072, 58374.31963042972, 17469.781126929225, 9.222522487988252, 45097.07275353945, 1214.3843379199502, 2126.088121142598, -50220.476195694966, 213.12828004349458, 10625.910606740305, -2195.610445165111, -3698.3757107580827, -11998.29650655427], [2093.3603527298787, 2539.137671212343, 3868.6694213271353, -5422.625149319079, 20981.767830729743, -6663.65158140564, -13753.836447682887, 825575.291291756, -6079.458629756369, 5635.633264898663, 36355.19410413934, 32502.76028840858, -10767.931760705762, -121935.467141222, -1498.75210868621, -114024.79989538384, 1482.9530482757264, 22.83759956774426, 26820.744926748655, -12663.938567584264, -18913.224642849495, -56812.48139581316, -138181.57145586578, 9052.998651262491, -6038.308660789196, -3202.5279850524134, -56830.35553580527, -2497.377408052316, 20984.746185909506, -7306.609251759817, 7366.328085493156, -15142.997856542115, 52622.63643981193, -73029.86373060694, -18056.490199374755, -95327.38495595941, 20848.36877717645, 2963.83139659233, 2235.5084196569073, -7573.651040824309, 3386.6693678870656, -1568.6764583091235, 36237.820798238194, 24772.599180460118, 2469.134445389619, -2238.860455073596, -2374.4379379581724, 1406.1995478257213, 19816.44926118121, 31802.25049310414, -149070.28479638963, -11048.078858428205, -5106.022905892622, -19777.3754568566, 15059.347025415862, 5927.9654875469005, 32554.291417635395, 3647.788095493459, 5707.051246080782, -7072.915272973609, -18790.69429489982, -63576.49632133643, 3258.7712268105483, 4504.613032045932, 15913.13239046143, 4338.872925566436, -10785.621476157014, -1704.7449633592125, -8039.188302564349, -9370.050695676153, 3124.2721737220863, -16798.454855722674, 3649.6100365309317, 3209.5755454472705, 52529.233095607175, -1384.4107328483171, -22649.8146981916, -2917.2259277268868, -67068.17144248188, -134192.9708018083], [-12787.392679275496, -8301.02679029137, -14867.893744490895, 1519.4952395484402, -15634.886454523414, 2211.6723146707836, -158.91114961086984, -6079.45861676929, 684323.1886677688, -35279.938041867696, -24788.351975901463, -107208.70819738373, 4206.014883512589, -19677.325982078884, 1190.4824883808985, 20271.270729068467, 2500.711152734891, -10.401709986963464, -5560.251243813893, 5350.901348767273, 2870.204621502262, 34728.38385869699, -122586.13323391, -9837.738920839007, -854.2451681143912, -5019.088489164907, -126330.04067122375, -2649.890147257051, 18842.39053577476, 9399.048277463426, -4732.373845281555, 51667.11864275398, -6265.73528104921, 20408.73664770285, 8727.335061826592, 42881.923076230305, -18497.058431840094, 1431.481044836513, 879.203795405539, 14379.754076953175, -44.87917221450595, -2574.598333219903, -27653.12908506913, -12822.480913810972, 1789.7162827771306, 185.11165867873603, 480.48444689006334, 8878.272394708376, 20027.19076313548, -2969.588256213589, -3919.524841516562, 52489.58998399033, -2086.355291220976, -89880.78920873135, -30021.389114468933, -4346.818165452787, -15829.432776479374, 2797.4920686182186, -17194.870146719357, 24197.782013969132, 13121.418595590098, -311104.3393102834, 2081.214755614762, -1922.116977457726, -6479.46114390826, 1970.9622215456639, 16055.399067153321, -2304.252988672664, 55161.777557836554, -1884.0331850577843, 2292.3174987610896, 18928.30871370709, 4177.4762505257795, 5468.418144220167, -150272.13904170116, -1700.8556938641423, 17509.171254440364, -1493.4534847290663, 16065.077339861475, 42126.92678913838], [-9528.820728302442, 39948.82127300653, -8971.371615473772, -5283.375662734003, 12267.583586702074, -6018.029647853308, -145725.36179892186, 5635.633268262205, -35279.93801177834, 637047.0107874742, -8181.474994601303, 42395.44950727248, -671.4128542383586, -23141.35934891481, 3307.7091809059, -12765.266877972299, 379.42666503480785, -2596.900842977834, 64647.900447787404, 488.5639019112636, -6543.524525382224, -13892.64252289117, -758.3199460099509, -5906.169987618571, -3642.509808640599, -16388.486740016124, 29921.724022658665, 7823.12768951093, 18287.598122140433, -7529.048011629529, 3405.8770328762384, -112295.17258048503, -186398.32396577232, 31364.16407591928, 32236.0005639855, -6915.490208717915, 218.15306134756284, 194.24189002381772, 570.3278484064588, -3118.8740111824272, 4615.172454489602, -2154.61694264318, 606.8459077260742, 3814.3293764418163, 6399.258740186391, -3954.467591758208, 2514.4325792420846, -758.7967103291694, 23245.815276102, -34962.660588044484, 41689.095812518084, 6493.841513278178, -2410.7734388195195, 37860.32333424242, 36806.90283566773, -2483.53954882019, -20230.193482555085, 2548.0421655411437, -1439.9726050914749, 1305.4320148164852, 11889.423104470688, -71468.34227325715, 5924.531729579817, 1329.951031509895, 35241.37447815791, 4943.384674666526, -212520.77688501403, -4992.228556908081, -88718.82247610678, -199231.12709054828, 8665.592732288074, 5900.747236617062, 8219.664981802931, -14543.318399604377, 40657.99341222994, 942.2039208453174, 18508.72802944379, -6191.786848456376, 41589.52333094021, 5730.317043105649], [-9038.25311334311, 7898.008247277178, -5024.956453820772, -2524.8772481674587, -36502.28704074051, -3679.270379046102, 10190.87384640915, 36355.19389135481, -24788.351945078433, -8181.475041640104, 696802.850268554, -12097.207481433761, 7401.596038610321, 28266.208665968727, 2067.789052185105, 41698.39235253697, -1990.1987880514635, -17120.323811784496, -9906.243987713067, 17004.415946881683, 7882.025702182885, -34762.58243216193, 33427.65766789796, -415.5602306090665, 2530.3914811765203, -1775.9104089189052, 25373.928956644326, 30998.30132390396, 30717.39682739275, -14995.59073296688, 12193.483216768263, -5074.641419877881, 9242.17553829107, -112239.10461556005, -9859.250624596849, -37619.831519448635, 52955.97979759617, 3015.0976613247412, -17296.21756541866, 328.24969249855997, 50.23581020648636, 3844.616446164636, -313409.47548005596, -75064.58764986492, 14452.784979780738, -5422.807032797915, -5777.972933955406, -10780.73627857744, 1899.79316962399, -4498.4119952434385, 41529.9507075374, 2707.8521729239055, 2926.7315500888085, 15714.381121192324, -3907.3456484502844, -1681.1376321748564, -210532.03441618592, 2714.339837162413, 3391.4166915404408, 10702.447065287375, 25676.41664480799, -25806.82786808811, -3534.6939795717076, 1569.0958178842027, -6124.792075031069, -7305.527620956949, -8442.502252751843, -15248.586303669488, 13103.107748264443, -9999.017512963768, 16414.774105284683, 22303.628031431657, 0.2942229699254794, -35974.673155415854, -21263.135921088415, 2731.2500261451974, 17806.134944958023, -6422.417119148996, -103373.39799341976, -16404.008307377593], [460.28896551577054, 5.2363651601831105, -298.33885620156946, 61.50252158502947, 11359.87099428569, -115.5637247732789, -25413.10702258441, 32502.76026907728, -107208.70832279135, 42395.44963985618, -12097.20751212917, 823333.2778032521, 6530.310941170646, 20669.564402505155, 1284.386159694888, 9877.230067223067, -2881.872720957627, 4217.992631282163, -9534.462745383596, -363.35177600507984, 1078.9118888437238, -11599.676367530652, 11899.94712154258, -3225.0404195072497, 1696.2598942299576, 16738.013550976255, -54720.32936389126, 5044.829963543897, -14996.265680796309, 4703.717546244543, -4859.973551592902, -7722.598846185251, 1879.9663245074585, 5988.268703293871, 7440.4943258857875, -901.5736387941241, -13770.608081870398, -5377.9764147615115, 2660.9011141167034, -11097.747970322584, 1960.4185031323352, -275.9604356291798, -14119.801336568442, 17867.803123000795, -1743.8715075546177, 381.2616211654162, 1957.1212873575548, -3475.8995126278737, -4015.2437671762987, -1560.798436266341, 29776.651601132282, -93772.89501684015, 2739.828953541139, -89969.1473692131, -139718.87369536294, -763.4828474450575, -6837.945157535761, -4485.298580385832, 6038.023240889914, -71295.13141620359, 9099.559564017833, -31690.603736728597, 1579.3013179525885, 2887.151281223254, -145868.83095566192, 2063.8858448141327, 33582.630256799705, 1297.6181523445114, -17464.05010703918, 39961.05275497785, -2318.5932185767792, -53115.790501594485, 459.7324597730211, -15817.746777257467, -214003.3654316199, 2623.4799979528148, 9507.856056674142, 1626.438474260155, 7335.852522361239, 13920.255160888417], [-1.5043330370696668, -327569.10596201743, 511.5456020872601, 956.5011089612639, 4325.735964372398, 1592.9924689403856, 13471.52813780831, -10767.931705331652, 4206.014931307796, -671.4127559477686, 7401.595979892787, 6530.311023342662, 718114.8485667913, -407.7958884533098, 1065.254727079834, 3706.258936606482, 688.717645177571, 746.2307169922191, 6743.888972643207, 4469.762846890361, 1757.0088115788103, 11106.403472211714, -10186.593797289619, -3199.4757319260907, 332.2460082960936, -215572.55585944626, 17946.76411048281, -6740.63385797701, -2870.2137565354546, -1215.0798834886448, 893.0024169640113, -53912.82179625854, 23907.074930232375, -13016.3730121812, -13821.571079365891, 7108.56878444959, -6844.466144875631, 826.5917991726501, 2990.2050231630283, 5959.617310031307, -2322.9593973596616, 255.5573259099142, 2346.010110302287, -8486.582817926312, -3313.993787673487, 1186.824629599556, 1362.807393576644, 4227.714420541226, 1334.0017716807317, -3155.378076465138, -11671.554886439517, -150991.21531377253, -115.92937426544637, 30354.43664627077, 3779.6981042254583, -2174.959504595652, 11475.596495277314, 1049.9457837996258, -5625.6543860817155, 29399.449403556642, -4279.232821898782, -12096.18452222263, -718.753524158326, -4706.883826047101, -24749.12038601106, -467.0315052536632, -37578.402891442245, 6180.1392827947975, 36468.41957490019, -57634.163167817744, -3131.3734787692324, 41649.466682983926, 350.00228454194155, 7122.883435175094, -4882.692185819801, -894.2375789024645, 57.24167244972609, -114.11186957386467, -18557.134984937584, -1516.234306240557], [15974.086931158346, -8893.269383384159, 11555.8688032973, 11674.570223570247, -154030.90905251013, 8837.804152004333, -333.32528779569157, -121935.46709018806, -19677.32592898765, -23141.35928222742, 28266.208691082775, 20669.564358771866, -407.7960106454379, 755325.6813659976, -13887.346394478436, -214661.67546513613, -5436.435147531811, 1188.2663011420482, 21191.725728274472, -13481.813496808874, -15075.573175651714, -74183.0938031109, -77551.4560256976, 39569.21601262754, 5770.773084352946, 6447.850763994692, 17490.74439412355, 6556.813418156613, -16358.601551505466, 69837.67396196903, -10660.834395264355, -13479.390362078037, -34137.80365000236, 2016.143294094676, 39109.49192882885, -85196.08226383517, 21054.20331280848, -3974.3191022815436, -15735.364794054582, -13483.245998899369, -2098.265188748012, 2567.0433307090534, 32658.269446008424, 25948.644493039115, 2519.697764876251, 6863.332690736503, -30338.763070421905, 1510.3825507148204, -76749.20607947146, 14538.070833824027, -22471.122849875188, -20170.984410638033, 3324.367728686492, 30875.239046764957, 11890.373867076514, 18537.58455546608, 15713.541305685576, -6220.532625680495, 7857.810668719361, 11418.608737970484, -8614.27011202373, -119046.28464741017, -15455.78762677098, 26872.954403479333, 970.8136417755217, -9928.019766321131, -7963.246820714594, -14006.148187695275, -4644.823603846034, 3355.4940953487694, -7828.02351436804, 20918.638891486717, -16423.17594239577, -22314.936852288512, 20086.42519798671, 807.592760782572, 36232.25375461517, 14995.07528293992, 15491.933455098071, -88457.28605059741], [-10212.642580908201, 2255.262644998717, -10771.922518585448, -6289.529629631636, 645.8725828554822, -35465.19587069775, 2055.995833213857, -1498.752082263707, 1190.4824646889865, 3307.7091801950132, 2067.78911460493, 1284.3861487732722, 1065.2547193366936, -13887.346400531662, 757644.4368806606, -7990.943736642036, -61487.487361136766, 8552.30540188104, -4548.377876706752, 2021.947754197697, -30158.60617619222, 2603.6252485929535, 614.0212010505317, -685.3100486470184, -144278.8754769211, 701.689552512286, 7887.2324493511105, -8881.99531079881, 16231.286538280641, 8480.01390631801, 20203.934094051725, -2593.0528706922373, -4670.597950166415, 553.8758616511719, -1259.5383991821282, 1972.2658779179576, -8800.577597024874, -62113.192314880274, 9958.16071285331, 40883.84982377192, -5168.129018279061, 44806.58587822225, 300.40613308234055, -3445.4362063780704, 13598.965166806422, 14928.180899934714, -10007.76799201832, 41539.236161513305, 14755.18173838054, -4597.28223981242, 5186.3642653949955, -5893.332678104667, -170827.52241092638, 6736.798941614515, -214.5828570599551, -5136.123121472253, 4220.512954344897, -141795.62819383366, -140481.83120317874, 991.1890179364408, -2639.7881117510606, -10085.389667329573, 7608.162954946908, 4635.837590074303, -2809.0041287234953, 12861.166514845565, 275.5052489914405, 4006.3784547455916, -442.00014900754456, 1294.6525374832727, 9535.806285526496, 3288.6413678561416, -244289.59371210262, 1376.8233542636372, 236.1902206962962, 38094.535380669855, 597.6535708806679, 39357.3279136126, -143.53320742984593, 1174.8331925360794], [10547.049555192334, -12940.990100172654, 6593.885754391632, 11444.775989774835, -88163.26865310012, 9192.260145429318, -4974.390082596469, -114024.79997784362, 20271.27073618455, -12765.26683928412, 41698.392437721224, 9877.230006008873, 3706.2589903440557, -214661.67553553992, -7990.943744335535, 780063.0641291498, -8875.668654852745, 6469.803508664698, 12048.354011649135, 700.8938897345516, -9779.197798046314, -126042.42012290475, -46794.04701676499, 20422.257245398643, 8322.1479257891, 9548.212296978925, 18758.07761083468, 8407.469679823198, -56800.32351330373, 72240.63053344413, -14879.665741426546, -6153.517649752609, -30399.466227676938, -593.4331208890527, 37459.83512441696, -121865.81311771003, -26428.901362282733, -10877.258044598368, -6501.727071359893, -21389.10560791745, -1433.9082908550224, 2073.2496011881335, 52454.083061124176, 35279.04720173793, -2632.8136593402855, 7567.252631947064, -23315.90161654748, 2597.7214315912147, -73385.01205881704, 16005.345401287277, -24128.233393125094, -13920.543104270628, 7220.940994215815, 20388.511911669702, -43.834663191969184, 10994.08225374167, 3281.0180078193284, -10317.087381342404, 5935.2968891882365, -1216.5733060563227, 11687.858052542962, -36138.46809461294, -12098.625792854886, 22875.30824582237, -7769.596768097091, -6159.776741708303, 1915.2105071754045, -1594.286519454019, -10801.901561574763, 12433.297453291958, -12461.454179512073, 5471.554337394985, -11621.638053774941, -80188.21236921148, 11519.33833381859, 4104.865105981954, 29286.538569064545, 14218.737368025686, 16545.247223172482, -109481.19255576709], [3206.831891206643, -3141.678124442082, 4308.218920035135, -60261.40791308387, -2776.6393083172215, -103547.36786006771, 73.46337188207033, 1482.9531008727636, 2500.711138848671, 379.4266413210704, -1990.198830868346, -2881.872722838554, 688.7176516973927, -5436.435102704169, -61487.48751877531, -8875.668677344851, 765912.5315828788, -137831.54480279947, -2037.0243087510394, -14901.402675307449, -12320.101018081923, -9636.332546853973, 4732.445473173295, 11763.032147994587, -50139.66814489029, 336.0938595915971, -1548.4301250966503, 11858.157001073394, 9362.745046401335, -11041.21726937334, 57878.66716857345, 3839.9357818012304, -5858.128708310432, 5899.843493621962, 3913.390820196324, -7715.308259844473, 27475.829280819977, -203102.68359386644, -18711.86748593695, -32630.326852091293, -149144.5214750109, -28648.754721202662, 1454.3556183100206, 7008.903722267586, 42791.845192959845, -50316.52693016005, -5731.134357934125, -32117.79072071752, -131.57889536204448, -701.0774334149537, 4308.989771568922, 6217.808555812068, -30736.26336185714, -4074.8523775014587, -1965.154785384122, 23425.446001979755, -6962.0625166492, -109332.54138375592, 102926.25130583374, -2941.6688481281503, -1708.5393090874438, 8781.692468673093, 4015.9233977884455, 29661.768872786146, 180.29450487542752, -409.9953330390148, 2985.324408914575, -23386.012558536917, -2330.965268251602, 2820.181128933003, 42258.79742037484, -4394.811987521797, -55625.048267243365, -2700.504751212681, -2402.803505947225, -23653.883501348424, 719.7339203958627, 96953.3521470095, 8073.195922822534, -2970.941130928708], [-34473.60488394426, -7709.138430981062, -37468.02204900287, -118776.33394341516, -6165.773755441907, -107338.21327846251, -1034.2077775922285, 22.83761575088853, -10.401687704493932, -2596.90084991119, -17120.323892220586, 4217.992646277875, 746.2307235787738, 1188.2663223452532, 8552.305418296679, 6469.803521481023, -137831.54473958598, 580195.3499159642, 3992.858729207897, -14029.469564770812, 44729.694990773896, 1830.35254924485, -4409.549858885483, -22912.49749375102, 32073.378289702978, 3209.1107615618093, -4810.967319923314, 25069.697650075912, 11324.59366328763, 2263.5091766555984, -194416.79609559895, 61.8773338711703, -5417.044553850433, 8117.355282701949, 10640.460365475476, 978.3526203990551, 12212.483574390466, -9616.131801512542, -17772.665831250797, -20524.226353241036, -148897.1543455434, 80344.91371442564, -10722.894044731085, 10002.936308423901, 60564.06895932654, -221799.75856532977, 17645.013015338656, -15995.942369069284, 5151.429765329252, 7053.090846774654, 517.7251972713265, 6425.429855796969, 36206.1336402177, -4308.947194250515, 1089.3835915134496, 7415.7208052741225, -20674.409280434113, 46360.5266339326, -13634.902567553649, -6296.550681483881, 27616.126970120877, -5716.315210878174, 31524.08092871269, 58768.87902013546, 3438.603526493251, 21694.654355233462, 215.96277619957255, -46930.878619909105, -10111.228760763048, 3344.9263462244858, 71198.29834485435, -8935.841561248932, -32651.20464545831, 4932.629203127033, 8217.27773273337, 5231.952163002267, 3837.297291316532, 20374.150084636152, 11650.354869723194, 2461.308644165453], [5855.926804222592, -23428.02360285944, 3191.747422315717, 4984.608123142718, -21675.19715967229, 4653.836586201875, -102156.85762250805, 26820.74496281024, -5560.251160248357, 64647.900418359815, -9906.243978252518, -9534.462851129681, 6743.888981832446, 21191.72563175334, -4548.377888726492, 12048.354038968191, -2037.0243163972855, 3992.858717467111, 216327.198010091, -6275.896096217497, 1464.7961900883433, -1028.458232752483, 18126.165303393886, 8115.080216236776, 3194.0132931423295, -155627.0994652386, -38921.695580121595, 1150.782504305209, -11454.02775769462, 18627.781882583706, -8690.482191312938, 15512.967442888295, 99074.80392266702, -8456.407618568343, -14944.114601522922, 4350.173362147018, -4592.04390035939, -3418.0877954642706, -2958.4629065986587, -5406.705000326199, -511.4837685864542, 522.9546989180343, -13889.392515679481, 15388.398831062825, -1888.7526516009098, 3132.1399410834947, -5515.809516576607, -1666.8882520452883, -18327.47110483684, 20322.58014997306, -729.909606969509, 172513.3004297784, 2467.7691619555794, -54803.54368885175, -7100.645219220203, 4771.636976663239, 308.33034341116496, -4746.325783219516, 4694.489896097605, -40517.008158247954, 1068.6640087511207, 32068.271952731717, -3899.719150246606, 7684.492141458624, 34537.75360651161, -2392.167645203014, -35183.474166940214, -3712.6574807525885, -23292.643990131328, -108605.05919051894, -5213.203695655281, -57291.556379333066, -6873.203277080677, -3444.4103117446884, 12332.423783238879, 708.6822480699869, -18788.540668510384, 7130.63660462618, -11735.760735631062, 11000.339621831678], [-63772.874027460675, 5859.589806990735, -96265.15074380195, -2425.188748365017, -7433.243193666585, -7955.845222174025, 2776.365047640787, -12663.938588712426, 5350.901348932655, 488.56386000174473, 17004.416168181437, -363.3517916793348, 4469.7628108933195, -13481.813513964313, 2021.9475301790194, 700.8938773874645, -14901.402510636392, -14029.469761358214, -6275.89607904111, 751198.7996866682, 34980.40545705546, 26269.367967946055, 414.59466212961786, -31151.361722812475, 8065.270699462385, 3005.446114450028, 20421.69829403706, -169133.68497003423, 26665.382198567073, 35074.42474230911, -12766.296639119017, -7224.302284985802, 5445.727606943317, -26631.964607080237, -7112.066767858965, 6448.019811101446, -75348.60255364422, -17652.161615763187, -61553.82578197552, -86580.83216490615, 13860.659751484643, 4522.163850665423, 849.4893625409369, -14939.083935683528, 39638.64345705961, -8930.295542509772, -2735.897301923985, -97899.30392920844, 22114.518767139976, -1002.4948125302623, -2224.6450198207144, -15572.336247833498, 13857.43539122725, 18211.875078397126, -1772.9330955770242, -2994.520462756982, 52893.10618511317, -18001.311372615855, 69488.41038441929, 5812.282974676683, -215450.11413434191, -13896.57813504071, 5880.4520159708845, 31650.816463406747, -9168.502221167404, -6219.830293430583, -3054.82957928555, -157503.02359027747, 4287.817732969183, -1212.5446552849592, 41780.70042558034, 13379.761803772006, -1456.2359555076596, 41264.38773269837, -5648.514611542334, 15967.859842940567, 3337.3927482067634, -1401.4929715073067, -29614.304377608703, -10016.965618296945], [-58156.63333501745, -6133.964081650312, -9408.91530002489, 51296.02381000125, 31373.100884216085, 48409.62201067488, 869.7984485236962, -18913.224665190177, 2870.2046993013237, -6543.524495053366, 7882.025750564932, 1078.91190782956, 1757.008814878292, -15075.573073610716, -30158.60612355287, -9779.19797195324, -12320.101088209582, 44729.6950300966, 1464.7961854881223, 34980.40543826111, 528615.8864158188, -10474.297034716197, -6696.873301249538, -46406.30500919746, 24464.353362596008, 4046.90498576216, 8555.306072302788, 11068.018170567906, 53678.00315946608, -353684.9503727474, -101219.4859955559, 724.332011014908, -20420.58455190637, 7073.49139532049, 13024.690178664783, -16478.207888744408, 79278.47857348171, -29034.220292656733, -13481.546459522157, -41240.98458328092, -4994.820251641511, -3889.6261402898485, 15332.53268575639, -34097.30309943531, -33029.43736456048, 34452.61887569387, -159794.54270898105, 47291.54891200912, 41698.54002695013, 827.7334816315846, -34.149912932214534, -3602.761481360563, 15747.647613367042, 8148.00118834414, 183.83579975431664, 37398.116008543504, -10239.317650545006, -32546.22097955269, -11398.606435157375, 1447.1588491306914, -16660.20633393088, -9197.174862321415, -61617.34996783018, 76570.8377429332, -2620.6512273240933, -24342.891925026604, 2401.3133884342037, 25987.020387015968, -3314.0218527081074, 6333.266929381324, -79784.39755872094, 3553.6020805590388, -37259.394660452104, 3520.891689543329, -1094.1093426336527, 2166.0974373883532, 8859.44013434285, 50899.43029688737, 12303.997751106119, -17203.468373251744], [4054.355869146523, -20530.09356139046, 849.8736472895978, 9557.027315723926, 55183.718161499186, 7513.956521632346, -3137.658585495329, -56812.48140763662, 34728.38376158947, -13892.642487049796, -34762.58246057892, -11599.676244249971, 11106.403493330881, -74183.09395536719, 2603.625266217392, -126042.41993857076, -9636.332521709182, 1830.3525287253585, -1028.4581939489494, 26269.368068200187, -10474.297262766655, 804202.9156442189, 11724.833661541346, 412.8368561807447, 6643.032601773541, 13679.873106053574, 9916.18815709993, -8.072188068148778, -50343.48357701668, 35786.43254446961, -9510.319748588208, 9207.579651344708, -12407.549735519686, -28483.55184553362, 34450.040608174335, -162271.88960257583, -79989.94733988862, -11374.686638713649, 1520.3335051654267, -2717.052561484739, -3625.894085677604, 2621.6462576920107, -8569.777926685447, -17136.47180894756, -380.128207751434, 6804.908236795639, -7059.813457925192, 336.39508128801174, -2810.447857780702, 27231.955844206674, -12403.175325203349, 14830.894911441386, 6427.399837321012, -2853.2540456782895, -11551.193809886026, -9150.112698394649, -107437.37419454315, -6487.0946122357245, -6998.984186448105, -13161.856291022115, 41772.76853747688, 58187.40708185227, -5008.982021194554, 2915.2012694791943, -8790.314958157507, -2991.0095333091476, 7082.278104938029, 11448.83507155557, -16533.156264485082, 13532.634443699124, -5657.748279025704, -13977.238831562796, 964.964616016168, -190803.1557161803, -13026.484213588341, 5840.868674524079, 20188.404721445095, 4521.983365523862, -3574.0979014979516, -116771.36731915541], [-4491.116743881236, 535.4340755579311, -1458.0253210526205, -4250.987534601499, 9331.331472393651, -3969.680265327376, -3099.710279334466, -138181.57131400157, -122586.13323167038, -758.3198302628809, 33427.65770075055, 11899.946949187095, -10186.593904439256, -77551.45601276544, 614.0212086047601, -46794.04707409819, 4732.445500458478, -4409.549831272584, 18126.165262044895, 414.59464411145757, -6696.87323195247, 11724.833482653701, 816717.0677639766, -1510.6259356707315, -5277.167550386687, -12132.564459246198, -125619.1139349188, -9286.564601844331, 27419.742762977894, -15152.667361547858, 10799.005073647852, 582.6094018595433, 49670.087343436164, -28891.61934844276, -22002.34674006314, -17373.370977311708, 19999.585303465356, 7801.028711001389, 1690.224665635368, 11544.353715100235, -736.3531482439904, -953.577201267851, 35634.18189763551, -21723.235648141737, 1440.7518591680132, -2290.8330445009597, 519.690544673032, 7502.356181474691, 23057.98183276662, 22701.250674094466, -144349.33696730464, 36172.80832621458, -5713.972156948539, -70745.68006035297, 14461.770838933244, 441.96899482635956, 25192.741143263804, 7842.6678300459125, -8184.562860246956, -10530.722794271409, -18671.07300623934, -174333.64641606313, 1650.7482899267675, -5834.013091537174, 34657.042099566446, 1250.4505534383434, -11564.377208399737, 2681.287172334735, -3843.839025261941, -18044.52708828957, 3875.3647509095517, -31925.770895084213, 4265.887332396854, 30587.77280757244, 32314.896581922247, -3777.7456381265656, -31034.92301210664, -5579.2379596320725, -31742.249432880024, -60028.42806589726], [-175965.80198672606, 2570.2671593598207, -165559.7935342384, -13710.835532094869, 28749.667773969813, -14001.8274547142, -2333.7438155147, 9052.998582464881, -9837.738996948183, -5906.170019045457, -415.56017468041597, -3225.040437916663, -3199.475717365087, 39569.21580236934, -685.3100495573937, 20422.257372355944, 11763.0321606115, -22912.49756705525, 8115.080208440289, -31151.36182858862, -46406.30490106203, 412.83686802473505, -1510.6260073414794, 789778.809939666, -12722.172165770333, -4715.746938655574, -15256.919285463791, -10832.553167224618, -147678.89122290717, -140633.18785639133, 29383.227206649357, 2261.8071749730675, 16933.89322928412, -9576.983393346663, -6552.930683988428, 5892.443637922579, -148216.5507856091, 21284.456962617347, -21158.345079732146, 42111.014776892975, 3680.2115232181754, -4241.1932267937855, -7162.880773756421, 41454.51569827517, 26403.291863801453, -12910.900564497117, -19370.502206780548, 32308.4515403709, -64472.670086338556, 4498.162419645878, -9103.225483504708, 6980.862121710554, -14759.799791014515, -10704.150111178047, 1666.8388245553379, 8602.523512013657, 14531.184110963688, 22846.694255072893, -38682.855686376366, 3851.4848278268064, 25408.17264971898, 16011.421350533887, 7990.122016969271, 5767.62216942665, 5327.453331362815, 5658.577366553217, -3861.395780035369, -62477.14647687859, 9164.644400384575, -8089.624547883482, 34509.02080577186, 1707.9772857038554, 12208.558164832857, -11600.455565211045, -2896.0135228482964, -8223.802422440462, -2411.390198867437, -16624.26502978946, -12837.929735888625, 5707.402266325859], [420.2510325956747, -121.2968134232214, 1813.3239906123144, -114882.0625713877, 6732.450312883617, -145476.78040768206, -427.73037967956225, -6038.308621536636, -854.2451786080268, -3642.5098096562947, 2530.3915437403166, 1696.2598755847318, 332.24600471384514, 5770.773055095197, -144278.87531159038, 8322.147881960493, -50139.668268355534, 32073.378328911975, 3194.0132972655842, 8065.270597133982, 24464.35320247723, 6643.0325888243615, -5277.167565424635, -12722.172402499622, 783216.6643351865, 1095.6346699368842, 1766.845577887284, -11008.028505916007, -3571.155762714692, -28242.04220283339, 89535.28622416529, -2335.256584688845, 1954.8733766003306, -6068.76462959155, 774.1970888542336, 1949.841338443581, -10014.988595878172, -55134.42800510871, 18987.330107117898, 55379.475222638976, 46083.06470796477, -12272.146503389344, 559.3203646729773, -7043.487116157293, -47564.7157121835, -36709.44637955803, 33497.77897031829, 7109.787947025262, 2181.5290598505735, 3293.866731034386, -5453.912770199435, -3909.830323855529, -211800.07410629367, 3666.9204780653963, 1147.2049124414516, -43445.7984302193, 6254.4625053266345, -45575.807933470394, -71437.87704423483, 2212.305250927447, -6595.040352953767, -5253.883856636649, 7738.760605190499, -114584.94159706723, -598.5832663676938, 729.0641500939819, -2093.7464934815666, 20696.57051376596, 1008.6351115685172, -1014.6282556608911, -18318.1491353769, 3632.0473908523077, -27600.00197632016, 6688.012844999318, 961.0159630026606, 19757.890617227582, 2404.738063321063, 44699.181675448956, -6317.416452935046, -3196.7684108308576], [-489.46605365784546, -216207.57151079216, -727.7897239160351, 1697.4808977370014, 3214.8552098828677, 2532.5109983925513, 55971.60570434796, -3202.528104423057, -5019.088535534129, -16388.486711551872, -1775.910311496049, 16738.01352695443, -215572.55578777788, 6447.850817755912, 701.6895586454863, 9548.212268457673, 336.0938641090303, 3209.110772783258, -155627.09949135518, 3005.4461252448596, 4046.905014456136, 13679.873177339714, -12132.564671120113, -4715.746921679663, 1095.6346660188694, 782064.1368677035, 1799.585985219344, -5415.510957383317, -8361.609453609275, 3489.4515582312915, -2789.785380065196, -70207.12040683014, 48210.53139059712, -13298.651865150363, -9920.751754854256, 11586.14367604073, -11678.799548939212, -821.8527790979844, 3737.795684939565, 3406.6356069623125, -1700.1644434013049, -247.81703186455857, -8794.88660755393, -1987.8616241142188, -4540.228421647361, 1689.8774597206013, 1795.7863633872964, 3942.147246074136, -2252.5066938659697, 9633.02096164321, -10490.259921443585, -77296.43541432932, 694.3248023507313, 12987.751220409968, 9910.559488609024, -1781.3965899902512, 9501.285186382536, -761.641759997499, -4536.059575533731, 12480.414423872006, -1805.8978001398125, -15816.464108787932, -403.9086166266503, -3211.121050330028, -1384.8065804608211, 172.62978121624835, -81044.37109132248, 5723.750603836923, 13049.04031330766, -116344.58601951708, -4784.655020503129, 19687.664307398718, -438.27159373439184, 7626.643826465037, 19387.866115510453, -520.5722155308373, 2201.076337005293, 1487.8216384024558, -19037.176106554067, 4988.10817864824], [-3430.1349154818963, -7867.426927905638, 793.1033983575094, -2802.133985486747, 39719.37079327658, -1959.6449728356815, 10282.674267197743, -56830.355604733806, -126330.04082044387, 29921.723994759657, 25373.928970696335, -54720.329283128645, 17946.764088774715, 17490.744354235594, 7887.232430913705, 18758.077445261413, -1548.4301206074756, -4810.9673165471095, -38921.695623241874, 20421.69833589363, 8555.306107595017, 9916.188213328356, -125619.11392759897, -15256.919308126371, 1766.8456078714573, 1799.5860704205008, 836731.1368984464, 35.27552889405218, -10481.078972029014, -23896.714364289717, 9335.641577419328, 13727.708594633355, 27391.468061061787, 7768.60531193435, -29770.87143469846, 8700.717402118908, -6123.245664166133, -411.4455964300631, 3973.004522299652, 3409.9157826098067, -2704.489348624535, 2462.5922656250946, 36886.77297203472, -35819.98923759833, -1710.054278823138, -1770.0237103565885, 8347.865713931036, -1576.1349364781604, 9096.441246427497, 2063.74561157988, -106607.16276843025, 72022.66701824836, 2913.664970164477, -139341.75112730975, -44557.14337942955, -9945.163566094909, -6077.187206047731, 1294.54922419946, -3010.7127304420164, -73077.40234097256, 6666.363561002754, -94096.18121861435, 1165.6937406606364, -13185.861304475677, -4995.207028392146, -1006.7779801099326, 10362.50782317052, 12352.765593950744, -48229.421395894606, 6737.447356309421, 1517.6142118396792, -102911.50353442432, 5041.482537954644, -5952.983455126765, -30312.796975809593, 2102.3211671235526, -54289.4291912696, -6363.744907272295, 3850.028091997446, -8290.551964090857], [-10454.435361987626, 11136.41933234975, -29764.39910231994, -6337.561449786827, 8216.651212363946, -3599.068845281635, -1405.848356162615, -2497.377501090641, -2649.8901798933375, 7823.127685630346, 30998.301297340702, 5044.829970805636, -6740.633821399033, 6556.813459692686, -8881.995253005196, 8407.469602428424, 11858.157008183483, 25069.69761513522, 1150.7824916631434, -169133.68495812116, 11068.018161499675, -8.071988930872559, -9286.564625588035, -10832.553165223087, -11008.02834374709, -5415.510978871435, 35.27542691094162, 755981.9787261231, -7546.876216048834, 15705.962163859507, -28362.50260243397, -3032.249143833688, 4265.293459767009, 8475.547775795087, -16461.64801765998, 11841.344369509872, -114337.6950073146, 1458.4688106439962, 16404.48893159331, -16588.04326663031, 13376.008458589951, -11667.466797345116, 35567.18295441251, -211020.98591108533, -7942.010536446729, -2555.1111329372425, 22203.56955919017, -3181.911709833152, 7521.168703390302, -11902.545968366318, -11189.11784870746, -17046.30228412954, -10456.25495614808, 6276.8189256458045, 4952.457476038338, 16301.444438230983, -14884.092745289046, -4198.8725797894, 18633.780128685197, 8923.630945653595, -273379.0942571721, -10469.622084558301, 21489.51469505218, 12311.202004846607, 192.92910981107266, 22897.04657445715, -401.7935916590472, -36528.842778375874, 10467.593796007031, -3548.066244077124, -5163.231026430891, 9519.885786493829, -691.1369959386953, -52869.58051329029, 2759.1697759116137, -6490.190069584859, -13246.03505421272, 6754.4872639498535, 2231.8986802288637, 9299.04699328075], [-73188.89445598984, 8047.0197113111435, -66549.48899600115, -14596.037292182154, -130464.81834504449, -7786.901343479359, -4244.203163001419, 20984.746509548975, 18842.390519655077, 18287.598149537964, 30717.39693941247, -14996.265547364406, -2870.213737427961, -16358.601555949119, 16231.286488397824, -56800.32368646796, 9362.745084495251, 11324.593596876482, -11454.027739281171, 26665.382272180188, 53678.00318230892, -50343.48349083167, 27419.742566203488, -147678.8912821598, -3571.1558081002145, -8361.609451147318, -10481.079105390736, -7546.876017719819, 728613.9833065952, -64113.39963589709, -1803.3478558545166, 11267.76901930445, 10042.35115154118, 11047.656082339556, -19858.819047424982, -18197.056033043078, -169767.8582605644, 982.4267280166699, 33107.86265512945, 6683.648265103477, 6634.034399770188, -8973.72746790101, 29706.131504267334, 19349.257487094288, -14056.05919532459, -9377.076244534801, 40403.294379204686, 22904.477603610878, -225257.84831821785, -16520.01325396189, 5890.575100535166, 8168.305756567341, -1204.5269241942299, -18131.5201400717, -9679.255671100525, -16938.327406363962, 8775.804197398245, 3497.9127188276125, -26226.37533016574, -4409.901037995779, 39107.94225905791, 66890.1220923671, 23796.74785132637, -23478.811993602903, -4078.7951613308146, 21222.096023485912, 10629.601334310662, 25358.913873449314, 10602.785616927917, 1574.4768180688836, -1865.4376127559767, -8419.535694989907, 18862.783118516734, -79162.89520400937, -14134.451241447801, -2407.6389038686348, -17897.74931881004, -12483.233739522506, 5978.182055455617, 3020.1606772083906], [-84424.2943677625, -8519.518848771562, -26605.975687408856, -14776.413427792337, -73456.55566149464, -26778.00960047532, -11521.690487211961, -7306.609291872382, 9399.048310404189, -7529.048032788911, -14995.590740272311, 4703.717506683989, -1215.0798794955776, 69837.67391524746, 8480.013798477285, 72240.63069209605, -11041.217240710514, 2263.509143295634, 18627.781891186372, 35074.42473882547, -353684.95037405164, 35786.4323528185, -15152.667251845945, -140633.1877128973, -28242.042280566682, 3489.4515847410717, -23896.714354771066, 15705.96213207576, -64113.39958351897, 478387.68257773813, 23061.98593516321, -350.6652357000863, 33212.44068868971, -20535.548738140275, 2766.1471091706526, 14929.051498910836, 64172.06532820115, -9521.644670780881, 42179.22277637844, -40445.40178964932, 14243.196298486817, -7525.389662653781, -10784.684114180332, -34727.65851966517, 27067.356890285668, -344.5698388158177, -22868.309940775263, 18099.561190310662, -89894.68906111358, 29615.795244036486, -39629.110953596486, 7940.252126096856, -22141.260686903555, -17091.29720200263, 1119.2200618459074, -9077.09735001289, -10727.799932020394, 11150.301212349304, -3536.8296490383477, -8608.304244238103, -13945.543629197506, 27323.48340831768, 32387.570410080098, 19521.57356056472, 5901.002376748017, 42100.27537433847, -4043.1227628693964, 45458.240053595735, -7321.957496382937, -3030.324052841647, 26263.251815598927, -15321.720966864243, 43773.738345696336, 45760.512846482714, 12114.807335265907, 5853.920367905215, -3592.2689674967437, -17671.71061878115, -19204.0558418511, -4162.054949013035], [31577.459497732074, 7282.05144779507, 27776.60944106303, -65920.99847629145, 7837.874552739581, 14449.53803557303, 4635.254896457998, 7366.328038944831, -4732.373863023609, 3405.8770366425915, 12193.483264942992, -4859.973548896429, 893.00240615526, -10660.834409661562, 20203.933993142815, -14879.665741183777, 57878.66710948661, -194416.79618293422, -8690.48219672845, -12766.296757913751, -101219.48593264763, -9510.319784197578, 10799.005091834122, 29383.22723231685, 89535.28622056803, -2789.7853686101535, 9335.641581612947, -28362.502558750686, -1803.3477864122483, 23061.98589778322, 402504.0013698405, -285.7211036231498, -1042.1336092164508, -5975.8008804683095, -8671.823404434119, -4163.698223473307, -35085.02382291347, 61282.50692935471, 52556.76563291217, -45887.48071054204, 6208.089309982219, 9787.835026278462, 4006.791540827992, 23679.115496243558, -122884.12120613486, -211099.87823733885, -25562.295760363468, 52764.91647356643, 6995.173100073249, -10588.237017621801, 11942.133883428696, -3435.962063405487, 75824.04895066046, 6278.432803703127, -1362.0009515080153, 26384.016641929185, 22318.868932893725, 5819.907875459646, -60877.48085763685, 5502.967725310923, -23237.503148856158, -3363.828688605788, -1318.2088639921883, 76121.28590282922, -3281.6583501341124, 28558.73624140214, -317.4505908535774, 43173.3260508275, 7678.658740827653, -2791.1221260366106, -142962.21811019685, 8900.171537885264, -47479.572960831254, -12702.366003774521, -9430.534363439474, -6417.021196445238, -1544.5577749364002, -35191.10386999923, -8693.044424060452, 358.1183697474829], [-1315.2817835906778, 63419.1577103044, -1852.7891923045345, -535.5864204883608, -13165.996970691633, -20.76326354277199, 51989.333265537825, -15142.997775930085, 51667.11885771918, -112295.17258646268, -5074.641558532967, -7722.599088644339, -53912.82154189485, -13479.390320188504, -2593.0528737441796, -6153.51756904569, 3839.9357867085346, 61.87735186887286, 15512.967462993944, -7224.302218773593, 724.3320115505443, 9207.5795646078, 582.6091927047561, 2261.8071513652717, -2335.256589924411, -70207.12059571737, 13727.708455658718, -3032.249103287508, 11267.76906418586, -350.66522420242524, -285.7211129678077, 826169.6394882719, 7039.708469149218, -7701.943025436426, 17708.65531841313, -986.2597365169662, 11294.867210274819, 4338.026604226411, -1235.204558973314, 6575.923169447562, 344.4459052267001, -1468.2816430263167, -6981.038989805296, 547.0396179495955, 482.72879989293824, -574.0731990918651, -479.5189155819743, 2845.665019075655, 759.9044271712364, 28329.59910084698, -8131.811937829329, -146675.53560372343, -3196.794677989235, -623.7943006374068, -51010.22845743224, 3028.175415833439, 5705.401111373725, 2738.6574535884174, -2925.754500678274, -73932.08118200213, -8968.766794994823, 25729.28954687677, 417.1153063045346, 233.45057691151152, -74547.07340113801, 350.11405650893016, -169021.6979357945, -4318.984115812531, -102209.45255627054, -160111.65776003775, 981.0550920233094, -52675.35436814148, -1076.8204231002248, 18875.821191180643, 11339.766138604698, -3007.998072030143, 13282.070793148223, 183.3530423249291, -5238.474307024709, -9768.636450437358], [2132.279398915485, -86037.40962674562, 399.06980670978396, 6535.296678273032, -25167.058094398646, 3202.119174781547, -32637.395080361188, 52622.636411631975, -6265.735266816417, -186398.32399118211, 9242.175646403966, 1879.966457240254, 23907.07493081837, -34137.80362741855, -4670.597985745493, -30399.46618102882, -5858.128720336456, -5417.044568980141, 99074.80387400376, 5445.72758855442, -20420.58451907823, -12407.549736873836, 49670.087401648765, 16933.8932643331, 1954.8733558093493, 48210.53140584836, 27391.46794562251, 4265.293449751319, 10042.35123385339, 33212.44063481159, -1042.1336199109037, 7039.708519179873, 580241.2926458223, 40687.81362557376, -128655.11714459403, 13487.294058444813, -3756.702725545922, -3060.93147823776, -9303.68262930334, -1965.2370638362324, -1501.8228456545912, 2077.5187825797652, 12876.227259054003, -8584.229954909135, 8224.408296566438, 3631.4993354794105, -18844.29321147411, 2804.2790582050634, 914.1197907723015, -279769.9818288478, 64592.12093779911, 61179.17079799256, 750.5211714252067, 6514.994493460171, 4031.2015528553984, 4257.768840769295, -12705.30236795838, -404.8074238473419, -4360.630622145632, -30120.483613515004, 11493.763650414201, -15071.486666105528, -7366.3796790315855, 14120.845958852267, 14659.231103301063, -4763.116522424011, -27814.67591465286, -6203.13217720035, -104546.5865133653, 15162.041113785373, 2454.7218112753276, -45060.280709976054, -2355.811805181082, -30954.604494546726, -3567.5974181048527, 2288.690975625057, -143337.87078922585, 3788.976442293073, 30825.627770896168, 40742.43615066489], [-6896.0145866309385, 33363.19891748679, -8712.88455535789, -8607.180272362188, 17552.830041301997, -7065.6746419186065, -4144.785746690115, -73029.8639388877, 20408.736584734757, 31364.163985536226, -112239.104552985, 5988.268907880694, -13016.37312236353, 2016.1432260910435, 553.8758488229782, -593.4329803294495, 5899.843482282536, 8117.355303928853, -8456.407649773751, -26631.96476318605, 7073.49133132025, -28483.55191922032, -28891.61934735166, -9576.983309651452, -6068.764658771138, -13298.65181303244, 7768.605248874197, 8475.54794947626, 11047.656257262912, -20535.54867445781, -5975.800880761083, -7701.943149939743, 40687.81354844078, 823499.0244588015, -106229.86535956961, -71600.48141967908, 10563.845897571804, 1336.6631259880735, 6133.247624468911, -9849.876192602713, 8856.660720996502, -5750.814507480301, -146066.9669326562, 63434.40925849751, -390.48768433592574, -5509.331639276546, 14726.66941928027, -6246.71793847083, 12948.36439432016, -49277.66759388352, -90513.47663305278, -48105.715082091854, -4289.99867055508, 20137.458525622475, 5704.322115706542, 2555.3044763429116, -13409.959641659805, -596.751569755731, 11090.081458944138, 23475.676502060873, -3271.723771266308, 13605.722948957024, 12428.36661645625, 808.9990668378213, -8905.343970214082, 10725.81360124549, 1055.9125022766045, -11136.393076348673, 35681.715734998, -10317.429588327996, 4264.8351842039665, 28718.828228785238, 4633.789337532915, 25934.408097391966, -2153.737282565616, -1880.918393011997, -67394.49989110757, -2762.303777949623, -185164.1104930686, -101894.9168807126], [3349.0563630257643, 3849.3061683885485, 1580.8375171237549, 2424.751592573794, -4496.801345936173, 5069.9058625017615, 3540.6398479402046, -18056.490087596903, 8727.335123771209, 32236.00063249435, -9859.250660622034, 7440.4943112471965, -13821.570886518453, 39109.49198086743, -1259.5383954220572, 37459.83514354148, 3913.390845583258, 10640.46035837481, -14944.114603845605, -7112.066858290704, 13024.690215798806, 34450.04067081697, -22002.346776819973, -6552.930601712339, 774.1970991364236, -9920.751843849046, -29770.871431931737, -16461.648064240326, -19858.819104020713, 2766.1470188579806, -8671.823369801086, 17708.655633227456, -128655.11722652297, -106229.86551248311, 780625.3541417586, 14811.921545176785, -18490.57591612085, 479.7745317240589, 9163.95205673167, 6544.631258183366, -2239.195650281644, -1916.7992359556392, -40829.45446240898, 17241.80249778209, -12541.788333548197, 3111.863319701311, 7141.979295653539, 6973.565983282045, -14977.11212915374, -218174.71115237928, -87282.70977611546, -4804.345735489617, -220.7442956652104, -17454.855574150894, 7160.5151247995955, 380.770826100459, 42924.19570823379, -1918.641533333654, -4294.038075787724, -1831.472099707486, -16858.647239938116, 20327.822588852658, 494.64000091616873, -6412.53551930137, 8809.14140696394, 1661.213614067928, 24063.746029061283, 9327.12921161332, -3147.602593366497, 18221.20203450199, -12473.452763613795, -20039.290486294405, -3934.972748559472, 36543.81954880656, 9551.120328120967, -3296.5766105760285, -193251.9743514226, 5123.48402967689, -139400.23068588952, -15309.424411591408], [3617.967157731174, -10723.903559998467, 1779.8289501963864, 2041.2934792957024, 48739.60846452408, -505.69069780557385, -7383.420795926621, -95327.38491161252, 42881.923091499855, -6915.4902117754455, -37619.83153418375, -901.5735734977608, 7108.568915224018, -85196.08221887544, 1972.2658271743853, -121865.81315014108, -7715.308168456239, 978.3526003740383, 4350.173311388656, 6448.019662624226, -16478.20784476214, -162271.88957991297, -17373.371121206666, 5892.443644800842, 1949.8412068610098, 11586.143721940101, 8700.717407064789, 11841.344389504713, -18197.05591227689, 14929.05137208859, -4163.69822566233, -986.2598246373095, 13487.294042321239, -71600.48131246441, 14811.921613904999, 840536.4749564755, -34457.1812668778, -9095.650828825022, 97.06034743972276, -15346.936876053689, 2096.1727633655014, 996.8065431494938, -25471.949727737167, 26456.998437422695, 4270.050426501784, 1776.2796070930794, -3962.7178953700213, -6858.705099453868, 10569.279381568831, 30586.00459225261, -52264.863147604694, -5048.697382805798, 3383.2162971669163, 4828.80389140393, -7114.674099734026, -3385.7227435978125, -66228.35975241018, -5071.70381143063, 6314.738669275772, -8689.329721921382, 29618.596663201213, 44898.705372751465, 661.3043506433328, 7721.375440756527, -10187.86414694053, 1651.685790591795, 1841.1275758596144, 276.41584103865625, -10962.549610630216, 7656.810063533877, 1574.5086193656266, -7332.556052854324, 3423.9729921446933, -122128.66683974784, -9.754637587948036, 5593.314188922413, 9709.537942288014, 891.3551040032055, -50606.988572656366, -141098.8573694773], [-116292.23566349735, 11599.859323148376, -138250.82523649, 1571.6941679894162, 76158.95047934938, 9587.956044439416, 3649.659602488016, 20848.36874998945, -18497.058340452768, 218.15310125990223, 52955.97979004185, -13770.60811147537, -6844.466151432009, 21054.203403040774, -8800.577614045747, -26428.90129045942, 27475.829228761984, 12212.483645975883, -4592.043922622701, -75348.60252291373, 79278.47851217978, -79989.94751415677, 19999.585263397952, -148216.55072440405, -10014.988694495598, -11678.799513106773, -6123.2455397190415, -114337.69513756566, -169767.8582344552, 64172.065368938915, -35085.023784401004, 11294.867233383144, -3756.702663903506, 10563.845957799842, -18490.575971348295, -34457.18110031756, 716735.0277384028, 19164.984205559456, 3284.921022828598, 72676.57387056795, 5352.110375365558, -15818.757536063289, 54180.54261229454, -13964.77668165884, -1804.1466111306595, -3461.198127396704, 20742.541269045094, 37738.378792500545, -43850.47951499493, -22077.396403762545, 10027.295838330283, 4235.404047509633, -16777.267255866536, -5950.460906113052, 1084.4828566420126, 2431.0135289711675, 3761.8774921869035, 10474.920177109854, -50824.29903984976, 14989.057116946069, -37376.28442001707, 24676.49995659948, 17360.798727747053, -7752.402942088769, 3317.9231005670817, 14565.211504319332, 2824.369859506241, -49565.57258243284, 23927.355360728514, -7426.816287574656, 5413.938585196929, 13719.223658546876, 704.0186034777745, -139097.0307567693, -23347.396493672335, -17488.212679365253, -13025.435943083708, 2255.866825071794, 6645.759201520405, -4623.447560481276], [19251.880877947577, -853.3751537677983, 20074.514391897526, -33220.00417055697, 270.8788144425403, -74749.49602766258, 733.9284246168057, 2963.831325034221, 1431.48102228813, 194.24190551230285, 3015.0976926913986, -5377.976404487707, 826.5918096032952, -3974.3190708807892, -62113.19222553792, -10877.25809555046, -203102.68355018398, -9616.131874664132, -3418.0878037295015, -17652.16167058116, -29034.22027907591, -11374.686582053462, 7801.028728520996, 21284.456886149484, -55134.42810279692, -821.852779481444, -411.4455883703626, 1458.4688326282612, 982.4269093402653, -9521.64471467475, 61282.507082058204, 4338.026598687742, -3060.9314838800665, 1336.6631690145393, 479.7745074660288, -9095.650929226123, 19164.984216491775, 767642.1420313899, -5551.88372590909, -39634.56066099186, -111326.39245203427, -97166.8248768009, 3082.436729227934, 12688.353963837963, 10506.018081537657, 461.9831076155638, -6701.699723785104, -30010.990253972777, -4404.495107726423, -2424.5997937407874, 5094.39856722824, 5969.563605252149, -34011.890640912796, -3521.946096786433, -2650.9091457937984, 24723.192921132388, 2964.544891989534, -164006.01506972738, 127383.75168780607, -809.9576484014212, -14428.108931119441, 12395.526638567444, -1824.6275433004985, 17868.28299583429, -715.1280655228611, -1321.8120545308586, 2570.158160083798, -5783.082257476855, 1451.0892076521968, 1083.408312497086, 6375.724910267413, -1410.6055195983865, -57482.81535878367, -3931.6246354412024, -6472.54036617439, -51602.04961450812, 55.04922499879988, 23156.66420910464, 2389.696506711577, -4262.254941530212], [-70962.3881516387, -5456.55711407782, -83001.9000932494, 12832.252269987479, -9936.78626080139, 9877.489449546698, 2073.3062701605345, 2235.508445559547, 879.2036834533397, 570.3277794610722, -17296.21739195491, 2660.9010515745613, 2990.2050211993646, -15735.364852056457, 9958.16046727126, -6501.726855356639, -18711.86762967085, -17772.66594071384, -2958.462903356435, -61553.82582805109, -13481.546439970121, 1520.333275442732, 1690.2247099091273, -21158.34536953684, 18987.330303558032, 3737.7956742454608, 3973.0045258560694, 16404.488665469198, 33107.86277798884, 42179.22287273514, 52556.76569835814, -1235.2045542526582, -9303.682614456371, 6133.247494147159, 9163.952083048824, 97.06037118838755, 3284.921258698769, -5551.8836549937205, 837068.140058038, 213.50527008209474, -25811.189920161825, 22436.34032904732, -14846.294800276679, 30481.766202098497, -36506.21754973768, 14836.996881774889, -127602.16568431801, -107934.68340277734, 20284.38450423949, 2037.5257890059697, 10185.22986162204, 4047.3307136181425, 20885.765810936842, 1216.780814837663, -625.0471764315045, -33548.35285247496, -11056.716677592467, -5194.819063485271, 42197.46706351063, -5900.657281717073, 19757.012722891264, -11735.320433608747, -131849.831466027, -67367.94327597524, 135.5639267632302, -141062.16467402782, 710.1156300681725, -145213.86958750847, -10140.379165316837, 4174.811815373428, -50233.02639891871, -6108.916627721584, -15629.315398385319, 9423.040127209142, 4995.782144311316, 8706.022914979525, 5139.490085591622, 1148.673932350526, 9175.11046855632, 2826.901354603495], [46524.16083228773, -6281.850028815541, 50366.39506644502, 24725.41316618048, -6593.57296235775, 24736.496505775, -798.6322099288674, -7573.651020205137, 14379.754083818427, -3118.8740382786086, 328.2496718208597, -11097.748025052546, 5959.6173284342985, -13483.246040464413, 40883.84985796459, -21389.105517479926, -32630.326938819788, -20524.226240291056, -5406.705005591658, -86580.83211165837, -41240.98464787968, -2717.052474683377, 11544.353647281416, 42111.01463510567, 55379.47507746022, 3406.6356150123656, 3409.9158091863787, -16588.043337053157, 6683.648413810255, -40445.401650950436, -45887.480717995575, 6575.923182189107, -1965.237033666307, -9849.876323480237, 6544.631227393193, -15346.93688189401, 72676.57381076878, -39634.56053905439, 213.50534855819654, 471956.65238704666, -5150.884788048167, 3363.2672306585596, -4606.004195542382, 25357.710231420555, 39874.473770669, -583.5281115316234, 20664.746330308353, -226732.28474005428, -14361.582666365832, 4820.7730051209055, 2307.768577993156, 10302.628032542518, 55304.50330897563, -4316.006515529159, -8584.260860409588, -236231.8133969988, 23520.6676373529, -15092.312261200876, -192023.37185736035, -5106.09690359394, -90786.60492011905, 32108.476986331818, 25344.059472794932, 29407.13261985316, -6082.871066486046, 18810.989477573206, 4913.399916063767, -21946.47219510852, -1381.9108837907124, 5010.202109819806, 31911.94196254773, -4292.155105181471, 21960.68453547637, 35615.58221485636, -12336.686263057918, 24378.832026453103, 6669.756094391738, -6891.618975001815, -6635.87029583414, -17800.11501564458], [-7521.100236624736, 1683.7943968685372, -7526.326168309366, 24667.94865247201, -5853.05191588129, 12739.060061542039, -611.9362892157503, 3386.6693735145477, -44.87914056046921, 4615.172457932583, 50.23578018916033, 1960.4185100246764, -2322.959394159051, -2098.2652597483943, -5168.12892319757, -1433.908263494229, -149144.52157480866, -148897.15422903144, -511.48377177107074, 13860.659802058646, -4994.820358379489, -3625.8940602478497, -736.3531437738723, 3680.211642675129, 46083.06468863414, -1700.1644439249983, -2704.4893449259594, 13376.008364852094, 6634.034368003637, 14243.196291945987, 6208.089276701077, 344.4459077117266, -1501.8228220881906, 8856.660757627587, -2239.1956199436186, 2096.172725715509, 5352.110245512093, -111326.39255618646, -25811.19001130248, -5150.884729552786, 694495.0191568261, -186841.97573383414, 4557.94594651244, -12777.260322781163, 48791.0123626964, -13039.000762104008, -22997.904439509275, -8132.60001794835, 1726.5345643751887, -3829.8552334364695, 716.9849428851692, -1253.4644355829184, 39773.061012363054, -1839.9344798539921, 1116.6993148939769, -1550.5168082816615, -13420.221528469896, -13329.487422481932, -23817.92121478928, -693.53869016259, 21978.920541817504, -1559.1428991621376, -10841.217236733195, 38218.9257677964, 1456.094098904499, -12381.314211666011, 1337.202129724574, -17068.545307345397, -419.7669445206078, 526.5594107849505, 35955.13271091675, -2224.408224294045, -39527.82823788348, -12378.253153321108, 3194.250995959432, -267797.53558036225, -4380.1847833270585, 85420.87935669052, 8394.70806190346, 5547.048347311182], [6659.337976386089, 1844.7797814622652, 7606.205086021043, -2021.7079265703337, 9108.042740105839, 916.5809513966545, 838.5068474159075, -1568.6764530571475, -2574.598347796805, -2154.616941982928, 3844.616463685241, -275.9604377170552, 255.55732569468628, 2567.0433059429256, 44806.585792172526, 2073.249669953361, -28648.754747514446, 80344.91383856068, 522.9547105348028, 4522.163917678312, -3889.6261094545525, 2621.6462210696645, -953.5772132529024, -4241.1932647789135, -12272.146408717654, -247.8170314745303, 2462.5922568396036, -11667.46682135524, -8973.727501924564, -7525.389601418333, 9787.835036862942, -1468.281644653992, 2077.518793480516, -5750.814493385051, -1916.7992333818795, 996.8065627305583, -15818.75755993356, -97166.82489437307, 22436.340261977537, 3363.267239210686, -186841.97562152287, 631670.5170257313, 174.00350577909606, 1573.731746719432, -36548.99382399996, 23358.79997217483, 12805.747798265207, 10414.853415280139, 531.774812352292, -121.47336400946034, -971.7874640926366, -2817.845645444556, -5528.579750482288, 3267.6731098706664, 599.9416299169441, -14741.700626696336, 9981.298759601828, -17215.92428650263, -5349.174066670426, 3109.940776856572, -9295.549279928846, -3505.7994022501507, 3138.280230935708, -34541.22979403581, -748.9112077675813, 5718.341823049015, -1837.8089504329785, 24576.603724186796, 3121.4876946341333, -2007.909774985024, -31273.9998736425, 4728.747640072221, 86629.05918782178, 1983.6422342514427, -1895.391022727239, -363576.24040833797, 1162.5240991949663, -102076.6275714289, -6821.34113473793, -1348.8554045760172], [-15320.756976243376, 22418.956207730487, -13434.669508110865, -4717.638730512451, -43858.6880038558, -4758.564624554774, 10379.50052805418, 36237.82095769513, -27653.12907429084, 606.8461827772043, -313409.4753679489, -14119.801235435263, 2346.010095054069, 32658.269518940695, 300.40615358017027, 52454.08307480567, 1454.3555452226965, -10722.894094443835, -13889.392514874475, 849.4897173672439, 15332.532762963177, -8569.777934966954, 35634.181805332606, -7162.880732958234, 559.320469828487, -8794.886503797821, 36886.773186055514, 35567.18276981071, 29706.13161703675, -10784.684192237419, 4006.791611084086, -6981.039044666438, 12876.227270433936, -146066.96690452017, -40829.4546131118, -25471.94975006982, 54180.54267768618, 3082.4367913563433, -14846.29471065844, -4606.004323505875, 4557.94593762542, 174.00353710405247, 659281.4918043321, -30606.338809611334, 13008.673910337906, -7116.57399350134, -1100.8702874710418, -10878.052991773224, -1146.8549002578404, -28132.942934292332, 37366.46392389273, -16645.240525204674, 1174.5567277430102, 29006.716428761145, -2286.911694948374, 2001.7299541012726, -177365.31583640512, 1111.8329603805873, 6731.142060751937, 25192.345640947897, 23619.88864728045, -32739.196700359586, 1481.744285193248, 5466.124298117873, -11246.231861934042, -2184.9141069866214, -7528.662108182403, -22901.85279754345, 32761.802911239873, -14033.46299974459, 16060.15773997003, 42172.42881744668, -69.6269908806642, 5277.7860594731355, -30316.341264974624, 1205.4396004179257, 3174.9527198589267, -4872.119313089578, -144668.3248425333, -16505.757966762638], [50764.80650210781, -10569.304483102025, 59286.08553863685, -975.0643289113068, -22553.32353218239, 1128.4765293164953, -5190.999696645709, 24772.599124422195, -12822.481117823752, 3814.3293803924935, -75064.58757799663, 17867.80327226838, -8486.582811941282, 25948.64445886331, -3445.4362091086823, 35279.04737315646, 7008.90370103988, 10002.936281919434, 15388.398837302557, -14939.084176479531, -34097.303129859036, -17136.47199880576, -21723.23564022976, 41454.515647791515, -7043.487114253613, -1987.8616662996844, -35819.989126650136, -211020.9857772169, 19349.257676384084, -34727.65848468238, 23679.115552441042, 547.0395634081823, -8584.229967534564, 63434.40932632229, 17241.802348502406, 26456.998288681607, -13964.776687968528, 12688.353913678893, 30481.76626296641, 25357.710280914842, -12777.26033950242, 1573.7317483069805, -30606.338840196404, 554211.2390652127, -30813.861230123453, 7840.819876533459, -1806.9960153132315, 38280.55441939407, -2075.679969783044, 6685.082221548329, 1549.2656231264582, 16284.164329426556, -9146.325933615239, -25320.860329818453, 9413.28938963764, 9964.119824901962, -198799.16791400948, 11591.882830269456, -16337.858214197347, -14844.762168489302, -237650.93383348268, -21221.261738707602, -9083.387516440514, -21006.920638901465, 19025.729786332322, -1392.7326710050766, 257.2354615282506, 63692.22136467941, -20031.032231002533, 2599.529471252937, -32804.22653264192, -27990.411588267347, -4109.017800178092, -133269.68129694284, 34082.95705825481, -10478.282890095483, -4876.074363245618, 2438.0068444566637, 66383.63459938628, 48779.049808248456], [30395.24044900332, 8077.918393933411, 34326.360214358254, -85343.83949632001, -4364.797435401786, -53804.33911615006, -1333.8046504575136, 2469.1345815605587, 1789.7162992382916, 6399.258736217971, 14452.784907643632, -1743.871501204733, -3313.9937945822335, 2519.697759046411, 13598.965422833377, -2632.81369471554, 42791.8450925911, 60564.0690320566, -1888.7526382190752, 39638.64391552945, -33029.43729670153, -380.1281458694748, 1440.7518486491526, 26403.291891246565, -47564.71559628501, -4540.228413642311, -1710.0543340638903, -7942.01102782067, -14056.05900402816, 27067.356892220178, -122884.1211395721, 482.7288035241311, 8224.408356089949, -390.48765376108014, -12541.78833557681, 4270.050331430066, -1804.1467656083996, 10506.01853729301, -36506.21732407361, 39874.47365596049, 48791.011971982465, -36548.99362568757, 13008.673984875191, -30813.860864120044, 794548.2756576844, -62524.7435656918, -78855.48726682742, 1131.3374036951575, -13150.74779566812, -7299.110382216138, -4669.797676808886, -6219.563463191982, -36893.10407677747, -467.64780111361625, -3.048349594404812, -15102.811961563808, 5447.569537303924, 4070.719713044223, 13845.995789393604, 4156.563023158822, -4279.1659401759425, 8951.717176047583, -116446.60172492925, -136721.54167137426, -1152.6023215223825, -101925.90389022329, 828.1601207667708, 33255.662614245026, 8726.834671439428, -3070.342335664123, -205131.4555503141, 4226.741608891509, 39932.87187831402, -11945.7237691306, -3215.4649627619983, -12511.004553231951, -8754.937278959193, -20105.401909759097, -4534.643239936101, 3868.358401009948], [-4551.702548737333, -2819.648778395941, -5422.519944481229, -158578.98717822164, -1.9358096838393652, -133938.836032216, -877.201690703426, -2238.8604937109035, 185.11163854332312, -3954.4675890549097, -5422.806963111059, 381.26160479843367, 1186.824629877906, 6863.332712858751, 14928.180874380696, 7567.2526347308085, -50316.52679884887, -221799.75853974224, 3132.1399403350133, -8930.295715535007, 34452.618848765575, 6804.90818508496, -2290.8329947074244, -12910.900709245694, -36709.4462284919, 1689.8774532235757, -1770.0237212286336, -2555.1111996821655, -9377.076427067384, -344.5698186624244, -211099.87847388408, -574.0731837105427, 3631.499323989452, -5509.331592721677, 3111.863306639281, 1776.279599981929, -3461.1978164468187, 461.9831062598943, 14836.99668998099, -583.5280077625814, -13039.000639872515, 23358.799963203084, -7116.5740047208965, 7840.819861548481, -62524.7436931109, 798030.4173553175, 21441.53742602786, 8332.15918843375, -5890.029786354228, 6157.12127901587, -3772.6674477726506, 2386.057853376586, -21461.09654927206, -1238.228968584343, -61.65580195545697, 7389.974571192771, 3907.744597683889, 32149.816281184263, 11823.75374768495, -1259.7267343078959, -7420.135338416383, 1234.092202663134, 9152.39299794787, -24181.300899411235, 573.3333028263548, 9208.249108525013, -1527.3135001900785, 3871.217205568104, -1961.7035961688691, -477.7661509079843, -41550.91652521335, -1408.9157128133363, 34710.00102294006, 12403.460197492534, 1167.9851555475007, 17707.022969300833, 2924.7135664010716, -29100.1599607865, -4852.186080232423, -1876.7580207740095], [-65384.03743038151, -2069.6116534198436, -57774.90936679227, 29920.061843025163, 16572.234548440425, 36017.78779836073, 3439.6550917770687, -2374.437869950553, 480.48443550467755, 2514.4325685641093, -5777.9731283032015, 1957.1212420215604, 1362.8073966834665, -30338.763034273634, -10007.768035338686, -23315.90179801789, -5731.134148644436, 17645.012927279116, -5515.809513181596, -2735.897023034867, -159794.54277757375, -7059.813745033294, 519.6906446731285, -19370.50208032015, 33497.77851830255, 1795.7863541453687, 8347.865632546303, 22203.56963809795, 40403.293994770545, -22868.30994293296, -25562.295637743187, -479.51892342332917, -18844.293245591507, 14726.669421786703, 7141.979381550044, -3962.7178275831407, 20742.541230915936, -6701.699858342963, -127602.16562160465, 20664.74638361917, -22997.90449932267, 12805.747947594073, -1100.8703619246971, -1806.9960344122653, -78855.48692160862, 21441.537145507147, 822925.7408707942, -24443.780241605327, 36593.14656650731, -6867.592562220199, 13572.8153322958, -1825.4307285843288, 28414.05063814155, 5923.931745812973, -134.7240268491627, 14941.300307566225, -13801.182401233064, -18916.65591512756, 20328.556372714807, -1438.2853805518623, 22909.406895393884, -14981.500388164199, -146455.68285489443, -24302.9422254518, -1600.6138939543791, -131526.70467367733, 2708.574628977405, -78917.15480533657, -5171.522011219378, 5263.596318190006, -112102.72159859799, -98.51547774065939, -45990.062449588215, -3805.4397920467463, 1874.2646767074802, -256.1047326851542, 4227.743849891182, 28432.29492490684, 17040.340968255357, 1317.1290078035302], [9739.046764645109, -7314.997576912086, -6484.250650706467, 2.028924434821601, -38137.53953991615, -8773.963399542621, -1606.6959102019637, 1406.199508398242, 8878.272371636705, -758.7967140597123, -10780.736383088111, -3475.899469522184, 4227.714439182306, 1510.382599877391, 41539.23635533416, 2597.721412936629, -32117.790684077983, -15995.942456747203, -1666.8882496237413, -97899.30375852202, 47291.54889231965, 336.39508198466245, 7502.356244995325, 32308.451649406372, 7109.788123549799, 3942.147264934632, -1576.1350092860112, -3181.9117364233994, 22904.47756741028, 18099.561131546794, 52764.916439678316, 2845.6650125974897, 2804.279041674619, -6246.717894530629, 6973.5659627793475, -6858.705180366019, 37738.378738392385, -30010.990483102487, -107934.68379770433, -226732.2846152848, -8132.600173211012, 10414.853648477583, -10878.053060432783, 38280.554427421805, 1131.3376846399683, 8332.159203220366, -24443.78012738548, 773054.503255974, -11862.703384518089, 8939.414880358154, 692.3465449549415, 10525.453491874525, 16924.1699297005, -6444.303599550323, -4628.595813177297, -164321.682155384, 2439.349821664029, -5619.591240200507, -18482.93518784957, -8615.428976288535, -31084.53511854249, 15825.175591423407, -60034.825249926, -85469.52339258336, -1231.9570716058972, -84592.19429094785, 2201.0573769973485, -113574.42135703431, -8414.170565423974, 3819.6888665507163, 4256.707462141755, -10387.457369771513, 42382.028723640375, 20362.462444685607, -973.2633385619412, 21855.3509262154, 3218.6959764781027, -20758.498769479273, -2746.8613823143055, -6943.961401893939], [-6036.107822042729, 7525.319905195799, 2514.374892450606, -10842.399595443447, -333163.5033239201, -6917.846281811553, 1052.5657016520008, 19816.449108029716, 20027.1908075171, 23245.81519872935, 1899.7930567020367, -4015.2437972605853, 1334.0017381513064, -76749.20594649285, 14755.181770945694, -73385.01205823473, -131.57885608708625, 5151.429865501646, -18327.4710953387, 22114.5188228797, 41698.53985735778, -2810.447879626832, 23057.981864426314, -64472.67005358169, 2181.528987222067, -2252.506615794915, 9096.44121754731, 7521.168697212093, -225257.84848775138, -89894.68889177272, 6995.1731715914475, 759.9044998115518, 914.1198398438682, 12948.364500704807, -14977.112167665839, 10569.279358469576, -43850.47949040799, -4404.495089579193, 20284.384668218965, -14361.582609084146, 1726.534514058345, 531.7747924929363, -1146.854834998814, -2075.6797499151335, -13150.74770774281, -5890.0300264914495, 36593.14653210112, -11862.703370536936, 699556.2459526178, -17708.436324199654, 20512.011501288896, -3036.7633955195156, 6415.432585967882, -872.5389596696638, -7384.920451279645, -15939.527305026637, 4224.474691152505, -4029.8545885924414, 12654.095166263885, -7958.833828525132, 12053.079306171232, 17237.038493328637, 12229.748675180406, -25080.079776281684, -7327.708246049427, 7315.563624054426, 7557.198146106975, 27745.38660853346, -2601.2641537634054, 4925.204167525455, -4006.364848858988, -7964.791112457287, 8077.194924104887, -12353.969131978203, -1809.4051674727439, 3743.133263696851, -13057.161041906329, -8707.978154182412, 7626.484035517379, 19610.193742306004], [4507.348596030249, -35618.79445905577, 1552.8562062044582, 8017.405191803698, -24432.566335629428, 8446.202246693256, -5425.751014921698, 31802.25047975642, -2969.5881245757264, -34962.66050690185, -4498.412173918186, -1560.7987649582974, -3155.3781093443995, 14538.070788562824, -4597.282244740542, 16005.345501195945, -701.0774282778647, 7053.09084049746, 20322.580108606828, -1002.4948631424633, 827.7334862633971, 27231.955776668015, 22701.25049450955, 4498.162496449164, 3293.8667481566476, 9633.021017144521, 2063.74564075024, -11902.54586725837, -16520.01340187483, 29615.79524653011, -10588.236997425875, 28329.598857515495, -279769.981879818, -49277.6674688893, -218174.71099953214, 30586.00471756574, -22077.396289518743, -2424.599772981179, 2037.5257658913981, 4820.772998103525, -3829.8551838236176, -121.47337854538785, -28132.942822309564, 6685.082197043066, -7299.110330937492, 6157.121246745429, -6867.592591754399, 8939.414862975902, -17708.43630286186, 707710.1129689768, -10574.613927852852, 18471.096818680428, 1323.2157261916448, -1800.952799210996, 5877.528962039959, 3188.765456729399, 27406.516842391156, -3101.5949707276827, -7597.554947471213, -2731.4076486241465, -6402.30523492981, 5172.71288049941, -5658.088565578955, 3748.466739095464, 8942.091297534582, -2555.777591116171, 23182.075359321796, 5327.548096521043, -28627.246239128366, 33790.711106924755, -11672.130811379471, -18875.604626366832, -6602.284602691374, 12266.675371031886, -9730.743527147624, -1360.7566987914597, -199518.07014830224, 8693.073079520955, -80474.7474597899, 26125.946103498707], [892.4350347578004, 10577.648536273597, 5057.990896222676, -8550.55715835883, 51839.90719031521, -7157.967497983358, -6294.552402648123, -149070.28475698747, -3919.5247778224993, 41689.09591830789, 41529.95058619205, 29776.65151889149, -11671.554774169968, -22471.12279226495, 5186.364351757336, -24128.23334468163, 4308.989736317224, 517.7252060736446, -729.9095734897327, -2224.645039069765, -34.149936500687524, -12403.175372220368, -144349.33690184075, -9103.225463026496, -5453.9128275313005, -10490.260009061258, -106607.16275859972, -11189.117868640398, 5890.575119802951, -39629.11084569051, 11942.133845118038, -8131.8118599808095, 64592.120774186755, -90513.47674536188, -87282.70971917882, -52264.86319065821, 10027.295941724171, 5094.3984947487415, 10185.229903142195, 2307.768607643987, 716.9849857679371, -971.7874282513534, 37366.463888158614, 1549.2654970764222, -4669.797639807363, -3772.66739567414, 13572.815194773173, 692.3465620333284, 20512.011185650474, -10574.613746125471, 806439.7440953503, 11557.016012796808, -3904.2989076235417, -64584.74788417089, 9262.589127089002, -3623.902781730879, 40534.95380441122, 5048.613941602561, 2261.224736759914, -31266.63051005702, -21931.594843373066, -21245.644209149126, 6768.2253088683465, -13549.213717822457, 23771.99185307826, 5106.317459671172, -2487.9281620659476, 11081.826589668084, -22257.36090912095, -8598.938112903425, 618.1555856465612, -57974.597286795804, 6703.230213166429, 22814.061360214804, 63802.28311995763, -2227.8005080087373, -93802.60073705275, -7617.674553436456, -98882.34643017198, -103994.28044514582], [3733.211043030302, -8205.507134996904, 2086.167298263273, 1389.7770183306197, -18751.556947171142, 2499.56448238271, -46698.737413263036, -11048.078902623976, 52489.59004579256, 6493.841361666709, 2707.8522658429893, -93772.89520466726, -150991.21528471634, -20170.984607219172, -5893.332675052134, -13920.54306938112, 6217.808541707769, 6425.429834661033, 172513.3004382707, -15572.33631572014, -3602.7614634948486, 14830.89495088349, 36172.80843775001, 6980.8621620824, -3909.830338522184, -77296.43538986582, 72022.66710171697, -17046.302265690723, 8168.305811200313, 7940.252100128051, -3435.9620502426524, -146675.5356039118, 61179.170834896795, -48105.715147892195, -4804.345591023689, -5048.697384263464, 4235.4040882116815, 5969.5636095332175, 4047.330702945913, 10302.628061406453, -1253.4644331789116, -2817.845640901525, -16645.240533695658, 16284.164310215161, -6219.563480816758, 2386.0578646178024, -1825.4307835657478, 10525.453496769655, -3036.7634545857613, 18471.096877228534, 11557.016126548624, 632648.161585676, -5764.752206713267, 45662.423601599214, -108156.08846548745, 7014.241714689175, 40555.59192995507, 3423.5077132077204, -6438.258456592779, -21789.136485165276, -27287.830256688274, 40270.220204334604, -624.414186606581, 290.0951503819972, -186763.22223091224, 1471.8451679065586, -65471.433937342044, 1244.6201693880867, 9805.887593805162, -56432.43406209701, -7171.381183483235, 34084.4035617581, -3646.7857852022735, 35444.79177040603, -133708.09081423187, -6071.135142566396, 27896.9153837309, 4130.237429633105, -54115.85979248469, -21386.340478131286], [-4235.858932549877, 1068.0390826731193, -3033.5595587814205, -89217.57897988654, 8264.21261222961, -117161.09468708767, 179.5350063516463, -5106.022992453407, -2086.3552432041292, -2410.7734460761253, 2926.7315123805265, 2739.8289386150577, -115.92937694598928, 3324.36779375528, -170827.52256590585, 7220.940986548592, -30736.263386034236, 36206.13342141502, 2467.769153911796, 13857.435349331969, 15747.647797307494, 6427.399900296728, -5713.97217756953, -14759.799724206514, -211800.0740121274, 694.3248094086754, 2913.6649818025253, -10456.254860050076, -1204.5269437395712, -22141.26069352008, 75824.04897392164, -3196.794664427333, 750.5211627176951, -4289.998719308329, -220.7443210765317, 3383.2162300514638, -16777.267279366984, -34011.89092092878, 20885.765571183736, 55304.50314812003, 39773.060910389715, -5528.579771822937, 1174.5566960434335, -9146.325902750463, -36893.10365687103, -21461.09617936831, 28414.05015601077, 16924.170363810987, 6415.432514905411, 1323.2157484694667, -3904.2988956220547, -5764.75220269487, 782079.5498848176, 5156.234847892005, 1834.146301352595, -51995.78413113893, 4643.351818072854, -47745.94235299612, -126455.63536255859, 2904.903067602067, -2.1130731404903185, -9783.32451902303, 9603.643059526983, -101919.86827264033, -532.0999237692168, 4546.145562115008, -2296.232797986563, 22194.82331352554, 1237.283341746354, -1195.4870859910488, -12797.492805331072, 4629.5854343524325, -68072.24309579331, 2869.928427942962, 1874.097109732098, 12025.305474979023, 1724.4326751328526, 49538.15337617477, -4985.066421865732, -1057.6274289152145], [-278.0180386801725, -6398.277317378633, 2997.549954755251, -1452.3731236263104, 32950.474106629204, -1267.3151883157382, 15188.753219982244, -19777.375622665, -89880.78892753305, 37860.323245166364, 15714.381148025746, -89969.14759921086, 30354.436492860175, 30875.239086919028, 6736.798934820404, 20388.512171637114, -4074.8523589368724, -4308.947220301675, -54803.54371337433, 18211.87501275683, 8148.001158445094, -2853.254064567844, -70745.68030869341, -10704.149989229047, 3666.9204962993294, 12987.751190385081, -139341.75128967606, 6276.818891531448, -18131.52011322393, -17091.29720682798, 6278.432835646556, -623.7947251911152, 6514.994337310344, 20137.45885217214, -17454.855402470064, 4828.803915013546, -5950.4609912383185, -3521.9460997409824, 1216.7807310141654, -4316.006544472529, -1839.9344773063976, 3267.673093557896, 29006.716416816485, -25320.86024195635, -467.647783818265, -1238.2289696065122, 5923.931712729026, -6444.3035702768775, -872.5388747743789, -1800.9530374076755, -64584.747921833965, 45662.42382339395, 5156.23481944964, 856702.9144553166, -84074.09969141296, -8266.428803764342, -16411.451400878585, -1956.2103753583187, 3574.6986179946684, -104848.40850150381, 12702.767261635372, -32032.95179997211, -99.9282003515235, -8251.436627017605, -49580.152137737125, -2038.3461164902506, 12377.549187666395, 8775.584733225525, -76251.89200989042, 17631.7692251518, 1407.5299141746573, -126021.31397037607, 2651.636453752177, -18685.204007933164, -69415.51885297569, 4021.560544128084, -45499.01282619004, -4041.5133723551926, 19843.719646058278, 2942.280042753733], [2826.0782362468444, 11564.509774535587, 2832.413643657058, -117.57710591053203, 4939.984787478277, -501.5976491390968, -4935.21099463863, 15059.34723483311, -30021.38901966825, 36806.902853842876, -3907.3456419583135, -139718.87347515518, 3779.6983334279857, 11890.373848856778, -214.58285290572744, -43.83470081842175, -1965.1548010173453, 1089.3835956313674, -7100.645145632278, -1772.9330994254537, 183.83585043980543, -11551.193704565434, 14461.770786534766, 1666.8387409564966, 1147.2049017585202, 9910.559094499402, -44557.143257922544, 4952.457301105051, -9679.255825848693, 1119.2200715392669, -1362.0009667537813, -51010.228868826234, 4031.201665437221, 5704.321912774753, 7160.515206974426, -7114.674262426592, 1084.4828954812879, -2650.9091719837447, -625.0472211868887, -8584.26085585928, 1116.6993128014847, 599.9416302317811, -2286.911769186983, 9413.289360548508, -3.0483773831081824, -61.655775612262474, -134.72404609437206, -4628.595740855669, -7384.9203988604495, 5877.528623746907, 9262.588973285881, -108156.08829940995, 1834.14632954696, -84074.09956201281, 864082.787192473, 1197.2968216717743, -4659.824420863904, -2796.1147238809813, 7477.691238007327, -102487.58462229573, 2597.6008679308657, 27122.616420850103, -129.9815011765762, 2882.1052033464625, -143805.84377472763, -40.40686896601698, -618.3996780212773, -994.7617417180386, -65132.74456661847, 14662.688063020827, -524.9091838835286, -86405.78522460585, -1341.6334167730747, -8126.391157866705, -151031.39683883995, 1689.642998919965, -718.9578291179948, 1268.8148140712194, 8627.707470600577, 1073.185147365682], [18991.580083464505, -1656.997094061439, 16264.238766166343, -4442.494044060243, -3477.581450667291, -4190.083104785546, -1779.0123349072658, 5927.965456058421, -4346.818211691446, -2483.539523652308, -1681.1376899269105, -763.4828002020237, -2174.9595174425954, 18537.584621898164, -5136.123061029098, 10994.082151420525, 23425.446066671575, 7415.720811064499, 4771.636971665547, -2994.52044506798, 37398.116140292506, -9150.112800850002, 441.96905589214003, 8602.523633344084, -43445.79843902168, -1781.3965996350341, -9945.163608857947, 16301.444638879218, -16938.327554583106, -9077.097488340867, 26384.016609196842, 3028.17543032368, 4257.7688036341015, 2555.3044347373057, 380.770843211873, -3385.722636068784, 2431.013562704486, 24723.19283182775, -33548.352391353226, -236231.81335703918, -1550.5166582251318, -14741.700459767166, 2001.729935771886, 9964.119798461446, -15102.812230370426, 7389.974688356202, 14941.30021604333, -164321.6822667435, -15939.527209663274, 3188.7654368712247, -3623.9027053329437, 7014.241711564611, -51995.78426121168, -8266.428817619037, 1197.2968718262332, 775412.7121431198, -10770.082093543688, 31584.640867694707, -221275.8598229841, -809.5645018989359, 20415.619521814406, 8331.112479032214, -22445.817033367985, -110716.86624198515, 4481.7421674006855, -39956.54152822722, -357.5663735407315, -18114.719173934656, 601.9659728595001, -1959.2672795451222, -4669.387643263502, -4016.2650465625898, 31023.6971771225, -14736.144433184973, 533.8325908781298, -19308.838041301955, -2347.831263664871, -9828.108379328753, 3302.777186593186, 1258.1822114479255], [12306.538959780626, -22620.803406774503, 18830.373868300743, 6960.802796218317, -2480.974884759604, 4774.7645707007605, 6513.0802292936, 32554.291692922332, -15829.43267127591, -20230.193594436798, -210532.03438259062, -6837.945464876997, 11475.5964595284, 15713.541274033514, 4220.513022265004, 3281.0178718124425, -6962.062508033237, -20674.409315534853, 308.33034484281296, 52893.106241323825, -10239.317618482211, -107437.3741123649, 25192.7411257311, 14531.184241178325, 6254.4624660169675, 9501.285271328905, -6077.187353537086, -14884.092729181555, 8775.804010225911, -10727.799944698263, 22318.868890665155, 5705.401033872675, -12705.302278323965, -13409.959523202211, 42924.19573667101, -66228.35963611539, 3761.8773340647094, 2964.5449127321303, -11056.716863773361, 23520.66768842644, -13420.2215149765, 9981.298774482728, -177365.3159885343, -198799.16790143648, 5447.56973388389, 3907.744653653151, -13801.182687690478, 2439.349566008181, 4224.474838083636, 27406.51678116784, 40534.95353634647, 40555.59191894366, 4643.351718802674, -16411.451301222914, -4659.824402989891, -10770.082174413534, 744041.2787647746, 6052.066265233096, -15149.781978141542, -17150.560613546106, 7165.291722133978, 1.108358447305229, -15739.222710260134, -13036.457051407788, 7548.067450223787, -17038.516896251076, -3262.865470821395, 18581.368511725745, -24304.015724023306, 3089.8215261923224, 3136.1863802873377, -21188.685605367922, -1469.4448196045462, -161360.31751473763, -1923.260085059773, 2624.7700570109755, 30612.66786352949, -4620.406883489932, 7814.61973188557, -14677.570292595587], [16311.957577632938, 744.9596293555229, 14581.861818047833, 17197.80957597882, -6574.976714749325, -8197.340948985679, 751.6275388349018, 3647.7880786172027, 2797.4920852864147, 2548.0421691030856, 2714.3398359480275, -4485.298556161092, 1049.9457826355556, -6220.532610659612, -141795.6282267954, -10317.087373550947, -109332.54134102874, 46360.5267385276, -4746.325788850474, -18001.311189365548, -32546.220816457106, -6487.094637901826, 7842.667815821745, 22846.694387817144, -45575.80800030002, -761.6417516569525, 1294.549235586305, -4198.872607133043, 3497.9127989379135, 11150.301073274999, 5819.907581928906, 2738.657453753974, -404.8074214498767, -596.7516223698022, -1918.6415433167292, -5071.703669900443, 10474.920184862054, -164006.0150349148, -5194.818980125282, -15092.312256438478, -13329.487558129511, -17215.9243329979, 1111.8330550312498, 11591.882743264117, 4070.719917887077, 32149.816419947194, -18916.65588240302, -5619.591263283302, -4029.854686263244, -3101.5949747008326, 5048.613936245323, 3423.507693827462, -47745.942615427644, -1956.210391877477, -2796.114743448174, 31584.64101476889, 6052.066229456782, 752698.6471087374, 57980.837346977125, -1035.5292110778603, -15286.50326995497, 10080.292324261918, -7961.49653259674, 35457.03266872858, -1680.7601400941946, -2360.756942365506, 2189.706035202217, -6013.85825759158, 1280.0342607472362, 772.5868100745248, -8996.487189533384, -1057.8909857501321, -226497.0993073853, -1030.1586162781073, -5341.310542082395, 34760.60177878477, -1130.5119393517332, -177587.20515930012, -604.4658985901324, -1893.3754113098862], [-20730.781283599874, 5768.066098993748, -12461.47721140429, 38713.158678332096, 38545.309283515795, 54252.11571109692, 2487.7649067411703, 5707.05127969306, -17194.870138026872, -1439.9725888436215, 3391.4167647165636, 6038.02324685495, -5625.654386391621, 7857.810655001436, -140481.83129910598, 5935.296874252018, 102926.251295222, -13634.902613288425, 4694.489896519299, 69488.41026391242, -11398.606412723091, -6998.98419225563, -8184.562868993845, -38682.855724397494, -71437.87699637363, -4536.059584897044, -3010.712678078458, 18633.7800469009, -26226.375329668313, -3536.8296962159184, -60877.48078191194, -2925.754526177257, -4360.6306266731945, 11090.081588803481, -4294.03806640501, 6314.73860369489, -50824.298968692965, 127383.75175683363, 42197.46687589667, -192023.3718937903, -23817.921161626873, -5349.174203552956, 6731.14203755991, -16337.858166477768, 13845.99578223938, 11823.753626325248, 20328.55639193068, -18482.9350608491, 12654.09513893439, -7597.554955364162, 2261.22474960593, -6438.2584363787555, -126455.63518789504, 3574.6986219306305, 7477.691250286925, -221275.8597929188, -15149.782090776633, 57980.83740750393, 482237.25687449996, 8205.011341686384, 56769.92990445404, -24268.867754501698, 27852.72952067582, -38086.18648969848, 5798.190709747231, 29901.602393838355, -3979.0681320375884, 52359.32846873963, 6056.4215409703875, -5334.83490969495, 13992.007793584124, 8124.374162697531, -119306.40513137548, -33733.29979414704, 4682.438593334237, -72570.2171099171, -3126.9585369381493, 37660.92284678134, 8700.937115759205, 11819.073066439903], [3909.9988480738616, 14206.837294918025, 5666.94575409073, -448.9829610736694, 4119.353041616134, -1300.7088452027317, 40297.229329175054, -7072.915243968087, 24197.781613982024, 1305.431969532873, 10702.447054526689, -71295.13136075117, 29399.449405699284, 11418.609048511342, 991.1890038283715, -1216.5736209283957, -2941.6688351745147, -6296.550681838379, -40517.00813225501, 5812.282963499795, 1447.1588105453288, -13161.856273226833, -10530.722915644355, 3851.4848334892063, 2212.3052666377052, 12480.414192072882, -73077.40214093101, 8923.63080972725, -4409.901025695681, -8608.304264707065, 5502.967755071296, -73932.08115342323, -30120.483566021747, 23475.676677735777, -1831.4723999273297, -8689.329826824907, 14989.057217948717, -809.9576316716561, -5900.657251889865, -5106.096894449514, -693.5386705240587, 3109.9407784343734, 25192.34574735263, -14844.762132398531, 4156.563051677312, -1259.7267752584778, -1438.2853237893119, -8615.428982117975, -7958.833812194607, -2731.4078639148306, -31266.630464649825, -21789.136395103807, 2904.9030892806563, -104848.4083574893, -102487.58478005607, -809.5645049543625, -17150.560690350772, -1035.5292128289489, 8205.011350249117, 856869.9697718173, 5516.135221192467, 62030.91261923974, -2447.105801278008, 129.83961665318947, -86627.12121304013, -3889.7378948428786, -43673.82320134964, -2365.2815348171207, -141230.9082565928, -19313.374057985882, 4331.192833683769, -149831.2410564223, -1673.6857251982706, -13221.89821087778, -37888.49088142277, 2544.899389555357, -35807.16906081173, -1479.9562391350764, 28838.777778723434, -5053.876346933069], [16479.3583717797, 11409.2458741721, 583.2577132868987, -14925.460688781048, -24170.445970093308, -15195.689386508237, -4621.226997357292, -18790.694154187837, 13121.418729800069, 11889.423145309756, 25676.41649814685, 9099.559538679978, -4279.232854449794, -8614.270156726721, -2639.7881267801426, 11687.858011342822, -1708.5392918629045, 27616.1270804182, 1068.6640116338986, -215450.11393308593, -16660.206354041962, 41772.76858437319, -18671.073008646996, 25408.17263342447, -6595.040494928592, -1805.8977718399901, 6666.363616367003, -273379.0943113845, 39107.9422357467, -13945.543717418937, -23237.503213982145, -8968.766706381424, 11493.763609736161, -3271.72372821455, -16858.647194867037, 29618.596643102046, -37376.284491059145, -14428.108925381986, 19757.012489017237, -90786.60502191015, 21978.920502103, -9295.549322050847, 23619.888727577036, -237650.93380866075, -4279.165874301748, -7420.135457175304, 22909.407301376836, -31084.534933985975, 12053.079612616792, -6402.305209832884, -21931.594926753998, -27287.830262710268, -2.1128580087964384, 12702.767183659855, 2597.6007802044965, 20415.619620155205, 7165.29172776253, -15286.503340276697, 56769.929860770666, 5516.135153827267, 643296.0497699059, -11883.630931000085, 28004.569055878375, 32078.67140436845, -5889.221946710562, 30872.497161781943, -506.32367842515055, -41741.0092495415, 6558.566489326888, -768.9898882336427, -2378.4387783185575, 8965.617515020573, 3377.1710857659123, 14056.471586326976, 9323.915603585752, 4949.946046599971, -10957.069270686436, 5026.468740884565, -11055.980186810208, 7523.711650146663], [-9522.101375840535, -1454.368934717239, -14139.719277758828, 4881.144026857475, -98359.5328215355, 4592.039971999338, 11820.144761344509, -63576.496333490446, -311104.3392843974, -71468.34235874921, -25806.82794655708, -31690.603692385375, -12096.184307056503, -119046.28460828486, -10085.389693713983, -36138.46812253675, 8781.692467563338, -5716.31518731673, 32068.272027732488, -13896.578090762197, -9197.174839000154, 58187.40707021687, -174333.64640732406, 16011.42116672044, -5253.8839129038915, -15816.464236941223, -94096.18138363652, -10469.622177128042, 66890.12202033163, 27323.483460911724, -3363.8286980956163, 25729.289629926297, -15071.486544372176, 13605.722693970263, 20327.822595758465, 44898.705335614206, 24676.50010177939, 12395.526627120096, -11735.320454084436, 32108.47693388759, -1559.1428981185622, -3505.79939214704, -32739.196528895176, -21221.261859744725, 8951.717165521277, 1234.0921663713455, -14981.500283655283, 15825.175573082439, 17237.038526807468, 5172.712867394662, -21245.64398889889, 40270.220205680125, -9783.324491342215, -32032.951851791495, 27122.616593622304, 8331.1125080969, 1.1084402422749131, 10080.292308807646, -24268.867717176818, 62030.91241121054, -11883.630824009404, 595578.0292573592, -4019.6596437752933, 7590.043733571402, 38998.21710103924, -2955.419719560495, -18774.305333587028, -19953.313845264023, 62321.0245162663, -32420.930315200025, 6738.023563161857, 60749.40460178062, -3202.8088258455678, 49990.62369786345, -65969.42381154769, -8401.204826230363, 34358.935632071734, 2071.314205108994, 10053.948550624187, 23353.88421520279], [-27793.24753388467, 344.3501268463102, -28396.6352979122, -1365.5776107256095, -6729.987630838568, 8425.288188512877, 762.0734785399248, 3258.77105817892, 2081.214795584129, 5924.531745661831, -3534.693997177542, 1579.301317012699, -718.7535420170486, -15455.78771631943, 7608.163167810002, -12098.625595786758, 4015.9234907254568, 31524.08085485314, -3899.719150396743, 5880.451902956679, -61617.35004078373, -5008.98176057087, 1650.748250742899, 7990.121911692377, 7738.760775305361, -403.90862397669906, 1165.6938324518662, 21489.514939776684, 23796.748033654487, 32387.570512337796, -1318.2088258495248, 417.11528843651615, -7366.379694741883, 12428.36663931646, 494.6399533616031, 661.3042664667054, 17360.79872218208, -1824.6279519624538, -131849.8313274906, 25344.059543006522, -10841.216882897284, 3138.2798025222423, 1481.7443414912477, -9083.387563064865, -116446.6017837268, 9152.392932929282, -146455.6828175641, -60034.82539626427, 12229.748747457259, -5658.088579671716, 6768.225288950718, -624.4141779979827, 9603.642877652828, -99.92830994559932, -129.981463196838, -22445.817130674877, -15739.22276455836, -7961.496168795498, 27852.729547548202, -2447.1057955569204, 28004.569079593177, -4019.65956661082, 842367.444601568, -96903.59366702627, -8.321520985614761, -152460.24100806104, 2653.1493472742764, -69039.38018969692, -3187.680942810205, 2910.4282991295754, -135290.3298731662, -3332.0906293592675, -12003.332741145245, -9776.85427995722, 2909.545033670487, -3251.839544539494, -2392.6204182244337, 7103.591215995942, 12824.237372766156, 5676.418082406988], [15668.613282956201, 2254.0137507457807, 11894.210514437955, -89895.37304539191, -16454.01549649957, -86337.4377504445, -4579.475149224596, 4504.612973221275, -1922.1168731122384, 1329.9510381493335, 1569.0958037886192, 2887.1512601721697, -4706.8838231570335, 26872.954361497923, 4635.837397084817, 22875.308225138415, 29661.769012989367, 58768.87909656176, 7684.492144783877, 31650.81642481109, 76570.83761166771, 2915.201297415999, -5834.013063380458, 5767.622362891019, -114584.94170175033, -3211.1210620147817, -13185.861311843484, 12311.202067207352, -23478.811998705674, 19521.573517081386, 76121.2857716771, 233.45057051619182, 14120.84599684367, 808.9991574227935, -6412.535520937235, 7721.375371175063, -7752.403063719796, 17868.28309023416, -67367.9431972368, 29407.13257575367, 38218.92590706679, -34541.230142863365, 5466.12431912559, -21006.92069192097, -136721.5418697022, -24181.300954657636, -24302.941978000326, -85469.52319622222, -25080.079726903714, 3748.466685224229, -13549.21374917118, 290.09515399489254, -101919.86806867285, -8251.436661825319, 2882.1051976292233, -110716.86657088033, -13036.45713069066, 35457.03248874594, -38086.18624639671, 129.83964226436328, 32078.671567923964, 7590.043667819856, -96903.59366794782, 780518.2903201474, 4802.189714927193, -111574.17460823266, -1576.2676200656258, -10050.151860353197, 2634.039201710366, -4048.6710856787836, -111784.46983577199, -3568.784645606616, 81713.60770542733, -14049.48448664321, 5511.5930195594365, -18144.20853235, -8007.754209607184, -29983.903443155472, -1291.393247440222, 6895.709063126283], [3658.776497125283, 16175.942335935844, 2677.0681158730576, 231.25630518559882, -4741.513815050429, 10.055243490389547, -20400.87546423616, 15913.13234601419, -6479.461199393369, 35241.374583464974, -6124.792080668755, -145868.830866598, -24749.120613731226, 970.8135766470068, -2809.0041286302226, -7769.596847135529, 180.29451472835737, 3438.603532285303, 34537.75352655465, -9168.502247629749, -2620.6512348193423, -8790.3151082441, 34657.04194798154, 5327.453351752456, -598.5832568768, -1384.8062868489396, -4995.20711945246, 192.92913027705478, -4078.7950875687998, 5901.002328800601, -3281.6583395158614, -74547.07345549407, 14659.231179146314, -8905.343744204158, 8809.14124677461, -10187.86392577323, 3317.923066900346, -715.1280656181464, 135.56392161266027, -6082.871078841212, 1456.0941055863525, -748.911213339057, -11246.231968950307, 19025.72975347381, -1152.6022923927212, 573.3332901679876, -1600.6138669392028, -1231.957045477693, -7327.708297781584, 8942.09126782316, 23771.992018577916, -186763.22225064054, -532.0999178480204, -49580.15207713881, -143805.84373121604, 4481.742169021789, 7548.06751186826, -1680.760127441492, 5798.1907162436455, -86627.12112470026, -5889.221905734193, 38998.21723987964, -8.321515302128008, 4802.189703819103, 826558.922443298, 928.8173673602121, -9645.712247313924, -2601.2349683531197, -46366.745347028394, 6649.829491669506, -2203.471631750956, -55380.00849589451, -2469.4372879101775, 2842.536256813757, -170811.32435676293, -380.9972327926967, 13173.533495379588, 2858.984032410121, -7099.597169473171, -4971.313160228018], [-29970.90448258426, -1076.6965952549665, -34832.65560965718, -6079.017059330356, -13455.982862778215, -127.65188366079944, 96.39435139933688, 4338.872930322058, 1970.962178576361, 4943.384672908698, -7305.527576086726, 2063.885895822687, -467.0315017910371, -9928.019734409423, 12861.166205119072, -6159.776721388432, -409.9953791612265, 21694.65448538797, -2392.167644018088, -6219.8304196045665, -24342.891847809573, -2991.0095099945274, 1250.4505656034783, 5658.57738949741, 729.0642174053995, 172.62977306344888, -1006.7779247249396, 22897.04672168691, 21222.09592860216, 42100.27534434719, 28558.73613683917, 350.1140645119924, -4763.116511840053, 10725.813514589423, 1661.213601001976, 1651.6858357324124, 14565.21158892985, -1321.8119720982495, -141062.16501298166, 18810.98946569537, -12381.314374809503, 5718.3419855665825, -2184.9139026926355, -1392.7327432210686, -101925.90390395866, 9208.249270855464, -131526.7045502157, -84592.19434285523, 7315.563689007903, -2555.777546904919, 5106.317350185419, 1471.8451105108788, 4546.145571413486, -2038.3460883050047, -40.40691393273855, -39956.541262557774, -17038.51709670156, -2360.7568254416674, 29901.602245224643, -3889.7378841504906, 30872.497176453435, -2955.41969981391, -152460.24128168816, -111574.17440649029, 928.8174128889972, 845415.4398597119, 2062.0922732023046, -85575.82173113288, -4884.979749920592, 2648.3424010215394, -114720.9911212845, -5513.412127597239, -1122.1676276234004, -6955.1410852017725, 4335.733591807928, -1179.7233856479104, -2058.3506854094485, -692.2279345103854, 11534.96862870323, 6093.509200570408], [-5005.742688670632, 80531.85824000057, -5330.397537748855, -1856.4603539547234, -3967.580060524883, -1207.8864460425182, 29468.770099527705, -10785.62157810585, 16055.398812305235, -212520.77686242486, -8442.502241351587, 33582.63057106967, -37578.40280478655, -7963.246854016888, 275.5052667250525, 1915.210482995112, 2985.324397933449, 215.96277467436948, -35183.47417854408, -3054.829630843992, 2401.313375667317, 7082.278066931183, -11564.376877106644, -3861.395827097991, -2093.746485758197, -81044.37096738168, 10362.508097815353, -401.79362156131555, 10629.601317466113, -4043.1227113509444, -317.45059953800694, -169021.6981401057, -27814.675997051898, 1055.912128262755, 24063.746202322032, 1841.12760180353, 2824.369829748433, 2570.158143313817, 710.1155941633422, 4913.399929992151, 1337.20212433417, -1837.8089415294974, -7528.66195188921, 257.23540208059495, 828.1601331978284, -1527.3134975618425, 2708.5746104816176, 2201.0573712965816, 7557.198117632935, 23182.075177704737, -2487.928404697859, -65471.43413104389, -2296.2328016285937, 12377.548530396545, -618.4000666047303, -357.56638512840533, -3262.8656042222183, 2189.7060235339973, -3979.068143955925, -43673.82321494602, -506.32360047801563, -18774.305248148616, 2653.1493313284823, -1576.2675970196065, -9645.711987299272, 2062.092246811586, 780043.2903001963, -2883.679947701542, -100645.66761189714, -222085.6026768809, 2321.2728419471255, -32488.536118062035, 2120.2205014790984, 9562.783782779858, 54390.714349925336, -1723.8465455204769, 16622.56915773858, -1846.86289220627, 5067.762416883001, -2728.9118122617283], [-113333.95906996702, -4767.984941321691, -138535.04761584575, 13571.857394929935, 1117.4227254374214, 5220.8460663191645, 4524.024786617809, -1704.7449345287976, -2304.252882708765, -4992.228513236293, -15248.58620658198, 1297.6181649118669, 6180.139282272254, -14006.148170639171, 4006.3785963450478, -1594.2866808320007, -23386.012720351584, -46930.8785518222, -3712.6574794591365, -157503.02402096367, 25987.02043202055, 11448.83510450649, 2681.2870856157674, -62477.14642382089, 20696.57037584825, 5723.75061983259, 12352.765549695387, -36528.84267744934, 25358.913954178894, 45458.24004824955, 43173.32602044901, -4318.984091044534, -6203.132197150633, -11136.393052390837, 9327.129205823767, 276.4159029881392, -49565.572608201604, -5783.082140333291, -145213.86948857084, -21946.472326664894, -17068.545272485913, 24576.603492063885, -22901.852850840347, 63692.221361867654, 33255.6626245699, 3871.2172394744084, -78917.15485596053, -113574.4213339809, 27745.386505580256, 5327.548087595148, 11081.826629478599, 1244.6201581138064, 22194.823012836914, 8775.58467716673, -994.7617861818056, -18114.71879153126, 18581.3682078918, -6013.857887964641, 52359.32832846071, -2365.281470896007, -41741.00902994561, -19953.313816283226, -69039.3801934561, -10050.151577980943, -2601.2349180520887, -85575.82188409298, -2883.680027760445, 803600.6878801576, -7976.712290634304, 1784.3194870561942, 27559.638152126314, 1208.9544129314156, -16490.050101971196, 31021.06751257073, 549.3793201137862, 15014.850544135828, 11000.712430358028, -3177.931248850599, -8525.632089426299, -3661.8190352165425], [2863.622447087395, 15693.761907845144, 4242.216363379638, -491.9701633434992, -8854.505086906553, -2049.4215622362763, 58374.3196668216, -8039.188158045537, 55161.77772561328, -88718.82244852769, 13103.107607754802, -17464.05018433452, 36468.419459578945, -4644.823573923171, -442.0001487719402, -10801.901587404993, -2330.965272277934, -10111.228760541113, -23292.64407034952, 4287.817766556176, -3314.0218761245374, -16533.156221728095, -3843.839165583208, 9164.644362936993, 1008.6350906980515, 13049.040790928502, -48229.42141772407, 10467.593984677698, 10602.785593834626, -7321.957445925755, 7678.658727245001, -102209.45207697777, -104546.58636019992, 35681.715571776855, -3147.602444084546, -10962.549779556626, 23927.35544690411, 1451.0892208755204, -10140.379166392055, -1381.9109148708453, -419.7669455367864, 3121.487713497972, 32761.80305026099, -20031.03225066037, 8726.83464578999, -1961.703580621675, -5171.522006278612, -8414.170569991122, -2601.264182458908, -28627.246347191387, -22257.361007107153, 9805.887234823582, 1237.2833544504244, -76251.89227776432, -65132.74435176611, 601.9660258530107, -24304.015659978973, 1280.0342339270958, 6056.421534172333, -141230.90833687654, 6558.566375022788, 62321.024439427616, -3187.6809546693607, 2634.039183844597, -46366.74531153153, -4884.979726685406, -100645.66812334929, -7976.712362312841, 818222.2663749693, -66847.87362226234, 8645.249648321085, -153155.90301061686, -1403.005186914408, -15956.165364547414, 28738.803700025834, 1879.2004522000368, -46606.472948202536, -2554.149411017629, 43790.13261435209, -4691.023588247267], [-4837.99218119492, 81099.1348639903, -5339.30570435706, -1031.21766851376, 1114.723973164381, 301.1759397370007, 17469.78115113344, -9370.050682579544, -1884.0331626446177, -199231.12715550174, -9999.017546650155, 39961.0528016299, -57634.16335668462, 3355.4941717249385, 1294.652540456837, 12433.297559328357, 2820.1811371776566, 3344.9263471904364, -108605.05919144073, -1212.5446567803722, 6333.266938419667, 13532.634525224083, -18044.52703919948, -8089.624517934902, -1014.6282523533914, -116344.58608870168, 6737.447112598147, -3548.066246402338, 1574.4768451892564, -3030.3240828733396, -2791.122114427379, -160111.65769496714, 15162.041072478156, -10317.429399467062, 18221.202171980112, 7656.810094061043, -7426.816303275125, 1083.4083115999642, 4174.811831931446, 5010.202099258985, 526.559417985848, -2007.9097751018035, -14033.462910797816, 2599.529481852022, -3070.3423367227283, -477.76616510622097, 5263.596325188418, 3819.6888811986873, 4925.204245743281, 33790.711247173436, -8598.937846699822, -56432.433901972545, -1195.4870946896867, 17631.769530371945, 14662.687981304092, -1959.2672709062927, 3089.821516520632, 772.5868131369294, -5334.834907774536, -19313.37413027178, -768.9898837203144, -32420.93033959858, 2910.428293467797, -4048.6710952315907, 6649.8293724885725, 2648.342411068394, -222085.6026063412, 1784.3194563244779, -66847.87359802796, 756782.0202539982, -1568.7218867636886, -8550.306549927862, 1917.2148599336392, 12092.170563184938, 56168.81702562828, -1599.240508447884, 20061.08666110921, -728.6276946765582, -9975.127302700452, 29.560156339139958], [28410.57140613972, 8800.281275008005, 34150.816116999216, -52340.30392867556, -1714.7422725283725, -19352.138278204573, 9.222528940203713, 3124.272275563875, 2292.317460216955, 8665.592727844434, 16414.77414086217, -2318.59317250318, -3131.373472197592, -7828.0234940332575, 9535.806316315482, -12461.454155727399, 42258.79740870603, 71198.29834697624, -5213.203702255398, 41780.70021890032, -79784.39759810927, -5657.748330580041, 3875.3645887285547, 34509.02084111046, -18318.14924268553, -4784.654993706406, 1517.614258427443, -5163.230957628585, -1865.4376101364837, 26263.25178686321, -142962.2180820839, 981.0550943170609, 2454.7217833401924, 4264.8351480286565, -12473.452745849821, 1574.508686970415, 5413.938580217539, 6375.724934220764, -50233.0263924761, 31911.94198132284, 35955.13266554494, -31273.999811164238, 16060.15768577242, -32804.22661665554, -205131.45543190837, -41550.91674933371, -112102.7214539198, 4256.707695773947, -4006.3648963402884, -11672.130789614741, 618.1556254875992, -7171.381181078882, -12797.492431785535, 1407.5299605128564, -524.9091601790345, -4669.387729048374, 3136.1864684176644, -8996.487399108886, 13992.00776889902, 4331.192842710981, -2378.438754636787, 6738.023604446799, -135290.32976424127, -111784.47029680872, -2203.471654766043, -114720.99130306584, 2321.2728432670815, 27559.63829883996, 8645.249580671667, -1568.721888329478, 781761.0424115931, 4932.138437195756, 12878.349632120622, -17507.461519105058, -4453.019549753096, -13414.658229529256, -8925.292202029146, -4309.773339336886, 379.62651006091494, 4064.5011627932386], [4773.583714614207, 583.2292804742478, 7744.993640073427, -493.07965623029475, 12499.103188354424, -1352.3481985166798, 45097.0727161705, -16798.454972876403, 18928.3087009509, 5900.747362276147, 22303.628209553975, -53115.790345369634, 41649.46675334449, 20918.63868302197, 3288.641354334015, 5471.554468647023, -4394.81200562853, -8935.841558439986, -57291.556307031766, 13379.761787093887, 3553.602117047026, -13977.238758349138, -31925.770655902754, 1707.9772552371958, 3632.0474048068168, 19687.66416136049, -102911.50350426965, 9519.885706600211, -8419.53571907868, -15321.721012667826, 8900.171534819836, -52675.354463222044, -45060.280792997946, 28718.828050594206, -20039.290469425436, -7332.555968435018, 13719.22372718853, -1410.6054851277256, -6108.916625919991, -4292.155106276524, -2224.4082500086615, 4728.747635778826, 42172.4287773888, -27990.411508999205, 4226.7416525727795, -1408.9157042340573, -98.5154896959961, -10387.457431309414, -7964.791067116208, -18875.604420225707, -57974.597037075924, 34084.403650221655, 4629.585417982834, -126021.31430130283, -86405.78493595768, -4016.2650346802534, -21188.685621136756, -1057.8909858113157, 8124.374185720229, -149831.2408754451, 8965.617516557564, 60749.404536429625, -3332.090640334769, -3568.784651614879, -55380.00854409601, -5513.412156229022, -32488.536025949703, 1208.954551289349, -153155.90325413493, -8550.306665170849, 4932.138411407627, 828504.1122178433, -1011.4737162474632, -20611.28538030612, -6976.83202062212, 3765.2452351998418, -63643.60198149427, -3068.0422674386027, 32566.274920476386, -5995.827720920616], [-10443.589006646489, 3141.075567386133, -13355.089110551482, 70390.0537542988, -13844.270911892609, 57749.93179449713, 1214.3843423656158, 3649.6100738888326, 4177.476219958761, 8219.664970958054, 0.2941711690303913, 459.73247927536323, 350.002274704629, -16423.175985678557, -244289.5936004404, -11621.637978826346, -55625.0483224142, -32651.204517802547, -6873.203272601741, -1456.2360851888252, -37259.39478986331, 964.964581864618, 4265.887343833427, 12208.55819139688, -27600.001802769548, -438.2715897158832, 5041.48249682095, -691.1369027602459, 18862.78298015584, 43773.738384953554, -47479.57301892453, -1076.820415516941, -2355.8118387743107, 4633.7893035666175, -3934.972720899125, 3423.972916301928, 704.0185543550606, -57482.81516390812, -15629.315411793594, 21960.68460101638, -39527.82820288694, 86629.05929777815, -69.6269912676051, -4109.017772752719, 39932.871875556535, 34710.0009628217, -45990.0624336268, 42382.02861964619, 8077.1950195431145, -6602.284579981515, 6703.230221234354, -3646.7857827118405, -68072.24335015242, 2651.6364366905327, -1341.6334021510402, 31023.697059953185, -1469.4447707939541, -226497.09954043134, -119306.4050123728, -1673.685714492378, 3377.1710677824676, -3202.8088222747374, -12003.332374998543, 81713.60770322339, -2469.4372716068888, -1122.1678340817505, 2120.2205079549244, -16490.050054289317, -1403.0052104313659, 1917.2148591361356, 12878.349656725955, -1011.4737220670804, 605030.9232370529, -1953.6384624742034, 800.7566278922824, 58588.25658226692, -3446.1654165626824, -130517.78854305772, 3436.3438545484337, 5296.4348701314], [3439.29806290092, -22691.435557089695, -1137.6215190531473, 16373.130637383887, 61003.297827207876, 17206.77544036332, 2126.0881396547243, 3209.5753341183295, 5468.418234344622, -14543.318459120188, -35974.6732865662, -15817.74688739677, 7122.883437300544, -22314.93675454336, 1376.8233762743414, -80188.21240100234, -2700.504824482106, 4932.629234221301, -3444.4102941717665, 41264.38776480535, 3520.8918683747634, -190803.1556919657, 30587.77295027107, -11600.455644121002, 6688.012877466387, 7626.6438075679125, -5952.983551278084, -52869.58043283447, -79162.89505453408, 45760.51283426712, -12702.366010896505, 18875.821269112803, -30954.60451650642, 25934.407827585943, 36543.819710710275, -122128.66679531887, -139097.03064479903, -3931.6246141148695, 9423.040273478635, 35615.58224067054, -12378.253213966795, 1983.6422338336577, 5277.786285464515, -133269.6814342092, -11945.723848717491, 12403.46025311968, -3805.4401724436216, 20362.462454013985, -12353.96938806434, 12266.675528289175, 22814.06139480062, 35444.79185694834, 2869.9284530639757, -18685.203902953406, -8126.391393678318, -14736.144418717913, -161360.31748737852, -1030.158574897468, -33733.299869277966, -13221.89825717373, 14056.471575705084, 49990.62367079298, -9776.854017564403, -14049.484488697777, 2842.536272664891, -6955.141046145143, 9562.783619770453, 31021.067348192144, -15956.165178170982, 12092.1705943946, -17507.46157954772, -20611.285181629824, -1953.6384756569512, 746525.7354188205, -17039.092531691, -1001.4375220782601, 14568.39748282917, 7169.5025666204965, 47059.5368686607, -54933.28888521379], [-324.26561111076614, -5581.950630218716, -2724.4116121663997, 591.4376068467634, 6561.301361189341, 494.59348733861003, -50220.47615703182, 52529.233086993394, -150272.1389726145, 40657.99332588104, -21263.135925973656, -214003.3655722971, -4882.692154358647, 20086.425239039134, 236.1902109863142, 11519.338405971866, -2402.80350749063, 8217.277756422816, 12332.42373123705, -5648.514574728933, -1094.1093364874896, -13026.484162155099, 32314.896681544447, -2896.013538661364, 961.0159421875558, 19387.86620360099, -30312.797001129024, 2759.169925754053, -14134.451201782787, 12114.80738095152, -9430.534393326416, 11339.766447467446, -3567.5974536888257, -2153.7372110547108, 9551.120437545731, -9.754579087202716, -23347.396548864002, -6472.540364260827, 4995.782127618038, -12336.686274252235, 3194.251014662663, -1895.3910485258957, -30316.341101580816, 34082.95712615868, -3215.46499420604, 1167.9851429749917, 1874.2646175947145, -973.2633913673382, -1809.4051630221636, -9730.743397941425, 63802.28288281515, -133708.09106804177, 1874.0971096151325, -69415.51892727369, -151031.39665033043, 533.8326038438279, -1923.2603776304984, -5341.310541020494, 4682.438612885179, -37888.49101436085, 9323.915501359832, -65969.42384622074, 2909.5450766867234, 5511.593035918546, -170811.324261573, 4335.733629699337, 54390.7141334689, 549.379330025062, 28738.803636069373, 56168.81713935889, -4453.019493085288, -6976.831806247518, 800.7566280912571, -17039.092525906126, 716688.0694403398, 2124.4935265187855, 27040.273612432666, 3324.224141267262, -2007.7678597551928, 20830.00385553179], [-5002.411860485942, 3010.1003787868135, -4728.5316714707615, 23686.57298627727, 3144.737834494978, 33449.07340041133, 213.12828357768655, -1384.4107198410422, -1700.8556981487206, 942.2039213509634, 2731.2500598534293, 2623.4799913884553, -894.2375934710099, 807.5928040707292, 38094.53541184377, 4104.865050855006, -23653.88342232283, 5231.952003398908, 708.6822414369285, 15967.8597777633, 2166.0974502594, 5840.868668770885, -3777.7456364421014, -8223.802465180956, 19757.890567788432, -520.5722119851073, 2102.321173290743, -6490.189996468614, -2407.6389222833227, 5853.920359930765, -6417.021245771042, -3007.9980638660013, 2288.6909451370793, -1880.9184397359084, -3296.5766216962525, 5593.314252565187, -17488.212566742633, -51602.049489215584, 8706.022999582887, 24378.831997520014, -267797.5357580036, -363576.24030606856, 1205.439591311036, -10478.28290575408, -12511.004556274876, 17707.02311887668, -256.1046548492819, 21855.35092944217, 3743.133246674912, -1360.7566651029003, -2227.8004777773713, -6071.135137573281, 12025.305226185015, 4021.560528441028, 1689.6429927128204, -19308.83780068523, 2624.770078871107, 34760.60166049451, -72570.21715901885, 2544.8994122002628, 4949.945992019907, -8401.204815898442, -3251.8397288104147, -18144.20864879512, -380.9972301666014, -1179.7233237303349, -1723.8465515812086, 15014.850404994264, 1879.2004645213551, -1599.240501855351, -13414.658230581641, 3765.2452163553385, 58588.25676294073, -1001.4375765614992, 2124.4935201201683, 580226.6995090237, -1153.6315613371326, -30439.779754911524, -3565.7641094415776, 2818.9736032838914], [6455.6299849439, -12987.277960857044, 6438.655106588482, 2811.7186980999127, 1747.8427032427567, 4353.40797532131, 10625.910560384851, -22649.814760082936, 17509.171096995324, 18508.72783940409, 17806.135105075122, 9507.856238424638, 57.24168614536765, 36232.25366779892, 597.6536081730077, 29286.538358650127, 719.7338855440302, 3837.2973075316663, -18788.540569904093, 3337.392919626092, 8859.440100306058, 20188.40478683055, -31034.922721611, -2411.390392461598, 2404.7380599460066, 2201.076233056299, -54289.42912226804, -13246.035210060265, -17897.749247065665, -3592.2688949385893, -1544.55779885737, 13282.07061576529, -143337.87064771412, -67394.49992407027, -193251.97468757108, 9709.537935752898, -13025.436137864117, 55.049207329222774, 5139.490077155421, 6669.756090243235, -4380.184774890708, 1162.5241029359236, 3174.9524743487896, -4876.074452616801, -8754.937309583192, 2924.7135899429554, 4227.74391389379, 3218.6959303292942, -13057.161022216917, -199518.06991747304, -93802.60065450972, 27896.91561884711, 1724.43264964138, -45499.013008587666, -718.958125204118, -2347.83129707893, 30612.66777049161, -1130.5119342447883, -3126.9585150607286, -35807.16950087389, -10957.069190460867, 34358.93567242163, -2392.6204591166297, -8007.754184187812, 13173.533533540824, -2058.350636197617, 16622.568951134286, 11000.712415691438, -46606.47272054882, 20061.08708499508, -8925.292225010046, -63643.60187600293, -3446.1654335945964, 14568.397903182902, 27040.273787447444, -1153.6315610691825, 810205.1979042849, 2760.4776831401045, -93873.18177108467, -13554.252644388927], [-4737.712671559081, -4538.198355401967, -4490.523017204142, -17402.555654013933, 1808.066704001038, 13915.050120102016, -2195.610443438746, -2917.2259386739256, -1493.4534680899524, -6191.786848105856, -6422.4171284682225, 1626.4384561151, -114.11186053980865, 14995.075290051487, 39357.32788296822, 14218.737335107982, 96953.35212583649, 20374.150002382492, 7130.63660260609, -1401.4930132405148, 50899.430272675934, 4521.983393114725, -5579.237947022592, -16624.265068346456, 44699.181649767066, 1487.8216328898113, -6363.744901461959, 6754.487256022943, -12483.233745198148, -17671.710598346497, -35191.10375237824, 183.35303682275958, 3788.9764507027626, -2762.3037511429316, 5123.484031626735, 891.3550749384576, 2255.8668232052946, 23156.664126385404, 1148.673898661022, -6891.618983657543, 85420.87941204221, -102076.62763111023, -4872.119322324766, 2438.006854163836, -20105.401877720153, -29100.16004356757, 28432.29492232552, -20758.49868786132, -8707.978144398847, 8693.073068781863, -7617.674554702277, 4130.237435989269, 49538.15356641231, -4041.513357355836, 1268.8148095129754, -9828.108396723219, -4620.4068713093175, -177587.20508407144, 37660.922811972676, -1479.9562401955054, 5026.468714610259, 2071.3141869046244, 7103.5911393132255, -29983.90358395904, 2858.9840330052725, -692.227826427365, -1846.8629003115368, -3177.9311314959587, -2554.1494065222787, -728.6276915814066, -4309.773400460887, -3068.04226049246, -130517.78860759632, 7169.50258620221, 3324.2241357546927, -30439.779699871586, 2760.4776767234434, 153820.4053933546, -1306.1698007093573, -2050.8790356658446], [-7204.389350687789, 39797.61624811727, -9446.678713620297, -8239.941315102642, 12086.1090770406, -5642.271596448048, -3698.3757088065095, -67068.17137580432, 16065.077247287676, 41589.5232225006, -103373.39810789695, 7335.852428392624, -18557.135130851537, 15491.933522160249, -143.5331833499242, 16545.247253317906, 8073.19597250513, 11650.354866903857, -11735.760668310251, -29614.304369016463, 12303.997738516795, -3574.0979606324618, -31742.2493803202, -12837.929893665863, -6317.416466891565, -19037.176091860492, 3850.028015819187, 2231.8988022676567, 5978.1821047991525, -19204.055762870652, -8693.04445409059, -5238.4742601896305, 30825.627908521128, -185164.11057041425, -139400.230680816, -50606.98857838033, 6645.759254777295, 2389.6964451587046, 9175.11053399444, -6635.870313922826, 8394.708072027839, -6821.34111065247, -144668.32470205502, 66383.63457067891, -4534.643208197881, -4852.186075657011, 17040.34095453023, -2746.8613956104127, 7626.484000209512, -80474.74746733117, -98882.34649950314, -54115.85960129745, -4985.066461669761, 19843.719807246056, 8627.707203735925, 3302.7771142653346, 7814.619843038813, -604.4659010077595, 8700.937193965121, 28838.77783959519, -11055.98024301939, 10053.948575790424, 12824.237300660434, -1291.3932243780896, -7099.597148945814, 11534.96869476907, 5067.762361986946, -8525.632137072787, 43790.132495284204, -9975.127276826655, 379.6264871883652, 32566.275077126782, 3436.343832890754, 47059.53672777352, -2007.7677841186535, -3565.7641292337935, -93873.18186577626, -1306.1697876183575, 798123.8786672388, -88899.27490090702], [2365.0682986517777, 1302.3944292784881, 1904.2424661504954, -4327.792866051286, 45569.81060003494, -6153.278300674807, -11998.296521153648, -134192.97079368462, 42126.926799169596, 5730.316952585674, -16404.00846053856, 13920.25520009159, -1516.234298008719, -88457.2859982459, 1174.8331291571628, -109481.19272753016, -2970.9411319448404, 2461.3086498510293, 11000.339561524757, -10016.965603740153, -17203.468395644737, -116771.36719146, -60028.42805418554, 5707.402218881056, -3196.768260497175, 4988.1080383015815, -8290.552018519946, 9299.046882669774, 3020.1604872642038, -4162.055023411694, 358.11834376169816, -9768.636421401521, 40742.43628246892, -101894.9168342708, -15309.42438518282, -141098.8572869551, -4623.4475744401, -4262.254933598043, 2826.901262962543, -17800.115023784005, 5547.048305868011, -1348.8554665231932, -16505.757852461964, 48779.04985473664, 3868.358344629438, -1876.7580554196616, 1317.1291013062096, -6943.961403256285, 19610.194029326536, 26125.94601753745, -103994.28048791536, -21386.340652170173, -1057.6274943959615, 2942.28012166167, 1073.1852357184696, 1258.1822687313638, -14677.570347168896, -1893.3753386118751, 11819.073091240236, -5053.876239194432, 7523.711716087273, 23353.884155606513, 5676.418090094307, 6895.708891683636, -4971.313116555331, 6093.509136758652, -2728.9120454433646, -3661.819061185407, -4691.023912602948, 29.560734888838468, 4064.501357329527, -5995.827739385281, 5296.4348331906285, -54933.288916634934, 20830.003872439956, 2818.973680218444, -13554.252621139085, -2050.879044709911, -88899.27493661175, 846737.5243621615]], "optimal_y_mu": [[0.000572685854924892], [-0.0006557191450751081], [0.0005543478549248915], [0.0007766938549248915], [0.00042469585492489184], [0.000766149854924892], [-0.0006855221450751082], [0.0001378478549248917], [2.760185492489166e-05], [-0.0004998241450751085], [0.00013550885492489163], [-0.00015523514507510827], [-0.0006002441450751084], [0.00026632285492489156], [0.0006788468549248916], [0.00027338685492489176], [0.0007758768549248922], [0.0008237778549248917], [-0.0007044231450751082], [0.00047106485492489194], [0.0006849548549248919], [0.0002276958549248917], [8.394185492489187e-05], [0.0005550888549248918], [0.0006997158549248914], [-0.0006093341450751082], [-3.290914507510841e-05], [0.0003906908549248917], [0.0004613488549248916], [0.0006326388549248918], [0.0008318548549248921], [-0.0004069381450751081], [-0.0002542371450751082], [7.58188549248918e-05], [-8.27631450751082e-05], [0.00018963985492489186], [0.00043730385492489173], [0.0007575138549248918], [0.0006220188549248915], [0.0005339078549248914], [0.0007999708549248918], [0.0007809968549248921], [0.00011357385492489179], [0.0003004018549248918], [0.0007376868549248917], [0.0008040578549248917], [0.0006665808549248921], [0.0005712888549248918], [0.0004472678549248916], [-0.00015148114507510836], [4.6631854924891834e-05], [-0.00037886014507510814], [0.0006866938549248917], [-9.918314507510826e-05], [-0.00020425514507510815], [0.0005857788549248916], [0.0002023818549248919], [0.0006979288549248917], [0.0005915848549248913], [-0.00022396814507510835], [0.00039435085492489164], [0.00011730485492489166], [0.0006718808549248919], [0.0006721108549248914], [-0.00024295314507510836], [0.0006590158549248919], [-0.0004735371450751082], [0.0005590108549248917], [-0.0002849481450751083], [-0.0005252021450751084], [0.0007331208549248916], [-0.00019163514507510807], [0.0006701928549248922], [0.00027182285492489185], [-0.00014702414507510812], [0.0007946388549248916], [-0.00010607714507510817], [0.0006750888549248921], [5.0337854924891855e-05], [0.00015345485492489165]], "training_R2": 0.9999999094509637, "training_rmse": 1.3426520733691794e-07}, "map": {"x_data_columns": "list", "x_data": "numpy", "x_data_min": "numpy", "x_data_max": "numpy", "x_data_scaled": "numpy", "optimal_weights": "numpy", "optimal_p": "str", "optimal_mean": "numpy", "optimal_variance": "numpy", "regularization_parameter": "str", "optimal_covariance_matrix": "numpy", "covariance_matrix_inverse": "numpy", "optimal_y_mu": "numpy", "training_R2": "str", "training_rmse": "str"}}, "C2H6": {"attr": {"x_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "x_data": [[0.363768116, 0.926315789], [0.789855072, 0.821052632], [0.363768116, 0.957894737], [0.191304348, 0.926315789], [0.485507246, 0.821052632], [0.18115942, 0.957894737], [0.779710145, 1.147368421], [0.576811594, 0.978947368], [0.637681159, 0.831578947], [0.749275362, 1.052631579], [0.536231884, 1.189473684], [0.688405797, 0.831578947], [0.779710145, 0.842105263], [0.536231884, 0.915789474], [0.160869565, 1.126315789], [0.526086957, 0.947368421], [0.14057971, 1.0], [0.171014493, 0.884210526], [0.789855072, 1.0], [0.363768116, 1.105263158], [0.333333333, 0.810526316], [0.515942029, 1.084210526], [0.607246377, 0.915789474], [0.384057971, 0.905263158], [0.18115942, 1.063157895], [0.779710145, 0.873684211], [0.647826087, 0.894736842], [0.404347826, 1.147368421], [0.444927536, 0.894736842], [0.373913043, 0.8], [0.211594203, 0.810526316], [0.739130435, 0.915789474], [0.688405797, 1.094736842], [0.576811594, 1.115789474], [0.637681159, 1.094736842], [0.536231884, 1.073684211], [0.414492754, 1.031578947], [0.130434783, 1.042105263], [0.302898551, 0.978947368], [0.272463768, 1.189473684], [0.120289855, 0.989473684], [0.110144928, 1.031578947], [0.546376812, 1.189473684], [0.444927536, 1.2], [0.242028986, 0.905263158], [0.191304348, 0.884210526], [0.302898551, 0.905263158], [0.282608696, 1.105263158], [0.465217391, 0.852631579], [0.657971014, 1.105263158], [0.607246377, 1.0], [0.739130435, 0.831578947], [0.18115942, 1.084210526], [0.668115942, 0.884210526], [0.698550725, 0.852631579], [0.252173913, 1.136842105], [0.505797101, 1.178947368], [0.130434783, 1.136842105], [0.22173913, 1.178947368], [0.698550725, 0.905263158], [0.394202899, 1.168421053], [0.607246377, 0.842105263], [0.282608696, 0.936842105], [0.242028986, 1.010526316], [0.708695652, 0.842105263], [0.282608696, 0.957894737], [0.749275362, 0.968421053], [0.333333333, 1.021052632], [0.708695652, 0.957894737], [0.75942029, 0.968421053], [0.252173913, 0.894736842], [0.688405797, 0.926315789], [0.14057971, 1.168421053], [0.485507246, 1.115789474], [0.688405797, 0.810526316], [0.110144928, 1.010526316], [0.647826087, 1.073684211], [0.110144928, 1.2], [0.586956522, 1.115789474], [0.556521739, 1.052631579]], "x_data_min": [[0.110144928, 0.8]], "x_data_max": [[0.789855072, 1.2]], "x_data_scaled": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "optimal_weights": [10.252609484546818, 0.034555643267013124], "optimal_p": 2, "optimal_mean": [[0.006331708425284013]], "optimal_variance": [[3.4545808859943734e-06]], "regularization_parameter": 1e-06, "optimal_covariance_matrix": [[1.000001, 0.017751871693272348, 0.9997846486749143, 0.5168209224289178, 0.7180037413149374, 0.4770127097737133, 0.02128276775303742, 0.36501527378485166, 0.18882566670225093, 0.03682949488847315, 0.5091485766879343, 0.09626085057041406, 0.02147564534656036, 0.5168085547952171, 0.3976372317045051, 0.5572259156216558, 0.33068141348563573, 0.4382851926182217, 0.01777355028870978, 0.9931079451043835, 0.976821782263659, 0.594954108257283, 0.2683203335171621, 0.9908109948617454, 0.4751897773877824, 0.021495697697688075, 0.16682251227087821, 0.9539954272032792, 0.8638228429125985, 0.9942864522592388, 0.5964366575627174, 0.04386060847006208, 0.09585856868638895, 0.3624128308897904, 0.1880365489612051, 0.5144025128857861, 0.9422434797829105, 0.297869388159657, 0.9205167104456876, 0.8187669784132541, 0.2680956912047769, 0.23934339892900328, 0.470032549799889, 0.8501442667819127, 0.7196551276107485, 0.5166230757727727, 0.9209794236528535, 0.8580541115373709, 0.7948779831355902, 0.14548097135050422, 0.2680123005403477, 0.04377672028880456, 0.47455339826143994, 0.127973833884093, 0.0830440614622127, 0.7513159441414565, 0.6303775648269275, 0.2958872548275011, 0.6303775608532322, 0.08313353749911097, 0.967330850101197, 0.26791611278325883, 0.8639882324447449, 0.7186225665977618, 0.07123529101264403, 0.863822842900816, 0.03694248042109794, 0.9777572632342699, 0.07132911103024216, 0.030984859529652096, 0.7583788683480766, 0.09644762072629892, 0.3269047272150417, 0.7141652281036464, 0.09616875184493551, 0.23954968163455498, 0.16607764878279135, 0.23606693029092723, 0.3285123811163389, 0.43694473345958745], [0.017751871693272348, 1.000001, 0.017722583908045198, 0.00035167947305926486, 0.12802284291271634, 0.0002675429249098438, 0.9750357405610481, 0.36327244813622794, 0.5981518824920713, 0.9530142598780452, 0.23298580359213644, 0.7957915554756193, 0.997623166759715, 0.23945224821601868, 0.00015079438363162746, 0.21280269638015947, 8.593350587020757e-05, 0.000203589553608476, 0.9931079451811463, 0.017486666440145963, 0.009803618618818573, 0.18638342909407798, 0.4761915302692556, 0.025839871818339702, 0.0002652479476642591, 0.9971219466421108, 0.6383778332024383, 0.036116426753512974, 0.07126086604583091, 0.021506502870998895, 0.0005988214762579278, 0.9426719981350985, 0.7830403275327334, 0.3584452571079431, 0.5885674995646046, 0.23663252677148783, 0.04344380929689733, 6.377160619910378e-05, 0.005156054773336764, 0.002554638766520164, 4.74909398762629e-05, 3.492939970933951e-05, 0.26057497166529675, 0.06916576251779505, 0.0012792229934288828, 0.0003522185011415128, 0.005175958393616054, 0.0032558662638203953, 0.09642685060468943, 0.6680239166879501, 0.4738271551738031, 0.9444784157681292, 0.00026463928553861386, 0.7191042439298928, 0.830925979063463, 0.0016010002550811081, 0.162305792195729, 6.307496549775154e-05, 0.0007540125911786698, 0.8298330523514952, 0.030199376336266716, 0.47706979282696876, 0.003303584589092184, 0.001271288466857272, 0.8639262076631088, 0.003299792058791563, 0.9596051050297464, 0.009719523396856859, 0.8605216926809083, 0.9750701683206726, 0.001633938649473027, 0.7939084616619555, 8.430400804602416e-05, 0.1256433321310821, 0.795791555472001, 3.4992984241383714e-05, 0.6303775648269279, 3.4188425268730826e-05, 0.39363241566277823, 0.29529307090937407], [0.9997846486749143, 0.017722583908045198, 1.000001, 0.5167096243584407, 0.7168191485164276, 0.4771154572196444, 0.02134244020600231, 0.36519875485160574, 0.18854120353599052, 0.036885061706395515, 0.5108694478165198, 0.09611583497577371, 0.021446371707560686, 0.5166230757727722, 0.39863763215368037, 0.5572659211450554, 0.3309426579024409, 0.4379392125615388, 0.017787591721310395, 0.9953206044774253, 0.97507016700356, 0.5961084682409445, 0.2682240352018554, 0.9903131972765298, 0.4759750610873571, 0.02147564534656036, 0.1667147591340504, 0.9566702319053313, 0.8632648869166103, 0.9923610233248509, 0.5953671405125874, 0.04384486720048094, 0.096058349675562, 0.3632724481114518, 0.18842844014283808, 0.5153265851513, 0.943394148109563, 0.2982759707302167, 0.9209794236528535, 0.8215343286891914, 0.268268970114499, 0.23963568523742582, 0.4716212126803939, 0.8531401567845649, 0.7192935626033248, 0.5162152561976422, 0.9205167104456876, 0.8599658689468543, 0.7939084616258582, 0.14580510513318595, 0.2682240352018554, 0.043710771285793815, 0.475474150711857, 0.1278728120037127, 0.08294277169755535, 0.7533143068378716, 0.6324173668687731, 0.29667426068968544, 0.6324173628822196, 0.08309177002334406, 0.9703216479577508, 0.26755091399918274, 0.8639262076552531, 0.7192935626033248, 0.07113818956775196, 0.864008908364118, 0.03695574358284381, 0.9788107503439866, 0.07134447515750487, 0.030995983774665704, 0.757889020180368, 0.09642685060337415, 0.32791545271537054, 0.7158591767634725, 0.09599630416170929, 0.2397733552108965, 0.16637599053913507, 0.23689882504579338, 0.32929158890443866, 0.4376039775931224], [0.5168209224289178, 0.00035167947305926486, 0.5167096243584407, 1.000001, 0.1461404523552893, 0.9975038053274558, 0.00045567549027317026, 0.036934524809827035, 0.01199041822952153, 0.0009953994917048803, 0.07028534721519022, 0.004145715738281864, 0.00045980510316051315, 0.07134276786916392, 0.9712276617360265, 0.08313353749835521, 0.9433941480795371, 0.9905265084681582, 0.00035210894422443726, 0.5132589642603345, 0.6372788577572163, 0.09592970732202724, 0.021508046910739785, 0.43841107130268364, 0.9936917853234534, 0.000460234434769883, 0.00980174195448936, 0.36139954179233336, 0.23986517913420255, 0.47547415456544484, 0.9880407342872471, 0.0012811530009458737, 0.004128390456737541, 0.03667119338624816, 0.011940309301467835, 0.0710106261353723, 0.330278077701164, 0.9184044087953149, 0.7580885497478707, 0.8511824634959335, 0.8933520079409892, 0.861943763748804, 0.060037624087684045, 0.23606693029092699, 0.9444106105527479, 0.9996171852810928, 0.758469615708096, 0.8253769342627895, 0.18897032025268992, 0.007909155348882035, 0.021483355573976244, 0.0012787026565728504, 0.9923610228780279, 0.006437546772271447, 0.003309281484292309, 0.9122930053969356, 0.10984874438574495, 0.9122930053969356, 0.966243473653135, 0.0033128470781105977, 0.39604181030950697, 0.021475645346560417, 0.8310850667176268, 0.9430555704240892, 0.0026266102646526775, 0.830925975684915, 0.0009984531784873163, 0.6378891658556117, 0.0026300696261257633, 0.0007748657882455828, 0.920869232750544, 0.004153759464990128, 0.9326197181251742, 0.14535917222429376, 0.0041417492749332725, 0.8626866465373628, 0.009757977119622865, 0.850144266781913, 0.03075732227251016, 0.05164132521511231], [0.7180037413149374, 0.12802284291271634, 0.7168191485164276, 0.1461404523552893, 1.000001, 0.12750613149771567, 0.14316015769500776, 0.8266420106058185, 0.5981518824920713, 0.21107827713302074, 0.9172149944348039, 0.4010776669926145, 0.14647656894231734, 0.942671996012849, 0.0945259612941658, 0.9607999658038346, 0.0708527651236971, 0.11127747301434882, 0.12714050246129643, 0.7072770772621955, 0.598151882489352, 0.9651111246336157, 0.7183302732305804, 0.7945927069113983, 0.1264123867442022, 0.1464029770234869, 0.5566261773251038, 0.844365846489796, 0.962986732601199, 0.7584696157011989, 0.18918750837545642, 0.2394522455206092, 0.3946510685706608, 0.8156575307266747, 0.5885674995646046, 0.9315713591964505, 0.8856040813384947, 0.060302566307905085, 0.47455340213993086, 0.35468234913494195, 0.05150310062641451, 0.043443809296897444, 0.8944585387110296, 0.9346744623064918, 0.26791611567844154, 0.14636444554740446, 0.47638529321433976, 0.3941508469194813, 0.9906924489368987, 0.507882997477255, 0.7147636364880586, 0.23991110158022802, 0.12612230935547525, 0.47670460020366173, 0.3651550570672926, 0.2923679862070403, 0.9638694475835418, 0.05964382138065762, 0.2077110123328477, 0.3646747643265015, 0.8097258838658535, 0.7196551237223427, 0.39992756401884527, 0.26625433540265436, 0.3310377070328032, 0.3994684453361869, 0.21253804987519317, 0.5930209489758633, 0.3297331710397176, 0.18830672912723842, 0.2983830583512797, 0.4001285907322349, 0.06950923298873662, 0.9814133889898341, 0.40107766699079084, 0.043522893229268035, 0.549650435731609, 0.04252221452116268, 0.7810191738258561, 0.8838256588400587], [0.4770127097737133, 0.0002675429249098438, 0.4771154572196444, 0.9975038053274558, 0.12750613149771567, 1.000001, 0.0003497993533922468, 0.030993758606482884, 0.009770127368724832, 0.0007736614349612115, 0.06024054523615007, 0.0033017667168765905, 0.0003515027749172129, 0.06091899975452457, 0.9848539029832718, 0.07134276677665824, 0.9637475098537045, 0.9965494319879049, 0.0002685242931230347, 0.4748828452853796, 0.5953671405125869, 0.08285548373162485, 0.017787591384928796, 0.40084738138014114, 0.9976098109691669, 0.00035198256541420773, 0.007957185758610975, 0.3285123811432256, 0.21335339251972615, 0.4360985929867277, 0.9750701670035598, 0.00099845315377934, 0.003299791984502922, 0.030830276433246474, 0.00976428401622168, 0.06076612057518659, 0.2983830552612128, 0.9430555725815053, 0.7196551237223429, 0.8215343286891912, 0.9208692327505441, 0.8930741353093429, 0.05122285615833342, 0.2108510950734184, 0.920516707958842, 0.9965494315391961, 0.7192935587168727, 0.7920866832690654, 0.16645962222990307, 0.006409876739891326, 0.017787591384928796, 0.0009953994670543675, 0.9965599385160313, 0.005177816564227937, 0.002624348359200737, 0.8879596229856022, 0.09543512714492212, 0.9379914650850656, 0.9539954272943694, 0.002629062736400877, 0.36175429974220036, 0.01774295256314437, 0.795734422865986, 0.920516707958842, 0.0020731811340889235, 0.7958105958079064, 0.0007751439820799894, 0.5976510996394285, 0.002079192917569902, 0.0005988214608891935, 0.8933520079409891, 0.0033124507113286837, 0.9549318996832099, 0.1273353739435687, 0.003297660599881211, 0.8935872036880929, 0.007941016556478386, 0.8828744063053633, 0.02574050676045393, 0.04377672028880456], [0.02128276775303742, 0.9750357405610481, 0.02134244020600231, 0.00045567549027317026, 0.14316015769500776, 0.0003497993533922468, 1.000001, 0.3986376321246797, 0.6255088387454547, 0.9777572632742808, 0.2682240352018554, 0.8133964556173527, 0.980075615861478, 0.26523682580326663, 0.00020374551171625644, 0.23785315217550054, 0.00011510673076206701, 0.0002646392855085321, 0.9930499455557438, 0.021500327821187725, 0.011722866871606697, 0.21335339251972615, 0.5108694478165198, 0.030606803963503477, 0.00035198256541420773, 0.9839531267010262, 0.6704742802398943, 0.04386165808879301, 0.0820033380157905, 0.025213761504145758, 0.000756398151575559, 0.9530142598780452, 0.8306078849948769, 0.40100089042693665, 0.6387445753026215, 0.26801230054887787, 0.051669756503276765, 8.632305175190045e-05, 0.0064006798502066285, 0.0033118958776065218, 6.410209240672824e-05, 4.764461303636061e-05, 0.29861878646220946, 0.08309177002334425, 0.0016152775654993201, 0.00045367346532235994, 0.006359000332812715, 0.0041521693447281235, 0.10930332443186519, 0.719448492899879, 0.5144025129185305, 0.9435739859762668, 0.0003522184917750459, 0.747281457905469, 0.8479499108750362, 0.0020791431620353087, 0.18915129072909345, 8.652780383024631e-05, 0.0009986204221794628, 0.8531401567845653, 0.03695309056960803, 0.5065235838396182, 0.004114188539661703, 0.0016292532636744354, 0.8763071311437347, 0.0041216778972889305, 0.9729025256829247, 0.011972354599410658, 0.8872162081967183, 0.9840764644273808, 0.002050730004470584, 0.8223801320247793, 0.0001156368234760866, 0.14645904370246463, 0.8109863751769317, 4.75899168038697e-05, 0.6789834253619437, 4.7754194168359e-05, 0.4383586174581258, 0.33042828252584516], [0.36501527378485166, 0.36327244813622794, 0.36519875485160574, 0.036934524809827035, 0.8266420106058185, 0.030993758606482884, 0.3986376321246797, 1.000001, 0.9167575463258157, 0.5162152561976421, 0.9549318996832098, 0.7549927023356948, 0.39946844173887297, 0.9632863610217303, 0.021407914548237574, 0.944297618343871, 0.014653120601969037, 0.02582936181785184, 0.365198754848285, 0.36397728762702325, 0.26668795401648937, 0.9188660602227061, 0.9788107503706892, 0.43793921257547685, 0.030949288768702083, 0.4001285907322351, 0.8927536143497874, 0.5136644483102987, 0.6787397428949665, 0.39832294967729776, 0.05150310062641446, 0.5567993687271167, 0.7563489705782697, 0.9959639122926686, 0.918404408795315, 0.9622495826765393, 0.5569459613860295, 0.012003337336379238, 0.18919203578164379, 0.12680322911467892, 0.00980361861881859, 0.007959280813072981, 0.9703216492684494, 0.6726438288432417, 0.08304406269613672, 0.036885061706395564, 0.18897032025268978, 0.145986655902911, 0.7559327895304081, 0.8610366645496693, 0.9795605872228159, 0.5546715268979378, 0.030922637499626936, 0.8294955261940519, 0.7172481189868115, 0.0959297073220272, 0.8864309893151366, 0.011949170453104487, 0.06041812157914169, 0.7188805640158596, 0.4734304590405352, 0.9757003863654664, 0.1464345138010803, 0.08312359219217876, 0.6770364126637034, 0.146476570854952, 0.5168085547952175, 0.26822403519697735, 0.6797149977941117, 0.47710403974610255, 0.09630001923410757, 0.7580885497478707, 0.014541339060521307, 0.8277505427449708, 0.7539094390333971, 0.00796232890974022, 0.8923904994732138, 0.007880438560871141, 0.9936917853234534, 0.9897445919824597], [0.18882566670225093, 0.5981518824920713, 0.18854120353599052, 0.01199041822952153, 0.5981518824920713, 0.009770127368724832, 0.6255088387454547, 0.9167575463258157, 1.000001, 0.7505791515956686, 0.774097285870265, 0.9445010157503678, 0.6391115321330901, 0.7945927068824953, 0.006320314103822549, 0.7563489743243815, 0.004128390456737541, 0.007959280813072981, 0.5945129078751462, 0.18615609513227396, 0.12801058889687075, 0.7098714244523997, 0.9781551152458213, 0.2396356852297985, 0.00969095651271859, 0.6388821594077023, 0.9968595028272104, 0.2923679861671599, 0.4380754751205382, 0.21349128971260978, 0.017792700446595575, 0.7945927033047419, 0.930479643876548, 0.9051386002937949, 0.9851547307625917, 0.7857997445302433, 0.32822163888950373, 0.003281601312398392, 0.08275244487571244, 0.050405714991404796, 0.002616509902501873, 0.002061308366604138, 0.8084286552888766, 0.42578641511206955, 0.0309604007865627, 0.012006497456982082, 0.08304406269349367, 0.059964396475086994, 0.5167714536604504, 0.9750049011994628, 0.9736711378655201, 0.7958105958079065, 0.009669644313630158, 0.9790684420118733, 0.9209794211563828, 0.03622028991091769, 0.6622936224016731, 0.0032471515223871485, 0.020955282343306247, 0.9199881775152763, 0.2618313644397711, 0.9796309151997763, 0.060796666646134034, 0.03078309493958849, 0.8941005640212696, 0.06073268496897109, 0.7554806784749201, 0.127034058275569, 0.891046125985387, 0.7168191446009755, 0.03692480361068258, 0.942671996012849, 0.004053209297029352, 0.587821482772895, 0.9444106105527479, 0.002064863054189417, 0.9851679192963683, 0.0020191264306376505, 0.9281667734468358, 0.854938664067197], [0.03682949488847315, 0.9530142598780452, 0.036885061706395515, 0.0009953994917048803, 0.21107827713302074, 0.0007736614349612115, 0.9777572632742808, 0.5162152561976421, 0.7505791515956686, 1.000001, 0.3637595987971365, 0.9113983475752934, 0.9703216479577508, 0.3637595987971365, 0.0004599701832859071, 0.3302780809728248, 0.0002684664660619145, 0.0005951784280383436, 0.9635399655547904, 0.03693452480982699, 0.021237995871255574, 0.2986688133327441, 0.6365472586978282, 0.05157710343892024, 0.0007751439820799894, 0.9729025256829247, 0.7915371816169938, 0.07120631707080094, 0.1273353739435687, 0.04326121810459364, 0.001615277565499323, 0.9936917858296112, 0.9207149876341154, 0.516375873949573, 0.7582518402829773, 0.365198754848285, 0.08313353873360853, 0.00020376014503482875, 0.011999603720701418, 0.006414019650387015, 0.00015372745536140094, 0.00011563682675630335, 0.399468445336187, 0.12742377339480357, 0.003297660674121871, 0.0009927351780280446, 0.011957465870772456, 0.007959280813072981, 0.16542317872351264, 0.8306078849948769, 0.6387445793290605, 0.9872447552426038, 0.0007749955996185996, 0.858731990114195, 0.9363767009685202, 0.004147402635338758, 0.26740369409927445, 0.00020345318329980698, 0.0020720403660964247, 0.9400813240426157, 0.060766121532811405, 0.6330381679600067, 0.007941016720953358, 0.0033118959521676625, 0.9549318996832098, 0.007948621660637032, 0.998469620182645, 0.021503929718205396, 0.9622495827159155, 0.996191776855233, 0.004131454221078056, 0.9178990566867504, 0.00026785041840857214, 0.21335339251972615, 0.9094810678517461, 0.00011560362455836784, 0.7957344264488804, 0.00011510673402724687, 0.5567993727232216, 0.4384530388950603], [0.5091485766879343, 0.23298580359213644, 0.5108694478165198, 0.07028534721519022, 0.9172149944348039, 0.06024054523615007, 0.2682240352018554, 0.9549318996832098, 0.774097285870265, 0.3637595987971365, 1.000001, 0.5818455166925781, 0.2614244041142851, 0.9839531267010261, 0.04382388762829738, 0.9851679198429778, 0.030757322275027445, 0.050787114413039784, 0.23806384741109496, 0.5160299901200452, 0.38883888998078525, 0.9885373895357726, 0.8797740987376552, 0.5878214828450581, 0.06073268401518689, 0.2626094692612946, 0.7444434922061063, 0.6795198347717061, 0.8156575307266752, 0.5393181290200829, 0.09350230996632192, 0.394651068570661, 0.5970078519989176, 0.9629867326011988, 0.7942695176248559, 0.997108597607039, 0.7158591767634728, 0.025758376938042917, 0.295887254827501, 0.21353727524487703, 0.021323551363717972, 0.017698849637028218, 0.9977186653641046, 0.8310850667176269, 0.14395717746864303, 0.0699229804283056, 0.2935668410563872, 0.23954968164326826, 0.8724779261442606, 0.718622566623901, 0.8872162081967185, 0.3901437899232308, 0.06079666568802785, 0.6662358654495273, 0.543789182958107, 0.1667586501562197, 0.9796309138765029, 0.02586399915709059, 0.11137071289832247, 0.547641643696298, 0.6390656550352452, 0.8711218568667253, 0.23663252677148805, 0.1454809713617494, 0.5035263884310243, 0.23715407229965513, 0.3613995418268406, 0.3986376321536802, 0.51086944781652, 0.327593876100908, 0.16375711243648325, 0.5892862584960931, 0.030993758606482926, 0.9433941481095631, 0.5798994388595979, 0.017671763675315755, 0.756348970616098, 0.01779397785703888, 0.9433941481095629, 0.9869064589805383], [0.09626085057041406, 0.7957915554756193, 0.09611583497577371, 0.004145715738281864, 0.4010776669926145, 0.0033017667168765905, 0.8133964556173527, 0.7549927023356948, 0.9445010157503678, 0.9113983475752934, 0.5818455166925781, 1.000001, 0.8310850667176267, 0.5972507752387134, 0.0020405477675959336, 0.555667942356006, 0.0012733588546975719, 0.0026290627967730765, 0.79095020103789, 0.09489993796529775, 0.0609364961328576, 0.5097459517137446, 0.8626866465373627, 0.12787281200371275, 0.0032750113136517747, 0.830786796013379, 0.9632863609954513, 0.16330316317842286, 0.26809569120477683, 0.11134939368422972, 0.006439395682370403, 0.9430555704240892, 0.9851547307625917, 0.7454239570352985, 0.930479643876548, 0.5906415985673952, 0.18756466214613857, 0.0009893201079603342, 0.03678369328349608, 0.02092171074625593, 0.0007709999920256196, 0.0005936847989840192, 0.6216885591577059, 0.2605749688079778, 0.011999603720701397, 0.004151275169576637, 0.036913318219428524, 0.02546419255255108, 0.3310377070297927, 0.9639339677553969, 0.8587319901141948, 0.9445010157503679, 0.003267808960298748, 0.9903131972765299, 0.9976231663014506, 0.01436254094371918, 0.4648422937472435, 0.0009789343643161054, 0.007759179328930923, 0.9965494315391961, 0.1429444908113145, 0.8639882324447447, 0.0258176204053619, 0.011930883683266447, 0.9908821292191169, 0.025790450253690495, 0.9173500763021687, 0.06047164119436098, 0.9874970647349264, 0.8905132058986299, 0.014641903888719629, 0.9980635068602168, 0.0012501700123571827, 0.39415084332166617, 0.9999042825829593, 0.0005947085972757779, 0.9519885372582466, 0.00058153582865976, 0.7820478139580674, 0.6726438288432417], [0.02147564534656036, 0.997623166759715, 0.021446371707560686, 0.00045980510316051315, 0.14647656894231734, 0.0003515027749172129, 0.980075615861478, 0.39946844173887297, 0.6391115321330901, 0.9703216479577508, 0.2614244041142851, 0.8310850667176267, 1.000001, 0.2680123005403477, 0.00020024109396913663, 0.23934339892900286, 0.00011502687618264501, 0.0002685242931230347, 0.9923610233248509, 0.021189261227070152, 0.012011095243273215, 0.2108510950734184, 0.5162152561976417, 0.030970033413987713, 0.0003488213309514682, 0.9997846486749143, 0.679373499277955, 0.04298774156407939, 0.08309177002334425, 0.02586956973727163, 0.0007749955996185996, 0.9629867325705492, 0.8197276232372932, 0.39465106852400667, 0.6303775608532318, 0.26523682577673513, 0.05141935911896545, 8.578557025794103e-05, 0.006414019650387015, 0.003227937442818147, 6.414659370763363e-05, 4.741372194477847e-05, 0.29104863122898106, 0.08087301944376148, 0.0016344470411229568, 0.00046033356820122115, 0.006434466435032039, 0.004092095787384908, 0.11137071289832237, 0.7090395170837592, 0.5140456493706669, 0.9640935163565679, 0.000348087526609214, 0.7582518402829773, 0.8639882324447449, 0.0020405477675959336, 0.18461225682575316, 8.492157739053727e-05, 0.0009746566842881231, 0.8632648869166107, 0.03611642674842234, 0.5168209224289173, 0.004145715738281856, 0.001625864762521442, 0.8941219605524706, 0.004141749274726115, 0.9762842859412592, 0.011930883446897122, 0.8915366941315402, 0.9874970647349264, 0.002077949386385095, 0.8298330489887102, 0.00011301866231262367, 0.14413987467869024, 0.830925975696249, 4.749093987280799e-05, 0.6719520265644415, 4.6479042056919016e-05, 0.43141723848136054, 0.3279154527153704], [0.5168085547952171, 0.23945224821601868, 0.5166230757727722, 0.07134276786916392, 0.942671996012849, 0.06091899975452457, 0.26523682580326663, 0.9632863610217303, 0.7945927068824953, 0.3637595987971365, 0.9839531267010261, 0.5972507752387134, 0.2680123005403477, 1.000001, 0.043443808573135935, 0.9975038057902007, 0.03094928876982789, 0.051808428369092566, 0.23954968164326804, 0.5128292552291089, 0.4001285907140422, 0.9848539029832718, 0.8941219605524708, 0.5981518824893517, 0.060657156112000246, 0.2682240352018554, 0.7584696157011986, 0.6719520266316565, 0.8310254040111488, 0.5556679383528625, 0.09621709268118919, 0.40108726509548015, 0.5940436025166606, 0.9558235436656448, 0.7903258291147149, 0.9946301069910108, 0.7176430059875584, 0.0257904502550977, 0.2984758987212041, 0.21011066964441438, 0.021483355574660003, 0.017742952899569266, 0.9817084003529855, 0.8167317876777497, 0.1464870870046434, 0.07132911103024225, 0.2987259971589291, 0.23806384741109518, 0.8933520079409892, 0.7141652281620953, 0.8927536143497874, 0.40047344922541295, 0.06057012524264935, 0.6796336730483736, 0.5567993687119261, 0.16510678892205102, 0.9651111246336157, 0.025607798129268965, 0.10972001031614818, 0.557265921145055, 0.6303775648269279, 0.8930741324660934, 0.23989388132076872, 0.1462069145285647, 0.5162152561976421, 0.23982500184174138, 0.3650152737848519, 0.4001285907140422, 0.5166230757727726, 0.3308713889640382, 0.16684247419500603, 0.5981518824920713, 0.030572398815753625, 0.9363766988604432, 0.5967364664532938, 0.017759944940298995, 0.7544689308384716, 0.017486666440146043, 0.936376698860443, 0.9869064589805383], [0.3976372317045051, 0.00015079438363162746, 0.39863763215368037, 0.9712276617360265, 0.0945259612941658, 0.9848539029832718, 0.00020374551171625644, 0.021407914548237574, 0.006320314103822549, 0.0004599701832859071, 0.04382388762829738, 0.0020405477675959336, 0.00020024109396913663, 0.043443808573135935, 1.000001, 0.05146244351209823, 0.9874970647888057, 0.9851679193993935, 0.00015333066064355825, 0.40104887405845757, 0.5058089281026774, 0.06091899975452457, 0.011899233668456518, 0.32759387610090823, 0.990052546006259, 0.0002009755938585215, 0.00512419626755394, 0.2683010710866896, 0.16493697951115704, 0.3569302019571821, 0.9243763664275623, 0.0005931309624724229, 0.0020787451606483444, 0.021508046910739757, 0.006438625238642409, 0.04383542515142704, 0.2394522455206092, 0.9781551152814011, 0.6361360993651475, 0.7578890201803676, 0.960225328822289, 0.9426719981350986, 0.036924802978899975, 0.1666629028193451, 0.8549386610692535, 0.967330850202357, 0.6324173628822193, 0.719655123722343, 0.1259684765731218, 0.00415336187786313, 0.011972354599410658, 0.0005877054632494959, 0.9905265084681582, 0.0032714864424215943, 0.0016096053128459335, 0.8310850667176266, 0.07130180519697742, 0.9796309151997763, 0.9205167104456874, 0.0016186826984292229, 0.2986187833642707, 0.011805917226003663, 0.7141652243033529, 0.861510707835686, 0.0012590268104311821, 0.7153283129430313, 0.0004580369695164958, 0.5155856227526653, 0.0012733588547902085, 0.00035062905234586937, 0.8215343286891912, 0.0020613083183413775, 0.9905265084501433, 0.09644531271438898, 0.002034891188251678, 0.9417700853734923, 0.0051807912044033585, 0.9433941502034127, 0.017793977520617336, 0.030960400243875984], [0.5572259156216558, 0.21280269638015947, 0.5572659211450554, 0.08313353749835521, 0.9607999658038346, 0.07134276677665824, 0.23785315217550054, 0.944297618343871, 0.7563489743243815, 0.3302780809728248, 0.9851679198429778, 0.555667942356006, 0.23934339892900286, 0.9975038057902007, 0.05146244351209823, 1.000001, 0.036934524177878174, 0.060889850286541, 0.21340956460095728, 0.5542867269717772, 0.4366834002645239, 0.9936917853821889, 0.8638228429125987, 0.638882159419322, 0.07113818847870265, 0.2396356852374254, 0.7192935626033241, 0.7135331618889028, 0.8634921556955659, 0.595367136491514, 0.11092386537159601, 0.3651550605200218, 0.5546715308939025, 0.938732495573254, 0.7549927060750892, 0.994286452204989, 0.757381363703988, 0.0309367005866373, 0.33099809991162393, 0.2368988223791265, 0.0258695697372717, 0.021475645346560417, 0.9784407973763521, 0.8521811377660337, 0.16679456958703914, 0.083069900197001, 0.3309426579024409, 0.26688586866917724, 0.9192839423182766, 0.6761297223272451, 0.8634921588059512, 0.3641776764262406, 0.07105652151473661, 0.638576461198664, 0.5158201022581369, 0.18773080851618187, 0.9794950200707434, 0.030757322275027445, 0.12654858838897112, 0.516623075772772, 0.6726438288432417, 0.8619437637488039, 0.26832033351594237, 0.16671475913405073, 0.47597506494500447, 0.26832033351594237, 0.33103771030897844, 0.4379392088149737, 0.47710404361073105, 0.29870455193966106, 0.18907888082918284, 0.5572259196360233, 0.03656866184199924, 0.9582282621180597, 0.5550300330305661, 0.021490040010816877, 0.7172481228230769, 0.021214122212747048, 0.9154421828074033, 0.9773127994379046], [0.33068141348563573, 8.593350587020757e-05, 0.3309426579024409, 0.9433941480795371, 0.0708527651236971, 0.9637475098537045, 0.00011510673076206701, 0.014653120601969037, 0.004128390456737541, 0.0002684664660619145, 0.030757322275027445, 0.0012733588546975719, 0.00011502687618264501, 0.03094928876982789, 0.9874970647888057, 0.036934524177878174, 1.000001, 0.9768217822148034, 8.652987450879068e-05, 0.33027807770116413, 0.4350666461658563, 0.043794533092498256, 0.0079518558002971, 0.26780714171343867, 0.9632863609954513, 0.00011525005713234846, 0.0033052451168889443, 0.21253804987519323, 0.12771684411789036, 0.296163532214751, 0.8872162081967185, 0.00035198256541420865, 0.0012787026565728493, 0.01461215117076574, 0.004145715738281864, 0.030960400242890637, 0.18915129072909345, 0.9973367244227381, 0.5572259156216559, 0.6745297821978302, 0.9908821292191169, 0.9794433886888166, 0.025679596602645047, 0.12692162848559832, 0.7942695140485575, 0.9417700832061707, 0.5562000894997272, 0.6375991926455912, 0.09599630416170941, 0.0026243484194646807, 0.007964043812211843, 0.0003503690361799961, 0.9626411233066254, 0.002073181134088918, 0.0009941615762464008, 0.7554806785195752, 0.05146244434627625, 0.9936917858296112, 0.8580541116036945, 0.0009969012845816836, 0.23845155520994554, 0.007921277749021365, 0.6385764571732854, 0.7957915518888494, 0.000770999992025621, 0.6388821594193221, 0.0002685692783371494, 0.43841107129869666, 0.0007748657882596767, 0.00020372113451575148, 0.7567291621132073, 0.0012796822314090908, 0.9938925187010929, 0.07113818956775206, 0.0012712884359469391, 0.9796309151997763, 0.003309281484186981, 0.9712276630479489, 0.011978946014879796, 0.021495697697199424], [0.4382851926182217, 0.000203589553608476, 0.4379392125615388, 0.9905265084681582, 0.11127747301434882, 0.9965494319879049, 0.0002646392855085321, 0.02582936181785184, 0.007959280813072981, 0.0005951784280383436, 0.050787114413039784, 0.0026290627967730765, 0.0002685242931230347, 0.051808428369092566, 0.9851679193993935, 0.060889850286541, 0.9768217822148034, 1.000001, 0.00020317585449570582, 0.4338502204090388, 0.5566261813351511, 0.07073079119649353, 0.01465136742420994, 0.3651987548482852, 0.9908423339981732, 0.0002686206992375245, 0.006439857992817191, 0.2942983719263537, 0.1891875083754561, 0.40047345284634417, 0.9629867326011988, 0.0007749955996080282, 0.002605575295948849, 0.025581460959455984, 0.007888174251873012, 0.05141935911475719, 0.26707114761878903, 0.9589393849492087, 0.678463675154417, 0.7799545633073671, 0.9422434797829107, 0.9167575463258156, 0.04298774156407939, 0.18516088776259856, 0.8940363774997574, 0.990905841809454, 0.6797149977879302, 0.7505791515956686, 0.14645904561487058, 0.005129471948946993, 0.01461215117076574, 0.0007746989198889324, 0.9891365865218522, 0.00415375946499012, 0.0020787451606483426, 0.8521811408356755, 0.08159617816342449, 0.9509184058170161, 0.9269459448587546, 0.0020789939025753906, 0.32534386664113013, 0.01464891332800409, 0.7580885497478707, 0.8910461259853868, 0.0016352294910956882, 0.7576532802150137, 0.0005979193602738599, 0.5550300329977593, 0.0016339386494210251, 0.0004598051031437876, 0.8639882324447447, 0.0026296290908703257, 0.9627121693047643, 0.11009085446074163, 0.0026275532753954143, 0.9178990566867504, 0.0063902726596524895, 0.9014422366309289, 0.021260878802898616, 0.03673091604876103], [0.01777355028870978, 0.9931079451811463, 0.017787591721310395, 0.00035210894422443726, 0.12714050246129643, 0.0002685242931230347, 0.9930499455557438, 0.365198754848285, 0.5945129078751462, 0.9635399655547904, 0.23806384741109496, 0.79095020103789, 0.9923610233248509, 0.23954968164326804, 0.00015333066064355825, 0.21340956460095728, 8.652987450879068e-05, 0.00020317585449570582, 1.000001, 0.0177518716924652, 0.009728133151460634, 0.18890250010847914, 0.47638529321433926, 0.02582936181785182, 0.00026839580545388815, 0.9942864522592388, 0.6375991966648098, 0.03678369328349608, 0.07117394837557287, 0.021323551363717913, 0.0005942106972428677, 0.9430555725815052, 0.7942695176248559, 0.3641776764262406, 0.5970078519989176, 0.23963568522979833, 0.04385221315376664, 6.442350237260948e-05, 0.005183395528102423, 0.002610318414799118, 4.778162880876328e-05, 3.5257761834813684e-05, 0.26625433540265414, 0.0707307911964935, 0.001278702687663453, 0.0003515027842550575, 0.005173853146127807, 0.003305245191300353, 0.09599630416170929, 0.6781552617322965, 0.47711546108653413, 0.938732495573254, 0.00026821602600697174, 0.7176430059516654, 0.8272158897841582, 0.0016292532636744354, 0.1657084479028625, 6.418805560287555e-05, 0.000769820069223142, 0.8294955295554691, 0.030807414152453107, 0.4745534021075649, 0.0033103112248180347, 0.0012811530320902293, 0.8593692729673887, 0.0033118959521676594, 0.9639089641026976, 0.009802914827541961, 0.8636781530367288, 0.9794433886888166, 0.0016319457163438465, 0.7948779831102911, 8.600139491843144e-05, 0.12765267735198035, 0.789664154986532, 3.52645123679609e-05, 0.6383778331821204, 3.49620141670147e-05, 0.399927563998843, 0.2985544785122068], [0.9931079451043835, 0.017486666440145963, 0.9953206044774253, 0.5132589642603345, 0.7072770772621955, 0.4748828452853796, 0.021500327821187725, 0.36397728762702325, 0.18615609513227396, 0.03693452480982699, 0.5160299901200452, 0.09489993796529775, 0.021189261227070152, 0.5128292552291089, 0.40104887405845757, 0.5542867269717772, 0.33027807770116413, 0.4338502204090388, 0.0177518716924652, 1.000001, 0.961445902754394, 0.5981089418065942, 0.2662543325254294, 0.9823823644042531, 0.47693281040000257, 0.021260878805025335, 0.1652688630207433, 0.9637475098537044, 0.8557778992543866, 0.9778397358535013, 0.5870483143171962, 0.04352289250418895, 0.09644531271395022, 0.3652249739578469, 0.1891875083754561, 0.5167096243654883, 0.943394148079537, 0.2984758987130616, 0.9178990566867505, 0.8298330489887105, 0.267550913999183, 0.23963568522979878, 0.4763852893533667, 0.8623357610403589, 0.7135331657442303, 0.5113954088968109, 0.913144836369123, 0.864008908364118, 0.7849164261075713, 0.14649059255609223, 0.26768540296740273, 0.043157815613657266, 0.47706978895611085, 0.12667887706981404, 0.08200333801579032, 0.7583788683480766, 0.6383778332024381, 0.2986688133327443, 0.6383778291783117, 0.08242633716540669, 0.9788107503439865, 0.2643433717168786, 0.858731990114195, 0.7183302771118277, 0.07028534721519013, 0.8599658689468543, 0.036807467773265296, 0.9781551139601212, 0.07101062613989238, 0.03087162003192114, 0.7513159441414565, 0.09578289842970168, 0.33078430332587533, 0.7197067945838611, 0.09465498631700318, 0.2394522482160191, 0.16682251227087821, 0.2394522482160191, 0.33106147357826665, 0.43819080732321775], [0.976821782263659, 0.009803618618818573, 0.97507016700356, 0.6372788577572163, 0.598151882489352, 0.5953671405125869, 0.011722866871606697, 0.26668795401648937, 0.12801058889687075, 0.021237995871255574, 0.38883888998078525, 0.0609364961328576, 0.012011095243273215, 0.4001285907140422, 0.5058089281026774, 0.4366834002645239, 0.4350666461658563, 0.5566261813351511, 0.009728133151460634, 0.961445902754394, 1.000001, 0.4694592459286586, 0.18873982875847065, 0.9426719960128491, 0.5899776576475328, 0.012003337098574495, 0.11120293451724592, 0.8724779261442607, 0.7573813637039878, 0.9640935163565681, 0.719724017734708, 0.025817619940373588, 0.059888389910504845, 0.26298050929905475, 0.12580880994231242, 0.39513301665744216, 0.8549386610692536, 0.3964685301976202, 0.9736711379363533, 0.8929400877363386, 0.3627165033002055, 0.32759387934598, 0.3540802288736731, 0.7340943818131606, 0.8294955295554691, 0.6383778332024383, 0.9777572645950233, 0.9269459448587545, 0.6795198347717062, 0.09465498631700331, 0.1877308085161818, 0.025876999665229453, 0.5885674995646047, 0.08304406146221281, 0.05179974964540985, 0.8443658464897958, 0.5018903014231566, 0.3919686335174422, 0.7366284289663999, 0.05171923867139313, 0.8959366926489564, 0.18915129072909356, 0.941251876303568, 0.8239560408815394, 0.04385221242320135, 0.9400813240426155, 0.02139306294050594, 0.9904734673102906, 0.04365641204231967, 0.017698849302324744, 0.8626866465687425, 0.06076612057822573, 0.42649005636505344, 0.5862481036529125, 0.06094232937521385, 0.32822163888950373, 0.10972001030367626, 0.3203990222883883, 0.23513664750282565, 0.326904727249228], [0.594954108257283, 0.18638342909407798, 0.5961084682409445, 0.09592970732202724, 0.9651111246336157, 0.08285548373162485, 0.21335339251972615, 0.9188660602227061, 0.7098714244523997, 0.2986688133327441, 0.9885373895357726, 0.5097459517137446, 0.2108510950734184, 0.9848539029832718, 0.06091899975452457, 0.9936917853821889, 0.043794533092498256, 0.07073079119649353, 0.18890250010847914, 0.5981089418065942, 0.4694592459286586, 1.000001, 0.8260289973268562, 0.6750949831161582, 0.08313353749911115, 0.21150300543101827, 0.67452978219783, 0.7578890201803676, 0.8872162081967188, 0.6280737376573214, 0.12596847657312185, 0.32904739601863364, 0.5168085547928674, 0.9208692327379828, 0.7197067945838611, 0.9908821292236222, 0.7953346381231073, 0.036942480421769876, 0.3643607364622512, 0.26768540296740295, 0.0309367005866373, 0.02586399915709059, 0.9773127981177625, 0.8915366941315407, 0.18788811389974622, 0.09561800697153015, 0.36271650330020566, 0.29870455193966133, 0.933624571758503, 0.6390656550294338, 0.8298330489887102, 0.3265372532243492, 0.08314149558831778, 0.5930209489758628, 0.4716212126803939, 0.2134095621026088, 0.9957865900131934, 0.036934524809827035, 0.1462069126194511, 0.4738271513335635, 0.7186225665977615, 0.8206501170907233, 0.2973352553620842, 0.18897032025268987, 0.43293754349574426, 0.29770548551826714, 0.29786938817455466, 0.47670460020366223, 0.4369447334834284, 0.2675509140125642, 0.21188801976674063, 0.5140456493706669, 0.04379453309090526, 0.9794433873524365, 0.5085275625684417, 0.025849148899543532, 0.6797637973056999, 0.025804649264269734, 0.8939294102034775, 0.9639089641026976], [0.2683203335171621, 0.4761915302692556, 0.2682240352018554, 0.021508046910739785, 0.7183302732305804, 0.017787591384928796, 0.5108694478165198, 0.9788107503706892, 0.9781551152458213, 0.6365472586978282, 0.8797740987376552, 0.8626866465373627, 0.5162152561976417, 0.8941219605524708, 0.011899233668456518, 0.8638228429125987, 0.0079518558002971, 0.01465136742420994, 0.47638529321433926, 0.2662543325254294, 0.18873982875847065, 0.8260289973268562, 1.000001, 0.331061473578267, 0.017711136293106344, 0.5166230757727722, 0.9640243051160015, 0.3964685266273214, 0.5572259156216561, 0.2978693850749097, 0.030922637499626978, 0.6797800645860493, 0.8580541116036944, 0.9712276617360266, 0.9729025269971096, 0.8893206212873164, 0.43718529472919804, 0.00641785806610047, 0.12791259898240426, 0.08180733454272483, 0.00517781656439274, 0.004141749274933269, 0.9062873310129553, 0.5476416436962986, 0.05181834773208469, 0.02150392971791208, 0.12801977929849642, 0.09570270737731269, 0.638576457173285, 0.9372061627932267, 0.998469620182645, 0.6787397428702778, 0.017685724360078432, 0.9208692327379828, 0.830389268275085, 0.06030256535758547, 0.7839965733402726, 0.006372405760791891, 0.03640799625189751, 0.8310850667176264, 0.36023388199211714, 0.9988280926622919, 0.09643838900916335, 0.05171923950973372, 0.7948779831102915, 0.09641069915748139, 0.6387445793290605, 0.18873982875847065, 0.7955059513802345, 0.5978084433431285, 0.06093649613230352, 0.863988232448673, 0.007855020794178942, 0.7135331618889025, 0.8619437637488039, 0.004145715738281864, 0.9589393849492086, 0.004081924156560942, 0.9823823644042532, 0.9406889268667384], [0.9908109948617454, 0.025839871818339702, 0.9903131972765298, 0.43841107130268364, 0.7945927069113983, 0.40084738138014114, 0.030606803963503477, 0.43793921257547685, 0.2396356852297985, 0.05157710343892024, 0.5878214828450581, 0.12787281200371275, 0.030970033413987713, 0.5981518824893517, 0.32759387610090823, 0.638882159419322, 0.26780714171343867, 0.3651987548482852, 0.02582936181785182, 0.9823823644042531, 0.9426719960128491, 0.6750949831161582, 0.331061473578267, 1.000001, 0.39893346939464935, 0.03099005034749349, 0.2135321652518623, 0.9784407973763521, 0.9210455445172698, 0.9953339291542939, 0.5158201022581376, 0.060940871012138666, 0.12703405828596556, 0.43427610168712366, 0.23806384741109513, 0.5945129078751464, 0.9762842859945268, 0.23894852012458062, 0.862996370012028, 0.7454239571268094, 0.21321048210858928, 0.18854120354627782, 0.5476416436962982, 0.903948060930582, 0.6391268306046324, 0.4384110712986969, 0.864008908364118, 0.788965273249617, 0.8634921588059513, 0.18756466214613857, 0.3304282825258451, 0.060870910612242014, 0.398322949677298, 0.1668424741950058, 0.11130676749637382, 0.6719520266316568, 0.7081746976118904, 0.2371540722996553, 0.548336667329222, 0.11137337808726121, 0.9829072631535869, 0.3307843033258751, 0.7956392205349004, 0.63759919666481, 0.0963645670706171, 0.7953346381231073, 0.05177496453692099, 0.9417700832061708, 0.09638993698610372, 0.04382388762829728, 0.6797637973026096, 0.1280105888968706, 0.2643433717168789, 0.7882292837012267, 0.1277749275556804, 0.18873983105299766, 0.212233100329699, 0.18567559700634909, 0.39726629415312154, 0.5144025129185302], [0.4751897773877824, 0.0002652479476642591, 0.4759750610873571, 0.9936917853234534, 0.1264123867442022, 0.9976098109691669, 0.00035198256541420773, 0.030949288768702083, 0.00969095651271859, 0.0007751439820799894, 0.06073268401518689, 0.0032750113136517747, 0.0003488213309514682, 0.060657156112000246, 0.990052546006259, 0.07113818847870265, 0.9632863609954513, 0.9908423339981732, 0.00026839580545388815, 0.47693281040000257, 0.5899776576475328, 0.08313353749911115, 0.017711136293106344, 0.39893346939464935, 1.000001, 0.0003497993533922468, 0.007915403563565068, 0.330562734218266, 0.21223310032969914, 0.4319440854847033, 0.966243472347945, 0.0009941615762464034, 0.003312450711373868, 0.030978186899799098, 0.00980174195448936, 0.06094087101213872, 0.2986688102356441, 0.9444106126703237, 0.7186225627149353, 0.8282459030926599, 0.919988180000694, 0.8939294130209985, 0.05164132438085231, 0.21267542008577484, 0.9161215489979877, 0.990842333552034, 0.7158591728955774, 0.7955059477983688, 0.16526886302074364, 0.006437546772271447, 0.017779080102280197, 0.0009873333871660828, 0.9999042825829593, 0.005148163939324066, 0.0026055752361160028, 0.8930741324945177, 0.09616875184493559, 0.9433941502334385, 0.9613289388650123, 0.0026165098424179288, 0.3643607330170331, 0.01760760019474232, 0.7930729583854621, 0.920516707958842, 0.002057365842038362, 0.7939084580511856, 0.0007736614349612115, 0.5979372099108828, 0.00207422325346534, 0.0005976761497572907, 0.8886611273994544, 0.0032997919843078772, 0.9618121669815041, 0.12794627454997182, 0.003267808960298748, 0.8935872036880929, 0.007963853230927133, 0.8905132087580202, 0.025863998691266918, 0.04386060846986265], [0.021495697697688075, 0.9971219466421108, 0.02147564534656036, 0.000460234434769883, 0.1464029770234869, 0.00035198256541420773, 0.9839531267010262, 0.4001285907322351, 0.6388821594077023, 0.9729025256829247, 0.2626094692612946, 0.830786796013379, 0.9997846486749143, 0.2682240352018554, 0.0002009755938585215, 0.2396356852374254, 0.00011525005713234846, 0.0002686206992375245, 0.9942864522592388, 0.021260878805025335, 0.012003337098574495, 0.21150300543101827, 0.5166230757727722, 0.03099005034749349, 0.0003497993533922468, 1.000001, 0.6797149977941114, 0.043157815618759254, 0.08313353749911115, 0.02584914843316461, 0.0007744950184575203, 0.9637475098537044, 0.8223801321033024, 0.39604181035092345, 0.6324173628822192, 0.2660186876766649, 0.0515413221473222, 8.600139492468796e-05, 0.006424619257698112, 0.003242570032966612, 6.426182659673632e-05, 4.7526183889328785e-05, 0.2923679862070401, 0.08125129107033759, 0.0016355034370687921, 0.00046049883805507113, 0.006438625238642409, 0.004105926660765182, 0.11136271771417094, 0.7114359995445625, 0.5150430266795604, 0.9637475098361765, 0.0003491637451788583, 0.7585240693348686, 0.8639262076552531, 0.0020483267391448916, 0.18542249875503264, 8.524531523431841e-05, 0.0009789343402024219, 0.8638228429125989, 0.036269729494721084, 0.5167096243584401, 0.004150182550444451, 0.0016292532636744354, 0.8939294102034775, 0.00414740263533875, 0.9777572632742807, 0.011957465633876476, 0.8927536143497872, 0.988986959444619, 0.002078993902594297, 0.8306078850137599, 0.00011349839059350326, 0.14464782047848734, 0.8303892682750852, 4.75899168038697e-05, 0.6739327986032141, 4.669644092444607e-05, 0.43293754349574426, 0.32878764771321944], [0.16682251227087821, 0.6383778332024383, 0.1667147591340504, 0.00980174195448936, 0.5566261773251038, 0.007957185758610975, 0.6704742802398943, 0.8927536143497874, 0.9968595028272104, 0.7915371816169938, 0.7444434922061063, 0.9632863609954513, 0.679373499277955, 0.7584696157011986, 0.00512419626755394, 0.7192935626033241, 0.0033052451168889443, 0.006439857992817191, 0.6375991966648098, 0.1652688630207433, 0.11120293451724592, 0.67452978219783, 0.9640243051160015, 0.2135321652518623, 0.007915403563565068, 0.6797149977941114, 1.000001, 0.26465352112263635, 0.40108726509548015, 0.1888256644066803, 0.014632096308536095, 0.8310254040111488, 0.955823543665645, 0.8847355936586295, 0.989136586076481, 0.7533143067796432, 0.2975274327471049, 0.002618326350142212, 0.07123529101264398, 0.04304641851163572, 0.0020751665747487363, 0.0016292532636744354, 0.7810191773424935, 0.3930958483526486, 0.02587885794653613, 0.00980361861881859, 0.07134276786883936, 0.051325926788977114, 0.4769328104000019, 0.988213866328336, 0.961812166981504, 0.8303892682750854, 0.007902533507416815, 0.9908821292191169, 0.9441394468595157, 0.030606803963503477, 0.6280737376573214, 0.0025975441974331807, 0.01748666610945517, 0.9444784136375186, 0.23606693029092682, 0.9635399655547904, 0.05179975048505541, 0.025804649264269702, 0.9205167104456877, 0.05177496453692092, 0.7948779831102915, 0.110990246812908, 0.9202744296446183, 0.7576532802150137, 0.030996725532987626, 0.9639089641026977, 0.0032599982790187582, 0.5514290175062061, 0.9626411233066254, 0.0016311258035165168, 0.9931079451043835, 0.0016032623029682998, 0.9113983475752934, 0.8266420105494402], [0.9539954272032792, 0.036116426753512974, 0.9566702319053313, 0.36139954179233336, 0.844365846489796, 0.3285123811432256, 0.04386165808879301, 0.5136644483102987, 0.2923679861671599, 0.07120631707080094, 0.6795198347717061, 0.16330316317842286, 0.04298774156407939, 0.6719520266316565, 0.2683010710866896, 0.7135331618889028, 0.21253804987519323, 0.2942983719263537, 0.03678369328349608, 0.9637475098537044, 0.8724779261442607, 0.7578890201803676, 0.3964685266273214, 0.9784407973763521, 0.330562734218266, 0.043157815618759254, 0.26465352112263635, 1.000001, 0.950918405817016, 0.9544540458648515, 0.4278393943600739, 0.08218407595076685, 0.16675865015621952, 0.5167096243654883, 0.2985544785122068, 0.6789834253619437, 0.9948338591778126, 0.1887398310529976, 0.7909502010378902, 0.679519834771706, 0.165962433456189, 0.1460670292989239, 0.6388821594193218, 0.9635399655547904, 0.5502689977804266, 0.35981172125924776, 0.7857997446124194, 0.7194484967871679, 0.9039480609305823, 0.23982500184174138, 0.39921041914303057, 0.08136998510238953, 0.33078430332587516, 0.21036725690164412, 0.14376782701833848, 0.5981518824893519, 0.7956392205349003, 0.18918750837545625, 0.47701270978021965, 0.14464782047848734, 0.997623166750643, 0.3930958483526486, 0.7128675433521892, 0.5550300330305665, 0.12547206661201799, 0.7141652281620953, 0.07085276512369701, 0.8910461260340038, 0.12703405828596578, 0.06052231150037124, 0.5899776576475332, 0.165106788906286, 0.21351683600650692, 0.8638228429125989, 0.16281929856760835, 0.14589934368486088, 0.26801230054887787, 0.14640297893516074, 0.4770127097802193, 0.5970078519989176], [0.8638228429125985, 0.07126086604583091, 0.8632648869166103, 0.23986517913420255, 0.962986732601199, 0.21335339251972615, 0.0820033380157905, 0.6787397428949665, 0.4380754751205382, 0.1273353739435687, 0.8156575307266752, 0.26809569120477683, 0.08309177002334425, 0.8310254040111488, 0.16493697951115704, 0.8634921556955659, 0.12771684411789036, 0.1891875083754561, 0.07117394837557287, 0.8557778992543866, 0.7573813637039878, 0.8872162081967188, 0.5572259156216561, 0.9210455445172698, 0.21223310032969914, 0.08313353749911115, 0.40108726509548015, 0.950918405817016, 1.000001, 0.8923904995097313, 0.29827597073021656, 0.14647656894098565, 0.26601868767666514, 0.6726438288432417, 0.43468159622858105, 0.8253769342627896, 0.9757003876834304, 0.11085221954779648, 0.6381487238023446, 0.5072149729818158, 0.0962608505704141, 0.08280593045528464, 0.7810191738258565, 0.980075615861478, 0.4010776706025962, 0.23991110427971196, 0.6391115361618422, 0.5519703218755694, 0.9905265084681583, 0.3617543031627734, 0.5559472541906784, 0.14636444363224108, 0.21188801976674043, 0.3310614735782671, 0.23982499914213576, 0.432937543495744, 0.9051386004049128, 0.10997236446225601, 0.32534386668107024, 0.2399111015791372, 0.9293447296022511, 0.556945957373679, 0.5570659262688791, 0.3999275639988427, 0.21340956210260895, 0.5567993727232209, 0.12787281200371298, 0.7559327894891633, 0.2133533925197265, 0.11124285880825557, 0.4384530388950601, 0.2682689701144989, 0.12596847655823, 0.9539954272032795, 0.26791611278325905, 0.08290110129667269, 0.39832294964650944, 0.08148495370312245, 0.6324173628218344, 0.7544689308384718], [0.9942864522592388, 0.021506502870998895, 0.9923610233248509, 0.47547415456544484, 0.7584696157011989, 0.4360985929867277, 0.025213761504145758, 0.39832294967729776, 0.21349128971260978, 0.04326121810459364, 0.5393181290200829, 0.11134939368422972, 0.02586956973727163, 0.5556679383528625, 0.3569302019571821, 0.595367136491514, 0.296163532214751, 0.40047345284634417, 0.021323551363717913, 0.9778397358535013, 0.9640935163565681, 0.6280737376573214, 0.2978693850749097, 0.9953339291542939, 0.4319440854847033, 0.02584914843316461, 0.1888256644066803, 0.9544540458648515, 0.8923904995097313, 1.000001, 0.5572659251597115, 0.05166975566573826, 0.10930332443186519, 0.3925412281152555, 0.2095683409737296, 0.5483366672643992, 0.9530142581616187, 0.2649513561431994, 0.8879596257843073, 0.7701615988023519, 0.23806384741109532, 0.21107827960407782, 0.5001637640540847, 0.8637527369860009, 0.67815526570182, 0.47638529321433976, 0.8919848428615232, 0.8145457041515486, 0.8306078849948769, 0.16353389369191285, 0.2961635291476697, 0.05180842753001295, 0.430870411748205, 0.14626640439992158, 0.09638993559727856, 0.7023016390307559, 0.6590209880679764, 0.2618313644778672, 0.5798994388595984, 0.09621709129485435, 0.9622792141684569, 0.2986187833697015, 0.827750546148244, 0.6733041215200851, 0.0831096678000546, 0.8266420138992939, 0.043593773832276646, 0.9539954272032795, 0.08269503465240115, 0.036730915420295863, 0.7183302771118276, 0.11099024681896377, 0.29010293916914465, 0.7423798287356982, 0.11137071289832237, 0.21150300788781437, 0.18615609286915757, 0.20628439546052144, 0.35745161164376, 0.47058403068272864], [0.5964366575627174, 0.0005988214762579278, 0.5953671405125874, 0.9880407342872471, 0.18918750837545642, 0.9750701670035598, 0.000756398151575559, 0.05150310062641446, 0.017792700446595575, 0.001615277565499323, 0.09350230996632192, 0.006439395682370403, 0.0007749955996185996, 0.09621709268118919, 0.9243763664275623, 0.11092386537159601, 0.8872162081967185, 0.9629867326011988, 0.0005942106972428677, 0.5870483143171962, 0.719724017734708, 0.12596847657312185, 0.030922637499626978, 0.5158201022581376, 0.966243472347945, 0.0007744950184575203, 0.014632096308536095, 0.4278393943600739, 0.29827597073021656, 0.5572659251597115, 1.000001, 0.00207422325346534, 0.006328638236320851, 0.050787114413039784, 0.017486666440146043, 0.0950158298293098, 0.39687670729816943, 0.8540593748606216, 0.8260289973268563, 0.8929400877363387, 0.8253769343265872, 0.7874562914485784, 0.08060252635597363, 0.2891049672414402, 0.9777572632742808, 0.9897445920139608, 0.829495526194052, 0.8775032634760354, 0.23982500184174158, 0.011790388997449153, 0.030757322275027445, 0.0020789939025943026, 0.9639339678693499, 0.009792364019916037, 0.005181907134829981, 0.9421975988380129, 0.14225857441703343, 0.8443658464897958, 0.9688952211284334, 0.005173853034307382, 0.4640975890030192, 0.030990050347493532, 0.8910461260340038, 0.9712276617360266, 0.00415286494744191, 0.8899380102536261, 0.0016270713505450612, 0.7128675433521892, 0.004134322381547809, 0.0012743038407623793, 0.9626411233066253, 0.006421391437287362, 0.8697262683234005, 0.18542250098478155, 0.00644001210369468, 0.788965273249617, 0.014436972951356647, 0.7701615988023518, 0.04298774156407939, 0.07044700133570289], [0.04386060847006208, 0.9426719981350985, 0.04384486720048094, 0.0012811530009458737, 0.2394522455206092, 0.00099845315377934, 0.9530142598780452, 0.5567993687271167, 0.7945927033047419, 0.9936917858296112, 0.394651068570661, 0.9430555704240892, 0.9629867325705492, 0.40108726509548015, 0.0005931309624724229, 0.3651550605200218, 0.00035198256541420865, 0.0007749955996080282, 0.9430555725815052, 0.04352289250418895, 0.025817619940373588, 0.32904739601863364, 0.6797800645860493, 0.060940871012138666, 0.0009941615762464034, 0.9637475098537044, 0.8310254040111488, 0.08218407595076685, 0.14647656894098565, 0.05166975566573826, 0.00207422325346534, 1.000001, 0.9379914629733533, 0.552485706496514, 0.7903258255561737, 0.39893346939464935, 0.09616875184493563, 0.0002677030337063519, 0.014641903889119078, 0.007836245810209804, 0.0002035262218686364, 0.00015341507730294942, 0.43141723853236125, 0.1439571755889058, 0.004153660064630986, 0.0012809077553422826, 0.014654172609319529, 0.009728133151460651, 0.18902911510283268, 0.8573357311256619, 0.6787397428949665, 0.9984696201463262, 0.0009927351535157325, 0.8939294102034778, 0.9632863609954514, 0.005129471838575532, 0.2942983689120412, 0.00026580711767101216, 0.0025915835761657763, 0.9640935163565683, 0.07036781177078191, 0.6789834253403333, 0.009802914827631118, 0.004145715738281864, 0.9785062930867493, 0.009800100167821716, 0.9971219466421108, 0.025817619940373588, 0.9792793311090049, 0.9903131972765298, 0.005183395416075767, 0.9444784136418131, 0.00034769624097229706, 0.23785314949809142, 0.9422434797829107, 0.00015356199959129928, 0.8266420105494405, 0.00015119908725852633, 0.5930209489758634, 0.47518977741587004], [0.09585856868638895, 0.7830403275327334, 0.096058349675562, 0.004128390456737541, 0.3946510685706608, 0.003299791984502922, 0.8306078849948769, 0.7563489705782697, 0.930479643876548, 0.9207149876341154, 0.5970078519989176, 0.9851547307625917, 0.8197276232372932, 0.5940436025166606, 0.0020787451606483444, 0.5546715308939025, 0.0012787026565728493, 0.002605575295948849, 0.7942695176248559, 0.09644531271395022, 0.059888389910504845, 0.5168085547928674, 0.8580541116036944, 0.12703405828596556, 0.003312450711373868, 0.8223801321033024, 0.955823543665645, 0.16675865015621952, 0.26601868767666514, 0.10930332443186519, 0.006328638236320851, 0.9379914629733533, 1.000001, 0.7584696157011989, 0.9445010157503678, 0.5981089418120332, 0.18902911740087658, 0.0009982381602949844, 0.03684977147854444, 0.021466910433142212, 0.0007733097469055987, 0.0005983201328128017, 0.6378891658817148, 0.26768540296740295, 0.011920894946924384, 0.004114188539661711, 0.03667119338924936, 0.02587885794653613, 0.32690472724922787, 0.9796309138765029, 0.8623357610403591, 0.9304796438765481, 0.003313084920897158, 0.9814659449150323, 0.9851679193993935, 0.01464891332800409, 0.47638528935336705, 0.0009984531785054728, 0.007951855800297085, 0.9900127836972915, 0.1463189191557705, 0.8521811408356754, 0.025740507224053414, 0.011995297146094474, 0.977340930816015, 0.02577502540953446, 0.9178990567368325, 0.06087091061417938, 0.9869064589805384, 0.8910461260340037, 0.014528469443359926, 0.9938925187010929, 0.0012796822314090908, 0.40104887405481005, 0.9827059537186372, 0.0005979193602956084, 0.964024305124768, 0.0005974044757517952, 0.7957344264488804, 0.6795198347717061], [0.3624128308897904, 0.3584452571079431, 0.3632724481114518, 0.03667119338624816, 0.8156575307266747, 0.030830276433246474, 0.40100089042693665, 0.9959639122926686, 0.9051386002937949, 0.516375873949573, 0.9629867326011988, 0.7454239570352985, 0.39465106852400667, 0.9558235436656448, 0.021508046910739757, 0.938732495573254, 0.01461215117076574, 0.025581460959455984, 0.3641776764262406, 0.3652249739578469, 0.26298050929905475, 0.9208692327379828, 0.9712276617360266, 0.43427610168712366, 0.030978186899799098, 0.39604181035092345, 0.8847355936586295, 0.5167096243654883, 0.6726438288432417, 0.3925412281152555, 0.050787114413039784, 0.552485706496514, 0.7584696157011989, 1.000001, 0.9209794236444784, 0.9637475098537044, 0.5564264120186588, 0.011999603720701397, 0.18842844013170046, 0.12787281200778267, 0.009770127368724832, 0.007951855964707323, 0.9785062944396471, 0.6787397428949666, 0.08234944663632708, 0.03653105224524504, 0.1873896916681373, 0.14648708700464327, 0.7472814579054687, 0.8639882324447449, 0.9768217822148034, 0.5476416436290682, 0.03099005034707078, 0.8215343286070136, 0.7090395170837592, 0.09643838900916335, 0.8933520079653605, 0.012012532724872479, 0.060889850288202076, 0.7128675395004581, 0.47683010615405114, 0.963933967755397, 0.14548097135050422, 0.08294277292997432, 0.6688717199393972, 0.14570395374724257, 0.5144025129185307, 0.2678071417134386, 0.6761297183695788, 0.4748828452853793, 0.09543512713580972, 0.7526836193194484, 0.014645758665174428, 0.8311049552383104, 0.7434287348055802, 0.007945008406608452, 0.8937796775054732, 0.00795185596499656, 0.9977186653641046, 0.9900525459792496], [0.1880365489612051, 0.5885674995646046, 0.18842844014283808, 0.011940309301467835, 0.5885674995646046, 0.00976428401622168, 0.6387445753026215, 0.918404408795315, 0.9851547307625917, 0.7582518402829773, 0.7942695176248559, 0.930479643876548, 0.6303775608532318, 0.7903258291147149, 0.006438625238642409, 0.7549927060750892, 0.004145715738281864, 0.007888174251873012, 0.5970078519989176, 0.1891875083754561, 0.12580880994231242, 0.7197067945838611, 0.9729025269971096, 0.23806384741109513, 0.00980174195448936, 0.6324173628822192, 0.989136586076481, 0.2985544785122068, 0.43468159622858105, 0.2095683409737296, 0.017486666440146043, 0.7903258255561737, 0.9445010157503678, 0.9209794236444784, 1.000001, 0.7957344264561161, 0.33078430660255065, 0.0033111827310008716, 0.08290110129667273, 0.05171923950973372, 0.0026243484194646807, 0.002077402516933781, 0.8294955295554691, 0.4374050532509579, 0.03075732281513341, 0.011899233903116773, 0.08249935334340151, 0.06094087197251746, 0.5103196026362422, 0.9908821292191169, 0.9777572645950233, 0.7839965732511558, 0.00980361861881859, 0.9703216479577508, 0.9094810653947141, 0.036942480421769876, 0.6787397428949666, 0.0033118959521676625, 0.02147564534656039, 0.9139537164591451, 0.26801230343656957, 0.9662434736531349, 0.06061507654199488, 0.03094928931330483, 0.8818819632687475, 0.06069636174887958, 0.7559327895304083, 0.12787281200778278, 0.8905132059512669, 0.7172481189868115, 0.03663873803823874, 0.9387324934598736, 0.004148891643794029, 0.5981089418065942, 0.9281667714711869, 0.0020760110112994622, 0.9976231663105226, 0.0020742233020304805, 0.9444106126703238, 0.8636781530367293], [0.5144025128857861, 0.23663252677148783, 0.5153265851513, 0.0710106261353723, 0.9315713591964505, 0.06076612057518659, 0.26801230054887787, 0.9622495826765393, 0.7857997445302433, 0.365198754848285, 0.997108597607039, 0.5906415985673952, 0.26523682577673513, 0.9946301069910108, 0.04383542515142704, 0.994286452204989, 0.030960400242890637, 0.05141935911475719, 0.23963568522979833, 0.5167096243654883, 0.39513301665744216, 0.9908821292236222, 0.8893206212873164, 0.5945129078751464, 0.06094087101213872, 0.2660186876766649, 0.7533143067796432, 0.6789834253619437, 0.8253769342627896, 0.5483366672643992, 0.0950158298293098, 0.39893346939464935, 0.5981089418120332, 0.9637475098537044, 0.7957344264561161, 1.000001, 0.7194484967740833, 0.02587390406828592, 0.29815465120761186, 0.2129198530562476, 0.02147564534577925, 0.017787591720986953, 0.994833859227569, 0.8282459030926601, 0.14559590400159017, 0.0707934459866468, 0.2969086388054947, 0.2398651791342026, 0.8847355936586295, 0.7195690242236078, 0.8930741324660934, 0.39604181030950686, 0.06094087101241582, 0.6745297821426248, 0.5514290175062061, 0.16671475913859882, 0.9773127981621991, 0.025857191730659115, 0.11110717466568219, 0.5538756843176307, 0.6378891658817148, 0.8838256587516503, 0.23894852011045656, 0.1463644455434115, 0.510869447765418, 0.2392231493882534, 0.36436073646225103, 0.4008473813801413, 0.5153265851513004, 0.3302780777011638, 0.16570844789005415, 0.5953671404746887, 0.0309367005866373, 0.9441394468595157, 0.5892862584960931, 0.0177790804385009, 0.7585422214102455, 0.017733189838220666, 0.9441394468595156, 0.9908109948527354], [0.9422434797829105, 0.04344380929689733, 0.943394148109563, 0.330278077701164, 0.8856040813384947, 0.2983830552612128, 0.051669756503276765, 0.5569459613860295, 0.32822163888950373, 0.08313353873360853, 0.7158591767634728, 0.18756466214613857, 0.05141935911896545, 0.7176430059875584, 0.2394522455206092, 0.757381363703988, 0.18915129072909345, 0.26707114761878903, 0.04385221315376664, 0.943394148079537, 0.8549386610692536, 0.7953346381231073, 0.43718529472919804, 0.9762842859945268, 0.2986688102356441, 0.0515413221473222, 0.2975274327471049, 0.9948338591778126, 0.9757003876834304, 0.9530142581616187, 0.39687670729816943, 0.09616875184493563, 0.18902911740087658, 0.5564264120186588, 0.33078430660255065, 0.7194484967740833, 1.000001, 0.16685445249737546, 0.7580885497478707, 0.6356947838978968, 0.1464345118889949, 0.12802284291271657, 0.6761297183695784, 0.97367113786552, 0.5150430266795606, 0.32952019149030276, 0.7559327895304083, 0.6789834253403331, 0.9379914650850656, 0.26801230343656973, 0.4383586174581257, 0.09561800697153011, 0.29855447542036484, 0.23879417972871117, 0.16570844790286243, 0.5559472541906783, 0.827215889784158, 0.166459622229903, 0.4364013399745868, 0.1662844421444456, 0.986906458922204, 0.43506664616585644, 0.678463675154417, 0.5167714536651501, 0.14535917223619027, 0.6789834253619434, 0.08306990143357497, 0.8639882293365007, 0.1463189191604277, 0.0712830385016043, 0.5550300290320184, 0.18873983105299752, 0.18842843784095906, 0.892753617131129, 0.18720592435210273, 0.12801058889687075, 0.2986187864567783, 0.12724094579379422, 0.5160299901012748, 0.6390656550294337], [0.297869388159657, 6.377160619910378e-05, 0.2982759707302167, 0.9184044087953149, 0.060302566307905085, 0.9430555725815053, 8.632305175190045e-05, 0.012003337336379238, 0.003281601312398392, 0.00020376014503482875, 0.025758376938042917, 0.0009893201079603342, 8.578557025794103e-05, 0.0257904502550977, 0.9781551152814011, 0.0309367005866373, 0.9973367244227381, 0.9589393849492087, 6.442350237260948e-05, 0.2984758987130616, 0.3964685301976202, 0.036942480421769876, 0.00641785806610047, 0.23894852012458062, 0.9444106126703237, 8.600139492468796e-05, 0.002618326350142212, 0.1887398310529976, 0.11085221954779648, 0.2649513561431994, 0.8540593748606216, 0.0002677030337063519, 0.0009982381602949844, 0.011999603720701397, 0.0033111827310008716, 0.02587390406828592, 0.16685445249737546, 1.000001, 0.5163758739495727, 0.6361361033751436, 0.9971219461931441, 0.9908821292191169, 0.021407914548237574, 0.1107753165091003, 0.7554806785195752, 0.9161215514729593, 0.5147349878874354, 0.5976510996394289, 0.08249935334340154, 0.002077402516933781, 0.006437546772271447, 0.0002660680424294908, 0.9441394489850691, 0.0016270713505450584, 0.0007691755628633642, 0.7183302771118274, 0.04368462932011331, 0.9980635068602168, 0.827750546148244, 0.0007720339079659276, 0.21280269387730466, 0.006384617034517546, 0.5967364664532941, 0.7583788683480762, 0.0005936847989840203, 0.5972507752604383, 0.0002035262274586908, 0.40104887767000325, 0.0005979193602956095, 0.00015367963872818784, 0.7163561443886305, 0.0009959475119129086, 0.994286452204989, 0.060870911571518346, 0.0009873334117156032, 0.9906924489368987, 0.002630069626125754, 0.9855847834569549, 0.009792364019604349, 0.01779397785703885], [0.9205167104456876, 0.005156054773336764, 0.9209794236528535, 0.7580885497478707, 0.47455340213993086, 0.7196551237223429, 0.0064006798502066285, 0.18919203578164379, 0.08275244487571244, 0.011999603720701418, 0.295887254827501, 0.03678369328349608, 0.006414019650387015, 0.2984758987212041, 0.6361360993651475, 0.33099809991162393, 0.5572259156216559, 0.678463675154417, 0.005183395528102423, 0.9178990566867505, 0.9736711379363533, 0.3643607364622512, 0.12791259898240426, 0.862996370012028, 0.7186225627149353, 0.006424619257698112, 0.07123529101264398, 0.7909502010378902, 0.6381487238023446, 0.8879596257843073, 0.8260289973268563, 0.014641903889119078, 0.03684977147854444, 0.18842844013170046, 0.08290110129667273, 0.29815465120761186, 0.7580885497478707, 0.5163758739495727, 1.000001, 0.9703216479577508, 0.47710403974393323, 0.4381908073232182, 0.26577053103347076, 0.6324173668083884, 0.919988180029975, 0.757073309602249, 0.9988280926940821, 0.9874970647349263, 0.5553621860510354, 0.06073268496897109, 0.12801058889570666, 0.01458594898452695, 0.7180037374028087, 0.05171923950973372, 0.030890094891352443, 0.9394291463489067, 0.3976372352853281, 0.514045649370667, 0.8565769575621097, 0.030960400243875984, 0.8246859147538157, 0.1275061314977156, 0.9905265084681582, 0.920869232737983, 0.025775025409534493, 0.9908109948617454, 0.012013395153584273, 0.9792793324139931, 0.02587700013128726, 0.009803618618863145, 0.9430555704583922, 0.03693452480982699, 0.5529751097029194, 0.47518978123906547, 0.036730916051433166, 0.4383586174521463, 0.071206317067887, 0.4338502204090387, 0.1661849901353643, 0.2396356852297985], [0.8187669784132541, 0.002554638766520164, 0.8215343286891914, 0.8511824634959335, 0.35468234913494195, 0.8215343286891912, 0.0033118958776065218, 0.12680322911467892, 0.050405714991404796, 0.006414019650387015, 0.21353727524487703, 0.02092171074625593, 0.003227937442818147, 0.21011066964441438, 0.7578890201803676, 0.2368988223791265, 0.6745297821978302, 0.7799545633073671, 0.002610318414799118, 0.8298330489887105, 0.8929400877363386, 0.26768540296740295, 0.08180733454272483, 0.7454239571268094, 0.8282459030926599, 0.003242570032966612, 0.04304641851163572, 0.679519834771706, 0.5072149729818158, 0.7701615988023519, 0.8929400877363387, 0.007836245810209804, 0.021466910433142212, 0.12787281200778267, 0.05171923950973372, 0.2129198530562476, 0.6356947838978968, 0.6361361033751436, 0.9703216479577508, 1.000001, 0.5930209489758631, 0.5542867309649705, 0.18919203348161925, 0.5168085547928674, 0.96271217072337, 0.8467940629747662, 0.9627121694229501, 0.996191776855233, 0.4278393943600739, 0.036900070285363316, 0.0824993521175713, 0.007746748666456219, 0.8291184572908291, 0.030379134866432046, 0.01736365374287573, 0.9903131972765299, 0.29872599715892906, 0.6387445793290606, 0.9444784136375186, 0.01748666610945517, 0.719655123722343, 0.08100279068732452, 0.9840604908725272, 0.9729025269971096, 0.01427755508492474, 0.986229391130927, 0.006372405760791891, 0.9154421828740008, 0.014485768472101866, 0.005129471838575528, 0.9724882603800408, 0.02118926122707018, 0.6797149977941114, 0.3648056940214371, 0.020851734650637367, 0.5534384617564886, 0.04373483638563584, 0.5572659251597113, 0.11124285881179605, 0.16618499014518728], [0.2680956912047769, 4.74909398762629e-05, 0.268268970114499, 0.8933520079409892, 0.05150310062641451, 0.9208692327505441, 6.410209240672824e-05, 0.00980361861881859, 0.002616509902501873, 0.00015372745536140094, 0.021323551363717972, 0.0007709999920256196, 6.414659370763363e-05, 0.021483355574660003, 0.960225328822289, 0.0258695697372717, 0.9908821292191169, 0.9422434797829107, 4.778162880876328e-05, 0.267550913999183, 0.3627165033002055, 0.0309367005866373, 0.00517781656439274, 0.21321048210858928, 0.919988180000694, 6.426182659673632e-05, 0.0020751665747487363, 0.165962433456189, 0.0962608505704141, 0.23806384741109532, 0.8253769343265872, 0.0002035262218686364, 0.0007733097469055987, 0.009770127368724832, 0.0026243484194646807, 0.02147564534577925, 0.1464345118889949, 0.9971219461931441, 0.47710403974393323, 0.5930209489758631, 1.000001, 0.9973367244227381, 0.0176413411780436, 0.09552880931460517, 0.7186225627410747, 0.8919848400501313, 0.47638528935336705, 0.5556679383528628, 0.07105652260253578, 0.0016311258035165196, 0.005183767553194292, 0.00020267081924644936, 0.9192839448017915, 0.0012781213888106537, 0.0005964188374185739, 0.6765991047954897, 0.03667119338924941, 0.9930499451086106, 0.7896641549865321, 0.0005979193449500269, 0.18788811160105073, 0.005159634125672348, 0.5569459573736789, 0.7196551237157985, 0.00045835495038478206, 0.5571592461389409, 0.00015384522124887968, 0.3651550605150409, 0.00046041068675123717, 0.0001156368234771383, 0.678463675154417, 0.0007744950184575203, 0.9840764643513161, 0.05164132521511236, 0.0007698200692231441, 0.997623166750643, 0.002076010962616947, 0.988213866328336, 0.007936647011403765, 0.014641903888719629], [0.23934339892900328, 3.492939970933951e-05, 0.23963568523742582, 0.861943763748804, 0.043443809296897444, 0.8930741353093429, 4.764461303636061e-05, 0.007959280813072981, 0.002061308366604138, 0.00011563682675630335, 0.017698849637028218, 0.0005936847989840192, 4.741372194477847e-05, 0.017742952899569266, 0.9426719981350986, 0.021475645346560417, 0.9794433886888166, 0.9167575463258156, 3.5257761834813684e-05, 0.23963568522979878, 0.32759387934598, 0.02586399915709059, 0.004141749274933269, 0.18854120354627782, 0.8939294130209985, 4.7526183889328785e-05, 0.0016292532636744354, 0.1460670292989239, 0.08280593045528464, 0.21107827960407782, 0.7874562914485784, 0.00015341507730294942, 0.0005983201328128017, 0.007951855964707323, 0.002077402516933781, 0.017787591720986953, 0.12802284291271657, 0.9908821292191169, 0.4381908073232182, 0.5542867309649705, 0.9973367244227381, 1.000001, 0.014575830073026997, 0.0826337116866755, 0.677441579368297, 0.8599658689468542, 0.43694473348342827, 0.5162152561976421, 0.06052231245415393, 0.001279682262523514, 0.004152864947441903, 0.00015253649080050697, 0.8935872036880929, 0.000994161600866258, 0.0004573359989661093, 0.6375991966648098, 0.030851680136077024, 0.9885373895357726, 0.7549927060750894, 0.0004589256759271028, 0.16618499013536453, 0.004121677897288938, 0.5158201022581376, 0.6797149977941113, 0.0003497993626848401, 0.5162152562140719, 0.00011554830874598741, 0.3310614768591934, 0.00035210894423564503, 8.64553612950684e-05, 0.6365472586978282, 0.0005974044757517952, 0.9757003876257584, 0.04379453382050974, 0.0005925493123059678, 0.9999042825829593, 0.0016352294910659448, 0.9938925187010929, 0.0064301564389137615, 0.012012532724763247], [0.470032549799889, 0.26057497166529675, 0.4716212126803939, 0.060037624087684045, 0.8944585387110296, 0.05122285615833342, 0.29861878646220946, 0.9703216492684494, 0.8084286552888766, 0.399468445336187, 0.9977186653641046, 0.6216885591577059, 0.29104863122898106, 0.9817084003529855, 0.036924802978899975, 0.9784407973763521, 0.025679596602645047, 0.04298774156407939, 0.26625433540265414, 0.4763852893533667, 0.3540802288736731, 0.9773127981177625, 0.9062873310129553, 0.5476416436962982, 0.05164132438085231, 0.2923679862070401, 0.7810191773424935, 0.6388821594193218, 0.7810191738258565, 0.5001637640540847, 0.08060252635597363, 0.43141723853236125, 0.6378891658817148, 0.9785062944396471, 0.8294955295554691, 0.994833859227569, 0.6761297183695784, 0.021407914548237574, 0.26577053103347076, 0.18919203348161925, 0.0176413411780436, 0.014575830073026997, 1.000001, 0.7957915518888495, 0.1258088099423123, 0.0597280909944458, 0.26368629931985466, 0.2132104821085891, 0.8430938183852908, 0.7573813674552133, 0.9139537189282604, 0.42649005636505366, 0.05169572833771981, 0.705383959931641, 0.5836863714820119, 0.14640297702348698, 0.9640935146201871, 0.021495697697199424, 0.0964453113243274, 0.587821482845058, 0.5981089418120332, 0.8973743416401891, 0.2106140770859187, 0.12714050246129655, 0.5429439897793571, 0.21107827713302074, 0.39687671087214416, 0.3630030525948914, 0.5508618865401819, 0.3613995418268406, 0.14376782701833857, 0.6296388207274549, 0.025876999665229453, 0.9199881775445573, 0.6196092197294821, 0.01455352351732524, 0.7935095907197203, 0.014654172609319529, 0.9629867326011988, 0.9936917858296112], [0.8501442667819127, 0.06916576251779505, 0.8531401567845649, 0.23606693029092699, 0.9346744623064918, 0.2108510950734184, 0.08309177002334425, 0.6726438288432417, 0.42578641511206955, 0.12742377339480357, 0.8310850667176269, 0.2605749688079778, 0.08087301944376148, 0.8167317876777497, 0.1666629028193451, 0.8521811377660337, 0.12692162848559832, 0.18516088776259856, 0.0707307911964935, 0.8623357610403589, 0.7340943818131606, 0.8915366941315407, 0.5476416436962986, 0.903948060930582, 0.21267542008577484, 0.08125129107033759, 0.3930958483526486, 0.9635399655547904, 0.980075615861478, 0.8637527369860009, 0.2891049672414402, 0.1439571755889058, 0.26768540296740295, 0.6787397428949666, 0.4374050532509579, 0.8282459030926601, 0.97367113786552, 0.1107753165091003, 0.6324173668083884, 0.5168085547928674, 0.09552880931460517, 0.0826337116866755, 0.7957915518888495, 1.000001, 0.3936324156627779, 0.23480489506938215, 0.6272476288180235, 0.5562000935067044, 0.9654161009128698, 0.364526441497602, 0.552485706496514, 0.1422585725368372, 0.21291985304559832, 0.3240152422225071, 0.23374529969045846, 0.43807547512053796, 0.9209794236444784, 0.11127747301131292, 0.3310377070297927, 0.23545760180821831, 0.944297618343871, 0.5420741576109351, 0.5490063003029602, 0.3979894705624444, 0.20771101230073757, 0.5502689977804262, 0.12654859009837402, 0.7533143068378712, 0.21085109507341873, 0.1100908529350904, 0.42971713212141255, 0.2640209491674734, 0.1279952730255998, 0.9626411233066255, 0.2596785749118057, 0.08249935334340147, 0.3997075002431148, 0.08314149682368935, 0.6381487197796618, 0.7549927023356948], [0.7196551276107485, 0.0012792229934288828, 0.7192935626033248, 0.9444106105527479, 0.26791611567844154, 0.920516707958842, 0.0016152775654993201, 0.08304406269613672, 0.0309604007865627, 0.003297660674121871, 0.14395717746864303, 0.011999603720701397, 0.0016344470411229568, 0.1464870870046434, 0.8549386610692535, 0.16679456958703914, 0.7942695140485575, 0.8940363774997574, 0.001278702687663453, 0.7135331657442303, 0.8294955295554691, 0.18788811389974622, 0.05181834773208469, 0.6391268306046324, 0.9161215489979877, 0.0016355034370687921, 0.02587885794653613, 0.5502689977804266, 0.4010776706025962, 0.67815526570182, 0.9777572632742808, 0.004153660064630986, 0.011920894946924384, 0.08234944663632708, 0.03075732281513341, 0.14559590400159017, 0.5150430266795606, 0.7554806785195752, 0.919988180029975, 0.96271217072337, 0.7186225627410747, 0.677441579368297, 0.1258088099423123, 0.3936324156627779, 1.000001, 0.9444106105441599, 0.9210675858630921, 0.955823543665645, 0.3308713922415767, 0.021323551757367033, 0.05171923950973372, 0.004148891643794029, 0.9147195350982704, 0.017792700446433753, 0.009797989703309133, 0.9862293915749892, 0.2101106721041435, 0.7498071942911073, 0.9750049004367082, 0.00980385322713905, 0.5892862584960935, 0.05177496453692099, 0.9639089641026978, 0.9976098109691669, 0.007957185923420852, 0.9635399655547905, 0.0033103112248180373, 0.8287018996986867, 0.007959280813072988, 0.00262837082515188, 0.9976947901906562, 0.012012532724872479, 0.7839965732511557, 0.2657705339054675, 0.011990418229521509, 0.6781552617322967, 0.02572141882468609, 0.667145256953123, 0.07066480968268667, 0.11085221954779648], [0.5166230757727727, 0.0003522185011415128, 0.5162152561976422, 0.9996171852810928, 0.14636444554740446, 0.9965494315391961, 0.00045367346532235994, 0.036885061706395564, 0.012006497456982082, 0.0009927351780280446, 0.0699229804283056, 0.004151275169576637, 0.00046033356820122115, 0.07132911103024225, 0.967330850202357, 0.083069900197001, 0.9417700832061707, 0.990905841809454, 0.0003515027842550575, 0.5113954088968109, 0.6383778332024383, 0.09561800697153015, 0.02150392971791208, 0.4384110712986969, 0.990842333552034, 0.00046049883805507113, 0.00980361861881859, 0.35981172125924776, 0.23991110427971196, 0.47638529321433976, 0.9897445920139608, 0.0012809077553422826, 0.004114188539661711, 0.03653105224524504, 0.011899233903116773, 0.0707934459866468, 0.32952019149030276, 0.9161215514729593, 0.757073309602249, 0.8467940629747662, 0.8919848400501313, 0.8599658689468542, 0.0597280909944458, 0.23480489506938215, 0.9444106105441599, 1.000001, 0.7584696157011989, 0.8223801320247794, 0.18915129302862277, 0.00788043856087115, 0.02144637170756074, 0.0012804174050057972, 0.989136586076481, 0.00644001210369468, 0.003312450711373868, 0.9084587190121717, 0.10930332595753635, 0.9084587190121716, 0.9614459040531034, 0.0033128470780804734, 0.39415084332166656, 0.02150032782118778, 0.830607884994877, 0.9412518741331595, 0.002629629090870335, 0.8301309772428614, 0.000997306949655851, 0.636547258660203, 0.002627553275311794, 0.0007739762387643052, 0.92104554451727, 0.00415216934472813, 0.9281667713572419, 0.14480367352436815, 0.00414889164392608, 0.8610366645496692, 0.00972813315066448, 0.8455993184202305, 0.030639781340801985, 0.051503100622667664], [0.9209794236528535, 0.005175958393616054, 0.9205167104456876, 0.758469615708096, 0.47638529321433976, 0.7192935587168727, 0.006359000332812715, 0.18897032025268978, 0.08304406269349367, 0.011957465870772456, 0.2935668410563872, 0.036913318219428524, 0.006434466435032039, 0.2987259971589291, 0.6324173628822193, 0.3309426579024409, 0.5562000894997272, 0.6797149977879302, 0.005173853146127807, 0.913144836369123, 0.9777572645950233, 0.36271650330020566, 0.12801977929849642, 0.864008908364118, 0.7158591728955774, 0.006438625238642409, 0.07134276786883936, 0.7857997446124194, 0.6391115361618422, 0.8919848428615232, 0.829495526194052, 0.014654172609319529, 0.03667119338924936, 0.1873896916681373, 0.08249935334340151, 0.2969086388054947, 0.7559327895304083, 0.5147349878874354, 0.9988280926940821, 0.9627121694229501, 0.47638528935336705, 0.43694473348342827, 0.26368629931985466, 0.6272476288180235, 0.9210675858630921, 0.7584696157011989, 1.000001, 0.9823823644042531, 0.5569459613860298, 0.06041812253128238, 0.1277749275556806, 0.014637349551839776, 0.7147636364880587, 0.051814627748421486, 0.030978186899799098, 0.9336245717585031, 0.39465107212459316, 0.5108694478165199, 0.850144263820109, 0.030996725532987626, 0.818766978413254, 0.12791259897891472, 0.9906924489368987, 0.9188660602227062, 0.02585719172995371, 0.9903131972765298, 0.01200333733637926, 0.9768217835342823, 0.02586399915709059, 0.009795410863873352, 0.9444784136375186, 0.036953090569944065, 0.5490062963478085, 0.472570205049728, 0.036885061706395515, 0.4374050532509578, 0.0709087401097, 0.4303036828148926, 0.16526886302074342, 0.23879417972871117], [0.8580541115373709, 0.0032558662638203953, 0.8599658689468543, 0.8253769342627895, 0.3941508469194813, 0.7920866832690654, 0.0041521693447281235, 0.145986655902911, 0.059964396475086994, 0.007959280813072981, 0.23954968164326826, 0.02546419255255108, 0.004092095787384908, 0.23806384741109518, 0.719655123722343, 0.26688586866917724, 0.6375991926455912, 0.7505791515956686, 0.003305245191300353, 0.864008908364118, 0.9269459448587545, 0.29870455193966133, 0.09570270737731269, 0.788965273249617, 0.7955059477983688, 0.004105926660765182, 0.051325926788977114, 0.7194484967871679, 0.5519703218755694, 0.8145457041515486, 0.8775032634760354, 0.009728133151460651, 0.02587885794653613, 0.14648708700464327, 0.06094087197251746, 0.2398651791342026, 0.6789834253403331, 0.5976510996394289, 0.9874970647349263, 0.996191776855233, 0.5556679383528628, 0.5162152561976421, 0.2132104821085891, 0.5562000935067044, 0.955823543665645, 0.8223801320247794, 0.9823823644042531, 1.000001, 0.47058403449668385, 0.0438616588195158, 0.09621709268118907, 0.009646532035421053, 0.795734422865986, 0.03656866246768816, 0.021214122212746992, 0.9794433873657966, 0.33068141677181656, 0.5980373808604152, 0.9199881775445575, 0.021323551363717913, 0.7578890201803676, 0.09501582982930967, 0.9938925187010929, 0.9622495827159158, 0.017530240967390805, 0.9953206044774253, 0.007931900397635708, 0.9430555725815052, 0.017711136628042162, 0.006414019650387003, 0.9703216479577509, 0.025701114470140674, 0.6385764571732854, 0.4010776706025965, 0.025398465471248684, 0.5158201022581376, 0.051808428369799174, 0.5158201022581376, 0.1280197792984962, 0.18907888312783144], [0.7948779831355902, 0.09642685060468943, 0.7939084616258582, 0.18897032025268992, 0.9906924489368987, 0.16645962222990307, 0.10930332443186519, 0.7559327895304081, 0.5167714536604504, 0.16542317872351264, 0.8724779261442606, 0.3310377070297927, 0.11137071289832237, 0.8933520079409892, 0.1259684765731218, 0.9192839423182766, 0.09599630416170941, 0.14645904561487058, 0.09599630416170929, 0.7849164261075713, 0.6795198347717062, 0.933624571758503, 0.638576457173285, 0.8634921588059513, 0.16526886302074364, 0.11136271771417094, 0.4769328104000019, 0.9039480609305823, 0.9905265084681583, 0.8306078849948769, 0.23982500184174158, 0.18902911510283268, 0.32690472724922787, 0.7472814579054687, 0.5103196026362422, 0.8847355936586295, 0.9379914650850656, 0.08249935334340154, 0.5553621860510354, 0.4278393943600739, 0.07105652260253578, 0.06052231245415393, 0.8430938183852908, 0.9654161009128698, 0.3308713922415767, 0.18915129302862277, 0.5569459613860298, 0.47058403449668385, 1.000001, 0.43245087784557656, 0.6361360993651474, 0.18917392450712947, 0.16493697951115724, 0.40100089042693643, 0.2987331428137958, 0.3589173453245322, 0.9421975988380128, 0.08170364392971875, 0.2622264019713977, 0.29855447542036456, 0.875070749261427, 0.6391115321330901, 0.47638529321433953, 0.3292915921663282, 0.26832033351594237, 0.47597506494500447, 0.1663759905391352, 0.6756283205542203, 0.26768540296740295, 0.14606702739163674, 0.3650938972377434, 0.33068141349616015, 0.09439259428913359, 0.976195577798872, 0.3309426579024405, 0.06061507654199494, 0.472106766090506, 0.05937466957074192, 0.709039517083759, 0.82395603754257], [0.14548097135050422, 0.6680239166879501, 0.14580510513318595, 0.007909155348882035, 0.507882997477255, 0.006409876739891326, 0.719448492899879, 0.8610366645496693, 0.9750049011994628, 0.8306078849948769, 0.718622566623901, 0.9639339677553969, 0.7090395170837592, 0.7141652281620953, 0.00415336187786313, 0.6761297223272451, 0.0026243484194646807, 0.005129471948946993, 0.6781552617322965, 0.14649059255609223, 0.09465498631700331, 0.6390656550294338, 0.9372061627932267, 0.18756466214613857, 0.006437546772271447, 0.7114359995445625, 0.988213866328336, 0.23982500184174138, 0.3617543031627734, 0.16353389369191285, 0.011790388997449153, 0.8573357311256619, 0.9796309138765029, 0.8639882324447449, 0.9908821292191169, 0.7195690242236078, 0.26801230343656973, 0.002077402516933781, 0.06073268496897109, 0.036900070285363316, 0.0016311258035165196, 0.001279682262523514, 0.7573813674552133, 0.364526441497602, 0.021323551757367033, 0.00788043856087115, 0.06041812253128238, 0.0438616588195158, 0.43245087784557656, 1.000001, 0.9422434819041955, 0.8501442637196078, 0.006439395682311848, 0.9872447547980844, 0.950918404104364, 0.025873904068638848, 0.5974652013992389, 0.002078745209319365, 0.014637349552305653, 0.9558235419441585, 0.21335339501741746, 0.9304796459713489, 0.04359377455853656, 0.02146691082943782, 0.9304796438765481, 0.04365641276962305, 0.827750542793898, 0.09630001923410761, 0.9400813219261984, 0.7925986344916509, 0.025632935562008102, 0.9729025256077237, 0.0026283708251518827, 0.5168085547928674, 0.9614459027543939, 0.001278702687663455, 0.9975038057902007, 0.001278702687663455, 0.8941005668393298, 0.7953346381231075], [0.2680123005403477, 0.4738271551738031, 0.2682240352018554, 0.021483355573976244, 0.7147636364880586, 0.017787591384928796, 0.5144025129185305, 0.9795605872228159, 0.9736711378655201, 0.6387445793290605, 0.8872162081967185, 0.8587319901141948, 0.5140456493706669, 0.8927536143497874, 0.011972354599410658, 0.8634921588059512, 0.007964043812211843, 0.01461215117076574, 0.47711546108653413, 0.26768540296740273, 0.1877308085161818, 0.8298330489887102, 0.998469620182645, 0.3304282825258451, 0.017779080102280197, 0.5150430266795604, 0.961812166981504, 0.39921041914303057, 0.5559472541906784, 0.2961635291476697, 0.030757322275027445, 0.6787397428949665, 0.8623357610403591, 0.9768217822148034, 0.9777572645950233, 0.8930741324660934, 0.4383586174581257, 0.006437546772271447, 0.12801058889570666, 0.0824993521175713, 0.005183767553194292, 0.004152864947441903, 0.9139537189282604, 0.552485706496514, 0.05171923950973372, 0.02144637170756074, 0.1277749275556806, 0.09621709268118907, 0.6361360993651474, 0.9422434819041955, 1.000001, 0.6756283205542202, 0.017767171148702996, 0.9184044087953148, 0.8272158864319786, 0.06069636079235412, 0.7903258255561737, 0.006414019650387015, 0.03670192022910579, 0.8294955261940516, 0.36300305600086386, 0.9946301069910108, 0.09636456707061705, 0.05181834773208469, 0.7915371816169938, 0.09641069915748139, 0.6389891938034796, 0.18917392450712958, 0.7955059513802345, 0.5980373808604149, 0.06079666568802785, 0.8629963699845608, 0.007915403563565081, 0.7176430020741319, 0.8573357342138713, 0.004153660064630986, 0.9629867325705492, 0.004118030061193465, 0.9880407342378306, 0.9439361251828609], [0.04377672028880456, 0.9444784157681292, 0.043710771285793815, 0.0012787026565728504, 0.23991110158022802, 0.0009953994670543675, 0.9435739859762668, 0.5546715268979378, 0.7958105958079065, 0.9872447552426038, 0.3901437899232308, 0.9445010157503679, 0.9640935163565679, 0.40047344922541295, 0.0005877054632494959, 0.3641776764262406, 0.0003503690361799961, 0.0007746989198889324, 0.938732495573254, 0.043157815613657266, 0.025876999665229453, 0.3265372532243492, 0.6787397428702778, 0.060870910612242014, 0.0009873333871660828, 0.9637475098361765, 0.8303892682750854, 0.08136998510238953, 0.14636444363224108, 0.05180842753001295, 0.0020789939025943026, 0.9984696201463262, 0.9304796438765481, 0.5476416436290682, 0.7839965732511558, 0.39604181030950686, 0.09561800697153011, 0.0002660680424294908, 0.01458594898452695, 0.007746748666456219, 0.00020267081924644936, 0.00015253649080050697, 0.42649005636505366, 0.1422585725368372, 0.004148891643794029, 0.0012804174050057972, 0.014637349551839776, 0.009646532035421053, 0.18917392450712947, 0.8501442637196078, 0.6756283205542202, 1.000001, 0.0009851620591154076, 0.8935872008716509, 0.9640243051160017, 0.005080605757170293, 0.2910486282148701, 0.00026327489746219465, 0.0025629664463844588, 0.9629867325705496, 0.0696174375135046, 0.6797637973026095, 0.009780420164695658, 0.00412513152673423, 0.9796309138765029, 0.009770127368724832, 0.9936917857708756, 0.025679596600543378, 0.9762842859412592, 0.986906458922204, 0.005179427615521897, 0.9426719960128491, 0.00034398854704218606, 0.23576770982817663, 0.944410610552748, 0.00015279953711562163, 0.8206501170049031, 0.00014941503425778697, 0.5878214827728956, 0.4721067660905066], [0.47455339826143994, 0.00026463928553861386, 0.475474150711857, 0.9923610228780279, 0.12612230935547525, 0.9965599385160313, 0.0003522184917750459, 0.030922637499626936, 0.009669644313630158, 0.0007749955996185996, 0.06079666568802785, 0.003267808960298748, 0.000348087526609214, 0.06057012524264935, 0.9905265084681582, 0.07105652151473661, 0.9626411233066254, 0.9891365865218522, 0.00026821602600697174, 0.47706978895611085, 0.5885674995646047, 0.08314149558831778, 0.017685724360078432, 0.398322949677298, 0.9999042825829593, 0.0003491637451788583, 0.007902533507416815, 0.33078430332587516, 0.21188801976674043, 0.430870411748205, 0.9639339678693499, 0.0009927351535157325, 0.003313084920897158, 0.03099005034707078, 0.00980361861881859, 0.06094087101241582, 0.29855447542036484, 0.9441394489850691, 0.7180037374028087, 0.8291184572908291, 0.9192839448017915, 0.8935872036880929, 0.05169572833771981, 0.21291985304559832, 0.9147195350982704, 0.989136586076481, 0.7147636364880587, 0.795734422865986, 0.16493697951115724, 0.006439395682311848, 0.017767171148702996, 0.0009851620591154076, 1.000001, 0.0051393013106838924, 0.00260034286845734, 0.8935872008716506, 0.09626085057041414, 0.9439361273079564, 0.9622495827159157, 0.0026125055886463307, 0.3646747643132371, 0.017570559646091426, 0.7920866832690654, 0.9199881775445574, 0.0020530378269356868, 0.7930729584287334, 0.0007729212250867968, 0.597651099655733, 0.00207204036609643, 0.0005971043159191795, 0.8872162081967184, 0.003295372868325145, 0.9626411232716099, 0.12799527302385413, 0.003259998279404144, 0.8930741353093429, 0.007963853230963342, 0.8915366969415198, 0.02587390360228386, 0.043852212423201295], [0.127973833884093, 0.7191042439298928, 0.1278728120037127, 0.006437546772271447, 0.47670460020366173, 0.005177816564227937, 0.747281457905469, 0.8294955261940519, 0.9790684420118733, 0.858731990114195, 0.6662358654495273, 0.9903131972765299, 0.7582518402829773, 0.6796336730483736, 0.0032714864424215943, 0.638576461198664, 0.002073181134088918, 0.00415375946499012, 0.7176430059516654, 0.12667887706981404, 0.08304406146221281, 0.5930209489758628, 0.9208692327379828, 0.1668424741950058, 0.005148163939324066, 0.7585240693348686, 0.9908821292191169, 0.21036725690164412, 0.3310614735782671, 0.14626640439992158, 0.009792364019916037, 0.8939294102034778, 0.9814659449150323, 0.8215343286070136, 0.9703216479577508, 0.6745297821426248, 0.23879417972871117, 0.0016270713505450584, 0.05171923950973372, 0.030379134866432046, 0.0012781213888106537, 0.000994161600866258, 0.705383959931641, 0.3240152422225071, 0.017792700446433753, 0.00644001210369468, 0.051814627748421486, 0.03656866246768816, 0.40100089042693643, 0.9872447547980844, 0.9184044087953148, 0.8935872008716509, 0.0051393013106838924, 1.000001, 0.9794433873657965, 0.02121412221274702, 0.5469213241846611, 0.0016134618299078374, 0.011790388763863215, 0.9795605872228158, 0.18592013993594653, 0.9207149876341152, 0.03693452480982699, 0.017733189837253083, 0.9637475098537046, 0.036913318219428524, 0.862686646537363, 0.08280592922000456, 0.9629867325705496, 0.8298330489585256, 0.021508046910641957, 0.9905265084681582, 0.002043235258774726, 0.4716212126332179, 0.9897445920139608, 0.0009953994917048777, 0.983252578915511, 0.0009775531825717441, 0.8540593747751907, 0.7539094389785512], [0.0830440614622127, 0.830925979063463, 0.08294277169755535, 0.003309281484292309, 0.3651550570672926, 0.002624348359200737, 0.8479499108750362, 0.7172481189868115, 0.9209794211563828, 0.9363767009685202, 0.543789182958107, 0.9976231663014506, 0.8639882324447449, 0.5567993687119261, 0.0016096053128459335, 0.5158201022581369, 0.0009941615762464008, 0.0020787451606483426, 0.8272158897841582, 0.08200333801579032, 0.05179974964540985, 0.4716212126803939, 0.830389268275085, 0.11130676749637382, 0.0026055752361160028, 0.8639262076552531, 0.9441394468595157, 0.14376782701833848, 0.23982499914213576, 0.09638993559727856, 0.005181907134829981, 0.9632863609954514, 0.9851679193993935, 0.7090395170837592, 0.9094810653947141, 0.5514290175062061, 0.16570844790286243, 0.0007691755628633642, 0.030890094891352443, 0.01736365374287573, 0.0005964188374185739, 0.0004573359989661093, 0.5836863714820119, 0.23374529969045846, 0.009797989703309133, 0.003312450711373868, 0.030978186899799098, 0.021214122212746992, 0.2987331428137958, 0.950918404104364, 0.8272158864319786, 0.9640243051160017, 0.00260034286845734, 0.9794433873657965, 1.000001, 0.011805917226003652, 0.4284848970671126, 0.0007617568351844028, 0.006293599641884761, 0.9994019164002081, 0.12529503765670785, 0.8310850667176264, 0.02147564534656036, 0.009751207584233482, 0.9976947901906563, 0.02145715208711499, 0.94177008532639, 0.05150309978783057, 0.9953339296024556, 0.918404408795315, 0.012009083391081444, 0.9965494315709138, 0.0009775531583631851, 0.35981171785704247, 0.9973367239736747, 0.00045803696948525617, 0.934585776603394, 0.0004486638517321588, 0.747281457905469, 0.6336292476580643], [0.7513159441414565, 0.0016010002550811081, 0.7533143068378716, 0.9122930053969356, 0.2923679862070403, 0.8879596229856022, 0.0020791431620353087, 0.0959297073220272, 0.03622028991091769, 0.004147402635338758, 0.1667586501562197, 0.01436254094371918, 0.0020405477675959336, 0.16510678892205102, 0.8310850667176266, 0.18773080851618187, 0.7554806785195752, 0.8521811408356755, 0.0016292532636744354, 0.7583788683480766, 0.8443658464897958, 0.2134095621026088, 0.06030256535758547, 0.6719520266316568, 0.8930741324945177, 0.0020483267391448916, 0.030606803963503477, 0.5981518824893519, 0.432937543495744, 0.7023016390307559, 0.9421975988380129, 0.005129471838575532, 0.01464891332800409, 0.09643838900916335, 0.036942480421769876, 0.16671475913859882, 0.5559472541906783, 0.7183302771118274, 0.9394291463489067, 0.9903131972765299, 0.6765991047954897, 0.6375991966648098, 0.14640297702348698, 0.43807547512053796, 0.9862293915749892, 0.9084587190121717, 0.9336245717585031, 0.9794433873657966, 0.3589173453245322, 0.025873904068638848, 0.06069636079235412, 0.005080605757170293, 0.8935872008716506, 0.02121412221274702, 0.011805917226003652, 1.000001, 0.23982500184174138, 0.7197240177347078, 0.979279331109005, 0.011875338304638022, 0.6389891897667829, 0.05980961800506339, 0.9712276617360266, 0.9942864522592388, 0.009621632820805486, 0.9729025256829248, 0.004128390457037877, 0.8615107109389343, 0.00973628453326164, 0.003292929117444052, 0.9874205561142521, 0.014514916499996047, 0.7583788683377316, 0.2987045519423778, 0.014321355772246571, 0.636928195011298, 0.0309700334148326, 0.6385764611986643, 0.08313353749911104, 0.12782691933776244], [0.6303775648269275, 0.162305792195729, 0.6324173668687731, 0.10984874438574495, 0.9638694475835418, 0.09543512714492212, 0.18915129072909345, 0.8864309893151366, 0.6622936224016731, 0.26740369409927445, 0.9796309138765029, 0.4648422937472435, 0.18461225682575316, 0.9651111246336157, 0.07130180519697742, 0.9794950200707434, 0.05146244434627625, 0.08159617816342449, 0.1657084479028625, 0.6383778332024381, 0.5018903014231566, 0.9957865900131934, 0.7839965733402726, 0.7081746976118904, 0.09616875184493559, 0.18542249875503264, 0.6280737376573214, 0.7956392205349003, 0.9051386004049128, 0.6590209880679764, 0.14225857441703343, 0.2942983689120412, 0.47638528935336705, 0.8933520079653605, 0.6787397428949666, 0.9773127981621991, 0.827215889784158, 0.04368462932011331, 0.3976372352853281, 0.29872599715892906, 0.03667119338924941, 0.030851680136077024, 0.9640935146201871, 0.9209794236444784, 0.2101106721041435, 0.10930332595753635, 0.39465107212459316, 0.33068141677181656, 0.9421975988380128, 0.5974652013992389, 0.7903258255561737, 0.2910486282148701, 0.09626085057041414, 0.5469213241846611, 0.4284848970671126, 0.23982500184174138, 1.000001, 0.043844867930924, 0.1668584454559335, 0.43141723484159117, 0.7585240730917534, 0.7765463872569368, 0.3269047304874732, 0.21223310282971505, 0.3913781348543917, 0.32759387934597994, 0.2657705310576389, 0.5140456494057258, 0.3968767072981697, 0.23763126721636266, 0.23576771251105474, 0.47058403068272897, 0.05181834773232031, 0.990052546006259, 0.46333190133290164, 0.03080741415469437, 0.6375991926745813, 0.030993759150458922, 0.863264883830594, 0.9412518741845156], [0.2958872548275011, 6.307496549775154e-05, 0.29667426068968544, 0.9122930053969356, 0.05964382138065762, 0.9379914650850656, 8.652780383024631e-05, 0.011949170453104487, 0.0032471515223871485, 0.00020345318329980698, 0.02586399915709059, 0.0009789343643161054, 8.492157739053727e-05, 0.025607798129268965, 0.9796309151997763, 0.030757322275027445, 0.9936917858296112, 0.9509184058170161, 6.418805560287555e-05, 0.2986688133327443, 0.3919686335174422, 0.036934524809827035, 0.006372405760791891, 0.2371540722996553, 0.9433941502334385, 8.524531523431841e-05, 0.0025975441974331807, 0.18918750837545625, 0.10997236446225601, 0.2618313644778672, 0.8443658464897958, 0.00026580711767101216, 0.0009984531785054728, 0.012012532724872479, 0.0033118959521676625, 0.025857191730659115, 0.166459622229903, 0.9980635068602168, 0.514045649370667, 0.6387445793290606, 0.9930499451086106, 0.9885373895357726, 0.021495697697199424, 0.11127747301131292, 0.7498071942911073, 0.9084587190121716, 0.5108694478165199, 0.5980373808604152, 0.08170364392971875, 0.002078745209319365, 0.006414019650387015, 0.00026327489746219465, 0.9439361273079564, 0.0016134618299078374, 0.0007617568351844028, 0.7197240177347078, 0.043844867930924, 1.000001, 0.8307867993951386, 0.000766236112833337, 0.21349128970969786, 0.006320314103822549, 0.5930209489758631, 0.7559327895304083, 0.0005877054783329379, 0.5940436025166609, 0.00020252053013422843, 0.39992756401884516, 0.0005947085973217473, 0.00015292025157979367, 0.710670289840389, 0.0009893201079603342, 0.9975038057765944, 0.06093649709316751, 0.0009761272301319262, 0.9874970647888057, 0.0026283708252235857, 0.9900525459792496, 0.0098029148276311, 0.01776717148469846], [0.6303775608532322, 0.0007540125911786698, 0.6324173628822196, 0.966243473653135, 0.2077110123328477, 0.9539954272943694, 0.0009986204221794628, 0.06041812157914169, 0.020955282343306247, 0.0020720403660964247, 0.11137071289832247, 0.007759179328930923, 0.0009746566842881231, 0.10972001031614818, 0.9205167104456874, 0.12654858838897112, 0.8580541116036945, 0.9269459448587546, 0.000769820069223142, 0.6383778291783117, 0.7366284289663999, 0.1462069126194511, 0.03640799625189751, 0.548336667329222, 0.9613289388650123, 0.0009789343402024219, 0.01748666610945517, 0.47701270978021965, 0.32534386668107024, 0.5798994388595984, 0.9688952211284334, 0.0025915835761657763, 0.007951855800297085, 0.060889850288202076, 0.02147564534656039, 0.11110717466568219, 0.4364013399745868, 0.827750546148244, 0.8565769575621097, 0.9444784136375186, 0.7896641549865321, 0.7549927060750894, 0.0964453113243274, 0.3310377070297927, 0.9750049004367082, 0.9614459040531034, 0.850144263820109, 0.9199881775445575, 0.2622264019713977, 0.014637349552305653, 0.03670192022910579, 0.0025629664463844588, 0.9622495827159157, 0.011790388763863215, 0.006293599641884761, 0.979279331109005, 0.1668584454559335, 0.8307867993951386, 1.000001, 0.006336669911324045, 0.516808550839325, 0.0360620172562976, 0.9094810653947143, 0.984853902096386, 0.0050584050009807105, 0.9113983452001047, 0.002059385418459726, 0.754468930889928, 0.005129471838575532, 0.001620271649225595, 0.9627121694229501, 0.007855020794178926, 0.8639882324486731, 0.21335339252554678, 0.00773396775554877, 0.7539094427674264, 0.017751871357566236, 0.7584696194578142, 0.05177496369908954, 0.08285548373162474], [0.08313353749911097, 0.8298330523514952, 0.08309177002334406, 0.0033128470781105977, 0.3646747643265015, 0.002629062736400877, 0.8531401567845653, 0.7188805640158596, 0.9199881775152763, 0.9400813240426157, 0.547641643696298, 0.9965494315391961, 0.8632648869166107, 0.557265921145055, 0.0016186826984292229, 0.516623075772772, 0.0009969012845816836, 0.0020789939025753906, 0.8294955295554691, 0.08242633716540669, 0.05171923867139313, 0.4738271513335635, 0.8310850667176264, 0.11137337808726121, 0.0026165098424179288, 0.8638228429125989, 0.9444784136375186, 0.14464782047848734, 0.2399111015791372, 0.09621709129485435, 0.005173853034307382, 0.9640935163565683, 0.9900127836972915, 0.7128675395004581, 0.9139537164591451, 0.5538756843176307, 0.1662844421444456, 0.0007720339079659276, 0.030960400243875984, 0.01748666610945517, 0.0005979193449500269, 0.0004589256759271028, 0.587821482845058, 0.23545760180821831, 0.00980385322713905, 0.0033128470780804734, 0.030996725532987626, 0.021323551363717913, 0.29855447542036456, 0.9558235419441585, 0.8294955261940516, 0.9629867325705496, 0.0026125055886463307, 0.9795605872228158, 0.9994019164002081, 0.011875338304638022, 0.43141723484159117, 0.000766236112833337, 0.006336669911324045, 1.000001, 0.12612230934113866, 0.830389268275085, 0.02150392971820534, 0.00978042016469564, 0.996859503276059, 0.021495697697199397, 0.9436876824959424, 0.05166975566573826, 0.9971219466421108, 0.9202744296446181, 0.012013394915525616, 0.9976231663105226, 0.000984007540460547, 0.36175429974219986, 0.9957865900131934, 0.00045940915254157484, 0.9387324934598736, 0.00045195054055328454, 0.7513159441414563, 0.6361360993651474], [0.967330850101197, 0.030199376336266716, 0.9703216479577508, 0.39604181030950697, 0.8097258838658535, 0.36175429974220036, 0.03695309056960803, 0.4734304590405352, 0.2618313644397711, 0.060766121532811405, 0.6390656550352452, 0.1429444908113145, 0.03611642674842234, 0.6303775648269279, 0.2986187833642707, 0.6726438288432417, 0.23845155520994554, 0.32534386664113013, 0.030807414152453107, 0.9788107503439865, 0.8959366926489564, 0.7186225665977615, 0.36023388199211714, 0.9829072631535869, 0.3643607330170331, 0.036269729494721084, 0.23606693029092682, 0.997623166750643, 0.9293447296022511, 0.9622792141684569, 0.4640975890030192, 0.07036781177078191, 0.1463189191557705, 0.47683010615405114, 0.26801230343656957, 0.6378891658817148, 0.986906458922204, 0.21280269387730466, 0.8246859147538157, 0.719655123722343, 0.18788811160105073, 0.16618499013536453, 0.5981089418120332, 0.944297618343871, 0.5892862584960935, 0.39415084332166656, 0.818766978413254, 0.7578890201803676, 0.875070749261427, 0.21335339501741746, 0.36300305600086386, 0.0696174375135046, 0.3646747643132371, 0.18592013993594653, 0.12529503765670785, 0.6389891897667829, 0.7585240730917534, 0.21349128970969786, 0.516808550839325, 0.12612230934113866, 1.000001, 0.35693020190687225, 0.7498071942161045, 0.5949541082572835, 0.10884132912760926, 0.7513159441414563, 0.06041812253128238, 0.916757543849126, 0.11031237749990531, 0.05137385110041699, 0.6288708392934039, 0.14464782235211615, 0.23991684284088916, 0.8306078883608018, 0.14249366644520195, 0.16596243345618905, 0.23945224821601868, 0.16682251227087855, 0.43819080732321775, 0.555667942356006], [0.26791611278325883, 0.47706979282696876, 0.26755091399918274, 0.021475645346560417, 0.7196551237223427, 0.01774295256314437, 0.5065235838396182, 0.9757003863654664, 0.9796309151997763, 0.6330381679600067, 0.8711218568667253, 0.8639882324447447, 0.5168209224289173, 0.8930741324660934, 0.011805917226003663, 0.8619437637488039, 0.007921277749021365, 0.01464891332800409, 0.4745534021075649, 0.2643433717168786, 0.18915129072909356, 0.8206501170907233, 0.9988280926622919, 0.3307843033258751, 0.01760760019474232, 0.5167096243584401, 0.9635399655547904, 0.3930958483526486, 0.556945957373679, 0.2986187833697015, 0.030990050347493532, 0.6789834253403333, 0.8521811408356754, 0.963933967755397, 0.9662434736531349, 0.8838256587516503, 0.43506664616585644, 0.006384617034517546, 0.1275061314977156, 0.08100279068732452, 0.005159634125672348, 0.004121677897288938, 0.8973743416401891, 0.5420741576109351, 0.05177496453692099, 0.02150032782118778, 0.12791259897891472, 0.09501582982930967, 0.6391115321330901, 0.9304796459713489, 0.9946301069910108, 0.6797637973026095, 0.017570559646091426, 0.9207149876341152, 0.8310850667176264, 0.05980961800506339, 0.7765463872569368, 0.006320314103822549, 0.0360620172562976, 0.830389268275085, 0.35693020190687225, 1.000001, 0.09626085057041414, 0.051503100622667664, 0.7958105993911438, 0.09616875184012574, 0.6369281949765463, 0.18788811160105073, 0.7935095906800333, 0.5961084682084199, 0.06090588076748148, 0.8626866465687424, 0.007782982940261906, 0.7081746937017976, 0.8638228429125987, 0.004128390456737541, 0.9530142597827157, 0.004040426114538837, 0.9750049011994629, 0.9355031959483583], [0.8639882324447449, 0.003303584589092184, 0.8639262076552531, 0.8310850667176268, 0.39992756401884527, 0.795734422865986, 0.004114188539661703, 0.1464345138010803, 0.060796666646134034, 0.007941016720953358, 0.23663252677148805, 0.0258176204053619, 0.004145715738281856, 0.23989388132076872, 0.7141652243033529, 0.26832033351594237, 0.6385764571732854, 0.7580885497478707, 0.0033103112248180347, 0.858731990114195, 0.941251876303568, 0.2973352553620842, 0.09643838900916335, 0.7956392205349004, 0.7930729583854621, 0.004150182550444451, 0.05179975048505541, 0.7128675433521892, 0.5570659262688791, 0.827750546148244, 0.8910461260340038, 0.009802914827631118, 0.025740507224053414, 0.14548097135050422, 0.06061507654199488, 0.23894852011045656, 0.678463675154417, 0.5967364664532941, 0.9905265084681582, 0.9840604908725272, 0.5569459573736789, 0.5158201022581376, 0.2106140770859187, 0.5490063003029602, 0.9639089641026978, 0.830607884994877, 0.9906924489368987, 0.9938925187010929, 0.47638529321433953, 0.04359377455853656, 0.09636456707061705, 0.009780420164695658, 0.7920866832690654, 0.03693452480982699, 0.02147564534656036, 0.9712276617360266, 0.3269047304874732, 0.5930209489758631, 0.9094810653947143, 0.02150392971820534, 0.7498071942161045, 0.09626085057041414, 1.000001, 0.9629867325705495, 0.017759944940298995, 0.9999042825738665, 0.00796232890974022, 0.9430555725472022, 0.017792700446433784, 0.00643862523855457, 0.979279331109005, 0.02587885794653613, 0.6317669327517256, 0.39832295323350786, 0.025790450255097665, 0.5162152561976421, 0.0516104393847256, 0.5091485766879346, 0.12714050245146905, 0.18864500546722046], [0.7186225665977618, 0.001271288466857272, 0.7192935626033248, 0.9430555704240892, 0.26625433540265436, 0.920516707958842, 0.0016292532636744354, 0.08312359219217876, 0.03078309493958849, 0.0033118959521676625, 0.1454809713617494, 0.011930883683266447, 0.001625864762521442, 0.1462069145285647, 0.861510707835686, 0.16671475913405073, 0.7957915518888494, 0.8910461259853868, 0.0012811530320902293, 0.7183302771118277, 0.8239560408815394, 0.18897032025268987, 0.05171923950973372, 0.63759919666481, 0.920516707958842, 0.0016292532636744354, 0.025804649264269702, 0.5550300330305665, 0.3999275639988427, 0.6733041215200851, 0.9712276617360266, 0.004145715738281864, 0.011995297146094474, 0.08294277292997432, 0.03094928931330483, 0.1463644455434115, 0.5167714536651501, 0.7583788683480762, 0.920869232737983, 0.9729025269971096, 0.7196551237157985, 0.6797149977941113, 0.12714050246129655, 0.3979894705624444, 0.9976098109691669, 0.9412518741331595, 0.9188660602227062, 0.9622495827159158, 0.3292915921663282, 0.02146691082943782, 0.05181834773208469, 0.00412513152673423, 0.9199881775445574, 0.017733189837253083, 0.009751207584233482, 0.9942864522592388, 0.21223310282971505, 0.7559327895304083, 0.984853902096386, 0.00978042016469564, 0.5949541082572835, 0.051503100622667664, 0.9629867325705495, 1.000001, 0.007915403727509549, 0.9635399655547906, 0.0033118959521676625, 0.8310850700854853, 0.007959280813072988, 0.0026296290908703257, 0.9948338596257491, 0.011995297145658161, 0.7915371780529978, 0.2676854058600923, 0.011910344517715363, 0.6797800645860492, 0.025857191729953675, 0.6745297821978301, 0.0711739483755728, 0.11133074427280512], [0.07123529101264403, 0.8639262076631088, 0.07113818956775196, 0.0026266102646526775, 0.3310377070328032, 0.0020731811340889235, 0.8763071311437347, 0.6770364126637034, 0.8941005640212696, 0.9549318996832098, 0.5035263884310243, 0.9908821292191169, 0.8941219605524706, 0.5162152561976421, 0.0012590268104311821, 0.47597506494500447, 0.000770999992025621, 0.0016352294910956882, 0.8593692729673887, 0.07028534721519013, 0.04385221242320135, 0.43293754349574426, 0.7948779831102915, 0.0963645670706171, 0.002057365842038362, 0.8939294102034775, 0.9205167104456877, 0.12547206661201799, 0.21340956210260895, 0.0831096678000546, 0.00415286494744191, 0.9785062930867493, 0.977340930816015, 0.6688717199393972, 0.8818819632687475, 0.510869447765418, 0.14535917223619027, 0.0005936847989840203, 0.025775025409534493, 0.01427755508492474, 0.00045835495038478206, 0.0003497993626848401, 0.5429439897793571, 0.20771101230073757, 0.007957185923420852, 0.002629629090870335, 0.02585719172995371, 0.017530240967390805, 0.26832033351594237, 0.9304796438765481, 0.7915371816169938, 0.9796309138765029, 0.0020530378269356868, 0.9637475098537046, 0.9976947901906563, 0.009621632820805486, 0.3913781348543917, 0.0005877054783329379, 0.0050584050009807105, 0.996859503276059, 0.10884132912760926, 0.7958105993911438, 0.017759944940298995, 0.007915403727509549, 1.000001, 0.017742952898681868, 0.9607999674818609, 0.04355936113343235, 0.9971085975571689, 0.9412518741331592, 0.00979798970330916, 0.9893893795082497, 0.0007575393736974856, 0.32575676744872245, 0.9906924489368988, 0.00035036904548772243, 0.9104609904975789, 0.00034290367055865844, 0.7081746975281731, 0.592467746908268], [0.863822842900816, 0.003299792058791563, 0.864008908364118, 0.830925975684915, 0.3994684453361869, 0.7958105958079064, 0.0041216778972889305, 0.146476570854952, 0.06073268496897109, 0.007948621660637032, 0.23715407229965513, 0.025790450253690495, 0.004141749274726115, 0.23982500184174138, 0.7153283129430313, 0.26832033351594237, 0.6388821594193221, 0.7576532802150137, 0.0033118959521676594, 0.8599658689468543, 0.9400813240426155, 0.29770548551826714, 0.09641069915748139, 0.7953346381231073, 0.7939084580511856, 0.00414740263533875, 0.05177496453692092, 0.7141652281620953, 0.5567993727232209, 0.8266420138992939, 0.8899380102536261, 0.009800100167821716, 0.02577502540953446, 0.14570395374724257, 0.06069636174887958, 0.2392231493882534, 0.6789834253619434, 0.5972507752604383, 0.9908109948617454, 0.986229391130927, 0.5571592461389409, 0.5162152562140719, 0.21107827713302074, 0.5502689977804262, 0.9635399655547905, 0.8301309772428614, 0.9903131972765298, 0.9953206044774253, 0.47597506494500447, 0.04365641276962305, 0.09641069915748139, 0.009770127368724832, 0.7930729584287334, 0.036913318219428524, 0.02145715208711499, 0.9729025256829248, 0.32759387934597994, 0.5940436025166609, 0.9113983452001047, 0.021495697697199397, 0.7513159441414563, 0.09616875184012574, 0.9999042825738665, 0.9635399655547906, 0.017742952898681868, 1.000001, 0.007963853395875102, 0.9436876824959421, 0.0177944036809537, 0.006439857992817191, 0.9788107503439866, 0.025873904068285887, 0.6330381639695394, 0.3989334729871457, 0.025758376938042882, 0.5165118203111835, 0.051669756503276695, 0.5103196026362424, 0.12733537394356842, 0.18882566670225093], [0.03694248042109794, 0.9596051050297464, 0.03695574358284381, 0.0009984531784873163, 0.21253804987519317, 0.0007751439820799894, 0.9729025256829247, 0.5168085547952175, 0.7554806784749201, 0.998469620182645, 0.3613995418268406, 0.9173500763021687, 0.9762842859412592, 0.3650152737848519, 0.0004580369695164958, 0.33103771030897844, 0.0002685692783371494, 0.0005979193602738599, 0.9639089641026976, 0.036807467773265296, 0.02139306294050594, 0.29786938817455466, 0.6387445793290605, 0.05177496453692099, 0.0007736614349612115, 0.9777572632742807, 0.7948779831102915, 0.07085276512369701, 0.12787281200371298, 0.043593773832276646, 0.0016270713505450612, 0.9971219466421108, 0.9178990567368325, 0.5144025129185307, 0.7559327895304083, 0.36436073646225103, 0.08306990143357497, 0.0002035262274586908, 0.012013395153584273, 0.006372405760791891, 0.00015384522124887968, 0.00011554830874598741, 0.39687671087214416, 0.12654859009837402, 0.0033103112248180373, 0.000997306949655851, 0.01200333733637926, 0.007931900397635708, 0.1663759905391352, 0.827750542793898, 0.6389891938034796, 0.9936917857708756, 0.0007729212250867968, 0.862686646537363, 0.94177008532639, 0.004128390457037877, 0.2657705310576389, 0.00020252053013422843, 0.002059385418459726, 0.9436876824959424, 0.06041812253128238, 0.6369281949765463, 0.00796232890974022, 0.0033118959521676625, 0.9607999674818609, 0.007963853395875102, 1.000001, 0.021495697697199456, 0.9640935163565679, 0.9977186653641046, 0.004148891643794029, 0.9207149876173701, 0.0002663164768665739, 0.21253804987519317, 0.9161215514729594, 0.00011560362455836784, 0.7939084616258585, 0.00011431614771636211, 0.5546715308939032, 0.43778203921347736], [0.9777572632342699, 0.009719523396856859, 0.9788107503439866, 0.6378891658556117, 0.5930209489758633, 0.5976510996394285, 0.011972354599410658, 0.26822403519697735, 0.127034058275569, 0.021503929718205396, 0.3986376321536802, 0.06047164119436098, 0.011930883446897122, 0.4001285907140422, 0.5155856227526653, 0.4379392088149737, 0.43841107129869666, 0.5550300329977593, 0.009802914827541961, 0.9781551139601212, 0.9904734673102906, 0.47670460020366223, 0.18873982875847065, 0.9417700832061708, 0.5979372099108828, 0.011957465633876476, 0.110990246812908, 0.8910461260340038, 0.7559327894891633, 0.9539954272032795, 0.7128675433521892, 0.025817619940373588, 0.06087091061417938, 0.2678071417134386, 0.12787281200778278, 0.4008473813801413, 0.8639882293365007, 0.40104887767000325, 0.9792793324139931, 0.9154421828740008, 0.3651550605150409, 0.3310614768591934, 0.3630030525948914, 0.7533143068378712, 0.8287018996986867, 0.636547258660203, 0.9768217835342823, 0.9430555725815052, 0.6756283205542203, 0.09630001923410761, 0.18917392450712958, 0.025679596600543378, 0.597651099655733, 0.08280592922000456, 0.05150309978783057, 0.8615107109389343, 0.5140456494057258, 0.39992756401884516, 0.754468930889928, 0.05166975566573826, 0.916757543849126, 0.18788811160105073, 0.9430555725472022, 0.8310850700854853, 0.04355936113343235, 0.9436876824959421, 0.021495697697199456, 1.000001, 0.04382388762829738, 0.017783760803634807, 0.8610366645496692, 0.060824314969967326, 0.43640134370799527, 0.597007851998918, 0.06036176028223382, 0.3310614768576881, 0.11130676749637392, 0.3287876509701165, 0.23945224552060912, 0.3309980999116237], [0.07132911103024216, 0.8605216926809083, 0.07134447515750487, 0.0026300696261257633, 0.3297331710397176, 0.002079192917569902, 0.8872162081967183, 0.6797149977941117, 0.891046125985387, 0.9622495827159155, 0.51086944781652, 0.9874970647349264, 0.8915366941315402, 0.5166230757727726, 0.0012733588547902085, 0.47710404361073105, 0.0007748657882596767, 0.0016339386494210251, 0.8636781530367288, 0.07101062613989238, 0.04365641204231967, 0.4369447334834284, 0.7955059513802345, 0.09638993698610372, 0.00207422325346534, 0.8927536143497872, 0.9202744296446183, 0.12703405828596578, 0.2133533925197265, 0.08269503465240115, 0.004134322381547809, 0.9792793311090049, 0.9869064589805384, 0.6761297183695788, 0.8905132059512669, 0.5153265851513004, 0.1463189191604277, 0.0005979193602956095, 0.02587700013128726, 0.014485768472101866, 0.00046041068675123717, 0.00035210894423564503, 0.5508618865401819, 0.21085109507341873, 0.007959280813072988, 0.002627553275311794, 0.02586399915709059, 0.017711136628042162, 0.26768540296740295, 0.9400813219261984, 0.7955059513802345, 0.9762842859412592, 0.00207204036609643, 0.9629867325705496, 0.9953339296024556, 0.00973628453326164, 0.3968767072981697, 0.0005947085973217473, 0.005129471838575532, 0.9971219466421108, 0.11031237749990531, 0.7935095906800333, 0.017792700446433784, 0.007959280813072988, 0.9971085975571689, 0.0177944036809537, 0.9640935163565679, 0.04382388762829738, 1.000001, 0.9444784136375184, 0.009795410863873378, 0.9906924489233853, 0.0007677779206865743, 0.3292915889044391, 0.9862690014499979, 0.00035231122975486434, 0.9184044087953152, 0.00034808753585633176, 0.7158591767634732, 0.5970078519989181], [0.030984859529652096, 0.9750701683206726, 0.030995983774665704, 0.0007748657882455828, 0.18830672912723842, 0.0005988214608891935, 0.9840764644273808, 0.47710403974610255, 0.7168191446009755, 0.996191776855233, 0.327593876100908, 0.8905132058986299, 0.9874970647349264, 0.3308713889640382, 0.00035062905234586937, 0.29870455193966106, 0.00020372113451575148, 0.0004598051031437876, 0.9794433886888166, 0.03087162003192114, 0.017698849302324744, 0.2675509140125642, 0.5978084433431285, 0.04382388762829728, 0.0005976761497572907, 0.988986959444619, 0.7576532802150137, 0.06052231150037124, 0.11124285880825557, 0.036730915420295863, 0.0012743038407623793, 0.9903131972765298, 0.8910461260340037, 0.4748828452853793, 0.7172481189868115, 0.3302780777011638, 0.0712830385016043, 0.00015367963872818784, 0.009803618618863145, 0.005129471838575528, 0.0001156368234771383, 8.64553612950684e-05, 0.3613995418268406, 0.1100908529350904, 0.00262837082515188, 0.0007739762387643052, 0.009795410863873352, 0.006414019650387003, 0.14606702739163674, 0.7925986344916509, 0.5980373808604149, 0.986906458922204, 0.0005971043159191795, 0.8298330489585256, 0.918404408795315, 0.003292929117444052, 0.23763126721636266, 0.00015292025157979367, 0.001620271649225595, 0.9202744296446181, 0.05137385110041699, 0.5961084682084199, 0.00643862523855457, 0.0026296290908703257, 0.9412518741331592, 0.006439857992817191, 0.9977186653641046, 0.017783760803634807, 0.9444784136375184, 1.000001, 0.003309281484186981, 0.8937796774892178, 0.00020201228950463945, 0.18830672912723842, 0.8893206212873164, 8.649674959920354e-05, 0.7567291621132073, 8.553343584115164e-05, 0.5144025129185307, 0.4004734492399799], [0.7583788683480766, 0.001633938649473027, 0.757889020180368, 0.920869232750544, 0.2983830583512797, 0.8933520079409891, 0.002050730004470584, 0.09630001923410757, 0.03692480361068258, 0.004131454221078056, 0.16375711243648325, 0.014641903888719629, 0.002077949386385095, 0.16684247419500603, 0.8215343286891912, 0.18907888082918284, 0.7567291621132073, 0.8639882324447447, 0.0016319457163438465, 0.7513159441414565, 0.8626866465687425, 0.21188801976674063, 0.06093649613230352, 0.6797637973026096, 0.8886611273994544, 0.002078993902594297, 0.030996725532987626, 0.5899776576475332, 0.4384530388950601, 0.7183302771118276, 0.9626411233066253, 0.005183395416075767, 0.014528469443359926, 0.09543512713580972, 0.03663873803823874, 0.16570844789005415, 0.5550300290320184, 0.7163561443886305, 0.9430555704583922, 0.9724882603800408, 0.678463675154417, 0.6365472586978282, 0.14376782701833857, 0.42971713212141255, 0.9976947901906562, 0.92104554451727, 0.9444784136375186, 0.9703216479577509, 0.3650938972377434, 0.025632935562008102, 0.06079666568802785, 0.005179427615521897, 0.8872162081967184, 0.021508046910641957, 0.012009083391081444, 0.9874205561142521, 0.23576771251105474, 0.710670289840389, 0.9627121694229501, 0.012013394915525616, 0.6288708392934039, 0.06090588076748148, 0.979279331109005, 0.9948338596257491, 0.00979798970330916, 0.9788107503439866, 0.004148891643794029, 0.8610366645496692, 0.009795410863873378, 0.003309281484186981, 1.000001, 0.014651367424409794, 0.7463699904031199, 0.29559708725492334, 0.014632096308536095, 0.637278857725343, 0.03078309439902992, 0.6263926221184293, 0.08226868783263695, 0.12733537394356853], [0.09644762072629892, 0.7939084616619555, 0.09642685060337415, 0.004153759464990128, 0.4001285907322349, 0.0033124507113286837, 0.8223801320247793, 0.7580885497478707, 0.942671996012849, 0.9178990566867504, 0.5892862584960931, 0.9980635068602168, 0.8298330489887102, 0.5981518824920713, 0.0020613083183413775, 0.5572259196360233, 0.0012796822314090908, 0.0026296290908703257, 0.7948779831102911, 0.09578289842970168, 0.06076612057822573, 0.5140456493706669, 0.863988232448673, 0.1280105888968706, 0.0032997919843078772, 0.8306078850137599, 0.9639089641026977, 0.165106788906286, 0.2682689701144989, 0.11099024681896377, 0.006421391437287362, 0.9444784136418131, 0.9938925187010929, 0.7526836193194484, 0.9387324934598736, 0.5953671404746887, 0.18873983105299752, 0.0009959475119129086, 0.03693452480982699, 0.02118926122707018, 0.0007744950184575203, 0.0005974044757517952, 0.6296388207274549, 0.2640209491674734, 0.012012532724872479, 0.00415216934472813, 0.036953090569944065, 0.025701114470140674, 0.33068141349616015, 0.9729025256077237, 0.8629963699845608, 0.9426719960128491, 0.003295372868325145, 0.9905265084681582, 0.9965494315709138, 0.014514916499996047, 0.47058403068272897, 0.0009893201079603342, 0.007855020794178926, 0.9976231663105226, 0.14464782235211615, 0.8626866465687424, 0.02587885794653613, 0.011995297145658161, 0.9893893795082497, 0.025873904068285887, 0.9207149876173701, 0.060824314969967326, 0.9906924489233853, 0.8937796774892178, 0.014651367424409794, 1.000001, 0.0012650670818512657, 0.39798946694587667, 0.997108597607039, 0.0005979193602738599, 0.9596051049686627, 0.0005892263641439314, 0.7896641549219043, 0.6774415793313349], [0.3269047272150417, 8.430400804602416e-05, 0.32791545271537054, 0.9326197181251742, 0.06950923298873662, 0.9549318996832099, 0.0001156368234760866, 0.014541339060521307, 0.004053209297029352, 0.00026785041840857214, 0.030993758606482926, 0.0012501700123571827, 0.00011301866231262367, 0.030572398815753625, 0.9905265084501433, 0.03656866184199924, 0.9938925187010929, 0.9627121693047643, 8.600139491843144e-05, 0.33078430332587533, 0.42649005636505344, 0.04379453309090526, 0.007855020794178942, 0.2643433717168789, 0.9618121669815041, 0.00011349839059350326, 0.0032599982790187582, 0.21351683600650692, 0.12596847655823, 0.29010293916914465, 0.8697262683234005, 0.00034769624097229706, 0.0012796822314090908, 0.014645758665174428, 0.004148891643794029, 0.0309367005866373, 0.18842843784095906, 0.994286452204989, 0.5529751097029194, 0.6797149977941114, 0.9840764643513161, 0.9757003876257584, 0.025876999665229453, 0.1279952730255998, 0.7839965732511557, 0.9281667713572419, 0.5490062963478085, 0.6385764571732854, 0.09439259428913359, 0.0026283708251518827, 0.007915403563565081, 0.00034398854704218606, 0.9626411232716099, 0.002043235258774726, 0.0009775531583631851, 0.7583788683377316, 0.05181834773232031, 0.9975038057765944, 0.8639882324486731, 0.000984007540460547, 0.23991684284088916, 0.007782982940261906, 0.6317669327517256, 0.7915371780529978, 0.0007575393736974856, 0.6330381639695394, 0.0002663164768665739, 0.43640134370799527, 0.0007677779206865743, 0.00020201228950463945, 0.7463699904031199, 0.0012650670818512657, 1.000001, 0.07130180519697751, 0.0012462271734261054, 0.974393719448546, 0.003306748285875413, 0.9794433886888166, 0.012006497219114698, 0.021446371707560714], [0.7141652281036464, 0.1256433321310821, 0.7158591767634725, 0.14535917222429376, 0.9814133889898341, 0.1273353739435687, 0.14645904370246463, 0.8277505427449708, 0.587821482772895, 0.21335339251972615, 0.9433941481095631, 0.39415084332166617, 0.14413987467869024, 0.9363766988604432, 0.09644531271438898, 0.9582282621180597, 0.07113818956775206, 0.11009085446074163, 0.12765267735198035, 0.7197067945838611, 0.5862481036529125, 0.9794433873524365, 0.7135331618889025, 0.7882292837012267, 0.12794627454997182, 0.14464782047848734, 0.5514290175062061, 0.8638228429125989, 0.9539954272032795, 0.7423798287356982, 0.18542250098478155, 0.23785314949809142, 0.40104887405481005, 0.8311049552383104, 0.5981089418065942, 0.9441394468595157, 0.892753617131129, 0.060870911571518346, 0.47518978123906547, 0.3648056940214371, 0.05164132521511236, 0.04379453382050974, 0.9199881775445573, 0.9626411233066255, 0.2657705339054675, 0.14480367352436815, 0.472570205049728, 0.4010776706025965, 0.976195577798872, 0.5168085547928674, 0.7176430020741319, 0.23576770982817663, 0.12799527302385413, 0.4716212126332179, 0.35981171785704247, 0.2987045519423778, 0.990052546006259, 0.06093649709316751, 0.21335339252554678, 0.36175429974219986, 0.8306078883608018, 0.7081746937017976, 0.39832295323350786, 0.2676854058600923, 0.32575676744872245, 0.3989334729871457, 0.21253804987519317, 0.597007851998918, 0.3292915889044391, 0.18830672912723842, 0.29559708725492334, 0.39798946694587667, 0.07130180519697751, 1.000001, 0.3930958483526483, 0.043756821163731294, 0.557065922255664, 0.043794533822102744, 0.7958105958079059, 0.893352007940989], [0.09616875184493551, 0.795791555472001, 0.09599630416170929, 0.0041417492749332725, 0.40107766699079084, 0.003297660599881211, 0.8109863751769317, 0.7539094390333971, 0.9444106105527479, 0.9094810678517461, 0.5798994388595979, 0.9999042825829593, 0.830925975696249, 0.5967364664532938, 0.002034891188251678, 0.5550300330305661, 0.0012712884359469391, 0.0026275532753954143, 0.789664154986532, 0.09465498631700318, 0.06094232937521385, 0.5085275625684417, 0.8619437637488039, 0.1277749275556804, 0.003267808960298748, 0.8303892682750852, 0.9626411233066254, 0.16281929856760835, 0.26791611278325905, 0.11137071289832237, 0.00644001210369468, 0.9422434797829107, 0.9827059537186372, 0.7434287348055802, 0.9281667714711869, 0.5892862584960931, 0.18720592435210273, 0.0009873334117156032, 0.036730916051433166, 0.020851734650637367, 0.0007698200692231441, 0.0005925493123059678, 0.6196092197294821, 0.2596785749118057, 0.011990418229521509, 0.00414889164392608, 0.036885061706395515, 0.025398465471248684, 0.3309426579024405, 0.9614459027543939, 0.8573357342138713, 0.944410610552748, 0.003259998279404144, 0.9897445920139608, 0.9973367239736747, 0.014321355772246571, 0.46333190133290164, 0.0009761272301319262, 0.00773396775554877, 0.9957865900131934, 0.14249366644520195, 0.8638228429125987, 0.025790450255097665, 0.011910344517715363, 0.9906924489368988, 0.025758376938042882, 0.9161215514729594, 0.06036176028223382, 0.9862690014499979, 0.8893206212873164, 0.014632096308536095, 0.997108597607039, 0.0012462271734261054, 0.3930958483526483, 1.000001, 0.0005936847989840192, 0.9498040175510403, 0.0005795353096935651, 0.7799545633073672, 0.671228809408939], [0.23954968163455498, 3.4992984241383714e-05, 0.2397733552108965, 0.8626866465373628, 0.043522893229268035, 0.8935872036880929, 4.75899168038697e-05, 0.00796232890974022, 0.002064863054189417, 0.00011560362455836784, 0.017671763675315755, 0.0005947085972757779, 4.749093987280799e-05, 0.017759944940298995, 0.9417700853734923, 0.021490040010816877, 0.9796309151997763, 0.9178990566867504, 3.52645123679609e-05, 0.2394522482160191, 0.32822163888950373, 0.025849148899543532, 0.004145715738281864, 0.18873983105299766, 0.8935872036880929, 4.75899168038697e-05, 0.0016311258035165168, 0.14589934368486088, 0.08290110129667269, 0.21150300788781437, 0.788965273249617, 0.00015356199959129928, 0.0005979193602956084, 0.007945008406608452, 0.0020760110112994622, 0.0177790804385009, 0.12801058889687075, 0.9906924489368987, 0.4383586174521463, 0.5534384617564886, 0.997623166750643, 0.9999042825829593, 0.01455352351732524, 0.08249935334340147, 0.6781552617322967, 0.8610366645496692, 0.4374050532509578, 0.5158201022581376, 0.06061507654199494, 0.001278702687663455, 0.004153660064630986, 0.00015279953711562163, 0.8930741353093429, 0.0009953994917048777, 0.00045803696948525617, 0.636928195011298, 0.03080741415469437, 0.9874970647888057, 0.7539094427674264, 0.00045940915254157484, 0.16596243345618905, 0.004128390456737541, 0.5162152561976421, 0.6797800645860492, 0.00035036904548772243, 0.5165118203111835, 0.00011560362455836784, 0.3310614768576881, 0.00035231122975486434, 8.649674959920354e-05, 0.637278857725343, 0.0005979193602738599, 0.974393719448546, 0.043756821163731294, 0.0005936847989840192, 1.000001, 0.0016344470411229568, 0.9922764984415713, 0.006424619257405983, 0.012009083629000042], [0.16607764878279135, 0.6303775648269279, 0.16637599053913507, 0.009757977119622865, 0.549650435731609, 0.007941016556478386, 0.6789834253619437, 0.8923904994732138, 0.9851679192963683, 0.7957344264488804, 0.756348970616098, 0.9519885372582466, 0.6719520265644415, 0.7544689308384716, 0.0051807912044033585, 0.7172481228230769, 0.003309281484186981, 0.0063902726596524895, 0.6383778331821204, 0.16682251227087821, 0.10972001030367626, 0.6797637973056999, 0.9589393849492086, 0.212233100329699, 0.007963853230927133, 0.6739327986032141, 0.9931079451043835, 0.26801230054887787, 0.39832294964650944, 0.18615609286915757, 0.014436972951356647, 0.8266420105494405, 0.964024305124768, 0.8937796775054732, 0.9976231663105226, 0.7585422214102455, 0.2986187864567783, 0.002630069626125754, 0.071206317067887, 0.04373483638563584, 0.002076010962616947, 0.0016352294910659448, 0.7935095907197203, 0.3997075002431148, 0.02572141882468609, 0.00972813315066448, 0.0709087401097, 0.051808428369799174, 0.472106766090506, 0.9975038057902007, 0.9629867325705492, 0.8206501170049031, 0.007963853230963342, 0.983252578915511, 0.934585776603394, 0.0309700334148326, 0.6375991926745813, 0.0026283708252235857, 0.017751871357566236, 0.9387324934598736, 0.23945224821601868, 0.9530142597827157, 0.0516104393847256, 0.025857191729953675, 0.9104609904975789, 0.051669756503276695, 0.7939084616258585, 0.11130676749637392, 0.9184044087953152, 0.7567291621132073, 0.03078309439902992, 0.9596051049686627, 0.003306748285875413, 0.557065922255664, 0.9498040175510403, 0.0016344470411229568, 1.000001, 0.0016302282764853347, 0.9207149876341154, 0.8310254040111485], [0.23606693029092723, 3.4188425268730826e-05, 0.23689882504579338, 0.850144266781913, 0.04252221452116268, 0.8828744063053633, 4.7754194168359e-05, 0.007880438560871141, 0.0020191264306376505, 0.00011510673402724687, 0.01779397785703888, 0.00058153582865976, 4.6479042056919016e-05, 0.017486666440146043, 0.9433941502034127, 0.021214122212747048, 0.9712276630479489, 0.9014422366309289, 3.49620141670147e-05, 0.2394522482160191, 0.3203990222883883, 0.025804649264269734, 0.004081924156560942, 0.18567559700634909, 0.8905132087580202, 4.669644092444607e-05, 0.0016032623029682998, 0.14640297893516074, 0.08148495370312245, 0.20628439546052144, 0.7701615988023518, 0.00015119908725852633, 0.0005974044757517952, 0.00795185596499656, 0.0020742233020304805, 0.017733189838220666, 0.12724094579379422, 0.9855847834569549, 0.4338502204090387, 0.5572659251597113, 0.988213866328336, 0.9938925187010929, 0.014654172609319529, 0.08314149682368935, 0.667145256953123, 0.8455993184202305, 0.4303036828148926, 0.5158201022581376, 0.05937466957074192, 0.001278702687663455, 0.004118030061193465, 0.00014941503425778697, 0.8915366969415198, 0.0009775531825717441, 0.0004486638517321588, 0.6385764611986643, 0.030993759150458922, 0.9900525459792496, 0.7584696194578142, 0.00045195054055328454, 0.16682251227087855, 0.004040426114538837, 0.5091485766879346, 0.6745297821978301, 0.00034290367055865844, 0.5103196026362424, 0.00011431614771636211, 0.3287876509701165, 0.00034808753585633176, 8.553343584115164e-05, 0.6263926221184293, 0.0005892263641439314, 0.9794433886888166, 0.043794533822102744, 0.0005795353096935651, 0.9922764984415713, 0.0016302282764853347, 1.000001, 0.006430156439147649, 0.011957465870772436], [0.3285123811163389, 0.39363241566277823, 0.32929158890443866, 0.03075732227251016, 0.7810191738258561, 0.02574050676045393, 0.4383586174581258, 0.9936917853234534, 0.9281667734468358, 0.5567993727232216, 0.9433941481095629, 0.7820478139580674, 0.43141723848136054, 0.936376698860443, 0.017793977520617336, 0.9154421828074033, 0.011978946014879796, 0.021260878802898616, 0.399927563998843, 0.33106147357826665, 0.23513664750282565, 0.8939294102034775, 0.9823823644042532, 0.39726629415312154, 0.025863998691266918, 0.43293754349574426, 0.9113983475752934, 0.4770127097802193, 0.6324173628218344, 0.35745161164376, 0.04298774156407939, 0.5930209489758634, 0.7957344264488804, 0.9977186653641046, 0.9444106126703238, 0.9441394468595156, 0.5160299901012748, 0.009792364019604349, 0.1661849901353643, 0.11124285881179605, 0.007936647011403765, 0.0064301564389137615, 0.9629867326011988, 0.6381487197796618, 0.07066480968268667, 0.030639781340801985, 0.16526886302074342, 0.1280197792984962, 0.709039517083759, 0.8941005668393298, 0.9880407342378306, 0.5878214827728956, 0.02587390360228386, 0.8540593747751907, 0.747281457905469, 0.08313353749911104, 0.863264883830594, 0.0098029148276311, 0.05177496369908954, 0.7513159441414563, 0.43819080732321775, 0.9750049011994629, 0.12714050245146905, 0.0711739483755728, 0.7081746975281731, 0.12733537394356842, 0.5546715308939032, 0.23945224552060912, 0.7158591767634732, 0.5144025129185307, 0.08226868783263695, 0.7896641549219043, 0.012006497219114698, 0.7958105958079059, 0.7799545633073672, 0.006424619257405983, 0.9207149876341154, 0.006430156439147649, 1.000001, 0.9788107503439865], [0.43694473345958745, 0.29529307090937407, 0.4376039775931224, 0.05164132521511231, 0.8838256588400587, 0.04377672028880456, 0.33042828252584516, 0.9897445919824597, 0.854938664067197, 0.4384530388950603, 0.9869064589805383, 0.6726438288432417, 0.3279154527153704, 0.9869064589805383, 0.030960400243875984, 0.9773127994379046, 0.021495697697199424, 0.03673091604876103, 0.2985544785122068, 0.43819080732321775, 0.326904727249228, 0.9639089641026976, 0.9406889268667384, 0.5144025129185302, 0.04386060846986265, 0.32878764771321944, 0.8266420105494402, 0.5970078519989176, 0.7544689308384718, 0.47058403068272864, 0.07044700133570289, 0.47518977741587004, 0.6795198347717061, 0.9900525459792496, 0.8636781530367293, 0.9908109948527354, 0.6390656550294337, 0.01779397785703885, 0.2396356852297985, 0.16618499014518728, 0.014641903888719629, 0.012012532724763247, 0.9936917858296112, 0.7549927023356948, 0.11085221954779648, 0.051503100622667664, 0.23879417972871117, 0.18907888312783144, 0.82395603754257, 0.7953346381231075, 0.9439361251828609, 0.4721067660905066, 0.043852212423201295, 0.7539094389785512, 0.6336292476580643, 0.12782691933776244, 0.9412518741845156, 0.01776717148469846, 0.08285548373162474, 0.6361360993651474, 0.555667942356006, 0.9355031959483583, 0.18864500546722046, 0.11133074427280512, 0.592467746908268, 0.18882566670225093, 0.43778203921347736, 0.3309980999116237, 0.5970078519989181, 0.4004734492399799, 0.12733537394356853, 0.6774415793313349, 0.021446371707560714, 0.893352007940989, 0.671228809408939, 0.012009083629000042, 0.8310254040111485, 0.011957465870772436, 0.9788107503439865, 1.000001]], "covariance_matrix_inverse": [[776934.0998885398, 1048.7269485573886, -217504.54362143722, -11959.700980534624, 36556.120175390715, -8286.419526386157, -1328.236229991815, -7558.851775033044, 7277.990295239288, 9694.14761519928, -21582.094021957153, 6668.347323360224, -698.2696176770634, -18888.288341577238, 4336.557853810077, -3047.618095644337, 9650.5044167964, -16729.787797474797, -4495.536614681809, -56106.06212131383, -39750.68845889437, 16777.831001416915, -8020.536053895597, -208638.38528061748, -185.99748649583069, 1704.791706651593, 6930.802487013895, 4670.146683359268, -36087.05962320403, -77001.14588551823, 20166.364250933322, -2312.6808386380108, -10145.978545315202, 10525.379573485616, 8035.202953432975, 9876.43484922667, -97761.02344006793, 7020.10009805945, -64892.21038109573, 41737.66362329704, 8333.12288595053, -7744.605872605827, -18118.50837143196, 29590.13658568462, 28952.26101964084, -16217.089533891545, -59582.493950845324, 32782.95543065392, 21206.557328772833, -869.1197307316679, 4721.676705765628, -7494.560153229141, -2073.3663532532864, 5766.183500472096, -37.495943132255505, 16219.227723821417, -9758.116479824566, 6813.865200054357, -45454.62513068677, -5608.032374241853, 29560.312510566564, -21083.59698902638, -13153.070836809206, 17067.974886069813, -2506.1674963315522, -15360.153754392994, 3689.270154923239, -123254.21652996771, -9624.08693284103, 5809.697249793484, 36000.57270782931, -5767.930515177355, 7801.428270853199, 22570.579371622756, 9534.395718393023, -1814.3039633312676, 2001.0050522489582, -8290.169120065451, 13393.12413627778, 5338.093722214334], [1048.7269503541775, 266810.06693193247, 837.5374558744811, 3540.744031594468, 1613.2282040883351, 3252.9414672821213, -1265.1052771077177, -16968.42259310578, 7416.900936944955, -15209.170314537958, -10963.860809194435, -3887.6787043931704, -287778.8744874581, 2824.5739879481753, 699.330873674413, 7613.552256457627, -3497.9805476428305, -1050.2590538444192, -3639.4704173325413, -752.2937189262474, 8803.325624967385, 3258.3237865323035, -2004.848814376941, -5956.335374504081, 3014.7334001295626, -165431.81297106566, 2375.068173793658, -6130.426313193743, -34.59847106086075, -7160.523870790223, -269.9510611054479, 68357.48694575512, -97706.33055025128, -1711.0345789781902, 49641.53936698491, -12386.955659760953, -1839.0993531698932, -2400.266984996168, 3217.391649378189, 4121.483726760394, -2912.1748433118532, 2302.985459202207, -9005.63840745223, 7773.698670178368, -4241.551288733362, 2703.3016361321133, 3165.86068996999, 1978.6264757842769, 1102.789178312472, 19656.13351631703, 2685.429371475468, 46892.72603369011, 2632.0527312931094, -7319.267967320731, -1443.4594008215363, -2521.373927559708, 3579.5542219940085, -903.7554928644182, -2948.8401940066715, -17332.962750077724, -7353.574818489739, 2687.8647722644773, -2019.9055422698032, -3873.823158098413, 10910.407959901284, -1831.2538870660665, 80260.38199463766, 6148.993508870049, -38328.468379543694, 112288.2023118084, -5365.651298614163, -27501.18166578836, -1043.8909637374518, 19660.79390367856, -3141.9961837057754, 1880.7683580613154, 27389.59653964474, 757.0927948117424, 12629.149303142472, -20301.25133806455], [-217504.54360896352, 837.5374518199835, 772641.0482666629, -7717.090973540148, 28657.551445868758, -4461.792556118367, -1788.3238150316756, -2777.9627395422713, 5988.065921472347, 10676.238535996497, -20867.829633640376, 7136.45136588163, -846.9076606174012, -19714.909509580488, 425.29378328069083, -2855.2260427343485, 11604.981886896536, -14441.434671486455, -3911.7687270592783, -98764.40996240951, 4209.972330200408, 12983.844062570048, -4814.817242426337, -190950.54563735315, -1829.9759394957098, 1678.7547688183633, 7334.280863579982, -17135.979501539085, -24535.390521714497, -14215.387691394335, 6942.653317037994, -2795.755107186046, -8082.340341140518, 8411.17592944211, 6995.740696025769, 8671.785832439333, -125758.98704828878, 7230.643302321716, -77395.46425113402, 52743.69366170501, 9817.501165128011, -9685.287627854641, -19475.38270231403, 48953.10011152304, 34266.834007497935, -14376.290533642125, -51598.92882634813, 15974.09514490745, 28674.729290505446, -779.3822541332403, 7956.665575946528, -6414.980453523629, -4855.14637492073, 5255.732773528945, 36.42297072216301, 13981.049205123167, -4799.909741913613, 5979.0008807041495, -41038.25609921807, -6746.399127362586, 16089.099475814473, -24086.547979850817, -11957.879273054668, 16765.706017970522, -1892.0802920790593, -18187.44499054843, 3275.1778037915255, -155194.6016877405, -10922.764009794972, 5422.4226986876965, 41636.187197090745, -7219.6310747785155, 6661.219854098256, 15559.41967763801, 10610.298102920127, -3061.4885661643507, 1239.8855619725632, -5782.716298162221, 11188.673706368687, 6702.355569292331], [-11959.700952754918, 3540.744033748131, -7717.090965483438, 785854.6955841585, 5351.197860766626, -207399.19145553524, -358.61305285610416, 627.8794006911892, -936.2910782409672, 3321.6479387873032, -3555.4676684117185, 79.22357713501421, -2807.159311389008, -4835.72626039746, -367.06108725490867, -5473.605348561229, -42890.59829970125, -109523.11393957786, -0.4019516392198779, -13715.233151660495, 41673.94279085144, -5002.387602541911, 1583.4491441834182, -17480.028466936506, -128754.19086482306, -2748.257209636643, -1641.7243123680141, 6504.134231596794, 4929.606349613078, -26174.176839658703, -43826.0765211745, 1030.4891203716063, -2200.9179995219215, 6377.281254531567, 464.9337582944569, -5408.377148489275, 22290.337168029288, -19095.693593030264, 16585.203669591716, -1958.5179523160446, 46521.42171443305, -16746.38102207025, 206.3250340055737, 7310.556392679693, -83555.76696139004, -179665.71734299246, 34039.104171725834, 5223.432505158919, 4024.902975503, -3357.346901836427, 3242.309334324985, -788.6622844340353, -97519.5830828305, -1838.2315256628171, 854.0228719341123, 10213.349591848164, -6172.380883287128, 27725.65696694312, 49066.988953787055, 563.2791819739039, -13199.327428852177, 991.4084592515585, 13179.503208653176, -80334.67825005589, 1467.5047989045431, 8521.81333322224, 693.0349713521739, 1645.8693475883338, 1505.1058059662982, -1218.389606886245, -40808.47744967069, -833.8455374091583, 83205.35087566754, 6165.271011194516, 137.8047350396829, 14215.152806595619, -2016.3111116556724, -33345.52985260741, 8082.336213326384, -1798.2585817029237], [36556.120202172635, 1613.2282039269999, 28657.551390026398, 5351.197863331109, 377632.05601380387, 4386.205429035508, -4006.490377875685, 30170.333660860855, 11779.866010886553, 24820.342774473153, -35938.63046300476, 11376.073723538662, 783.7139884030495, -150725.49448587728, -8131.941375938797, -71692.66574775871, 5086.76599008873, -7547.250636470477, -6962.391838211702, -29348.49544915197, 16011.672617578743, 59494.17154909169, 21129.919795937825, 55284.59762229171, -2233.3103983169535, 4307.844870060123, 27650.48945674416, 1199.9717302122108, -68726.26017082241, -31905.68299022257, -6311.155165084746, -7067.716943469667, 14584.578343720626, 10672.469092825682, -14865.664356124687, 50588.54569393015, 90028.10281908789, 6322.597117062173, -27389.475603137955, 33568.15976663684, 2422.8507125070178, -4435.429675916849, -36361.101693540506, -21696.008712279316, 13699.404699822966, -207.1204142684313, -8290.875333089012, -9316.209294875272, -330890.9135982693, -8490.052282394903, 34939.81268789086, -6810.433591893807, -6203.528151047717, 13795.315588015577, -904.1089731876668, 8053.747377580848, -14619.136947856274, 6668.697562069739, -14583.260846768095, -14914.390271566768, -19285.532020565493, -69052.94143919412, -8858.636423056387, 8163.001850018332, -3525.274564452575, -12434.453459012728, 827.1499261049944, -34827.354235432904, -21719.471676001667, 2132.6909820119063, 11496.7684843737, -16672.615955343197, -325.8989155831801, 61895.06867164115, 15229.353068603226, -3536.0539992988415, -19012.237598808177, -253.00901147983635, 5457.0308697815635, 46243.87087611619], [-8286.419508557792, 3252.941462390945, -4461.792506113416, -207399.1914216753, 4386.205470729489, 769733.2002536224, -392.8834760529511, 4319.2776183747865, -2079.2299648718626, 2921.8194847302775, -436.0697977889674, -143.40120313995794, -2084.333036252451, -5992.748492250257, -30381.108430550274, -8518.764379060292, -98388.56220501855, -108133.79129058367, 489.7576353907086, -12258.162688791637, 12735.975894733283, -6646.900413988453, 2891.287411120228, -6260.888554612273, -167197.22258462058, -2431.687486066965, -2031.1630199502645, 6946.559054840383, 5890.582083769955, -18486.930699835695, 43387.04736975299, 159.51036119392555, 2182.022388018179, 5541.396489448697, -3576.7905777134206, -2927.1376932793637, 18689.489667055004, -65940.73410816483, 9684.617334273215, -6419.489314864647, 39630.0943724464, -13072.283783467105, 1497.7717950237386, 5846.742545044013, -38857.79269151944, -150596.07747996578, 24433.47575897604, -3324.072901920878, 4314.727547237797, -4355.477987886832, 3791.9925911054793, -627.0840715309084, -132309.78607219295, -1944.0355259753374, 842.6437069187323, 9876.77653624216, -4305.942647007553, 9994.383672609469, 63734.65197553371, 1130.231284826004, -8626.314401152296, 1268.3612129844491, 18068.259036849442, -63560.106668830515, 1423.819595100848, 12360.67771278321, -423.1925616230313, -4426.838938983331, 2748.2211929370974, -2388.519844392208, -1902.1237836072933, 180.7687160191786, 89115.06173048799, -2261.4603483237465, -115.89000879753753, 30387.309200375024, -3708.964425584312, -13366.765443969363, 5134.087331277035, 2058.327012440517], [-1328.2362287199317, -1265.1052623423602, -1788.323809405524, -358.61305488511994, -4006.4903580509667, -392.8834771602348, 55811.1453720377, -10100.728981544285, 14439.377781656718, -119876.67572702115, 1392.1846070784147, -8670.439627678137, -2658.2996887157797, 5349.8432598044465, -514.5043224718534, 3940.147473207747, 649.0861430987467, 1151.6132688062598, -63184.0210579556, -750.3710208539413, 626.6717726066522, 2941.0629842220433, -14807.376733501036, 886.0069155935847, -847.8693039495379, 52368.81833087156, -13232.788871605653, 3510.3518649907246, 853.9111073776431, 2195.5004597883694, -1826.868647199733, 44010.234973331106, -3538.0002571928703, 5201.371877192661, -1083.1907451678333, 3257.8746308191166, 4605.597723630795, -30.58146871446793, -1774.8445674362924, 45.538429956859744, 1092.0361368775366, -1009.3634394578403, 6400.398886739694, -6603.854242312481, 1289.4515488953632, -349.90748218158177, -1019.4308692391613, -143.8136341882154, -3557.704279555518, 4303.399472784311, -22240.53716234703, -54624.3629516224, -892.3738351808751, -3975.7168566381697, -2556.2023965530007, 1009.3415205871703, -7901.770345890364, 91.41089983588854, -581.9240154989905, 22656.736589307427, 3558.2380068160187, 20198.020651610022, 495.2306220403936, 2159.7481501731154, -13417.172786286654, 454.1498228840109, 33392.33526693083, -3976.933730392268, 45044.237573560014, 22634.491856466248, 1315.3849369950822, 18928.91512111159, 746.9430148741511, -459.0439424692023, -15243.164698545701, -344.17080401565977, -2568.874661064367, 104.05238203853513, 4618.971517884772, -185.85754865963816], [-7558.85177200245, -16968.422602543113, -2777.9627557278095, 627.8794148946811, 30170.333618773704, 4319.277614551251, -10100.728976246133, 782556.1425962033, 24095.83367721105, -6154.217784860282, 35981.765216435786, 32519.155321344122, 7293.865950838598, -129195.91581839144, 4881.428730258564, -103746.14889804742, -107.67936436592286, -2752.105901696593, 8876.649710126096, 5469.624758933862, 22330.927165920868, -29408.450631950327, -160864.52106403955, -16008.536631852208, 7030.401605061892, 17859.625886159043, -33621.34352894792, -5621.271666610466, 24088.600846343394, -36897.20832834404, 2852.1477384419136, -14799.68097200096, 18447.822795280423, -80113.68223702509, 6505.1223360395425, -91534.57746290903, 28794.319069167523, -1351.923980619627, 2855.1501416793376, 12034.034982309673, -4793.512920087427, 3291.5644956233555, 38674.13122577863, -12966.994689481638, -6000.810838027066, -1252.3808208167939, 13449.415828607223, -208.5035641259556, 25911.305321045023, 45500.867853885495, -169241.95214759183, -28168.554424937658, 6785.477500189809, 2881.7173963834575, 5908.216817519342, -7771.412892022388, 33827.31090632666, -3987.6565053717513, -3724.1760355601664, -11070.469570959021, -19145.205050284378, -67134.19129860352, 990.8592623911629, -17003.2836318523, -4916.828730324347, -2495.363524551133, 1444.6335692340938, 7070.082227040233, -21504.919963733966, 17592.281713538858, -1153.7213964963798, -11608.726092471903, -5363.544476869412, 38739.96274278793, 49070.68872474293, 1783.7956726013963, -1394.672314184223, 1601.6104123453938, -68954.25724582626, -154668.984001232], [7277.9903267177915, 7416.900934465612, 5988.065878463466, -936.2910891231664, 11779.865993693345, -2079.229949831979, 14439.37779455685, 24095.833709775507, 630158.6014020854, -58139.484520760794, -17107.415100135422, -112340.92749577771, -9543.19663770569, 17882.087715632762, -4263.485811934186, 28463.933494699668, 1350.8226049741982, 2222.9960051298954, 10501.160587320905, -2970.0528079408073, -6811.421200259011, 989.0426528409222, -108709.7176770508, 1924.7933082515071, -2694.512068438368, -23633.089015654634, -145365.20494419895, 2519.0963637640125, -18083.06685796691, 5057.118671288098, -42.910962462410296, 54655.09158944476, -340.5766129041594, 18805.692229409713, -734.5826187734436, 26611.829762585938, -26122.611781761807, 3056.8479635008853, 2674.3725548527636, -13904.403578708181, 1209.9868289918616, -562.8669922119745, -21814.69809066101, 21137.114905810857, -1334.675203885541, 611.7876929616373, -249.77615444204076, -5664.712708073775, 1471.8840758723913, -11462.048622093254, 10102.279701686923, 70990.96528371228, -2328.5629924726754, -100987.15967786562, -14243.628483642993, 4598.024700637219, -12627.551548269517, 1628.0185342216434, 11994.224383922141, 47655.415786172234, 10116.884168215385, -316509.0316807469, 322.5198433835312, 5631.482676396496, 17426.327913256657, 1545.4441913706805, -2922.4074600728895, 2720.7484023667007, 80268.25511989312, -32283.272695769483, -3063.176523956203, 37815.54980928887, -2406.7864517697526, -29506.638480938534, -164552.20873745473, -2485.0043302769413, 13711.79319460965, 1129.1286852759013, 13315.384537551532, 45550.24907633389], [9694.147628154062, -15209.170324363151, 10676.238532569716, 3321.647941512749, 24820.342747487448, 2921.819497053575, -119876.67571264411, -6154.217813065435, -58139.484489285955, 524796.7920322057, -4065.8032209879075, 9030.788967900786, 23505.31674867201, 25883.28580501673, -3544.9562106955946, 12231.072136797673, -403.4195015421112, -2946.033633416586, 89677.361783887, -4134.615733712579, 10205.277961664662, -12961.205674803383, 5608.670182231459, -1300.817135631368, 1514.354843231189, 3683.124396865169, 18271.940825328275, -3849.9775539852167, -21508.994915079267, -13646.36502427867, 1521.6564109127776, -79318.05017604538, -190818.84798632778, -9100.025716161397, 60255.96563593098, -24994.306073961063, 4370.228722929544, 2428.8425659919058, 202.01807328792404, 646.6716355539769, -2535.0056966081984, 1554.402547340537, -5298.180581942844, 16583.866098939794, -3393.4887870040293, 2133.518886298627, 1674.6757062851339, -2572.94981176678, -11307.363615656459, 8309.74066298347, 22539.50712801958, 77393.32388624096, 417.23169937738936, 25128.768687826498, 34523.67183690961, 2864.47361599739, 10634.072996346624, 1766.5860080703758, 2709.660818803232, 18666.86555221896, -13980.431615560048, -26919.718374941047, -4334.46103106992, -1103.1112667710763, 45648.19288454039, -4261.2352623402885, -228489.41061478216, 5659.286433346455, -75334.83221285423, -212960.28457612474, -5141.050503223831, 22343.351438889204, -4308.058907328398, 9688.53736615414, -12813.84832855359, -985.0799027749708, 51047.31973280965, 1388.9845716486275, 5868.258594663707, -26121.844483211567], [-21582.094071067448, -10963.860820245563, -20867.8296275406, -3555.467643158958, -35938.63047474907, -436.06980751831634, 1392.1846228491595, 35981.765135046815, -17107.414970955862, -4065.8032411579134, 658139.2232494215, -1982.1422126335826, 5982.98099745502, 16977.50114950078, -1052.392357417544, 38510.93897469433, 4924.003982887756, 11438.461923211637, 1403.5369710045065, -10385.483242914259, 20036.830203999227, -23301.205350638076, 26548.692898308556, -16527.692266424718, -1856.5200946802172, 4177.855152410595, 12574.88094479277, 34111.89053858258, 30934.13865079952, -5292.946840339505, -11058.03734609946, -4700.981230488241, -4331.7241357508055, -100685.14660346559, 17302.72058534208, -33646.0370706387, 51517.052662235175, -362.50201870784616, -1323.7124882913317, -5557.493402457643, 2284.592606379296, -3382.092200445097, -351198.54393449664, -36845.59700164976, -2906.1204141802036, -2371.018021404576, 7430.115663435067, -549.7524264378399, 4671.576970344564, 11478.422939399852, 49533.24596083852, 20314.221792522236, -1672.845029504073, 142.72245037688822, -4720.563597551368, 4846.687046130747, -219487.0627193374, -2766.6594903250316, 2490.132313722947, -11824.032675522943, 17750.417458452426, -29185.30582115949, 8243.975056835661, 2813.0744657811297, 1260.269437510779, 7015.620934384856, -3281.325391850843, -19629.931882197605, -15932.562775709239, 2909.4715098106585, 1235.2386153440584, -6959.45426909345, -1424.0458192991955, -5952.022948235967, 3800.46686767419, -2267.5570224245257, 30668.42051730597, 3600.111420264511, -83745.04560550007, -11753.215033396895], [6668.3473366900735, -3887.6786662179993, 7136.451370992931, 79.22358348783057, 11376.07374014513, -143.40120323939155, -8670.439667641156, 32519.155329241545, -112340.92758425578, 9030.789075839304, -1982.1422090462504, 795379.4326328958, 14064.114673210444, 16729.178788686742, -1059.9345071541356, -5183.398512626336, 890.3276368042946, -2462.1925715396283, -17098.0320083079, -6856.93385074729, -5590.895172110503, -19140.96758877105, 33048.77069512522, 6892.494714362958, -1148.230224040456, 11322.71675493767, -51149.512307118646, -3397.919606102697, -12746.476123138931, 952.2234229733172, 3844.2726182848437, 13534.561594085128, -1549.300729621247, -8699.905134100378, 8274.833547659418, -16295.765066593978, 4091.0894233511567, 2682.524136005085, 258.5754137890473, 724.2693632766844, -1510.2444478815582, 675.3412004443417, -10087.37013670691, 21216.925231010868, -356.4930485153911, 287.59137063758857, -2732.4876274932053, 1687.9158015048122, -10181.706970824285, -2130.609422977782, 38038.18105956629, -58640.35718248855, -1686.840552347572, -95925.54664029731, -147361.5457006564, 3190.483510655093, 14183.037491346093, 2564.5142490792537, -795.1840949285403, -59929.56880626953, -13120.406735776674, 2378.1304654172936, -1663.6513536331909, 318.2930177743195, -146454.04367189432, -854.4976882720687, 31395.386325439955, 1733.2698971010007, 3065.2489811883047, 27467.0618866359, -1059.0699126670884, -40559.93768795768, -277.94604270178496, -3498.4599776680443, -255535.07853484454, -953.5535858672957, 17355.572288202893, -1103.1069177197232, -6584.191563685791, -2669.922523389154], [-698.2696167780886, -287778.87454902334, -846.9076679855986, -2807.159309867912, 783.7139695232278, -2084.3330412669616, -2658.2996699004043, 7293.865951149306, -9543.196548484015, 23505.316821940327, 5982.980998129907, 14064.114692892446, 679346.4147919534, 9596.288167580477, -2152.2561178564706, 992.6403290992859, 4061.1774000467312, 2970.8912021346314, 35068.14897081861, -5413.531808059451, -1796.432891747496, -8677.601739822865, -12194.120259488214, 3848.175616399407, -3010.067681126279, -250020.62314226062, -16993.138353217808, 9603.103629721569, -2164.385350059577, 1611.0683632164623, -1948.4247227156864, -49174.49025254594, 41637.2157057912, 14960.275306523652, -31780.62558025107, 3956.7163640925596, 10033.739042673362, 2929.1887676487286, -2759.8651015964874, -4308.751803488548, 2069.521163408568, -2280.56241356932, 13984.283315918512, -2271.405550994988, 1789.7584531378898, -1967.4457079635915, -731.695472338949, -2454.277224083822, -5287.4620262035, -20443.86298388769, -16081.431052650756, -163884.88569316178, -3035.211231248989, 5202.385961114383, 17401.56594137156, 4676.296052295885, -15961.30824028166, 1099.3381744219, 3653.2822964139273, 39625.78222791148, 5466.152590680835, 2489.860405795131, 2414.784024596438, 4153.707617175741, -4351.116529602313, 2199.6631056179735, -38118.16834520889, -8524.302604498453, 61001.50344898063, -78828.7862299151, 2936.1581198941344, 37689.407152107306, -494.60386003349817, -16897.999166802998, 8152.9675391773835, -2590.1293414896604, -27039.46755333739, 480.6618178511643, 9079.905558552604, 12197.2402515937], [-18888.28836879307, 2824.573979332003, -19714.909537169704, -4835.7262861968975, -150725.49460895357, -5992.74848905304, 5349.8432573336295, -129195.91579247572, 17882.08773245418, 25883.285828224787, 16977.501275021088, 16729.178789555044, 9596.288136456476, 653220.9519002445, 8524.176201545273, -284342.0108744415, -1642.5550126384649, 42.90656143670984, -27089.045508152332, -10181.564648741398, -45709.95830460097, -57396.32025018475, -60498.07765341256, 22001.62098037373, -6864.178124700116, 7698.962988785471, 58623.95599949546, -1173.120880733731, 44311.41184966243, 70637.09261335978, 5910.7312468133105, -16810.033996207814, -61897.747040865026, 21515.686000404683, 36925.8991378289, -75628.24795448099, 27443.834797155552, -3863.9272080249125, 802.1543529194179, 7272.432257722161, 1047.244913579933, -1398.7294259649561, 15097.279259887458, 13347.807559067682, 7677.354983874484, -1660.4510762483596, -22681.00062116393, 27434.806459708132, -20934.537710495733, -17940.032400413667, 21274.418383570064, -31633.895302008983, -6059.077360366708, 50548.400319751556, -5782.366417831508, 2006.0408344532277, 24676.330818910865, 3099.647998995787, -24946.149718737026, -6712.928351715208, -17050.586749649057, -137115.85642353795, 3652.975410015125, 7451.920393948124, -22710.657329613714, 8756.608796488126, 10123.327186102708, -10167.770485852181, -20073.58499661397, 22082.143946304455, 7422.631732171095, 11700.728844699272, 16973.554368548634, 8336.827751488945, 19795.116796281793, 3369.4033452481763, 37511.18163814885, -8705.104586599504, 34261.96027843729, -79810.61082987154], [4336.557823080115, 699.3308735824517, 425.2936773840239, -367.06103692479576, -8131.941395799254, -30381.108568782467, -514.5043226357003, 4881.428747880457, -4263.485809443916, -3544.9562177303337, -1052.3923406626116, -1059.9345036430154, -2152.256117579807, 8524.176211839787, 713376.9503004495, -187.07410702877775, -28676.554564410115, 17321.936640105378, 3897.0863928162153, -26377.182476636535, -28696.40362018818, -6516.924995763354, 1097.862644048313, 20270.64441997323, -162213.12792620854, -1780.4467243371428, -8683.33089734962, 1251.593603562207, 219.28485689377587, 21935.688174731768, -4336.429653850737, 1648.9613766234688, 3479.1511395117996, 1428.334705467021, -1208.4000640948263, -3406.1039673162445, 16683.108813435458, -25775.62567591789, -8170.092635592892, 37561.49877178449, 8860.154241699991, 24371.713996811206, 355.1959039163425, 13108.375491338407, 23626.736112183407, 16031.48169933499, -23878.89534237473, 30460.652658187093, -11406.883915474964, 1330.9077170746582, -3072.0870936396395, 1999.00124594772, -196296.80417128824, -6134.730641788867, 1702.7683642119746, 28596.585888954913, -1920.7412238509457, -126143.72840204739, -119864.44489076063, 2276.522335254276, -11858.734900922283, 11199.803485383798, 2118.8362967355256, 36973.136237098435, 3436.1509266368516, 8738.339439711028, -1139.9135682075573, -22803.85064688041, 3973.643853160732, -2528.528601606099, 13312.323378374587, 220.45134938281922, -271254.2274811732, -1894.3298294927868, -1115.385817024618, 5102.162193604343, -2007.555369952582, 62145.4292154624, 1466.9923283489488, 416.06474939915597], [-3047.6180067862883, 7613.552259814746, -2855.226016142591, -5473.605327845988, -71692.66578530164, -8518.764351307518, 3940.147483654425, -103746.14890650952, 28463.933461376015, 12231.0721535589, 38510.93876424207, -5183.398589962224, 992.6403326267996, -284342.01099587575, -187.07410763517134, 712368.002854254, 1549.7101594680269, 580.7059797758452, -14753.291495526339, -9560.447395850466, -50706.37005112734, -133586.88091861468, -20997.489787072354, 24180.495126451053, -10664.881150822855, -5456.902369245626, 32096.00672435649, 7349.246208813827, -27441.552333473992, 75228.03898869577, 7102.168982045747, 1922.5937312987169, -43081.9311165678, 17945.892323958324, 26314.48110832322, -125809.23628440942, -2794.2084643934772, 2825.163007375704, 786.221489367908, -14968.708286887235, 3333.6802118311716, -2658.246229326013, 43127.668921641, 40812.62084925914, 7276.448645783754, -1128.0336257942797, -25978.865374605375, 16308.129250665022, -46506.9775903444, -17715.606119402175, 16500.040859139826, -5107.932102627369, -9897.038064629174, 18792.752326911203, -9603.682695842675, 11663.279214751465, 15118.196002071172, 6582.765467419608, -4818.496567005523, -1875.484042510639, -8732.916302448164, -23995.129378957765, 631.853082685128, 17491.965607274604, -13781.61482760856, 7309.176771898122, 9678.237615979142, -4371.300145712847, 1127.0060747744346, 7827.17757284373, 3765.0760456223456, 6907.342175381812, 11403.740819933457, -68276.41071395455, -5816.400267040673, -1394.339258014106, 24740.525891749312, -6574.492212178847, 32883.41091800498, -102195.27397618754], [9650.504382734573, -3497.9805499474533, 11604.981906636081, -42890.5983432389, 5086.765963277339, -98388.56212295011, 649.0861438582301, -107.67935569780472, 1350.8226116376864, -403.4194963394647, 4924.003987356079, 890.3276414614958, 4061.1774024618658, -1642.554989795519, -28676.554692445596, 1549.7101667162751, 700766.0138206133, -152317.60514632717, -2209.5880286279207, 27384.240215817295, -31288.547334451712, 5702.97858547284, -810.0270229981016, 5625.0583351764235, -25784.979137007755, 3704.6546043372464, 6429.223511283332, -4515.4022405158385, -9881.173679192958, 12259.157422285898, 77586.91871713859, -2862.2309768711025, 2068.738335187406, -6505.2044966405165, -2009.3001608378208, 7381.954628543503, -26935.9334216077, -261670.55550832095, -5917.7651365155225, -45367.33635260089, -169028.52159208385, 2409.1849659267027, -587.606269270774, -11380.997960024893, 35557.89566321229, -31888.388624835414, -18086.53977292589, -22184.46664990025, 2337.2804064297998, 1127.041275559641, 668.2574259020315, -788.2381992965862, 63.03437229659266, 5378.32121274462, -1433.6114809543724, -5729.792216112695, 8640.509544916898, -128883.92249013913, 87669.08374231258, -1524.3499552031155, 13047.329158376531, -8754.876580052462, -10448.492322509646, 23339.518477471003, -3076.2879914216032, -9287.802498246683, -735.3244702744045, 17047.920121837873, -3325.786510162519, 1917.2080711278306, 23077.07894392843, 1202.8465459233164, -28172.622208395936, -8774.664007861025, 937.4607962896098, 24326.327944800785, 2016.0719751761917, 83583.0189791056, -9191.886354856859, 3909.915607747151], [-16729.787748358845, -1050.2590575796378, -14441.43458717163, -109523.11413342116, -7547.2506470508315, -108133.79125880594, 1151.613269828141, -2752.10590727113, 2222.9960126324627, -2946.0336286307675, 11438.46191080799, -2462.1925685197684, 2970.891202300996, 42.906524580188, 17321.93657233655, 580.7060273976368, -152317.60511568974, 477758.0113430841, -1091.8396735748574, 27511.741232152595, 20867.851765907206, 2835.9716103851806, -696.0227269672481, 1170.614573738739, 44867.30765548644, 1189.0617156611397, 2867.67627698574, 13835.045596786362, 10284.823815865679, -1248.7448021865673, -123873.48446767888, -595.0160113597656, 5124.5656463419855, -2943.6017026415016, -6416.245810410445, 4350.574094433704, 17266.070215487674, 24892.180613399232, -48264.03361818665, 19121.725319096855, -180706.7261459705, 117628.89550024756, 11360.019416400717, -39754.01962899988, 99505.01895723838, -226969.16645544552, -13020.065133854869, -22436.93800026471, -219.3003890369892, -1506.1484900932403, -4804.235216491047, -319.73967582164363, 44339.303754846616, 2973.584332791043, -1422.1698051762867, -7404.544577841952, -3176.910261971143, 85440.5398726755, -40281.221032882204, 2526.839406105511, 25903.95666577162, 3492.9856914944503, 2861.8588224058185, 46186.1092318475, -2705.548100136713, -11099.994201719574, -1261.5231915454685, -36441.91450797219, 4000.377316755434, -1270.7196608006025, 103055.2335402579, 4818.7278401715075, -33260.219452690864, -8961.344554841733, -4363.284993912648, 13609.306645988085, -1623.6337711862586, -25764.61063271655, -6464.167063073742, 967.0451081989622], [-4495.536623678355, -3639.4704423986036, -3911.7687319964984, -0.40194729558682507, -6962.391857253073, 489.7576324701194, -63184.02105597703, 8876.649698480045, 10501.16062661624, 89677.36180783033, 1403.5369942089674, -17098.032026360128, 35068.1490022789, -27089.045512493194, 3897.086391828719, -14753.291484159381, -2209.588024905868, -1091.8396689338172, 123428.35624340491, 6077.1449972849, -1239.255860411444, 4848.550464400367, 27115.396437279618, -4169.2839415197, 2464.7183826018972, -140386.34410347056, 22865.113514309138, -6019.032180000067, 14179.740354036756, -1230.4481198542223, 1892.2760138215983, 8370.754671582787, 45489.4206288511, -8244.103043626217, -13705.555200667635, 1942.3515019197168, -7467.315836174689, -2800.4792418187526, 3071.0105567014944, 3150.45638657258, -1264.174480278639, 1586.4184220889733, -5714.655999036653, -3294.684149493643, -1176.2469771833248, -82.32588890213695, 2558.81188649375, 2242.772172262563, 14238.880523560396, -9877.338505379457, 27004.02639780459, 133645.4433808092, 3049.4531990321557, -3802.4614915152915, -19341.742943390873, -5632.874766151719, 11080.331088053923, -2202.4616809182335, -2807.533865340442, -33067.489533473235, -376.6733538767731, -6425.952886187879, 876.8155131270461, -5703.488117276315, 449.0266456516226, 408.47788517389967, -21663.403526683716, 5338.73621991786, -26595.631004419112, -86462.91800701154, -78.61228320157355, -30240.522573722894, 805.0458622757627, 5652.521928550566, -12526.202466209734, 2229.9237232632745, -8112.153058410771, -628.8398022192921, -11088.22613334065, 1878.0929896688658], [-56106.06215930534, -752.2937181405352, -98764.410071322, -13715.233147219406, -29348.49547456823, -12258.162678698318, -750.3710167808296, 5469.624835123641, -2970.052798134214, -4134.615748571693, -10385.483291852895, -6856.933865025274, -5413.531799288162, -10181.56473089412, -26377.18246330202, -9560.447441502602, 27384.240255012017, 27511.74115495961, 6077.144995826084, 664931.4925719401, 28655.181483247896, -2795.8212573527303, 18860.97686553451, -8602.480754052827, -22707.994607913955, -5397.114233712432, -4629.1833778180935, -167473.2481023613, 50569.27088881283, 25138.02646856676, -41908.55164859953, 8537.260095982114, -4838.706225132315, -13654.757864358362, 13169.76801353897, -21970.379801866806, -38278.395005510014, 17529.35721733597, -52691.970214908644, -74813.35770615311, 23160.950473918383, -18976.784700084485, -19561.29417639047, 72031.05922518778, 26746.9657250348, -10928.549167349956, 14453.57301520246, -94431.87192959654, 16157.840688266635, 6805.175806277675, 14895.211620621476, 19261.362968383066, -21784.643791642768, -12794.406996564287, -1285.6812389303032, 30348.588039495466, 42423.083545771944, 473.0239447031893, 76795.3081082539, -5066.904469200454, -248840.3882745929, 15984.279751221322, 27686.40994687945, 42825.589703282036, 7101.321365545823, 16832.199570049856, 998.6577523970078, -196572.25181279288, -3486.797557859301, -2763.7806023182625, 34949.54545926989, -10418.585542071005, -11525.030671357465, 52206.03406652295, -5955.532009708221, -19143.21325649862, 6900.347053837585, 11941.15724196432, -4715.782487289409, -19227.701053264573], [-39750.6884883934, 8803.325616989361, 4209.972186263662, 41673.94282253019, 16011.67264026164, 12735.975833334336, 626.6717775989017, 22330.927208511763, -6811.421203587678, 10205.27795006832, 20036.830208849988, -5590.895184932426, -1796.4328804370086, -45709.95834329496, -28696.403609497924, -50706.37010545316, -31288.54732479664, 20867.851664620746, -1239.255863298133, 28655.1815196426, 395745.87222924584, -25561.85604268277, 22593.83783448688, 9162.157375793959, -18987.595110904775, -6983.153665300799, 5638.422611891277, -5632.2870385442875, 65708.10717935323, -277928.0405602832, -61516.141750666255, -1648.1030755257461, 17169.913799154172, 5799.044847415015, -23800.947815285166, -5352.258558174192, 44255.14913849141, -24796.749177998554, -12988.723296337019, -51310.52455159381, 11239.78880532391, -8327.51523506926, 11390.795683124472, -9365.173840888467, 7664.839703696321, 39718.82340628323, -211956.24542855297, 67284.8201865637, 49438.165554179745, -20943.968576708132, 26873.620250786345, 4845.395458652262, -23590.1623130902, -1093.1358593341793, -1514.5698159541444, 44401.9333269647, 14196.901274249847, 9099.294323653507, -27885.169754205814, 2817.802599417778, -19799.480150903535, -2179.5349464711367, -62253.92017548504, 117737.6280406541, 898.8670416925376, -12678.286358634034, -4331.638783549835, 27270.07336881858, 10408.740300676773, -11188.668063080391, -55958.88007584967, 4241.960005564472, 32403.104543254398, -35083.99972973357, -6837.285647938164, 8057.9996314791115, -12228.198180623229, 3230.1722374128303, -2382.3521597085296, 12278.072949158894], [16777.83094152317, 3258.3237740282407, 12983.844102932835, -5002.387606846069, 59494.17171533809, -6646.90041992011, 2941.062963299723, -29408.450792453867, 989.042797067381, -12961.205616873467, -23301.205372017157, -19140.967575339368, -8677.601712938902, -57396.32011584796, -6516.924994348117, -133586.88100114558, 5702.97860070053, 2835.971559835457, 4848.55046682911, -2795.8215683103745, -25561.856115979765, 755731.371100076, 32630.08857126789, 21830.69003592534, -7124.325385542808, -9845.104195061178, -7235.012730950421, 11943.330109892056, -44483.27858542368, 13966.749930643866, -456.4121589821031, 19895.034761643044, -16245.120999112036, -12866.28374037616, 23795.12731645514, -191655.11691247832, -53861.26333334269, 6725.453948947092, -3464.9200759761743, -19980.21934019295, 5837.199788644619, -3771.594808368015, 12505.950585447388, 19545.64496501575, 6485.417328624667, -2554.745651392158, -3889.280855709022, -15035.463298262412, -6059.812370597729, 7663.081597415847, 4800.562170469156, 24635.828707621647, -6227.380213193088, -17833.009008217792, -1397.390608778778, 7160.021915322412, -121504.66163654334, 3245.2170329148307, 19769.7323358991, 3554.952660185495, 36589.59573072655, 68165.24467545633, 2761.314570775421, 12132.494683991228, 8966.707727998033, 3140.2402829070543, 3053.41540965007, -7439.9187480010105, 7512.327591231731, -6313.623486799157, 5431.234000781519, -5456.401369374634, -1567.7482615765198, -230699.4919848462, -27697.23479677797, -5248.834053591076, 5790.966393233406, 269.28867186028214, 15088.973561086535, -119562.29042946508], [-8020.536061912488, -2004.8488755616843, -4814.817296520095, 1583.4491469985178, 21129.919791271048, 2891.2874200517945, -14807.376759354851, -160864.52101956954, -108709.71762986247, 5608.670329341747, 26548.692779916866, 33048.77061554932, -12194.12013068793, -60498.07768776435, 1097.862658329624, -20997.48969315737, -810.02702698865, -696.0227329362021, 27115.396456291626, 18860.97691175408, 22593.837837342773, 32630.08842172389, 777302.3742899066, -18369.70566272231, 5156.559275613371, -3186.6904817853037, -132527.19297161044, 3296.1459589946, 7527.347730816853, -22059.941676654482, -3558.5426196536196, -12753.6323436355, 43804.21340959288, -17603.34432713124, -15076.316062243322, 2827.2158268312996, 9326.419079340621, -2617.130573272419, -2565.0230086547886, 3645.3555030127022, 659.4420543846946, 224.97179925232538, 36806.85517881007, -51428.23732103687, -312.819892980938, -796.4836592730048, 8134.1749475810875, -6657.6036126756035, 15913.159105809062, 31516.096005860596, -175273.52191815464, -1718.9440541468414, 5311.214698908503, -62097.52260514118, 19696.30508231338, -6845.315823951077, 2452.7311222409294, -4487.306304280804, 2668.939353220257, -11890.471595376372, 7968.252743729866, -191320.80567719904, -645.4801627184245, -6728.9234161503855, 29168.03837250049, -3806.8862604840588, -7348.470807429953, 3256.5031220926726, -11081.524062521334, -3153.1796460754877, 1735.6658110538713, -31376.539598875224, -4051.7759675634143, 30279.82011855439, 61820.66052518727, 1268.984825815188, -28905.18486253571, 2851.0976263060293, -21308.84357797383, -51750.1323828269], [-208638.38533769367, -5956.335369547112, -190950.54572157, -17480.028507503874, 55284.59763745354, -6260.888555182939, 886.0069170591277, -16008.536571352211, 1924.7933502019384, -1300.81712262075, -16527.692293803117, 6892.4947207594705, 3848.175620323437, 22001.620909194568, 20270.64435043599, 24180.495226821324, 5625.058294212772, 1170.6146039178311, -4169.283952938383, -8602.480823022714, 9162.157353055125, 21830.689914786948, -18369.705765622344, 733515.8128319293, 7999.554835797977, 7135.2306191704665, 4483.345680379384, -1957.8384699890742, -149032.88340597984, -166236.43518939774, 15680.973333300659, -3842.049589701478, -16089.687973673304, -2724.3435509093442, 16091.427947965149, 11100.707820683136, -151276.5420007512, -4113.937418341435, 214.06616988000567, 24351.611730776505, -631.3851315980041, -634.856750439024, -17962.456745184692, 22008.74792269263, -2918.3263320488704, -15711.425857379025, 11216.257981601048, 38731.615568383175, -43410.367858335005, 9196.960989127418, -8726.60001527502, -7843.442588757657, 10242.227187344666, 8357.736278579561, 665.637939191929, -8167.363542630285, 3612.813976535418, -6900.097499087281, -35229.9003394252, -3063.273660167717, 33340.883468314154, -16451.746987384144, 18190.60225697711, -21071.464048893697, -3438.376105470968, 13309.275821799241, 2581.4252376643917, -41146.452744958515, -10852.989099616909, 9786.0421682022, 16049.435570747451, -527.19946744406, 4114.0025589984425, 20098.92560193015, 8431.737116487913, 3644.3028638653723, 12347.002861788578, -4360.470570299374, 629.5508958364329, -1644.8864124397742], [-185.99750434540226, 3014.7334040068017, -1829.9759081992574, -128754.19086992419, -2233.310437843593, -167197.22243403422, -847.8693045783689, 7030.401595338925, -2694.5120650995773, 1514.354843403833, -1856.520087095822, -1148.2302260693036, -3010.0676838758536, -6864.178143800613, -162213.12794191838, -10664.881131952328, -25784.979237318326, 44867.3076970113, 2464.7183844698116, -22707.994629295034, -18987.595128196863, -7124.325366542095, 5156.559269730852, 7999.554751542898, 740526.7726512086, -3317.9941522501504, -4835.237124983283, -3491.0667993101397, 12144.218357805941, -9253.803305245046, 81597.341829929, 1416.92371685741, 4183.542049060357, 4277.725540710699, -3543.0768594611036, -3309.423201213711, 8962.30033779994, -32275.05772171951, 15175.694300533825, 51826.99783392859, 75647.71685779486, -39686.96366719466, -1568.8361311740227, 16016.280850614308, -24736.045360260923, -41267.572131387526, 21879.423501425434, 7793.600824089472, 4576.124349700977, -3227.8560884968947, 4687.559069330594, 2352.928286781052, -254464.08597689593, -5138.492624776819, 878.3587119837786, -25072.595165445393, -9.785847655836523, -20085.860019456395, -62897.07282936143, 756.0299889573021, -12693.960092962017, 5739.4550403533585, 21266.60053824702, -89087.05882944688, 2924.882477124448, 16695.797766733278, -753.4727571667597, -5185.5869114509305, 3283.82015869459, -3511.0349503714015, 3421.8610510707817, -1268.083828332175, 5409.088232583197, -1389.2409746921642, -716.1815036650261, -782.755308796038, -3910.2163322860115, 29599.26374885618, 3969.265344936928, 2547.1199010708397], [1704.7917162828405, -165431.81287328008, 1678.7547722334837, -2748.257208838486, 4307.844910355108, -2431.6874880916253, 52368.818343906045, 17859.625888237395, -23633.08915485565, 3683.1242358493355, 4177.855117755246, 11322.71681143876, -250020.6233132882, 7698.962934124717, -1780.4467233784724, -5456.902387530201, 3704.65459908609, 1189.0617048951467, -140386.34412629847, -5397.114218817643, -6983.153670075146, -9845.104185786597, -3186.6904937294876, 7135.230623511864, -3317.994144201406, 735845.7364995908, -26053.912519723337, 6327.735306309991, -6332.337740237203, 4998.912128692091, 287.0690434417992, -62387.116714730044, 62529.328692135736, 8948.709552111384, -33453.203094290984, 4579.040882843651, 6975.044722406903, 3332.4661754020653, -2584.025625188683, -3455.3119142338483, 1694.816447591661, -1878.2514376535223, 4547.468446282102, 3250.6975560661776, 2563.722443596481, -1863.4155256893414, -2825.7130987201854, -1300.485035724717, -7452.736492746985, -18711.397851930007, -2822.0660552056397, -77090.7848903479, -3381.7095445420064, -10329.543397127221, 18253.439890068028, 4609.80811558036, -5713.8194713238, 1929.6677634023113, 2507.171804766885, 29742.354428074625, 1372.9357120031252, 5668.598660891068, 1503.8683355279884, 4065.4912535603517, 15474.445284469874, 1692.06877344879, -83858.6926908225, -6508.248304478567, 53090.74477987484, -146868.93567827946, 3229.5226727856643, 27914.79335312675, 318.7475206160148, -16588.827882409067, 14522.93235001066, -2382.8169548010683, -20335.27623799704, -524.2549271910393, 577.2363687286735, 16058.928289537409], [6930.802470940699, 2375.068152833807, 7334.280876304258, -1641.724328876815, 27650.48929184004, -2031.1630234056186, -13232.788850785, -33621.34357537142, -145365.20485012676, 18271.940728868594, 12574.881074158144, -51149.51227106555, -16993.138277178772, 58623.95597641631, -8683.330903954395, 32096.006823767893, 6429.223497529547, 2867.6762774642243, 22865.113509067116, -4629.183370421275, 5638.422580608141, -7235.012882575858, -132527.1926318623, 4483.345627179413, -4835.237113883963, -26053.912589806358, 771222.6229464716, 18810.48203512749, -33672.185585700245, -1793.1229785307307, -4763.638440424389, 26551.05217003687, 68191.7647981063, 26183.488149895282, -38664.53359768147, 7610.04961229727, 15866.956828231918, 6684.076360279123, -8249.758375803482, -11101.062544077637, 4538.057164961065, -4308.2552207241, 34011.593824407144, -12382.210417834562, 3953.3595363175477, -1648.4583795944875, -3321.8179785710286, -10025.4724266605, -26467.504689732526, 12047.751315034699, -128126.98014093198, 95262.41576160793, -5605.714874152513, -191118.22752473742, -30333.09190953677, 10949.285888917584, -31059.395376008277, 3228.3785564901336, 11975.328394749544, -69111.18919485416, 9805.986279067727, -47408.716800279115, -825.9199137644174, 11615.071936443434, 28263.18390687413, -1084.9596747767666, 1822.546667459722, -11764.824977195869, -26920.939712327276, -20603.469334837406, 3021.172661223175, -120134.58923609392, -3806.144172033221, -23737.972714938474, -14589.74462984952, -5590.610281174781, -74209.74258912604, 2454.0634173769536, 22002.1493573548, 6186.108948277012], [4670.146669125802, -6130.426305897129, -17135.979572341086, 6504.134305467727, 1199.971573952737, 6946.559118274346, 3510.351863240252, -5621.271600704779, 2519.0963901688783, -3849.977556862143, 34111.89060914323, -3397.919608576615, 9603.103616779166, -1173.1208263078659, 1251.5936398236897, 7349.246320575181, -4515.40221399726, 13835.045591110762, -6019.032175166636, -167473.24814622418, -5632.287013000924, 11943.329942258992, 3296.145929686667, -1957.8383674176987, -3491.0667931732887, 6327.735304054411, 18810.482019934927, 719093.580616297, -4074.367706297383, 18162.982659621648, -11049.629289233517, -4337.52588005214, 4959.016047099964, -22252.228796072297, -8196.021338565477, 10352.302706874969, -147379.91788987236, -3697.936179679681, 30995.138577474918, 13748.583307781457, -12000.211726317726, 5456.7501015917405, 20233.291959362377, -194343.01882974937, -22043.65346954508, 10870.62859098704, 20921.527550843115, 16037.912052919863, 12789.38609976933, -292.75386003195985, -91.39954565956704, 1159.6015421778613, -4847.954472036607, 14088.372346457558, -4448.940198712709, 2893.9510797195535, 27300.214952222774, 1841.9540442737582, -10647.130270920241, 568.9004283973898, -300393.6590147781, -13125.453312196623, 12678.655977476279, -9030.205372504995, -7960.553071986214, 17484.881908220203, -2458.2272513997336, -7990.664177467682, -1452.4645791739886, 1388.9238810773984, -24157.10195748665, 8155.283544056057, 2914.977487225922, -32309.708845460336, -7033.663116327572, 1498.0905666233862, 4089.819177474717, 975.4696808038209, -28602.058750673183, -1920.6162326909566], [-36087.0596425005, -34.598466390346, -24535.390600840186, 4929.606361076682, -68726.26021723024, 5890.582088461206, 853.9111009865957, 24088.600918741806, -18083.06693583328, -21508.994894144653, 30934.138648670672, -12746.476112984694, -2164.385363656836, 44311.41176512033, 219.28484230832115, -27441.55234185967, -9881.173652096526, 10284.823855867755, 14179.74036546917, 50569.27093690965, 65708.10737777314, -44483.278442199895, 7527.347799915483, -149032.88323704517, 12144.218363985094, -6332.337735431964, -33672.18555846006, -4074.367550888803, 620044.4071936778, -49594.91504619443, -3852.940891910415, 5488.302841100243, 24792.029561122792, -7171.717521853639, -18954.653834449684, -6786.040796587249, -201628.5489022526, -8868.569392961135, 34083.1565671728, -42719.980672418664, -5708.808255087551, 7167.803488549275, 17771.8671789644, 21784.66212897715, -29864.472558602723, 6694.074845687551, 30576.333303506777, -3968.895664186027, -278712.7450574473, 158.2159794861678, -14170.281038736828, 14338.266704978834, 14721.69747515476, -23477.557027940027, 2135.2913095216563, -8325.273862202037, 28358.098676668196, -10992.839512419923, 28567.346480765817, 13767.992370849539, 35437.8895068046, 67765.76753581902, 542.1538151695651, -12311.849785330684, 9155.75941520947, 2336.594522115986, -7992.65683896953, 60203.88209258663, 26330.635903656148, -14038.504863899656, -31612.961083837083, 11741.372617936026, -13692.951900725007, -86914.9177538335, -15164.915804380977, 3667.712692140535, -4965.343460104137, 9836.864115084965, -18250.795032532107, 9459.903539224033], [-77001.14583477273, -7160.523859006063, -14215.387549156574, -26174.176824159647, -31905.683022515826, -18486.93067500551, 2195.5004538382072, -36897.20837941701, 5057.118656765442, -13646.365003048862, -5292.946836562562, 952.2234361044907, 1611.0683431444215, 70637.09267175241, 21935.688164434672, 75228.03903103167, 12259.157419634204, -1248.7447544524657, -1230.4481168960504, 25138.026477097035, -277928.04058879823, 13966.749866209393, -22059.941643874146, -166236.43527558513, -9253.80334559013, 4998.912129671921, -1793.123028206855, 18162.982669186473, -49594.91484215172, 346152.248825431, 30676.809939940318, 4602.972539468771, -28944.651665934733, -11328.76866702679, 31224.55525878333, -19403.18815418263, 98714.19735265989, 9602.736788083615, 49266.88982623881, -15658.105130597423, -5725.682171214798, 6782.532263528452, 10792.216638991562, -34500.54053942573, 3870.810115369589, -14022.202747761152, 48247.88608820151, -29172.10837174826, -69172.56433158017, 20707.45983822132, -31169.618914664214, -3109.23081911104, -2007.362534322993, 3759.5630533154053, 857.2488248301567, -34444.44142021274, -20733.422879446174, -3183.176545636652, 38053.94614704439, 1226.2397061971435, -23594.478770176847, 9082.705981321169, 48399.55039750069, -52998.52217231539, -1811.7245649409344, 38967.709519507196, 5490.560185731691, 48172.73460684072, -6371.976468235946, 11336.774359139783, 28994.24944177484, 1098.176349325164, 1589.4647897340042, 50028.12579441927, -1730.912359083977, -2202.018982058566, 17799.04180401368, -10440.643611200629, 3058.155656750979, -38852.28405962136], [20166.36421883062, -269.95105797827904, 6942.653368151589, -43826.07648525104, -6311.15515422561, 43387.04739733017, -1826.8686482566823, 2852.1477470311975, -42.91097299332195, 1521.65641250176, -11058.037339697483, 3844.2726291907284, -1948.424722691462, 5910.7312527248905, -4336.4295959662, 7102.168975050969, 77586.91861258991, -123873.48447818859, 1892.27601414074, -41908.55175624489, -61516.141675103376, -456.41221196871857, -3558.5426378468273, 15680.973364712545, 81597.34177388645, 287.0690382231067, -4763.638444246996, -11049.629339695903, -3852.940833183907, 30676.809877671727, 294119.43623078085, -274.3092484347795, -1610.1441374681656, 3508.290216538147, 4244.327303781212, 1580.0265903790646, -35699.347007452576, 33596.010188566346, 52738.9460744257, -39323.47533375882, 36256.76675526883, -27138.27251720528, -9372.749702349647, 41609.04194683674, -127299.13600274047, -197902.26676037363, -723.4245294168547, 31278.00193712586, -1482.1138056112507, 3408.976486670663, -1505.4565597338462, -2144.527753472195, 63819.0507073607, -2752.1133700216187, 1609.2158122512737, 23401.3693922258, -4330.2651307647575, -35606.758836379166, -42519.24710314196, -2320.8790028837193, -689.3476620052934, -3294.0790074728384, 17176.4179119109, 86838.7170359478, 1885.0237594695923, 43101.10371409465, 1065.7937349198728, 10915.385305164433, -3740.5953472435644, 1935.1846239059926, -146544.01990911932, -4468.487505630472, -56933.81684484986, -2161.691313630671, 6263.692421868163, -16043.702612156232, -137.34175666251178, 17699.45065831199, 5405.759375359482, 3698.3741824838085], [-2312.680841842601, 68357.4870164097, -2795.755102281814, 1030.489118849621, -7067.716967985914, 159.5103637645783, 44010.234975855674, -14799.680953098572, 54655.091662592335, -79318.05028536297, -4700.981232621998, 13534.561518546581, -49174.49025241726, -16810.033964959843, 1648.9613758480368, 1922.59367145306, -2862.2309735377607, -595.0160085817255, 8370.754693270042, 8537.260104175213, -1648.1030577421354, 19895.034785394135, -12753.632296711794, -3842.0495903104575, 1416.923713100289, -62387.11687688385, 26551.05232476448, -4337.525877455623, 5488.302802263732, 4602.972517293454, -274.3092520565441, 798246.7386981235, 12811.9957060081, -7224.6522029043035, 10026.38986650414, 16051.157992611226, -15801.940583103442, -2924.6998508404054, 1488.484536832344, -316.60507729524886, 466.56964256685313, 616.8206845658325, -10323.320789429239, -9535.37411973948, 471.43692221009053, 820.5479337289901, -153.46621751614106, 238.20186666082466, 8841.503023735804, 23031.05122357282, -7157.944111354102, -179952.13144247726, 1973.6618667513164, 17293.138560819272, -48889.45127375265, -4234.522044849505, 4450.855696791337, -1609.5047435597148, -400.15791623057146, -82205.46098399538, 6980.750052251686, -14119.104678905493, -530.850748332616, -789.0662228809847, -82655.23261986198, -405.58766935282046, -171022.30658932426, 4683.6563338785645, -118386.23529364295, -149811.6529203815, -333.2809688245115, -53158.06345190068, 1329.821749214281, 7050.426124785673, 41974.87031418571, 1885.4133101317777, 11736.847386387539, -241.21045000857862, -9930.77638391122, 5174.617005029727], [-10145.97855730416, -97706.33058835668, -8082.340379777737, -2200.9179820499294, 14584.578355857215, 2182.0223715131215, -3538.0002507308977, 18447.82290648761, -340.57661357362525, -190818.84803227597, -4331.724121524645, -1549.3006473628848, 41637.21582627652, -61897.74706754608, 3479.1511315989637, -43081.931088007965, 2068.738347146126, 5124.565647145575, 45489.420645020306, -4838.706217937872, 17169.913783592154, -16245.120808989717, 43804.21339846701, -16089.687916148172, 4183.542055935627, 62529.32859776915, 68191.76486992328, 4959.016025746598, 24792.029516011255, -28944.651648054973, -1610.1441309135835, 12811.995786987241, 475559.1403968557, 52322.349411096424, -77544.46193392697, -11524.845799801993, 12633.21733886332, -629.1079057755211, 7436.112706076081, 603.2084155301985, -3954.3727740424756, 2252.728473164908, 6075.677094828907, 5087.142710992581, -9364.907422955235, -1520.1908265859995, 17727.95413401901, -3111.8744671758923, 29414.424057149514, -286779.43738837726, 90219.53694608607, 52142.80452535497, 4716.626826989938, 39254.71262375956, -3271.8937758588822, -4547.725507268718, -16695.23105157288, -4644.5156558135695, 4688.715610107999, -31483.32850632506, -1228.9907480112424, -49019.34482046393, 6949.385758752792, -13708.799705221107, -3453.348556685355, 4131.657304991735, -6596.040450852538, 1273.7662403076527, -125854.90866205229, 53915.25338940046, -3518.5649826084687, -34771.770442397436, -6408.067833387776, -279.1772899620452, -16132.394535255451, -96.43402015606436, -103345.06261488715, 3354.294588745802, 59944.80776755183, 9754.745223842607], [10525.379606332852, -1711.0346476477553, 8411.175966669914, 6377.28124437468, 10672.469175096536, 5541.396485683663, 5201.371919976528, -80113.68207259467, 18805.692275555706, -9100.025821163767, -100685.14631590972, -8699.904978928493, 14960.27536244022, 21515.68601403602, 1428.3347200548153, 17945.89229802393, -6505.204496393859, -2943.601667283414, -8244.10306984711, -13654.757882313363, 5799.04484799354, -12866.283867107684, -17603.34441403009, -2724.343559384654, 4277.725590028551, 8948.709658427579, 26183.488139745572, -22252.22893299443, -7171.717496743421, -11328.768663926217, 3508.2902015055192, -7224.652105440606, 52322.349426952955, 774812.6018230445, -96765.57529479575, -73464.00739066949, -16643.014846675163, -2655.617762652925, 10344.210161235742, 8187.915053483484, -7773.170507220675, 5675.981936143731, -154737.58618626193, 64548.27409572993, -10237.340669288642, 5978.030224919761, 5428.668006619814, 6400.892602572015, -181.69713185222918, -21640.133190310047, -94420.954645839, -16416.17297908241, 3399.9569721012676, 29819.946943733892, -4033.97825688089, -2998.945277152157, 33755.31269729138, 574.2409822954619, -6294.518461385405, 19985.661397155225, -27218.46589328107, 19393.677213467778, -3752.190307081157, -8259.171699629338, -16980.827890259367, -2118.4351888822257, -8748.927740546966, 15511.2194152165, 25306.401824996527, -8735.43417666797, -13111.712998464347, 34591.94561620136, -1492.9546315185248, 47223.13955472324, -24130.46005591706, 3045.7342631030115, -44236.557934152646, 5.297732601985377, -235714.69539028883, -120806.38741499459], [8035.202994063772, 49641.53934339081, 6995.740704170034, 464.93373199823645, -14865.664274487212, -3576.7905575650398, -1083.190744117017, 6505.1223310797905, -734.5825194082472, 60255.965764715555, 17302.720661769803, 8274.83361912197, -31780.625615406592, 36925.89905925096, -1208.4000497779728, 26314.481127138428, -2009.300176572603, -6416.245816414971, -13705.555200061166, 13169.767973631942, -23800.94781830642, 23795.127560523455, -15076.31605156746, 16091.427931116217, -3543.076858351637, -33453.202952692984, -38664.53377694669, -8196.021366165745, -18954.653853054315, 31224.555253362138, 4244.327305716428, 10026.390124410605, -77544.46204362961, -96765.575402073, 726623.5988801485, 29893.082804703878, -23872.120102948116, 198.66470706459776, -6676.367823353513, -1721.8362479089715, 4510.602900761996, -1967.9349341557045, -12675.675693007419, -13462.343663857468, 10843.377888998337, 28.63646451317295, -17428.208138965372, 2212.0977268059014, -18059.335236726885, -249721.89616247476, -91314.43999342405, -35143.53344319622, -3361.7452746275208, -18500.355565131267, 14525.695574435042, 1105.3157667929556, 35540.61197438757, 3455.0108876235527, -3197.1299091472792, 18708.58820658019, 5300.666951121494, 24534.848798134288, -5951.509180693969, 10946.271384802007, 11623.568235648403, -3704.7886391555794, 14385.446948006875, 2239.275157938292, 35195.93356601104, -11638.153280523004, 6228.175413687074, -747.0406380541208, 6719.74057172907, -9028.7526461333, 5742.391886916477, 691.35845567623, -232756.29019348873, -4121.2038484513205, -145625.74833863034, 11525.826752007466], [9876.43484669013, -12386.95562546034, 8671.785772560796, -5408.37718607267, 50588.54569900813, -2927.1377280558604, 3257.8746286645874, -91534.57754333889, 26611.82970242056, -24994.30605155051, -33646.03710943168, -16295.765019867842, 3956.7162921171134, -75628.24798430873, -3406.103946358987, -125809.23621940087, 7381.954597206955, 4350.57417567924, 1942.3515260212662, -21970.37969785668, -5352.258459114816, -191655.11702611466, 2827.2158159626138, 11100.707864110196, -3309.423199372661, 4579.040847002163, 7610.0495220673, 10352.302752907846, -6786.040587325471, -19403.18821806167, 1580.0265337247702, 16051.15803338183, -11524.845649199371, -73464.00735139735, 29893.082927429117, 805982.5058957326, -2244.9985370172503, 7480.424405986685, 2786.982565544547, -10339.88394697068, -530.7000908178347, -770.3785484923602, -16387.279118858925, 58665.030863508284, -3742.7877378335343, -2949.3338097675696, 8987.723381993635, -9262.154079323636, 10029.398962948528, 30528.048413067296, -38431.16403997971, 20689.587110714012, -3157.4576926268237, -2750.5626427137013, -6822.358374026248, 6916.199592093817, -63308.02702682471, 1894.6159006582766, 13961.538452804329, -2014.9258211249908, 3797.4273496610676, 62027.42934120446, 6127.3515811384805, -980.7896721937472, -2446.246220320871, 5010.368749913775, 3762.9145990369248, -7301.632192951383, -4572.375816082257, 4001.9582199606157, -306.40427198999356, -4609.173035007509, -6199.434008696236, -119575.73582151567, -24759.7693232548, -5221.668093942009, 17638.335298526243, 1751.1782571081703, -42641.19025522991, -165860.33227468462], [-97761.02334855436, -1839.099367176688, -125758.98699080377, 22290.33719079066, 90028.10281326703, 18689.48960842996, 4605.597728461475, 28794.31895129293, -26122.611778567065, 4370.228735882369, 51517.05260214285, 4091.08940190556, 10033.739045078208, 27443.83486262815, 16683.108805412685, -2794.208418906579, -26935.933425778047, 17266.070291215783, -7467.315842662584, -38278.39505137919, 44255.1490078936, -53861.263393513116, 9326.41909600206, -151276.54222226673, 8962.300369923847, 6975.044756855802, 15866.956861149334, -147379.91792673338, -201628.5487607597, 98714.19747901992, -35699.34699986156, -15801.940584863478, 12633.217310204718, -16643.01492044982, -23872.120147912043, -2244.998400529112, 598070.6071066583, -34150.6951021048, 31353.034520549718, 55494.34599335133, -10577.402737797893, 6980.687111289314, 29086.470400597915, -153.4946631259231, -17752.838747163805, 20555.137425366716, 19277.852310643488, 40923.951070976036, -32285.765959014152, -13039.93851488932, 17105.043850029353, -9144.508429948886, 8596.912946838838, 18072.811036823005, 1871.6855127968704, -33377.767226443844, 36456.082948941155, -12663.607825743644, -53181.90988105455, 6112.618815411166, -10611.02386945558, -37450.889830012326, 9459.60054355599, -17163.399840751215, -4374.662558386641, 13562.014822668156, -8679.627314809006, 3078.5250619833164, 1744.5519803238028, -2394.844932347558, -24458.746598081205, 16749.237643288758, 20956.670399238377, -158155.89061372823, 1188.0779614053508, 18881.422950590942, -1815.908369961834, 844.1673222730067, -30298.663766309426, 18143.45358105941], [7020.100076051059, -2400.266984805783, 7230.643235923757, -19095.69354340907, 6322.597143417459, -65940.7341946361, -30.581470798190587, -1351.9239899983056, 3056.84795965823, 2428.8425739094305, -362.502025044904, 2682.5241433459732, 2929.188768812501, -3863.9272272652106, -25775.625601423413, 2825.163035481208, -261670.5555580986, 24892.180469116025, -2800.47924000536, 17529.357198512953, -24796.74918190158, 6725.453892996214, -2617.130584832102, -4113.937427874263, -32275.05785960877, 3332.466174461489, 6684.076336706661, -3697.93612808964, -8868.56936669957, 9602.736793333253, 33596.01013931591, -2924.699857826328, -629.1079046272616, -2655.6177535989236, 198.66467510824552, 7480.4243898657605, -34150.695055439275, 677677.8638220567, 15552.571336533643, -64812.87543793371, -103134.61417664959, -92361.07655035355, -3399.996936302918, -1258.161255822035, -5672.1093087303, 17050.684331151737, -314.8346652054199, -22676.022975904765, 6645.50555875831, 821.3489563907083, 1173.9545127342337, -2912.086858066439, -1580.2809071119632, 5690.668163006457, -1074.4951225053087, -9253.347705270164, 3305.4599998725535, -217740.9352454775, 120668.54977907013, -2747.030388549702, 14499.224713727268, -12596.035955140842, 183.19256813773393, 12706.217188536617, -3088.374803899476, 4417.20169530254, 458.9789334281937, 24138.383706238583, -5193.309511563556, 3094.349100993635, -15051.107281908253, -743.0451120800242, -21392.541873542956, -5595.7373237005, 3571.7382613727145, 379.76840984335604, 1607.0909385196635, 33962.43094002582, -3950.5693552705493, 4316.234080973343], [-64892.2103881744, 3217.3916414552295, -77395.46420562916, 16585.20365996685, -27389.47554691534, 9684.61727232354, -1774.8445657668065, 2855.150145431964, 2674.372549043286, 202.01807320356974, -1323.7124320764763, 258.5754387711306, -2759.8650919736315, 802.1543508440421, -8170.0926397112835, 786.2214061784103, -5917.765006435692, -48264.03380134846, 3071.0105524948026, -52691.97003725918, -12988.723247045944, -3464.920129266954, -2565.023028604969, 214.0661232682303, 15175.694430137492, -2584.0256209412387, -8249.758370127234, 30995.138343024442, 34083.15670318877, 49266.88976342504, 52738.946142430425, 1488.484538386619, 7436.112687286182, 10344.210129864357, -6676.367850443451, 2786.982654942276, 31353.034518196284, 15552.571251404293, 801404.0290598231, 15194.357582184302, -12783.13017469004, 14045.033795712565, 7904.065404911557, -4376.478929058301, -1591.180557656815, 6947.557392643151, -149611.21065893385, -123968.26494229265, 2716.6994189361862, -1980.37375546422, -8009.122289154841, -3009.811159440182, 12359.42164009634, -4928.055096587039, 1364.0841723503104, -23544.59167421946, -25094.821371982838, 8073.573962654796, 40786.48685393677, 2517.9755188537597, 35185.22215139502, 9867.08833844779, -143821.9705145527, -45708.82792721263, 1515.7971622822186, -157141.8793121393, -109.5980391952255, -173901.65531882326, 5939.21305807168, -2887.6126601468463, -19451.390656358326, 87.24546762431441, -22433.264945118794, -9675.397776053602, 507.57500357878683, -1006.6816251747534, -8562.603990913587, -2104.777263109085, 8717.464118118602, 6121.12259901524], [41737.66365563336, 4121.483726719122, 52743.693703168705, -1958.5179585093424, 33568.1597441869, -6419.489322833882, 45.538430869075576, 12034.035005637194, -13904.403556670433, 646.6716264508547, -5557.493386743815, 724.2693595396437, -4308.751799811239, 7272.432269858404, 37561.49877060313, -14968.708316938384, -45367.336316423956, 19121.72535810176, 3150.456387408619, -74813.35757454384, -51310.52451437205, -19980.21939029403, 3645.3554897614645, 24351.611694302384, 51826.99779339291, -3455.3119203006204, -11101.062531793727, 13748.583305088403, -42719.980618673166, -15658.105173477647, -39323.47534409255, -316.60507293270393, 603.2084281594372, 8187.915052144873, -1721.836249846695, -10339.88389866962, 55494.34594527392, -64812.87551980902, 15194.357693585145, 352627.87113004125, 29284.66346347772, -9226.118101362323, -4828.80745793447, 42713.73756656037, 23787.85531619483, -10172.072273862172, 10412.139900781294, -233029.19173458224, -24208.74894880927, -3986.731937373533, 5760.766327423688, -376.10542225475166, 64311.39647419713, -6925.697840316326, 4263.270799971825, -206522.092707053, 1611.8245682414583, -37109.46664781466, -121311.76919796667, 4060.5499668271023, -67131.18653336071, 7653.977139820024, 30104.635735504617, 76604.31439523412, 6144.844086428882, 33253.54593598644, -2164.052712972975, -7211.112236395147, 5003.138664281157, -3931.596293404542, 12355.99068389148, 1642.673689013099, 24098.59774211165, -1131.4182073681973, 767.5227950759332, 32066.52717720801, -2488.3805998666144, 4431.8484471642805, 8544.436724912328, 2517.78719944978], [8333.122878588021, -2912.1748344042344, 9817.500977238062, 46521.42188832184, 2422.850693637974, 39630.09425194823, 1092.0361353603776, -4793.512919059816, 1209.986827948567, -2535.0056948357146, 2284.5925976685103, -1510.244454644196, 2069.521156425529, 1047.2449339466482, 8860.154362513103, 3333.6801948977995, -169028.52153437797, -180706.72612696458, -1264.1744744015095, 23160.95046962275, 11239.788760418845, 5837.199784929007, 659.4420644175642, -631.3850836338356, 75647.7168505352, 1694.8164385722735, 4538.057140312497, -12000.21180382274, -5708.808215510277, -5725.682147504915, 36256.76687309512, 466.5696446302188, -3954.372767346597, -7773.1705016536835, 4510.602897971169, -530.700120377123, -10577.40266078034, -103134.61429260536, -12783.13031997645, 29284.663438178424, 627469.3201426823, -136331.6716647211, -1958.285613448135, -10561.543221397249, 20387.94459991904, 3566.0003647810713, -11260.809608996504, -1551.9946792047594, -1388.2322082215453, 3098.8583555260034, 801.1147442732738, 3248.146195557682, 64767.63487812823, 2340.0351291587, -1563.6647236090573, -20657.65357921348, 11631.74795867971, -7970.027345837537, -41921.19111524971, -1393.0761886478356, -4026.3790334034975, -1289.988862690458, -25743.253896211365, -8310.311907255753, -1415.2347628370028, -28065.122212358347, 391.4751553414973, 17374.957466430016, -2855.7917878336093, 1837.3240245425106, 6947.414247952928, -45.03936231276753, -74832.52255067114, 8102.733640374491, -2092.840629233492, -258808.48367299227, 5406.499614441917, 84592.67339390854, -6733.275635263429, -5508.414379990133], [-7744.605867088926, 2302.985454531694, -9685.287540316902, -16746.38108691643, -4435.429679577877, -13072.283804749502, -1009.3634387928068, 3291.564496917657, -562.8669914105703, 1554.4025439962295, -3382.092201908774, 675.3411977320513, -2280.5624086196704, -1398.729424295554, 24371.713946717064, -2658.246237533659, 2409.185044871367, 117628.89565687042, 1586.4184207949074, -18976.78467253231, -8327.51528206915, -3771.594802044395, 224.97179867317283, -634.8567568571764, -39686.963625198776, -1878.2514347062872, -4308.255206484812, 5456.75009078336, 7167.8035022323165, 6782.532269641248, -27138.272640073057, 616.820685193259, 2252.7284824909257, 5675.981919068963, -1967.9349296523142, -770.3785600633512, 6980.687037452736, -92361.07642450552, 14045.033649465211, -9226.118107594992, -136331.67177483632, 584346.1512837181, -79.13550406674587, 10915.049162737121, -21130.94512458823, 11911.964420401597, 7912.751111385901, 12517.821596039195, 1645.6987866379382, -1600.9540269604138, -308.7297418465977, -1125.9027979026923, -33074.11974686821, -3086.8285853450648, 1139.5126316305798, 7437.255341594144, -7772.139035324145, -17877.35442022676, -1551.9079263940812, 660.219616767047, -681.2510054377507, 2863.8178255572625, 17721.018365410873, 79.78590840130131, 1703.289098522956, 21092.051961067253, 13.583828727917243, -9439.489307517335, 1973.0042439138276, -1508.1514816615345, -13561.421358790794, -1014.8571488239708, 105282.78711190855, -1823.652033756129, 1247.4620994183572, -383605.4543534806, -3669.5334192847213, -90741.76112163058, 5756.0990895795285, 2745.3301612365135], [-18118.508356194074, -9005.638384566204, -19475.38273690023, 206.32502437236158, -36361.10176898972, 1497.7718135954085, 6400.398865339326, 38674.13116107252, -21814.69816692447, -5298.180471646795, -351198.54413115623, -10087.370225300047, 13984.283290149902, 15097.27937049853, 355.19588049856964, 43127.66881852083, -587.6062684524226, 11360.019371620341, -5714.655978901143, -19561.294266491135, 11390.795638230795, 12505.9506760489, 36806.85516338308, -17962.456743019695, -1568.8361084652565, 4547.468447806607, 34011.59385090397, 20233.29218021895, 17771.867240106953, 10792.216687216653, -9372.74965731993, -10323.320858555666, 6075.676965222144, -154737.58600017615, -12675.67586276432, -16387.279067270494, 29086.47019416647, -3399.9969420673874, 7904.065425633133, -4828.807471453546, -1958.2856262138782, -79.13549979770063, 606409.3624609874, 14981.607719038566, -8667.169443715691, 2467.719938594525, 5603.619210610741, 7865.509789132755, -35.64060086390437, -6673.398583787677, 55980.58090397947, 17427.979354025465, -1489.0053451937888, 17112.692458122714, -9253.386973349083, 3840.049253255253, -156080.09763345067, -1739.6051093780184, -2545.7985903261747, -1864.089108086389, 1882.5288897827397, -38632.41762894566, 6707.356115927237, 1806.8162910826188, -8078.335270579266, 8547.362177147408, -7708.295169715925, -8531.529396603406, -1394.2802565995999, -1970.022246308387, -7920.131672617732, 14578.866085616195, 1403.584397491442, 45345.85439598149, -11120.333576557352, 292.93703465456025, 28479.517929145502, 2283.916350826597, -148761.6679103581, -11843.748845739125], [29590.136591143975, 7773.698649694299, 48953.09998418119, 7310.556369182932, -21696.008682763364, 5846.742484315448, -6603.85423369802, -12966.994725984123, 21137.114833677235, 16583.866079578653, -36845.59708750711, 21216.925201127375, -2271.4055493587257, 13347.80750788706, 13108.375444480425, 40812.62070133204, -11380.997955224278, -39754.01958627206, -3294.684154004172, 72031.05918216077, -9365.173811769027, 19545.645079420778, -51428.237345722126, 22008.747917141423, 16016.280853145741, 3250.6975950275455, -12382.21034908975, -194343.018713092, 21784.66228144673, -34500.540561769245, 41609.04189402722, -9535.374079920715, 5087.142664896093, 64548.27414063023, -13462.343747476747, 58665.0310620935, -153.4947330777248, -1258.1611907891788, -4376.4789279347, 42713.73755647715, -10561.543307404323, 10915.049199104149, 14981.607716873083, 416867.63749358145, 4695.223812670856, -355.207428881043, -22564.589068949204, 27298.94262619889, 1658.6351913746348, -8205.7763470556, -39984.16967940006, -40753.9608467077, 14365.553881869479, 7693.297276048595, 5772.308972208018, -17684.514894044456, -212868.7779826973, 3069.7420156058424, -35685.4776970143, 2341.224445370709, -193830.4171201978, -24112.327420987316, -29463.622515017832, -26767.111905368554, -6744.050000764895, -29394.16760472265, 4966.794208163647, 68183.54610183538, 2067.6574054674156, 7402.4915927428065, 1742.7963592606354, 1308.0716953863082, 1736.5262623343156, -137475.84763823127, 27671.2256952295, 9437.138865132987, -22498.066657000414, -10555.052039027136, 54013.60046595159, 54000.87092611381], [28952.26106817903, -4241.5512887068035, 34266.83364034173, -83555.76716978167, 13699.404638136943, -38857.79292640676, 1289.4515457974176, -6000.810835818773, -1334.6751726578436, -3393.4887865196974, -2906.1203948403636, -356.4930579690022, 1789.7584527900126, 7677.354957704377, 23626.736038856397, 7276.448638508995, 35557.895883868776, 99505.0188459803, -1176.246971133987, 26746.966030491207, 7664.839718243291, 6485.417334744569, -312.81989630903075, -2918.3262415370978, -24736.045160480866, 2563.7224361073736, 3953.3594988753493, -22043.6536637416, -29864.47274635712, 3870.8101396397806, -127299.13602247839, 471.4369245946731, -9364.907419834719, -10237.340699972474, 10843.377879765827, -3742.7877191700813, -17752.83858214982, -5672.109240271349, -1591.180596959497, 23787.855358018965, 20387.944655266947, -21130.945297603725, -8667.169451780583, 4695.223874135773, 736687.6780550638, -53148.624161108244, -48368.25243812445, 17458.34697008996, -10885.217466272112, 6394.771516203928, 1611.2839758444668, 3814.7010194502104, -12482.43169387019, 2106.852655118427, -822.793574255128, -14486.108801247114, 18843.903575224245, -19019.72289336493, 19775.52246377796, -2471.2929383512865, -29797.400788334806, -3219.4452907702143, -112501.93085573093, -164864.9639364877, -363.1972903050459, -94573.74601931185, 926.7252808691791, 64995.560906297425, -6131.071036579366, 3793.1148004314286, -256907.10487576667, -1545.7185385665389, 7647.220022182477, 18420.19471492448, -500.29116598914305, -9127.200307690508, 9497.925347521828, 7262.029727483196, -6657.880076589173, -9347.963972793532], [-16217.089578001567, 2703.3016348035367, -14376.290607827868, -179665.71716229568, -207.12040808270143, -150596.07747158795, -349.90748255698963, -1252.3808310367008, 611.7876855708471, 2133.5188812507795, -2371.0179977191497, 287.59136188765893, -1967.44570863058, -1660.4510528472197, 16031.481689965321, -1128.0336450108562, -31888.38859248175, -226969.1665059656, -82.32588500175889, -10928.549184988411, 39718.823191187534, -2554.7456545362297, -796.4836479573363, -15711.425919946027, -41267.571950426325, -1863.4155268246072, -1648.4583709830847, 10870.62879905253, 6694.074860558723, -14022.202599226946, -197902.26684289984, 820.5479381473554, -1520.1908142955451, 5978.030258586917, 28.636454569690454, -2949.3337856707026, 20555.13745556345, 17050.684052038323, 6947.557231523355, -10172.072248041984, 3566.000558933171, 11911.964517482302, 2467.71992413205, -355.2074970307807, -53148.62444372048, 779023.3882197111, 23234.902110897514, 6361.475843799401, 2230.1223474904564, -2245.8611345115937, -523.8180400487535, -1871.4030501498742, -24189.954637234605, -1033.1203632738216, 685.1513746813795, 16687.973501957793, -9868.893734213067, 39272.61735818847, 15728.220105972408, 901.4877183598873, -892.9404108183505, 1547.766937331553, 16107.176853874165, -17917.537649205027, 629.8712575477145, 13284.611222749443, 745.678267803115, -11831.324859999557, 1731.029777567501, -644.2868036597339, -24239.853544246293, -112.39513667759738, 34945.92449720195, 3705.8639790046086, 173.19914287600568, 8368.433928782862, -2196.5404358870164, -38522.782535251514, 7127.099366641404, -1209.9630551241019], [-59582.49401246568, 3165.860679846321, -51598.92871413274, 34039.10409197694, -8290.875300660362, 24433.475876322253, -1019.4308672365788, 13449.415758363812, -249.77609186809892, 1674.6756890174156, 7430.115591280124, -2732.487635360038, -731.6954632506585, -22681.000612116342, -23878.89529978585, -25978.865306509444, -18086.5396752897, -13020.064860513443, 2558.81188318951, 14453.572809628895, -211956.24554568712, -3889.280745966005, 8134.1748950490855, 11216.258114648594, 21879.423413620185, -2825.713085052343, -3321.817976142236, 20921.527632582827, 30576.333317093377, 48247.886143746815, -723.4244756825452, -153.4662097102243, 17727.954150910366, 5428.668050703611, -17428.208136909547, 8987.723523841894, 19277.85222139409, -314.8347979888841, -149611.21083831997, 10412.139870477251, -11260.809817415466, 7912.751150856656, 5603.6192375334895, -22564.588960573983, -48368.25228873795, 23234.90171036225, 762927.4885998509, 1527.1137241763552, 16106.207885041147, -7899.160685598787, 4311.949150335911, 1872.8640753740692, 14281.23818887546, -3968.679756562795, -334.58612621918, 38673.81238602739, -3433.1624423180097, 7170.409618091334, -8548.787263966202, 2343.2640047499567, 23642.064848597583, 7777.318784301702, -168937.68827699, 27836.23966328915, 972.3967941418362, -143303.249586651, -3067.259807638394, -83478.95495262273, 7842.029121997535, -6986.305007113417, -100051.99725723836, 1792.805860996908, -22685.05470684526, -18330.93457940418, -3025.086315839961, 1149.0578012957947, -11254.100079399264, 11409.742933968668, -1925.340920255785, 15118.601702842554], [32782.955420474274, 1978.6264810717632, 15974.095044899077, 5223.432544424178, -9316.209234489532, -3324.0730284971364, -143.81363511442066, -208.50359105196804, -5664.712736542525, -2572.9498007206116, -549.7524427548241, 1687.9157819478285, -2454.2772309711936, 27434.80641415789, 30460.652643325884, 16308.129264108795, -22184.466562455433, -22436.937992273302, 2242.7721663129355, -94431.87197200982, 67284.82021465705, -15035.463220367908, -6657.603602349641, 38731.61565014022, 7793.600772004953, -1300.4850327643965, -10025.472398370664, 16037.91188035416, -3968.8957507622586, -29172.108390060894, 31278.0019540946, 238.20187947643217, -3111.874488674662, 6400.89255260168, 2212.097721531532, -9262.154104978394, 40923.95114030657, -22676.02281861849, -123968.26496740856, -233029.19171486734, -1551.994829450364, 12517.821547319736, 7865.509753939225, 27298.942749382102, 17458.347104749195, 6361.475785236556, 1527.1135638937392, 706354.3452835566, -23723.437920930453, 1124.0074302186274, -9322.83714302661, -4608.151656906817, 18678.780482209753, -3703.4842256234647, 3257.8149920622072, -179715.3220579283, -18138.82283888586, -20137.599496659426, 50379.04800408519, 4307.995631956565, -3915.65422349454, 7977.641300400475, -55670.702018247015, -101573.25229402332, 2729.4717877013527, -92952.09276840526, -82.70175896191611, -126943.55141147545, 4556.045272294125, -254.27388842259768, 25448.318818647065, 2806.0837001206355, 17733.332125297664, -13269.986713893908, 1426.9474610058626, 17735.232329183586, -910.1202904692565, -9421.190866684761, 8436.193342138291, -3575.2615169942037], [21206.557281821708, 1102.7891683211847, 28674.729369231507, 4024.9029710002237, -330890.91352253465, 4314.727600377364, -3557.7042515343824, 25911.305240973357, 1471.8841114587985, -11307.363693597714, 4671.576986766615, -10181.70694986302, -5287.462014672265, -20934.537780262275, -11406.883913183561, -46506.97768861714, 2337.280372352153, -219.3004456179617, 14238.88049849193, 16157.840592122146, 49438.16543505952, -6059.812218505695, 15913.15906213545, -43410.367904326864, 4576.12428910038, -7452.736477591763, -26467.504867643565, 12789.38587121639, -278712.74519442377, -69172.56422132709, -1482.1137602736335, 8841.502941791832, 29414.42407102249, -181.69699863860464, -18059.33516623863, 10029.39910329566, -32285.765828116346, 6645.505604977862, 2716.699519762354, -24208.74896830658, -1388.2321870960873, 1645.6987792066568, -35.6406367609681, 1658.6352531781702, -10885.217658409605, 2230.1223844418455, 16106.207998390504, -23723.43791033964, 648482.2472895933, 2021.3570060975937, -7321.126810565159, 16298.218903729081, 3774.1823933135274, -24860.770769322447, -450.6220714439605, 6411.743892949231, 8966.192754062793, -623.9601010116082, 31125.244794365248, 3210.829839595081, 2030.071064938636, 56477.77520452895, -7122.081661029159, -1247.893416369941, 8223.388495323285, -9143.323349086171, -3821.4506148147684, 22296.684986006934, 15653.286643473892, -12227.919127527777, -13000.54606106667, -3689.3944302001837, -17560.58522524617, -16114.108774741706, -9199.884491316509, -4935.350212540634, -14046.973711784058, 8314.082597428696, -8035.829139745538, 17829.751088943744], [-869.1197382917984, 19656.133585130578, -779.3822280440788, -3357.346900852721, -8490.052378274411, -4355.477997554715, 4303.39946933217, 45500.8677310432, -11462.04864199061, 8309.74059313887, 11478.422921992771, -2130.6096430351718, -20443.863011055168, -17940.0323378439, 1330.907711461069, -17715.606019310933, 1127.0412810004268, -1506.148487793766, -9877.33852706368, 6805.175793187534, -20943.96858784729, 7663.081211693437, 31516.09598865596, 9196.960969862706, -3227.8560980268485, -18711.397964995318, 12047.751388409606, -292.75379013126735, 158.2160440807656, 20707.459856028257, 3408.9764944142726, 23031.050918245994, -286779.43739406945, -21640.1331394918, -249721.89626356645, 30528.048757080433, -13039.938609019739, 821.3489480044395, -1980.373795561625, -3986.7319412062748, 3098.858362596616, -1600.954026708459, -6673.39866546881, -8205.776402195897, 6394.771514332266, -2245.861143169387, -7899.160694462666, 1124.0074236052453, 2021.3570350500302, 658318.0141359747, 12549.72733817507, -18102.237145860538, -2376.0798173631656, 9791.171079545817, 9689.387859800629, -95.21469873904924, 13824.34447774385, 1152.5312077627725, 367.1170884499965, 16730.572869968626, 7520.624784049475, -9859.941417863087, 878.8107180565293, 4282.353207699967, 4706.923144748931, 1710.9544813752461, 26531.94046256845, -1065.017296008497, 3904.6629013450597, 19654.550889518483, 6301.556672615504, 4156.373055669511, 4228.755828090189, -20237.03276192783, -16650.73706063699, -239.66663083864856, -222306.47086533142, -2851.1787872217596, -59250.86334748445, 42365.316373506445], [4721.676701046635, 2685.4294613899174, 7956.665535782265, 3242.3093700554755, 34939.81262107607, 3791.992598830112, -22240.53717995044, -169241.95205757476, 10102.279823359215, 22539.507034371803, 49533.24586097107, 38038.180791840045, -16081.43106917195, 21274.41842956479, -3072.087083216507, 16500.04097976372, 668.2574868105379, -4804.235258403314, 27004.026424025174, 14895.21169682922, 26873.620247510786, 4800.562031218751, -175273.52208321402, -8726.599880929041, 4687.559044233575, -2822.0662886497466, -128126.97979730817, -91.39952453760547, -14170.281049991561, -31169.618954037163, -1505.456521701736, -7157.944223339265, 90219.53704482398, -94420.95453812834, -91314.44019018837, -38431.16398236105, 17105.043765735227, 1173.9544569454993, -8009.1223435979255, 5760.76632306698, 801.1147543400099, -308.72975553210193, 55980.580978758284, -39984.16961342715, 1611.2839309168412, -523.8180731003608, 4311.949167595882, -9322.837133802235, -7321.126767351642, 12549.727372586914, 752515.2102270706, -9657.708975321193, 3666.2140023099705, -69766.60812535649, 14970.103782505428, -1869.019768305751, 21407.664634600478, -1383.7966282933853, 3238.3549978390415, -24823.053125374645, -2449.2166940771735, 665.1828455287313, -5690.537444737309, -3287.654621876382, 24270.220381026178, -8868.45331494444, -3560.2087042409357, 2247.788683310681, -14985.5732468329, -7358.991582066866, 1834.5920961783331, -56217.131102995365, -6279.438086072527, 21217.072606571906, 72727.41987813814, -599.6358319677511, -103622.22996420387, 2981.744549333231, -105426.56863794007, -105546.67353721248], [-7494.560179712323, 46892.72598219509, -6414.980456996695, -788.6622794046751, -6810.433571933815, -627.0840693410748, -54624.362964332795, -28168.554602946, 70990.96526898682, 77393.32402942868, 20314.22180861672, -58640.35712343676, -163884.88568400458, -31633.89532919994, 1999.0012503283026, -5107.932061251862, -788.2381995140854, -319.73967491651723, 133645.44339493266, 19261.36294971216, 4845.395451975145, 24635.82873889935, -1718.9439602302623, -7843.442577766908, 2352.928282333907, -77090.78478338123, 95262.41574756669, 1159.601531369237, 14338.266732536167, -3109.230802239261, -2144.5277450409476, -179952.13138689526, 52142.804507026136, -16416.17292642159, -35143.53335864784, 20689.5869654272, -9144.50843425861, -2912.0868611583724, -3009.8111556120407, -376.1054267767958, 3248.146195287, -1125.902798173928, 17427.97938117257, -40753.96082490895, 3814.7010099827944, -1871.4030572995816, 1872.8640908919353, -4608.151631590228, 16298.218843643288, -18102.237138923232, -9657.709016167544, 512894.74574033904, 3284.3354143203346, 89910.32274801988, -97225.64277697011, -6417.137051972104, 2842.0691811554557, -3669.714924291207, 2311.464193673858, -6120.491762247382, 17521.442724528326, -16555.56223740983, 534.6575885590715, -1625.8108353995265, -209696.03546492086, -1383.5160698640204, -53333.414819361664, 899.5818970697153, 19528.52713280448, -38960.48415908709, 5127.034033347231, 59248.3605786634, -2.6559595017530477, 524.1473200231885, -99147.5369384278, 1373.178940295073, -1800.555022098317, 786.4313125630125, -30576.82078482208, 1449.286260572421], [-2073.3663153181506, 2632.0527361124123, -4855.146409012687, -97519.58312963092, -6203.5281560541, -132309.7861650716, -892.3738341323884, 6785.477532944011, -2328.5629981345114, 417.23169962233044, -1672.8450364307332, -1686.8405606517235, -3035.2112300629906, -6059.077367617964, -196296.8041900761, -9897.038079313283, 63.03439834763224, 44339.30374551722, 3049.453198775212, -21784.64384104539, -23590.162214136166, -6227.380217137296, 5311.214712349912, 10242.22720721698, -254464.0858734477, -3381.7095515369133, -5605.714872034027, -4847.9544342508425, 14721.697538562754, -2007.3626321762633, 63819.05076398046, 1973.6618654992021, 4716.6268360039985, 3399.957033015828, -3361.745278062476, -3157.457728783013, 8596.91293567005, -1580.2810469732774, 12359.421803814375, 64311.39643626992, 64767.63474705089, -33074.11969514419, -1489.0053383236104, 14365.553839092572, -12482.431685755968, -24189.954498610918, 14281.238120082566, 18678.78039717722, 3774.182392121726, -2376.0798316487444, 3666.2139853887256, 3284.335411762901, 736135.8715336972, -5925.574630347378, 755.779755099944, -30137.506224070035, 478.4337100245383, -17192.646994421928, -124886.44509950785, 814.9357340664898, -11701.373693472802, 7909.949288245464, 19824.03391695196, -75993.92271528723, 3133.4147984216474, 16857.279855097146, -800.2503952109366, -8160.511883299416, 3616.845608620436, -3703.715280446956, 9310.556888552655, -1428.9186850575745, -43245.13937874273, -264.91496514046815, -1331.5842946537443, -14919.460127717066, -3795.928229678469, 38385.20807205121, 3133.975394913107, 2056.3340854338535], [5766.183506370097, -7319.2679660929025, 5255.73277270534, -1838.2315187148847, 13795.315615499692, -1944.0355231274843, -3975.716873787739, 2881.7172716709892, -100987.15986176349, 25128.7688058244, 142.72263386214743, -95925.546663446, 5202.385979470427, 50548.40040859966, -6134.730639212196, 18792.752256769443, 5378.32119519985, 2973.584323707765, -3802.461450935774, -12794.407023960914, -1093.1358588535168, -17833.008486106577, -62097.52282810369, 8357.73628771265, -5138.492618562622, -10329.543413136864, -191118.2272946203, 14088.372343738265, -23477.556955876575, 3759.563067654998, -2752.1133619853326, 17293.138628864494, 39254.71252070867, 29819.946793132523, -18500.35562163209, -2750.562852910673, 18072.810980870356, 5690.668154748007, -4928.055073268803, -6925.697835763647, 2340.035138812634, -3086.828591318193, 17112.692456500154, 7693.297415329869, 2106.852665039998, -1033.1203607710945, -3968.6797980853544, -3703.4842113604855, -24860.77088411517, 9791.171165424676, -69766.60792244153, 89910.32280986615, -5925.574625736436, 806260.3430809468, -78829.46804555692, 10467.11497519938, -25919.914913347, 3765.4800952654937, 5772.6003191546315, -110507.4679118302, 814.6196708725988, 18544.97408013059, 427.0333126508458, 9378.641754649218, -21518.743941355046, 1106.8727737811403, 7274.9827419245685, -11463.729644600555, -65327.599923155234, -4472.050513688469, 1460.1166047461086, -150475.39037300248, -1368.3915939130025, -19472.556535304728, -63909.62021055762, -4477.87728852553, -56410.0118847734, 873.0695683411449, 31773.628393912386, 9055.150285773605], [-37.49593466254298, -1443.4593795068238, 36.42297057452852, 854.0228677154739, -904.108961250808, 842.6436970991048, -2556.2023939569867, 5908.216978627143, -14243.628568064772, 34523.67180409292, -4720.563507038999, -147361.54577917687, 17401.56581710115, -5782.3664363068265, 1702.768364310352, -9603.682785904815, -1433.6114701126353, -1422.16980063441, -19341.74293457565, -1285.6812060025702, -1514.569802742044, -1397.3906259451735, 19696.304895039906, 665.6379302923601, 878.3587077663266, 18253.43993391395, -30333.091743396748, -4448.940167751017, 2135.291248387892, 857.2488099073294, 1609.2158065155536, -48889.45130185276, -3271.8937099553623, -4033.9782969160947, 14525.6954767789, -6822.358219243566, 1871.6855729205113, -1074.4951176516367, 1364.0841615470713, 4263.270798166842, -1563.6647249796279, 1139.512633346339, -9253.387197168173, 5772.308887857422, -822.7935687270274, 685.1513739386081, -334.58612324319836, 3257.8149906060444, -450.6220100150099, 9689.387743193876, 14970.103656223164, -97225.642529672, 755.7797526869379, -78829.4681579489, 853342.7922000001, -1595.9686995687848, 9329.700601184628, 13.901986106204259, -4311.703122222325, -111331.10529161242, -7183.025503123906, 32752.35145700738, -558.6134588612383, -2480.743935574323, -154750.26669954712, -294.02773084588125, 4661.927930703563, 2336.7571071219213, -73722.25429285408, 24649.31265365467, -931.2102630184627, -89968.26404118737, 1105.6741219452986, 10093.795660437216, -158347.57290377415, 1198.2304630242509, 10247.091727998408, -891.5498524664292, -449.9896368292449, -6166.7609301427], [16219.227688424162, -2521.373933683866, 13981.049151503135, 10213.349530751133, 8053.747319208788, 9876.776535300767, 1009.3415209442453, -7771.412874133182, 4598.024712115739, 2864.4736102166057, 4846.68702230732, 3190.4835079635636, 4676.296050125098, 2006.0408658053602, 28596.58592541235, 11663.279258881961, -5729.7923460455395, -7404.544484080128, -5632.874761286414, 30348.587822801568, 44401.93324649543, 7160.021909394074, -6845.315832263394, -8167.363548942528, -25072.594889443964, 4609.808127250358, 10949.28588428222, 2893.9512947768617, -8325.273853661085, -34444.441328770925, 23401.369276575584, -4234.522043457718, -4547.7255000820305, -2998.9452702492067, 1105.315739451641, 6916.199552969836, -33377.76722690984, -9253.347755524783, -23544.59176751385, -206522.09271214492, -20657.653563469255, 7437.255485268398, 3840.0493059072032, -17684.514966658357, -14486.108549443565, 16687.973561768173, 38673.81245329774, -179715.321925211, 6411.74390221239, -95.21469161110124, -1869.0197787887896, -6417.137044131609, -30137.50647285364, 10467.1149766228, -1595.9686920024624, 724266.5041479078, -2362.6721395278287, 9416.20242048503, -228850.18806813107, -1729.212555805235, 38137.84798060388, -17326.94989719914, -19080.268265111794, -157636.48128417414, -5692.845798455541, -43973.14072471289, 1029.0186324117817, 6036.327396417368, -5165.484126113234, 4833.798459433591, 67.05905851990516, 2271.652000058903, 46494.724358583095, -12017.076263219411, 3154.0235883116916, 10264.826226403557, 3396.3126053142387, -20517.58196067255, -4161.100276899831, 1072.504145831994], [-9758.116413086196, 3579.554225181204, -4799.909719881479, -6172.380876409314, -14619.137008647956, -4305.942608784632, -7901.770349805213, 33827.31106850665, -12627.551554345557, 10634.072975500885, -219487.06261854692, 14183.037498384148, -15961.308214564297, 24676.33076996113, -1920.7411524476854, 15118.196066085156, 8640.50953703802, -3176.9102616386535, 11080.331107150008, 42423.08360699173, 14196.901357245522, -121504.66176525732, 2452.7310337840013, 3612.8139361366707, -9.785844957055701, -5713.81953516448, -31059.39536592118, 27300.214685657615, 28358.09848461858, -20733.422969129446, -4330.265134539414, 4450.855674635478, -16695.230904476255, 33755.312771114404, 35540.61223885548, -63308.02725006721, 36456.08314378357, 3305.4599580755676, -25094.821361245078, 1611.8245941817333, 11631.748010849717, -7772.139076605252, -156080.0976621009, -212868.7780198009, 18843.903568379632, -9868.893750862115, -3433.1623604841047, -18138.822822524402, 8966.192979385118, 13824.34435181303, 21407.66458228284, 2842.0693103334766, 478.4336709903654, -25919.914554570125, 9329.700413061008, -2362.672147851569, 676998.7103501597, -2953.457055928348, 7005.32523981645, -13194.047087207207, 49860.90711541177, -6938.903973304695, -202.26751353384444, 5218.046945228533, 17664.72602429291, -6799.467712298921, 5017.845134622452, -21894.300934222258, -18654.216282285288, 4095.7619487720576, 24139.806045317666, -29496.327016592306, -2221.5246977478096, -190902.86911060938, 26138.76087651605, -3243.176465820934, 2667.921216714209, 1418.3211755849368, 58278.08931245409, 1078.1318265806117], [6813.865276466015, -903.7554993840419, 5979.000962316197, 27725.65681712261, 6668.697573578672, 9994.383924926511, 91.41090079057143, -3987.6565133659374, 1628.0185285813543, 1766.5860047745462, -2766.6594930988254, 2564.5142537713095, 1099.3381778460403, 3099.6480106230074, -126143.7283660482, 6582.765458384363, -128883.92249360117, 85440.53984875197, -2202.4616837431286, 473.0239811038515, 9099.294356395158, 3245.217051769489, -4487.306305837754, -6900.097481911616, -20085.85989513647, 1929.667771984912, 3228.3785744528645, 1841.9541250185034, -10992.839546995538, -3183.176577036654, -35606.75874378728, -1609.5047419484815, -4644.515656539987, 574.2409915381714, 3455.0109036973763, 1894.6159249685045, -12663.607900631087, -217740.9352467413, 8073.574006219981, -37109.46667296068, -7970.0272927418055, -17877.354351097812, -1739.6051266269958, 3069.7420221066272, -19019.722886038384, 39272.61720969714, 7170.409399181756, -20137.599510692577, -623.9600923292522, 1152.5312028761657, -1383.7966484929946, -3669.714926939809, -17192.647222897253, 3765.480095405877, 13.90198423713626, 9416.202475413955, -2953.457035704222, 696661.4987898913, 82035.20550880847, -1270.3557424822388, 6323.378772921433, -7984.950126108854, -2127.2728032778955, 18171.625186831734, -1712.461607870333, 319.8695870647441, 1115.007321430028, 8731.119183909319, -3581.7571708288488, 3066.011762612413, -27680.16647452975, -344.7822555825939, -238456.13722842187, 288.40974715477097, 3055.8258879720083, 58527.18858324893, 2168.9481146369603, -143286.07226460817, 1529.1183919640855, -291.3040183536002], [-45454.62511021231, -2948.8401958127456, -41038.256092732896, 49066.98895906673, -14583.260815282565, 63734.65206384177, -581.9240158397042, -3724.176067033588, 11994.224368308633, 2709.660825136977, 2490.1323169840102, -795.1840865693513, 3653.282300177826, -24946.149723620754, -119864.44491187499, -4818.49656920516, 87669.08376682835, -40281.22114262582, -2807.533866844947, 76795.30816219878, -27885.169764662114, 19769.732342607946, 2668.9393654847972, -35229.900325616196, -62897.07292834878, 2507.1718048727225, 11975.32838352495, -10647.1303290771, 28567.34644634997, 38053.94614513229, -42519.24699325558, -400.15792858476425, 4688.715602999032, -6294.518447820093, -3197.1298966030777, 13961.538464717469, -53181.909852469405, 120668.54985160433, 40786.4868255265, -121311.76918294256, -41921.19103042527, -1551.9080926907698, -2545.798619470989, -35685.47772089848, 19775.522274912506, 15728.220052940918, -8548.787299888108, 50379.04790117252, 31125.244778460423, 367.117085580091, 3238.355005882274, 2311.4641979333364, -124886.44497277618, 5772.600336266949, -4311.703132920612, -228850.18803942995, 7005.325280725404, 82035.2054946172, 360336.73516141204, -5329.573424706388, 39041.705892297265, -10418.345638481047, 17717.176876057038, -37313.145622945165, -5087.984675551973, 26614.735867714455, 1063.2127494585536, 53083.31609941064, -5454.228064979269, 1728.9721893564827, 14278.520568643455, -3379.0936357971887, -83921.07245043726, 4662.289093011759, -150.02769628377666, -61049.54796011436, -592.2952557810894, 12390.090962540664, -8865.833769756837, 4847.520495821853], [-5608.032353789878, -17332.962716136222, -6746.399102680437, 563.2791871715941, -14914.390159709032, 1130.2312752966902, 22656.736578767715, -11070.469613500054, 47655.41576044763, 18666.86551294817, -11824.032728907996, -59929.56849038383, 39625.782304401546, -6712.928404933942, 2276.5223299403915, -1875.4841030069317, -1524.3499585111942, 2526.8394014195314, -33067.489542021875, -5066.904477969697, 2817.8025742084596, 3554.9527774884746, -11890.471500557724, -3063.273641117608, 756.0299925154792, 29742.354285472986, -69111.18908549969, 568.9003326376372, 13767.992385759535, 1226.2397154021462, -2320.8789951130148, -82205.46082245327, -31483.328503600682, 19985.661598379123, 18708.58833601679, -2014.9259288414323, 6112.618802689883, -2747.030387010155, 2517.9755332497066, 4060.5499663357646, -1393.0762039272677, 660.219619652584, -1864.0892810144644, 2341.224537578039, -2471.292935718298, 901.4877245395065, 2343.263992776185, 4307.995647976474, 3210.829721874612, 16730.5728193421, -24823.053358567282, -6120.49195649213, 814.935728377383, -110507.46830065086, -111331.10531335008, -1729.2125581318146, -13194.04703833493, -1270.355732596034, -5329.573427985801, 822491.8261863556, -589.3787101661239, 53481.06713129321, 2077.1109422695376, -2127.19468518534, -90544.33671124339, 2278.4086055714365, -35849.39034562089, -2270.9003169183675, -184468.146230644, 4189.534979826554, -1849.0667598005205, -185180.76681305582, 1682.8804124015312, 11761.879677077817, -8541.877770122928, 1485.5974066597687, -23739.871331843016, 13.275209498444454, 29971.295984406835, -3935.267007457727], [29560.312506360217, -7353.574811160614, 16089.099694147799, -13199.327486622295, -19285.531893973788, -8626.31438157112, 3558.2380009998415, -19145.205148794, 10116.884188931705, -13980.431582345851, 17750.417473420286, -13120.406688255982, 5466.15258701355, -17050.586729955925, -11858.734901357766, -8732.916248103911, 13047.329083208864, 25903.956648483898, -376.67335723478084, -248840.3882660165, -19799.48012763564, 36589.59564611311, 7968.252829315731, 33340.883404547065, -12693.960087923988, 1372.935711055569, 9805.986232039115, -300393.6590811171, 35437.88954153707, -23594.478769277255, -689.3477098746056, 6980.750031941192, -1228.9907502115177, -27218.466027099825, 5300.666950993676, 3797.427298644663, -10611.023895994196, 14499.224699152672, 35185.22201591002, -67131.18649808131, -4026.379001653488, -681.2510354155553, 1882.5290072310331, -193830.41707231337, -29797.400711168397, -892.9402809523075, 23642.064837968297, -3915.6542178774835, 2030.0708656521465, 7520.624787345467, -2449.2166052351527, 17521.442716232465, -11701.37375318222, 814.6197119795123, -7183.025503324061, 38137.84800523741, 49860.906929777775, 6323.378841032857, 39041.70584341161, -589.3787233111384, 574418.0680957924, 22290.71391047625, 22783.272469351603, 15043.56124808573, -3940.008882935942, 30431.97347060224, -87.10840410460968, -25188.71666386493, 1757.8926716126289, -742.1765926368286, -27240.975750987553, 2483.702337358539, -12128.410532396978, 60694.257684917444, -17470.66038643133, -12314.313821873697, 11680.942510292796, 5981.406095192341, -26982.71248543809, -20011.760235375277], [-21083.597020673875, 2687.8648117696325, -24086.547871450435, 991.4084652920268, -69052.94126804858, 1268.3611921306779, 20198.020662117982, -67134.1913411562, -316509.031707698, -26919.718443400492, -29185.305737675404, 2378.1305608989073, 2489.860364714148, -137115.85640509496, 11199.80348371182, -23995.129560377758, -8754.876562194726, 3492.985708783627, -6425.952898480262, 15984.279699497363, -2179.5349502496815, 68165.24492884248, -191320.8056595946, -16451.74698391573, 5739.455022358498, 5668.598620425354, -47408.71671467617, -13125.453285723252, 67765.76748072327, 9082.705984059705, -3294.079025172895, -14119.104547889508, -49019.344769809315, 19393.67726030012, 24534.848863359603, 62027.429184180466, -37450.8898034514, -12596.035960122459, 9867.088326392028, 7653.977153322157, -1289.9888777586903, 2863.817833895895, -38632.417757202216, -24112.32757055859, -3219.445286446909, 1547.7669361228793, 7777.318807741306, 7977.641296594965, 56477.77507864424, -9859.941471728418, 665.1829519674549, -16555.562290328835, 7909.949287927275, 18544.97391302526, 32752.35133615432, -17326.949898322422, -6938.903922343878, -7984.950117205378, -10418.345643362807, 53481.067138275575, 22290.71400404235, 492097.9727175082, 5578.74265103598, -10584.452936753858, 22332.861250226066, 5065.098086835789, -18079.08281604793, 7994.00105395357, 26097.7090871911, -6640.397850055979, -1420.8421537505017, 68170.85193856122, 6192.5467444113, 27959.70840957395, -27240.182441131426, 7689.263958216161, 42404.277986580084, -934.8579517091105, 14512.188898560371, 39537.23364240642], [-13153.070731990756, -2019.9055266297582, -11957.879239985004, 13179.5033585598, -8858.636460832508, 18068.259184862316, 495.23062272334346, 990.8592380446476, 322.51978804043324, -4334.461015423356, 8243.975068286702, -1663.6513318401817, 2414.7840077284923, 3652.975362550646, 2118.8361837548646, 631.8531498351855, -10448.492657115887, 2861.858751378206, 876.8155099908327, 27686.409932126873, -62253.92017335284, 2761.3145865607244, -645.4800921871633, 18190.60221247924, 21266.60074411072, 1503.8683274034258, -825.9199174105839, 12678.656034232583, 542.1538130225466, 48399.55034086125, 17176.41789245344, -530.8507483840538, 6949.385735164572, -3752.190326119246, -5951.509163602829, 6127.351473306577, 9459.600451352826, 183.19266591014906, -143821.97054736037, 30104.635796185226, -25743.253790404782, 17721.018321821964, 6707.356137469035, -29463.62261767948, -112501.93092837506, 16107.176889033122, -168937.68805094413, -55670.70207616606, -7122.081591585241, 878.8107062818688, -5690.537439391339, 534.6575949657056, 19824.033692954297, 427.03333479149444, -558.6134585350969, -19080.26821358006, -202.26750572997332, -2127.2728106060117, 17717.176819168762, 2077.1109413285026, 22783.272529884853, 5578.742677975481, 819740.6620481951, -89572.86988400493, -1095.299943979069, -172312.9062810158, -1717.3546317114901, -55549.09253187979, 3234.6837004790536, -1350.958742277176, -141367.7093010785, 3336.410103827524, -24865.070117832587, -10038.25556500569, -2782.194836194623, 2198.3027877111786, -1799.686825511797, 7729.3709412893195, -7462.095878169237, 3760.943591362952], [17067.974798696006, -3873.823160248932, 16765.70619185238, -80334.67815616442, 8163.001937012354, -63560.106592423756, 2159.7481482289163, -17003.28364226065, 5631.48269576211, -1103.1112566286781, 2813.0744575221343, 318.29303761865486, 4153.707617863599, 7451.920385988007, 36973.13630775274, 17491.965585824408, 23339.518474549917, 46186.10911327504, -5703.488121142076, 42825.58974945517, 117737.62802955355, 12132.494695169986, -6728.9234284325075, -21071.463993411635, -89087.05912525981, 4065.491262051696, 11615.071935988668, -9030.205394919822, -12311.849817066488, -52998.52219100257, 86838.71699994258, -789.0662216391734, -13708.799703681903, -8259.171690254543, 10946.271418569024, -980.7896515190638, -17163.39989049073, 12706.217147344123, -45708.828037381245, 76604.31431408838, -8310.311882304139, 79.78605569887125, 1806.8162960503025, -26767.111827252204, -164864.9639941821, -17917.537504390995, 27836.23979351987, -101573.25227159804, -1247.8934912322816, 4282.353186018243, -3287.6546296697297, -1625.81084338899, -75993.92268884141, 9378.641760306695, -2480.7439450079596, -157636.4810692167, 5218.046859132003, 18171.625205222583, -37313.145669204634, -2127.1946859507498, 15043.561199227332, -10584.452969392212, -89572.86991873336, 696254.6078109705, -5195.911814611546, -115990.40862043216, 2580.946543977618, 21424.38258524498, -6463.80438779594, 6410.65237706509, -123737.41084612644, 1394.187461531764, 60581.16478204748, 12798.483211987745, -836.6139009598911, -5918.596857058561, 10138.066403904166, -31518.36959682536, -4834.811201355438, -12199.191842866161], [-2506.167473243989, 10910.40798615294, -1892.0802663269358, 1467.5047947486132, -3525.274622282358, 1423.8195967311638, -13417.17274028794, -4916.828461431537, 17426.32802919936, 45648.19263316419, 1260.2693841852963, -146454.04367135337, -4351.116475178022, -22710.65732724813, 3436.1509222405934, -13781.614787764129, -3076.2879840539977, -2705.5481029804705, 449.02656633991256, 7101.32136646154, 898.8670246540894, 8966.70784420767, 29168.038281413123, -3438.376086509465, 2924.8824753177937, 15474.44522059979, 28263.1837009281, -7960.553042725071, 9155.75933745298, -1811.7245675022511, 1885.0237679665559, -82655.2328383852, -3453.3484289701037, -16980.827790241197, 11623.568267535838, -2446.2463550340563, -4374.662598422754, -3088.374798534351, 1515.7971644547988, 6144.844091764419, -1415.2347665690545, 1703.2890938170865, -8078.335313571472, -6744.049986263624, -363.1972966259182, 629.8712532963648, 972.396799859557, 2729.47176263168, 8223.38860213298, 4706.922898341148, 24270.22018810483, -209696.03560659458, 3133.414789892815, -21518.743601658607, -154750.2663322687, -5692.8457953602065, 17664.72610609682, -1712.4615991322055, -5087.984669010149, -90544.33665591762, -3940.008902011758, 22332.86118429937, -1095.2999592269362, -5195.911793861082, 802342.2329709124, -1506.737331425079, -544.2715832822514, 5890.758144009787, -55815.05141915741, 26909.286471193067, -193.13574998485979, -46513.0894078361, 1176.3793049824799, 16148.848528483906, -175099.4433524889, 2636.20977338083, 22843.627298656003, -838.2442882182645, -16792.41441753448, -10754.571968777404], [-15360.153759355248, -1831.253884694259, -18187.444937953034, 8521.813296614357, -12434.453551412402, 12360.67765343182, 454.14982546365155, -2495.3635035275806, 1545.4441977016245, -4261.235266462807, 7015.620966540881, -854.497689420538, 2199.6631021506837, 8756.60887780174, 8738.339516388307, 7309.176820037074, -9287.80258937267, -11099.994115128191, 408.477884014525, 16832.19943355791, -12678.286207643838, 3140.240148276223, -3806.886284376845, 13309.27568773481, 16695.797735597684, 1692.0687805475118, -1084.959685205083, 17484.882055496022, 2336.594604030473, 38967.709517551004, 43101.10362859617, -405.58767150516206, 4131.657304849437, -2118.4351563473583, -3704.7886344535136, 5010.368818009502, 13562.014904874912, 4417.201593186147, -157141.87922619356, 33253.54597274378, -28065.122300323386, 21092.051980709697, 8547.36217503395, -29394.167561091457, -94573.74620022037, 13284.611359145305, -143303.24992199475, -92952.09261471056, -9143.3233409197, 1710.9544666192533, -8868.453348865254, -1383.5160772792888, 16857.279930591034, 1106.8727615464315, -294.0277393078951, -43973.14073938649, -6799.467715738979, 319.8694790437547, 26614.73568383466, 2278.408633125987, 30431.973347941814, 5065.098088172976, -172312.9062470972, -115990.40857566292, -1506.7373429585402, 823616.9413443711, -905.619690957463, -77099.05846870742, 2897.5291768297, -186.8604134143915, -113082.71405582996, 3444.877887042653, -20112.263293802393, -9146.894686884985, -1990.6616218830202, 2817.7628145766475, -1224.9488793966516, 777.797900560359, -4637.786631013188, 1603.896733962484], [3689.2701485545617, 80260.38196393564, 3275.177798335187, 693.0349641713888, 827.1498691842008, -423.19255994286164, 33392.33527099641, 1444.6335461513431, -2922.4075222978868, -228489.4106510724, -3281.32539341083, 31395.38649106175, -38118.168324316124, 10123.327179634995, -1139.913567325235, 9678.237638624632, -735.3244708973157, -1261.523192255531, -21663.40351793631, 998.6577631664372, -4331.638790030828, 3053.415400500395, -7348.470861914771, 2581.425238555313, -753.4727602512345, -83858.69270575332, 1822.5465626340895, -2458.227283921226, -7992.656822324798, 5490.560192800865, 1065.793734566939, -171022.3068156192, -6596.040449033374, -8748.927987706349, 14385.446928460577, 3762.9147599891508, -8679.627309076333, 458.97893242014663, -109.59804338185934, -2164.052709565268, 391.4751598853703, 13.583830088601335, -7708.295168480453, 4966.79422851889, 926.7252829398179, 745.6782684393997, -3067.259812824085, -82.70176695506983, -3821.450580349512, 26531.94027270443, -3560.208727604258, -53333.4145852454, -800.2503919840012, 7274.98261425134, 4661.927915552305, 1029.0186327738156, 5017.845155278661, 1115.007321243376, 1063.2127466972927, -35849.39034088359, -87.10839299900415, -18079.082676476082, -1717.3546379255142, 2580.946545432078, -544.2719982576294, -905.6196843272936, 766532.271753999, 2346.9711781068836, -91444.54579008576, -239143.46285856393, -657.6582928632793, -25500.43176057831, 580.2971873542203, -1765.2636261223065, 49465.7005011426, -102.882605722033, 13940.601351877109, -514.2620969844997, -9007.864736914853, 2200.3479015832], [-123254.2165014335, 6148.993512192236, -155194.6017169512, 1645.8693670500609, -34827.35425780035, -4426.83886873966, -3976.9337327696644, 7070.082227610654, 2720.7483460604735, 5659.286423265945, -19629.931871517125, 1733.2698933351305, -8524.302607212625, -10167.770469897447, -22803.85074700593, -4371.30019687862, 17047.920110066516, -36441.91439919452, 5338.7362313701005, -196572.25181810174, 27270.073237078625, -7439.918864065979, 3256.5031411467367, -41146.4528296103, -5185.587085379356, -6508.248320234029, -11764.825003934351, -7990.664110507268, 60203.88203594087, 48172.73472559033, 10915.385235440188, 4683.656332743728, 1273.7662642759, 15511.219522580494, 2239.275174558902, -7301.632218831293, 3078.5250616782996, 24138.38374963532, -173901.65512685417, -7211.112044465713, 17374.957357333264, -9439.489349043912, -8531.529562283344, 68183.5458742075, 64995.560795608755, -11831.32494705962, -83478.95502344164, -126943.55174471992, 22296.685047547384, -1065.0173355151076, 2247.7886930755712, 899.5818984137746, -8160.51175698868, -11463.729687289284, 2336.7571582170726, 6036.327228456434, -21894.300698854466, 8731.119280910038, 53083.316192827275, -2270.9003277741235, -25188.71658133432, 7994.001129054681, -55549.09239342235, 21424.382653567896, 5890.758159072716, -77099.05850239878, 2346.9711685358798, 740217.5745694406, 861.8214229608978, -2599.348157632543, 64072.3974250589, -9248.656856386611, -14576.687039700113, 14006.341431896122, 4764.990764702579, -12156.431197160175, -7993.966294952381, 216.68545768659567, 20299.628576484036, 1741.2252601977884], [-9624.086934887451, -38328.468344985165, -10922.764003876384, 1505.1058058922888, -21719.471631978075, 2748.221191465284, 45044.2375505388, -21504.920072369878, 80268.25508127346, -75334.83209111642, -15932.562628400665, 3065.2488983016165, 61001.50331951202, -20073.584958556803, 3973.643853867947, 1127.0060374004759, -3325.786511805476, 4000.377317407894, -26595.630998525958, -3486.7975596167016, 10408.740292770624, 7512.327589042079, -11081.523950739012, -10852.989109035057, 3283.8201574883938, 53090.7448687387, -26920.939829886982, -1452.4645678183344, 26330.635956108377, -6371.976450579346, -3740.595345021576, -118386.23537529643, -125854.90875749911, 25306.401681955693, 35195.93358019851, -4572.375601034511, 1744.5519494968078, -5193.309513264947, 5939.213065153024, 5003.138660277934, -2855.791798698344, 1973.0042466793313, -1394.2803400030655, 2067.657353499166, -6131.07103047463, 1731.0297757275594, 7842.029113866475, 4556.045286917607, 15653.286549570319, 3904.6630953938384, -14985.5729403022, 19528.527171762827, 3616.8456070667057, -65327.59995699746, -73722.2541292657, -5165.484137566721, -18654.216326605703, -3581.7571651801895, -5454.228062841938, -184468.14608919158, 1757.892690307362, 26097.709092946756, 3234.683696422751, -6463.804382717579, -55815.05140507086, 2897.5291594345376, -91444.54591404427, 861.8214303616456, 747835.1507876591, -25050.912214547472, -4740.357264863716, -193354.67124874628, 451.50119564531485, 17975.165683103096, 66933.85879446314, 2848.8804560906224, -21807.789374304044, 1199.5562696524019, 42417.41566489064, -10181.87287509913], [5809.697252150748, 112288.2022911157, 5422.422700272408, -1218.3896116939836, 2132.6910064321514, -2388.5198451199462, 22634.491818496896, 17592.2818116921, -32283.272691522634, -212960.28444438707, 2909.47149290914, 27467.061775073, -78828.78606458245, 22082.143994721337, -2528.5286076484317, 7827.177623117608, 1917.2080727690188, -1270.719657126364, -86462.91796326789, -2763.7806226978937, -11188.668056385357, -6313.623507258324, -3153.179457264274, 9786.0421544502, -3511.0349506381135, -146868.93586390564, -20603.469388271795, 1388.9239032267778, -14038.50483771025, 11336.774360526406, 1935.1846191777686, -149811.6529200814, 53915.25340108083, -8735.433911507247, -11638.152960048645, 4001.958140425116, -2394.8448959596003, 3094.349106867105, -2887.6126602540307, -3931.5962988606766, 1837.3240303872014, -1508.1514835594476, -1970.0221742943356, 7402.491607703367, 3793.1147992473034, -644.2867993170937, -6986.305007068804, -254.27389103928292, -12227.919198971842, 19654.55068565115, -7358.991878944842, -38960.48408696286, -3703.7152802957944, -4472.050221494368, 24649.31263007227, 4833.7984755156585, 4095.7619334839774, 3066.011758806606, 1728.9721890840758, 4189.534842426275, -742.1766008558667, -6640.398020165687, -1350.95873657649, 6410.652375937951, 26909.286366057393, -186.86040934257883, -239143.46293472924, -2599.3481695543214, -25050.91224326157, 714296.0793588903, 2321.9178569202513, 6785.957364617712, 1494.97888005102, -14154.140147115015, 36176.254087564404, -1812.8643111787442, -1270.08603382094, -1405.6131423033235, -15542.549116473188, 10519.793729084759], [36000.57271710446, -5365.651299484066, 41636.187332866684, -40808.47742840087, 11496.768507115565, -1902.1237172015701, 1315.384935887052, -1153.7213622649372, -3063.1765372703962, -5141.05049669921, 1235.2385829284035, -1059.0699254813342, 2936.1581214179073, 7422.631732254275, 13312.323371310087, 3765.076035724705, 23077.079011853886, 103055.23358576337, -78.61228141212445, 34949.5454243651, -55958.88011197406, 5431.234028281582, 1735.6658391143828, 16049.435493912344, 3421.8608902834726, 3229.52266967124, 3021.1726761280383, -24157.10186667558, -31612.960967704257, 28994.249448927087, -146544.0197502919, -333.28098007959386, -3518.5649773963924, -13111.713033133059, 6228.175404324592, -306.40442681033807, -24458.74669855348, -15051.107187751224, -19451.39038217572, 12355.990655659869, 6947.414328371368, -13561.421545475374, -7920.131628630026, 1742.7962288539038, -256907.10488402442, -24239.853912229897, -100051.99731247232, 25448.318777142038, -13000.546137833868, 6301.556680635554, 1834.5920889300373, 5127.034049590012, 9310.557165001488, 1460.1166167558072, -931.2102697060922, 67.05908352639426, 24139.806138459502, -27680.16650743546, 14278.520586830115, -1849.0667629261734, -27240.97566892696, -1420.8421734222495, -141367.7091689048, -123737.41085315387, -193.1357485363726, -113082.71426354056, -657.6583032423671, 64072.397252039256, -4740.357270967339, 2321.9178611180973, 726444.819424509, -412.95232938025975, -13696.68261693293, 9198.667886149406, -1304.8921756810075, -5660.332806789289, 8038.545865728587, 22399.79469869614, -12208.806379347448, -4877.845087989223], [-5767.9305296473185, -27501.181772503565, -7219.631080568576, -833.8455383176342, -16672.615912996935, 180.7687156978113, 18928.915178034913, -11608.72615603496, 37815.549925712505, 22343.351402790304, -6959.454548965951, -40559.937738590386, 37689.407093128226, 11700.728796846894, 220.45135510689911, 6907.342224997559, 1202.8465490888555, 4818.72785633556, -30240.522647249876, -10418.585582723423, 4241.960011574217, -5456.401681930106, -31376.539767892, -527.1994853572781, -1268.0838302974225, 27914.793712951647, -120134.58941048915, 8155.283613919464, 11741.372632657647, 1098.1763546328161, -4468.487519693933, -53158.06326535674, -34771.77029915006, 34591.94570900108, -747.0406489466035, -4609.173094888802, 16749.237657485566, -743.0451190998593, 87.24546815664067, 1642.6736911961004, -45.03936865611054, -1014.8571382205141, 14578.866392907881, 1308.0716384065106, -1545.7185406997019, -112.39513302738575, 1792.80587939988, 2806.0837077250007, -3689.394479340155, 4156.372941464958, -56217.13102338354, 59248.3604565126, -1428.9186910484625, -150475.38996930947, -89968.26433403294, 2271.6520022763275, -29496.327022017012, -344.7822576247373, -3379.0936389877957, -185180.76693585984, 2483.702332190267, 68170.85196880884, 3336.4101327522103, 1394.1874599695752, -46513.08899848346, 3444.8778686122664, -25500.431990502435, -9248.65686286443, -193354.67115257244, 6785.9572684273435, -412.95233815171224, 782207.2594460178, 1163.343907754438, 847.3572844547786, 26971.541804245036, -385.080202036131, -61556.578995081276, 637.5967593639158, 45171.068079890836, -1885.3055739616134], [7801.428243028686, -1043.8909610892097, 6661.219947285352, 83205.35093985278, -325.89889480362564, 89115.06163007239, 746.9430141201732, -5363.544488519268, -2406.7864460756746, -4308.058903608398, -1424.0458265960851, -277.94604815747715, -494.60386566255596, 16973.55435805538, -271254.2275028569, 11403.740815365958, -28172.62226786546, -33260.21940932961, 805.0458627971591, -11525.03062296322, 32403.104497908367, -1567.748263856293, -4051.7759582710546, 4114.002482929044, 5409.088143523656, 318.7475192304854, -3806.144177981596, 2914.9774547886086, -13692.951901773215, 1589.4648278396935, -56933.817008348924, 1329.8217568071234, -6408.067841629265, -1492.9546507570235, 6719.740584457155, -6199.433989125092, 20956.670412828204, -21392.54181471772, -22433.264959860746, 24098.59774641503, -74832.52248868057, 105282.78714591706, 1403.5843888236873, 1736.526265737029, 7647.220192474239, 34945.92457733465, -22685.054560062075, 17733.332232112807, -17560.58524253991, 4228.755827818926, -6279.4380663847205, -2.6559575234280692, -43245.139320571805, -1368.3916031814736, 1105.6741281506781, 46494.72424256869, -2221.524673639399, -238456.1372308532, -83921.07237164772, 1682.8804021653266, -12128.410566679722, 6192.546741603397, -24865.07030273594, 60581.16471357006, 1176.379310326388, -20112.263474939227, 580.2971856308225, -14576.68702551344, 451.5011916802951, 1494.9788808388455, -13696.682444019698, 1163.3439067507734, 508035.4369466295, 8251.102297195815, -1065.5398532171423, 32319.084379797674, 4048.224019194645, -81814.4264834586, 1488.2577228522969, -7913.694853197027], [22570.57932841212, 19660.793928226638, 15559.419758804548, 6165.271016759983, 61895.06868515542, -2261.460334510356, -459.0439439664152, 38739.962887424685, -29506.63848128597, 9688.537323336357, -5952.022818626441, -3498.459967505062, -16897.999162848035, 8336.827799136867, -1894.3298467963336, -68276.41074502925, -8774.663966375121, -8961.344593108208, 5652.521923442252, 52206.03428304705, -35083.9998277011, -230699.4919205145, 30279.82004146647, 20098.925615735374, -1389.2410121550768, -16588.827929526717, -23737.972758000837, -32309.708860959025, -86914.91774509415, 50028.125853513004, -2161.6912885163592, 7050.426130591371, -279.17724156995695, 47223.139448328984, -9028.752597670893, -119575.73592519984, -158155.89066336933, -5595.737348798113, -9675.397802245292, -1131.4182253436013, 8102.733640768495, -1823.6520428564318, 45345.85431627295, -137475.84749836885, 18420.19474956758, 3705.86397399286, -18330.934431377766, -13269.98667548599, -16114.108821137539, -20237.032847582344, 21217.072617501453, 524.1472294406889, -264.9149359016896, -19472.55645344658, 10093.795767412526, -12017.076264490952, -190902.8692057672, 288.409780468359, 4662.2891098117825, 11761.879728188229, 60694.257491362405, 27959.708378076364, -10038.255679085216, 12798.483176848047, 16148.848596992017, -9146.894617690705, -1765.263550981456, 14006.341284396225, 17975.16561621402, -14154.140098577034, 9198.667860446363, 847.3570774465562, 8251.102285956436, 655822.3895321864, -7853.125339222753, 3942.219077446379, -22807.21803540111, -3246.9071968871854, 56664.42926561619, -25857.90942561021], [9534.39569409245, -3141.996219685403, 10610.298062881286, 137.80473679430247, 15229.353013870921, -115.89000391486759, -15243.164712679756, 49070.68863918846, -164552.20866421846, -12813.848265023413, 3800.4668596945944, -255535.0786960503, 8152.967632355457, 19795.116819652936, -1115.3858124408391, -5816.4002744942945, 937.4607977899702, -4363.284990026017, -12526.202403911748, -5955.5319914302945, -6837.285627439795, -27697.235024715937, 61820.66059617136, 8431.73712380577, -716.1814985106598, 14522.932264731762, -14589.744575644898, -7033.66314466015, -15164.915765787679, -1730.9123859622302, 6263.692412430016, 41974.8703317545, -16132.394537833583, -24130.459963394293, 5742.391952702373, -24759.76908716299, 1188.0779842597935, 3571.7382568169155, 507.57501420191346, 767.522804116302, -2092.840630009896, 1247.4621025344077, -11120.333518760692, 27671.225662025146, -500.2911714621116, 173.1991435852328, -3025.086299236379, 1426.9474239015692, -9199.884440164245, -16650.737040642736, 72727.41993138107, -99147.5368567724, -1331.584291318013, -63909.62031202698, -158347.57306632522, 3154.0236036585698, 26138.76090548546, 3055.825877191787, -150.02770172265895, -8541.877813059702, -17470.660351837356, -27240.18247512172, -2782.194811512563, -836.6139157290831, -175099.44318185988, -1990.6616296321565, 49465.700415274565, 4764.990767667032, 66933.85880509912, 36176.25399594167, -1304.892177870729, 26971.542008714132, -1065.5398551488267, -7853.125315871822, 645301.1912037674, -1077.3454917787694, 35018.40249827727, -1415.0753979432068, -23641.604431358486, -6543.900308463917], [-1814.303958790412, 1880.768357777235, -3061.488491685607, 14215.152761943622, -3536.0539817440545, 30387.309280674293, -344.17080343583694, 1783.7956737197696, -2485.004330430954, -985.0799053335988, -2267.5570115716055, -953.5535831197508, -2590.1293425509966, 3369.4033285061846, 5102.162157519004, -1394.3392572304951, 24326.32784962562, 13609.306563073675, 2229.9237214975, -19143.213262350593, 8057.999698975734, -5248.834037625698, 1268.984822502287, 3644.3028224450004, -782.7553341327073, -2382.816955509526, -5590.610274163781, 1498.0906075715989, 3667.712657005453, -2202.0190024841795, -16043.702632192853, 1885.4133120460685, -96.43403114194139, 3045.734272327785, 691.3584609256181, -5221.668059122779, 18881.422951196157, 379.76836192578145, -1006.6813929753876, 32066.527191177694, -258808.48361397628, -383605.45434679766, 292.9370201131604, 9437.138862490352, -9127.200324635558, 8368.43409099079, 1149.057710845041, 17735.23225548507, -4935.35020185796, -239.66662703698054, -599.6358407451919, 1373.1789400151133, -14919.46020942251, -4477.877297248635, 1198.2304691337986, 10264.826301994251, -3243.176477484276, 58527.1886860067, -61049.548009382, 1485.597395648609, -12314.313848131815, 7689.263960509135, 2198.302746641007, -5918.5967325505, 2636.2097716219346, 2817.7626766746903, -102.88260223283955, -12156.431279814306, 2848.8804478306574, -1812.864303974056, -5660.332840266513, -385.08019565872166, 32319.084465552784, 3942.219072366474, -1077.3454908233498, 539201.0959739115, -1276.3295438337532, -18760.146893546345, 4397.1487601708095, -2195.3347706860563], [2001.0050297430694, 27389.596538556933, 1239.8855804607815, -2016.311123981827, -19012.237597751395, -3708.9644065696866, -2568.8746804261045, -1394.6722515965048, 13711.793120410639, 51047.319799655845, 30668.420425153185, 17355.572464066347, -27039.467607398135, 37511.18166717549, -2007.5553684610945, 24740.52573163567, 2016.0719573305685, -1623.6337685314134, -8112.153028145607, 6900.3470708909845, -12228.198128973105, 5790.966445307052, -28905.184703647767, 12347.002805232825, -3910.2163196699175, -20335.2761970091, -74209.74273019948, 4089.8191492136325, -4965.343473920575, 17799.041754318227, -137.34177624147682, 11736.847374114133, -103345.06256080924, -44236.557930630814, -232756.29020953, 17638.335127009923, -1815.9082840645744, 1607.0909394219314, -8562.604014831539, -2488.3805814567186, 5406.499633476179, -3669.5334102048473, 28479.51774918182, -22498.06677403682, 9497.925324476608, -2196.540416764595, -11254.100034500107, -910.1203115028579, -14046.973628105774, -222306.47099639152, -103622.23006544395, -1800.5548747233236, -3795.9282301733033, -56410.011873483534, 10247.091549861805, 3396.312595750806, 2667.9215750628464, 2168.948103633625, -592.2952561474966, -23739.87134903269, 11680.94255300171, 42404.27799660031, -1799.6868396621876, 10138.066411825928, 22843.62705332717, -1224.9488759878925, 13940.601120165848, -7993.966309636314, -21807.789172833287, -1270.0859878871217, 8038.545874621861, -61556.57892774603, 4048.2240116468115, -22807.21811284643, 35018.40260997255, -1276.329563487719, 768159.3978547811, -1943.052042462909, -78577.6996382555, 8735.060114609914], [-8290.169132343462, 757.0927965713876, -5782.716363479918, -33345.529820072734, -253.00902484106234, -13366.765478359503, 104.05238225597941, 1601.6104166181804, 1129.1286858695944, 1388.9845720331464, 3600.1114212849466, -1103.1069189252173, 480.6618177504034, -8705.104585155419, 62145.42921081952, -6574.492206664305, 83583.01898761638, -25764.610649605474, -628.8398016021796, 11941.157211223612, 3230.17224548004, 269.2886736584102, 2851.097626658042, -4360.470552980667, 29599.263738360267, -524.2549286284756, 2454.0634128327706, 975.4696621700231, 9836.864119560603, -10440.643611642121, 17699.450718988417, -241.2104529724409, 3354.294590836769, 5.297738031171575, -4121.203855434386, 1751.178241684026, 844.1673521265346, 33962.43090990103, -2104.7772759059003, 4431.848441927658, 84592.67337306133, -90741.76116173544, 2283.9163634455194, -10555.052035402474, 7262.029641191853, -38522.78254297551, 11409.742964655286, -9421.190877361712, 8314.082605053387, -2851.178786616239, 2981.7445459742244, 786.4313124511734, 38385.20814307594, 873.0695710873007, -891.5498532125058, -20517.58192606016, 1418.3211510756885, -143286.07225503464, 12390.09091137569, 13.27521908898123, 5981.406126919598, -934.8579477768913, 7729.370995135306, -31518.369546658327, -838.244287517046, 777.7979362685077, -514.2620959849756, 216.68547764174596, 1199.556275339497, -1405.6131463138775, 22399.794603606908, 637.5967580955477, -81814.42648462395, -3246.9071907767234, -1415.0754027376831, -18760.14682937154, -1943.0520514710709, 96694.5352590837, -1683.2885696073304, 2170.6511527259154], [13393.124120826194, 12629.149306479452, 11188.673701082334, 8082.336230879575, 5457.030903658812, 5134.087306069575, 4618.971511342506, -68954.25728496365, 13315.384428134135, 5868.258532942396, -83745.04564705762, -6584.191602920272, 9079.905575937337, 34261.960238231266, 1466.9923224436768, 32883.41083543132, -9191.886346911806, -6464.167054220887, -11088.226138926733, -4715.782378456235, -2382.352139497384, 15088.973654187463, -21308.84367473346, 629.5509296298552, 3969.265275425853, 577.2363059995746, 22002.149531578092, -28602.058806753437, -18250.795089373813, 3058.155633238216, 5405.759347069435, -9930.776349352174, 59944.80790749137, -235714.69530877957, -145625.74814885296, -42641.19029240243, -30298.663774662404, -3950.5693551107524, 8717.464185778234, 8544.436744873885, -6733.275672049535, 5756.0990949463385, -148761.66801101586, 54013.60053665292, -6657.880043531877, 7127.099394248979, -1925.340959509274, 8436.193267424902, -8035.82909324773, -59250.86342951532, -105426.56862481196, -30576.820782269708, 3133.9754355557934, 31773.62826709524, -449.98978745721496, -4161.100277628635, 58278.08935129298, 1529.118416025784, -8865.83375758733, 29971.29604046879, -26982.71255252751, 14512.188988409169, -7462.095902830594, -4834.811187440135, -16792.41445960592, -4637.786648152818, -9007.864956111112, 20299.62857173425, 42417.41559354735, -15542.548829133333, -12208.806372218662, 45171.06821232285, 1488.2577241699498, 56664.429222841776, -23641.604254055146, 4397.148780310261, -78577.69989838338, -1683.2885817865003, 739262.9326936925, -97862.00970364772], [5338.0937230435175, -20301.251346499466, 6702.355579249369, -1798.2585889595414, 46243.870886852455, 2058.327008802362, -185.8575451754331, -154668.98402222237, 45550.24895696315, -26121.844526335015, -11753.2150725509, -2669.922423559233, 12197.240240041434, -79810.6107636397, 416.0647249273764, -102195.27412644475, 3909.9155976192806, 967.0451047361156, 1878.0929593818867, -19227.701151708494, 12278.072906623336, -119562.29039920523, -51750.1322149888, -1644.8866142143015, 2547.1199408392245, 16058.92837213523, 6186.108894538077, -1920.6160638855802, 9459.90359300331, -38852.28397611233, 3698.374172819418, 5174.616972791101, 9754.74515958208, -120806.38750448328, 11525.826672215891, -165860.3321924897, 18143.45365563771, 4316.234083001718, 6121.122567416159, 2517.787204828045, -5508.414397005439, 2745.330157521206, -11843.74865796905, 54000.87089348294, -9347.963999297459, -1209.9629978970625, 15118.601775742709, -3575.2615577222687, 17829.751072519186, 42365.3165388845, -105546.67338940632, 1449.2860804702455, 2056.3340883592177, 9055.150348417235, -6166.760825560874, 1072.5041821596426, 1078.1317198753893, -291.3040308380403, 4847.520488639441, -3935.2672634563487, -20011.760292946627, 39537.233595581434, 3760.943640479703, -12199.19189801363, -10754.571847814615, 1603.8968037327613, 2200.347973824929, 1741.2253132607264, -10181.872566062775, 10519.793733055258, -4877.845157140254, -1885.3058888103342, -7913.69484327359, -25857.909442745626, -6543.900242905271, -2195.3347542162637, 8735.06009227224, 2170.6511586392276, -97862.00984085917, 811897.3651643856]], "optimal_y_mu": [[-0.003761546425284013], [0.005309662574715986], [-0.003773478425284013], [-0.005213400425284013], [-0.002248667425284013], [-0.005288479425284013], [0.0045108625747159875], [-0.0008791654252840132], [0.00048810557471598744], [0.003454417574715986], [-0.0017093714252840132], [0.001769401574715987], [0.004854368574715988], [-0.0015372384252840127], [-0.005446768425284013], [-0.0017197124252840128], [-0.005558576425284013], [-0.005345422425284013], [0.005101332574715987], [-0.003827669425284013], [-0.004020213425284013], [-0.001958866425284013], [-0.00024150142528401274], [-0.003541291425284013], [-0.005305206425284013], [0.004817754574715987], [0.0006695065747159869], [-0.003420805425284013], [-0.002830051425284013], [-0.003606312425284013], [-0.005046111425284013], [0.0032460035747159874], [0.0015204805747159877], [-0.0009753814252840129], [0.0002670495747159867], [-0.0016381424252840133], [-0.003258516425284013], [-0.005625873425284013], [-0.004354087425284012], [-0.004664765425284013], [-0.005681671425284013], [-0.005745952425284013], [-0.001546658425284013], [-0.002976869425284013], [-0.004836371425284013], [-0.005206033425284013], [-0.004332051425284013], [-0.004561489425284013], [-0.002545393425284013], [0.0007304745747159867], [-0.00030715142528401317], [0.0033365385747159866], [-0.005308484425284013], [0.0011783785747159874], [0.002036160574715987], [-0.004810852425284013], [-0.002162334425284013], [-0.005636045425284013], [-0.005044818425284013], [0.001984175574715988], [-0.003538652425284013], [-0.00018279842528401338], [-0.004516391425284013], [-0.004860201425284013], [0.002346195574715987], [-0.004522159425284013], [0.0035438195747159867], [-0.004091877425284014], [0.0022299235747159866], [0.003914003574715988], [-0.004754308425284013], [0.0016778805747159863], [-0.005578250425284013], [-0.002412842425284013], [0.0017900465747159866], [-0.005744030425284013], [0.0005163355747159872], [-0.005760871425284013], [-0.000788510425284013], [-0.001289361425284013]], "training_R2": 0.9999999706353551, "training_rmse": 5.653707051598082e-07}, "map": {"x_data_columns": "list", "x_data": "numpy", "x_data_min": "numpy", "x_data_max": "numpy", "x_data_scaled": "numpy", "optimal_weights": "numpy", "optimal_p": "str", "optimal_mean": "numpy", "optimal_variance": "numpy", "regularization_parameter": "str", "optimal_covariance_matrix": "numpy", "covariance_matrix_inverse": "numpy", "optimal_y_mu": "numpy", "training_R2": "str", "training_rmse": "str"}}}, "input_labels": ["Bypass_Fraction", "NG_Steam_Ratio"], "output_labels": ["Steam_Flow", "Reformer_Duty", "AR", "C2H6"], "input_bounds": {"Bypass_Fraction": [0.1, 0.8], "NG_Steam_Ratio": [0.8, 1.2]}, "surrogate_type": "kriging"} \ No newline at end of file diff --git a/idaes/core/surrogate/plotting/tests/pysmo_poly_surrogate.json b/idaes/core/surrogate/plotting/tests/pysmo_poly_surrogate.json deleted file mode 100644 index d56b1e0894..0000000000 --- a/idaes/core/surrogate/plotting/tests/pysmo_poly_surrogate.json +++ /dev/null @@ -1 +0,0 @@ -{"model_encoding": {"Steam_Flow": {"attr": {"regression_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "multinomials": 1, "additional_term_expressions": [], "optimal_weights_array": [[1.6892868327303412e-05], [1.0241768391705541e-08], [1.2117760566481222], [-1.606634027762066e-07], [0.00017280116323764583], [6.177977075333407e-07], [-0.00017345784095944283], [-9.261986189390559e-07], [8.663213542112191e-05], [4.806377764537961e-07], [-1.7224329011564232e-05], [-1.2118616993952267]], "final_polynomial_order": 5, "errors": {"MAE": 3.505196178449355e-10, "MSE": 1.8443593539894983e-19, "R2": 1.0, "Adjusted R2": 1.0}, "extra_terms_feature_vector": ["IndexedParam[Bypass_Fraction]", "IndexedParam[NG_Steam_Ratio]"]}, "map": {"regression_data_columns": "list", "multinomials": "str", "additional_term_expressions": "list", "optimal_weights_array": "numpy", "final_polynomial_order": "str", "errors": "str", "extra_terms_feature_vector": "other"}}, "Reformer_Duty": {"attr": {"regression_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "multinomials": 1, "additional_term_expressions": [], "optimal_weights_array": [[-164413.4381006705], [-12018.85023824429], [1140579.1962143765], [-30879.15369586756], [-2842749.2412809217], [129612.08654191458], [3833557.7177773905], [-272172.8718928355], [-2892398.0915061673], [284563.1818707844], [1157833.5596230049], [-112694.12456964582], [-192095.4583794988], [-23671.784076987293]], "final_polynomial_order": 6, "errors": {"MAE": 4.807643613591518, "MSE": 37.354863967782464, "R2": 0.9999993302910738, "Adjusted R2": 0.9999991983787095}, "extra_terms_feature_vector": ["IndexedParam[Bypass_Fraction]", "IndexedParam[NG_Steam_Ratio]"]}, "map": {"regression_data_columns": "list", "multinomials": "str", "additional_term_expressions": "list", "optimal_weights_array": "numpy", "final_polynomial_order": "str", "errors": "str", "extra_terms_feature_vector": "other"}}, "AR": {"attr": {"regression_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "multinomials": 1, "additional_term_expressions": [], "optimal_weights_array": [[0.3246427868846849], [-0.0009534935861437444], [-1.9755123324100103], [-0.0021634856528298385], [5.061556457896386], [0.004994926690147131], [-6.889423818159841], [-0.01188487061749155], [5.252166692689315], [0.01354841848183791], [-2.1263783785171064], [-0.007807240351017347], [0.35719175356086696], [0.0005404366588242365]], "final_polynomial_order": 6, "errors": {"MAE": 2.3805286738603683e-06, "MSE": 9.1821512944803e-12, "R2": 0.9999453269967086, "Adjusted R2": 0.9999345580718179}, "extra_terms_feature_vector": ["IndexedParam[Bypass_Fraction]", "IndexedParam[NG_Steam_Ratio]"]}, "map": {"regression_data_columns": "list", "multinomials": "str", "additional_term_expressions": "list", "optimal_weights_array": "numpy", "final_polynomial_order": "str", "errors": "str", "extra_terms_feature_vector": "other"}}, "C2H6": {"attr": {"regression_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "multinomials": 1, "additional_term_expressions": [], "optimal_weights_array": [[-0.45706111977270825], [0.004743272246660699], [2.826107632011864], [0.017266150228618604], [-7.247940359430804], [-0.05124552935066573], [9.869564542056288], [0.12722614317436906], [-7.5260634634460075], [-0.14566696276177887], [3.0473777903184134], [0.07644813893111654], [-0.5119019869708521], [-0.0015428030070269994]], "final_polynomial_order": 6, "errors": {"MAE": 4.26208199570792e-06, "MSE": 2.8850128908202232e-11, "R2": 0.9999964923855629, "Adjusted R2": 0.9999958014918101}, "extra_terms_feature_vector": ["IndexedParam[Bypass_Fraction]", "IndexedParam[NG_Steam_Ratio]"]}, "map": {"regression_data_columns": "list", "multinomials": "str", "additional_term_expressions": "list", "optimal_weights_array": "numpy", "final_polynomial_order": "str", "errors": "str", "extra_terms_feature_vector": "other"}}}, "input_labels": ["Bypass_Fraction", "NG_Steam_Ratio"], "output_labels": ["Steam_Flow", "Reformer_Duty", "AR", "C2H6"], "input_bounds": {"Bypass_Fraction": [0.1, 0.8], "NG_Steam_Ratio": [0.8, 1.2]}, "surrogate_type": "poly"} \ No newline at end of file diff --git a/idaes/core/surrogate/plotting/tests/pysmo_rbf_surrogate.json b/idaes/core/surrogate/plotting/tests/pysmo_rbf_surrogate.json deleted file mode 100644 index 597cbd9410..0000000000 --- a/idaes/core/surrogate/plotting/tests/pysmo_rbf_surrogate.json +++ /dev/null @@ -1 +0,0 @@ -{"model_encoding": {"Steam_Flow": {"attr": {"x_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "x_data": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "centres": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "basis_function": "gaussian", "weights": [[8.903729869837182], [9.707534104744683], [12.166239135229334], [7.447321317402701], [6.107916878163286], [8.364057169823909], [-69.6677922418225], [-8.39151404048832], [0.6669120403113958], [12.781807037440961], [7.842039343291635], [4.110598119185458], [4.812974760822349], [-16.50201082722487], [-40.682836774374856], [-11.141564491773345], [5.2729053223990965], [-1.570419746368241], [10.296007458612408], [-8.463454338468301], [-0.6377711516925361], [16.389793777294255], [-21.15875387943532], [4.581129243840808], [-26.867402965209], [-0.6466713837855925], [-19.112685542459722], [-7.1448095672335805], [-3.9386482519583645], [6.88495251825667], [-28.169299349278706], [-7.220952080013278], [14.346919199951783], [18.737726409097093], [17.999220349199017], [16.08956281742406], [12.566270968478921], [-6.987439769363854], [12.77696185691997], [-31.40591760526647], [14.625905098084623], [6.887169309707963], [7.111411782832076], [3.716108721567262], [5.977158815470683], [-1.5730653439027407], [8.368183365210783], [-31.413581862445948], [-2.900204538819645], [16.009330416021818], [-2.710123330785028], [7.523531713693692], [-36.511189769328396], [-15.918252707230412], [-4.170506219370732], [-48.221250927446754], [8.881896138962963], [-17.360304604237747], [-35.911242973075744], [-13.979685316892567], [-11.437191691696505], [-5.909945002190899], [11.817257341138086], [0.8085759480530712], [0.9359607908187102], [12.593311876839707], [2.0902917375665515], [9.440989147390647], [-6.400434322483177], [3.485457215950368], [4.481458876945853], [-14.59491211717117], [2.062588575573245], [13.247322994107773], [16.279929534272004], [13.722732529698193], [16.704298533514784], [122.87943894514925], [18.702597720033086], [12.711312834330242]], "sigma": 0.5, "regularization_parameter": 1e-05, "rmse": 0.00021830630681864065, "R2": 0.9999993344076902, "x_data_min": [[0.110144928, 0.8]], "x_data_max": [[0.789855072, 1.2]], "y_data_min": [0.209094673], "y_data_max": [1.294057537]}, "map": {"x_data_columns": "list", "x_data": "numpy", "centres": "numpy", "basis_function": "str", "weights": "numpy", "sigma": "str", "regularization_parameter": "str", "rmse": "str", "R2": "str", "x_data_min": "numpy", "x_data_max": "numpy", "y_data_min": "numpy", "y_data_max": "numpy"}}, "Reformer_Duty": {"attr": {"x_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "x_data": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "centres": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "basis_function": "gaussian", "weights": [[27.65056508124086], [-33.96490808183959], [36.480541523284835], [-17.81921366330437], [10.992338310057924], [-19.011131801657914], [-8.080430916464703], [-14.895211416180409], [-37.88591070805769], [48.24307957996062], [-11.231688319955106], [3.2838172245488453], [11.93754041625352], [-4.456396831208667], [-58.464852527170095], [12.894508398488712], [3.710071775134719], [7.680599748656399], [-23.961221873472525], [29.15935756478399], [-2.2126540409401136], [51.28934665078923], [-50.151922760341655], [28.227209809613402], [-57.34032001220163], [0.7037625144580931], [-54.33344676389044], [37.585441351323205], [30.244747368542882], [11.544061156090097], [-0.18066497426854586], [30.615395674705606], [-23.533021728898905], [0.11634499531130929], [-33.33277742658697], [38.41996016783775], [68.14986108066697], [-0.9985115378804863], [4.734587660763962], [-53.476969088784145], [41.977318556865974], [41.99170165828581], [-20.0750398755796], [23.552463100237592], [-25.15409045440045], [-10.219595498014453], [-5.871951562713311], [-38.61798980419876], [17.156225906723154], [-38.9445106424755], [-29.395770420704665], [67.9195670900127], [-65.40513797627179], [-42.04548866483469], [3.4334162391619896], [-69.14047216415484], [18.128910356782345], [-11.117413922457738], [-68.74449200473289], [-16.599772448763336], [23.882844071459147], [-43.84234262965957], [-10.351646819057585], [-32.777045795288565], [23.906045863184907], [-8.40627210581748], [37.108393333135055], [25.415911355719643], [-7.250623098851292], [37.8633064679943], [-24.138030476159276], [-30.671778183391034], [-3.3306457972969814], [58.38850111037139], [18.96040167753464], [52.39306825890918], [-32.60376982021948], [142.66015762454936], [-8.14316351244334], [21.392144659012963]], "sigma": 0.5, "regularization_parameter": 1e-05, "rmse": 0.00036720711537376467, "R2": 0.9999983333773105, "x_data_min": [[0.110144928, 0.8]], "x_data_max": [[0.789855072, 1.2]], "y_data_min": [10191.29206], "y_data_max": [40199.27058]}, "map": {"x_data_columns": "list", "x_data": "numpy", "centres": "numpy", "basis_function": "str", "weights": "numpy", "sigma": "str", "regularization_parameter": "str", "rmse": "str", "R2": "str", "x_data_min": "numpy", "x_data_max": "numpy", "y_data_min": "numpy", "y_data_max": "numpy"}}, "AR": {"attr": {"x_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "x_data": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "centres": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "basis_function": "gaussian", "weights": [[119.97388080360824], [-252.8990752347965], [128.95149180889467], [-53.28061167658434], [-50.88437238530637], [-66.02406097265833], [-85.03523878726256], [-101.20025314577941], [-143.53054947290835], [152.33139972704015], [29.553289972526116], [77.3817670916544], [-52.64511111580348], [-54.83712598796187], [-10.882068211139758], [2.273918126330822], [-8.818318938109783], [71.91603963128402], [-358.4419774400803], [81.86013795170805], [-15.442151749719688], [-47.21341680451869], [-173.5932111405462], [134.85905924684184], [-71.04333428779324], [-65.24692399439078], [-133.89274036174902], [20.99592424611352], [123.750503972887], [28.5455031998744], [16.98145708892621], [166.8937934644349], [203.95522067845647], [-90.1524289303742], [3.9621316798092443], [-71.27919976566189], [154.38051462092648], [-20.17395004693555], [-3.1499990567681038], [-6.244187318182549], [77.40890393606793], [33.59010637779011], [53.20904479358863], [-26.109209249772118], [-90.13484373190363], [-5.926249665786955], [-14.252092377379398], [22.308967474596162], [25.922164889805845], [109.07452613535368], [-119.22445956381777], [243.43069334332023], [-50.62366969565282], [-66.83457721118249], [90.6746782791942], [10.970462766483562], [-39.99285480781898], [-1.6828623106343714], [-2.0634067695315634], [61.55310036447823], [1.546869799229208], [-215.85812027342456], [-49.071576497733574], [-98.69901649802055], [151.8771438719506], [-48.692584146095776], [137.75812634414555], [69.65398232838889], [108.24239164873222], [89.09576977654214], [-84.72052854670112], [23.280853345941534], [4.105936340655478], [-31.984619803282474], [135.92631796138764], [69.21726550790355], [-1.3988017904630592], [10.762081797271392], [-78.40476146460026], [-87.23961978821188]], "sigma": 1.0, "regularization_parameter": 1e-05, "rmse": 0.0010130137166399502, "R2": 0.9999878345792714, "x_data_min": [[0.110144928, 0.8]], "x_data_max": [[0.789855072, 1.2]], "y_data_min": [0.00267285], "y_data_max": [0.004209128]}, "map": {"x_data_columns": "list", "x_data": "numpy", "centres": "numpy", "basis_function": "str", "weights": "numpy", "sigma": "str", "regularization_parameter": "str", "rmse": "str", "R2": "str", "x_data_min": "numpy", "x_data_max": "numpy", "y_data_min": "numpy", "y_data_max": "numpy"}}, "C2H6": {"attr": {"x_data_columns": ["Bypass_Fraction", "NG_Steam_Ratio"], "x_data": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "centres": [[0.37313432827037507, 0.31578947249999995], [1.0, 0.052631579999999914], [0.37313432827037507, 0.39473684250000013], [0.11940298481112561, 0.31578947249999995], [0.5522388054870635, 0.052631579999999914], [0.1044776109741272, 0.39473684250000013], [0.9850746276342169, 0.8684210524999999], [0.6865671641351876, 0.4473684200000001], [0.7761194027435317, 0.07894736749999993], [0.9402985075944371, 0.6315789475000001], [0.6268656717296247, 0.97368421], [0.850746268986093, 0.07894736749999993], [0.9850746276342169, 0.1052631574999999], [0.6268656717296247, 0.2894736849999999], [0.07462686477134581, 0.8157894725], [0.6119402993638416, 0.36842105249999985], [0.044776118568564414, 0.5], [0.08955223860834417, 0.21052631500000007], [1.0, 0.5], [0.37313432827037507, 0.7631578950000003], [0.3283582082305954, 0.026315789999999957], [0.5970149255268433, 0.7105263149999997], [0.7313432841749673, 0.2894736849999999], [0.4029850744731565, 0.263157895], [0.1044776109741272, 0.6578947375], [0.9850746276342169, 0.18421052750000003], [0.7910447765805302, 0.23684210500000002], [0.43283582067593795, 0.8684210524999999], [0.49253731308150084, 0.23684210500000002], [0.38805970063615813, 0.0], [0.14925373101390702, 0.026315789999999957], [0.925373135228654, 0.2894736849999999], [0.850746268986093, 0.7368421050000002], [0.6865671641351876, 0.7894736850000003], [0.7761194027435317, 0.7368421050000002], [0.6268656717296247, 0.6842105275], [0.44776119451293633, 0.5789473675000002], [0.029850746202781393, 0.6052631575000001], [0.28358208966203097, 0.4473684200000001], [0.23880596962225117, 0.97368421], [0.01492537236578302, 0.47368421000000005], [0.0, 0.5789473675000002], [0.6417910455666231, 0.97368421], [0.49253731308150084, 1.0], [0.19402985105368678, 0.263157895], [0.11940298481112561, 0.21052631500000007], [0.28358208966203097, 0.263157895], [0.2537313434592495, 0.7631578950000003], [0.5223880592842821, 0.13157894749999985], [0.8059701489463131, 0.7631578950000003], [0.7313432841749673, 0.5], [0.925373135228654, 0.07894736749999993], [0.1044776109741272, 0.7105263149999997], [0.8208955227833116, 0.21052631500000007], [0.8656716428230914, 0.13157894749999985], [0.20895522341946982, 0.8421052625], [0.582089551689845, 0.9473684200000001], [0.029850746202781393, 0.8421052625], [0.16417910337969002, 0.9473684200000001], [0.8656716428230914, 0.263157895], [0.4179104483101549, 0.9210526325000004], [0.7313432841749673, 0.1052631574999999], [0.2537313434592495, 0.3421052624999999], [0.19402985105368678, 0.52631579], [0.8805970151888742, 0.1052631574999999], [0.2537313434592495, 0.39473684250000013], [0.9402985075944371, 0.4210526325000001], [0.3283582082305954, 0.5526315799999999], [0.8805970151888742, 0.39473684250000013], [0.9552238814314356, 0.4210526325000001], [0.20895522341946982, 0.23684210500000002], [0.850746268986093, 0.31578947249999995], [0.044776118568564414, 0.9210526325000004], [0.5522388054870635, 0.7894736850000003], [0.850746268986093, 0.026315789999999957], [0.0, 0.52631579], [0.7910447765805302, 0.6842105275], [0.0, 1.0], [0.701492537972186, 0.7894736850000003], [0.6567164179324062, 0.6315789475000001]], "basis_function": "gaussian", "weights": [[-186.85621037467558], [464.0185217595651], [-199.45158637111362], [136.0453078831874], [226.044670256994], [167.41997124641722], [218.61904076367045], [261.46721290127067], [101.89910239662038], [-211.45732254826393], [-24.635300580532554], [-193.5047322061965], [172.78769220956437], [257.31336221928933], [61.71631891051646], [218.80662790305433], [94.09538137164314], [28.468722685983934], [563.6288528529516], [-136.58039906765177], [-70.15152345680171], [158.4081581181531], [239.93855413398325], [-158.03383311322565], [134.37122418188582], [174.4742990440164], [73.96092478371699], [-41.626759477019995], [-5.377595361562755], [-15.839602324523426], [-50.959081304133825], [-246.8372213819699], [-373.5196698090373], [88.86422973719638], [-102.96542236266704], [187.97191833531508], [-124.01649027657064], [32.6251616691792], [-124.98626122722779], [10.312448855309714], [-39.310714275413915], [-111.6273617172103], [-54.22462840324867], [28.825305052786852], [39.632738872046914], [65.91860778548461], [-112.57142916347199], [-76.71176278243021], [114.69552286656427], [-254.38332130808675], [199.19116200153564], [-300.1141797222219], [112.85270783508375], [-43.07761413754864], [-230.43588992226492], [-10.077102244497075], [53.12271999247374], [-33.66951932517061], [62.515839930025706], [-194.11390089775895], [-33.75424071321922], [239.7715386145775], [-64.88487925748373], [53.43448773742308], [-279.299446044856], [-66.06256254116627], [-170.47933146854157], [-182.16245104835485], [-218.79922112073098], [-78.22970570320295], [8.958141846029644], [-137.35577996554923], [15.300066892228713], [98.20990809231343], [-203.94749535438373], [-115.34324464869015], [-94.77031664524337], [-59.847005166571684], [58.80845290777788], [213.41846161960606]], "sigma": 0.75, "regularization_parameter": 1e-05, "rmse": 0.0017033383627590014, "R2": 0.9999673339106178, "x_data_min": [[0.110144928, 0.8]], "x_data_max": [[0.789855072, 1.2]], "y_data_min": [0.000570837], "y_data_max": [0.011641371]}, "map": {"x_data_columns": "list", "x_data": "numpy", "centres": "numpy", "basis_function": "str", "weights": "numpy", "sigma": "str", "regularization_parameter": "str", "rmse": "str", "R2": "str", "x_data_min": "numpy", "x_data_max": "numpy", "y_data_min": "numpy", "y_data_max": "numpy"}}}, "input_labels": ["Bypass_Fraction", "NG_Steam_Ratio"], "output_labels": ["Steam_Flow", "Reformer_Duty", "AR", "C2H6"], "input_bounds": {"Bypass_Fraction": [0.1, 0.8], "NG_Steam_Ratio": [0.8, 1.2]}, "surrogate_type": "rbf"} \ No newline at end of file diff --git a/idaes/core/surrogate/plotting/tests/test_alamo_plotting.py b/idaes/core/surrogate/plotting/tests/test_alamo_plotting.py index 2d7891f4db..f5db5840f2 100644 --- a/idaes/core/surrogate/plotting/tests/test_alamo_plotting.py +++ b/idaes/core/surrogate/plotting/tests/test_alamo_plotting.py @@ -17,6 +17,7 @@ import pytest import os import pandas as pd +import matplotlib.pyplot as plt from pyomo.common.fileutils import this_file_dir from pyomo.common.tempfiles import TempfileManager @@ -73,9 +74,11 @@ def test_scatter2D_alamo(alamo_surrogate, data_validation): # create and step into new temporary directory dname = tf.mkdtemp() filename = os.path.join(dname, "results.pdf") - surrogate_scatter2D( + figs = surrogate_scatter2D( alamo_surrogate, data_validation, filename=filename, show=False ) + for f in figs: + plt.close(f) assert os.path.exists(filename) # PDF results file @@ -91,9 +94,11 @@ def test_scatter3D_alamo(alamo_surrogate, data_validation): # create and step into new temporary directory dname = tf.mkdtemp() filename = os.path.join(dname, "results.pdf") - surrogate_scatter3D( + figs = surrogate_scatter3D( alamo_surrogate, data_validation, filename=filename, show=False ) + for f in figs: + plt.close(f) assert os.path.exists(filename) # PDF results file @@ -109,9 +114,11 @@ def test_parity_alamo(alamo_surrogate, data_validation): # create and step into new temporary directory dname = tf.mkdtemp() filename = os.path.join(dname, "results.pdf") - surrogate_parity( + figs = surrogate_parity( alamo_surrogate, data_validation, filename=filename, show=False ) + for f in figs: + plt.close(f) assert os.path.exists(filename) # PDF results file @@ -127,9 +134,11 @@ def test_residual_alamo(alamo_surrogate, data_validation): # create and step into new temporary directory dname = tf.mkdtemp() filename = os.path.join(dname, "results.pdf") - surrogate_residual( + figs = surrogate_residual( alamo_surrogate, data_validation, filename=filename, show=False ) + for f in figs: + plt.close(f) assert os.path.exists(filename) # PDF results file @@ -144,7 +153,9 @@ def test_scatter2D_noPDF_alamo(alamo_surrogate, data_validation): # create and step into new temporary directory dname = tf.mkdtemp() - surrogate_scatter2D(alamo_surrogate, data_validation, show=False) + figs = surrogate_scatter2D(alamo_surrogate, data_validation, show=False) + for f in figs: + plt.close(f) for file in list(os.walk(dname)): # check entire temp directory assert file[-4:] != ".pdf" # no PDF files should be created @@ -160,7 +171,9 @@ def test_scatter3D_noPDF_alamo(alamo_surrogate, data_validation): # create and step into new temporary directory dname = tf.mkdtemp() - surrogate_scatter3D(alamo_surrogate, data_validation, show=False) + figs = surrogate_scatter3D(alamo_surrogate, data_validation, show=False) + for f in figs: + plt.close(f) for file in list(os.walk(dname)): # check entire temp directory assert file[-4:] != ".pdf" # no PDF files should be created @@ -176,7 +189,9 @@ def test_parity_noPDF_alamo(alamo_surrogate, data_validation): # create and step into new temporary directory dname = tf.mkdtemp() - surrogate_parity(alamo_surrogate, data_validation, show=False) + figs = surrogate_parity(alamo_surrogate, data_validation, show=False) + for f in figs: + plt.close(f) for file in list(os.walk(dname)): # check entire temp directory assert file[-4:] != ".pdf" # no PDF files should be created @@ -192,7 +207,9 @@ def test_residual_noPDF_alamo(alamo_surrogate, data_validation): # create and step into new temporary directory dname = tf.mkdtemp() - surrogate_residual(alamo_surrogate, data_validation, show=False) + figs = surrogate_residual(alamo_surrogate, data_validation, show=False) + for f in figs: + plt.close(f) for file in list(os.walk(dname)): # check entire temp directory assert file[-4:] != ".pdf" # no PDF files should be created diff --git a/idaes/core/surrogate/plotting/tests/test_keras_plotting.py b/idaes/core/surrogate/plotting/tests/test_keras_plotting.py deleted file mode 100644 index 829f76516a..0000000000 --- a/idaes/core/surrogate/plotting/tests/test_keras_plotting.py +++ /dev/null @@ -1,200 +0,0 @@ -################################################################################# -# The Institute for the Design of Advanced Energy Systems Integrated Platform -# Framework (IDAES IP) was produced under the DOE Institute for the -# Design of Advanced Energy Systems (IDAES). -# -# Copyright (c) 2018-2023 by the software owners: The Regents of the -# University of California, through Lawrence Berkeley National Laboratory, -# National Technology & Engineering Solutions of Sandia, LLC, Carnegie Mellon -# University, West Virginia University Research Corporation, et al. -# All rights reserved. Please see the files COPYRIGHT.md and LICENSE.md -# for full copyright and license information. -################################################################################# -""" -Tests for Surrogate Plotting Methods -""" - -import pytest -import os -import pandas as pd - -from pyomo.common.fileutils import this_file_dir -from pyomo.common.tempfiles import TempfileManager - -from idaes.core.surrogate.keras_surrogate import KerasSurrogate -from idaes.core.surrogate.sampling.data_utils import split_training_validation -from idaes.core.surrogate.plotting.sm_plotter import ( - surrogate_scatter2D, - surrogate_scatter3D, - surrogate_parity, - surrogate_residual, -) - -_ = pytest.importorskip("tensorflow", reason="tensorflow not installed") - - -@pytest.fixture -def keras_surrogate(): - # import surrogates from external folder - - keras_surrogate = KerasSurrogate.load_from_folder( - os.path.join(this_file_dir(), "keras_surrogate") - ) - - return keras_surrogate - - -@pytest.fixture -def data_validation(): - # import validation data and create dataframe here as well - # random data subset will change every time, but should be fine - - csv_data = pd.read_csv(os.path.join(this_file_dir(), "reformer-data.csv")) - data = csv_data.sample(n=100) # randomly sample points for validation - - input_data = data.iloc[:, :2] - input_labels = input_data.columns - - n_data = data[input_labels[0]].size # size = 100 - data_training, data_validation = split_training_validation(data, 0.8, seed=n_data) - - return data_validation - - -# -------------------------------------------------------------------------- - - -@pytest.mark.unit -def test_scatter2D_keras(keras_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_scatter2D( - keras_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_scatter3D_keras(keras_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_scatter3D( - keras_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_parity_keras(keras_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_parity( - keras_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_residual_keras(keras_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_residual( - keras_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_scatter2D_noPDF_keras(keras_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_scatter2D(keras_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_scatter3D_noPDF_keras(keras_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_scatter3D(keras_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_parity_noPDF_keras(keras_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_parity(keras_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_residual_noPDF_keras(keras_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_residual(keras_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created diff --git a/idaes/core/surrogate/plotting/tests/test_pysmo_krig_plotting.py b/idaes/core/surrogate/plotting/tests/test_pysmo_krig_plotting.py deleted file mode 100644 index 6f90622830..0000000000 --- a/idaes/core/surrogate/plotting/tests/test_pysmo_krig_plotting.py +++ /dev/null @@ -1,198 +0,0 @@ -################################################################################# -# The Institute for the Design of Advanced Energy Systems Integrated Platform -# Framework (IDAES IP) was produced under the DOE Institute for the -# Design of Advanced Energy Systems (IDAES). -# -# Copyright (c) 2018-2023 by the software owners: The Regents of the -# University of California, through Lawrence Berkeley National Laboratory, -# National Technology & Engineering Solutions of Sandia, LLC, Carnegie Mellon -# University, West Virginia University Research Corporation, et al. -# All rights reserved. Please see the files COPYRIGHT.md and LICENSE.md -# for full copyright and license information. -################################################################################# -""" -Tests for Surrogate Plotting Methods -""" - -import pytest -import os -import pandas as pd - -from pyomo.common.fileutils import this_file_dir -from pyomo.common.tempfiles import TempfileManager - -from idaes.core.surrogate.pysmo_surrogate import PysmoSurrogate -from idaes.core.surrogate.sampling.data_utils import split_training_validation -from idaes.core.surrogate.plotting.sm_plotter import ( - surrogate_scatter2D, - surrogate_scatter3D, - surrogate_parity, - surrogate_residual, -) - - -@pytest.fixture -def pysmo_krig_surrogate(): - # import surrogates from external JSON - - pysmo_krig_surrogate = PysmoSurrogate.load_from_file( - os.path.join(this_file_dir(), "pysmo_krig_surrogate.json") - ) - - return pysmo_krig_surrogate - - -@pytest.fixture -def data_validation(): - # import validation data and create dataframe here as well - # random data subset will change every time, but should be fine - - csv_data = pd.read_csv(os.path.join(this_file_dir(), "reformer-data.csv")) - data = csv_data.sample(n=100) # randomly sample points for validation - - input_data = data.iloc[:, :2] - input_labels = input_data.columns - - n_data = data[input_labels[0]].size # size = 100 - data_training, data_validation = split_training_validation(data, 0.8, seed=n_data) - - return data_validation - - -# -------------------------------------------------------------------------- - - -@pytest.mark.unit -def test_scatter2D_pysmo_krig(pysmo_krig_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_scatter2D( - pysmo_krig_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_scatter3D_pysmo_krig(pysmo_krig_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_scatter3D( - pysmo_krig_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_parity_pysmo_krig(pysmo_krig_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_parity( - pysmo_krig_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_residual_pysmo_krig(pysmo_krig_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_residual( - pysmo_krig_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_scatter2D_noPDF_pysmo_krig(pysmo_krig_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_scatter2D(pysmo_krig_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_scatter3D_noPDF_pysmo_krig(pysmo_krig_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_scatter3D(pysmo_krig_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_parity_noPDF_pysmo_krig(pysmo_krig_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_parity(pysmo_krig_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_residual_noPDF_pysmo_krig(pysmo_krig_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_residual(pysmo_krig_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created diff --git a/idaes/core/surrogate/plotting/tests/test_pysmo_poly_plotting.py b/idaes/core/surrogate/plotting/tests/test_pysmo_poly_plotting.py deleted file mode 100644 index 79f50f7581..0000000000 --- a/idaes/core/surrogate/plotting/tests/test_pysmo_poly_plotting.py +++ /dev/null @@ -1,198 +0,0 @@ -################################################################################# -# The Institute for the Design of Advanced Energy Systems Integrated Platform -# Framework (IDAES IP) was produced under the DOE Institute for the -# Design of Advanced Energy Systems (IDAES). -# -# Copyright (c) 2018-2023 by the software owners: The Regents of the -# University of California, through Lawrence Berkeley National Laboratory, -# National Technology & Engineering Solutions of Sandia, LLC, Carnegie Mellon -# University, West Virginia University Research Corporation, et al. -# All rights reserved. Please see the files COPYRIGHT.md and LICENSE.md -# for full copyright and license information. -################################################################################# -""" -Tests for Surrogate Plotting Methods -""" - -import pytest -import os -import pandas as pd - -from pyomo.common.fileutils import this_file_dir -from pyomo.common.tempfiles import TempfileManager - -from idaes.core.surrogate.pysmo_surrogate import PysmoSurrogate -from idaes.core.surrogate.sampling.data_utils import split_training_validation -from idaes.core.surrogate.plotting.sm_plotter import ( - surrogate_scatter2D, - surrogate_scatter3D, - surrogate_parity, - surrogate_residual, -) - - -@pytest.fixture -def pysmo_poly_surrogate(): - # import surrogates from external JSON - - pysmo_poly_surrogate = PysmoSurrogate.load_from_file( - os.path.join(this_file_dir(), "pysmo_poly_surrogate.json") - ) - - return pysmo_poly_surrogate - - -@pytest.fixture -def data_validation(): - # import validation data and create dataframe here as well - # random data subset will change every time, but should be fine - - csv_data = pd.read_csv(os.path.join(this_file_dir(), "reformer-data.csv")) - data = csv_data.sample(n=100) # randomly sample points for validation - - input_data = data.iloc[:, :2] - input_labels = input_data.columns - - n_data = data[input_labels[0]].size # size = 100 - data_training, data_validation = split_training_validation(data, 0.8, seed=n_data) - - return data_validation - - -# -------------------------------------------------------------------------- - - -@pytest.mark.unit -def test_scatter2D_pysmo_poly(pysmo_poly_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_scatter2D( - pysmo_poly_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_scatter3D_pysmo_poly(pysmo_poly_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_scatter3D( - pysmo_poly_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_parity_pysmo_poly(pysmo_poly_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_parity( - pysmo_poly_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_residual_pysmo_poly(pysmo_poly_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_residual( - pysmo_poly_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_scatter2D_noPDF_pysmo_poly(pysmo_poly_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_scatter2D(pysmo_poly_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_scatter3D_noPDF_pysmo_poly(pysmo_poly_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_scatter3D(pysmo_poly_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_parity_noPDF_pysmo_poly(pysmo_poly_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_parity(pysmo_poly_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_residual_noPDF_pysmo_poly(pysmo_poly_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_residual(pysmo_poly_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created diff --git a/idaes/core/surrogate/plotting/tests/test_pysmo_rbf_plotting.py b/idaes/core/surrogate/plotting/tests/test_pysmo_rbf_plotting.py deleted file mode 100644 index c9af05ad61..0000000000 --- a/idaes/core/surrogate/plotting/tests/test_pysmo_rbf_plotting.py +++ /dev/null @@ -1,198 +0,0 @@ -################################################################################# -# The Institute for the Design of Advanced Energy Systems Integrated Platform -# Framework (IDAES IP) was produced under the DOE Institute for the -# Design of Advanced Energy Systems (IDAES). -# -# Copyright (c) 2018-2023 by the software owners: The Regents of the -# University of California, through Lawrence Berkeley National Laboratory, -# National Technology & Engineering Solutions of Sandia, LLC, Carnegie Mellon -# University, West Virginia University Research Corporation, et al. -# All rights reserved. Please see the files COPYRIGHT.md and LICENSE.md -# for full copyright and license information. -################################################################################# -""" -Tests for Surrogate Plotting Methods -""" - -import pytest -import os -import pandas as pd - -from pyomo.common.fileutils import this_file_dir -from pyomo.common.tempfiles import TempfileManager - -from idaes.core.surrogate.pysmo_surrogate import PysmoSurrogate -from idaes.core.surrogate.sampling.data_utils import split_training_validation -from idaes.core.surrogate.plotting.sm_plotter import ( - surrogate_scatter2D, - surrogate_scatter3D, - surrogate_parity, - surrogate_residual, -) - - -@pytest.fixture -def pysmo_rbf_surrogate(): - # import surrogates from external JSON - - pysmo_rbf_surrogate = PysmoSurrogate.load_from_file( - os.path.join(this_file_dir(), "pysmo_rbf_surrogate.json") - ) - - return pysmo_rbf_surrogate - - -@pytest.fixture -def data_validation(): - # import validation data and create dataframe here as well - # random data subset will change every time, but should be fine - - csv_data = pd.read_csv(os.path.join(this_file_dir(), "reformer-data.csv")) - data = csv_data.sample(n=100) # randomly sample points for validation - - input_data = data.iloc[:, :2] - input_labels = input_data.columns - - n_data = data[input_labels[0]].size # size = 100 - data_training, data_validation = split_training_validation(data, 0.8, seed=n_data) - - return data_validation - - -# -------------------------------------------------------------------------- - - -@pytest.mark.unit -def test_scatter2D_pysmo_rbf(pysmo_rbf_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_scatter2D( - pysmo_rbf_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_scatter3D_pysmo_rbf(pysmo_rbf_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_scatter3D( - pysmo_rbf_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_parity_pysmo_rbf(pysmo_rbf_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_parity( - pysmo_rbf_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_residual_pysmo_rbf(pysmo_rbf_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - filename = os.path.join(dname, "results.pdf") - surrogate_residual( - pysmo_rbf_surrogate, data_validation, filename=filename, show=False - ) - - assert os.path.exists(filename) # PDF results file - - -@pytest.mark.unit -def test_scatter2D_noPDF_pysmo_rbf(pysmo_rbf_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_scatter2D(pysmo_rbf_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_scatter3D_noPDF_pysmo_rbf(pysmo_rbf_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_scatter3D(pysmo_rbf_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_parity_noPDF_pysmo_rbf(pysmo_rbf_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_parity(pysmo_rbf_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created - - -@pytest.mark.unit -def test_residual_noPDF_pysmo_rbf(pysmo_rbf_surrogate, data_validation): - - with TempfileManager.new_context() as tf: - # note - a failure 'The process cannot access the file because it is - # being used by another process' could occur if an internal error - # arises before the results file is closed inside the surrogate method - - # create and step into new temporary directory - dname = tf.mkdtemp() - surrogate_residual(pysmo_rbf_surrogate, data_validation, show=False) - - for file in list(os.walk(dname)): # check entire temp directory - assert file[-4:] != ".pdf" # no PDF files should be created diff --git a/idaes/core/surrogate/pysmo/tests/test_kriging.py b/idaes/core/surrogate/pysmo/tests/test_kriging.py index c88adac529..87fcd4f17e 100644 --- a/idaes/core/surrogate/pysmo/tests/test_kriging.py +++ b/idaes/core/surrogate/pysmo/tests/test_kriging.py @@ -96,7 +96,6 @@ def test__init__07(self, array_type): KrigingClass = KrigingModel(input_array, fname=1) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test__init__08(self, array_type): input_array = array_type(self.test_data) @@ -107,7 +106,6 @@ def test__init__08(self, array_type): assert KrigingClass1.filename == KrigingClass2.filename @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test__init__09(self, array_type): input_array = array_type(self.test_data) @@ -403,7 +401,6 @@ def test_r2_calculation(self, array_type): assert 0.999999999999 == r_square @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_predict_output_01(self, array_type): input_array = array_type(self.training_data) @@ -414,7 +411,6 @@ def test_predict_output_01(self, array_type): assert y_pred.shape[0] == KrigingClass.x_data_scaled.shape[0] @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_predict_output(self, array_type): input_array = array_type(self.training_data) @@ -425,7 +421,6 @@ def test_predict_output(self, array_type): assert y_pred.shape[0] == 1 @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_training(self, array_type): input_array = array_type(self.training_data) @@ -503,7 +498,6 @@ def test_get_feature_vector_02(self, array_type): assert expected_dict == p.extract_values() @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_kriging_generate_expression(self, array_type): input_array = array_type(self.training_data) @@ -516,7 +510,6 @@ def test_kriging_generate_expression(self, array_type): rbf_expr = results.generate_expression((lv)) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_pickle_load01(self, array_type): input_array = array_type(self.training_data) @@ -525,7 +518,6 @@ def test_pickle_load01(self, array_type): KrigingClass.pickle_load(KrigingClass.filename) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_pickle_load02(self, array_type): input_array = array_type(self.training_data) @@ -534,7 +526,6 @@ def test_pickle_load02(self, array_type): KrigingClass.pickle_load("file_not_existing.pickle") @pytest.mark.unit - @pytest.fixture(scope="module") @patch("matplotlib.pyplot.show") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_parity_residual_plots(self, mock_show, array_type): diff --git a/idaes/core/surrogate/pysmo/tests/test_polynomial_regression.py b/idaes/core/surrogate/pysmo/tests/test_polynomial_regression.py index 2830d225c6..b02733377f 100644 --- a/idaes/core/surrogate/pysmo/tests/test_polynomial_regression.py +++ b/idaes/core/surrogate/pysmo/tests/test_polynomial_regression.py @@ -613,7 +613,6 @@ def test__init__31(self, array_type1, array_type2): ) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [np.array, pd.DataFrame]) @pytest.mark.parametrize("array_type2", [np.array, pd.DataFrame]) def test__init__32(self, array_type1, array_type2): @@ -640,7 +639,6 @@ def test__init__32(self, array_type1, array_type2): assert PolyClass1.filename == PolyClass2.filename @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [np.array, pd.DataFrame]) @pytest.mark.parametrize("array_type2", [np.array, pd.DataFrame]) def test__init__33(self, array_type1, array_type2): @@ -669,7 +667,6 @@ def test__init__33(self, array_type1, array_type2): assert PolyClass2.filename == file_name2 @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [np.array, pd.DataFrame]) @pytest.mark.parametrize("array_type2", [np.array, pd.DataFrame]) def test__init__34(self, array_type1, array_type2): @@ -1922,7 +1919,6 @@ def test_user_defined_terms_05(self, array_type1, array_type2): data_feed.user_defined_terms(additional_terms) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [pd.DataFrame]) @pytest.mark.parametrize("array_type2", [np.array]) def test_polynomial_regression_fitting_01(self, array_type1, array_type2): @@ -1936,7 +1932,6 @@ def test_polynomial_regression_fitting_01(self, array_type1, array_type2): assert results.fit_status == "ok" @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [pd.DataFrame]) @pytest.mark.parametrize("array_type2", [np.array]) @patch("matplotlib.pyplot.show") @@ -1955,7 +1950,6 @@ def test_polynomial_regression_fitting_02( assert results.fit_status == "poor" @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [pd.DataFrame]) @pytest.mark.parametrize("array_type2", [np.array]) def test_polynomial_regression_fitting_03(self, array_type1, array_type2): @@ -1970,7 +1964,6 @@ def test_polynomial_regression_fitting_03(self, array_type1, array_type2): assert results.fit_status == "ok" @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [pd.DataFrame]) @pytest.mark.parametrize("array_type2", [np.array]) def test_polynomial_regression_fitting_04(self, array_type1, array_type2): @@ -2039,7 +2032,6 @@ def test_set_additional_terms_01(self, array_type1, array_type2): np.testing.assert_equal(np.array([1, 2]), data_feed.additional_term_expressions) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [pd.DataFrame]) @pytest.mark.parametrize("array_type2", [np.array]) def test_poly_training_01(self, array_type1, array_type2): @@ -2052,24 +2044,24 @@ def test_poly_training_01(self, array_type1, array_type2): data_feed.training() assert data_feed.fit_status == "ok" - @pytest.mark.unit - @pytest.fixture(scope="module") - @pytest.mark.parametrize("array_type1", [pd.DataFrame]) - @pytest.mark.parametrize("array_type2", [np.array]) - def test_generate_expression(self, array_type1, array_type2): - original_data_input = array_type1(self.full_data) - regression_data_input = array_type2(self.training_data) - data_feed = PolynomialRegression( - original_data_input, regression_data_input, maximum_polynomial_order=2 - ) - - p = data_feed.get_feature_vector() - data_feed.training() - - poly_expr = data_feed.generate_expression((p.keys())) + # TODO: This does not actually assert anything, and fails to run + # Leaving code in case someone has time to fix it in the future + # @pytest.mark.unit + # @pytest.mark.parametrize("array_type1", [pd.DataFrame]) + # @pytest.mark.parametrize("array_type2", [np.array]) + # def test_generate_expression(self, array_type1, array_type2): + # original_data_input = array_type1(self.full_data) + # regression_data_input = array_type2(self.training_data) + # data_feed = PolynomialRegression( + # original_data_input, regression_data_input, maximum_polynomial_order=2 + # ) + # + # p = data_feed.get_feature_vector() + # data_feed.training() + # + # poly_expr = data_feed.generate_expression((p.keys())) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [np.array]) @pytest.mark.parametrize("array_type2", [np.array]) def test_pickle_load01(self, array_type1, array_type2): @@ -2083,7 +2075,6 @@ def test_pickle_load01(self, array_type1, array_type2): PolyClass.pickle_load(PolyClass.filename) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [np.array]) @pytest.mark.parametrize("array_type2", [np.array]) def test_pickle_load02(self, array_type1, array_type2): @@ -2097,7 +2088,6 @@ def test_pickle_load02(self, array_type1, array_type2): @pytest.mark.unit @patch("matplotlib.pyplot.show") - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type1", [np.array]) @pytest.mark.parametrize("array_type2", [np.array]) def test_parity_residual_plots(self, mock_show, array_type1, array_type2): @@ -2111,7 +2101,6 @@ def test_parity_residual_plots(self, mock_show, array_type1, array_type2): PolyClass.parity_residual_plots() - @pytest.fixture(scope="module") @pytest.mark.unit def test_confint_regression_01(self): # Create x vector for ax2 + bx + c: x data supplied in x_vector @@ -2152,7 +2141,6 @@ def test_confint_regression_01(self): atol=1e-3, ) - @pytest.fixture(scope="module") @pytest.mark.unit def test_confint_regression_02(self): # Create x vector for ax2 + bx + c: x data supplied in x_vector @@ -2193,7 +2181,6 @@ def test_confint_regression_02(self): atol=1e-3, ) - @pytest.fixture(scope="module") @pytest.mark.unit def test_confint_regression_03(self): # Create x vector for ax2 + bx + c: x data supplied in x_vector diff --git a/idaes/core/surrogate/pysmo/tests/test_radial_basis_function.py b/idaes/core/surrogate/pysmo/tests/test_radial_basis_function.py index 122982ea7c..24e0dccfa0 100644 --- a/idaes/core/surrogate/pysmo/tests/test_radial_basis_function.py +++ b/idaes/core/surrogate/pysmo/tests/test_radial_basis_function.py @@ -301,7 +301,6 @@ def test__init__11(self, array_type): ) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test__init__12(self, array_type): file_name = "test_filename.pickle" @@ -315,7 +314,7 @@ def test__init__12(self, array_type): overwrite=True, ) p = RbfClass1.get_feature_vector() - results = RbfClass1.rbf_training() + results = RbfClass1.training() RbfClass2 = RadialBasisFunctions( input_array, basis_function="LineaR", @@ -327,7 +326,6 @@ def test__init__12(self, array_type): assert RbfClass1.filename == RbfClass2.filename @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test__init__14(self, array_type): input_array = array_type(self.test_data) @@ -1863,7 +1861,6 @@ def test_leave_one_out_crossvalidation_11(self, array_type): assert error_best == expected_errors @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_training_01(self, array_type): input_array = array_type(self.test_data) @@ -1925,7 +1922,6 @@ def test_rbf_training_01(self, array_type): assert results.solution_status == "ok" @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_training_02(self, array_type): input_array = array_type(self.test_data) @@ -1941,7 +1937,6 @@ def test_rbf_training_02(self, array_type): assert data_feed.solution_status == "unstable solution" @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_training_03(self, array_type): input_array = array_type(self.test_data) @@ -1957,7 +1952,6 @@ def test_rbf_training_03(self, array_type): assert data_feed.solution_status == "unstable solution" @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_predict_output_01(self, array_type): input_array = array_type(self.training_data) @@ -1981,7 +1975,6 @@ def test_rbf_predict_output_01(self, array_type): assert expected_output == output @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_predict_output_02(self, array_type): input_array = array_type(self.training_data) @@ -2005,7 +1998,6 @@ def test_rbf_predict_output_02(self, array_type): assert expected_output == output @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_predict_output_03(self, array_type): input_array = array_type(self.training_data) @@ -2031,7 +2023,6 @@ def test_rbf_predict_output_03(self, array_type): assert expected_output == output @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_predict_output_04(self, array_type): input_array = array_type(self.training_data) @@ -2057,7 +2048,6 @@ def test_rbf_predict_output_04(self, array_type): assert expected_output == output @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_predict_output_05(self, array_type): input_array = array_type(self.training_data) @@ -2083,7 +2073,6 @@ def test_rbf_predict_output_05(self, array_type): assert expected_output == output @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_predict_output_06(self, array_type): input_array = array_type(self.training_data) @@ -2127,7 +2116,6 @@ def test_get_feature_vector_02(self, array_type): assert expected_dict == output.extract_values() @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_generate_expression_01(self, array_type): input_array = array_type(self.training_data) @@ -2145,7 +2133,6 @@ def test_rbf_generate_expression_01(self, array_type): rbf_expr = data_feed.generate_expression((lv)) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_generate_expression_02(self, array_type): input_array = array_type(self.training_data) @@ -2163,7 +2150,6 @@ def test_rbf_generate_expression_02(self, array_type): rbf_expr = data_feed.generate_expression((lv)) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_generate_expression_03(self, array_type): input_array = array_type(self.training_data) @@ -2181,7 +2167,6 @@ def test_rbf_generate_expression_03(self, array_type): rbf_expr = results.generate_expression((lv)) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_generate_expression_04(self, array_type): input_array = array_type(self.training_data) @@ -2196,7 +2181,6 @@ def test_rbf_generate_expression_04(self, array_type): rbf_expr = results.generate_expression((lv)) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_generate_expression_05(self, array_type): input_array = array_type(self.training_data) @@ -2214,7 +2198,6 @@ def test_rbf_generate_expression_05(self, array_type): rbf_expr = results.generate_expression((lv)) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_rbf_generate_expression_06(self, array_type): input_array = array_type(self.training_data) @@ -2232,7 +2215,6 @@ def test_rbf_generate_expression_06(self, array_type): rbf_expr = results.generate_expression((lv)) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_pickle_load01(self, array_type): input_array = array_type(self.training_data) @@ -2247,7 +2229,6 @@ def test_pickle_load01(self, array_type): data_feed.pickle_load(data_feed.filename) @pytest.mark.unit - @pytest.fixture(scope="module") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_pickle_load02(self, array_type): input_array = array_type(self.training_data) @@ -2263,7 +2244,6 @@ def test_pickle_load02(self, array_type): data_feed.pickle_load("file_not_existing.pickle") @pytest.mark.unit - @pytest.fixture(scope="module") @patch("matplotlib.pyplot.show") @pytest.mark.parametrize("array_type", [np.array, pd.DataFrame]) def test_parity_residual_plots(self, mock_show, array_type): diff --git a/idaes/core/surrogate/tests/test_alamopy.py b/idaes/core/surrogate/tests/test_alamopy.py index 6cc6d3ebd2..00b5e42894 100644 --- a/idaes/core/surrogate/tests/test_alamopy.py +++ b/idaes/core/surrogate/tests/test_alamopy.py @@ -16,6 +16,7 @@ import pytest import numpy as np import pandas as pd +import re import io import os from math import sin, cos, log, exp @@ -843,9 +844,11 @@ def test_read_trace_label_mismatch(self, alamo_trainer): alamo_trainer._trcfile = os.path.join(dirpath, "alamotrace2.trc") with pytest.raises( RuntimeError, - match="Mismatch when reading ALAMO trace file. " - "Label of output variable in expression " - "\(z2\) does not match expected label \(z3\).", + match=re.escape( + "Mismatch when reading ALAMO trace file. " + "Label of output variable in expression " + "(z2) does not match expected label (z3)." + ), ): alamo_trainer._read_trace_file(alamo_trainer._trcfile) diff --git a/idaes/core/surrogate/tests/test_surrogate_block.py b/idaes/core/surrogate/tests/test_surrogate_block.py index dc34dfd16c..46028ff16a 100644 --- a/idaes/core/surrogate/tests/test_surrogate_block.py +++ b/idaes/core/surrogate/tests/test_surrogate_block.py @@ -14,6 +14,7 @@ Tests for SurrogateBlock """ import pytest +import re from pyomo.environ import ConcreteModel, Set, Var @@ -256,9 +257,11 @@ def test_setup_inputs_outputs_input_vars_mismatch(): with pytest.raises( ValueError, - match="Specifying input_vars to a SurrogateBlock, but " - "the length of the input_vars \(after extracting all" - " the VarData objects\) does not match n_inputs", + match=re.escape( + "Specifying input_vars to a SurrogateBlock, but " + "the length of the input_vars (after extracting all" + " the VarData objects) does not match n_inputs" + ), ): m.sb._setup_inputs_outputs(4, 5, input_vars=m.inputs, output_vars=m.outputs) @@ -273,9 +276,11 @@ def test_setup_inputs_outputs_input_vars_empty_list(): with pytest.raises( ValueError, - match="Specifying input_vars to a SurrogateBlock, but " - "the length of the input_vars \(after extracting all" - " the VarData objects\) does not match n_inputs", + match=re.escape( + "Specifying input_vars to a SurrogateBlock, but " + "the length of the input_vars (after extracting all" + " the VarData objects) does not match n_inputs" + ), ): m.sb._setup_inputs_outputs(4, 5, input_vars=[], output_vars=m.outputs) @@ -292,9 +297,11 @@ def test_setup_inputs_outputs_output_vars_mismatch(): with pytest.raises( ValueError, - match="Specifying output_vars to a SurrogateBlock, but " - "the length of the output_vars \(after extracting all" - " the VarData objects\) does not match n_outputs", + match=re.escape( + "Specifying output_vars to a SurrogateBlock, but " + "the length of the output_vars (after extracting all" + " the VarData objects) does not match n_outputs" + ), ): m.sb._setup_inputs_outputs(4, 5, input_vars=m.inputs, output_vars=m.outputs) @@ -309,9 +316,11 @@ def test_setup_inputs_outputs_output_vars_empty_list(): with pytest.raises( ValueError, - match="Specifying output_vars to a SurrogateBlock, but " - "the length of the output_vars \(after extracting all" - " the VarData objects\) does not match n_outputs", + match=re.escape( + "Specifying output_vars to a SurrogateBlock, but " + "the length of the output_vars (after extracting all" + " the VarData objects) does not match n_outputs" + ), ): m.sb._setup_inputs_outputs(4, 5, input_vars=m.inputs, output_vars=[]) @@ -477,8 +486,10 @@ def test_build_model_unused_kwarg(): with pytest.raises( ValueError, - match="Error in keyword arguments passed to " - "build_model. The following arguments were not used: " - "\['foo'\]", + match=re.escape( + "Error in keyword arguments passed to " + "build_model. The following arguments were not used: " + "['foo']" + ), ): m.sb.build_model(m.dummy, use_surrogate_bounds=False, foo=True) diff --git a/idaes/core/util/testing.py b/idaes/core/util/testing.py index 11be9aaf9b..cd9bec0397 100644 --- a/idaes/core/util/testing.py +++ b/idaes/core/util/testing.py @@ -179,7 +179,7 @@ def build(self): self.basis_switch = 1 self.default_balance_switch = 1 - self._state_block_class = TestStateBlock + self._state_block_class = StateBlockForTesting self.set_default_scaling("flow_vol", 100) self.set_default_scaling("flow_mol", 101) @@ -234,7 +234,7 @@ def release_state(blk, flags=None, outlvl=idaeslog.NOTSET): k.hold_state = not k.hold_state -@declare_process_block_class("TestStateBlock", block_class=SBlockBase) +@declare_process_block_class("StateBlockForTesting", block_class=SBlockBase) class StateTestBlockData(StateBlockData): CONFIG = ConfigBlock(implicit=True) diff --git a/idaes/core/util/tests/test_config.py b/idaes/core/util/tests/test_config.py index 6b62ca17f9..cf18c40b17 100644 --- a/idaes/core/util/tests/test_config.py +++ b/idaes/core/util/tests/test_config.py @@ -27,7 +27,6 @@ ReactionParameterBlock, useDefault, ) -from idaes.core.base.phases import PhaseType as PT from idaes.core.util.config import ( is_physical_parameter_block, is_reaction_parameter_block, @@ -111,7 +110,7 @@ def test_is_reaction_parameter_block_fails(): is_reaction_parameter_block(1) # int -@declare_process_block_class("TestStateBlock", block_class=StateBlock) +@declare_process_block_class("StateBlockForTesting", block_class=StateBlock) class StateTestBlockData(StateBlockData): def build(self): pass @@ -119,10 +118,10 @@ def build(self): @pytest.mark.unit def test_is_state_block_passes(): - # Make an instance of a TestStateBlock - s = TestStateBlock() + # Make an instance of a StateBlockForTesting + s = StateBlockForTesting() - # Check that is_state_block returns the TestStateBlock + # Check that is_state_block returns the StateBlockForTesting assert s == is_state_block(s) diff --git a/idaes/core/util/tests/test_misc.py b/idaes/core/util/tests/test_misc.py index 412b19b164..9032c2d2a7 100644 --- a/idaes/core/util/tests/test_misc.py +++ b/idaes/core/util/tests/test_misc.py @@ -11,13 +11,13 @@ # for full copyright and license information. ################################################################################# """ -This module contains miscalaneous utility functions for use in IDAES models. +This module contains miscellaneous utility functions for use in IDAES models. """ import pytest +import re from pyomo.environ import ConcreteModel, Set, Block, Var, units -from pyomo.network import Port, Arc from pyomo.common.config import ConfigBlock from pyomo.core.base.units_container import UnitsError @@ -165,10 +165,12 @@ def test_no_param_indexed(self): with pytest.raises( AttributeError, - match="b - set_param_from_config method was " - "provided with param and index arguments " - "test_param 1, but no attribute with that " - "combination \(test_param_1\) exists.", + match=re.escape( + "b - set_param_from_config method was " + "provided with param and index arguments " + "test_param 1, but no attribute with that " + "combination (test_param_1) exists." + ), ): set_param_from_config(m.b, "test_param", index="1") diff --git a/idaes/core/util/tests/test_model_diagnostics.py b/idaes/core/util/tests/test_model_diagnostics.py index 39dd09d561..f21cc5194d 100644 --- a/idaes/core/util/tests/test_model_diagnostics.py +++ b/idaes/core/util/tests/test_model_diagnostics.py @@ -17,6 +17,7 @@ import math import numpy as np import pytest +import re import os from copy import deepcopy @@ -457,8 +458,10 @@ class TestDiagnosticsToolbox: def test_invalid_model_type(self): with pytest.raises( TypeError, - match="model argument must be an instance of a Pyomo BlockData object " - "\(either a scalar Block or an element of an indexed Block\).", + match=re.escape( + "model argument must be an instance of a Pyomo BlockData object " + "(either a scalar Block or an element of an indexed Block)." + ), ): DiagnosticsToolbox(model="foo") @@ -469,8 +472,10 @@ def test_invalid_model_type(self): with pytest.raises( TypeError, - match="model argument must be an instance of a Pyomo BlockData object " - "\(either a scalar Block or an element of an indexed Block\).", + match=re.escape( + "model argument must be an instance of a Pyomo BlockData object " + "(either a scalar Block or an element of an indexed Block)." + ), ): DiagnosticsToolbox(model=m.b) @@ -1186,7 +1191,9 @@ def test_assert_no_structural_warnings(self, model): m = model.clone() dt = DiagnosticsToolbox(model=m.b) - with pytest.raises(AssertionError, match="Structural issues found \(1\)."): + with pytest.raises( + AssertionError, match=re.escape("Structural issues found (1).") + ): dt.assert_no_structural_warnings() # Fix units issue @@ -1199,7 +1206,9 @@ def test_assert_no_numerical_warnings(self, model): m = model.clone() dt = DiagnosticsToolbox(model=m.b) - with pytest.raises(AssertionError, match="Numerical issues found \(2\)."): + with pytest.raises( + AssertionError, match=re.escape("Numerical issues found (2).") + ): dt.assert_no_numerical_warnings() # Fix numerical issues @@ -1836,8 +1845,10 @@ def test_display_constraints_including_variable_invalid(self): with pytest.raises( TypeError, - match="variable argument must be an instance of a Pyomo _VarData " - "object \(got foo\).", + match=re.escape( + "variable argument must be an instance of a Pyomo _VarData " + "object (got foo)." + ), ): svd.display_constraints_including_variable(variable="foo") @@ -1901,8 +1912,10 @@ def test_display_variables_in_constraint_invalid(self): with pytest.raises( TypeError, - match="constraint argument must be an instance of a Pyomo _ConstraintData " - "object \(got foo\).", + match=re.escape( + "constraint argument must be an instance of a Pyomo _ConstraintData " + "object (got foo)." + ), ): svd.display_variables_in_constraint(constraint="foo") @@ -3776,8 +3789,9 @@ def test_invalid_direction(self): with pytest.raises( ValueError, - match="Unrecognised value for direction \(foo\). " - "Must be 'row' or 'column'.", + match=re.escape( + "Unrecognised value for direction (foo). " "Must be 'row' or 'column'." + ), ): check_parallel_jacobian(m, direction="foo") @@ -3823,8 +3837,9 @@ def test_invalid_direction(self): with pytest.raises( ValueError, - match="Unrecognised value for direction \(foo\). " - "Must be 'row' or 'column'.", + match=re.escape( + "Unrecognised value for direction (foo). " "Must be 'row' or 'column'." + ), ): compute_ill_conditioning_certificate(m, direction="foo") diff --git a/idaes/core/util/tests/test_parameter_sweep.py b/idaes/core/util/tests/test_parameter_sweep.py index a28255dabf..8d303361eb 100644 --- a/idaes/core/util/tests/test_parameter_sweep.py +++ b/idaes/core/util/tests/test_parameter_sweep.py @@ -15,6 +15,7 @@ """ import pytest +import re import os from pandas import DataFrame, Series @@ -180,8 +181,10 @@ def test_set_sampling_method_invalid(self): with pytest.raises( TypeError, - match="Sampling method must be an instance of a Pysmo SamplingMethod " - "\(received foo\)", + match=re.escape( + "Sampling method must be an instance of a Pysmo SamplingMethod " + "(received foo)" + ), ): spec.set_sampling_method("foo") @@ -803,9 +806,11 @@ def bm(): with pytest.raises( ValueError, - match="Convergence testing found an input of type Param that " - "was not mutable \(p1\). Please make sure all " - "sampled inputs are either mutable params or fixed vars.", + match=re.escape( + "Convergence testing found an input of type Param that " + "was not mutable (p1). Please make sure all " + "sampled inputs are either mutable params or fixed vars." + ), ): psweep.set_input_values(model, 0) @@ -830,9 +835,11 @@ def bm(): with pytest.raises( ValueError, - match="Convergence testing found an input of type Var that " - "was not fixed \(v1\). Please make sure all " - "sampled inputs are either mutable params or fixed vars.", + match=re.escape( + "Convergence testing found an input of type Var that " + "was not fixed (v1). Please make sure all " + "sampled inputs are either mutable params or fixed vars." + ), ): psweep.set_input_values(model, 0) @@ -857,9 +864,11 @@ def bm(): with pytest.raises( ValueError, - match="Convergence testing found an input of type IndexedVar that " - "was not fixed \(v1, index 1\). Please make sure all " - "sampled inputs are either mutable params or fixed vars.", + match=re.escape( + "Convergence testing found an input of type IndexedVar that " + "was not fixed (v1, index 1). Please make sure all " + "sampled inputs are either mutable params or fixed vars." + ), ): psweep.set_input_values(model, 0) @@ -892,9 +901,11 @@ def bm(): with pytest.raises( ValueError, - match="Failed to find a valid input component \(must be " - "a fixed Var or a mutable Param\). Instead, " - "pyomo_path: c1 returned: c1.", + match=re.escape( + "Failed to find a valid input component (must be " + "a fixed Var or a mutable Param). Instead, " + "pyomo_path: c1 returned: c1." + ), ): psweep.set_input_values(model, 0) diff --git a/idaes/core/util/tests/test_scaling.py b/idaes/core/util/tests/test_scaling.py index 15c90f9421..e7816c6e59 100644 --- a/idaes/core/util/tests/test_scaling.py +++ b/idaes/core/util/tests/test_scaling.py @@ -15,8 +15,9 @@ """ import math from io import StringIO - import pytest +import re + import pyomo.environ as pyo import pyomo.dae as dae from pyomo.common.collections import ComponentSet @@ -29,7 +30,6 @@ from pyomo.contrib.pynumero.asl import AmplInterface from idaes.core.base.process_base import ProcessBaseBlock -from idaes.core.util.exceptions import ConfigurationError from idaes.core.util.model_statistics import number_activated_objectives import idaes.core.util.scaling as sc import logging @@ -46,11 +46,13 @@ @pytest.mark.unit def test_none_left_mult(): with pytest.raises( - TypeError, match="unsupported operand type\(s\) for \*: 'int' and 'NoneType'" + TypeError, + match=re.escape("unsupported operand type(s) for *: 'int' and 'NoneType'"), ): assert sc.__none_left_mult(4, None) is None with pytest.raises( - TypeError, match="unsupported operand type\(s\) for \*: 'float' and 'NoneType'" + TypeError, + match=re.escape("unsupported operand type(s) for *: 'float' and 'NoneType'"), ): assert sc.__none_left_mult(4.0, None) is None assert sc.__none_left_mult(None, 4) is None diff --git a/idaes/core/util/tests/test_tables.py b/idaes/core/util/tests/test_tables.py index 0533d57ecd..f229f9c2d5 100644 --- a/idaes/core/util/tests/test_tables.py +++ b/idaes/core/util/tests/test_tables.py @@ -292,7 +292,7 @@ def test_stream_table_dataframe_to_string(m): ### # Create a dummy StateBlock class ## -@declare_process_block_class("TestStateBlock", block_class=StateBlock) +@declare_process_block_class("StateBlockForTesting", block_class=StateBlock) class StateTestBlockData(StateBlockData): def build(self): self.x = Var(initialize=0) @@ -303,7 +303,7 @@ def build(self): self.flow_mol = Var(["CO2", "H2O"]) -@declare_process_block_class("TestStateBlock2", block_class=StateBlock) +@declare_process_block_class("StateBlockForTesting2", block_class=StateBlock) class StateTestBlockData(StateBlockData): def build(self): self.pressure = Var() @@ -316,9 +316,9 @@ def build(self): def gtmodel(): time_set = set([0, 1]) m = ConcreteModel() - m.state_a = TestStateBlock(time_set) - m.state_b = TestStateBlock(time_set, [1, 2, 3]) - m.state_c = TestStateBlock2(time_set) + m.state_a = StateBlockForTesting(time_set) + m.state_b = StateBlockForTesting(time_set, [1, 2, 3]) + m.state_c = StateBlockForTesting2(time_set) m.state_a[0].pressure = 11000 m.state_a[0].enth_mol = 1100 diff --git a/idaes/core/util/tests/test_utility_minimization.py b/idaes/core/util/tests/test_utility_minimization.py index dec7aa8cf3..e942f924b0 100644 --- a/idaes/core/util/tests/test_utility_minimization.py +++ b/idaes/core/util/tests/test_utility_minimization.py @@ -222,7 +222,6 @@ def test_solve(self, model): # Check for optimal solution assert check_optimal_termination(results) - @pytest.mark.initialize @pytest.mark.solver @pytest.mark.skipif(solver is None, reason="Solver not available") @pytest.mark.unit diff --git a/idaes/models/control/tests/test_antiwindup.py b/idaes/models/control/tests/test_antiwindup.py index def3a0efce..a43c013b86 100644 --- a/idaes/models/control/tests/test_antiwindup.py +++ b/idaes/models/control/tests/test_antiwindup.py @@ -362,8 +362,6 @@ def test_setpoint_change_windup(): assert tj2.get_vec(m_dynamic.fs.valve_1.valve_opening[tf])[19] >= 0.82 assert tj2.get_vec(m_dynamic.fs.valve_1.valve_opening[tf])[23] <= 0.56 - return m_dynamic, solver, tj2 - @pytest.mark.skipif(not petsc.petsc_available(), reason="PETSc solver not available") @pytest.mark.component @@ -422,8 +420,6 @@ def test_setpoint_change_conditional_integration(): s2_valve, abs=1e-3 ) - return m_dynamic, solver, tj2 - @pytest.mark.skipif(not petsc.petsc_available(), reason="PETSc solver not available") @pytest.mark.component @@ -485,30 +481,3 @@ def test_setpoint_change_back_calculation(): assert tj2.get_vec(m_dynamic.fs.valve_1.valve_opening[tf])[40] == pytest.approx( s2_valve, abs=1e-3 ) - - return m_dynamic, solver, tj2 - - -if __name__ == "__main__": - m, solver, tj2 = test_setpoint_change_windup() - - fig = plt.figure(figsize=(4, 5.5)) - axes = fig.subplots(nrows=3, ncols=1) - time = tj2.get_vec("_time") - tf = m.fs.time.last() - - axes[0].plot(time, tj2.get_vec(m.fs.valve_1.valve_opening[tf])) - axes[0].set_xlabel("time (s)") - axes[0].set_ylabel("opening (fraction open)") - - axes[1].plot( - time, tj2.get_vec(m.fs.tank_2.control_volume.properties_out[tf].pressure) / 1000 - ) - axes[1].set_xlabel("time (s)") - axes[1].set_ylabel("tank pressure (kPa)") - - axes[2].plot(time, tj2.get_vec(m.fs.ctrl.mv_integral_component[tf])) - axes[2].set_xlabel("time (s)") - axes[2].set_ylabel("integral component (fraction open)") - - fig.tight_layout() diff --git a/idaes/models/properties/interrogator/tests/test_properties_interrogator.py b/idaes/models/properties/interrogator/tests/test_properties_interrogator.py index c532a98414..473f95b185 100644 --- a/idaes/models/properties/interrogator/tests/test_properties_interrogator.py +++ b/idaes/models/properties/interrogator/tests/test_properties_interrogator.py @@ -18,6 +18,7 @@ @author: alee """ import pytest +import re from pyomo.environ import ConcreteModel, units as pyunits from pyomo.util.check_units import assert_units_equivalent @@ -544,8 +545,10 @@ def test_interrogator_parameter_block_custom_phase_error(): with pytest.raises( ConfigurationError, - match="fs.params invalid phase type foo \(for phase " - "P1\). Type must be a subclass of Phase.", + match=re.escape( + "fs.params invalid phase type foo (for phase " + "P1). Type must be a subclass of Phase." + ), ): m.fs.params = PropertyInterrogatorBlock(phase_list={"P1": "foo", "P2": None}) @@ -557,9 +560,11 @@ def test_interrogator_parameter_block_custom_comp_error(): with pytest.raises( ConfigurationError, - match="fs.params invalid component type foo \(for " - "component c1\). Type must be a subclass of " - "Component.", + match=re.escape( + "fs.params invalid component type foo (for " + "component c1). Type must be a subclass of " + "Component." + ), ): m.fs.params = PropertyInterrogatorBlock( component_list={"c1": "foo", "c2": None} diff --git a/idaes/models/properties/modular_properties/base/tests/test_generic_property.py b/idaes/models/properties/modular_properties/base/tests/test_generic_property.py index 8a99e2fb47..461cf08aa7 100644 --- a/idaes/models/properties/modular_properties/base/tests/test_generic_property.py +++ b/idaes/models/properties/modular_properties/base/tests/test_generic_property.py @@ -17,6 +17,7 @@ """ import functools import pytest +import re from sys import modules from types import MethodType @@ -155,7 +156,9 @@ def test_invalid_unit(self): with pytest.raises( PropertyPackageError, - match="Unrecognized units of measurement for quantity TIME " "\(foo\)", + match=re.escape( + "Unrecognized units of measurement for quantity TIME (foo)" + ), ): m.params = DummyParameterBlock( components={"a": {}, "b": {}, "c": {}}, @@ -723,8 +726,10 @@ def test_elements_not_float(self): with pytest.raises( ConfigurationError, - match="params values in elemental_composition must " - "be integers \(not floats\)\: e1\: 2.0.", + match=re.escape( + "params values in elemental_composition must " + "be integers (not floats): e1: 2.0." + ), ): m.params = DummyParameterBlock( components={ @@ -1686,9 +1691,11 @@ def test_critical_props_not_implemented(self): with pytest.raises( NotImplementedError, - match="props\[1\] Equation of State module has not implemented a method for " - "build_critical_properties. Please contact the EoS developer or use a " - "different module.", + match=re.escape( + "props[1] Equation of State module has not implemented a method for " + "build_critical_properties. Please contact the EoS developer or use a " + "different module." + ), ): m.props[1]._critical_props() diff --git a/idaes/models/properties/modular_properties/base/tests/test_generic_reaction.py b/idaes/models/properties/modular_properties/base/tests/test_generic_reaction.py index 391a8e92f9..ff7c2525de 100644 --- a/idaes/models/properties/modular_properties/base/tests/test_generic_reaction.py +++ b/idaes/models/properties/modular_properties/base/tests/test_generic_reaction.py @@ -16,6 +16,7 @@ Author: Andrew Lee """ import pytest +import re from sys import modules from math import log @@ -156,7 +157,9 @@ def test_rate_build(self, m): def test_invalid_unit(self, m): with pytest.raises( PropertyPackageError, - match="Unrecognized units of measurement for quantity TIME " "\(foo\)", + match=re.escape( + "Unrecognized units of measurement for quantity TIME (foo)" + ), ): m.rxn_params = GenericReactionParameterBlock( property_package=m.params, @@ -588,9 +591,11 @@ def test_reaction_rate_None(self, model): with pytest.raises( ConfigurationError, - match="rblock\[1\] Generic Reaction r1 was not " - "provided with a rate_form configuration " - "argument.", + match=re.escape( + "rblock[1] Generic Reaction r1 was not " + "provided with a rate_form configuration " + "argument." + ), ): model.rblock[1].reaction_rate diff --git a/idaes/models/properties/modular_properties/examples/reactions/tests/test_reaction_example.py b/idaes/models/properties/modular_properties/examples/reactions/tests/test_reaction_example.py index 499a46aef7..96d30215ad 100644 --- a/idaes/models/properties/modular_properties/examples/reactions/tests/test_reaction_example.py +++ b/idaes/models/properties/modular_properties/examples/reactions/tests/test_reaction_example.py @@ -117,7 +117,6 @@ def test_dof(self, model): assert degrees_of_freedom(model) == 0 - @pytest.mark.initialize @pytest.mark.solver @pytest.mark.skipif(solver is None, reason="Solver not available") @pytest.mark.unit @@ -150,7 +149,6 @@ def test_solve(self, model): # Check for optimal solution assert check_optimal_termination(results) - @pytest.mark.initialize @pytest.mark.solver @pytest.mark.skipif(solver is None, reason="Solver not available") @pytest.mark.unit diff --git a/idaes/models/properties/modular_properties/phase_equil/tests/test_henry.py b/idaes/models/properties/modular_properties/phase_equil/tests/test_henry.py index 3005c7f13e..e6033ff58c 100644 --- a/idaes/models/properties/modular_properties/phase_equil/tests/test_henry.py +++ b/idaes/models/properties/modular_properties/phase_equil/tests/test_henry.py @@ -277,5 +277,5 @@ def test_equilibrium_ratio(): ) assert ( str(pyunits.get_units(henry_equilibrium_ratio(m.state[0], "Liq", "H2O"))) - is "dimensionless" + == "dimensionless" ) diff --git a/idaes/models/properties/modular_properties/state_definitions/tests/test_FPhx.py b/idaes/models/properties/modular_properties/state_definitions/tests/test_FPhx.py index bdf1d6ff71..02afc9f267 100644 --- a/idaes/models/properties/modular_properties/state_definitions/tests/test_FPhx.py +++ b/idaes/models/properties/modular_properties/state_definitions/tests/test_FPhx.py @@ -16,6 +16,7 @@ """ import pytest +import re from sys import modules from pyomo.environ import ConcreteModel, Constraint, Var, units as pyunits @@ -87,10 +88,12 @@ def test_bad_name(self): with pytest.raises( ConfigurationError, - match="props\[1\] - found unexpected state_bounds key foo. " - "Please ensure bounds are provided only for expected state " - "variables and that you have typed the variable names " - "correctly.", + match=re.escape( + "props[1] - found unexpected state_bounds key foo. " + "Please ensure bounds are provided only for expected state " + "variables and that you have typed the variable names " + "correctly." + ), ): # Build state block m.props = m.params.build_state_block([1], defined_state=False) diff --git a/idaes/models/properties/modular_properties/state_definitions/tests/test_FTPx.py b/idaes/models/properties/modular_properties/state_definitions/tests/test_FTPx.py index 1de2abd6c5..0e8c86143c 100644 --- a/idaes/models/properties/modular_properties/state_definitions/tests/test_FTPx.py +++ b/idaes/models/properties/modular_properties/state_definitions/tests/test_FTPx.py @@ -17,6 +17,7 @@ """ import pytest +import re import numpy as np from pytest import approx from sys import modules @@ -97,10 +98,12 @@ def test_bad_name(self): with pytest.raises( ConfigurationError, - match="props\[1\] - found unexpected state_bounds key foo. " - "Please ensure bounds are provided only for expected state " - "variables and that you have typed the variable names " - "correctly.", + match=re.escape( + "props[1] - found unexpected state_bounds key foo. " + "Please ensure bounds are provided only for expected state " + "variables and that you have typed the variable names " + "correctly." + ), ): m.props = m.params.build_state_block([1], defined_state=True) @@ -1372,8 +1375,10 @@ def test_unphysical_mol_fraction_fail(self, frame): frame.props[1].mole_frac_comp["c1"].value = -0.1 with pytest.raises( ValueError, - match="Component c1 has a negative mole fraction " - "in block props\[1\]. Check your initialization.", + match=re.escape( + "Component c1 has a negative mole fraction " + "in block props[1]. Check your initialization." + ), ): frame.props[1].params.config.state_definition.state_initialization( frame.props[1] diff --git a/idaes/models/properties/modular_properties/state_definitions/tests/test_FcPh.py b/idaes/models/properties/modular_properties/state_definitions/tests/test_FcPh.py index 11d12c38b9..d95961dd18 100644 --- a/idaes/models/properties/modular_properties/state_definitions/tests/test_FcPh.py +++ b/idaes/models/properties/modular_properties/state_definitions/tests/test_FcPh.py @@ -17,6 +17,7 @@ """ import pytest +import re from sys import modules from pyomo.environ import ( @@ -91,10 +92,12 @@ def test_bad_name(self): with pytest.raises( ConfigurationError, - match="props\[1\] - found unexpected state_bounds key foo. " - "Please ensure bounds are provided only for expected state " - "variables and that you have typed the variable names " - "correctly.", + match=re.escape( + "props[1] - found unexpected state_bounds key foo. " + "Please ensure bounds are provided only for expected state " + "variables and that you have typed the variable names " + "correctly." + ), ): # Build state block m.props = m.params.build_state_block([1], defined_state=False) @@ -125,10 +128,12 @@ def test_mole_frac(self, caplog): with pytest.raises( ConfigurationError, - match="props\[1\] - found unexpected state_bounds key " - "mole_frac_comp. Please ensure bounds are provided only for " - "expected state variables and that you have typed the " - "variable names correctly.", + match=re.escape( + "props[1] - found unexpected state_bounds key " + "mole_frac_comp. Please ensure bounds are provided only for " + "expected state variables and that you have typed the " + "variable names correctly." + ), ): # Build state block m.props = m.params.build_state_block([1], defined_state=True) diff --git a/idaes/models/properties/modular_properties/state_definitions/tests/test_FcTP.py b/idaes/models/properties/modular_properties/state_definitions/tests/test_FcTP.py index 9355bf6515..06c1cd1d1f 100644 --- a/idaes/models/properties/modular_properties/state_definitions/tests/test_FcTP.py +++ b/idaes/models/properties/modular_properties/state_definitions/tests/test_FcTP.py @@ -17,6 +17,7 @@ """ import pytest +import re from sys import modules from pyomo.environ import ( @@ -82,10 +83,12 @@ def test_bad_name(self): with pytest.raises( ConfigurationError, - match="props\[1\] - found unexpected state_bounds key foo. " - "Please ensure bounds are provided only for expected state " - "variables and that you have typed the variable names " - "correctly.", + match=re.escape( + "props[1] - found unexpected state_bounds key foo. " + "Please ensure bounds are provided only for expected state " + "variables and that you have typed the variable names " + "correctly." + ), ): # Build state block m.props = m.params.build_state_block([1], defined_state=False) @@ -116,10 +119,12 @@ def test_mole_frac(self, caplog): with pytest.raises( ConfigurationError, - match="props\[1\] - found unexpected state_bounds key " - "mole_frac_comp. Please ensure bounds are provided only for " - "expected state variables and that you have typed the " - "variable names correctly.", + match=re.escape( + "props[1] - found unexpected state_bounds key " + "mole_frac_comp. Please ensure bounds are provided only for " + "expected state variables and that you have typed the " + "variable names correctly." + ), ): # Build state block m.props = m.params.build_state_block([1], defined_state=False) diff --git a/idaes/models/properties/modular_properties/state_definitions/tests/test_FpcTP.py b/idaes/models/properties/modular_properties/state_definitions/tests/test_FpcTP.py index d43c170a4c..f0e85e0561 100644 --- a/idaes/models/properties/modular_properties/state_definitions/tests/test_FpcTP.py +++ b/idaes/models/properties/modular_properties/state_definitions/tests/test_FpcTP.py @@ -17,6 +17,7 @@ """ import pytest +import re from sys import modules from pyomo.environ import ConcreteModel, Constraint, Expression, Var, units as pyunits @@ -90,10 +91,12 @@ def test_bad_name(self): with pytest.raises( ConfigurationError, - match="props\[1\] - found unexpected state_bounds key foo. " - "Please ensure bounds are provided only for expected state " - "variables and that you have typed the variable names " - "correctly.", + match=re.escape( + "props[1] - found unexpected state_bounds key foo. " + "Please ensure bounds are provided only for expected state " + "variables and that you have typed the variable names " + "correctly." + ), ): # Build state block m.props = m.params.build_state_block([1], defined_state=True) @@ -124,10 +127,12 @@ def test_mole_frac(self, caplog): with pytest.raises( ConfigurationError, - match="props\[1\] - found unexpected state_bounds key " - "mole_frac_comp. Please ensure bounds are provided only for " - "expected state variables and that you have typed the " - "variable names correctly.", + match=re.escape( + "props[1] - found unexpected state_bounds key " + "mole_frac_comp. Please ensure bounds are provided only for " + "expected state variables and that you have typed the " + "variable names correctly." + ), ): # Build state block m.props = m.params.build_state_block([1], defined_state=False) diff --git a/idaes/models/unit_models/solid_liquid/tests/test_thickener.py b/idaes/models/unit_models/solid_liquid/tests/test_thickener.py index 61e9ae4f73..6775d6bb6e 100644 --- a/idaes/models/unit_models/solid_liquid/tests/test_thickener.py +++ b/idaes/models/unit_models/solid_liquid/tests/test_thickener.py @@ -16,6 +16,7 @@ """ from math import isnan import pytest +import re from pyomo.environ import ( check_optimal_termination, @@ -538,7 +539,9 @@ def test_get_stream_table_contents(self, model): def test_deprecate_initialize(self, model): with pytest.raises( NotImplementedError, - match="The Thickener0D unit model does not support the old initialization API. " - "Please use the new API \(InitializerObjects\) instead.", + match=re.escape( + "The Thickener0D unit model does not support the old initialization API. " + "Please use the new API (InitializerObjects) instead." + ), ): model.fs.unit.initialize() diff --git a/idaes/models/unit_models/tests/test_heat_exchanger_lc.py b/idaes/models/unit_models/tests/test_heat_exchanger_lc.py index 1b6997119e..f1ed349f44 100644 --- a/idaes/models/unit_models/tests/test_heat_exchanger_lc.py +++ b/idaes/models/unit_models/tests/test_heat_exchanger_lc.py @@ -16,6 +16,7 @@ Author: Rusty Gentile, John Eslick, Andrew Lee """ import pytest +import re from pyomo.environ import ( check_optimal_termination, @@ -459,9 +460,11 @@ def test_dynamic_wo_holdup(self): with pytest.raises( ConfigurationError, - match="invalid arguments for dynamic and has_holdup. " - "If dynamic = True, has_holdup must also be True " - "\(was False\)", + match=re.escape( + "invalid arguments for dynamic and has_holdup. " + "If dynamic = True, has_holdup must also be True " + "(was False)" + ), ): m.fs.unit = HeatExchangerLumpedCapacitance( hot_side_name="shell", diff --git a/idaes/models/unit_models/tests/test_mixer.py b/idaes/models/unit_models/tests/test_mixer.py index 393a14eb25..6046bf23e8 100644 --- a/idaes/models/unit_models/tests/test_mixer.py +++ b/idaes/models/unit_models/tests/test_mixer.py @@ -75,7 +75,7 @@ ) from idaes.core.util.testing import ( PhysicalParameterTestBlock, - TestStateBlock, + StateBlockForTesting, initialization_tester, ) from idaes.models.properties.modular_properties.base.generic_property import ( @@ -286,7 +286,7 @@ def test_add_mixed_state_block_prop_pack_args(self, mixer_frame): @pytest.mark.unit def test_get_mixed_state_block(self, mixer_frame): - mixer_frame.fs.sb = TestStateBlock( + mixer_frame.fs.sb = StateBlockForTesting( mixer_frame.fs.time, parameters=mixer_frame.fs.pp ) @@ -309,7 +309,7 @@ def test_get_mixed_state_block_none(self, mixer_frame): @pytest.mark.unit def test_get_mixed_state_block_mismatch(self, mixer_frame): - mixer_frame.fs.sb = TestStateBlock( + mixer_frame.fs.sb = StateBlockForTesting( mixer_frame.fs.time, parameters=mixer_frame.fs.pp ) @@ -689,7 +689,7 @@ def test_get_stream_table_contents(self): m = ConcreteModel() m.fs = FlowsheetBlock(dynamic=False) m.fs.pp = PhysicalParameterTestBlock() - m.fs.sb = TestStateBlock(m.fs.time, parameters=m.fs.pp) + m.fs.sb = StateBlockForTesting(m.fs.time, parameters=m.fs.pp) m.fs.mix = Mixer(property_package=m.fs.pp) @@ -742,13 +742,12 @@ def test_get_stream_table_contents(self): pandas.testing.assert_frame_equal(stable, expected, rtol=1e-4, atol=1e-4) - @pytest.mark.initialization @pytest.mark.component def test_initialize(self): m = ConcreteModel() m.fs = FlowsheetBlock(dynamic=False) m.fs.pp = PhysicalParameterTestBlock() - m.fs.sb = TestStateBlock(m.fs.time, parameters=m.fs.pp) + m.fs.sb = StateBlockForTesting(m.fs.time, parameters=m.fs.pp) m.fs.mix = Mixer(property_package=m.fs.pp, mixed_state_block=m.fs.sb) diff --git a/idaes/models/unit_models/tests/test_mscontactor.py b/idaes/models/unit_models/tests/test_mscontactor.py index 0cdfd86d43..56f4effd5b 100644 --- a/idaes/models/unit_models/tests/test_mscontactor.py +++ b/idaes/models/unit_models/tests/test_mscontactor.py @@ -16,6 +16,7 @@ """ import pytest +import re from types import MethodType from pyomo.environ import ( @@ -430,8 +431,10 @@ def test_verify_inputs_too_few_streams(self): with pytest.raises( ConfigurationError, - match="MSContactor models must define at least two streams; received " - "\['stream1'\]", + match=re.escape( + "MSContactor models must define at least two streams; received " + "['stream1']" + ), ): m.fs.unit._verify_inputs() @@ -2280,8 +2283,10 @@ def build_reaction_block(*args, **kwargs): with pytest.raises( PropertyNotSupportedError, - match="Heterogeneous reaction package does not contain a list of " - "reactions \(reaction_idx\).", + match=re.escape( + "Heterogeneous reaction package does not contain a list of " + "reactions (reaction_idx)." + ), ): model.fs.unit._build_heterogeneous_reaction_blocks() diff --git a/idaes/models/unit_models/tests/test_separator.py b/idaes/models/unit_models/tests/test_separator.py index d1defdb133..13f9458448 100644 --- a/idaes/models/unit_models/tests/test_separator.py +++ b/idaes/models/unit_models/tests/test_separator.py @@ -77,7 +77,7 @@ ) from idaes.core.util.testing import ( PhysicalParameterTestBlock, - TestStateBlock, + StateBlockForTesting, initialization_tester, ) from idaes.core.solvers import get_solver @@ -279,7 +279,7 @@ def test_add_mixed_state_block_prop_pack_args(self, build): @pytest.mark.unit def test_get_mixed_state_block(self, build): - build.fs.sb = TestStateBlock(build.fs.time, parameters=build.fs.pp) + build.fs.sb = StateBlockForTesting(build.fs.time, parameters=build.fs.pp) build.fs.sep.config.mixed_state_block = build.fs.sb @@ -300,7 +300,7 @@ def test_get_mixed_state_block_none(self, build): @pytest.mark.unit def test_get_mixed_state_block_mismatch(self, build): - build.fs.sb = TestStateBlock(build.fs.time, parameters=build.fs.pp) + build.fs.sb = StateBlockForTesting(build.fs.time, parameters=build.fs.pp) # Change parameters arg to create mismatch build.fs.sb[0].config.parameters = None @@ -330,7 +330,7 @@ def m(self): return b def test_no_exception_scaling_calc_external_mixed_state(self, m): - m.fs.sb = TestStateBlock(m.fs.time, parameters=m.fs.pp) + m.fs.sb = StateBlockForTesting(m.fs.time, parameters=m.fs.pp) m.fs.sep1 = Separator(property_package=m.fs.pp, mixed_state_block=m.fs.sb) iscale.calculate_scaling_factors(m) diff --git a/idaes/models_extra/power_generation/costing/tests/test_CCS_capcost.py b/idaes/models_extra/power_generation/costing/tests/test_CCS_capcost.py index 194c939ba4..5a30cc4731 100644 --- a/idaes/models_extra/power_generation/costing/tests/test_CCS_capcost.py +++ b/idaes/models_extra/power_generation/costing/tests/test_CCS_capcost.py @@ -1494,5 +1494,3 @@ def test_ccs_units_costing(): TPC += pyo.value(block.total_plant_cost[ac]) assert pytest.approx(100.86, rel=1e-3) == TPC - - return m diff --git a/idaes/models_extra/power_generation/costing/tests/test_power_plant_capcost.py b/idaes/models_extra/power_generation/costing/tests/test_power_plant_capcost.py index 50caf6b4b7..2e587f5ba5 100644 --- a/idaes/models_extra/power_generation/costing/tests/test_power_plant_capcost.py +++ b/idaes/models_extra/power_generation/costing/tests/test_power_plant_capcost.py @@ -490,8 +490,6 @@ def test_PP_costing(): pytest.approx(pyo.value(m.fs.costing.total_TPC), abs=1e-1) == 996662 / 1e3 ) # 993753 / 1e3 - return m - @pytest.mark.component def test_PP_costing_CE_index_year(): @@ -967,8 +965,6 @@ def test_build_process_costs_emptymodel(): assert hasattr(m.fs.costing, "total_TPC") assert type(m.fs.costing.total_TPC) is pyo.ScalarVar assert hasattr(m.fs.costing, "total_TPC_eq") - print(type(m.fs.costing.total_TPC_eq)) - print(pyo.Constraint) assert type(m.fs.costing.total_TPC_eq) is ScalarConstraint @@ -1000,8 +996,6 @@ def test_build_process_costs_emptymodel_nonearguments(): assert hasattr(m.fs.costing, "total_TPC") assert type(m.fs.costing.total_TPC) is pyo.ScalarVar assert hasattr(m.fs.costing, "total_TPC_eq") - print(type(m.fs.costing.total_TPC_eq)) - print(pyo.Constraint) assert type(m.fs.costing.total_TPC_eq) is ScalarConstraint @@ -1942,8 +1936,6 @@ def test_power_plant_costing(): QGESSCostingData.display_equipment_costs(m.fs.costing) QGESSCostingData.display_flowsheet_cost(m.fs.costing) - return m - @pytest.mark.component def test_sCO2_costing(): @@ -2252,8 +2244,6 @@ def co2_cooler_UA_rule(b): # test bound check utility QGESSCostingData.check_sCO2_costing_bounds(m.fs.costing) - return m - @pytest.mark.component def test_ASU_costing(): @@ -2288,8 +2278,6 @@ def test_ASU_costing(): assert pytest.approx(pyo.value(m.fs.ASU.costing.bare_erected_cost), abs=1) == 3.4725 - return m - @pytest.mark.component def test_OM_costing(): diff --git a/idaes/models_extra/power_generation/properties/tests/test_flue_gas_integration.py b/idaes/models_extra/power_generation/properties/tests/test_flue_gas_integration.py index 850522226e..acdcd0e856 100644 --- a/idaes/models_extra/power_generation/properties/tests/test_flue_gas_integration.py +++ b/idaes/models_extra/power_generation/properties/tests/test_flue_gas_integration.py @@ -166,7 +166,6 @@ def test_steps(self, model): self.check_temperatures(model, times, sco2_exp, air_exp, wall_exp) - @pytest.mark.static def check_temperatures( self, model, diff --git a/idaes/models_extra/power_generation/unit_models/helm/tests/test_turbine_multistage.py b/idaes/models_extra/power_generation/unit_models/helm/tests/test_turbine_multistage.py index 86022be58e..9fc9c29342 100644 --- a/idaes/models_extra/power_generation/unit_models/helm/tests/test_turbine_multistage.py +++ b/idaes/models_extra/power_generation/unit_models/helm/tests/test_turbine_multistage.py @@ -160,8 +160,6 @@ def reheat_T_rule(b, t): for c in eq_cons: assert abs(c.body() - c.lower) < 1e-4 - return m - @pytest.mark.skipif(not helmholtz_available(), reason="General Helmholtz not available") @pytest.mark.component @@ -270,5 +268,3 @@ def reheat_T_rule(b, t): assert abs(c.body() - c.lower) < 1e-4 assert pyo.value(m.fs.turb.inlet_split.inlet.flow_mol[0]) == pytest.approx(26000) - - return m diff --git a/idaes/models_extra/power_generation/unit_models/helm/tests/test_turbine_outlet.py b/idaes/models_extra/power_generation/unit_models/helm/tests/test_turbine_outlet.py index 8a35621897..f17b885c80 100644 --- a/idaes/models_extra/power_generation/unit_models/helm/tests/test_turbine_outlet.py +++ b/idaes/models_extra/power_generation/unit_models/helm/tests/test_turbine_outlet.py @@ -16,6 +16,7 @@ Author: John Eslick """ import pytest +import re from pyomo.environ import ConcreteModel, TransformationFactory, units as pyunits @@ -42,7 +43,6 @@ def build_turbine(): return m -@pytest.mark.skipif(not helmholtz_available(), reason="General Helmholtz not available") @pytest.fixture() def build_turbine_dyn(): m = ConcreteModel()