diff --git a/flow360/component/results/base_results.py b/flow360/component/results/base_results.py index abbb7cf2b..0eb9eafa9 100644 --- a/flow360/component/results/base_results.py +++ b/flow360/component/results/base_results.py @@ -8,6 +8,7 @@ import tempfile import time import uuid +from collections import defaultdict from itertools import chain, product from typing import Callable, Dict, List, Optional @@ -19,8 +20,11 @@ CloudFileNotFoundError, get_local_filename_and_create_folders, ) +from flow360.component.simulation.entity_info import GeometryEntityInfo +from flow360.component.simulation.models.surface_models import BoundaryBase from flow360.component.simulation.simulation_params import SimulationParams from flow360.component.v1.flow360_params import Flow360Params +from flow360.exceptions import Flow360ValueError from flow360.log import log # pylint: disable=consider-using-with @@ -555,6 +559,15 @@ class PerEntityResultCSVModel(ResultCSVModel): _x_columns: List[str] = [] _filter_when_zero = [] _entities: List[str] = None + _entity_groups: dict = pd.PrivateAttr() + + @classmethod + # pylint: disable=arguments-differ + def from_dict(cls, data: dict, group: dict): + obj = super().from_dict(data) + # pylint: disable=protected-access + obj._entity_groups = group + return obj @property def values(self): @@ -574,7 +587,7 @@ def values(self): @property def entities(self): """ - Returns list of entities (boundary names) available for this result + Returns list of entity names available for this result """ if self._entities is None: pattern = re.compile(rf"(.*)_({'|'.join(self._variables)})$") @@ -638,3 +651,63 @@ def _filtered_sum(self): regex_pattern = rf"^(?!total).*{variable}$" df[new_col_name] = list(df.filter(regex=regex_pattern).sum(axis=1)) self.update(df) + + def _create_forces_group(self, entity_groups: Dict[str, List[str]]) -> PerEntityResultCSVModel: + """ + Create new CSV model for the given entity groups. + """ + raw_values = {} + for x_column in self._x_columns: + raw_values[x_column] = np.array(self.raw_values[x_column]) + for name, entities in entity_groups.items(): + self.filter(include=entities) + for variable in self._variables: + if f"{name}_{variable}" not in raw_values: + raw_values[f"{name}_{variable}"] = np.array(self.values[f"total{variable}"]) + continue + raw_values[f"{name}_{variable}"] += np.array(self.values[f"total{variable}"]) + + raw_values = {key: val.tolist() for key, val in raw_values.items()} + entity_groups = {key: sorted(val) for key, val in entity_groups.items()} + + return self.from_dict(data=raw_values, group=entity_groups) + + def by_boundary_condition(self, params: SimulationParams) -> PerEntityResultCSVModel: + """ + Group entities by boundary condition's name and create a + SurfaceForcesGroupResultCSVModel. + Forces from different boundaries but with the same type and name will be summed together. + """ + + entity_groups = defaultdict(list) + for model in params.models: + if not isinstance(model, BoundaryBase): + continue + boundary_name = model.name if model.name is not None else model.type + entity_groups[boundary_name].extend( + [entity.name for entity in model.entities.stored_entities] + ) + return self._create_forces_group(entity_groups=entity_groups) + + def by_body_group(self, params: SimulationParams) -> PerEntityResultCSVModel: + """ + Group entities by body group's name and create a + SurfaceForcesGroupResultCSVModel + """ + if not isinstance( + params.private_attribute_asset_cache.project_entity_info, GeometryEntityInfo + ): + raise Flow360ValueError( + "Group surface forces by body group is only supported for case starting from geometry." + ) + entity_info = params.private_attribute_asset_cache.project_entity_info + if ( + not hasattr(entity_info, "body_attribute_names") + or "groupByBodyId" not in entity_info.face_attribute_names + ): + raise Flow360ValueError( + "The geometry in this case does not contain the necessary body group information, " + "please upgrade the project to the latest version and re-run the case." + ) + entity_groups = entity_info.get_body_group_to_face_group_name_map() + return self._create_forces_group(entity_groups=entity_groups) diff --git a/flow360/component/results/case_results.py b/flow360/component/results/case_results.py index fc86b9f14..8e8bec2cb 100644 --- a/flow360/component/results/case_results.py +++ b/flow360/component/results/case_results.py @@ -3,7 +3,6 @@ from __future__ import annotations import re -from collections import defaultdict from enum import Enum from typing import Callable, Dict, List, Optional @@ -20,8 +19,6 @@ ResultTarGZModel, ) from flow360.component.simulation.conversion import unit_converter as unit_converter_v2 -from flow360.component.simulation.entity_info import GeometryEntityInfo -from flow360.component.simulation.models.surface_models import BoundaryBase from flow360.component.simulation.simulation_params import SimulationParams from flow360.component.simulation.unit_system import ( Flow360UnitSystem, @@ -221,82 +218,12 @@ def _preprocess(self, filter_physical_steps_only: bool = True, include_time: boo def reload_data(self, filter_physical_steps_only: bool = True, include_time: bool = True): return super().reload_data(filter_physical_steps_only, include_time) - def _create_surface_forces_group( - self, entity_groups: Dict[str, List[str]] - ) -> SurfaceForcesGroupResultCSVModel: - """ - Create the SurfaceForcesGroupResultCSVModel for the given entity groups. - """ - raw_values = {} - for x_column in self._x_columns: - raw_values[x_column] = np.array(self.raw_values[x_column]) - for name, entities in entity_groups.items(): - self.filter(include=entities) - for variable in self._variables: - if f"{name}_{variable}" not in raw_values: - raw_values[f"{name}_{variable}"] = np.array(self.values[f"total{variable}"]) - continue - raw_values[f"{name}_{variable}"] += np.array(self.values[f"total{variable}"]) - - raw_values = {key: val.tolist() for key, val in raw_values.items()} - entity_groups = {key: sorted(val) for key, val in entity_groups.items()} - - return SurfaceForcesGroupResultCSVModel.from_dict(data=raw_values, group=entity_groups) - - def by_boundary_condition(self, params: SimulationParams) -> SurfaceForcesGroupResultCSVModel: - """ - Group entities by boundary condition's name and create a - SurfaceForcesGroupResultCSVModel. - Forces from different boundaries but with the same type and name will be summed together. - """ - - entity_groups = defaultdict(list) - for model in params.models: - if not isinstance(model, BoundaryBase): - continue - boundary_name = model.name if model.name is not None else model.type - entity_groups[boundary_name].extend( - [entity.name for entity in model.entities.stored_entities] - ) - return self._create_surface_forces_group(entity_groups=entity_groups) - - def by_body_group(self, params: SimulationParams) -> SurfaceForcesGroupResultCSVModel: - """ - Group entities by body group's name and create a - SurfaceForcesGroupResultCSVModel - """ - if not isinstance( - params.private_attribute_asset_cache.project_entity_info, GeometryEntityInfo - ): - raise Flow360ValueError( - "Group surface forces by body group is only supported for case starting from geometry." - ) - entity_info = params.private_attribute_asset_cache.project_entity_info - if ( - not hasattr(entity_info, "body_attribute_names") - or "groupByBodyId" not in entity_info.face_attribute_names - ): - raise Flow360ValueError( - "The geometry in this case does not contain the necessary body group information, " - "please upgrade the project to the latest version and re-run the case." - ) - entity_groups = entity_info.get_body_group_to_face_group_name_map() - return self._create_surface_forces_group(entity_groups=entity_groups) - class SurfaceForcesGroupResultCSVModel(SurfaceForcesResultCSVModel): """SurfaceForcesGroupResultCSVModel""" remote_file_name: str = pd.Field(None, frozen=True) # Unused dummy field - _entity_groups: dict = pd.PrivateAttr() - - @classmethod - # pylint: disable=arguments-differ - def from_dict(cls, data: dict, group: dict): - obj = super().from_dict(data) - # pylint: disable=protected-access - obj._entity_groups = group - return obj + class LegacyForceDistributionResultCSVModel(ResultCSVModel): diff --git a/tests/data/case-c6f1b159-3dab-4729-b769-3ca9999b2b87/results/X_slicing_forceDistribution.csv b/tests/data/case-c6f1b159-3dab-4729-b769-3ca9999b2b87/results/X_slicing_forceDistribution.csv new file mode 100755 index 000000000..6417ad148 --- /dev/null +++ b/tests/data/case-c6f1b159-3dab-4729-b769-3ca9999b2b87/results/X_slicing_forceDistribution.csv @@ -0,0 +1,302 @@ +X, fluid/Box1_Cumulative_CD_Curve, fluid/body00002_face00001_Cumulative_CD_Curve, fluid/body00002_face00002_Cumulative_CD_Curve, fluid/body00002_face00003_Cumulative_CD_Curve, fluid/body00002_face00004_Cumulative_CD_Curve, fluid/body00002_face00005_Cumulative_CD_Curve, fluid/body00002_face00006_Cumulative_CD_Curve, fluid/body00003_face00001_Cumulative_CD_Curve, fluid/body00003_face00002_Cumulative_CD_Curve, fluid/body00003_face00003_Cumulative_CD_Curve, fluid/body00003_face00004_Cumulative_CD_Curve, fluid/body00003_face00005_Cumulative_CD_Curve, fluid/body00003_face00006_Cumulative_CD_Curve, +0.0166666666666645, 8.89542999107441, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.0333333333333312, 8.81393125922366, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.0499999999999979, 8.75319447396596, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.0666666666666646, 8.73752496974485, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.0833333333333313, 8.73931624896619, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.099999999999998, 8.73931711358284, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.116666666666665, 8.73931797330539, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.133333333333331, 8.7393188279462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.149999999999998, 8.73931966120477, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.166666666666665, 8.73932044219758, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.183333333333332, 8.73932114524476, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.199999999999998, 8.7393217615632, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.216666666666665, 8.73932236883041, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.233333333333332, 8.73932296344097, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.249999999999998, 8.73932354246861, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.266666666666665, 8.73932410343932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.283333333333332, 8.73932465213381, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.299999999999999, 8.73932519687362, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.316666666666665, 8.73932573271084, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.333333333333332, 8.73932625033346, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.349999999999999, 8.73932675034342, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.366666666666665, 8.73932723884147, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.383333333333332, 8.73932771066329, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.399999999999999, 8.73932817152078, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.416666666666665, 8.73932863076236, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.433333333333332, 8.73932908876599, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.449999999999999, 8.73932953928536, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.466666666666666, 8.7393299766633, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.483333333333332, 8.73933040553283, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.499999999999999, 8.73933082599571, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.516666666666666, 8.73933123544357, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.533333333333332, 8.73933164657705, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.549999999999999, 8.73933206025739, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.566666666666666, 8.73933247640751, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.583333333333333, 8.73933288175634, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.599999999999999, 8.73933327618937, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.616666666666666, 8.73933366151429, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.633333333333333, 8.73933403903824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.649999999999999, 8.73933441906462, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.666666666666666, 8.73933480438384, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.683333333333333, 8.73933519562897, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.7, 8.73933558771402, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.716666666666666, 8.7393359707185, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.733333333333333, 8.73933634315627, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.75, 8.73933670537666, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.766666666666666, 8.73933707012069, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.783333333333333, 8.73933744307581, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.8, 8.73933781982533, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.816666666666666, 8.73933819995049, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.833333333333333, 8.73933860839932, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.85, 8.7393390277436, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.866666666666667, 8.73933944422824, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.883333333333333, 8.73933985750573, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.9, 8.73934027031442, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.916666666666667, 8.73934068498335, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.933333333333333, 8.74001404015959, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.95, 8.75449465239309, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.966666666666667, 8.7871352928641, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.983333333333334, 8.83032014571155, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.01666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.03333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.05, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.06666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.08333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.1, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.11666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.13333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.15, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.16666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.18333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.2, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.21666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.23333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.25, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.26666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.28333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.3, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.31666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.33333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.35, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.36666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.38333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.4, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.41666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.43333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.45, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.46666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.48333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.5, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.51666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.53333333333333, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.55, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.56666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.58333333333334, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.6, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.61666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.63333333333334, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.65, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.66666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.68333333333334, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.7, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.71666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.73333333333334, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.75, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.76666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.78333333333334, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.8, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.81666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.83333333333334, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.85, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.86666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.88333333333334, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.9, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.91666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.93333333333334, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.95, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.96666666666667, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +1.98333333333334, 8.81690860112678, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +2, 8.81690860112678, 0.0643869209260275, 0, 6.98934395566466e-21, 5.80311686991917e-21, 5.43035430829232e-21, 5.8885049162412e-21, 0, 0, 0, 0, 0, 0, +2.01666666666667, 8.81690860112678, 0.0643869209260275, 0, 4.31996125089448e-08, 3.59840891094201e-08, 3.39553331407232e-08, 3.68103906662935e-08, 0, 0, 0, 0, 0, 0, +2.03333333333334, 8.81690860112678, 0.0643869209260275, 0, 8.66148102837664e-08, 7.2730005930497e-08, 6.78961733070745e-08, 7.35965665392353e-08, 0, 0, 0, 0, 0, 0, +2.05, 8.81690860112678, 0.0643869209260275, 0, 1.37162067206927e-07, 1.16810990840672e-07, 1.09880731020201e-07, 1.20324622487944e-07, 0, 0, 0, 0, 0, 0, +2.06666666666667, 8.81690860112678, 0.0643869209260275, 0, 2.03618445721748e-07, 1.75060986296708e-07, 1.73795414060834e-07, 1.89530485242187e-07, 0, 0, 0, 0, 0, 0, +2.08333333333334, 8.81690860112678, 0.0643869209260275, 0, 2.84331957986251e-07, 2.46079150791986e-07, 2.53646728425045e-07, 2.71465066877473e-07, 0, 0, 0, 0, 0, 0, +2.1, 8.81690860112678, 0.0643869209260275, 0, 3.65665044550251e-07, 3.17660138928305e-07, 3.33985672950523e-07, 3.53016793979591e-07, 0, 0, 0, 0, 0, 0, +2.11666666666667, 8.81690860112678, 0.0643869209260275, 0, 4.46336662287441e-07, 3.88740532664045e-07, 4.14124566556816e-07, 4.33989894345764e-07, 0, 0, 0, 0, 0, 0, +2.13333333333334, 8.81690860112678, 0.0643869209260275, 0, 5.26765614148719e-07, 4.59667963473166e-07, 4.94212104868733e-07, 5.14950096638308e-07, 0, 0, 0, 0, 0, 0, +2.15, 8.81690860112678, 0.0643869209260275, 0, 6.07890977654049e-07, 5.31234096844519e-07, 5.74052967423951e-07, 5.956332577716e-07, 0, 0, 0, 0, 0, 0, +2.16666666666667, 8.81690860112678, 0.0643869209260275, 0, 6.88907873641373e-07, 6.02784884752173e-07, 6.5290502095309e-07, 6.75371358814482e-07, 0, 0, 0, 0, 0, 0, +2.18333333333334, 8.81690860112678, 0.0643869209260275, 0, 7.67318945082389e-07, 6.71893667536363e-07, 7.27472848214934e-07, 7.52555904939663e-07, 0, 0, 0, 0, 0, 0, +2.2, 8.81690860112678, 0.0643869209260275, 0, 8.39904557434544e-07, 7.36009247991673e-07, 7.95901600106955e-07, 8.2547687874085e-07, 0, 0, 0, 0, 0, 0, +2.21666666666667, 8.81690860112678, 0.0643869209260275, 0, 9.11218140753499e-07, 7.99122237025776e-07, 8.640546718905e-07, 8.98223377589988e-07, 0, 0, 0, 0, 0, 0, +2.23333333333334, 8.81690860112678, 0.0643869209260275, 0, 9.81296520587915e-07, 8.61065925591415e-07, 9.31485256180308e-07, 9.70146079384464e-07, 0, 0, 0, 0, 0, 0, +2.25, 8.81690860112678, 0.0643869209260275, 0, 1.0492523190033e-06, 9.21114048993216e-07, 9.97442437797268e-07, 1.04024997000329e-06, 0, 0, 0, 0, 0, 0, +2.26666666666667, 8.81690860112678, 0.0643869209260275, 0, 1.11573428119291e-06, 9.80250670761381e-07, 1.06218200719714e-06, 1.10855509593381e-06, 0, 0, 0, 0, 0, 0, +2.28333333333334, 8.81690860112678, 0.0643869209260275, 0, 1.182662601281e-06, 1.04023312972158e-06, 1.12756967704144e-06, 1.17697161440215e-06, 0, 0, 0, 0, 0, 0, +2.3, 8.81690860112678, 0.0643869209260275, 0, 1.24997504659847e-06, 1.10086868461271e-06, 1.19373179649092e-06, 1.24618335777326e-06, 0, 0, 0, 0, 0, 0, +2.31666666666667, 8.81690860112678, 0.0643869209260275, 0, 1.31719310412786e-06, 1.16184928289317e-06, 1.26060140420659e-06, 1.3155983737759e-06, 0, 0, 0, 0, 0, 0, +2.33333333333334, 8.81690860112678, 0.0643869209260275, 0, 1.38281802710092e-06, 1.22176751536239e-06, 1.32654893169961e-06, 1.38380273226579e-06, 0, 0, 0, 0, 0, 0, +2.35, 8.81690860112678, 0.0643869209260275, 0, 1.44695805079057e-06, 1.28040930673501e-06, 1.39111506068348e-06, 1.45043183193678e-06, 0, 0, 0, 0, 0, 0, +2.36666666666667, 8.81690860112678, 0.0643869209260275, 0, 1.50965608422023e-06, 1.3378104203303e-06, 1.45435389186768e-06, 1.51557304331791e-06, 0, 0, 0, 0, 0, 0, +2.38333333333334, 8.81690860112678, 0.0643869209260275, 0, 1.57054722924292e-06, 1.39394522829265e-06, 1.51590734831298e-06, 1.57917982279561e-06, 0, 0, 0, 0, 0, 0, +2.4, 8.81690860112678, 0.0643869209260275, 0, 1.63165817724268e-06, 1.45075902626327e-06, 1.57750926879406e-06, 1.64280538536235e-06, 0, 0, 0, 0, 0, 0, +2.41666666666667, 8.81690860112678, 0.0643869209260275, 0, 1.69381023123784e-06, 1.50864185277098e-06, 1.64008251976665e-06, 1.70758534159303e-06, 0, 0, 0, 0, 0, 0, +2.43333333333334, 8.81690860112678, 0.0643869209260275, 0, 1.75689035681833e-06, 1.56752819095624e-06, 1.70345927295588e-06, 1.77339592906619e-06, 0, 0, 0, 0, 0, 0, +2.45, 8.81690860112678, 0.0643869209260275, 0, 1.82000092249829e-06, 1.62636998006451e-06, 1.76663978529933e-06, 1.83927696523243e-06, 0, 0, 0, 0, 0, 0, +2.46666666666667, 8.81690860112678, 0.0643869209260275, 0, 1.88202038584163e-06, 1.68415671814376e-06, 1.82876667289632e-06, 1.90399101783484e-06, 0, 0, 0, 0, 0, 0, +2.48333333333334, 8.81690860112678, 0.0643869209260275, 0, 1.94291442809851e-06, 1.74085677233832e-06, 1.88983472329147e-06, 1.96746540165916e-06, 0, 0, 0, 0, 0, 0, +2.5, 8.81690860112678, 0.0643869209260275, 0, 2.00262264206213e-06, 1.79642218723436e-06, 1.94968228909711e-06, 2.02982579256636e-06, 0, 0, 0, 0, 0, 0, +2.51666666666667, 8.81690860112678, 0.0643869209260275, 0, 2.06217375094303e-06, 1.8518631981609e-06, 2.00930148831441e-06, 2.09218561751552e-06, 0, 0, 0, 0, 0, 0, +2.53333333333334, 8.81690860112678, 0.0643869209260275, 0, 2.12285861512008e-06, 1.90835477326142e-06, 2.06997716538839e-06, 2.15562520744098e-06, 0, 0, 0, 0, 0, 0, +2.55, 8.81690860112678, 0.0643869209260275, 0, 2.18462924444436e-06, 1.96582157963877e-06, 2.1317261322658e-06, 2.22021531028492e-06, 0, 0, 0, 0, 0, 0, +2.56666666666667, 8.81690860112678, 0.0643869209260275, 0, 2.24740310454199e-06, 2.02412395010769e-06, 2.19431482034523e-06, 2.28560628009402e-06, 0, 0, 0, 0, 0, 0, +2.58333333333334, 8.81690860112678, 0.0643869209260275, 0, 2.30960433117752e-06, 2.0819248380009e-06, 2.25636294760459e-06, 2.35022419898533e-06, 0, 0, 0, 0, 0, 0, +2.6, 8.81690860112678, 0.0643869209260275, 0, 2.37056269037186e-06, 2.13874090928809e-06, 2.31742536491649e-06, 2.41362438399798e-06, 0, 0, 0, 0, 0, 0, +2.61666666666667, 8.81690860112678, 0.0643869209260275, 0, 2.43030520252779e-06, 2.19448862466306e-06, 2.37730463626713e-06, 2.47547096199825e-06, 0, 0, 0, 0, 0, 0, +2.63333333333334, 8.81690860112678, 0.0643869209260275, 0, 2.48955337053124e-06, 2.24977226177501e-06, 2.4367443993848e-06, 2.53692195726727e-06, 0, 0, 0, 0, 0, 0, +2.65, 8.81690860112678, 0.0643869209260275, 0, 2.55035263127077e-06, 2.30619962976021e-06, 2.49740522825412e-06, 2.59962216682893e-06, 0, 0, 0, 0, 0, 0, +2.66666666666667, 8.81690860112678, 0.0643869209260275, 0, 2.61257901818195e-06, 2.36383952875581e-06, 2.55927649671192e-06, 2.66359041090668e-06, 0, 0, 0, 0, 0, 0, +2.68333333333334, 8.81690860112678, 0.0643869209260275, 0, 2.67621901617892e-06, 2.42271208775692e-06, 2.62235217620301e-06, 2.72870059966757e-06, 0, 0, 0, 0, 0, 0, +2.7, 8.81690860112678, 0.0643869209260275, 0, 2.74061354043163e-06, 2.48247121886345e-06, 2.68580121508371e-06, 2.79375091972588e-06, 0, 0, 0, 0, 0, 0, +2.71666666666667, 8.81690860112678, 0.0643869209260275, 0, 2.80390193796468e-06, 2.54187845667722e-06, 2.74833351203159e-06, 2.85739822971857e-06, 0, 0, 0, 0, 0, 0, +2.73333333333334, 8.81690860112678, 0.0643869209260275, 0, 2.86587374227577e-06, 2.60089929743115e-06, 2.80965135193629e-06, 2.91951898007366e-06, 0, 0, 0, 0, 0, 0, +2.75, 8.81690860112678, 0.0643869209260275, 0, 2.9263608115342e-06, 2.65929495210071e-06, 2.87060393129293e-06, 2.98090516914998e-06, 0, 0, 0, 0, 0, 0, +2.76666666666667, 8.81690860112678, 0.0643869209260275, 0, 2.98766908718647e-06, 2.71911287519752e-06, 2.93277389778981e-06, 3.0434893567088e-06, 0, 0, 0, 0, 0, 0, +2.78333333333334, 8.81690860112678, 0.0643869209260275, 0, 3.051497905439e-06, 2.78037911564943e-06, 2.99628126363106e-06, 3.10747921702278e-06, 0, 0, 0, 0, 0, 0, +2.8, 8.81690860112678, 0.0643869209260275, 0, 3.11742634486509e-06, 2.84202642688913e-06, 3.06043369925744e-06, 3.17206744446007e-06, 0, 0, 0, 0, 0, 0, +2.81666666666667, 8.81690860112678, 0.0643869209260275, 0, 3.1852903819337e-06, 2.90429742189855e-06, 3.12480737187115e-06, 3.23696932846758e-06, 0, 0, 0, 0, 0, 0, +2.83333333333334, 8.81690860112678, 0.0643869209260275, 0, 3.25859824647252e-06, 2.97320849948455e-06, 3.19461039233521e-06, 3.30803301813701e-06, 0, 0, 0, 0, 0, 0, +2.85, 8.81690860112678, 0.0643869209260275, 0, 3.33175288381829e-06, 3.04638953595661e-06, 3.26738555716801e-06, 3.38231900419809e-06, 0, 0, 0, 0, 0, 0, +2.86666666666667, 8.81690860112678, 0.0643869209260275, 0, 3.40420947692068e-06, 3.12014746146633e-06, 3.34066074243083e-06, 3.4568818848519e-06, 0, 0, 0, 0, 0, 0, +2.88333333333334, 8.81690860112678, 0.0643869209260275, 0, 3.47546498591681e-06, 3.19376864934722e-06, 3.4142941256264e-06, 3.53170858180178e-06, 0, 0, 0, 0, 0, 0, +2.9, 8.81690860112678, 0.0643869209260275, 0, 3.54669610945788e-06, 3.26745031633491e-06, 3.48793114757727e-06, 3.60656325764692e-06, 0, 0, 0, 0, 0, 0, +2.91666666666667, 8.81690860112678, 0.0643869209260275, 0, 3.61857188001749e-06, 3.34131670737435e-06, 3.56184404955837e-06, 3.6816343802536e-06, 0, 0, 0, 0, 0, 0, +2.93333333333334, 8.81690860112678, 0.0643869209260275, 0, 3.68993428136405e-06, 3.41430118863148e-06, 3.63584531772082e-06, 3.75668922995934e-06, 0, 0, 0, 0, 0, 0, +2.95000000000001, 8.81690860112678, 0.0643869209260275, 0, 3.74830055023484e-06, 3.47298406162115e-06, 3.69777837703931e-06, 3.81926797820282e-06, 0, 0, 0, 0, 0, 0, +2.96666666666667, 8.81690860112678, 0.0643869209260275, 0, 3.79406695739046e-06, 3.51440198798603e-06, 3.73882793176017e-06, 3.86098307844765e-06, 0, 0, 0, 0, 0, 0, +2.98333333333334, 8.81690860112678, 0.0643869209260275, 0, 3.83091799547497e-06, 3.55027681604451e-06, 3.77016730998607e-06, 3.89308342250821e-06, 0, 0, 0, 0, 0, 0, +3.00000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.01666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.03333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.05000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.06666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.08333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.10000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.11666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.13333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.15000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.16666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.18333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.20000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.21666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.23333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.25000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.26666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.28333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.30000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.31666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.33333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.35000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.36666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.38333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.40000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.41666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.43333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.45000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.46666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.48333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.50000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.51666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.53333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.55000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.56666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.58333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.60000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.61666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.63333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.65000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.66666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.68333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.70000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.71666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.73333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.75000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.76666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.78333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.80000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.81666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.83333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.85000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.86666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.88333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.90000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.91666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.93333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.95000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.96666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +3.98333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0, 0, 0, 0, 0, 0, +4.00000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.54254643123505e-20, 1.66418702529044e-20, 1.36038120849539e-20, 1.40217379343066e-20, +4.01666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.58740452874843e-08, 3.8694685738833e-08, 3.18953766058091e-08, 3.28757279398036e-08, +4.03333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 7.24200669674796e-08, 7.80890154569e-08, 6.37705565039771e-08, 6.57637154087463e-08, +4.05000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.16520736345452e-07, 1.24988010814876e-07, 1.04087786076372e-07, 1.08783153548805e-07, +4.06666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.75807528006821e-07, 1.87231158229778e-07, 1.66249842482794e-07, 1.73585580767091e-07, +4.08333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.48929635230377e-07, 2.63042309109008e-07, 2.4316638555294e-07, 2.50691640720398e-07, +4.10000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.22870916285702e-07, 3.39458577672385e-07, 3.20237328317871e-07, 3.27608261107122e-07, +4.11666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.96263148473867e-07, 4.15378968703224e-07, 3.96962719298721e-07, 4.04133315734801e-07, +4.13333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 4.69582350292687e-07, 4.91181591639453e-07, 4.73691224212787e-07, 4.80675647736658e-07, +4.15000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 5.43752365779651e-07, 5.67705803413216e-07, 5.50728505890252e-07, 5.5726450159992e-07, +4.16666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 6.18392583120913e-07, 6.44533558712848e-07, 6.28157072010974e-07, 6.34026591878915e-07, +4.18333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 6.92094798897185e-07, 7.19577688553118e-07, 7.03178582803859e-07, 7.08757975057666e-07, +4.20000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 7.61918366885049e-07, 7.89870096482202e-07, 7.73624113715564e-07, 7.78729261565987e-07, +4.21666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 8.30737470266636e-07, 8.59129542776022e-07, 8.43876452598834e-07, 8.4844644997033e-07, +4.23333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 8.98537150622738e-07, 9.27268715135984e-07, 9.13638274067632e-07, 9.17773532447e-07, +4.25000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 9.64677554961141e-07, 9.93567720800578e-07, 9.82038163190014e-07, 9.85885966744929e-07, +4.26666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.03000580475669e-06, 1.05895733339138e-06, 1.0497012312702e-06, 1.05298768704728e-06, +4.28333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.09656271128471e-06, 1.12570851086478e-06, 1.11889426552936e-06, 1.1209851912748e-06, +4.30000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.16437347879809e-06, 1.1937952872573e-06, 1.18955061480117e-06, 1.19040880726821e-06, +4.31666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.23320467381609e-06, 1.2630471578568e-06, 1.26136868815195e-06, 1.26091836729989e-06, +4.33333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.30111062929811e-06, 1.33147489952758e-06, 1.33243975202669e-06, 1.33094370428053e-06, +4.35000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.36772657717235e-06, 1.39858699530547e-06, 1.40222468331506e-06, 1.39997738839871e-06, +4.36666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.43306717836479e-06, 1.46439537436522e-06, 1.47074901366223e-06, 1.46778357067959e-06, +4.38333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.49729588012652e-06, 1.5291157650517e-06, 1.53828819009863e-06, 1.53441297204744e-06, +4.40000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.56261533701616e-06, 1.595017000153e-06, 1.60673962017988e-06, 1.60161051509374e-06, +4.41666666666667, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.62927498075299e-06, 1.66230862981836e-06, 1.67654032923668e-06, 1.67053989413623e-06, +4.43333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.69740909635519e-06, 1.73116460703586e-06, 1.7478580512945e-06, 1.74104157662719e-06, +4.45000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.76680719691857e-06, 1.80115779550792e-06, 1.82026289331961e-06, 1.81250539351341e-06, +4.46666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.83540405100205e-06, 1.87024083566683e-06, 1.89174971739121e-06, 1.88343990972828e-06, +4.48333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.90298656528647e-06, 1.93826472835978e-06, 1.96223732890456e-06, 1.95329631609124e-06, +4.50000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 1.96954801737723e-06, 2.00521109021157e-06, 2.03210024245574e-06, 2.02210223973158e-06, +4.51666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.0370667721631e-06, 2.07322708321141e-06, 2.10287332603039e-06, 2.09147298257173e-06, +4.53333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.10599955043063e-06, 2.14265807037853e-06, 2.17496646092213e-06, 2.16262405684402e-06, +4.55000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.17616780968228e-06, 2.21336275480086e-06, 2.24835741488023e-06, 2.23501720069803e-06, +4.56666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.24760514596001e-06, 2.28542386231324e-06, 2.32335230707268e-06, 2.30864033007532e-06, +4.58333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.319525974442e-06, 2.35804781306899e-06, 2.39836744928667e-06, 2.3833030074054e-06, +4.60000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.39085722568613e-06, 2.43011289577381e-06, 2.47335140365944e-06, 2.45755490539378e-06, +4.61666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.46132918050691e-06, 2.50129009254321e-06, 2.54811735172935e-06, 2.53097789780145e-06, +4.63333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.53201147938613e-06, 2.57289154578114e-06, 2.62344723671475e-06, 2.60484376704808e-06, +4.65000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.60516451887362e-06, 2.6467580753587e-06, 2.70070759133727e-06, 2.68124150337721e-06, +4.66666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.67990682685579e-06, 2.72217680855012e-06, 2.77958053154112e-06, 2.75921363808411e-06, +4.68333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.7562608439936e-06, 2.79915951167346e-06, 2.8609064512065e-06, 2.83887830327312e-06, +4.70000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.83394023555846e-06, 2.87790402015227e-06, 2.94335130103013e-06, 2.91990839521432e-06, +4.71666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.91183462240732e-06, 2.95724588863972e-06, 3.02529432721953e-06, 3.0006640750362e-06, +4.73333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 2.98959963693226e-06, 3.03687185019376e-06, 3.10628335256371e-06, 3.08149897449262e-06, +4.75000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.06687247593574e-06, 3.11671251672567e-06, 3.18841110792911e-06, 3.16268743855758e-06, +4.76666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.14626801957741e-06, 3.19890553288726e-06, 3.27262562745104e-06, 3.2458168277236e-06, +4.78333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.22831714138085e-06, 3.28285504083482e-06, 3.35876368187234e-06, 3.33081151259396e-06, +4.80000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.31188517113476e-06, 3.36727674885007e-06, 3.4464540987703e-06, 3.41693519064956e-06, +4.81666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.39713678089843e-06, 3.45253838446408e-06, 3.53470940269672e-06, 3.50344927775529e-06, +4.83333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.49372052407459e-06, 3.54941686817412e-06, 3.63261863078827e-06, 3.59913656098759e-06, +4.85000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.59753603224973e-06, 3.65623340320572e-06, 3.73784919145621e-06, 3.7034573209282e-06, +4.86666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.70352139585234e-06, 3.76660319621231e-06, 3.84839528457757e-06, 3.81250140542888e-06, +4.88333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.80998285105526e-06, 3.87708626492289e-06, 3.9620867133395e-06, 3.92303395194096e-06, +4.90000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 3.91739935955613e-06, 3.98764381367402e-06, 4.07619957828208e-06, 4.03376471212105e-06, +4.91666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 4.02552436453451e-06, 4.09852677590496e-06, 4.19062664448066e-06, 4.14493217950075e-06, +4.93333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 4.13231869228547e-06, 4.20784862923302e-06, 4.30508485090134e-06, 4.25541215998151e-06, +4.95000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 4.21464191554058e-06, 4.29209572157521e-06, 4.39758279121561e-06, 4.33960185650939e-06, +4.96666666666668, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 4.26925096297872e-06, 4.34561838002537e-06, 4.4514457324038e-06, 4.38655722051127e-06, +4.98333333333334, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 0, 4.30903538375957e-06, 4.38906765318447e-06, 4.48655283044443e-06, 4.41950975028159e-06, +5.00000000000001, 8.81690860112678, 0.0643869209260275, 0.247699331712745, 3.86652592136277e-06, 3.58621824791558e-06, 3.80149398669466e-06, 3.92516855338615e-06, 0.0272290162056477, 1.66089342858848, 4.34657600579734e-06, 4.43260750954382e-06, 4.52158645098513e-06, 4.45248230196996e-06, + diff --git a/tests/data/case-c6f1b159-3dab-4729-b769-3ca9999b2b87/results/Y_slicing_forceDistribution.csv b/tests/data/case-c6f1b159-3dab-4729-b769-3ca9999b2b87/results/Y_slicing_forceDistribution.csv new file mode 100755 index 000000000..85d74dcd5 --- /dev/null +++ b/tests/data/case-c6f1b159-3dab-4729-b769-3ca9999b2b87/results/Y_slicing_forceDistribution.csv @@ -0,0 +1,302 @@ +Y, stride, fluid/Box1_CFx_per_span, fluid/Box1_CFz_per_span, fluid/Box1_CMy_per_span, fluid/body00002_face00001_CFx_per_span, fluid/body00002_face00001_CFz_per_span, fluid/body00002_face00001_CMy_per_span, fluid/body00002_face00002_CFx_per_span, fluid/body00002_face00002_CFz_per_span, fluid/body00002_face00002_CMy_per_span, fluid/body00002_face00003_CFx_per_span, fluid/body00002_face00003_CFz_per_span, fluid/body00002_face00003_CMy_per_span, fluid/body00002_face00004_CFx_per_span, fluid/body00002_face00004_CFz_per_span, fluid/body00002_face00004_CMy_per_span, fluid/body00002_face00005_CFx_per_span, fluid/body00002_face00005_CFz_per_span, fluid/body00002_face00005_CMy_per_span, fluid/body00002_face00006_CFx_per_span, fluid/body00002_face00006_CFz_per_span, fluid/body00002_face00006_CMy_per_span, fluid/body00003_face00001_CFx_per_span, fluid/body00003_face00001_CFz_per_span, fluid/body00003_face00001_CMy_per_span, fluid/body00003_face00002_CFx_per_span, fluid/body00003_face00002_CFz_per_span, fluid/body00003_face00002_CMy_per_span, fluid/body00003_face00003_CFx_per_span, fluid/body00003_face00003_CFz_per_span, fluid/body00003_face00003_CMy_per_span, fluid/body00003_face00004_CFx_per_span, fluid/body00003_face00004_CFz_per_span, fluid/body00003_face00004_CMy_per_span, fluid/body00003_face00005_CFx_per_span, fluid/body00003_face00005_CFz_per_span, fluid/body00003_face00005_CMy_per_span, fluid/body00003_face00006_CFx_per_span, fluid/body00003_face00006_CFz_per_span, fluid/body00003_face00006_CMy_per_span, +-0.0983333333333356, 0.00333333333333335, 0, 0, 0, 1.32253576927801, 5.87665054238216e-08, 0.698136606394136, 1.28302317874452, 1.07636344398579e-07, 0.648700676849618, 0.00115995777640882, -5.60335830950036e-06, 0.000586390357979242, 0, 0, 0, 3.00607790324069e-06, -0.12005605491903, 0.442064910835475, 2.91645637966457e-06, 0.0766805884916584, -0.376220784916535, 0.960240437366493, 1.89548734937312e-07, 0.456837456457971, 1.71990111687479, 9.1483717213154e-08, 0.90271332914227, 0.00130397280173919, -1.37412771392907e-06, 0.000659696802747295, 0, 0, 0, 3.29808358342303e-06, 0.172442172040064, -0.671976644038315, 3.0933329629424e-06, -0.107812459463244, 0.404303863526538, +-0.0950000000000022, 0.00333333333333334, 0, 0, 0, 1.31964973746791, 6.12102053932008e-08, 0.695676535055044, 1.27789858856181, 1.07874724120958e-07, 0.646410896965415, 0, 0, 0, 0, 0, 0, 2.99071298968238e-06, -0.120219848251499, 0.446502323582008, 2.90929938781496e-06, 0.0766715927465618, -0.379846511157986, 0.958250342712357, 1.87215781340688e-07, 0.456407442266334, 1.71697709703713, 9.06772986139797e-08, 0.899666420294887, 0, 0, 0, 0, 0, 0, 3.27914084973555e-06, 0.16848115494519, -0.649536763230287, 3.07688470911434e-06, -0.105428318373125, 0.388944298045961, +-0.0916666666666689, 0.00333333333333335, 0, 0, 0, 1.31676370565691, 6.36539053625417e-08, 0.693216463715484, 1.27277399837824, 1.08113103843266e-07, 0.644121117080777, 0, 0, 0, 0, 0, 0, 2.97534807612205e-06, -0.120383641583888, 0.450939736328246, 2.90214239596338e-06, 0.0766625970014149, -0.383472237399189, 0.956260248057577, 1.84882827743936e-07, 0.455977428074389, 1.71405307719831, 8.98708800147451e-08, 0.8966195114469, 0, 0, 0, 0, 0, 0, 3.26019811604585e-06, 0.164520137850199, -0.6270968824218, 3.0604364552842e-06, -0.103044177282932, 0.373584732565108, +-0.0883333333333355, 0.00333333333333334, 0, 0, 0, 1.31387767384592, 6.60976053318826e-08, 0.690756392375923, 1.26764940819467, 1.08351483565573e-07, 0.641831337196139, 0, 0, 0, 0, 0, 0, 2.95998316256172e-06, -0.120547434916276, 0.455377149074484, 2.89498540411181e-06, 0.076653601256268, -0.387097963640392, 0.954270153402798, 1.82549874147184e-07, 0.455547413882445, 1.71112905735949, 8.90644614155101e-08, 0.893572602598913, 0, 0, 0, 0, 0, 0, 3.24125538235614e-06, 0.160559120755206, -0.604657001613302, 3.04398820145406e-06, -0.100660036192741, 0.358225167084258, +-0.0850000000000022, 0.00333333333333335, 0, 0, 0, 1.31099164203492, 6.8541305301223e-08, 0.688296321036363, 1.26252481801109, 1.08589863287881e-07, 0.639541557311501, 0, 0, 0, 0, 0, 0, 2.94461824900138e-06, -0.120711228248665, 0.459814561820722, 2.88782841226024e-06, 0.07664460551112, -0.390723689881592, 0.952280058748018, 1.80216920550432e-07, 0.455117399690501, 1.70820503752067, 8.82580428162754e-08, 0.890525693750925, 0, 0, 0, 0, 0, 0, 3.22231264866644e-06, 0.156598103660214, -0.582217120804809, 3.02753994762392e-06, -0.0982758951025473, 0.342865601603401, +-0.0816666666666688, 0.00333333333333334, 0, 0, 0, 1.30810561022393, 7.09850052705639e-08, 0.685836249696802, 1.25740022782752, 1.08828243010189e-07, 0.637251777426864, 0, 0, 0, 0, 0, 0, 2.92925333544105e-06, -0.120875021581054, 0.46425197456696, 2.88067142040867e-06, 0.0766356097659731, -0.394349416122795, 0.950289964093238, 1.7788396695368e-07, 0.454687385498557, 1.70528101768185, 8.74516242170397e-08, 0.887478784902936, 0, 0, 0, 0, 0, 0, 3.20336991497674e-06, 0.152637086565223, -0.559777239996323, 3.01109169379378e-06, -0.0958917540123542, 0.327506036122545, +-0.0783333333333355, 0.00333333333333335, 0, 0, 0, 1.30526400736148, 7.34406940028459e-08, 0.683404150260785, 1.25228518632062, 1.09049893004926e-07, 0.634967197814239, 0, 0, 0, 0, 0, 0, 2.91399987063872e-06, -0.121023993176305, 0.468643933935342, 2.87363460183648e-06, 0.0766254024047005, -0.397965130694564, 0.948329365163361, 1.75573698438207e-07, 0.454276218514934, 1.70246248173378, 8.67347917443302e-08, 0.884446783209913, 0, 0, 0, 0, 0, 0, 3.18445435867051e-06, 0.148682299997192, -0.53736864830787, 2.9947342620732e-06, -0.0934903545278495, 0.312078532976794, +-0.0750000000000021, 0.00333333333333334, 0, 0, 0, 1.33536233617737, 6.9385901843496e-08, 0.697972612102019, 1.26147189512434, 1.05303032364199e-07, 0.639365301485507, 0, 0, 0, 0, 0, 0, 2.99168012418926e-06, -0.122779448939948, 0.472366784150965, 2.97848251453041e-06, 0.0792180112636839, -0.404987996096271, 0.969246176384044, 1.74377426300177e-07, 0.465887613718918, 1.78974612010025, 9.29922229685575e-08, 0.920832022075221, 0, 0, 0, 0, 0, 0, 3.26818207600513e-06, 0.148530688697214, -0.538020091639553, 3.0898546374162e-06, -0.0911600615412233, 0.30389230620482, +-0.0716666666666688, 0.00333333333333335, 0, 0, 0, 1.39892250454378, 5.74027122640485e-08, 0.729235485786806, 1.28695042485286, 9.84245341471813e-08, 0.651022982400161, 0, 0, 0, 0, 0, 0, 3.16838072464644e-06, -0.127318651843677, 0.478816142963295, 3.20308519822652e-06, 0.0847352024914361, -0.416992137962348, 1.0136450946987, 1.72863365174263e-07, 0.489397187184072, 1.9735681683291, 9.65960146797773e-08, 1.00424233982762, 0, 0, 0, 0, 0, 0, 3.47185917807575e-06, 0.151523207445693, -0.558600894486269, 3.30923134192041e-06, -0.0900996048268589, 0.308010606082541, +-0.0683333333333354, 0.00333333333333334, 0, 0, 0, 1.46253038570161, 4.53963398307023e-08, 0.76051202225596, 1.31248806477224, 9.15595390902187e-08, 0.662695206784464, 0, 0, 0, 0, 0, 0, 3.34542375174188e-06, -0.131872922401274, 0.485299377538054, 3.42811020184458e-06, 0.0902606237025745, -0.429020065648339, 1.0580788802403, 1.71336779827272e-07, 0.512916789221678, 2.15772516455625, 9.99918050729345e-08, 1.08793314218431, 0, 0, 0, 0, 0, 0, 3.67614768976246e-06, 0.154512467978175, -0.579174498377198, 3.52922316593154e-06, -0.0890622137004669, 0.312244072576996, +-0.0650000000000021, 0.00333333333333335, 0, 0, 0, 1.52610319925761, 3.33732401782806e-08, 0.791760611906286, 1.33801990687141, 8.47049905978427e-08, 0.674362962668736, 0, 0, 0, 0, 0, 0, 3.5223857158268e-06, -0.136423970125033, 0.491773929978679, 3.65310911722158e-06, 0.0957843435637411, -0.441043117358294, 1.10248473146847, 1.69791135955452e-07, 0.536413719143367, 2.34178160674511, 1.03322294731594e-07, 1.1716143422898, 0, 0, 0, 0, 0, 0, 3.88044564026011e-06, 0.157502605214769, -0.599752035507489, 3.74915917764638e-06, -0.0880299819368927, 0.316498677596692, +-0.0616666666666687, 0.00333333333333335, 0, 0, 0, 1.55017381180166, 2.49672639515566e-08, 0.803583742397518, 1.34320184975139, 8.33573015309045e-08, 0.67614663532838, 0, 0, 0, 0, 0, 0, 3.65566075349094e-06, -0.138360722804632, 0.491923562928819, 3.79924839754031e-06, 0.10033277370874, -0.449686170903855, 1.11821183975181, 1.70621531941091e-07, 0.544543513978347, 2.45104727648244, 1.01479257886986e-07, 1.22517735134412, 0, 0, 0, 0, 0, 0, 4.04038010949398e-06, 0.160530033288489, -0.61949670233241, 3.91202473507904e-06, -0.0903581696797645, 0.333915123557749, +-0.0583333333333354, 0.00333333333333335, 0, 0, 0, 1.52978596981258, 1.81780323417417e-08, 0.794531096446685, 1.3221663455671, 8.49502705214618e-08, 0.665683304493336, 0, 0, 0, 0, 0, 0, 3.77472580609169e-06, -0.140861691312249, 0.49284540207884, 3.90127042574615e-06, 0.102329300866606, -0.450659885242695, 1.10132137909532, 1.74704467942903e-07, 0.535994534743661, 2.49431098519187, 1.01764025666132e-07, 1.24765063353964, 0, 0, 0, 0, 0, 0, 4.17824897168313e-06, 0.160225142233387, -0.624165067237494, 4.05065319580686e-06, -0.095889395719272, 0.364596697849513, +-0.055000000000002, 0.00333333333333335, 0, 0, 0, 1.50101074804836, 7.58173875729265e-09, 0.781011069208657, 1.29273252197319, 8.58078381480094e-08, 0.651104685477273, 0, 0, 0, 0, 0, 0, 3.92693193264161e-06, -0.14245525553254, 0.490466702013585, 4.04937252176773e-06, 0.105181021352239, -0.452288351544501, 1.07789788545679, 1.78325996095614e-07, 0.523816336538214, 2.54304750489711, 1.01518343889609e-07, 1.27279483348268, 0, 0, 0, 0, 0, 0, 4.3556126059808e-06, 0.160166586414258, -0.630788854499334, 4.22614951204053e-06, -0.0983303960818206, 0.382444472062886, +-0.0516666666666687, 0.00333333333333335, 0, 0, 0, 1.4721728010657, -3.05901838974687e-09, 0.767446991239477, 1.26323715812414, 8.6664471303386e-08, 0.636487273936757, 0, 0, 0, 0, 0, 0, 4.08055297568874e-06, -0.143849207247252, 0.487550300308954, 4.2003285927122e-06, 0.108111914652804, -0.454016823475057, 1.05444404099176, 1.81942529434128e-07, 0.511616790132817, 2.59181121271836, 1.01289399837202e-07, 1.29794892046909, 0, 0, 0, 0, 0, 0, 4.53429477529364e-06, 0.160223377856081, -0.637949649899118, 4.40287094184672e-06, -0.100540635791568, 0.399298966621683, +-0.0483333333333353, 0.00333333333333335, 47.9073940372583, 3.0826023301015, 24.9708424318979, 1.44333485408305, -1.36997755367869e-08, 0.753882913270298, 1.23374179427509, 8.75211044587627e-08, 0.621869862396241, 0, 0, 0, 0, 0, 0, 4.23417401873586e-06, -0.145243158961964, 0.484633898604324, 4.35128466365666e-06, 0.11104280795337, -0.455745295405613, 1.03099019652672, 1.85559062772642e-07, 0.49941724372742, 2.64057492053961, 1.01060455784795e-07, 1.32310300745551, 0, 0, 0, 0, 0, 0, 4.71297694460649e-06, 0.160280169297905, -0.645110445298905, 4.57959237165292e-06, -0.102750875501317, 0.416153461180483, +-0.045000000000002, 0.00333333333333335, 3.22308905063426, 0.45415976349524, 1.63211441050403, 1.41470515439223, -2.43219506345969e-08, 0.740423325548456, 1.20446403431004, 8.83427734113868e-08, 0.607366113674514, 0, 0, 0, 0, 0, 0, 4.38717523816952e-06, -0.146654736393355, 0.48176734102224, 4.50173790014918e-06, 0.113911042142325, -0.457317801467579, 1.00769275999316, 1.89151837700175e-07, 0.487295389211731, 2.68917910811148, 1.00818011950501e-07, 1.34817522682827, 0, 0, 0, 0, 0, 0, 4.89096401730386e-06, 0.160339344712409, -0.65227671732876, 4.75567322706465e-06, -0.104922219324731, 0.43282946511191, +-0.0416666666666686, 0.00333333333333335, 3.23526886104291, 0.446748877200402, 1.64226561883054, 1.38732713006043, -3.47848889979629e-08, 0.727575892024619, 1.17636930376236, 8.89595915198221e-08, 0.593469237985993, 0, 0, 0, 0, 0, 0, 4.53651999884198e-06, -0.148047058192142, 0.478906070213082, 4.64838282019525e-06, 0.116423856315558, -0.458010411431649, 0.985333905280213, 1.92663729196972e-07, 0.47562532802076, 2.73691057535428, 1.00697859307189e-07, 1.37279758482741, 0, 0, 0, 0, 0, 0, 5.06483908833111e-06, 0.160511394823537, -0.6598769451771, 4.927535003717e-06, -0.106843970732881, 0.448353548362822, +-0.0383333333333353, 0.00333333333333335, 3.24744867145156, 0.439337990905563, 1.65241682715705, 1.364070347902, -4.1721024633272e-08, 0.718234291159309, 1.14560914889769, 9.86910250915936e-08, 0.578962971857321, 0, 0, 0, 0, 0, 0, 4.7192527597013e-06, -0.146582722332413, 0.467572902497732, 4.83473552462382e-06, 0.114805568854106, -0.449223739828169, 0.962179712290449, 2.12029011818565e-07, 0.462860906602639, 2.80805258867624, 1.26813760201674e-07, 1.4107789483733, 0, 0, 0, 0, 0, 0, 5.26356611886522e-06, 0.150912055498537, -0.618533988763195, 5.13487205374751e-06, -0.0933759491618574, 0.388557899139641, +-0.0350000000000019, 0.00333333333333335, 3.25962848186021, 0.431927104610725, 1.66256803548356, 1.33738023747377, -4.49767680609481e-08, 0.706846980710118, 1.11358685895698, 1.10191529809119e-07, 0.563953410475576, 0, 0, 0, 0, 0, 0, 4.88275780888721e-06, -0.145586239951948, 0.461136856470228, 4.99975592755949e-06, 0.112472813029439, -0.442042933193421, 0.937548494398707, 2.31773225490434e-07, 0.449585469958779, 2.86755369357798, 1.53416434329551e-07, 1.44400055457611, 0, 0, 0, 0, 0, 0, 5.44139653454806e-06, 0.138582428461722, -0.561126109938645, 5.32103036592222e-06, -0.078084956168448, 0.315834942506084, +-0.0316666666666686, 0.00333333333333334, 3.27180829226886, 0.424516218315886, 1.67271924381007, 1.29450874799419, -6.02033537663064e-08, 0.687951178254183, 1.0687159209781, 1.04594102297589e-07, 0.54516435380848, 0, 0, 0, 0, 0, 0, 5.07035779203967e-06, -0.174940263804124, 0.525233651021925, 5.12190203478857e-06, 0.115630811006126, -0.44921394489199, 0.90692549869721, 2.32152447475901e-07, 0.434192183498827, 2.9067476460444, 1.44551044777427e-07, 1.46586285886123, 0, 0, 0, 0, 0, 0, 5.64549098957416e-06, 0.103876648132141, -0.414155053481432, 5.54896998032318e-06, -0.111811082643962, 0.478773762073193, +-0.0283333333333353, 0.00333333333333335, 3.284058120613, 0.417250418544829, 1.68288642299766, 1.23644066234707, -9.38322673686959e-08, 0.66254994329097, 1.0137026995838, 9.50244958075883e-08, 0.519056230315102, 0, 0, 0, 0, 0, 0, 5.30788980092308e-06, -0.162052856380172, 0.476946286146489, 5.39307767059653e-06, 0.12983942471624, -0.464020618009412, 0.84882485527535, 2.25106036350283e-07, 0.403746311853, 3.0003697829455, 1.26290067495444e-07, 1.51220352298426, 0, 0, 0, 0, 0, 0, 5.93679208914711e-06, 0.12237159683022, -0.517003374975055, 5.81290849990591e-06, -0.0927701072879673, 0.410998932232686, +-0.0250000000000019, 0.00333333333333334, 3.52727700183083, 0.453763516842877, 1.78469152435863, 1.19299282170846, -1.08014112941711e-07, 0.641689473713004, 0.972479823122561, 9.17977035319627e-08, 0.499520292026376, 0, 0, 0, 0, 0, 0, 5.43565184377244e-06, -0.158417333116742, 0.461513643147868, 5.53743128564169e-06, 0.134072626149784, -0.466962756211675, 0.810909271144228, 2.22613157168492e-07, 0.384087526265044, 3.02642355424135, 1.21590271661406e-07, 1.52414163840997, 0, 0, 0, 0, 0, 0, 6.08580048182694e-06, 0.123098099449179, -0.526874717917526, 5.9570626788641e-06, -0.0856937493363004, 0.385203386849471, +-0.0216666666666686, 0.00333333333333335, 4.03747410157988, 0.524380893824043, 1.99267662397399, 1.16597603130693, -1.18699629723997e-07, 0.628909966953985, 0.948173990885841, 8.74405519613871e-08, 0.488352896401236, 0, 0, 0, 0, 0, 0, 5.49407496449857e-06, -0.159504818482263, 0.459583790147643, 5.60845812469459e-06, 0.138450898855573, -0.472606753282543, 0.787025119411256, 2.18378617525818e-07, 0.37177238931717, 3.03327646540068, 1.14556195476026e-07, 1.52743039910274, 0, 0, 0, 0, 0, 0, 6.15295351318696e-06, 0.118868757690614, -0.512362724209864, 6.02364757829717e-06, -0.081910600851049, 0.372337013792723, +-0.0183333333333352, 0.00333333333333334, 4.54896993788992, 0.594841383584618, 2.20116977200091, 1.14133987777679, -1.2878450172796e-07, 0.617393665913867, 0.926711864770268, 8.27697698644573e-08, 0.478551444697292, 0, 0, 0, 0, 0, 0, 5.5409264163158e-06, -0.160876705475115, 0.45856314857667, 5.65403587167187e-06, 0.142751983287355, -0.47823350316952, 0.764850339547126, 2.13991208609629e-07, 0.360376158118817, 3.03810926072715, 1.07335597313686e-07, 1.52977296583696, 0, 0, 0, 0, 0, 0, 6.20718053994461e-06, 0.114457069777357, -0.49680534941982, 6.07656122300708e-06, -0.0780226992011738, 0.358738022066519, +-0.0150000000000019, 0.00333333333333335, 5.06046958125706, 0.665192180057909, 2.40967600185594, 1.12093227451511, -1.35062020800856e-07, 0.607371611427434, 0.909614525530072, 7.98627138167265e-08, 0.470372332972878, 0, 0, 0, 0, 0, 0, 5.56223986783407e-06, -0.155712833367826, 0.443739090583393, 5.69153490989789e-06, 0.146137455174119, -0.482399232234723, 0.746461001807243, 2.10919389907974e-07, 0.350739117796018, 3.0343402644046, 1.05382201042744e-07, 1.52692534281468, 0, 0, 0, 0, 0, 0, 6.23388565809163e-06, 0.116523613553572, -0.507558444524661, 6.09568973309642e-06, -0.0677898760242501, 0.313677614852273, +-0.0116666666666685, 0.00333333333333334, 5.41748921028772, 0.704810200184516, 2.56075435010972, 1.1075771802656, -1.33869241226915e-07, 0.600395023847742, 0.898535019563284, 8.01996603520021e-08, 0.465423995813366, 0, 0, 0, 0, 0, 0, 5.54700225688183e-06, -0.154057404958506, 0.44105850547471, 5.68103005677967e-06, 0.146225296987019, -0.483132954053783, 0.73548228683666, 2.09808987799227e-07, 0.345315059718593, 3.0162163794674, 1.05714566302611e-07, 1.51760078118685, 0, 0, 0, 0, 0, 0, 6.21454761137788e-06, 0.113733811074719, -0.492575461156203, 6.07600425768848e-06, -0.063513066130264, 0.291646460199959, +-0.00833333333333516, 0.00333333333333335, 5.79138876533925, 0.731589114469041, 2.76683873226767, 1.09444608239425, -1.32336486914424e-07, 0.593565892989305, 0.887775730270218, 8.07590429484206e-08, 0.460708534617215, 0, 0, 0, 0, 0, 0, 5.52777597093855e-06, -0.153660146840515, 0.441873853812402, 5.66246710508892e-06, 0.146120420527924, -0.484169293666071, 0.724827152124036, 2.08742538782701e-07, 0.340127174073866, 2.99750721624214, 1.05722198826462e-07, 1.50815251027313, 0, 0, 0, 0, 0, 0, 6.1905531674997e-06, 0.109733759124071, -0.471793636551493, 6.05259696335779e-06, -0.0606648595586083, 0.275654381227156, +-0.00500000000000182, 0.00333333333333334, 6.41675109384741, 0.76393116865704, 3.13319682470353, 1.08131653712356, -1.30801129265055e-07, 0.586737760935698, 0.877016754996814, 8.13181434214366e-08, 0.455993201312977, 0, 0, 0, 0, 0, 0, 5.50855498991508e-06, -0.153260722414792, 0.442682689103449, 5.6439063288197e-06, 0.146015638367018, -0.48520537528645, 0.714172881351263, 2.07678866488682e-07, 0.33493978738932, 2.97880147760649, 1.05736000552258e-07, 1.49870499229196, 0, 0, 0, 0, 0, 0, 6.16656021270791e-06, 0.105734518568859, -0.451015845573483, 6.02919449476476e-06, -0.0578146144676564, 0.259654112491781, +-0.00166666666666847, 0.00333333333333335, 7.04348756164038, 0.79642192446019, 3.50039236821283, 1.06845698730578, -1.29336741639732e-07, 0.580056663432327, 0.866409772069299, 8.17931698299881e-08, 0.451339553877139, 0, 0, 0, 0, 0, 0, 5.490323864968e-06, -0.15282709292769, 0.443178566733656, 5.62630804096698e-06, 0.145927819883861, -0.486066013484513, 0.703693541858866, 2.06638053135811e-07, 0.329838022444662, 2.96076011652194, 1.0591913171398e-07, 1.48955864481257, 0, 0, 0, 0, 0, 0, 6.14366681097388e-06, 0.101995158393705, -0.431678790918605, 6.00695318320339e-06, -0.0550791877972684, 0.244464722776689, +0.00166666666666488, 0.00333333333333334, 7.67022402943336, 0.828912680263341, 3.86758791172213, 1.05580158040379, -1.27999332116583e-07, 0.573483006415299, 0.855929278808511, 8.22022555381954e-08, 0.44673722546609, 0, 0, 0, 0, 0, 0, 5.47292439713457e-06, -0.15245542994526, 0.443632700784792, 5.60950389674327e-06, 0.145852012211347, -0.4867769775319, 0.69334992460535, 2.05550120570267e-07, 0.324800835329231, 2.94328317281436, 1.0600385166021e-07, 1.48070472382207, 0, 0, 0, 0, 0, 0, 6.12177833858391e-06, 0.0984351725741427, -0.413394956190175, 5.98572171087028e-06, -0.0525563110850337, 0.230498376095064, +0.00499999999999823, 0.00333333333333335, 8.29576062103976, 0.861321193653485, 4.23419839505638, 1.04314676807607, -1.26661961351974e-07, 0.56690939383555, 0.845501254496539, 8.26137255758633e-08, 0.442139306487514, 0, 0, 0, 0, 0, 0, 5.4555447688127e-06, -0.152071302037493, 0.444059174828266, 5.59269975251958e-06, 0.145776204538833, -0.487487941579288, 0.683006307351833, 2.04462188004724e-07, 0.319763648213798, 2.92580635388236, 1.06088333806853e-07, 1.47185090008952, 0, 0, 0, 0, 0, 0, 6.09990062470504e-06, 0.0948899992049647, -0.395173088444279, 5.9645305606204e-06, -0.0500188171153028, 0.216463424183367, +0.00833333333333158, 0.00333333333333335, 8.9138032494732, 0.893060130102308, 4.5971201258225, 1.03092945964937, -1.25348583272127e-07, 0.560426838682732, 0.835646410975268, 8.3050010855177e-08, 0.437624869304002, 0, 0, 0, 0, 0, 0, 5.43853861472555e-06, -0.151484529209341, 0.444047353252866, 5.57594176872611e-06, 0.14569408950346, -0.488195623711247, 0.672842125829363, 2.03402224147177e-07, 0.314787435551363, 2.90853220315625, 1.06148915988569e-07, 1.4631360855954, 0, 0, 0, 0, 0, 0, 6.07826201465941e-06, 0.091591991116647, -0.377977732530027, 5.94390799800316e-06, -0.0473002818996788, 0.201570155935221, +0.0116666666666649, 0.00333333333333334, 9.62319028967886, 0.930006301523437, 4.99861511098877, 1.01924268204374, -1.24041914598965e-07, 0.554172970105027, 0.826094906789508, 8.34997713007107e-08, 0.433275672437566, 0, 0, 0, 0, 0, 0, 5.42177063977104e-06, -0.150950039663261, 0.444214380049804, 5.55938069384784e-06, 0.145617371108455, -0.48897023765065, 0.663074085237099, 2.02399765101383e-07, 0.309992227308723, 2.89173011843533, 1.06213258650927e-07, 1.45468504874498, 0, 0, 0, 0, 0, 0, 6.05693518396093e-06, 0.0882600318142492, -0.360587565213419, 5.92353594047751e-06, -0.0446498961748885, 0.18695244497151, +0.0149999999999983, 0.00333333333333335, 10.2919273712212, 0.965743130758575, 5.37743699222571, 1.00759475484517, -1.22697672857525e-07, 0.54794254481493, 0.81656950675461, 8.39557923575336e-08, 0.428947938947896, 0, 0, 0, 0, 0, 0, 5.40500934650722e-06, -0.150458374835358, 0.444492939563786, 5.54285044624362e-06, 0.145640448492429, -0.49000345153145, 0.653332604015319, 2.01407900914357e-07, 0.30521325508115, 2.87495575675589, 1.06274910587647e-07, 1.44625504608111, 0, 0, 0, 0, 0, 0, 6.03564370686989e-06, 0.0848930751765715, -0.343036979868963, 5.90314589153581e-06, -0.0420472930753858, 0.172546998329398, +0.0183333333333316, 0.00333333333333334, 10.9568526077758, 0.995713218205472, 5.79765151646876, 0.995978378681151, -1.21326422768703e-07, 0.541724312551596, 0.807065629056242, 8.44187022642856e-08, 0.424634792186514, 0, 0, 0, 0, 0, 0, 5.38825378405191e-06, -0.149939219714015, 0.444703857808175, 5.52637173287831e-06, 0.1456280832963, -0.490948052556538, 0.64360322880807, 2.00419943610795e-07, 0.300439366809075, 2.85818364819668, 1.06331182446581e-07, 1.43783050074823, 0, 0, 0, 0, 0, 0, 6.0143777078118e-06, 0.0815737207000027, -0.32570134654326, 5.88274259401254e-06, -0.0393895869665518, 0.15789586631388, +0.021666666666665, 0.00333333333333335, 12.3840787491093, 1.11463107790062, 6.71963117020368, 0.984362334452554, -1.19955604144521e-07, 0.535506305245771, 0.797563196991848, 8.48821051419691e-08, 0.420322631325948, 0, 0, 0, 0, 0, 0, 5.37150053708217e-06, -0.149415796424696, 0.444904168490959, 5.50992749021068e-06, 0.145626487924812, -0.491917727334437, 0.633874095026367, 1.9943170117165e-07, 0.295665619647909, 2.84141158367718, 1.06387735999925e-07, 1.42940568508018, 0, 0, 0, 0, 0, 0, 5.99311689431752e-06, 0.0782595922356551, -0.308389559386132, 5.86234070698564e-06, -0.0367244897270405, 0.143212086102983, +0.0249999999999983, 0.00333333333333334, 13.1564617391144, 1.16229177656393, 7.22058796992577, 0.968364847932638, -1.17564555889303e-07, 0.526219191160824, 0.781864129431806, 8.66346136971251e-08, 0.414115669179387, 0, 0, 0, 0, 0, 0, 5.34811922297e-06, -0.149196196317705, 0.446079017970591, 5.48566948580623e-06, 0.145287626377213, -0.492159697964931, 0.62058552524795, 1.9846789378102e-07, 0.288748913548264, 2.82129593583552, 1.06853269113852e-07, 1.41944235202708, 0, 0, 0, 0, 0, 0, 5.96559340621155e-06, 0.0743942224349678, -0.288569364236419, 5.83766171664234e-06, -0.0347305699916243, 0.131521628533583, +0.0283333333333317, 0.00333333333333335, 13.613464842091, 1.18808974217029, 7.53291049057573, 0.892833549858305, -1.10499790849515e-07, 0.483223446629822, 0.710592730570939, 8.86739787954021e-08, 0.382703707699548, 0, 0, 0, 0, 0, 0, 5.24698108077464e-06, -0.15147779032117, 0.455808157923335, 5.38632356017027e-06, 0.14379379721943, -0.490239448799518, 0.553247547488215, 1.86123303523671e-07, 0.257556380542108, 2.76247457756504, 1.05632654765453e-07, 1.39013362155347, 0, 0, 0, 0, 0, 0, 5.87896544108478e-06, 0.0671077522505699, -0.253690956291257, 5.76382594596191e-06, -0.0403235038016382, 0.154038876053457, +0.031666666666665, 0.00333333333333335, 14.0139079126648, 1.21183599936155, 7.81016350872093, 0.812136360990898, -1.05892635332739e-07, 0.44034632015896, 0.640602136096229, 8.84459693574755e-08, 0.350179923915096, 0, 0, 0, 0, 0, 0, 5.1460902541841e-06, -0.152502460393964, 0.461334489271076, 5.29553665919526e-06, 0.143384102209123, -0.489449673772689, 0.479253251437466, 1.6923268201883e-07, 0.226025978396262, 2.70569919451957, 1.02002799080429e-07, 1.36109662019742, 0, 0, 0, 0, 0, 0, 5.79812951938542e-06, 0.0631710435628456, -0.235868239774184, 5.69397815920275e-06, -0.0462856219022291, 0.179900029789251, +0.0349999999999984, 0.00333333333333333, 14.3289338948354, 1.23091078638759, 8.03151391426961, 0.780726588456797, -1.04177276055051e-07, 0.422027065439594, 0.619438854355932, 8.50486978913822e-08, 0.33538697575245, 0, 0, 0, 0, 0, 0, 5.11987574535376e-06, -0.155205700143055, 0.467056438849057, 5.25979181030479e-06, 0.143739804216832, -0.48877533860394, 0.446197712947723, 1.61027916894111e-07, 0.212178715299537, 2.69026305089197, 1.01226575162593e-07, 1.35440305028474, 0, 0, 0, 0, 0, 0, 5.78677501170112e-06, 0.0642389937705719, -0.243606807578988, 5.68294180089139e-06, -0.0533368540659474, 0.214599036062971, +0.0383333333333317, 0.00333333333333335, 14.377461040881, 1.22876935948175, 8.08147678855525, 0.781622285645559, -1.05174044295275e-07, 0.422311307735476, 0.618813058766916, 8.4082557122118e-08, 0.334955012669468, 0, 0, 0, 0, 0, 0, 5.12779982794876e-06, -0.156214175874759, 0.466660714569921, 5.26760519325204e-06, 0.144048744098733, -0.486819043737449, 0.445467662403772, 1.59701386394131e-07, 0.212220085606932, 2.70171372830177, 1.00660299669258e-07, 1.36024015254537, 0, 0, 0, 0, 0, 0, 5.80226479053745e-06, 0.0684939014583545, -0.267289319260148, 5.69911217966026e-06, -0.0582663125843985, 0.241637846328103, +0.0416666666666651, 0.00333333333333335, 14.4073116294679, 1.22388670023369, 8.11979847120383, 0.782517982834322, -1.061708125355e-07, 0.422595550031358, 0.618214597239279, 8.3122463807007e-08, 0.334547247821331, 0, 0, 0, 0, 0, 0, 5.13572475183482e-06, -0.157222542409339, 0.466264668108663, 5.27553481471328e-06, 0.144353036607625, -0.484848566426177, 0.444737611859822, 1.5837485589415e-07, 0.212261455914328, 2.71316440571157, 1.00094024175922e-07, 1.366077254806, 0, 0, 0, 0, 0, 0, 5.81775456937378e-06, 0.0727488091461393, -0.29097183094132, 5.71528272049992e-06, -0.0631957448030274, 0.268676550054527, +0.0449999999999984, 0.00333333333333335, 14.4371611189236, 1.21901564736457, 8.15811736686498, 0.783413680023084, -1.07167580775725e-07, 0.42287979232724, 0.617616135711643, 8.21623704918962e-08, 0.334139482973195, 0, 0, 0, 0, 0, 0, 5.14364967572088e-06, -0.158230908943919, 0.465868621647403, 5.28214414178158e-06, 0.144650601891553, -0.482817822527913, 0.444007561315871, 1.57048325394169e-07, 0.212302826221724, 2.72461508312137, 9.95277486825861e-08, 1.37191435706663, 0, 0, 0, 0, 0, 0, 5.83324434821011e-06, 0.0770037168339241, -0.314654342622491, 5.73145326133958e-06, -0.0681251770216557, 0.295715253780948, +0.0483333333333318, 0.00333333333333333, 14.4680459891827, 1.214959518286, 8.19669499823728, 0.783364628044861, -1.08154617034031e-07, 0.422685292948093, 0.61483375709997, 8.12249157082317e-08, 0.332621391364336, 0, 0, 0, 0, 0, 0, 5.14953621643836e-06, -0.159100597625105, 0.465063276426172, 5.27911897078427e-06, 0.144899077035995, -0.480347299199449, 0.440938403417432, 1.55764160330439e-07, 0.211176612881883, 2.73398449125724, 9.87094040182551e-08, 1.37669684765557, 0, 0, 0, 0, 0, 0, 5.84659855485704e-06, 0.0813293651961347, -0.338724775969589, 5.74595236095383e-06, -0.0728737540948376, 0.321998880949169, +0.0516666666666651, 0.00333333333333335, 14.4999740851753, 1.21121223676454, 8.2356291592348, 0.770645441433743, -1.09109661014073e-07, 0.416295236267268, 0.606020075502886, 8.02283362138347e-08, 0.327950314950406, 0, 0, 0, 0, 0, 0, 5.13994405061749e-06, -0.159581182604173, 0.463173195907656, 5.27393219126244e-06, 0.145031798238394, -0.477609792343745, 0.425802161862472, 1.54407857170527e-07, 0.204325560474176, 2.725542318851, 9.59162881693311e-08, 1.37187081638038, 0, 0, 0, 0, 0, 0, 5.84443718077148e-06, 0.085591669571751, -0.362530652455232, 5.74643539966146e-06, -0.0766094678291892, 0.343787216684336, +0.0549999999999985, 0.00333333333333335, 14.5319656793827, 1.20746085626689, 8.27457182470224, 0.739493394475966, -1.1028452894251e-07, 0.400603603814874, 0.588037576183517, 7.99826904709207e-08, 0.318378722165942, 0, 0, 0, 0, 0, 0, 5.12168808605388e-06, -0.159886747676233, 0.461496283084402, 5.26698641014331e-06, 0.144993354474723, -0.475039709385508, 0.398720985124519, 1.53016631064229e-07, 0.191271537109021, 2.69693275253615, 9.18829368555755e-08, 1.35701166920409, 0, 0, 0, 0, 0, 0, 5.83369866201683e-06, 0.089094312913935, -0.381998032007381, 5.73816430534438e-06, -0.0793459587884562, 0.360138792493512, +0.0583333333333318, 0.00333333333333335, 14.5637084622688, 1.2036827558932, 8.31286605421191, 0.705752295259722, -1.11331324978157e-07, 0.383413915730126, 0.567465073201192, 8.0254318770784e-08, 0.307556511087953, 0, 0, 0, 0, 0, 0, 5.09297626870173e-06, -0.159241325281403, 0.457586300930884, 5.24593610164173e-06, 0.145019809270442, -0.472791926988905, 0.371067641300597, 1.51859154492783e-07, 0.177809585146909, 2.66664971064887, 8.77950558519951e-08, 1.34147115781127, 0, 0, 0, 0, 0, 0, 5.81285317815102e-06, 0.0924918516279476, -0.400693235870309, 5.72051928772394e-06, -0.0813693070991916, 0.372957061586276, +0.0616666666666652, 0.00333333333333335, 14.5925576696634, 1.19991331632033, 8.34871080800232, 0.671421503018874, -1.12298656392541e-07, 0.366071746918528, 0.546808327175216, 8.04781680985248e-08, 0.296733118422283, 0, 0, 0, 0, 0, 0, 5.05612636271378e-06, -0.15801929751154, 0.452369854809266, 5.20946715535164e-06, 0.146033889338339, -0.473014519729579, 0.343333513074319, 1.50700562904252e-07, 0.164326346632778, 2.63574903130755, 8.3632863861837e-08, 1.32547293924512, 0, 0, 0, 0, 0, 0, 5.78380869448374e-06, 0.0961428892111095, -0.420360434089046, 5.69471744179187e-06, -0.0825497312429564, 0.381619998276996, +0.0649999999999985, 0.00333333333333333, 14.6211178696552, 1.19614957367942, 8.38431006686777, 0.627272439536355, -1.11980671279689e-07, 0.346148380083061, 0.523457529568839, 8.09609331740676e-08, 0.285233815137122, 0, 0, 0, 0, 0, 0, 5.0075719564831e-06, -0.156013587495823, 0.445451990239715, 5.17539714251373e-06, 0.147541293717731, -0.474461652804798, 0.308140183274308, 1.4944987697793e-07, 0.148848475635617, 2.58852458422534, 7.72612564894457e-08, 1.29749687784109, 0, 0, 0, 0, 0, 0, 5.74432125835745e-06, 0.100380394869705, -0.442491128588817, 5.65903080712638e-06, -0.0824751546240141, 0.384107894893004, +0.0683333333333318, 0.00333333333333335, 14.6499640717231, 1.19245065711331, 8.42000625316718, 0.576909519146082, -1.11765430233553e-07, 0.323059492665102, 0.489592349946076, 8.25792007773852e-08, 0.269912490714834, 0, 0, 0, 0, 0, 0, 4.95842156715847e-06, -0.153894017792123, 0.43827375637791, 5.13973209376464e-06, 0.148900255782664, -0.475544347743449, 0.265431573783216, 1.47986626345125e-07, 0.129870746980119, 2.53079217876198, 7.05124800570843e-08, 1.26374476971241, 0, 0, 0, 0, 0, 0, 5.70349648681526e-06, 0.104440600286222, -0.463717667444389, 5.62155664929146e-06, -0.0825243509764981, 0.387102167512557, +0.0716666666666652, 0.00333333333333335, 14.6788253901521, 1.18875913530556, 8.45570719578539, 0.518709405442909, -1.12947254508604e-07, 0.293731285257234, 0.447323323650083, 8.45356732985679e-08, 0.248602488971645, 0, 0, 0, 0, 0, 0, 4.89686276077435e-06, -0.152618502408405, 0.433572197574409, 5.07645781304526e-06, 0.151567057116449, -0.480466570453632, 0.214747550676264, 1.4622962139362e-07, 0.104788154497441, 2.46288488956452, 6.53738774284469e-08, 1.22777679476842, 0, 0, 0, 0, 0, 0, 5.65063559462772e-06, 0.106720934888582, -0.476234118751383, 5.57301341444014e-06, -0.0835817180241506, 0.394270825661669, +0.0749999999999986, 0.00333333333333335, 14.7535638907582, 1.18754156988732, 8.53835871038706, 0.461305890133698, -1.14419021869483e-07, 0.264582163351488, 0.404896395415438, 8.65039459276996e-08, 0.227107062261205, 0, 0, 0, 0, 0, 0, 4.83410225002922e-06, -0.151323103048964, 0.428980237559238, 5.00376913158066e-06, 0.154419655474134, -0.485982433857967, 0.164889861070807, 1.44386716834325e-07, 0.0799186618618745, 2.39668448763926, 6.07316709815287e-08, 1.19296957065933, 0, 0, 0, 0, 0, 0, 5.59789866280271e-06, 0.109005360720828, -0.488578503786839, 5.52485226020986e-06, -0.0841546942266555, 0.399064694952948, +0.0783333333333319, 0.00333333333333333, 15.1416264632984, 1.21668167533958, 8.94165508624817, 0.403510550751182, -1.14443114233937e-07, 0.234158563622554, 0.35995368520234, 8.87780439133336e-08, 0.204947526114128, 0, 0, 0, 0, 0, 0, 4.77020781064951e-06, -0.14850752612893, 0.419693991963002, 4.92554687498777e-06, 0.158991169512618, -0.494224829866602, 0.114804332204322, 1.43488988845209e-07, 0.0540559672338705, 2.33024984105509, 5.80616414175744e-08, 1.15929066265368, 0, 0, 0, 0, 0, 0, 5.54285379027016e-06, 0.1139518296866, -0.51437048662334, 5.47540777928406e-06, -0.0834015074078959, 0.398674461639016, +0.0816666666666652, 0.00333333333333335, 15.5015904857456, 1.24886983829872, 9.31152691316638, 0.306217608261353, -1.47463890529379e-07, 0.187837191620184, 0.279483664264022, 5.50743067690992e-08, 0.160534920725638, 0, 0, 0, 0, 0, 0, 4.63191732328278e-06, -0.155177887789518, 0.415635911820799, 4.77390038361899e-06, 0.155305905105958, -0.46412035649543, 0.0298125486478964, 1.02875337470983e-07, 0.0159771321920627, 2.20901684653465, 1.65061765398269e-08, 1.09288209509273, 0, 0, 0, 0, 0, 0, 5.40587059564938e-06, 0.110312483977047, -0.520419364872735, 5.34940581211406e-06, -0.0990551747339636, 0.491852306775775, +0.0849999999999986, 0.00333333333333335, 15.6640648217489, 1.27216915775489, 9.46197603363167, 0.249061454698898, -1.5722779990906e-07, 0.160815327882172, 0.237189790541606, 5.24062878602932e-08, 0.139216291792574, 0, 0, 0, 0, 0, 0, 4.55108177421538e-06, -0.153912895266184, 0.414068229585914, 4.68704023767365e-06, 0.156202742599789, -0.468080420035984, -0.01524999177097, 9.2343347582659e-08, -0.00498438868264248, 2.13334758391779, 5.91254538854225e-09, 1.05208423792537, 0, 0, 0, 0, 0, 0, 5.32593629141461e-06, 0.104894252477228, -0.492863190743805, 5.27304642249478e-06, -0.095794945490278, 0.474435579703307, +0.0883333333333319, 0.00333333333333335, 15.7059113682356, 1.28523741943766, 9.49291048122397, 0.186383092695852, -1.57950220594591e-07, 0.129255306656013, 0.18009089594717, 5.33171536315512e-08, 0.114915849140316, 0, 0, 0, 0, 0, 0, 4.44301603621939e-06, -0.138357896186465, 0.385796404591939, 4.60934247407923e-06, 0.163381053334393, -0.490693262503384, -0.0644802413485932, 8.72818572326499e-08, -0.0299212574754714, 2.04205912777052, 8.1617166117326e-10, 1.00252934469685, 0, 0, 0, 0, 0, 0, 5.21729800056764e-06, 0.10629390073575, -0.486133558767027, 5.17227948041379e-06, -0.0719587064589147, 0.352489382241183, +0.0916666666666653, 0.00333333333333333, 15.7477579147224, 1.29830568112042, 9.52384492881626, 0.105834598210965, -1.58954048374854e-07, 0.0860389140679076, 0.118154621320655, 5.48183529129228e-08, 0.0801143974691623, 0, 0, 0, 0, 0, 0, 4.34079061232295e-06, -0.142646230740376, 0.408185035350424, 4.48373074908629e-06, 0.169841454093467, -0.518012199651832, -0.132256125841288, 7.93853644066972e-08, -0.0650729500200956, 1.92652896765688, -4.37199674319486e-09, 0.942874259774785, 0, 0, 0, 0, 0, 0, 5.11780584275233e-06, 0.0876211057304492, -0.387445811930842, 5.07686027773695e-06, -0.0706429117381553, 0.331201753399445, +0.0949999999999986, 0.00333333333333335, 15.789604461184, 1.31137377490394, 9.5547789525039, 0.0634801968719964, -1.60110749685281e-07, 0.0632685560451005, 0.0793705873992847, 5.51995262894198e-08, 0.0598023450284131, 0, 0, 0, 0, 0, 0, 4.27258343820073e-06, -0.140473155525516, 0.408837937762586, 4.38041071274391e-06, 0.16479123033875, -0.512764815048472, -0.166956725232923, 7.51647865628759e-08, -0.0830441453439646, 1.85914578847342, -8.43109486233937e-09, 0.907968564084272, 0, 0, 0, 0, 0, 0, 5.04574259722948e-06, 0.0798078993704972, -0.34390156985246, 5.00899303226454e-06, -0.0631139797374877, 0.287955474167263, +0.098333333333332, 0.00333333333333335, 15.8433926396949, 1.32445660274752, 9.59064029729337, 0.0265548248002058, -1.60848652459485e-07, 0.0442279854126348, 0.0499650690145741, 5.49884087434884e-08, 0.044792462501858, 0, 0, 0, 0, 0, 0, 4.21407500028852e-06, -0.138071825987013, 0.4088479989833, 4.30355415464478e-06, 0.166160793229244, -0.520887146731232, -0.197486522355077, 7.10331772658828e-08, -0.0982714893712847, 1.79692515560863, -1.29852569465998e-08, 0.874852488606772, 0, 0, 0, 0, 0, 0, 4.98361636668642e-06, 0.0723063937112124, -0.301749657029674, 4.95071404298012e-06, -0.0546683563955533, 0.24071725942248, +0.101666666666665, 0.00333333333333335, 15.9243010769454, 1.33888050500579, 9.63813490023789, -0.00936542684399673, -1.61718526613616e-07, 0.0254014359999272, 0.02106713631011, 5.47118750772046e-08, 0.029896851719627, 0, 0, 0, 0, 0, 0, 4.16977140447837e-06, -0.13966446182651, 0.417837371305119, 4.24921423387519e-06, 0.166489432481991, -0.526643963992771, -0.227818958991503, 6.69231134021041e-08, -0.11345636396417, 1.73544591600933, -1.74465014697945e-08, 0.842324395861404, 0, 0, 0, 0, 0, 0, 4.93468000820034e-06, 0.0609759398524483, -0.243373541412045, 4.90486951101305e-06, -0.0526129973742056, 0.224212830711882, +0.104999999999999, 0.00333333333333333, 16.0453903457026, 1.35728168933981, 9.72898828615743, -0.035341459738485, -1.63739282622797e-07, 0.00912926203895911, -0.000140605634255709, 5.34629799666238e-08, 0.0168241926462746, 0, 0, 0, 0, 0, 0, 4.1369598312049e-06, -0.146533432528541, 0.438266242614592, 4.19659884668187e-06, 0.166614987140149, -0.531889822333361, -0.250110692058698, 6.36622759331686e-08, -0.126576532826447, 1.69055059212022, -1.9990081250435e-08, 0.822382015604906, 0, 0, 0, 0, 0, 0, 4.89618825556749e-06, 0.0454777120847076, -0.167802894034706, 4.86809435941606e-06, -0.0573237926888031, 0.240399757293626, +0.108333333333332, 0.00333333333333335, 16.2212423160826, 1.37760795333033, 9.85619492823512, -0.0486646417996872, -1.6530393948385e-07, 0.0015285212331679, -0.011519421089358, 5.18805237601852e-08, 0.0100619866032184, 0, 0, 0, 0, 0, 0, 4.11556512134699e-06, -0.148402465184352, 0.444656811764583, 4.15789038446781e-06, 0.162850699900568, -0.525766810101625, -0.260702368874348, 6.12999717024006e-08, -0.132743893525217, 1.66475107869109, -2.22948408674777e-08, 0.80999088758346, 0, 0, 0, 0, 0, 0, 4.86901223100764e-06, 0.0384503039989563, -0.132932147840774, 4.84162409773607e-06, -0.0563985941128827, 0.23297217013367, +0.111666666666665, 0.00333333333333335, 16.3969994984474, 1.39840151557928, 9.98306779766019, -0.0584080337113299, -1.66584800893769e-07, -0.0032503785381895, -0.0192261159355496, 5.03550757185067e-08, 0.00595431824989517, 0, 0, 0, 0, 0, 0, 4.09985234918232e-06, -0.147775788638672, 0.444086381437651, 4.13920351727625e-06, 0.161782022752116, -0.523983901614587, -0.268592426473451, 5.91182918096632e-08, -0.136811462487253, 1.64345052862934, -2.46576774593857e-08, 0.798607275504749, 0, 0, 0, 0, 0, 0, 4.84669130556208e-06, 0.0347790574122169, -0.114166121695593, 4.819427090241e-06, -0.0531846409172408, 0.215932416539145, +0.114999999999999, 0.00333333333333335, 16.5943775806178, 1.4209698277666, 10.1259006095157, -0.0654311373633314, -1.67671922585064e-07, -0.00650302479276683, -0.024501169514509, 4.89347084186927e-08, 0.00305460292120196, 0, 0, 0, 0, 0, 0, 4.08484681410532e-06, -0.147154083545956, 0.443771663370669, 4.1236129636048e-06, 0.161649812237121, -0.524444559618046, -0.273991804299254, 5.71647701435927e-08, -0.139541534586806, 1.62629729002492, -2.66055182048519e-08, 0.789476558263998, 0, 0, 0, 0, 0, 0, 4.82576056974746e-06, 0.0313327723245096, -0.0963017172684958, 4.79824629251557e-06, -0.0500318355023747, 0.199030411306025, +0.118333333333332, 0.00333333333333335, 18.6457090887544, 1.44721329919369, 11.6472067391191, -0.0715606739695964, -1.68785955758424e-07, -0.00943965048617581, -0.0293221288547772, 4.74880755997365e-08, 0.000479889010834945, 0, 0, 0, 0, 0, 0, 4.07002223713295e-06, -0.146516938296747, 0.443468724421792, 4.10896105581941e-06, 0.161201443108608, -0.524301866642381, -0.278561001018451, 5.52507377198328e-08, -0.141985895812194, 1.6101341909647, -2.85612813017285e-08, 0.78097731959101, 0, 0, 0, 0, 0, 0, 4.80495674629486e-06, 0.027949725013566, -0.0786937180485064, 4.77736252423764e-06, -0.046897673507677, 0.182191879937623, +0.121666666666665, 0.00333333333333333, 21.851744448311, 1.48352729306629, 14.0265044606657, -0.0776902105758628, -1.69899988931783e-07, -0.0123762761795856, -0.0341430881950459, 4.60414427807805e-08, -0.00209482489953205, 0, 0, 0, 0, 0, 0, 4.05519734621337e-06, -0.145880041422807, 0.443166393948747, 4.0943422878282e-06, 0.160738147726244, -0.524128177995911, -0.283128774693296, 5.33394705209079e-08, -0.144428466800857, 1.59397064170998, -3.05174257810524e-08, 0.772478031364983, 0, 0, 0, 0, 0, 0, 4.78415311790364e-06, 0.0245662653437122, -0.0610839078768714, 4.75647826932798e-06, -0.0437638160001658, 0.165354762144201, +0.124999999999999, 0.00333333333333334, 25.0582508194662, 1.52010656964891, 16.4052468252577, -0.0838168124624517, -1.70996662621586e-07, -0.0153075087656713, -0.0389476272216875, 4.45916598716197e-08, -0.00466044278350166, 0, 0, 0, 0, 0, 0, 4.04036391513318e-06, -0.145248233767235, 0.442876781801006, 4.07963294620046e-06, 0.160296442746137, -0.524029515920247, -0.287673864018674, 5.1490932141758e-08, -0.146835613558388, 1.57777726273651, -3.25128045178935e-08, 0.763982012021618, 0, 0, 0, 0, 0, 0, 4.76335228319311e-06, 0.0211786344886276, -0.0434556952664175, 4.73558534764276e-06, -0.0406329941456822, 0.148531644882353, +0.128333333333332, 0.00333333333333335, 28.2061522442366, 1.54338581912823, 18.7456738526431, -0.0899480636665642, -1.72017071505197e-07, -0.0182225012340658, -0.0437091236955598, 4.31176455343186e-08, -0.0071982544557484, 0, 0, 0, 0, 0, 0, 4.02552286414801e-06, -0.144612773989604, 0.442580844311002, 4.06479499477943e-06, 0.159712949089978, -0.523596771466154, -0.292215585456715, 4.96637600023065e-08, -0.149232249482375, 1.56157437850967, -3.45291426809484e-08, 0.755494215445371, 0, 0, 0, 0, 0, 0, 4.74255475966096e-06, 0.0177893388590616, -0.0258188034753957, 4.71467956128397e-06, -0.0375037466069316, 0.131713633747399, +0.131666666666665, 0.00333333333333335, 31.0163485269906, 1.38511041328345, 20.9240397441549, -0.0961072420798713, -1.73064331491815e-07, -0.0211528597291203, -0.0484691645233061, 4.16396314176575e-08, -0.00973391435965318, 0, 0, 0, 0, 0, 0, 4.01067451909715e-06, -0.143988247875863, 0.442314608040074, 4.04995264689923e-06, 0.159114977998005, -0.523127999803694, -0.296761039004457, 4.78305143252573e-08, -0.151632366839515, 1.54537422470658, -3.6536548422151e-08, 0.747006039352358, 0, 0, 0, 0, 0, 0, 4.72176114967642e-06, 0.01438844661721, -0.00812811536163225, 4.69375140601032e-06, -0.0343990686168762, 0.115003498549164, +0.134999999999999, 0.00333333333333335, 33.7449951937501, 1.3832011775381, 22.9592766014166, -0.102301613332191, -1.74117507265144e-07, -0.0240947524802037, -0.0532390805385682, 4.01530793449154e-08, -0.0122694604287066, 0, 0, 0, 0, 0, 0, 3.99580712511097e-06, -0.143445933694708, 0.442235251119341, 4.03511029901904e-06, 0.158517006906031, -0.522659228141233, -0.30132137347892, 4.59986095669649e-08, -0.154036805176825, 1.52911447836415, -3.85363253011082e-08, 0.738466028373311, 0, 0, 0, 0, 0, 0, 4.70099711831968e-06, 0.01090371231955, 0.00991865610756308, 4.67272374490631e-06, -0.0313231120909987, 0.0984216793408196, +0.138333333333332, 0.00333333333333335, 37.1214633733667, 1.39162859578697, 25.5843004332066, -0.111868137793755, -1.7598050183789e-07, -0.0298887490918506, -0.0582414069389558, 3.86710250677774e-08, -0.0148476282730118, 0, 0, 0, 0, 0, 0, 3.98005318283939e-06, -0.142482266928449, 0.440789813777126, 4.02027553290928e-06, 0.157985928035577, -0.522359449997269, -0.308499009167009, 4.34345015469721e-08, -0.15871616030892, 1.50793754856041, -4.23112135647092e-08, 0.729072701894805, 0, 0, 0, 0, 0, 0, 4.66517421321084e-06, 0.0124553427576663, 0.00312057445105505, 4.65079239571891e-06, -0.0278448933609528, 0.0802095647380998, +0.141666666666666, 0.00333333333333335, 41.2941975658277, 1.40229919522702, 28.8990114381724, -0.228260847040132, -1.86358223780789e-07, -0.106297583217488, -0.173343105503945, 3.31427957948893e-08, -0.0755965069536734, 0, 0, 0, 0, 0, 0, 3.89928770730642e-06, -0.120605060902984, 0.369232759403206, 3.9259087070486e-06, 0.158017054145852, -0.499250470919952, -0.398425592729889, 2.81429288882175e-08, -0.219755978073054, 1.30630835994105, -6.69703791146822e-08, 0.641862450243047, 0, 0, 0, 0, 0, 0, 4.57285428715079e-06, 0.02006821135614, -0.0471680092583408, 4.55269981425293e-06, -0.00567257270910082, -0.00813906911809175, +0.144999999999999, 0.00333333333333335, 43.9139022202442, 1.39937946607571, 30.9416544454888, -0.285225871979383, -1.73513190736935e-07, -0.113608556667581, -0.185199491820603, 3.40216345187518e-08, -0.0821816887509101, 0, 0, 0, 0, 0, 0, 3.87996420170007e-06, -0.128136868399384, 0.381813860091305, 3.91185347004742e-06, 0.16707491578832, -0.513657382594378, -0.439315170725957, 3.39980150832826e-08, -0.225202879656753, 1.24216223859554, -4.78387183570196e-08, 0.583901644917503, 0, 0, 0, 0, 0, 0, 4.56534330361475e-06, 0.0106343615479663, -0.0137800852022577, 4.52635942971242e-06, -0.0112328029929465, 0.0223784997199654, +0.148333333333332, 0.0033333333333333, 45.7053135230119, 1.38291584243955, 32.3574486332074, -0.288707808962552, -1.72113205112454e-07, -0.115562375761326, -0.18797185999427, 3.51292444065092e-08, -0.083608604212022, 0, 0, 0, 0, 0, 0, 3.88823781047446e-06, -0.127589544551268, 0.377865972214071, 3.91961885119688e-06, 0.168059644809926, -0.513326472540408, -0.442281501883711, 3.5379525600808e-08, -0.226811246071349, 1.24261364181992, -4.63641470035402e-08, 0.584336064595808, 0, 0, 0, 0, 0, 0, 4.57825650286504e-06, 0.0143202254915684, -0.034207480968876, 4.53926170001585e-06, -0.0130716769106909, 0.0343536574861297, +0.151666666666666, 0.00333333333333335, 47.4971468100148, 1.36561672842905, 33.7735135263133, -0.292436850317258, -1.70802276925887e-07, -0.117670663922939, -0.190727743238854, 3.62326064844414e-08, -0.0850276172200681, 0, 0, 0, 0, 0, 0, 3.89559977852334e-06, -0.127086897815185, 0.374044396256812, 3.9273800184593e-06, 0.169049724878823, -0.51300761267135, -0.44541011943397, 3.64660395638539e-08, -0.228519684977009, 1.24222697004731, -4.51101333678335e-08, 0.584371902598387, 0, 0, 0, 0, 0, 0, 4.59091464520021e-06, 0.0179763265357321, -0.0544999325728991, 4.55198880086487e-06, -0.0149153799635938, 0.0463434983241757, +0.154999999999999, 0.00333333333333335, 49.0499987778078, 1.34711912291981, 35.0040773451459, -0.297719567623866, -1.70051299980829e-07, -0.12075018085952, -0.192903323291085, 3.71864369756763e-08, -0.086168447730707, 0, 0, 0, 0, 0, 0, 3.8985737626695e-06, -0.126799294618661, 0.370830795191487, 3.93514118572171e-06, 0.170039804947719, -0.512688752802291, -0.44894752944789, 3.68094698560077e-08, -0.230480202196418, 1.24071106959891, -4.41533008918912e-08, 0.583870688595487, 0, 0, 0, 0, 0, 0, 4.59945757078361e-06, 0.0211522179675224, -0.0726151270805123, 4.56151457089577e-06, -0.0168473384675237, 0.0586016814406395, +0.158333333333332, 0.00333333333333335, 49.3653710313634, 1.32875693933754, 35.2823736096667, -0.304231941635541, -1.69443533770376e-07, -0.124286747479446, -0.194790764538982, 3.80660203265049e-08, -0.0871711518735345, 0, 0, 0, 0, 0, 0, 3.90061343164246e-06, -0.1266536544271, 0.367971345308875, 3.94290235298413e-06, 0.171029885016616, -0.512369892933233, -0.453296622772567, 3.69228734556861e-08, -0.23269716519136, 1.23791661800833, -4.30824650756816e-08, 0.582533106861044, 0, 0, 0, 0, 0, 0, 4.60565835882031e-06, 0.0239860823099542, -0.08920859029949, 4.56905995879028e-06, -0.019087359071914, 0.0722274999052708, +0.161666666666666, 0.00333333333333335, 49.4993818095475, 1.31072908132613, 35.4171944188843, -0.312830665091691, -1.68934771110101e-07, -0.128449205935906, -0.196372948233756, 3.90012757463334e-08, -0.0880172000269473, 0, 0, 0, 0, 0, 0, 3.89779970116861e-06, -0.127738052430556, 0.368051714426681, 3.95066352024654e-06, 0.172019965085513, -0.512051033064175, -0.458947242414082, 3.6717349890281e-08, -0.235315553666025, 1.2332944517433, -4.18455917033338e-08, 0.579998366002443, 0, 0, 0, 0, 0, 0, 4.60681459863928e-06, 0.0261775734206467, -0.103049421328336, 4.57064277679459e-06, -0.0220823275516009, 0.0894609585638589, +0.164999999999999, 0.00333333333333335, 49.552299480118, 1.29232647797654, 35.4831307947653, -0.32150199821002, -1.68429453996473e-07, -0.132633446838702, -0.197468647483785, 4.00252549186064e-08, -0.0886135878484656, 0, 0, 0, 0, 0, 0, 3.89008199035262e-06, -0.128451313191092, 0.367083171403603, 3.95842468750896e-06, 0.17301004515441, -0.511732173195118, -0.464630070866283, 3.62556386806591e-08, -0.237959879349206, 1.22843509336637, -4.05904937066343e-08, 0.57732884306474, 0, 0, 0, 0, 0, 0, 4.60414118539725e-06, 0.029218484133041, -0.120851588815821, 4.56986555469375e-06, -0.0247493996532702, 0.105292370399762, +0.168333333333332, 0.00333333333333335, 49.5920559341195, 1.27392484985908, 35.5380055224318, -0.32998969663046, -1.68137431752966e-07, -0.13659194785914, -0.198482375749787, 4.10094967147894e-08, -0.089143957565345, 0, 0, 0, 0, 0, 0, 3.88266046467533e-06, -0.128659319964895, 0.364879280076517, 3.96602563283554e-06, 0.173924747727724, -0.51121495797407, -0.470012867908411, 3.50280892402264e-08, -0.240396833364643, 1.22244413114113, -3.90673946397253e-08, 0.573879031460728, 0, 0, 0, 0, 0, 0, 4.60195185532882e-06, 0.032857538611995, -0.141334192648656, 4.56936275615297e-06, -0.026912447694347, 0.118805626117594, +0.171666666666666, 0.0033333333333333, 49.6318123881436, 1.25551965394864, 35.5928779154314, -0.338045971764213, -1.68382095278442e-07, -0.140169211435923, -0.199035376969152, 4.2143588569011e-08, -0.0895109202049745, 0, 0, 0, 0, 0, 0, 3.87558376016106e-06, -0.129182663068536, 0.363291286354691, 3.97314568317945e-06, 0.174596433563292, -0.510056817617811, -0.474700884519402, 3.35589831922064e-08, -0.242440979988226, 1.21660377901768, -3.79494174082827e-08, 0.570469275639531, 0, 0, 0, 0, 0, 0, 4.60023311027868e-06, 0.0363000351452265, -0.161148681008029, 4.56979480254771e-06, -0.029650621343648, 0.135223244962559, +0.174999999999999, 0.00333333333333335, 49.6719099009443, 1.23710764647926, 35.6480869751641, -0.34716960512705, -1.69637314021946e-07, -0.14458830877233, -0.199818520731074, 4.37282202310348e-08, -0.0902264319842151, 0, 0, 0, 0, 0, 0, 3.86497218158214e-06, -0.128453745964955, 0.358844710248935, 3.97893451301287e-06, 0.175423529045251, -0.50922289951464, -0.478941818316754, 3.07488681601712e-08, -0.244343457726557, 1.20905664597038, -3.80439137384089e-08, 0.566680978902125, 0, 0, 0, 0, 0, 0, 4.59489465522771e-06, 0.0403106940390329, -0.183335627695415, 4.5684418348312e-06, -0.0315093038832618, 0.147405137261521, +0.178333333333332, 0.00333333333333335, 49.7162358483721, 1.2187218267917, 35.7063300349044, -0.360845839420149, -1.7295994716827e-07, -0.151336751174422, -0.20167456412609, 4.52793550063377e-08, -0.0918723179619957, 0, 0, 0, 0, 0, 0, 3.85005617149916e-06, -0.127581460249514, 0.354239981660334, 3.97239372672939e-06, 0.174921795117415, -0.504871604178894, -0.483523303631853, 2.58559331747645e-08, -0.246275716863685, 1.19648876796686, -3.99135829433046e-08, 0.560876680305217, 0, 0, 0, 0, 0, 0, 4.58658036527326e-06, 0.0430595664665167, -0.199364596754315, 4.56333367451404e-06, -0.0340806624384785, 0.162356143014819, +0.181666666666666, 0.00333333333333335, 49.7622138921528, 1.20036793288183, 35.7657241980654, -0.37498561447366, -1.76456266915578e-07, -0.158244295965952, -0.204428427352348, 4.67890272538169e-08, -0.0935876944276468, 0, 0, 0, 0, 0, 0, 3.83468013412856e-06, -0.12693522716149, 0.350217939549187, 3.95656636011181e-06, 0.173612834940183, -0.4983222072843, -0.488170168887865, 2.08995870125609e-08, -0.248213294549362, 1.18369054990895, -4.18423353144645e-08, 0.55494156305401, 0, 0, 0, 0, 0, 0, 4.57823596019308e-06, 0.0453481315958065, -0.213226413249688, 4.5579657713166e-06, -0.0370924649471328, 0.179228069092217, +0.184999999999999, 0.00333333333333335, 49.8227273962129, 1.18218718306696, 35.8358121514043, -0.389187046150599, -1.79986682416158e-07, -0.165178723638265, -0.20746226545807, 4.83011354340381e-08, -0.0953119954944633, 0, 0, 0, 0, 0, 0, 3.81846832817592e-06, -0.126079052802732, 0.345729698550173, 3.93579603798117e-06, 0.173793315193522, -0.495337572539678, -0.49279092574879, 1.55858979943771e-08, -0.250128767888088, 1.17013807667906, -4.38012802113577e-08, 0.548614130589836, 0, 0, 0, 0, 0, 0, 4.56916583253292e-06, 0.0477993235718575, -0.227736845616945, 4.54990689586743e-06, -0.0395319993348584, 0.193462066263739, +0.188333333333332, 0.00333333333333335, 49.8596069790122, 1.18589267594116, 35.8986675888487, -0.404653775152577, -1.83790817841018e-07, -0.172926533759735, -0.211178296900571, 4.98166853875025e-08, -0.097463274384471, 0, 0, 0, 0, 0, 0, 3.80084116255151e-06, -0.121528406652976, 0.332387096326593, 3.91113505060022e-06, 0.174202985776676, -0.492800027733424, -0.497805120141814, 9.62488578539991e-09, -0.252392856032614, 1.15383555391562, -4.62568123009628e-08, 0.5415703678956, 0, 0, 0, 0, 0, 0, 4.55876866539849e-06, 0.0531180690396962, -0.254738146554804, 4.54255429946991e-06, -0.0392605462191916, 0.195104388900562, +0.191666666666666, 0.00333333333333335, 51.3986578221525, 1.73528149964688, 37.4801359674214, -0.426553735298226, -1.89208495265737e-07, -0.185686471709254, -0.22085964584634, 5.14104428843744e-08, -0.104005856487902, 0, 0, 0, 0, 0, 0, 3.77749417062236e-06, -0.114690121597598, 0.313171755223775, 3.88792971136991e-06, 0.173712892421829, -0.487489076118527, -0.506320960878194, 2.30361804621109e-09, -0.257387301100846, 1.12575701447332, -5.15247653684129e-08, 0.533133810871795, 0, 0, 0, 0, 0, 0, 4.54212802501412e-06, 0.0570716918608739, -0.274516081688886, 4.52980350450874e-06, -0.0369415444036417, 0.186989310415316, +0.194999999999999, 0.00333333333333335, 51.9902965799739, 1.79381358778663, 38.0034487283902, -0.448960363482245, -1.96409227733385e-07, -0.19549604202383, -0.228372691570164, 5.38663466233006e-08, -0.108273310733196, 0, 0, 0, 0, 0, 0, 3.75785888850355e-06, -0.111011619992298, 0.301935639118252, 3.87210703776204e-06, 0.175046953677684, -0.48743142169369, -0.515013757282366, -4.00611737780788e-09, -0.261106665547823, 1.10685332088066, -5.41441519565366e-08, 0.52187991587944, 0, 0, 0, 0, 0, 0, 4.52993619558876e-06, 0.0601854100651459, -0.290988348472038, 4.52045800426362e-06, -0.0343933231751893, 0.177173845795892, +0.198333333333332, 0.0033333333333333, 52.1459074428092, 1.85074931907136, 38.1284844974243, -0.484843607805552, -1.81711451423859e-07, -0.216712898494491, -0.250583387086757, 7.01764334023171e-08, -0.115664350942094, 0, 0, 0, 0, 0, 0, 3.73640311409142e-06, -0.104397273570529, 0.278246883189179, 3.83560533274331e-06, 0.185470542466233, -0.502780676594607, -0.534137561870365, 6.75865995701436e-09, -0.27405315274159, 1.08122297670848, -4.52203920433442e-08, 0.51077450647451, 0, 0, 0, 0, 0, 0, 4.51135560389868e-06, 0.0700393183791243, -0.342951713561501, 4.50238608079105e-06, -0.0270124994134646, 0.152317452828287, +0.201666666666666, 0.00333333333333335, 52.301986138391, 1.90782958421783, 38.2532246431635, -0.502873519614532, -1.78734892613543e-07, -0.223288761914563, -0.257312305876052, 7.64122850393517e-08, -0.118294545191573, 0, 0, 0, 0, 0, 0, 3.71209105945534e-06, -0.110002100784159, 0.286807169243012, 3.78493086425162e-06, 0.19238676195595, -0.514626870812708, -0.542067629282464, 6.00176820828904e-09, -0.276433393889163, 1.06507692296218, -5.02997833395073e-08, 0.50150373809114, 0, 0, 0, 0, 0, 0, 4.48508357258509e-06, 0.0660853461226059, -0.327621097639127, 4.47420473922106e-06, -0.0289187551571733, 0.16524182434911, +0.204999999999999, 0.00333333333333335, 52.4632797488126, 1.96572284862556, 38.3739087175825, -0.504185204103192, -1.78376394856186e-07, -0.224272400346989, -0.25528712197305, 7.62245164635522e-08, -0.117373131004157, 0, 0, 0, 0, 0, 0, 3.69238363045577e-06, -0.107637392907169, 0.282401954516352, 3.74108074334867e-06, 0.194922655548455, -0.52101457104072, -0.538852853132116, 4.68481757873361e-09, -0.274480646030132, 1.06035161130658, -5.35765318226776e-08, 0.499795020758237, 0, 0, 0, 0, 0, 0, 4.46429883140293e-06, 0.065938101212541, -0.324161960886281, 4.44923167943702e-06, -0.0249155458267252, 0.144374456276607, +0.208333333333332, 0.00333333333333335, 52.6258519001746, 2.02682305415477, 38.4914487943925, -0.505496888591853, -1.7801789709883e-07, -0.225256038779416, -0.253234931972739, 7.60267887753172e-08, -0.11644204291431, 0, 0, 0, 0, 0, 0, 3.67134179642769e-06, -0.105404204175355, 0.278347627931974, 3.70908621638485e-06, 0.193568178283686, -0.518903358549341, -0.535638076981768, 3.36786694917818e-09, -0.272527898171101, 1.05562629965099, -5.68532803058478e-08, 0.498086303425334, 0, 0, 0, 0, 0, 0, 4.44198220365824e-06, 0.0650263059445095, -0.317057169241072, 4.42440134366712e-06, -0.0219857032481447, 0.128139476766448, +0.211666666666666, 0.00333333333333335, 52.7183862483192, 2.08947262823901, 38.5657474039058, -0.506221703740747, -1.77661051397229e-07, -0.225880050223007, -0.251551163008903, 7.58112195540261e-08, -0.115611103673149, 0, 0, 0, 0, 0, 0, 3.6518360990625e-06, -0.104410308294042, 0.277533995595309, 3.67807786193208e-06, 0.192110480996514, -0.516500387848267, -0.533124276872065, 2.52713910997762e-09, -0.271122567151857, 1.05116294310052, -5.91555315474459e-08, 0.496449325216626, 0, 0, 0, 0, 0, 0, 4.42058961067941e-06, 0.0619366814303584, -0.299846390843649, 4.40397841223498e-06, -0.0222592766536805, 0.125918042832969, +0.214999999999999, 0.00333333333333335, 52.6474741414419, 2.15293485893421, 38.5408157518606, -0.505483308413553, -1.77308324679401e-07, -0.225607422599105, -0.250808191433921, 7.58431258408445e-08, -0.115050649562681, 0, 0, 0, 0, 0, 0, 3.63622269809286e-06, -0.105745910035728, 0.282807899922401, 3.65045863592027e-06, 0.190298052757429, -0.513094746686119, -0.531797180768516, 2.49262355246373e-09, -0.270643975021167, 1.0471459346432, -5.97973265618349e-08, 0.494934584065576, 0, 0, 0, 0, 0, 0, 4.40148164233311e-06, 0.0554963107694032, -0.267131749294566, 4.38419466237957e-06, -0.0229973379648401, 0.125728546173668, +0.218333333333333, 0.00333333333333335, 52.572765396385, 2.21804235572219, 38.5142628195014, -0.504781053458456, -1.76979475672334e-07, -0.225381133023587, -0.250137066057862, 7.6020529054799e-08, -0.114550340403556, 0, 0, 0, 0, 0, 0, 3.62141578488552e-06, -0.106944782646236, 0.287703561595804, 3.62350785497034e-06, 0.188816558584385, -0.510556312864149, -0.530582113250427, 2.46743643106841e-09, -0.270252548853767, 1.04299348639158, -6.05224511205395e-08, 0.493426113692218, 0, 0, 0, 0, 0, 0, 4.38305291537968e-06, 0.0496429402805384, -0.237191492778789, 4.36632782156268e-06, -0.0222279287956443, 0.119121892768507, +0.221666666666666, 0.00333333333333335, 52.4918815100138, 2.28911410057899, 38.477264956145, -0.504222621410155, -1.76679759015973e-07, -0.225265574211313, -0.249574900469652, 7.61994469441755e-08, -0.114138745095652, 0, 0, 0, 0, 0, 0, 3.60952711100244e-06, -0.10717895183265, 0.290020133386482, 3.60278075663592e-06, 0.190065826635207, -0.515222731071041, -0.529495603705467, 2.43680851386092e-09, -0.269952314446963, 1.0386357019413, -6.13572193969761e-08, 0.491889166005933, 0, 0, 0, 0, 0, 0, 4.36690447366026e-06, 0.0462233895825304, -0.218675880530787, 4.35014151210977e-06, -0.0195024710416102, 0.104042327054864, +0.224999999999999, 0.00333333333333335, 52.6704552598751, 2.35568481509356, 38.5573847716811, -0.504119701065325, -1.76396798085817e-07, -0.22524960297228, -0.24917251950461, 7.62899404143583e-08, -0.113723057400133, 0, 0, 0, 0, 0, 0, 3.59776447015501e-06, -0.10711743980003, 0.291635415474426, 3.59088523028499e-06, 0.19022186674796, -0.517227466401196, -0.528719316823896, 2.39039562440274e-09, -0.269732247303851, 1.0336866451186, -6.17819187491721e-08, 0.48976470269308, 0, 0, 0, 0, 0, 0, 4.35084095217377e-06, 0.0431993273913272, -0.201917547252411, 4.33328203362502e-06, -0.0163937831430932, 0.087077191081876, +0.228333333333333, 0.0033333333333333, 52.9975521587396, 2.41724892992953, 38.6953572001526, -0.504158259502059, -1.75890101607751e-07, -0.225148303719415, -0.249144108373045, 7.64401267349754e-08, -0.113327725293202, 0, 0, 0, 0, 0, 0, 3.58584562906529e-06, -0.106899553217218, 0.292935327941893, 3.57929723121336e-06, 0.190182040093004, -0.51879196975303, -0.527946619753214, 2.43341202707914e-09, -0.269389851018227, 1.02833020623775, -6.24540214539577e-08, 0.487426909366508, 0, 0, 0, 0, 0, 0, 4.33416758439886e-06, 0.0401325499861337, -0.1848427875518, 4.31676935095299e-06, -0.0134212926430779, 0.0707235297148879, +0.231666666666666, 0.00333333333333335, 53.0235079630206, 2.4818876207821, 38.576518204849, -0.503945065076929, -1.75237497504727e-07, -0.224830708269252, -0.249072929734993, 7.66193504583294e-08, -0.112892504853684, 0, 0, 0, 0, 0, 0, 3.57374762479236e-06, -0.106719563165856, 0.294358922746336, 3.56691890451202e-06, 0.190058490861523, -0.520241405348788, -0.526936060359174, 2.40623138651175e-09, -0.268901346860934, 1.02305507567212, -6.30428482524506e-08, 0.485059293859499, 0, 0, 0, 0, 0, 0, 4.31702232311679e-06, 0.0370245485935578, -0.16750763863636, 4.30031938849547e-06, -0.010514245619036, 0.0546457504716315, +0.234999999999999, 0.00333333333333335, 51.836997086325, 2.54641646967394, 37.540090307796, -0.503157819879153, -1.7526780522407e-07, -0.22438107548265, -0.248968003735486, 7.68579142938331e-08, -0.112455199758884, 0, 0, 0, 0, 0, 0, 3.56165434865108e-06, -0.106547653613846, 0.295799971744755, 3.5544844063092e-06, 0.189923644277909, -0.521668432521416, -0.52535759090365, 1.95466232257036e-09, -0.268285085994454, 1.01848291314418, -6.36945844416871e-08, 0.48315796461841, 0, 0, 0, 0, 0, 0, 4.29981859901445e-06, 0.0339293965420906, -0.15022931343483, 4.28384614430304e-06, -0.00759740060948923, 0.0385193131446293, +0.238333333333333, 0.00333333333333335, 50.6135920355603, 2.60666302452811, 36.4695016768074, -0.502254921125477, -1.75349697812437e-07, -0.223899768340662, -0.248715422696177, 7.7362558200791e-08, -0.112007692450175, 0, 0, 0, 0, 0, 0, 3.54956107250979e-06, -0.106375744061836, 0.297241020743174, 3.54204990810638e-06, 0.189788797694296, -0.523095459694044, -0.523641398527168, 1.51423672532707e-09, -0.267604330278677, 1.01410255280609, -6.44411168801823e-08, 0.481414113925206, 0, 0, 0, 0, 0, 0, 4.28261487491211e-06, 0.0308342444906237, -0.132950988233302, 4.26737290011061e-06, -0.00468055559994395, 0.0223928758176343, +0.241666666666666, 0.00333333333333335, 49.5285675300882, 2.6399727914309, 35.4744307884777, -0.501352022371801, -1.75431590400805e-07, -0.223418461198674, -0.248448155053136, 7.78791131667679e-08, -0.111552549921732, 0, 0, 0, 0, 0, 0, 3.53746779636851e-06, -0.106203834509825, 0.298682069741593, 3.52961540990356e-06, 0.189653951110682, -0.524522486866673, -0.521925206150685, 1.0738111280838e-09, -0.266923574562901, 1.009722192468, -6.51876493186772e-08, 0.479670263232002, 0, 0, 0, 0, 0, 0, 4.26541115080976e-06, 0.0277390924391569, -0.115672663031774, 4.25089965591818e-06, -0.00176371059039776, 0.00626643849063448, +0.244999999999999, 0.00333333333333335, 48.4989516687894, 2.67579776726148, 34.4804183862678, -0.500472790888383, -1.75501986388593e-07, -0.222950352261592, -0.248181524233611, 7.83914491697273e-08, -0.111096054331017, 0, 0, 0, 0, 0, 0, 3.52537452022722e-06, -0.106031924957815, 0.300123118740013, 3.51718085566707e-06, 0.189519023040424, -0.525949275543569, -0.520217435076573, 6.55905288938456e-10, -0.266238468939774, 1.00531781642634, -6.59776160753703e-08, 0.477933587315507, 0, 0, 0, 0, 0, 0, 4.24820742670743e-06, 0.024643940387691, -0.0983943378302509, 4.23442006307263e-06, 0.00115555248698456, -0.00987046771680509, +0.248333333333333, 0.00333333333333335, 44.9276071827543, 4.13465399560069, 31.1881877383052, -0.499786435291576, -1.75478691088558e-07, -0.222589801798514, -0.247943266228719, 7.88676335120222e-08, -0.110645479270713, 0, 0, 0, 0, 0, 0, 3.51328124408594e-06, -0.105860015405805, 0.301564167738432, 3.50472134877188e-06, 0.18934780770707, -0.527269858381862, -0.518288812173873, 1.13437220462912e-10, -0.265414650531957, 0.999535646098775, -6.69837359963569e-08, 0.475614458173428, 0, 0, 0, 0, 0, 0, 4.2310038215661e-06, 0.0215488664691365, -0.0811163731895457, 4.2176911087989e-06, 0.00416979206375147, -0.0264185690122336, +0.251666666666666, 0.00333333333333335, 41.1376387623214, 4.85402768208504, 27.9334485350114, -0.495803628920195, -1.78765400018666e-07, -0.220822558200588, -0.248133165422204, 7.98711827053168e-08, -0.110565055861551, 0, 0, 0, 0, 0, 0, 3.50003806014136e-06, -0.105475688326219, 0.302374831067312, 3.49119645593953e-06, 0.189558878719528, -0.529723859461007, -0.511496604119705, -6.45932492190182e-09, -0.262900783488726, 0.984945385806333, -6.74575871303738e-08, 0.469208982991925, 0, 0, 0, 0, 0, 0, 4.21474759847994e-06, 0.0185348658042013, -0.0642729970121049, 4.19958484970382e-06, 0.0070612802571493, -0.0423795778264911, +0.254999999999999, 0.0033333333333333, 38.815245530342, 4.91957328821262, 26.0905839781266, -0.494418022116129, -1.83490844074569e-07, -0.220743598479935, -0.254788111815109, 8.27877258249561e-08, -0.112468926806892, 0, 0, 0, 0, 0, 0, 3.47939939774958e-06, -0.105189477750336, 0.302571084876241, 3.4732735765129e-06, 0.191560874733033, -0.537464561903817, -0.516004607607383, -1.23429445935764e-08, -0.268748350153743, 0.980800514251296, -6.6996978911103e-08, 0.468426286926801, 0, 0, 0, 0, 0, 0, 4.19897088233546e-06, 0.0141622240390988, -0.0416718492101212, 4.17776809980418e-06, 0.00733076082536918, -0.0457627191881116, +0.258333333333333, 0.00333333333333335, 36.446284595942, 4.98473142571188, 24.2153111984163, -0.505556083057781, -1.86076690741656e-07, -0.224685276157236, -0.269778725435989, 8.68223532880272e-08, -0.117094379457988, 0, 0, 0, 0, 0, 0, 3.44997347159604e-06, -0.107131458655991, 0.306068170159722, 3.43559053564545e-06, 0.19979924010596, -0.558464971324948, -0.525055742929774, -1.65665147594093e-08, -0.277862558879906, 0.988138016098799, -8.25766652913594e-08, 0.477429952448193, 0, 0, 0, 0, 0, 0, 4.18277976129373e-06, 0.0104737370389472, -0.0251406253668819, 4.16438540604012e-06, 0.00241199313528826, -0.0228284498335526, +0.261666666666666, 0.00333333333333335, 34.1225598325496, 5.04906510011729, 22.3746754397132, -0.51098938187204, -1.86975064981931e-07, -0.225313688045514, -0.269010676349212, 8.69073690147457e-08, -0.116767551630106, 0, 0, 0, 0, 0, 0, 3.4438599367968e-06, -0.109370035805712, 0.309159159870361, 3.43993917028364e-06, 0.201114636476623, -0.55983422221725, -0.525759824783256, -1.74350040437647e-08, -0.278399132321571, 0.998913138801328, -9.5521462258167e-08, 0.485215406102344, 0, 0, 0, 0, 0, 0, 4.18203945761591e-06, 0.0105442662120357, -0.0291426808659195, 4.17412719929593e-06, -0.00423087281025741, 0.0109924337840206, +0.264999999999999, 0.00333333333333335, 33.2273602701526, 5.11468670114709, 21.6354120143683, -0.511362540686761, -1.8765822538628e-07, -0.225383896196685, -0.267683673191764, 8.65458907608786e-08, -0.116070074439306, 0, 0, 0, 0, 0, 0, 3.45228335798998e-06, -0.109878385519598, 0.308375040839727, 3.44866199554062e-06, 0.201731174790134, -0.559721212212544, -0.52629994047064, -1.82288829340635e-08, -0.278884149972553, 1.00554419556622, -9.82209807032519e-08, 0.489205373069385, 0, 0, 0, 0, 0, 0, 4.1955476694807e-06, 0.0126915349908719, -0.0421331319742148, 4.18869011109021e-06, -0.00821410161640914, 0.0322699439210398, +0.268333333333333, 0.00333333333333335, 33.0102714131602, 5.18489217322644, 21.4215572505765, -0.511735699501483, -1.88341385790631e-07, -0.225454104347856, -0.263621554463495, 8.36407794531158e-08, -0.113483983408163, 0, 0, 0, 0, 0, 0, 3.46075402512475e-06, -0.110381948293573, 0.307579263211989, 3.45735101980399e-06, 0.202317647592801, -0.559555950665255, -0.526854552077773, -1.89289660499887e-08, -0.279346959872841, 1.01218869370521, -1.00946816801557e-07, 0.493215894783265, 0, 0, 0, 0, 0, 0, 4.20970978594909e-06, 0.0150306409342169, -0.0559589106239835, 4.20372569566555e-06, -0.0120500152128262, 0.0528635671346664, +0.271666666666666, 0.00333333333333335, 32.7939229130523, 5.25299229439224, 21.2081089542117, -0.51214278473737, -1.88825203178462e-07, -0.22540952440259, -0.263866398731348, 8.3270202486107e-08, -0.113535714102434, 0, 0, 0, 0, 0, 0, 3.46921746978872e-06, -0.110887110471772, 0.306785847285027, 3.46604004406734e-06, 0.202904120395467, -0.559390689117965, -0.527421086118392, -1.98748540291933e-08, -0.279600124560725, 1.02077677823593, -1.04051625117841e-07, 0.498657534646984, 0, 0, 0, 0, 0, 0, 4.22383454734706e-06, 0.017355393699223, -0.0697225743695985, 4.21879580521144e-06, -0.0159038075483681, 0.0735408235396759, +0.274999999999999, 0.00333333333333335, 32.5805070491346, 5.32094014312119, 20.9968172156916, -0.513173758302375, -1.91487782197701e-07, -0.22545445765229, -0.264383410449745, 8.30721016838437e-08, -0.113756954394494, 0, 0, 0, 0, 0, 0, 3.47763640129645e-06, -0.111402130014892, 0.306006986869436, 3.4747290683307e-06, 0.203490593198134, -0.559225427570677, -0.528426415451722, -2.36539428082578e-08, -0.280398032349234, 1.03336415282126, -1.05874542327797e-07, 0.506239866260228, 0, 0, 0, 0, 0, 0, 4.23785166525061e-06, 0.0196387859138073, -0.08330724593909, 4.23394144116426e-06, -0.0197967111967939, 0.0944010348998901, +0.278333333333333, 0.00333333333333335, 32.346156379605, 5.39040273826435, 20.7658754284223, -0.514900097018647, -1.97281131408636e-07, -0.226055919604476, -0.264847843203929, 8.28935312187157e-08, -0.113945879596562, 0, 0, 0, 0, 0, 0, 3.48607615438462e-06, -0.111885699547547, 0.30513941547866, 3.48342632724087e-06, 0.204053021639915, -0.558995734866496, -0.529687673399837, -2.88691172239868e-08, -0.281537402693389, 1.04752563943453, -1.06728677947948e-07, 0.514458030745632, 0, 0, 0, 0, 0, 0, 4.25196063351508e-06, 0.0219853535373337, -0.0971996946011252, 4.24911617906967e-06, -0.023665942161652, 0.11516561755552, +0.281666666666666, 0.00333333333333335, 32.0904251885492, 5.46241311870769, 20.5144176178111, -0.516488100980484, -2.02971610572929e-07, -0.226535117799242, -0.264524862576836, 8.22742668743682e-08, -0.113811036216937, 0, 0, 0, 0, 0, 0, 3.49458539048847e-06, -0.112220294847574, 0.303889884083002, 3.49214127464083e-06, 0.204563801426778, -0.558627640372215, -0.530991830204561, -3.33838601978601e-08, -0.282584822338976, 1.06057721709786, -1.07530912419718e-07, 0.521854845395902, 0, 0, 0, 0, 0, 0, 4.26637897341348e-06, 0.0245785418783994, -0.112255021961202, 4.26407619203259e-06, -0.0273165852105223, 0.134934025214177, +0.284999999999999, 0.0033333333333333, 31.8373379800428, 5.53369065058504, 20.2636565856442, -0.517797047558081, -2.04962296886847e-07, -0.226605868150002, -0.263907460144342, 8.13620260375929e-08, -0.11352572907705, 0, 0, 0, 0, 0, 0, 3.50267681070895e-06, -0.112427701587252, 0.30234023465447, 3.50085802442472e-06, 0.205073332359487, -0.558255877184061, -0.532833627439845, -3.44179218809174e-08, -0.283395518062304, 1.06756457361218, -1.08986889847209e-07, 0.525490016778536, 0, 0, 0, 0, 0, 0, 4.28036724715047e-06, 0.0274266843494326, -0.128453018486981, 4.27738967239334e-06, -0.0305151173435819, 0.152630597677265, +0.288333333333333, 0.00333333333333335, 31.5953620931665, 5.60504289930727, 20.0160697492697, -0.519026409582017, -2.05125738708848e-07, -0.226552901530428, -0.263502378177538, 8.04195347936162e-08, -0.113343763438917, 0, 0, 0, 0, 0, 0, 3.50947767015027e-06, -0.11220362526322, 0.299686039502719, 3.50993951130186e-06, 0.20554366150395, -0.557747134075099, -0.534850028613243, -3.49083546495896e-08, -0.284272009879196, 1.07386630205254, -1.10177780455631e-07, 0.528676904595274, 0, 0, 0, 0, 0, 0, 4.29410625185023e-06, 0.0309105428748247, -0.147640510058099, 4.29052269806885e-06, -0.0335180758273749, 0.169486249736277, +0.291666666666666, 0.00333333333333335, 31.3704082323133, 5.67835627637018, 19.7792246854978, -0.520972786410804, -2.05682912362821e-07, -0.227175694405689, -0.26328540331581, 7.92109202032552e-08, -0.11342171351841, 0, 0, 0, 0, 0, 0, 3.51637398002736e-06, -0.111883073049146, 0.29675133932891, 3.51891604929415e-06, 0.205845168051977, -0.556746530659787, -0.536889371684347, -3.65492085691891e-08, -0.285270064645853, 1.07923372070026, -1.11630979903987e-07, 0.531587423454609, 0, 0, 0, 0, 0, 0, 4.30830414735017e-06, 0.0345800957396365, -0.167755129342845, 4.30394933076513e-06, -0.0364900609906452, 0.186242706995742, +0.294999999999999, 0.00333333333333335, 31.1515608926251, 5.75185049674746, 19.5464821579285, -0.52373239232328, -2.0677401324339e-07, -0.228568169699692, -0.263945405147852, 7.83409726654792e-08, -0.114314511693085, 0, 0, 0, 0, 0, 0, 3.52320280482746e-06, -0.111424262729641, 0.293431151080158, 3.52513064299794e-06, 0.20567251362022, -0.554377643868278, -0.538911182933387, -3.91078386375689e-08, -0.286315178168875, 1.08381201432551, -1.13450608156293e-07, 0.534256814061658, 0, 0, 0, 0, 0, 0, 4.32264514805015e-06, 0.0383738135237874, -0.188462306486826, 4.31606288929359e-06, -0.0387839947708615, 0.200079649588726, +0.298333333333333, 0.00333333333333335, 30.9336873410381, 5.8254583851589, 19.3141345128984, -0.526536183283423, -2.07848414843296e-07, -0.229945217612992, -0.264454176339281, 7.71030437274449e-08, -0.115147744813013, 0, 0, 0, 0, 0, 0, 3.528355479709e-06, -0.109486611441326, 0.285995673157881, 3.53069026794669e-06, 0.205508248636702, -0.551983585167854, -0.541025532464017, -4.17419510243887e-08, -0.287409203349684, 1.08837153097651, -1.15186855057953e-07, 0.536886420954112, 0, 0, 0, 0, 0, 0, 4.3363116653418e-06, 0.0442330443932253, -0.218879903316641, 4.32495235512863e-06, -0.0392753436053212, 0.206177300683743, +0.301666666666666, 0.00333333333333335, 30.7109172835182, 5.97223134399769, 19.0668944289535, -0.529407720006228, -2.08838555921125e-07, -0.231333504035166, -0.264922749981728, 7.58165337675528e-08, -0.115958411020634, 0, 0, 0, 0, 0, 0, 3.53024021590112e-06, -0.106867856464101, 0.276644692139707, 3.53452542577919e-06, 0.20594379593609, -0.550893923597368, -0.542674806440599, -4.49725470344697e-08, -0.288143251342788, 1.09108790015804, -1.17666770625713e-07, 0.538958241101254, 0, 0, 0, 0, 0, 0, 4.34566893843487e-06, 0.0515625184643248, -0.256044686408139, 4.33500830650212e-06, -0.0400238128707916, 0.213453058659032, +0.305, 0.00333333333333335, 29.450219720126, 6.34965484560669, 17.8567426861487, -0.532786133449194, -2.08891929005482e-07, -0.232903590853783, -0.265777135519763, 7.4854259166649e-08, -0.116977864610757, 0, 0, 0, 0, 0, 0, 3.53239164442556e-06, -0.10413460434141, 0.267092494618369, 3.53763859395957e-06, 0.206643546075185, -0.550401657012848, -0.54349030835614, -4.92577002966979e-08, -0.288237891789066, 1.09138070811066, -1.21129598714069e-07, 0.540297588773016, 0, 0, 0, 0, 0, 0, 4.35791980499115e-06, 0.058120745090632, -0.289693988455308, 4.34466995530515e-06, -0.0407928266542235, 0.220811876914868, +0.308333333333333, 0.00333333333333335, 1.79650521577968, 6.68499742653257, -7.1532601891247, -0.539228940627609, -2.09364854381644e-07, -0.236797255091688, -0.268664700221811, 7.47708667710061e-08, -0.119192658776543, 0, 0, 0, 0, 0, 0, 3.53494076582142e-06, -0.1008729477765, 0.256014183672413, 3.53752447506107e-06, 0.205957914479671, -0.545788670295497, -0.545014066422937, -5.43114498275631e-08, -0.288731601893789, 1.09126443760301, -1.2600641291471e-07, 0.541998064092481, 0, 0, 0, 0, 0, 0, 4.37382684445457e-06, 0.0637343571968328, -0.319319952027323, 4.35277451995273e-06, -0.0410927126333262, 0.226494495441403, +0.311666666666666, 0.0033333333333333, -0.243429601964934, 6.6659413602803, -8.97198928215504, -0.549465397517507, -2.11417046633082e-07, -0.242215173571235, -0.273106463878878, 7.25229357891153e-08, -0.122278116242404, 0, 0, 0, 0, 0, 0, 3.52655141234812e-06, -0.117190568925967, 0.287785130317315, 3.53602975769549e-06, 0.203912777411424, -0.537369837899545, -0.547285520365425, -5.95842257776814e-08, -0.28956984892335, 1.09355062847991, -1.35126833984571e-07, 0.546305041374463, 0, 0, 0, 0, 0, 0, 4.37875225758356e-06, 0.05406619425802, -0.284830374519443, 4.36596560156132e-06, -0.0668629577954415, 0.354562460939238, +0.315, 0.00333333333333335, -1.68080660782209, 6.64724162374507, -10.2158203322145, -0.562436339763425, -2.15995879650685e-07, -0.247067237069993, -0.276668078335164, 7.01650560030233e-08, -0.123973793681964, 0, 0, 0, 0, 0, 0, 3.53238042817867e-06, -0.119265778766847, 0.290269078806241, 3.53641033032467e-06, 0.210927032905051, -0.551540337973582, -0.550704373409672, -6.39640634933386e-08, -0.291174505542433, 1.09994220451872, -1.44101600297834e-07, 0.551726147028138, 0, 0, 0, 0, 0, 0, 4.3911915156284e-06, 0.0544416378699123, -0.289361947380182, 4.37873855024465e-06, -0.0723811426594161, 0.383005575194295, +0.318333333333333, 0.00333333333333335, -3.2217247295614, 6.63385208635816, -11.5025076741459, -0.572849727532773, -2.22555888314669e-07, -0.250568523366747, -0.275550327779683, 6.80136880635682e-08, -0.122515790245419, 0, 0, 0, 0, 0, 0, 3.52852399466008e-06, -0.123616705198541, 0.298902285659046, 3.52430626582713e-06, 0.218605513578623, -0.56990402239648, -0.552971698171503, -7.14406215147812e-08, -0.290831050152953, 1.0963365732836, -1.53691164928917e-07, 0.548417421775624, 0, 0, 0, 0, 0, 0, 4.38785855772716e-06, 0.0487299295932409, -0.263289372881934, 4.37739217445655e-06, -0.0776601102642684, 0.40887069794597, +0.321666666666666, 0.00333333333333335, -4.57694692924682, 6.62451023268131, -12.7079931755389, -0.575301651851679, -2.27482666316861e-07, -0.250664896472881, -0.274274669394455, 6.32400859212918e-08, -0.121701569199556, 0, 0, 0, 0, 0, 0, 3.51753108298158e-06, -0.125583287937183, 0.304316764917278, 3.50916742573982e-06, 0.220615369269574, -0.575905266994633, -0.550498911926272, -7.75417769598418e-08, -0.289103744569997, 1.08943755611917, -1.55009084053201e-07, 0.544291868391234, 0, 0, 0, 0, 0, 0, 4.37309182384253e-06, 0.0451668439044811, -0.245121395848619, 4.36115189779538e-06, -0.0767165170227828, 0.403038059566943, +0.325, 0.00333333333333335, -5.93293794531249, 6.61719894597164, -13.9171496904822, -0.572449479914826, -2.30578303081497e-07, -0.24962067866415, -0.272860468021255, 6.17923663370588e-08, -0.121097192937858, 0, 0, 0, 0, 0, 0, 3.50625742628664e-06, -0.1250000191656, 0.304013063103536, 3.49406286960164e-06, 0.222634629549749, -0.581935182517262, -0.545817874514582, -8.25363514740608e-08, -0.286768806935855, 1.08169655704022, -1.53578597749298e-07, 0.540052197852215, 0, 0, 0, 0, 0, 0, 4.35842485287521e-06, 0.0426000877432087, -0.230991619801048, 4.34355503671428e-06, -0.0739137835593685, 0.388082060929537, +0.328333333333333, 0.00333333333333335, -7.29033530418266, 6.60381524136604, -15.1220286837724, -0.569230466475914, -2.33510254720802e-07, -0.248452876886822, -0.271886621736124, 6.10908282072398e-08, -0.120584073435014, 0, 0, 0, 0, 0, 0, 3.49449316314438e-06, -0.123908502229852, 0.30234117786644, 3.47907987283695e-06, 0.224579205170873, -0.587800056282913, -0.541150175464682, -8.73515587289173e-08, -0.284438275752343, 1.07405649703278, -1.52106092862906e-07, 0.535849658017341, 0, 0, 0, 0, 0, 0, 4.34338738565649e-06, 0.0401197767931194, -0.217251629613208, 4.3258908069602e-06, -0.0710977311927875, 0.373066815693816, +0.331666666666666, 0.00333333333333335, -9.14263147624786, 6.59355929690102, -16.6477401793607, -0.56668378526473, -2.35737054663764e-07, -0.247502399220095, -0.271044331936177, 6.05215591350888e-08, -0.120030339919826, 0, 0, 0, 0, 0, 0, 3.48272597015071e-06, -0.122817421436755, 0.300669819996475, 3.46446172717981e-06, 0.22630340453432, -0.593162880345903, -0.53791860739734, -8.88506573644529e-08, -0.282566787949427, 1.06818109177591, -1.51357119008431e-07, 0.532682433822537, 0, 0, 0, 0, 0, 0, 4.32834479230844e-06, 0.0376406445078141, -0.203516910450879, 4.30822657720611e-06, -0.0682816788262062, 0.358051570458093, +0.335, 0.00333333333333335, -11.5662916804265, 6.58335909675005, -18.5369105891504, -0.565764083461285, -2.35637407879123e-07, -0.247057869120356, -0.27020223226786, 5.99524810575977e-08, -0.119476547505632, 0, 0, 0, 0, 0, 0, 3.47095877715705e-06, -0.121726340643658, 0.298998462126511, 3.45194724790297e-06, 0.226628437000909, -0.595282763961561, -0.535262332178301, -8.9112389365963e-08, -0.280882514503677, 1.06286772598072, -1.50944169164845e-07, 0.529859537080189, 0, 0, 0, 0, 0, 0, 4.31330219896038e-06, 0.0351615122225089, -0.189782191288552, 4.29056234745203e-06, -0.0654656264596245, 0.343036325222369, +0.338333333333333, 0.00333333333333335, -13.7867804113886, 6.5715551738091, -20.2436967466496, -0.56499429569017, -2.35313101220801e-07, -0.246660086621472, -0.269321791989284, 5.9405798863769e-08, -0.118881156241, 0, 0, 0, 0, 0, 0, 3.4591966664945e-06, -0.120666806582323, 0.29741075275754, 3.44008950269055e-06, 0.226433730697358, -0.596222519995006, -0.532606056959262, -8.93741213674732e-08, -0.279198241057927, 1.05755436018553, -1.5053121932126e-07, 0.52703664033784, 0, 0, 0, 0, 0, 0, 4.29824293093371e-06, 0.0326765927789254, -0.176019726459681, 4.27323395444376e-06, -0.0627480247747799, 0.328438987130628, +0.341666666666666, 0.0033333333333333, -16.2466387324931, 6.55795244294599, -22.1084272420567, -0.564224507919054, -2.3498879456248e-07, -0.246262304122588, -0.26821771075232, 5.8955840050575e-08, -0.118034724244603, 0, 0, 0, 0, 0, 0, 3.44779244192498e-06, -0.120376307548007, 0.29788752526219, 3.42831229661913e-06, 0.226243102889746, -0.597169926668235, -0.529949781740223, -8.96358533689834e-08, -0.277513967612178, 1.05224099439034, -1.50118269477674e-07, 0.524213743595492, 0, 0, 0, 0, 0, 0, 4.28201644512161e-06, 0.0296506117241586, -0.159662170101171, 4.25720884869696e-06, -0.0603786147089602, 0.315326818501076, +0.345, 0.00333333333333335, -20.2805759147945, 6.54314728204773, -25.0539183111181, -0.563496664394648, -2.345471130057e-07, -0.245877109914481, -0.266881105610862, 5.84670552938209e-08, -0.117115260199789, 0, 0, 0, 0, 0, 0, 3.43702147102208e-06, -0.120726755679071, 0.300128346197267, 3.41721826992957e-06, 0.226241346521846, -0.598575371357986, -0.527037785620928, -8.97757739872776e-08, -0.275554270221213, 1.04660916703047, -1.49835117733045e-07, 0.521392075284709, 0, 0, 0, 0, 0, 0, 4.26638717915044e-06, 0.0263905472505315, -0.142163742177163, 4.24106662821101e-06, -0.0579718251910789, 0.302029996116968, +0.348333333333333, 0.00333333333333335, -24.6380203940482, 6.52880931047457, -28.2131208407168, -0.562993517349076, -2.32728227591105e-07, -0.245403101148387, -0.265607499039582, 5.78427334004792e-08, -0.116415774980713, 0, 0, 0, 0, 0, 0, 3.42571913105128e-06, -0.121056429649079, 0.302400437382152, 3.40409819565771e-06, 0.227266209070181, -0.602629845136777, -0.523906508361801, -8.97135875427827e-08, -0.273242342990591, 1.039748659468, -1.50349239467523e-07, 0.518537719843979, 0, 0, 0, 0, 0, 0, 4.25051816232541e-06, 0.0229777350590764, -0.123801362682177, 4.22405134599649e-06, -0.0553821808231583, 0.287813571313485, +0.351666666666666, 0.00333333333333335, -29.0069048363286, 6.51516016248081, -31.3796273203897, -0.562629015842527, -2.30546211730828e-07, -0.244909752636977, -0.26450024938414, 5.71887083267271e-08, -0.115849236703373, 0, 0, 0, 0, 0, 0, 3.41404810741704e-06, -0.121307965417315, 0.304526071384301, 3.39305360272725e-06, 0.227502546875141, -0.604506018522624, -0.521143120332633, -8.95260616445163e-08, -0.271154339673528, 1.03280704286607, -1.5101567677225e-07, 0.515631761659988, 0, 0, 0, 0, 0, 0, 4.23454190234785e-06, 0.019513356162058, -0.105155095286342, 4.20651964343672e-06, -0.0526243913052912, 0.272745452472081, +0.355, 0.00333333333333335, -33.3166755536381, 6.50778979697368, -34.521630049231, -0.563176184687495, -2.29090332413295e-07, -0.245132186615365, -0.263382161976386, 5.64764933080328e-08, -0.115257831586109, 0, 0, 0, 0, 0, 0, 3.40237378799789e-06, -0.121558979427079, 0.306650765842998, 3.38212828648538e-06, 0.227692547185853, -0.60625614916114, -0.519354587705958, -8.88533600207151e-08, -0.269774025605609, 1.02648404027982, -1.51862429129423e-07, 0.512878573791577, 0, 0, 0, 0, 0, 0, 4.21856519411413e-06, 0.0160494904146058, -0.0865107610721882, 4.18897999747666e-06, -0.049863728860439, 0.257662962000955, +0.358333333333333, 0.00333333333333335, -37.4448562171521, 6.48336539646168, -37.5464239771751, -0.564166314632204, -2.27988822127323e-07, -0.245703547004427, -0.262252066609556, 5.56998052826396e-08, -0.114638874630834, 0, 0, 0, 0, 0, 0, 3.39069946857873e-06, -0.121809993436842, 0.308775460301694, 3.37173275572533e-06, 0.227576857800936, -0.60727497040864, -0.517657702240144, -8.81349207129656e-08, -0.26846036054694, 1.02020846214203, -1.52723249479257e-07, 0.51013737080597, 0, 0, 0, 0, 0, 0, 4.2025884858804e-06, 0.0125856246671535, -0.067866426858034, 4.17144035151661e-06, -0.0471030664155881, 0.242580471529834, +0.361666666666666, 0.00333333333333335, -41.2180154518626, 6.45242728626012, -40.2711221194689, -0.565168218560601, -2.26926942930696e-07, -0.246291415770532, -0.261121926482515, 5.49231422295934e-08, -0.114019907505574, 0, 0, 0, 0, 0, 0, 3.37902514915958e-06, -0.122061007446605, 0.310900154760391, 3.36195187676812e-06, 0.227106510296883, -0.607445333834912, -0.516048124435592, -8.75274426474347e-08, -0.267211076509203, 1.01382039732886, -1.53378819033661e-07, 0.507269350521066, 0, 0, 0, 0, 0, 0, 4.18661177764667e-06, 0.00912175891970127, -0.0492220926438802, 4.15390070555655e-06, -0.0443424039707369, 0.227497981058712, +0.365, 0.00333333333333335, -38.8381872505967, 6.64518282502881, -37.9122465279219, -0.566248586182632, -2.26129171595502e-07, -0.246989298978047, -0.259982146547398, 5.41639007350813e-08, -0.11340295060251, 0, 0, 0, 0, 0, 0, 3.36735082974043e-06, -0.122312021456368, 0.313024849219087, 3.35217183088243e-06, 0.226635682105111, -0.607614547299482, -0.514588347698298, -8.7110350079214e-08, -0.266072256381591, 1.00723932970491, -1.53682222606687e-07, 0.50418373917363, 0, 0, 0, 0, 0, 0, 4.17063506941294e-06, 0.00565789317225007, -0.0305777584297314, 4.1363610595965e-06, -0.0415817415258855, 0.212415490587589, +0.368333333333333, 0.0033333333333333, -39.4954957902608, 7.37213263708699, -38.0429349985884, -0.567286995598019, -2.25469337297577e-07, -0.247693618849228, -0.25883486957449, 5.34182082740863e-08, -0.112787557082416, 0, 0, 0, 0, 0, 0, 3.35567651032128e-06, -0.122563035466131, 0.315149543677783, 3.3423909645575e-06, 0.226161233131199, -0.607775058130391, -0.513134152423525, -8.68012525028624e-08, -0.264974197332066, 1.00078917909272, -1.53815514890127e-07, 0.501085418797614, 0, 0, 0, 0, 0, 0, 4.15465836117922e-06, 0.00219402742479871, -0.011933424215582, 4.11882141363645e-06, -0.0388210790810342, 0.197333000116467, +0.371666666666666, 0.00333333333333335, -39.5353153917728, 7.46600164160607, -37.4939870719283, -0.568068879496233, -2.25206720841636e-07, -0.248332123738899, -0.257697511601454, 5.27640671729066e-08, -0.112198029468106, 0, 0, 0, 0, 0, 0, 3.34400219090212e-06, -0.122814049475894, 0.31727423813648, 3.33314221244159e-06, 0.225666040205521, -0.607862966956887, -0.511690662780431, -8.67638723002262e-08, -0.263978436300555, 0.994605524943699, -1.53632568517856e-07, 0.497973218932249, 0, 0, 0, 0, 0, 0, 4.13868165294549e-06, -0.00126983832265364, 0.0067109099985725, 4.10128176767639e-06, -0.0360604166361829, 0.182250509645344, +0.375, 0.00333333333333335, -38.6770679614764, 7.55546840592562, -36.3633702598504, -0.581249628047778, -2.24090725648906e-07, -0.259976732902493, -0.253730598529825, 5.03743850019667e-08, -0.108742434225766, 0, 0, 0, 0, 0, 0, 3.331617152094e-06, -0.124314677440515, 0.322514154662563, 3.33598834978766e-06, 0.223642399544796, -0.601247965023314, -0.508454589903702, -8.78813226973722e-08, -0.261665160071436, 0.992508406311269, -1.51485255694977e-07, 0.495078433150885, 0, 0, 0, 0, 0, 0, 4.13140779293335e-06, -0.00722673497850959, 0.0378680092822314, 4.08486367662705e-06, -0.036715889877233, 0.181835729343266, +0.378333333333333, 0.00333333333333335, -36.0466612155818, 7.65422157749345, -34.0408821590091, -0.602907309000779, -2.24465041827692e-07, -0.268581967973372, -0.251114289862394, 4.92206813633927e-08, -0.106040346140741, 0, 0, 0, 0, 0, 0, 3.33113994501557e-06, -0.133039415293418, 0.340558152502805, 3.34411104967995e-06, 0.220995245830028, -0.591954347834152, -0.498762016778701, -8.92211073996911e-08, -0.260519926330118, 0.987676454872116, -1.5123357656688e-07, 0.486741662752671, 0, 0, 0, 0, 0, 0, 4.14281044663687e-06, -0.0104263336439234, 0.0500234204805253, 4.07744609794887e-06, -0.040814869598302, 0.200837954496723, +0.381666666666667, 0.00333333333333335, -33.7736149523318, 7.75297379602734, -32.0412630190967, -0.603589534716691, -2.2432393044868e-07, -0.268630994600339, -0.251796937359982, 4.90721850100046e-08, -0.106365757726377, 0, 0, 0, 0, 0, 0, 3.34188580861151e-06, -0.133607048736788, 0.340245686977937, 3.35475042591437e-06, 0.221190472031996, -0.590878509365235, -0.499094103023311, -8.93667935872325e-08, -0.261163981067504, 0.993956791134476, -1.51762573496485e-07, 0.489539751168844, 0, 0, 0, 0, 0, 0, 4.15932381198953e-06, -0.00755302808388285, 0.0340807217828567, 4.09313467101045e-06, -0.0438762421931733, 0.217145448319198, +0.385, 0.00333333333333335, -31.7639709457148, 7.85172542895995, -30.2715519830117, -0.604191306469851, -2.24067506727477e-07, -0.268653781389274, -0.252489361287693, 4.91354010456011e-08, -0.106751380442169, 0, 0, 0, 0, 0, 0, 3.35276320880651e-06, -0.13382917473522, 0.339199592249811, 3.36537856968453e-06, 0.221393167550541, -0.589824364824792, -0.499485924897329, -8.94819297780026e-08, -0.261807261141879, 1.00030506939217, -1.52262121973352e-07, 0.492400797964632, 0, 0, 0, 0, 0, 0, 4.17580438966947e-06, -0.00465906128086451, 0.0180579263918247, 4.10933038114097e-06, -0.0468334165932968, 0.232959511854951, +0.388333333333333, 0.00333333333333335, -29.749878893833, 7.95147264417735, -28.500567991532, -0.604842127984408, -2.23844007738527e-07, -0.26868425430335, -0.253182081061305, 4.920502373905e-08, -0.107138825215288, 0, 0, 0, 0, 0, 0, 3.3636406090015e-06, -0.134051300733653, 0.338153497521685, 3.37598942060297e-06, 0.221607362396495, -0.58880361900078, -0.50002577575953, -8.97719556167699e-08, -0.26245110944811, 1.0063196732378, -1.52579687490405e-07, 0.495042544597068, 0, 0, 0, 0, 0, 0, 4.19228496734941e-06, -0.00176509447784613, 0.00203513100079242, 4.12552609127148e-06, -0.0497905909934185, 0.248773575390696, +0.391666666666667, 0.00333333333333335, -27.6973695421239, 8.05337536202271, -26.7182244492931, -0.6067178882155, -2.24442750858818e-07, -0.26890667580184, -0.253911573067514, 4.91623000325653e-08, -0.107550666212109, 0, 0, 0, 0, 0, 0, 3.3745180091965e-06, -0.134273426732085, 0.337107402793559, 3.38660007987741e-06, 0.221821684681064, -0.587783243310261, -0.501442268287835, -9.10976944890841e-08, -0.263098322877121, 1.01055576464809, -1.51927268659371e-07, 0.496515403075353, 0, 0, 0, 0, 0, 0, 4.20876554502934e-06, 0.00112887232517233, -0.0139876643902402, 4.141721801402e-06, -0.0527477653935399, 0.264587638926439, +0.395, 0.00333333333333335, -25.7692062623687, 8.15396096352541, -25.0491771795135, -0.609124241209978, -2.25397655236016e-07, -0.269212241484162, -0.255063838510721, 4.78279203595622e-08, -0.108242992635451, 0, 0, 0, 0, 0, 0, 3.3853954093915e-06, -0.134495552730517, 0.336061308065433, 3.39721830501466e-06, 0.222036459164642, -0.586761515962152, -0.503002962426575, -9.25938011332732e-08, -0.263746089846014, 1.0145298115834, -1.51131933178345e-07, 0.497816038589898, 0, 0, 0, 0, 0, 0, 4.22524612270928e-06, 0.00402283912819096, -0.0300104597812734, 4.15791751153251e-06, -0.0557049397936624, 0.280401702462188, +0.398333333333333, 0.0033333333333333, -24.1613191967492, 8.24277399587136, -23.657258176776, -0.611407594374475, -2.26415456036827e-07, -0.269565759280352, -0.256336241385919, 4.61264972130273e-08, -0.109015023212138, 0, 0, 0, 0, 0, 0, 3.39627280958649e-06, -0.13471767872895, 0.335015213337307, 3.40789065937044e-06, 0.222254468861376, -0.585730118313264, -0.504552938811117, -9.40960735672263e-08, -0.264548194978595, 1.01869721442473, -1.5006393346749e-07, 0.499104783674223, 0, 0, 0, 0, 0, 0, 4.24172670038921e-06, 0.00691680593120931, -0.0460332551723053, 4.17411322166303e-06, -0.0586621141937846, 0.296215765997935, +0.401666666666667, 0.00333333333333341, -22.5664544232371, 8.32850155571741, -22.2761374414592, -0.613146390341984, -2.27711718199325e-07, -0.270131575489647, -0.25785449451184, 4.32335760769614e-08, -0.109844786253299, 0, 0, 0, 0, 0, 0, 3.40715020978149e-06, -0.134939804727382, 0.333969118609182, 3.41859632481865e-06, 0.22246235335308, -0.584671710006273, -0.506081157543525, -9.56108629059676e-08, -0.265663615383672, 1.02321279959684, -1.48504938322295e-07, 0.500372117270309, 0, 0, 0, 0, 0, 0, 4.25820727806915e-06, 0.00981077273422746, -0.0620560505633361, 4.19030893179354e-06, -0.0616192885939059, 0.312029829533678, +0.405, 0.0033333333333333, -20.9760810407484, 8.4142152681847, -20.896705664259, -0.615001608902271, -2.29064818152492e-07, -0.270856588627937, -0.260026471200548, 3.63584313497418e-08, -0.110795373505984, 0, 0, 0, 0, 0, 0, 3.41793604677913e-06, -0.135197019281926, 0.333022748717354, 3.42914869183626e-06, 0.222548103620109, -0.583355616930562, -0.507703696369596, -9.71176238873577e-08, -0.266842684033111, 1.02739881684341, -1.47247082084776e-07, 0.501637916670239, 0, 0, 0, 0, 0, 0, 4.27439249527523e-06, 0.0126029396162773, -0.0775701484192742, 4.2064170808921e-06, -0.0645767334790099, 0.327833062872213, +0.408333333333333, 0.00333333333333341, -19.3907056727952, 8.49924542608671, -19.5184648281242, -0.617293522496801, -2.30458939197396e-07, -0.271897049240627, -0.261309068979626, 3.47102408356711e-08, -0.111671107767959, 0, 0, 0, 0, 0, 0, 3.42860745448418e-06, -0.135514827899777, 0.332254365890588, 3.43941546956637e-06, 0.222632996553793, -0.582059308203292, -0.50957204118619, -9.85894648567885e-08, -0.268150553317046, 1.03067301415081, -1.46813835201037e-07, 0.502854616980002, 0, 0, 0, 0, 0, 0, 4.28998869722894e-06, 0.0152558199589816, -0.0923011592652395, 4.22210119092296e-06, -0.0674604666939191, 0.343310209396963, +0.411666666666667, 0.0033333333333333, -17.8053326664062, 8.5819081605512, -18.1389933875827, -0.619938063524231, -2.31137907842246e-07, -0.273174446539576, -0.262729856802747, 3.26413647537791e-08, -0.11263365640855, 0, 0, 0, 0, 0, 0, 3.43920884607309e-06, -0.135768297530548, 0.331353097243406, 3.45083887635608e-06, 0.221970293803326, -0.579285664467582, -0.511474971514775, -1.01003661628819e-07, -0.269520510571181, 1.03301676017177, -1.46524654867975e-07, 0.503741446254372, 0, 0, 0, 0, 0, 0, 4.30571087808533e-06, 0.0179941293510738, -0.10739414613033, 4.23776816745825e-06, -0.0704646237783004, 0.359319549025907, +0.415, 0.0033333333333333, -16.2164510471649, 8.66673364648901, -16.7582928615789, -0.62284875869259, -2.32420596347296e-07, -0.274797613511242, -0.264054100825284, 3.03144433388427e-08, -0.113557146216, 0, 0, 0, 0, 0, 0, 3.44994562731237e-06, -0.13686857596499, 0.332739745196372, 3.46356599765273e-06, 0.221297160847682, -0.576906025901161, -0.512343320649005, -1.05878315420632e-07, -0.27066857586102, 1.03446403727749, -1.44568924177569e-07, 0.504012298429153, 0, 0, 0, 0, 0, 0, 4.32280660928544e-06, 0.0212713396820959, -0.12494677685853, 4.25381216614925e-06, -0.0749263494945934, 0.381628633919816, +0.418333333333333, 0.00333333333333341, -14.6210830071908, 8.75285242673322, -15.373564432455, -0.625502559376482, -2.33496556470657e-07, -0.276322143598224, -0.264977263307498, 2.68750837943241e-08, -0.114316243274278, 0, 0, 0, 0, 0, 0, 3.46082495585423e-06, -0.138490711403352, 0.335543216099884, 3.47631202968444e-06, 0.220659326148825, -0.574619868535697, -0.512927495564544, -1.11004047216122e-07, -0.271800452657967, 1.0370855937376, -1.43076115128344e-07, 0.504624906736952, 0, 0, 0, 0, 0, 0, 4.34092908991563e-06, 0.0250151960308262, -0.14460586657473, 4.26993782767744e-06, -0.0797769394063195, 0.405620904805192, +0.421666666666667, 0.0033333333333333, -13.0713257153527, 8.83905545473639, -14.0253705558798, -0.62735019718921, -2.34111740436392e-07, -0.278078771551616, -0.265938418505669, 2.22257425006412e-08, -0.115030840002659, 0, 0, 0, 0, 0, 0, 3.47170428439609e-06, -0.140112846841714, 0.338346687003395, 3.4893525304519e-06, 0.219821302677968, -0.57186230760556, -0.514488328917008, -1.19156842707158e-07, -0.274151996998248, 1.04042713023591, -1.4172953180403e-07, 0.505288130735408, 0, 0, 0, 0, 0, 0, 4.35904891531744e-06, 0.0287587319562651, -0.164263229294643, 4.28606348920562e-06, -0.084627529318047, 0.429613175690575, +0.425, 0.00333333333333341, -2.66273279182629, 8.6386892306587, -4.57686168219194, -0.629045355593338, -2.33723693847777e-07, -0.279701532642617, -0.267028115660306, 1.70286450759708e-08, -0.115834210546292, 0, 0, 0, 0, 0, 0, 3.48258361293795e-06, -0.141734982280076, 0.341150157906907, 3.50434389730746e-06, 0.215931062891221, -0.562278062861323, -0.516459552122796, -1.2655258780086e-07, -0.276568482372831, 1.04325214080795, -1.41005607256119e-07, 0.506289711847062, 0, 0, 0, 0, 0, 0, 4.37716874071926e-06, 0.0325022678817042, -0.183920592014557, 4.30218915073381e-06, -0.0894781192297741, 0.453605446575957, +0.428333333333333, 0.0033333333333333, 0.755137240756647, 8.39547020623553, -1.40802022488619, -0.631545510941491, -2.35327437352501e-07, -0.28122737319131, -0.268151025601085, 1.17751867309385e-08, -0.116667884029528, 0, 0, 0, 0, 0, 0, 3.49345939336329e-06, -0.143348656329201, 0.3439311209544, 3.51969774963127e-06, 0.21247304665228, -0.554148287252449, -0.517291386902378, -1.30810981289386e-07, -0.277747324643519, 1.04556968492599, -1.40253606043296e-07, 0.507298286558938, 0, 0, 0, 0, 0, 0, 4.39528942207829e-06, 0.036246014555154, -0.203578988707408, 4.3182813397478e-06, -0.0942732506706378, 0.477355961044557, +0.431666666666667, 0.00333333333333341, -0.0173079604828032, 8.29740481943913, -2.05705749144137, -0.634229047819141, -2.37046004827286e-07, -0.282657837639061, -0.269115118587945, 6.22008398402515e-09, -0.117492330016907, 0, 0, 0, 0, 0, 0, 3.50393923848328e-06, -0.144132691029161, 0.344500178745248, 3.53401830874127e-06, 0.212747576834043, -0.554482889674255, -0.51827328737358, -1.33654774836293e-07, -0.278755286769515, 1.04848774205209, -1.40366032532392e-07, 0.508771989154429, 0, 0, 0, 0, 0, 0, 4.41256566641935e-06, 0.0396177557662563, -0.221502017877251, 4.33375660309951e-06, -0.0979710653756538, 0.49632017110163, +0.435, 0.0033333333333333, -0.793031830102891, 8.19962812994476, -2.70765269537667, -0.632063718030334, -2.42722236479767e-07, -0.281256458908298, -0.268667985672634, -4.25023353651448e-10, -0.118685897997981, 0, 0, 0, 0, 0, 0, 3.51336640638241e-06, -0.137545049656956, 0.329826898138428, 3.54250600846239e-06, 0.207768243916421, -0.542641791721725, -0.517619212612094, -1.37087350925491e-07, -0.278459506410936, 1.04989926092829, -1.44673935251796e-07, 0.512900291286506, 0, 0, 0, 0, 0, 0, 4.42312318900827e-06, 0.0495656841528367, -0.266683209730756, 4.34356468910957e-06, -0.0907514048802816, 0.461685880979929, +0.438333333333334, 0.00333333333333341, -1.56877589870631, 8.10190068671681, -3.35826370485295, -0.626097959729177, -2.45226027005156e-07, -0.279517783145594, -0.265902374286351, -6.63849127253663e-09, -0.117043595269666, 0, 0, 0, 0, 0, 0, 3.51410560732434e-06, -0.120437737377081, 0.294684804536883, 3.5379243631435e-06, 0.206101290853508, -0.540806503977851, -0.515259291546873, -1.46164816974584e-07, -0.276578244270649, 1.05224071538533, -1.33624398739017e-07, 0.515383136972293, 0, 0, 0, 0, 0, 0, 4.41958553940316e-06, 0.0632153494566655, -0.32086562365948, 4.33143791780745e-06, -0.0637296032389082, 0.329361174945139, +0.441666666666667, 0.0033333333333333, -2.3012111933477, 8.00410285382283, -3.98624907351574, -0.625844064440723, -2.39062723179025e-07, -0.280114818966737, -0.260553159992683, -1.43139607555327e-08, -0.113384777908552, 0, 0, 0, 0, 0, 0, 3.50564629060576e-06, -0.124163672545934, 0.307303484867281, 3.53729664161658e-06, 0.208670294308013, -0.550955384330883, -0.510250370371395, -1.5192487363218e-07, -0.272278996460164, 1.05762847815937, -1.29410484279745e-07, 0.514710740805757, 0, 0, 0, 0, 0, 0, 4.40786157191498e-06, 0.0579932700026644, -0.293443241246439, 4.32072405179481e-06, -0.0630359830419444, 0.322196579024604, +0.445, 0.0033333333333333, -2.88723489897828, 7.90608423016809, -4.53783890945129, -0.625767819458912, -2.32621390560083e-07, -0.280602064694674, -0.25528035596738, -2.20027530012092e-08, -0.109912005778109, 0, 0, 0, 0, 0, 0, 3.49767991656699e-06, -0.127215705537749, 0.317666929674407, 3.53610266941991e-06, 0.209799394243046, -0.55707228267234, -0.506401840829366, -1.53743172095174e-07, -0.269029308587281, 1.06052544001585, -1.29238598926465e-07, 0.514368171318816, 0, 0, 0, 0, 0, 0, 4.39435114566672e-06, 0.0530872330643782, -0.267569086683111, 4.31008102347584e-06, -0.0614848074692733, 0.311392101257661, +0.448333333333334, 0.00333333333333341, -3.4612622384851, 7.80826527925769, -5.08323961020927, -0.625591126951367, -2.27896759589775e-07, -0.280855130654744, -0.252098452017374, -2.76836209357885e-08, -0.108088084920141, 0, 0, 0, 0, 0, 0, 3.48954006634062e-06, -0.129656369876826, 0.326304623209895, 3.5355086499535e-06, 0.209577802889479, -0.559424341806316, -0.503670327571756, -1.54906528051745e-07, -0.26653204916059, 1.0600914164276, -1.29473136181313e-07, 0.513545911270376, 0, 0, 0, 0, 0, 0, 4.37987070372108e-06, 0.0487519216788531, -0.244370693078905, 4.29843012942127e-06, -0.0593324222281245, 0.297984358719458, +0.451666666666667, 0.0033333333333333, -3.88365954282557, 7.71008401346652, -5.55300417512252, -0.625402121403902, -2.23227197250323e-07, -0.281128752035504, -0.249321244504364, -3.19956342728307e-08, -0.106386983112909, 0, 0, 0, 0, 0, 0, 3.48084257709657e-06, -0.131897886901249, 0.334577300243978, 3.53319508966156e-06, 0.210525821787954, -0.564409897529473, -0.500937190272315, -1.56080344681061e-07, -0.264042775396845, 1.05965389794738, -1.29704278486583e-07, 0.512717609757691, 0, 0, 0, 0, 0, 0, 4.36694828263539e-06, 0.0446098249571091, -0.221999938568953, 4.28511613558933e-06, -0.0578409881050178, 0.287512949011071, +0.455, 0.00333333333333341, -4.51330482206602, 7.60363641524329, -6.1656720929223, -0.62521301992938, -2.18558063933401e-07, -0.281402533557134, -0.246719911245248, -3.57734168260754e-08, -0.104732331955281, 0, 0, 0, 0, 0, 0, 3.47369859214181e-06, -0.13701411305375, 0.35028306112084, 3.52965797195591e-06, 0.211925815320233, -0.570404684894122, -0.498204002573087, -1.57254485942201e-07, -0.261553749456581, 1.05921637239588, -1.29935413922789e-07, 0.511889296021198, 0, 0, 0, 0, 0, 0, 4.35922409411049e-06, 0.0391634589455876, -0.193718754579909, 4.27203475100768e-06, -0.0574362730111996, 0.281927753130981, +0.458333333333334, 0.0033333333333333, -5.31669766397507, 7.4787015914179, -6.8744373463438, -0.624720403089617, -2.15108813073926e-07, -0.281510357924641, -0.244091296356447, -3.92368986184548e-08, -0.103079045380885, 0, 0, 0, 0, 0, 0, 3.46650625955769e-06, -0.140899256462921, 0.362554049453958, 3.52547375067648e-06, 0.213103162836566, -0.575759725996909, -0.495961344712197, -1.5830461442203e-07, -0.259506216687505, 1.05710547511521, -1.29668160880872e-07, 0.510718879792356, 0, 0, 0, 0, 0, 0, 4.35010506421586e-06, 0.0349155434168544, -0.171114637230049, 4.25797822391452e-06, -0.0547666876419425, 0.266474510550635, +0.461666666666667, 0.00333333333333341, -5.95955577703747, 7.34527092008775, -7.46896088481531, -0.622092878206223, -2.15371104382385e-07, -0.280925952864292, -0.242191493672539, -4.01904308277674e-08, -0.102169497765981, 0, 0, 0, 0, 0, 0, 3.45772677128596e-06, -0.142053196361033, 0.367701275589535, 3.51963494318855e-06, 0.212559808611611, -0.576432156408687, -0.49486937150729, -1.6089104233236e-07, -0.258697251811515, 1.05431404803247, -1.27001559947813e-07, 0.509344295940549, 0, 0, 0, 0, 0, 0, 4.33591724668684e-06, 0.0317154681445786, -0.153301338372203, 4.24362912531826e-06, -0.051038684459883, 0.246354113734658, +0.465, 0.0033333333333333, -6.6650881314666, 7.22510319643179, -8.12566403489521, -0.618541602144006, -2.16284643492973e-07, -0.280200392833405, -0.241231339569606, -4.03232508495296e-08, -0.101876162177324, 0, 0, 0, 0, 0, 0, 3.44907516488691e-06, -0.14289952025079, 0.372015408558777, 3.51358484162628e-06, 0.21161638684498, -0.576028818256789, -0.494135842502768, -1.65440495384338e-07, -0.258469263704051, 1.05179110522932, -1.23589298777531e-07, 0.50807577353448, 0, 0, 0, 0, 0, 0, 4.32201412520079e-06, 0.0287667034477615, -0.136721159994109, 4.22954558450253e-06, -0.0472384072826642, 0.225940630716195, +0.468333333333334, 0.0033333333333333, -7.71912972585704, 7.10539382083708, -9.09746027446928, -0.615954274844169, -2.15411307008933e-07, -0.279500652524867, -0.240506319159913, -4.0492092370656e-08, -0.101677438485383, 0, 0, 0, 0, 0, 0, 3.44048165362549e-06, -0.143702915303229, 0.3761913610714, 3.50598177564933e-06, 0.211216391384906, -0.576882768714136, -0.492963247911107, -1.67657365970805e-07, -0.257663793552829, 1.04837124101086, -1.21422230284935e-07, 0.50700149126285, 0, 0, 0, 0, 0, 0, 4.30809954649525e-06, 0.0260004521687958, -0.121018863524997, 4.21517910689243e-06, -0.0432187440131029, 0.204550392421939, +0.471666666666667, 0.00333333333333341, -8.82977407526536, 6.97969573678257, -10.1139981746414, -0.61408524368348, -2.13549398863652e-07, -0.278838932887188, -0.239779027219451, -4.06602285675679e-08, -0.101476839458129, 0, 0, 0, 0, 0, 0, 3.43123768521607e-06, -0.143728894888218, 0.378428159095843, 3.49736300836001e-06, 0.21116478504007, -0.578565725469215, -0.491473774812089, -1.67911717785953e-07, -0.25631891830489, 1.0448158532013, -1.19497687237271e-07, 0.50592253417035, 0, 0, 0, 0, 0, 0, 4.29328891016832e-06, 0.0237687013763959, -0.107727164567108, 4.19982760172409e-06, -0.0386267301781484, 0.180590493060833, +0.475, 0.0033333333333333, -9.90112661513599, 6.85057875563149, -11.106441985627, -0.612265550443121, -2.12167049872896e-07, -0.278397657391398, -0.23895931149281, -4.07996666128591e-08, -0.101199937000424, 0, 0, 0, 0, 0, 0, 3.42168771882842e-06, -0.143214104691993, 0.379291240314068, 3.48873424348313e-06, 0.21103744828121, -0.580043307810957, -0.489681137267718, -1.67615953001642e-07, -0.254930679436356, 1.04108349688142, -1.17718492227966e-07, 0.504605908069287, 0, 0, 0, 0, 0, 0, 4.27847568600088e-06, 0.0218474925664083, -0.0958966470102841, 4.18440958175835e-06, -0.0339372663602105, 0.156213820531525, +0.478333333333334, 0.00333333333333341, -10.9648815385757, 6.72040275020003, -12.0934655026343, -0.610278358496372, -2.11390368282985e-07, -0.278079152898188, -0.238091327642139, -4.09241171100403e-08, -0.100883185239879, 0, 0, 0, 0, 0, 0, 3.4121532998504e-06, -0.142685625052122, 0.380114284149277, 3.4801070260185e-06, 0.210883420141508, -0.581447816819692, -0.487530005691731, -1.6751663064047e-07, -0.25354908654864, 1.03736895901627, -1.15510922478603e-07, 0.503182837880551, 0, 0, 0, 0, 0, 0, 4.26368710022128e-06, 0.0199472669247635, -0.0841736815052356, 4.16900988100757e-06, -0.0292472588578761, 0.131839428052141, +0.481666666666667, 0.0033333333333333, -12.138340834041, 6.58840616967165, -13.1773938455828, -0.608284504413169, -2.10646420344349e-07, -0.277768581571937, -0.237223343791468, -4.10485676072214e-08, -0.100566433479335, 0, 0, 0, 0, 0, 0, 3.40263089388865e-06, -0.142160610201576, 0.38093973157712, 3.47367490261916e-06, 0.210141001269234, -0.58140043126731, -0.485329469651738, -1.6752754242854e-07, -0.252183095476896, 1.033636470112, -1.13235952131753e-07, 0.501733670067873, 0, 0, 0, 0, 0, 0, 4.24880889666895e-06, 0.0180270850207869, -0.0723659959113559, 4.15367094038646e-06, -0.0245859452474238, 0.107599130522356, +0.485, 0.00333333333333341, -14.3497437524819, 4.52155558302247, -14.7851797123966, -0.606290650329966, -2.09902472405715e-07, -0.277458010245685, -0.236355359940797, -4.11730181044019e-08, -0.10024968171879, 0, 0, 0, 0, 0, 0, 3.39380796853808e-06, -0.14141728371084, 0.38124120920907, 3.47521734785493e-06, 0.207134392422638, -0.575671653228573, -0.483128933611746, -1.67538454216609e-07, -0.250817104405153, 1.02990398120773, -1.10960981784901e-07, 0.500284502255196, 0, 0, 0, 0, 0, 0, 4.23392325098059e-06, 0.0161052458872866, -0.0605512749002161, 4.13894449803237e-06, -0.0199863280220285, 0.0836582699803737, +0.488333333333334, 0.0033333333333333, -13.8160200426352, 4.44314641412055, -14.4196207964167, -0.604296796246764, -2.09158524467079e-07, -0.277147438919434, -0.235465159442777, -4.11534244246706e-08, -0.0999609664276878, 0, 0, 0, 0, 0, 0, 3.39212972584494e-06, -0.13855801966158, 0.37647215567983, 3.47636259979512e-06, 0.205389931449863, -0.573103536716569, -0.480928397571753, -1.67549366004678e-07, -0.24945111333341, 1.02617149230347, -1.0868601143805e-07, 0.498835334442518, 0, 0, 0, 0, 0, 0, 4.22391135272757e-06, 0.0164990177868851, -0.0588005959348893, 4.12953276141738e-06, -0.015972874625787, 0.0625397732096843, +0.491666666666667, 0.00333333333333341, -12.4898384979533, 4.37827149083571, -13.371435860257, -0.602296531968877, -2.08339182781934e-07, -0.276831727039044, -0.230595509003815, -4.20490067017874e-08, -0.0992901984529199, 0, 0, 0, 0, 0, 0, 3.3840773911076e-06, -0.137857343897316, 0.376848282609877, 3.48951888627654e-06, 0.203024302374676, -0.569237805880104, -0.47768251484183, -1.67844562110179e-07, -0.247149371083809, 1.02240269364898, -1.06420317460017e-07, 0.497380403682275, 0, 0, 0, 0, 0, 0, 4.21375102448818e-06, 0.0163621847714771, -0.0547936048673413, 4.1140271232966e-06, -0.0112850021254068, 0.038227294353931, +0.495, 0.0033333333333333, -11.2481839723255, 4.31723752457115, -12.3698488552759, -0.581064801591557, -2.06995690512535e-07, -0.274504763824285, -0.21151538945675, -4.35702602915292e-08, -0.0885815029649391, 0, 0, 0, 0, 0, 0, 3.39278291445827e-06, -0.130289596715388, 0.35972319817184, 3.51711460389713e-06, 0.203789929750823, -0.570864666980368, -0.454142029883848, -1.76464696668454e-07, -0.232801206702128, 1.03012717210119, -7.80672393558195e-08, 0.50904984490422, 0, 0, 0, 0, 0, 0, 4.21826460785907e-06, 0.020976854350216, -0.0736673848085762, 4.11187365253138e-06, 0.00403121552381628, -0.0328296080887349, +0.498333333333334, 0.00333333333333335, -10.1053609156478, 4.26613276584758, -11.4317595138651, -0.558871321227486, -2.08617219353087e-07, -0.273236486046036, -0.204615134897619, -4.34825273871518e-08, -0.0823017858007473, 0, 0, 0, 0, 0, 0, 3.41702212575673e-06, -0.123562138213917, 0.343688814328054, 3.53748707802305e-06, 0.204611990097333, -0.571501414136643, -0.436635392259656, -1.84738194571717e-07, -0.225730703104765, 1.05144710163294, -5.01435962845836e-08, 0.530378418271515, 0, 0, 0, 0, 0, 0, 4.24124485298639e-06, 0.0257293000656776, -0.095762382655428, 4.12660752311148e-06, 0.0130086300534896, -0.0735068166032701, +0.501666666666667, 0.00333333333333341, -9.42294292187733, 4.21452739851473, -10.83132285985, -0.5585366701414, -2.07243855925523e-07, -0.273591017546946, -0.202798975890811, -4.32374707029845e-08, -0.0807092157351797, 0, 0, 0, 0, 0, 0, 3.42912821914931e-06, -0.124087559272841, 0.343061283607688, 3.55169290937958e-06, 0.204657893953498, -0.569971032106904, -0.435353023582911, -1.84964388703449e-07, -0.224953686159543, 1.05620610538478, -4.96660425106296e-08, 0.534006374333617, 0, 0, 0, 0, 0, 0, 4.25721542386785e-06, 0.0275512874180677, -0.106832781154794, 4.14334801527769e-06, 0.00975022809991252, -0.0556620375220761, +0.505000000000001, 0.0033333333333333, -9.16069078283479, 4.16234627815677, -10.5395299242158, -0.558005614366227, -2.06861322131234e-07, -0.273764621534183, -0.20228649744538, -4.29496110558698e-08, -0.0803169913147801, 0, 0, 0, 0, 0, 0, 3.44113832413951e-06, -0.124580976984754, 0.342367884466493, 3.56463556646065e-06, 0.204548841520247, -0.567982775536109, -0.434843308334766, -1.84853660217993e-07, -0.224840903766879, 1.0618990047484, -4.81484127841182e-08, 0.537662649836799, 0, 0, 0, 0, 0, 0, 4.27366202839401e-06, 0.0295328817049714, -0.118724053545921, 4.1596784145359e-06, 0.00632465756726371, -0.0371457039659952, +0.508333333333334, 0.00333333333333341, -8.8805081603635, 4.11306624612204, -10.2437482142012, -0.557457206315672, -2.06762098528282e-07, -0.274020000505676, -0.20185515408888, -4.27383470764474e-08, -0.0799669070349161, 0, 0, 0, 0, 0, 0, 3.45308896400116e-06, -0.124877318639472, 0.341185799440824, 3.57756988433235e-06, 0.204411527493515, -0.565917201388432, -0.434348094964186, -1.84882606939187e-07, -0.224780364146536, 1.06764347274529, -4.66203729640687e-08, 0.54125069500101, 0, 0, 0, 0, 0, 0, 4.29052497662905e-06, 0.0317592859880316, -0.131749069615257, 4.17582192328769e-06, 0.00298104545001492, -0.0189897369826509, +0.511666666666667, 0.0033333333333333, -8.55882872589072, 4.07817380504892, -9.93976238902256, -0.556920161815461, -2.06881947344364e-07, -0.274341125690659, -0.201434066501223, -4.25367650665962e-08, -0.0796221494213073, 0, 0, 0, 0, 0, 0, 3.46503370232789e-06, -0.125154101751917, 0.339955215456601, 3.59050607035122e-06, 0.204262079965744, -0.563819795193882, -0.43388787194505, -1.85248346958947e-07, -0.224844827156862, 1.07339440785768, -4.51182729041466e-08, 0.544847953099697, 0, 0, 0, 0, 0, 0, 4.30742519900248e-06, 0.0340076074550945, -0.144875586722939, 4.19196164283608e-06, -0.000360904961070407, -0.000841076428451858, +0.515000000000001, 0.00333333333333341, -8.15037484947432, 4.04730215822075, -9.56289517862538, -0.556498512853987, -2.06746800145227e-07, -0.274600326849214, -0.201012978913566, -4.23351830567451e-08, -0.0792773918076985, 0, 0, 0, 0, 0, 0, 3.4769908307985e-06, -0.125414785588492, 0.338686152107107, 3.603442074144e-06, 0.204192861969267, -0.561933796115743, -0.433427982815844, -1.85463629892409e-07, -0.224837102144544, 1.07914752135393, -4.37237781951927e-08, 0.548512796773965, 0, 0, 0, 0, 0, 0, 4.32432542137592e-06, 0.036255928922158, -0.158002103830623, 4.20817632212708e-06, -0.00370324474982741, 0.0173121566397623, +0.518333333333334, 0.0033333333333333, -7.70139205045217, 4.01638252593207, -9.15120158427141, -0.556002926446801, -2.0647603401963e-07, -0.274812607045733, -0.200591891325909, -4.21336010468939e-08, -0.0789326341940896, 0, 0, 0, 0, 0, 0, 3.48902545012595e-06, -0.125574780789429, 0.337176429809923, 3.61610541630972e-06, 0.204322015675631, -0.560598610136115, -0.43288113703828, -1.85547916735363e-07, -0.22475248160452, 1.08503718149861, -4.25031744009109e-08, 0.552304244149152, 0, 0, 0, 0, 0, 0, 4.34113344878271e-06, 0.0385459017709606, -0.171305035064571, 4.22486016589624e-06, -0.00704802160901563, 0.0354940085516054, +0.521666666666667, 0.00333333333333341, -7.252299001928, 3.98659660378356, -8.74020075974444, -0.555367307647621, -2.06356012701498e-07, -0.275088010423396, -0.20023162185915, -4.19377325336798e-08, -0.0786013716137735, 0, 0, 0, 0, 0, 0, 3.50107347325873e-06, -0.125717223592288, 0.33562471915664, 3.62877868404732e-06, 0.204474873299149, -0.559321833314424, -0.432062425815245, -1.85811638814278e-07, -0.224659118320875, 1.09101172301562, -4.12977236899237e-08, 0.556108421382014, 0, 0, 0, 0, 0, 0, 4.35780680010535e-06, 0.0408947492549535, -0.184857368645208, 4.24163093079956e-06, -0.0103928374315521, 0.0536791092349068, +0.525000000000001, 0.0033333333333333, -6.80306406345234, 3.96187094127527, -8.32946283926991, -0.554671083074892, -2.06385182631309e-07, -0.275338110572024, -0.200121354344721, -4.175363399002e-08, -0.0783143860651702, 0, 0, 0, 0, 0, 0, 3.51300880801989e-06, -0.12591386381614, 0.334218384329536, 3.64161448268609e-06, 0.204791393821592, -0.558425899663155, -0.431156439487029, -1.86246505323243e-07, -0.224546579747841, 1.09698800765077, -4.03249826857563e-08, 0.559918807426768, 0, 0, 0, 0, 0, 0, 4.37413448261118e-06, 0.0430831763991472, -0.197643382140121, 4.25839621677803e-06, -0.0138306652223992, 0.0722800506933094, +0.528333333333334, 0.0033333333333333, -6.35330407692018, 3.93928807671318, -7.91881171535214, -0.553831483724477, -2.06628061514532e-07, -0.275506771952017, -0.19977266069937, -4.19165677971307e-08, -0.077912477568436, 0, 0, 0, 0, 0, 0, 3.5250168608822e-06, -0.126240119169203, 0.333116051991582, 3.65435389483146e-06, 0.205231476871256, -0.557831865660284, -0.430149123964158, -1.86859365735909e-07, -0.224387207178314, 1.10327391825593, -4.00505886736819e-08, 0.564021035425052, 0, 0, 0, 0, 0, 0, 4.39058252303656e-06, 0.0450118678159129, -0.209270129368971, 4.27542651811378e-06, -0.017508556319945, 0.0920353008453753, +0.531666666666667, 0.00333333333333341, -5.9034949459941, 3.91670521244055, -7.5081499490373, -0.552968552590715, -2.06889913268035e-07, -0.275670390661431, -0.196636515444165, -4.63646918325866e-08, -0.0763904054874619, 0, 0, 0, 0, 0, 0, 3.53688241283949e-06, -0.126621295127883, 0.332158571865951, 3.66979986517808e-06, 0.205891390092605, -0.557710968734698, -0.429122033422108, -1.87489204502031e-07, -0.224229707750338, 1.10963149188345, -3.98597805520731e-08, 0.568190820590683, 0, 0, 0, 0, 0, 0, 4.40709366064084e-06, 0.0468909930309527, -0.220677172584788, 4.29223665413902e-06, -0.0211158549784634, 0.111466485923792, +0.535000000000001, 0.0033333333333333, -5.45316650057818, 3.89412234812353, -7.09719636587408, -0.552274209740674, -2.07129194367502e-07, -0.275970330549067, -0.19189386094091, -5.18781724571828e-08, -0.0741628421808306, 0, 0, 0, 0, 0, 0, 3.55027116276519e-06, -0.12610019809624, 0.328741994988854, 3.69070865313407e-06, 0.20691464585827, -0.558362088007326, -0.428238614650596, -1.88199271101247e-07, -0.224192798780402, 1.11713167249535, -4.02832169246433e-08, 0.572735497928662, 0, 0, 0, 0, 0, 0, 4.42586435295062e-06, 0.0513130270696742, -0.244103753350416, 4.31121465540048e-06, -0.0229631811038717, 0.123362152450439, +0.538333333333334, 0.00333333333333341, -4.99022746063077, 3.87153948290216, -6.67922585068685, -0.552408442798461, -2.06082484883244e-07, -0.277024593487415, -0.186922185735809, -5.73609262110561e-08, -0.0718497843969529, 0, 0, 0, 0, 0, 0, 3.56552103657089e-06, -0.124463392048414, 0.322276713551581, 3.7156815315471e-06, 0.205624044822177, -0.552736096776206, -0.428032259234001, -1.90272229057391e-07, -0.224805851180061, 1.12821489055977, -4.20813495192169e-08, 0.578327820978492, 0, 0, 0, 0, 0, 0, 4.44773087979294e-06, 0.0591717693497096, -0.283793168353586, 4.3317552284317e-06, -0.023558879795501, 0.129908918632035, +0.541666666666667, 0.0033333333333333, -1.52617722179777, 3.83938625764751, -3.57094418671995, -0.552897085815317, -2.04417839973327e-07, -0.278406377168703, -0.18060763523859, -6.26733763402839e-08, -0.0686158654323657, 0, 0, 0, 0, 0, 0, 3.58108528687467e-06, -0.123027901936763, 0.31633934291864, 3.74253995253743e-06, 0.2032133245079, -0.544074007651194, -0.428050702059465, -1.92814163229833e-07, -0.225636069263793, 1.13953276070163, -4.39612324011644e-08, 0.583986833285791, 0, 0, 0, 0, 0, 0, 4.46989820080192e-06, 0.0669097491902152, -0.322920976528501, 4.35306682814902e-06, -0.0245290146255261, 0.138094000554911, +0.545000000000001, 0.00333333333333341, 4.72285109158687, 3.28181772502935, 2.1085445234715, -0.55331621923621, -2.02597109613143e-07, -0.279733043245706, -0.173304501565619, -6.78665707465149e-08, -0.0647090822854136, 0, 0, 0, 0, 0, 0, 3.60032061930182e-06, -0.123979091391794, 0.316662506706283, 3.77415145744041e-06, 0.20139203949502, -0.536732111985757, -0.428029433068332, -1.9537786734211e-07, -0.226437323867116, 1.15087336615231, -4.65066733266772e-08, 0.589683881439101, 0, 0, 0, 0, 0, 0, 4.49526459728196e-06, 0.0731505014954612, -0.355072923857652, 4.37927356962516e-06, -0.0278794083506803, 0.156693494179578, +0.548333333333334, 0.0033333333333333, 4.76637420891389, 2.91035583813701, 2.20375639509255, -0.552960896202283, -1.99555176045382e-07, -0.280549379704609, -0.154166982476434, -7.83464453590692e-08, -0.0583137030336948, 0, 0, 0, 0, 0, 0, 3.62008115412552e-06, -0.125832538533745, 0.31936508721663, 3.81531275209874e-06, 0.197831164770994, -0.525177181980359, -0.427173699309292, -1.98399714510031e-07, -0.226634841465781, 1.16230429084068, -5.08333671265184e-08, 0.595591290317934, 0, 0, 0, 0, 0, 0, 4.52046133905409e-06, 0.0782309792422272, -0.381750306148169, 4.40568596724083e-06, -0.032202667042362, 0.17948511400362, +0.551666666666667, 0.00333333333333341, 4.81686424961517, 2.80962739972536, 2.26778095130855, -0.548212655935182, -1.98897960518329e-07, -0.277786565900965, -0.132402731556896, -7.9424859951219e-08, -0.0478320399381164, 0, 0, 0, 0, 0, 0, 3.64016302101202e-06, -0.130747667724491, 0.33124004088785, 3.85641797187191e-06, 0.193597528324386, -0.518002314687692, -0.419579458472622, -2.04213946716971e-07, -0.220599544927686, 1.17663522176564, -5.63297488263342e-08, 0.601589392395609, 0, 0, 0, 0, 0, 0, 4.54333094485384e-06, 0.0783548890623658, -0.383845421323588, 4.43256141597362e-06, -0.0421604220316596, 0.224979890845106, +0.555000000000001, 0.0033333333333333, 4.87673944237418, 2.77183295217137, 2.32369320223256, -0.521543847900931, -1.81431981172804e-07, -0.2698254964315, -0.105362061913018, -6.85054746385019e-08, -0.0305349816498999, 0, 0, 0, 0, 0, 0, 3.67618698235383e-06, -0.125838812436704, 0.326767307461582, 3.89439501643612e-06, 0.195320820195382, -0.531186231432585, -0.391779735478037, -1.90962229636034e-07, -0.209861321224766, 1.2144198312562, -4.04108912653327e-08, 0.627808434323539, 0, 0, 0, 0, 0, 0, 4.57502533396276e-06, 0.0843316723535251, -0.402832735221619, 4.47270870030404e-06, -0.042401752570319, 0.217298554041307, +0.558333333333334, 0.0033333333333333, 4.93731761087225, 2.7341663607574, 2.37974506843177, -0.497413148962237, -1.79713666344829e-07, -0.262110124771182, -0.0903172511797349, -7.20604917136935e-08, -0.0223916313084741, 0, 0, 0, 0, 0, 0, 3.69624751591852e-06, -0.126716895310389, 0.330676469111233, 3.91771128979655e-06, 0.190734364971047, -0.522094313636641, -0.36505642624316, -1.93442929979771e-07, -0.198427588407025, 1.2576294011119, -2.83494119602019e-08, 0.65510407752231, 0, 0, 0, 0, 0, 0, 4.59538031199555e-06, 0.0845794273240969, -0.402376180361332, 4.49008939810705e-06, -0.0472347498188991, 0.237493025192722, +0.561666666666667, 0.00333333333333341, 4.99789778585246, 2.69650945741224, 2.43580480038071, -0.476429535051231, -1.77679336497423e-07, -0.253305684943891, -0.0682952809366052, -7.38887036416776e-08, -0.00872941146722718, 0, 0, 0, 0, 0, 0, 3.71555968645654e-06, -0.127424983778691, 0.333874724010581, 3.94187027904729e-06, 0.185629193266605, -0.511909135027735, -0.343550428191451, -1.95683262311616e-07, -0.19034138425669, 1.31453056168787, -1.50428880660345e-08, 0.684346481718308, 0, 0, 0, 0, 0, 0, 4.61179732176807e-06, 0.0851271687294454, -0.40316565070152, 4.50600944220389e-06, -0.0505991741382778, 0.250525985202336, +0.565000000000001, 0.0033333333333333, 5.05847796083268, 2.65885255406709, 2.49186453232966, -0.468368799635474, -1.7255157045332e-07, -0.249437671413579, -0.0532290107517045, -7.95688978569471e-08, -0.000572694215413246, 0, 0, 0, 0, 0, 0, 3.72459283120588e-06, -0.124826406005281, 0.329793870409495, 3.9632612362657e-06, 0.179738595005628, -0.499680274510344, -0.335019936624894, -1.97568008187537e-07, -0.18593212361993, 1.3310907921713, -1.56592645300966e-08, 0.690784716010974, 0, 0, 0, 0, 0, 0, 4.6143911026397e-06, 0.0874769215327806, -0.410980107462965, 4.51360352618197e-06, -0.0460601789482088, 0.226308750833652, +0.568333333333334, 0.00333333333333341, 5.11905813581288, 2.62119565072192, 2.5479242642786, -0.460956071075019, -1.67648983566801e-07, -0.245967603331474, -0.0417475958230853, -8.41776246288148e-08, 0.00635046370091326, 0, 0, 0, 0, 0, 0, 3.73310637151664e-06, -0.121748501501087, 0.32452964431363, 3.98465835940305e-06, 0.173843916125033, -0.487441566106933, -0.32690842669946, -1.99547483660725e-07, -0.181710370669618, 1.34605127566163, -1.64904948468853e-08, 0.696730075363027, 0, 0, 0, 0, 0, 0, 4.61862575868818e-06, 0.0910077280068357, -0.423815608691095, 4.51995115563944e-06, -0.0412581310429137, 0.200839934038628, +0.571666666666667, 0.0033333333333333, 5.18104234411005, 2.58374805782683, 2.6048988863639, -0.453589742916156, -1.63103770263498e-07, -0.242523461129328, -0.0321323271012811, -8.68357182087697e-08, 0.01266359085271, 0, 0, 0, 0, 0, 0, 3.73921391342816e-06, -0.118050429974349, 0.317692320349475, 4.00614481225752e-06, 0.167756625401294, -0.474742493531835, -0.318925180554997, -2.01357498407018e-07, -0.177567075434736, 1.35913703133126, -1.66202523130347e-08, 0.702193870326403, 0, 0, 0, 0, 0, 0, 4.61995852877559e-06, 0.0937636848718304, -0.432882958181402, 4.52380969182017e-06, -0.0363890825849105, 0.174992161465757, +0.575000000000001, 0.00333333333333341, 5.24750745795872, 2.54844952010306, 2.66435236688208, -0.446315879371645, -1.59938896564075e-07, -0.239186034186221, -0.0239432260694993, -8.7504695531149e-08, 0.0180555365618479, 0, 0, 0, 0, 0, 0, 3.7451282933176e-06, -0.114638440585343, 0.311643988278883, 4.02243089868472e-06, 0.162384835173098, -0.464029126978666, -0.311663332886888, -2.02224787133936e-07, -0.174018169726625, 1.37121496079501, -1.66569358605226e-08, 0.707415458852393, 0, 0, 0, 0, 0, 0, 4.62144233588744e-06, 0.0961829929678585, -0.440348880014122, 4.52741635129475e-06, -0.0318433018397681, 0.150556888979666, +0.578333333333334, 0.0033333333333333, 5.31348479474123, 2.51420640646979, 2.72245608067026, -0.439383934353865, -1.58442870649144e-07, -0.236287111787761, -0.0203092462530259, -8.62809688618698e-08, 0.0201423712923121, 0, 0, 0, 0, 0, 0, 3.74905801095006e-06, -0.112255900448196, 0.308431808378756, 4.03124313691713e-06, 0.158709822556693, -0.457832755170229, -0.304804620777864, -2.02315739552837e-07, -0.170985809117354, 1.38010686552424, -1.58929773871002e-08, 0.711958870189661, 0, 0, 0, 0, 0, 0, 4.62105603219616e-06, 0.0965062265813657, -0.437931914978821, 4.52899924895676e-06, -0.0279342284825826, 0.128878246768498, +0.581666666666667, 0.0033333333333333, 5.40445995940196, 2.47990810898722, 2.78823269113523, -0.43192069621561, -1.57286725266501e-07, -0.233297912925055, -0.017719894667153, -8.49739908895826e-08, 0.0213349312671166, 0, 0, 0, 0, 0, 0, 3.75378709854652e-06, -0.109954597951854, 0.305446446678274, 4.0339560131155e-06, 0.156884403145813, -0.456138628838347, -0.29698449289873, -2.01853723361996e-07, -0.167564664202624, 1.38920920165119, -1.49890548417114e-08, 0.717577334170574, 0, 0, 0, 0, 0, 0, 4.62049902259624e-06, 0.0964197040296558, -0.43359749148802, 4.53189681190412e-06, -0.0244571855544162, 0.109263099675325, +0.585000000000001, 0.00333333333333341, 5.49631104715005, 2.44033639235383, 2.85574043173214, -0.424047783840019, -1.56339281235177e-07, -0.230118984428248, -0.0148484367734102, -8.3543208261199e-08, 0.0227774321959224, 0, 0, 0, 0, 0, 0, 3.759526508578e-06, -0.10712080698539, 0.301167150375785, 4.03725468949018e-06, 0.155169847179479, -0.454756167305078, -0.288154207001865, -2.01034109292934e-07, -0.163820816727239, 1.39904634987927, -1.34901142836198e-08, 0.724023453601916, 0, 0, 0, 0, 0, 0, 4.62042594724836e-06, 0.0964755424373112, -0.429957766738728, 4.53569652710006e-06, -0.0203506792336873, 0.0868087039477886, +0.588333333333334, 0.0033333333333333, 5.58716371389879, 2.39717438451963, 2.92410681054046, -0.41604186450061, -1.55540182090496e-07, -0.226834510169281, -0.0118388176297708, -8.20330308657929e-08, 0.024357286779795, 0, 0, 0, 0, 0, 0, 3.76535302696153e-06, -0.104166220795753, 0.296588704601549, 4.03977596382677e-06, 0.153866730630256, -0.454393280412248, -0.279379256605332, -2.00268385031114e-07, -0.160123039925713, 1.40886118352038, -1.15795166536439e-08, 0.730425102629581, 0, 0, 0, 0, 0, 0, 4.62173992960014e-06, 0.0972119174006228, -0.42931124853032, 4.53950104751105e-06, -0.0160679189440109, 0.0635547359618989, +0.591666666666668, 0.00333333333333341, 5.67279814811367, 2.35825670743639, 2.9893280275331, -0.408684997512028, -1.54927747561896e-07, -0.22377166742739, -0.00882919848613136, -8.0522853470387e-08, 0.0259371413636677, 0, 0, 0, 0, 0, 0, 3.76867396399492e-06, -0.101472005613034, 0.29263566219311, 4.03749252212213e-06, 0.154888390776326, -0.45964385282056, -0.271068480198511, -1.99276543952689e-07, -0.156577306354393, 1.41774151412617, -8.20456846222156e-09, 0.736218159870383, 0, 0, 0, 0, 0, 0, 4.62125586470754e-06, 0.0980294640638559, -0.428967630145175, 4.53884551075806e-06, -0.0117777483498686, 0.0402624412374236, +0.595000000000001, 0.0033333333333333, 5.75655777592121, 2.32064965572264, 3.05345566430775, -0.401839156544146, -1.54456675755675e-07, -0.220945423995079, -0.00581957934249197, -7.9012676074981e-08, 0.0275169959475403, 0, 0, 0, 0, 0, 0, 3.76564877551444e-06, -0.0999731782262076, 0.291520051008002, 4.03447126269386e-06, 0.156266313686215, -0.465754622947783, -0.263586143025439, -1.97433137306222e-07, -0.153418398766281, 1.42617308178574, -4.17474915268774e-09, 0.741766323929138, 0, 0, 0, 0, 0, 0, 4.61454855943304e-06, 0.0975377948227243, -0.422845340582793, 4.531176328879e-06, -0.00819594732720841, 0.0202574069958517, +0.598333333333334, 0.00333333333333341, 5.45443761691015, 2.27838577238744, 2.81966556812095, -0.396779335920925, -1.53852559265282e-07, -0.21864111864431, -0.00280996019885264, -7.7502498679575e-08, 0.0290968505314129, 0, 0, 0, 0, 0, 0, 3.76053915598532e-06, -0.0989834213666867, 0.291621378877081, 4.02855629467764e-06, 0.157313654870475, -0.47096664887772, -0.257401028507426, -1.95680743418829e-07, -0.150652098993012, 1.43164271753967, -6.21425417756886e-10, 0.745141160066448, 0, 0, 0, 0, 0, 0, 4.60634768078017e-06, 0.0965839324263039, -0.414694198035474, 4.52129049364909e-06, -0.00490487687698743, 0.00153088852293407, +0.601666666666668, 0.0033333333333333, 5.74667882824596, 1.87052143416869, 3.11607670015411, -0.395159530593053, -1.52989057480875e-07, -0.217340331001888, 0.000199658944786726, -7.59923212841691e-08, 0.0306767051152856, 0, 0, 0, 0, 0, 0, 3.75186180228481e-06, -0.0988285118522195, 0.293718174457735, 4.01997734003246e-06, 0.158056658119491, -0.475351278941198, -0.255183794637924, -1.94470017699363e-07, -0.149045271534478, 1.43013144489808, 1.808856983632e-09, 0.743393730190782, 0, 0, 0, 0, 0, 0, 4.59515030262234e-06, 0.0947637816348941, -0.402751088207212, 4.50721950984128e-06, -0.00210309660263013, -0.0150754497927957, +0.605000000000001, 0.00333333333333341, 6.17915077902043, 1.43888233238613, 3.5100568270227, -0.393626422021714, -1.52119018555859e-07, -0.216064834447723, 0.00319828770548758, -7.44795933409317e-08, 0.0322535577488742, 0, 0, 0, 0, 0, 0, 3.74304564145848e-06, -0.0987060831098317, 0.295892606186262, 4.01139838538728e-06, 0.158799661368507, -0.479735909004675, -0.253268834524865, -1.93300556344017e-07, -0.147526772854734, 1.42832722032051, 4.19201125867754e-09, 0.741431345804884, 0, 0, 0, 0, 0, 0, 4.58148192876646e-06, 0.0922292656671389, -0.387681018129899, 4.49299113610411e-06, 0.000680283047523793, -0.0316020549762444, +0.608333333333334, 0.0033333333333333, 6.13302941576867, 1.4438312472285, 3.44373982194652, -0.392093313450375, -1.51248979630843e-07, -0.214789337893557, 0.0341669132524097, -6.76465676553895e-08, 0.036517269077245, 0, 0, 0, 0, 0, 0, 3.73422948063215e-06, -0.098583654367444, 0.298067037914789, 4.01126180923315e-06, 0.164600320127671, -0.49880216481888, -0.223197433537502, -1.8981831251577e-07, -0.120614302771299, 1.42652299574294, 6.57516553372487e-09, 0.739468961418986, 0, 0, 0, 0, 0, 0, 4.56781355491058e-06, 0.0896947496993835, -0.372610948052585, 4.48355850529608e-06, 0.000222971898752402, -0.0348521872805384, +0.611666666666668, 0.0033333333333333, 6.11121942909764, 1.46263229886375, 3.37821723379454, -0.325485114168367, -1.245857758437e-07, -0.155059162530802, 0.135419523951547, -6.34494628090749e-08, 0.0921891848019968, 0, 0, 0, 0, 0, 0, 3.76523257465916e-06, -0.121156420204358, 0.366019073850535, 4.10008520609424e-06, 0.164408797857331, -0.519417175782924, -0.165663487082501, -1.81261110546016e-07, -0.0690685520892796, 1.54993828086657, 5.92934535465467e-08, 0.749805960080154, 0, 0, 0, 0, 0, 0, 4.63386328966637e-06, 0.0771241317406376, -0.30848386779731, 4.5140852424161e-06, -0.0210875331871496, 0.0474652728592502, +0.615000000000001, 0.00333333333333341, 5.99893507106831, 1.45449519003391, 3.28733694338023, -0.26747769385153, -1.43191175715575e-07, -0.139804837011441, 0.152495349185624, -6.53967091603655e-08, 0.105324211783443, 0, 0, 0, 0, 0, 0, 3.8179715663452e-06, -0.10379453614813, 0.330387197593093, 4.14497927877364e-06, 0.147747392950032, -0.483330538970757, -0.120708148505429, -1.95473969605564e-07, -0.0615230287333816, 1.66759521866541, 3.26592442628567e-08, 0.835277779571853, 0, 0, 0, 0, 0, 0, 4.69532638111853e-06, 0.105358793951747, -0.426793997400426, 4.58857266339362e-06, -0.00219576586029891, -0.0441629702111897, +0.618333333333334, 0.0033333333333333, 6.0056427836495, 1.4401753508959, 3.30107285948296, -0.250375763582945, -1.50165131112971e-07, -0.135238583202022, 0.157689071717981, -6.62273344474575e-08, 0.10774704914478, 0, 0, 0, 0, 0, 0, 3.85070168283777e-06, -0.0961702437405331, 0.313285781132116, 4.16033340959019e-06, 0.147017758208396, -0.480708712174102, -0.0966818135934312, -2.04730135973147e-07, -0.0559293441486639, 1.72403981636318, 1.28143434554692e-08, 0.878951982682384, 0, 0, 0, 0, 0, 0, 4.73477988425269e-06, 0.119810091014186, -0.489750889909332, 4.63867460239551e-06, 0.00241200328291873, -0.0654425831283079, +0.621666666666668, 0.00333333333333341, 5.92269916026427, 1.42629095103564, 3.26095044232681, -0.244383652187278, -1.50758026534214e-07, -0.13179854433071, 0.162882232959691, -6.70588150695779e-08, 0.110169625633502, 0, 0, 0, 0, 0, 0, 3.86493156181672e-06, -0.0967105251324717, 0.313379799931302, 4.17576350473771e-06, 0.146378742193636, -0.47829127216424, -0.0903762481610768, -2.06476419915791e-07, -0.0521913050400018, 1.74073188041251, 1.04709957918478e-08, 0.887516023937654, 0, 0, 0, 0, 0, 0, 4.75567472533699e-06, 0.122877880531906, -0.505937560185178, 4.66019428523147e-06, -0.000921991377579281, -0.047820550284111, +0.625000000000001, 0.0033333333333333, 5.83951661848294, 1.41382124947597, 3.21128243230429, -0.238370116935123, -1.51318628966613e-07, -0.128343868468576, 0.168077485578378, -6.78953270182949e-08, 0.112593871656901, 0, 0, 0, 0, 0, 0, 3.8791624477802e-06, -0.0972823132455704, 0.313554706594607, 4.19121246958548e-06, 0.145761898635172, -0.475924830529647, -0.0840559424161707, -2.08204879743045e-07, -0.0484469734287126, 1.75748790143934, 8.07797785970077e-09, 0.896137336219304, 0, 0, 0, 0, 0, 0, 4.77660263107815e-06, 0.125942131873089, -0.5221078079248, 4.6816962796607e-06, -0.0043249734095824, -0.0298849938813764, +0.628333333333334, 0.00333333333333341, 5.81826730004216, 1.40112308674637, 3.18982279821034, -0.232349627129298, -1.51891141393259e-07, -0.124899410571469, 0.173375147600555, -6.8873629297361e-08, 0.115087040929535, 0, 0, 0, 0, 0, 0, 3.89345073678193e-06, -0.097926785585977, 0.313895341799073, 4.20666473445234e-06, 0.145131942186079, -0.473528906724489, -0.0777039837023775, -2.09916541054952e-07, -0.0446980519225462, 1.77439915428039, 5.59084609212391e-09, 0.904902759390825, 0, 0, 0, 0, 0, 0, 4.79749656604775e-06, 0.128951943447073, -0.538040857283058, 4.70339120900083e-06, -0.00794137273217417, -0.0109420595127677, +0.631666666666668, 0.0033333333333333, 5.79433133443402, 1.38782372188051, 3.16809029773941, -0.226333199328056, -1.52475631858465e-07, -0.121461547731683, 0.178748839840225, -6.98284014465882e-08, 0.117615579424034, 0, 0, 0, 0, 0, 0, 3.90774898209544e-06, -0.0985856212961715, 0.314268524170332, 4.22211777977143e-06, 0.144499108103339, -0.471126397822015, -0.0713567356964637, -2.11651328493431e-07, -0.0409580423989482, 1.79131524548215, 3.10028935799516e-09, 0.913672657657224, 0, 0, 0, 0, 0, 0, 4.81833432358253e-06, 0.131901592560589, -0.55371217259886, 4.72512586018144e-06, -0.0115976234031799, 0.0081895140561209, +0.635000000000001, 0.00333333333333341, 5.77008168725231, 1.37634163355862, 3.14629135249053, -0.220316771526814, -1.53060122323671e-07, -0.118023684891897, 0.184211123564579, -7.07544961935473e-08, 0.120152590100277, 0, 0, 0, 0, 0, 0, 3.92204720744406e-06, -0.0992444738414283, 0.314641748459352, 4.23757082509052e-06, 0.143866274020598, -0.468723888919541, -0.0649316248111533, -2.13370121556544e-07, -0.0371485360950698, 1.80823133668391, 6.09732623866346e-10, 0.922442555923623, 0, 0, 0, 0, 0, 0, 4.83917045834887e-06, 0.134853102956357, -0.56939163560935, 4.7468605126316e-06, -0.0152538737074683, 0.0273210859010256, +0.638333333333335, 0.0033333333333333, 5.74584774197818, 1.36566418183531, 3.12454076935897, -0.214119361758525, -1.53610549434686e-07, -0.114425576275614, 0.19092583825284, -7.13646080399917e-08, 0.12290551012635, 0, 0, 0, 0, 0, 0, 3.93639549503803e-06, -0.0999295055911767, 0.315092599549265, 4.25341552489545e-06, 0.143415886384554, -0.466868047322349, -0.0573043482374581, -2.14859264962778e-07, -0.0322645201675487, 1.82535734264684, -1.72751126285897e-09, 0.93121342138844, 0, 0, 0, 0, 0, 0, 4.86016057425695e-06, 0.137811036289263, -0.585103876192718, 4.76869453761418e-06, -0.018968443559158, 0.0466914872312551, +0.641666666666668, 0.0033333333333333, 5.72161379670406, 1.35498673011201, 3.10279018622741, -0.206347718899871, -1.53862576860359e-07, -0.10943377629101, 0.200529544362269, -7.20916351151196e-08, 0.127153674497493, 0, 0, 0, 0, 0, 0, 3.95117301022951e-06, -0.100840651530062, 0.316215615596712, 4.26972858407124e-06, 0.143205207081173, -0.465721479001924, -0.0492105027766702, -2.16350826110901e-07, -0.0269699339537497, 1.84430750581371, -2.73023811187146e-09, 0.939991765235391, 0, 0, 0, 0, 0, 0, 4.88248753823738e-06, 0.140824699628267, -0.601100258799403, 4.79092758369957e-06, -0.0229194381881239, 0.0670265011925753, +0.645000000000001, 0.00333333333333341, 5.69737985142994, 1.3443092783887, 3.08103960309586, -0.195237988582593, -1.53823855780061e-07, -0.101814678932087, 0.217401803883949, -7.32671913125025e-08, 0.134124374579331, 0, 0, 0, 0, 0, 0, 3.97004696931545e-06, -0.0997547079885782, 0.311779923999747, 4.29524580670123e-06, 0.138695529659732, -0.452350464654208, -0.0355900992948289, -2.19843780808525e-07, -0.0174059894701134, 1.8674317989342, -3.46658377008498e-09, 0.949492044907021, 0, 0, 0, 0, 0, 0, 4.90893866800524e-06, 0.146999184558588, -0.632305625702209, 4.81836414095662e-06, -0.0243151994608096, 0.0765861979300451, +0.648333333333335, 0.0033333333333333, 5.67314590615581, 1.3336318266654, 3.0592890199643, -0.17671544152717, -1.5322172580834e-07, -0.0881387724036325, 0.23982214711697, -7.40735385565085e-08, 0.145094932323688, 0, 0, 0, 0, 0, 0, 3.99914065921866e-06, -0.0935754629550517, 0.293057637852006, 4.3269978515758e-06, 0.131270003363143, -0.430758604603413, -0.0189365916365901, -2.24477341975394e-07, -0.00532165537622726, 1.90007206536951, -4.02448743436486e-09, 0.960475901980953, 0, 0, 0, 0, 0, 0, 4.94502945561003e-06, 0.161114387751432, -0.701757204242135, 4.85619309640232e-06, -0.0205939644839736, 0.0646597227394451, +0.651666666666668, 0.00333333333333341, 5.64891196088169, 1.32295437494209, 3.03753843683274, -0.158270474594422, -1.52537096133067e-07, -0.0742110979130672, 0.263187348105383, -7.48868637260687e-08, 0.156542727115496, 0, 0, 0, 0, 0, 0, 4.02834683812157e-06, -0.0872485799975278, 0.273858194323151, 4.35874989645038e-06, 0.123844477066555, -0.409166744552618, -0.00288269167049961, -2.28981941806346e-07, 0.00667718800176822, 1.93228906542479, -3.78268673848869e-09, 0.970610646009906, 0, 0, 0, 0, 0, 0, 4.98133627809397e-06, 0.175516655033297, -0.772664280436654, 4.89341923025765e-06, -0.0167109062291641, 0.0520217451364287, +0.655000000000001, 0.0033333333333333, 5.624611117585, 1.31227692321988, 3.01572777229643, -0.139036471874508, -1.51835775368301e-07, -0.0597447668231111, 0.294863341591198, -7.5861852115427e-08, 0.171707304488464, 0, 0, 0, 0, 0, 0, 4.06130099838548e-06, -0.0807609146528326, 0.25426062201954, 4.39149208233949e-06, 0.116426168527759, -0.387601248181575, 0.0139608424994417, -2.33699107678626e-07, 0.0192266703782533, 1.96547146299194, -3.65156343048607e-09, 0.98105293223806, 0, 0, 0, 0, 0, 0, 5.02104952275423e-06, 0.189750795132842, -0.842731634142189, 4.93554530469393e-06, -0.0126654055884612, 0.0386274121089231, +0.658333333333335, 0.00333333333333341, 5.53708709187726, 1.29730653838329, 2.90878067968951, -0.111115278984223, -1.50868328830442e-07, -0.0392775514783766, 0.33681341779224, -7.69802302078951e-08, 0.190998696928562, 0, 0, 0, 0, 0, 0, 4.10467045829448e-06, -0.0732901871300846, 0.232046536119145, 4.44857603816105e-06, 0.105894632246837, -0.357314542595463, 0.0432722339120807, -2.42212751377203e-07, 0.0410248160878384, 2.00714346682458, -4.76225834054035e-09, 0.994325402364827, 0, 0, 0, 0, 0, 0, 5.07024814018273e-06, 0.204502093548867, -0.915182262644237, 4.98797827164973e-06, -0.00743755680883396, 0.0201330572998553, +0.661666666666668, 0.0033333333333333, 5.77285849286203, 1.1842424445724, 2.89469608587195, -0.069518570317604, -1.47950440956859e-07, -0.00812565195273478, 0.381248291888451, -7.92656246525428e-08, 0.214410848050779, 0, 0, 0, 0, 0, 0, 4.16674796087329e-06, -0.0552082725993927, 0.180098088885539, 4.53129304774528e-06, 0.0864814705331872, -0.30201763045822, 0.0715669735094877, -2.51562950002146e-07, 0.061615153842474, 2.06782842682444, -1.08643960021439e-08, 1.01368757217303, 0, 0, 0, 0, 0, 0, 5.13505342277177e-06, 0.236608765037784, -1.07078567540143, 5.06665250448257e-06, 0.00870336570219267, -0.0438417566432639, +0.665000000000001, 0.00333333333333341, 5.7997513508609, 1.17287454147513, 2.90492257435166, -0.0301069953629216, -1.47399122459646e-07, 0.0167652601217968, 0.40929501760165, -8.14653132643118e-08, 0.230400302466736, 0, 0, 0, 0, 0, 0, 4.22914777594169e-06, -0.046529611430668, 0.153871290592332, 4.59216281630981e-06, 0.0797580627144598, -0.282522443877522, 0.0934700457236009, -2.59654892739159e-07, 0.0741094411484507, 2.1331195752167, -2.25319178466974e-08, 1.04052338098729, 0, 0, 0, 0, 0, 0, 5.19394002845568e-06, 0.253001979213862, -1.15157948943687, 5.13703309901871e-06, 0.0117819142932785, -0.052489811060632, +0.668333333333335, 0.0033333333333333, 5.82307544796743, 1.17477843311598, 2.91286991691825, 0.00799681260111989, -1.50942102111215e-07, 0.0374779609102796, 0.435394406877835, -8.46889191796315e-08, 0.242735102654861, 0, 0, 0, 0, 0, 0, 4.29790114587327e-06, -0.0441862155311185, 0.146201368109908, 4.664457892259e-06, 0.0759990328144359, -0.271975773961701, 0.126785383428838, -2.7544676304154e-07, 0.0931852766967106, 2.1950176285398, -3.79425254253451e-08, 1.06957731771957, 0, 0, 0, 0, 0, 0, 5.26161264754962e-06, 0.257156439257468, -1.17283193514167, 5.21272827274695e-06, 0.0108962924865071, -0.0465429109084545, +0.671666666666668, 0.0033333333333333, 5.84640201339117, 1.1766780068263, 2.92081928512805, 0.0809148186826466, -2.00212531765212e-07, 0.0834119743482708, 0.500817899276238, -1.17469280964116e-07, 0.270568729810021, 0, 0, 0, 0, 0, 0, 4.42035807457985e-06, -0.056433614099673, 0.192307222298319, 4.82496537834417e-06, 0.0754105495592461, -0.28619129154401, 0.191548578706574, -3.32682793511709e-07, 0.135101830359681, 2.29273383019475, -1.07509667917283e-07, 1.10712838220515, 0, 0, 0, 0, 0, 0, 5.38583679564116e-06, 0.234568117471173, -1.05071741815216, 5.34275934328399e-06, -0.00432186602204523, 0.00534649052092563, +0.675000000000001, 0.00333333333333341, 5.8697285788149, 1.17857758053662, 2.92876865333785, 0.154897280120942, -1.94889242018558e-07, 0.110958824953379, 0.531122243816133, -1.19722512332758e-07, 0.285424393939894, 0, 0, 0, 0, 0, 0, 4.50303903976564e-06, -0.0513025533548992, 0.184683255881207, 4.93750851931048e-06, 0.0914762257372495, -0.323824827534587, 0.243409380571191, -3.32247614750531e-07, 0.154765024008771, 2.36862069310324, -1.13598697310096e-07, 1.15439612171762, 0, 0, 0, 0, 0, 0, 5.46118472969341e-06, 0.235318619242141, -1.04745772573112, 5.4234612404614e-06, 0.0021512709833955, -0.0302199797096186, +0.678333333333335, 0.0033333333333333, 5.89356630846657, 1.18054811206111, 2.93701090253756, 0.210836971002469, -1.96571175575851e-07, 0.136294870786878, 0.559084530192719, -1.21212393885588e-07, 0.299106447356904, 0, 0, 0, 0, 0, 0, 4.5988447508076e-06, -0.074687632279499, 0.23674854692216, 5.00218566851421e-06, 0.095751111671625, -0.334100714089906, 0.298285240703378, -3.4037687977391e-07, 0.177093016687426, 2.45685049984028, -1.28511559919532e-07, 1.20957892892072, 0, 0, 0, 0, 0, 0, 5.55029681532787e-06, 0.208925571291131, -0.933489083459114, 5.51260194174925e-06, -0.0240299694041961, 0.0939960225935186, +0.681666666666668, 0.00333333333333341, 5.92050629596503, 1.18270923887952, 2.94710103200295, 0.253644813211208, -1.97663448622709e-07, 0.158474829379784, 0.58341723030238, -1.22613908546611e-07, 0.311571238077575, 0, 0, 0, 0, 0, 0, 4.66335810528656e-06, -0.0807712883184872, 0.250903895373091, 5.06465353098955e-06, 0.1000852700502, -0.344589649376561, 0.333533114601046, -3.47830292908459e-07, 0.194627024206718, 2.51147179194862, -1.37219811609386e-07, 1.23696597084396, 0, 0, 0, 0, 0, 0, 5.6058095791181e-06, 0.19981249750063, -0.892036955182236, 5.56790600128454e-06, -0.02863713248288, 0.11433731336881, +0.685000000000001, 0.0033333333333333, 5.9478704369848, 1.18487310340531, 2.95739056501639, 0.286598049597209, -1.99191831792252e-07, 0.17354481804071, 0.596141961488318, -1.240411491592e-07, 0.318224976280021, 0, 0, 0, 0, 0, 0, 4.71224024985595e-06, -0.0864758667740115, 0.26508294014296, 5.11491940641017e-06, 0.105379323355801, -0.357870368840906, 0.358964286831516, -3.53376106078826e-07, 0.205728919446112, 2.55421147162283, -1.45070046026103e-07, 1.25995443037969, 0, 0, 0, 0, 0, 0, 5.64731464931639e-06, 0.191024031446241, -0.851249336145043, 5.60662969370723e-06, -0.0322177957217843, 0.12908645043985, +0.688333333333335, 0.00333333333333341, 5.97442307495785, 1.18689076277948, 2.96613319791661, 0.316291603727904, -2.00929838526355e-07, 0.18620180447368, 0.606945917238095, -1.25661729005019e-07, 0.323516957217803, 0, 0, 0, 0, 0, 0, 4.75841308075228e-06, -0.0924503808009762, 0.280026159005563, 5.16360838766973e-06, 0.110655888499778, -0.37110861929175, 0.382769263714631, -3.58729709305829e-07, 0.215601364985312, 2.59380833897014, -1.52986935049196e-07, 1.2821788132583, 0, 0, 0, 0, 0, 0, 5.68665650978109e-06, 0.182066359560384, -0.80963237184014, 5.64329971145042e-06, -0.0356877254612416, 0.143329928044709, +0.691666666666668, 0.0033333333333333, 6.00416040240468, 1.18913142981863, 2.9737609926818, 0.345861032604568, -2.02708505384029e-07, 0.198740331240384, 0.618267421596833, -1.27272511573122e-07, 0.329068823163763, 0, 0, 0, 0, 0, 0, 4.80468458043811e-06, -0.0982807784379629, 0.294561613010872, 5.20935165672006e-06, 0.115094674777485, -0.382442811801479, 0.40653352508352, -3.64105154704858e-07, 0.225435470369762, 2.63323495735058, -1.61184943732337e-07, 1.30443561410633, 0, 0, 0, 0, 0, 0, 5.72616849861816e-06, 0.173277024801857, -0.768817235378139, 5.680038688796e-06, -0.039070914002564, 0.157209622008003, +0.695000000000001, 0.0033333333333333, 6.0379214255313, 1.18821232217539, 2.97541998849369, 0.375186155596087, -2.04460375188955e-07, 0.211219702099735, 0.625336948432729, -1.28598621686753e-07, 0.332708639335858, 0, 0, 0, 0, 0, 0, 4.84892535262899e-06, -0.104144204334044, 0.309207970067892, 5.2434600195766e-06, 0.116654655013205, -0.387449118822858, 0.430292453088777, -3.69478860431171e-07, 0.235266269536707, 2.6713795326943, -1.69216405339206e-07, 1.32620042482471, 0, 0, 0, 0, 0, 0, 5.7638306615046e-06, 0.164510886596829, -0.728077229781719, 5.71122193526679e-06, -0.0423578518173183, 0.17057106275541, +0.698333333333335, 0.00333333333333341, 6.10055068111243, 1.18096822032401, 2.98856127504263, 0.394082115067027, -2.05782493729765e-07, 0.219501034279596, 0.627760737863047, -1.29885789061287e-07, 0.333727224050042, 0, 0, 0, 0, 0, 0, 4.87795126622795e-06, -0.108331168047037, 0.320412569255695, 5.27074514554021e-06, 0.117949854677224, -0.39200851441168, 0.447027067731909, -3.73579850470166e-07, 0.242052493873591, 2.69195803138726, -1.75387787615416e-07, 1.33935934909075, 0, 0, 0, 0, 0, 0, 5.78559429849998e-06, 0.157740970228012, -0.69544592765742, 5.72997405972621e-06, -0.043903417082274, 0.175315082889045, +0.701666666666668, 0.0033333333333333, 6.16473196545288, 1.17312215333123, 3.00237847393071, 0.404770826313609, -2.08162927904451e-07, 0.224102618032263, 0.630275832021397, -1.31337393562238e-07, 0.334748537348281, 0, 0, 0, 0, 0, 0, 4.89524105731564e-06, -0.110374576837802, 0.32737545491188, 5.27836058296807e-06, 0.119802780968865, -0.398417706407082, 0.455593788106482, -3.76624120400246e-07, 0.245517466207376, 2.69357174986106, -1.80672558879197e-07, 1.34206889580525, 0, 0, 0, 0, 0, 0, 5.79460028313975e-06, 0.152095296980099, -0.666515720828289, 5.73502310164366e-06, -0.0434915828045234, 0.170273856698513, +0.705000000000001, 0.00333333333333341, 6.23845321073783, 1.15818883489713, 3.02150318116095, 0.406678254363103, -2.10645900706961e-07, 0.224814470561065, 0.632413787981051, -1.32798652141726e-07, 0.33558324551207, 0, 0, 0, 0, 0, 0, 4.89474747044874e-06, -0.112249682464401, 0.33416756568889, 5.2733073350667e-06, 0.120994323925251, -0.403383017090289, 0.456719066483779, -3.77981066746311e-07, 0.245637487004526, 2.6853985603942, -1.84199229151069e-07, 1.33901814980714, 0, 0, 0, 0, 0, 0, 5.79102187263625e-06, 0.1459442454212, -0.635081363679436, 5.7260534358907e-06, -0.0428177514878274, 0.163704787353372, +0.708333333333335, 0.0033333333333333, 6.28573526350495, 1.13124376774938, 3.01014134544424, 0.40750665473684, -2.13123026373331e-07, 0.225074944758877, 0.631517111784056, -1.34256306698642e-07, 0.334924137958455, 0, 0, 0, 0, 0, 0, 4.88857961637738e-06, -0.113951343599172, 0.340656103402728, 5.2663510620679e-06, 0.122071079149724, -0.408058144092606, 0.456487603920068, -3.79147369195428e-07, 0.245148059207504, 2.67562655094637, -1.87720526556437e-07, 1.33509367057564, 0, 0, 0, 0, 0, 0, 5.77701170936982e-06, 0.139563062134089, -0.602418090300243, 5.71322753984739e-06, -0.0420518129133927, 0.156545902428116, +0.711666666666668, 0.00333333333333341, 6.39079011735927, 1.09053497022917, 3.03215483899999, 0.408335055110576, -2.15600152039701e-07, 0.22533541895669, 0.630016352893304, -1.35713243828353e-07, 0.333967667108083, 0, 0, 0, 0, 0, 0, 4.88241176230601e-06, -0.115653004733944, 0.347144641116565, 5.25939478906911e-06, 0.123147834374198, -0.412733271094925, 0.456256141356357, -3.80313671644545e-07, 0.244658631410481, 2.66585454149854, -1.91241823961805e-07, 1.33116919134414, 0, 0, 0, 0, 0, 0, 5.76257779314528e-06, 0.133155754731949, -0.56963367885925, 5.70040164380407e-06, -0.0412858743389581, 0.14938701750286, +0.715000000000001, 0.0033333333333333, 6.49396609327465, 1.05976718387629, 3.08678029114547, 0.409163455484313, -2.18077277706072e-07, 0.225595893154503, 0.628515594002552, -1.37170180958065e-07, 0.33301119625771, 0, 0, 0, 0, 0, 0, 4.87624390823465e-06, -0.117354665868715, 0.353633178830402, 5.25269231648653e-06, 0.124168694987224, -0.417244747503382, 0.456516164860532, -3.81613969930884e-07, 0.244602500385681, 2.65608253205071, -1.94763121367173e-07, 1.32724471211264, 0, 0, 0, 0, 0, 0, 5.74814387692074e-06, 0.126748447329811, -0.536849267418263, 5.68764075447242e-06, -0.0405182891186941, 0.142221912552679, +0.718333333333335, 0.00333333333333341, 6.5567720251177, 1.03277314417413, 3.12554535575927, 0.422978144080711, -2.22283530635502e-07, 0.237319508079652, 0.648416367349101, -1.39128980585014e-07, 0.34090692495341, 0, 0, 0, 0, 0, 0, 4.88978062885797e-06, -0.117157781256695, 0.354486904123683, 5.27223535044611e-06, 0.11941268784142, -0.404841897209028, 0.478950812652447, -3.88957965279162e-07, 0.26409580548607, 2.66096727481399, -2.03023754013819e-07, 1.32497687782595, 0, 0, 0, 0, 0, 0, 5.75039027179034e-06, 0.124619548855842, -0.525180101465022, 5.69945529531521e-06, -0.0391325397984191, 0.132723542393012, +0.721666666666668, 0.0033333333333333, 6.68495683206468, 1.00892410974128, 3.19099327796884, 0.455653082377842, -2.29108140412267e-07, 0.265674579007243, 0.699669299424506, -1.41566133118874e-07, 0.362383686379687, 0, 0, 0, 0, 0, 0, 4.93176477032126e-06, -0.113971388417236, 0.346503089829624, 5.31432574535794e-06, 0.10929888997471, -0.376781100007694, 0.517195288019531, -4.00983784844837e-07, 0.297497556382565, 2.6869822426484, -2.18784523463361e-07, 1.32520038392326, 0, 0, 0, 0, 0, 0, 5.77635436726633e-06, 0.128916903504178, -0.54517247923873, 5.73591824598287e-06, -0.0367475101331734, 0.119293610517686, +0.725000000000001, 0.0033333333333333, 6.7024591393068, 0.971584684986988, 3.20514988896255, 0.491807915563577, -2.33635314103951e-07, 0.29583739993819, 0.755212362066171, -1.43660520414396e-07, 0.385829489665168, 0, 0, 0, 0, 0, 0, 4.97937064044811e-06, -0.108981769430237, 0.333158823100301, 5.36993007493484e-06, 0.0984535092462676, -0.346502345080594, 0.551262358081627, -4.08192423087334e-07, 0.327038408353903, 2.71691482098597, -2.31976581929181e-07, 1.32616194703756, 0, 0, 0, 0, 0, 0, 5.80882048931594e-06, 0.136799152416902, -0.582899754927095, 5.77274951507459e-06, -0.0330263554713041, 0.100548544576534, +0.728333333333335, 0.00333333333333341, 6.71491052189997, 0.933037566480532, 3.21754721925184, 0.566768345469739, -2.13125274170263e-07, 0.310163576369852, 0.769526061256147, -1.4283813686062e-07, 0.392276988946369, 0, 0, 0, 0, 0, 0, 5.08865847349553e-06, -0.113278950806476, 0.341468500261345, 5.47758116495098e-06, 0.0952049527154021, -0.338325794311445, 0.618089884287619, -3.92982761623926e-07, 0.340067941449765, 2.76905070742284, -1.90169711962261e-07, 1.36267919090141, 0, 0, 0, 0, 0, 0, 5.92441805505076e-06, 0.126941642231772, -0.54577027417614, 5.85690354240514e-06, -0.0437472483013342, 0.152788051386365, +0.731666666666668, 0.0033333333333333, 6.72169297605939, 0.896104382083446, 3.22748967152389, 0.582317048769533, -2.10402860147002e-07, 0.315942068576311, 0.779105325955226, -1.41849058265368e-07, 0.396672652995438, 0, 0, 0, 0, 0, 0, 5.13216268770949e-06, -0.115512160044992, 0.344883200148178, 5.49692105524427e-06, 0.0947316476052019, -0.335843985504023, 0.646557349553965, -3.90324145021283e-07, 0.348343061108029, 2.79803084576212, -1.8018673388792e-07, 1.38091871376597, 0, 0, 0, 0, 0, 0, 5.97741698090519e-06, 0.124608943332869, -0.540020001286734, 5.89904437345233e-06, -0.0511712197167803, 0.190180493222883, +0.735000000000002, 0.00333333333333341, 6.68711596231495, 0.871956661636373, 3.21555334532668, 0.591372851878398, -2.09564789087395e-07, 0.321019656512449, 0.78871951097705, -1.40869356023819e-07, 0.401083982680849, 0, 0, 0, 0, 0, 0, 5.14990155695779e-06, -0.116453636741983, 0.34547252763264, 5.51346586815006e-06, 0.094203354648864, -0.33321086869275, 0.657398552879721, -3.90961434858672e-07, 0.354658424562277, 2.81520952232032, -1.80179593980286e-07, 1.38885810561807, 0, 0, 0, 0, 0, 0, 6.00044512439475e-06, 0.12630127952723, -0.550906356291126, 5.92146508374464e-06, -0.0558704236512815, 0.214420948283756, +0.738333333333335, 0.0033333333333333, 6.64496169189611, 0.850971180431666, 3.19925650436216, 0.600199840374692, -2.08783958042357e-07, 0.326059338311841, 0.798433782093807, -1.39848564462252e-07, 0.405553362390616, 0, 0, 0, 0, 0, 0, 5.1675287195082e-06, -0.117099005687633, 0.345405919729037, 5.52967109691709e-06, 0.0931604015003398, -0.329440618008811, 0.668087246110055, -3.91669870165223e-07, 0.360948779756586, 2.83196157972107, -1.80052339586091e-07, 1.39638130248665, 0, 0, 0, 0, 0, 0, 6.0234176704513e-06, 0.128289343630092, -0.563047142619568, 5.94367492522887e-06, -0.0601651494464146, 0.236713830604454, +0.741666666666668, 0.00333333333333341, 6.60435555746419, 0.828768093965804, 3.18425224138432, 0.608936558190765, -2.080482663212e-07, 0.331097543222814, 0.808195478089255, -1.38783289643507e-07, 0.410045576124447, 0, 0, 0, 0, 0, 0, 5.18496755879115e-06, -0.117343619066349, 0.344484193837324, 5.54589310602188e-06, 0.0921403750080278, -0.325735138116777, 0.678544064820026, -3.92494003129994e-07, 0.367224122950629, 2.84801216128247, -1.79712064672076e-07, 1.40318904258456, 0, 0, 0, 0, 0, 0, 6.04627249995296e-06, 0.130684461217888, -0.576884306899055, 5.96554728429758e-06, -0.0638038767483583, 0.255837094241525, +0.745000000000002, 0.0033333333333333, 6.57024009467496, 0.809377958891979, 3.17151745097043, 0.617857436369545, -2.07327556480275e-07, 0.336304470450347, 0.818283655228813, -1.37687901131236e-07, 0.414694648594426, 0, 0, 0, 0, 0, 0, 5.20252141503534e-06, -0.117706536585099, 0.343881012384113, 5.56222653610882e-06, 0.0912052778002549, -0.322262255904033, 0.689221522748366, -3.93342670766075e-07, 0.373703494502547, 2.86426643014663, -1.79244299293974e-07, 1.40996228978353, 0, 0, 0, 0, 0, 0, 6.06932820869494e-06, 0.132993523908451, -0.590323232726453, 5.98752371273855e-06, -0.067539203183076, 0.275365176684249, +0.748333333333335, 0.00333333333333341, 6.54821465889445, 0.799932961407673, 3.16097937875306, 0.626821346303719, -2.06604986211556e-07, 0.341550653404965, 0.828445350263186, -1.36587297414992e-07, 0.4193809558437, 0, 0, 0, 0, 0, 0, 5.2200990914791e-06, -0.118084551662636, 0.343320066944669, 5.57858163274217e-06, 0.0902824337698271, -0.318823884298925, 0.699934155298407, -3.94190021238194e-07, 0.380214809903541, 2.88057272639495, -1.78748455668243e-07, 1.4167343091765, 0, 0, 0, 0, 0, 0, 6.09242691695789e-06, 0.13528982498982, -0.603702829018158, 6.00952210667385e-06, -0.0712959207753458, 0.294983289192172, +0.751666666666668, 0.0033333333333333, 6.52255932006837, 0.790804514894847, 3.14776623999519, 0.635785257486881, -2.05882406760806e-07, 0.346796836889794, 0.838607046046707, -1.35486690510445e-07, 0.42406726341262, 0, 0, 0, 0, 0, 0, 5.23767677728498e-06, -0.118462561801662, 0.342759106679787, 5.59493672937552e-06, 0.0893595897393985, -0.315385512693816, 0.710646787848448, -3.95037371710313e-07, 0.386726125304534, 2.89687903061373, -1.78252597275704e-07, 1.42350633028961, 0, 0, 0, 0, 0, 0, 6.11552564128831e-06, 0.137586136452258, -0.617082476912161, 6.03152050060915e-06, -0.0750526383676138, 0.314601401700087, +0.755000000000002, 0.0033333333333333, 6.49597391093928, 0.781510812033523, 3.13394145504116, 0.644852838115833, -2.04802251449564e-07, 0.352067456956833, 0.848875586635182, -1.34347254894535e-07, 0.42879623311529, 0, 0, 0, 0, 0, 0, 5.25560456734681e-06, -0.118651977118074, 0.341633607672775, 5.61177614572402e-06, 0.0882420072443436, -0.311350718498572, 0.721454522035794, -3.95618225823011e-07, 0.393301730682877, 2.91348313602645, -1.7719050261058e-07, 1.43034038406191, 0, 0, 0, 0, 0, 0, 6.13922461898258e-06, 0.140278226932648, -0.632426801384697, 6.05388752226637e-06, -0.0786130712190256, 0.333431013764994, +0.758333333333335, 0.00333333333333341, 6.46355484885935, 0.774825936221446, 3.11572302365157, 0.655040538310344, -2.0318177144068e-07, 0.357440064703459, 0.85925078574066, -1.33176870315415e-07, 0.433567735598138, 0, 0, 0, 0, 0, 0, 5.27413781912935e-06, -0.118187504752364, 0.3389322416904, 5.62978166615015e-06, 0.086442929726592, -0.30560262668786, 0.732957477783101, -3.95805152746684e-07, 0.39999092616954, 2.93076222356205, -1.75763910280415e-07, 1.43771866404445, 0, 0, 0, 0, 0, 0, 6.16358539092128e-06, 0.143804565295286, -0.651556887087522, 6.07714608031628e-06, -0.0814733423749638, 0.34908978993703, +0.761666666666668, 0.0033333333333333, 6.42929133328008, 0.770321418388341, 3.09557405203127, 0.665637787681747, -2.01483031107884e-07, 0.362843916155177, 0.869625985587279, -1.32006490113722e-07, 0.438339238344221, 0, 0, 0, 0, 0, 0, 5.29331151517396e-06, -0.116983976718749, 0.334607113606057, 5.6482935127869e-06, 0.0839953645634985, -0.298436737939188, 0.745459556891366, -3.96015023764097e-07, 0.406753211517103, 2.94882101785258, -1.74916252246818e-07, 1.44601057136405, 0, 0, 0, 0, 0, 0, 6.18836480170701e-06, 0.147967952639265, -0.673358727138716, 6.10144484387751e-06, -0.0836682472691505, 0.361585360007668, +0.765000000000002, 0.00333333333333341, 6.39504459590363, 0.765816900556848, 3.07543220957168, 0.676714223858362, -1.99989186144488e-07, 0.368602669200468, 0.881685838923331, -1.29846270066159e-07, 0.44385373901508, 0, 0, 0, 0, 0, 0, 5.30974095053976e-06, -0.116962591863621, 0.333564759497447, 5.66240729426257e-06, 0.0826085055074715, -0.294217787012136, 0.758810561722266, -3.96251766143881e-07, 0.414132743752987, 2.96627089918975, -1.74362997963988e-07, 1.45419149489485, 0, 0, 0, 0, 0, 0, 6.20932508444072e-06, 0.15061908850584, -0.687931576850837, 6.12236356339445e-06, -0.0874834174223459, 0.380928574333974, +0.768333333333335, 0.0033333333333333, 6.41677875668924, 0.741503203954329, 3.07612007060438, 0.692647699874921, -2.00572161663982e-07, 0.377958706562639, 0.904957538599447, -1.20862759514448e-07, 0.454622091992435, 0, 0, 0, 0, 0, 0, 5.30430124763304e-06, -0.12641704490522, 0.358780258112167, 5.64764531678169e-06, 0.0881982701030465, -0.309372938786675, 0.777527696285071, -3.96653227135826e-07, 0.425477518403321, 2.97766058413148, -1.7657915671962e-07, 1.46114973528007, 0, 0, 0, 0, 0, 0, 6.19986048128319e-06, 0.141178128335899, -0.644741181614454, 6.12146203341789e-06, -0.10176430662397, 0.444537117875379, +0.771666666666668, 0.00333333333333341, 6.50269676681654, 0.686658280315822, 3.10047365388044, 0.709845536237869, -2.01695764716226e-07, 0.388251171006909, 0.930321255786495, -1.10565317509271e-07, 0.466424402641171, 0, 0, 0, 0, 0, 0, 5.29415611324348e-06, -0.13791034855949, 0.389645477595459, 5.62763253791528e-06, 0.095056672007559, -0.328051099790584, 0.797202695491686, -3.97084090721939e-07, 0.43753009657364, 2.98749377501657, -1.79482460859634e-07, 1.4677898310402, 0, 0, 0, 0, 0, 0, 6.18383795527489e-06, 0.129130780973735, -0.589100225171782, 6.11609536810804e-06, -0.117944438061626, 0.516180082742557, +0.775000000000002, 0.0033333333333333, 6.60031690355048, 0.626325189356191, 3.13058508185605, 0.728591607501444, -2.02089406639663e-07, 0.399441613568275, 0.961677397630795, -9.8209522055748e-08, 0.480873681051209, 0, 0, 0, 0, 0, 0, 5.27726975590323e-06, -0.150097014763766, 0.422363485338998, 5.59314124429618e-06, 0.100796402810211, -0.344608436624279, 0.818350023853951, -3.96361885321278e-07, 0.450494016233354, 2.99422574589755, -1.80576285165273e-07, 1.47322787935308, 0, 0, 0, 0, 0, 0, 6.15912122384569e-06, 0.116253936200478, -0.529576629370775, 6.08795521959172e-06, -0.135472785663606, 0.593601931340693, +0.778333333333335, 0.00333333333333341, 6.64364227693592, 0.616618525663375, 3.15030606103654, 0.766899389400251, -1.9917681696228e-07, 0.419916769901705, 1.01025775350056, -8.1635991895316e-08, 0.503869902085788, 0, 0, 0, 0, 0, 0, 5.18324950609474e-06, -0.163121910772491, 0.460226651078655, 5.45834556866946e-06, 0.104379206259, -0.360026973097421, 0.857739788333762, -3.89930776596052e-07, 0.47275190039164, 2.98288802940377, -1.72832735899483e-07, 1.46897456713765, 0, 0, 0, 0, 0, 0, 6.04204465522432e-06, 0.100768022718183, -0.454619070374647, 5.97491178266783e-06, -0.152950411385863, 0.667529951345089, +0.781666666666669, 0.0033333333333333, 6.68222216723769, 0.612943678870177, 3.16930061876739, 0.825932407745881, -1.99204374319942e-07, 0.451392550994241, 1.08211730684865, -4.91732438805358e-08, 0.53767026265828, 0, 0, 0, 0, 0, 0, 4.98231888768533e-06, -0.197600954316695, 0.560595670451738, 5.23741130129025e-06, 0.125278589418939, -0.42383977311693, 0.914832002501445, -3.80408505857967e-07, 0.503721512584137, 2.93623028663899, -1.67744995402182e-07, 1.45407309704759, 0, 0, 0, 0, 0, 0, 5.78790261931017e-06, 0.0542270759347112, -0.227675175560398, 5.75880895486898e-06, -0.19164917034805, 0.827507636106607, +0.785000000000002, 0.0033333333333333, 6.72093659983278, 0.609296339247506, 3.18837583785246, 0.867233036457696, -1.93868598481078e-07, 0.469153258904144, 1.11510461942817, -3.79065828888846e-08, 0.553684747720227, 0, 0, 0, 0, 0, 0, 4.84913777627819e-06, -0.193620729701795, 0.554250747453115, 5.1024420234622e-06, 0.117068255560337, -0.40685600181529, 0.953131621761782, -3.73843218287101e-07, 0.520111219825582, 2.91296903479391, -1.53320509099027e-07, 1.44312302990202, 0, 0, 0, 0, 0, 0, 5.62963525102789e-06, 0.0589113228775962, -0.245772405426044, 5.60920593533064e-06, -0.188633252919653, 0.811424434062052, +0.788333333333335, 0.00333333333333341, 6.76001206321935, 0.605548129534427, 3.20768429251352, 0.905666836263435, -1.65269939493509e-07, 0.483902959017897, 1.14520553623998, -2.31239557008933e-08, 0.567927931116989, 0, 0, 0, 0, 0, 0, 4.69228358839642e-06, -0.188770275185007, 0.548753033602055, 4.93088969616326e-06, 0.109927043675195, -0.394694379927259, 0.9878882238225, -3.44502964031665e-07, 0.532331906532992, 2.86657113684212, -1.2913882088938e-07, 1.42596594562065, 0, 0, 0, 0, 0, 0, 5.44555219908398e-06, 0.0794691131521605, -0.339292423705478, 5.42324705922213e-06, -0.184558296421338, 0.792049429612348, +0.791666666666669, 0.0033333333333333, 6.79912940637315, 0.601884198285885, 3.22691029039584, 0.953366532127902, -1.42395843982611e-07, 0.500810252857595, 1.17469111776712, -8.25030626470597e-09, 0.582009872041902, 0, 0, 0, 0, 0, 0, 4.44750279531796e-06, -0.158545906494749, 0.491390949208103, 4.66349457253731e-06, 0.0742838813266148, -0.322837047928588, 1.02736990645052, -3.2044895710465e-07, 0.544599556439593, 2.7691415572716, -8.1139614817752e-08, 1.36781824102255, 0, 0, 0, 0, 0, 0, 5.16353062349073e-06, 0.123187727112065, -0.523773765608159, 5.12620814947041e-06, -0.15762310133692, 0.660410477052553, +0.795000000000002, 0.00333333333333341, 6.83903802640953, 0.598192403195336, 3.24645225563516, 0.985122523689704, -1.37878113050202e-07, 0.515809148191506, 1.20229291964556, 1.2755894273129e-09, 0.595732937339875, 0, 0, 0, 0, 0, 0, 4.23152502706429e-06, -0.136182321338546, 0.449203404050024, 4.45245901950128e-06, 0.0479635673506566, -0.271083079816138, 1.05854123267435, -3.13231726596733e-07, 0.558515345331153, 2.69674709360189, -4.17419004851002e-08, 1.3202188425858, 0, 0, 0, 0, 0, 0, 4.91374137862071e-06, 0.142226171234228, -0.594723451774149, 4.86675822897884e-06, -0.127116124178711, 0.507192778440908, +0.798333333333335, 0.0033333333333333, 6.87914506098007, 0.594488788639808, 3.26607878842165, 1.01531108435553, -1.32858498989356e-07, 0.530559773701547, 1.23115112096683, 1.08922319042573e-08, 0.610131381037604, 0, 0, 0, 0, 0, 0, 4.08049252061097e-06, -0.139530548262356, 0.463790950347153, 4.29350381483542e-06, 0.0511400316273378, -0.284838081871749, 1.08464210843908, -3.03448265408169e-07, 0.571099442367482, 2.65664331850249, -2.8999048522775e-08, 1.29975515061035, 0, 0, 0, 0, 0, 0, 4.73207337653515e-06, 0.136344731207648, -0.560711651263561, 4.69001292169954e-06, -0.128063501519552, 0.504729779044944, +0.801666666666669, 0.00333333333333341, 6.91925210391214, 0.590785184013287, 3.28570532529465, 1.04588766589285, -1.27782978811638e-07, 0.545447808349066, 1.26017840031473, 2.05105450928092e-08, 0.624629435823155, 0, 0, 0, 0, 0, 0, 3.9280515537598e-06, -0.142744870914297, 0.478077378466667, 4.13411184134538e-06, 0.0543313052419723, -0.298636460329391, 1.1110901257806, -2.93608708693871e-07, 0.583805769110049, 2.61638731792248, -1.5916016868412e-08, 1.27921243183704, 0, 0, 0, 0, 0, 0, 4.5488350186786e-06, 0.13061006207719, -0.527325575026168, 4.51184920972267e-06, -0.128963541285274, 0.502040952786985, +0.805000000000002, 0.0033333333333333, 6.96087973151034, 0.586983762283572, 3.30614417975269, 1.07646424743017, -1.2270745863392e-07, 0.560335842996584, 1.28920567966264, 3.01288582813611e-08, 0.639127490608705, 0, 0, 0, 0, 0, 0, 3.77561058690862e-06, -0.145959193566238, 0.492363806586182, 3.97471986785534e-06, 0.0575225788566069, -0.312434838787032, 1.13753814312213, -2.83769151979573e-07, 0.596512095852615, 2.57613131734246, -2.83298521404899e-09, 1.25866971306372, 0, 0, 0, 0, 0, 0, 4.36559666082206e-06, 0.124875392946732, -0.493939498788774, 4.3336854977458e-06, -0.129863581050996, 0.499352126529025, +0.808333333333335, 0.00333333333333341, 7.00429200126159, 0.582977793702189, 3.32749808258682, 1.10695514051324, -1.17638739989383e-07, 0.575163788308894, 1.31766243391006, 3.9512830230992e-08, 0.653369874450317, 0, 0, 0, 0, 0, 0, 3.62396217863458e-06, -0.148999113922134, 0.506179301391549, 3.81581249796457e-06, 0.0606427583899676, -0.326042668487343, 1.16383312408919, -2.73973521537292e-07, 0.609111121037377, 2.53591135970844, 1.02448959875536e-08, 1.2381422811819, 0, 0, 0, 0, 0, 0, 4.18342003651787e-06, 0.119332873061706, -0.461454463836399, 4.15677322867842e-06, -0.130482806779376, 0.49545636295123, +0.811666666666669, 0.0033333333333333, 7.04770852813175, 0.578970529734644, 3.3488536194269, 1.13293129758768, -1.12940487158533e-07, 0.586829591808619, 1.33493827599661, 4.45203231969175e-08, 0.66227415215944, 0, 0, 0, 0, 0, 0, 3.49200445226584e-06, -0.147708737733274, 0.508303156769159, 3.68518472033325e-06, 0.0616383761208024, -0.333506097896328, 1.18490535307408, -2.65674433151556e-07, 0.618052381043534, 2.49821640453302, 2.24115043025962e-08, 1.21872683847191, 0, 0, 0, 0, 0, 0, 4.02757255518486e-06, 0.118555893551513, -0.451315077925496, 4.00656940969526e-06, -0.126886344112873, 0.47354404527926, +0.815000000000002, 0.0033333333333333, 7.07926310248386, 0.572809994339917, 3.36472810991408, 1.13432401621668, -1.25089830886512e-07, 0.584308716347552, 1.31675240105205, 4.85226420947884e-08, 0.653728588573729, 0, 0, 0, 0, 0, 0, 3.37879196838998e-06, -0.14804499720811, 0.514480108936066, 3.59422383861341e-06, 0.0629719710754448, -0.340202344141226, 1.18091666561673, -2.69281017782009e-07, 0.61128764901484, 2.41505152543258, 3.5180625803632e-09, 1.19463282022871, 0, 0, 0, 0, 0, 0, 3.88033135861948e-06, 0.11721265585951, -0.438856376053893, 3.86924343538084e-06, -0.125389297675484, 0.460920770511957, +0.818333333333335, 0.00333333333333341, 7.0325478696921, 0.55244800614785, 3.34329957659401, 1.09742094748385, -1.37848760140644e-07, 0.568080210931197, 1.27400113957817, 5.49096708391267e-08, 0.632718202096236, 0, 0, 0, 0, 0, 0, 3.25931903052273e-06, -0.158967087795789, 0.545179678143344, 3.42658509134851e-06, 0.0657281944664441, -0.348932441505732, 1.13704867145159, -2.71159699701626e-07, 0.587818712470894, 2.2322619071982, 8.90736661501833e-09, 1.11501965735231, 0, 0, 0, 0, 0, 0, 3.71461731188597e-06, 0.107671388109114, -0.390960752623349, 3.67696550656968e-06, -0.130978879217811, 0.480981666380191, +0.821666666666669, 0.0033333333333333, 6.97151309598952, 0.52951966781593, 3.31484228332216, 1.05623593934769, -1.46813050182342e-07, 0.551375911967748, 1.23124987810428, 6.12966995834653e-08, 0.611707815618744, 0, 0, 0, 0, 0, 0, 3.13120018687568e-06, -0.171791477086255, 0.579977127989962, 3.23802344408526e-06, 0.0692664910914686, -0.359339058589437, 1.08830356702616, -2.68671178750137e-07, 0.563818326949906, 2.03163591942171, 3.0515147210661e-08, 1.01944682278691, 0, 0, 0, 0, 0, 0, 3.5400634153084e-06, 0.0968736215353878, -0.337826091966562, 3.471205154101e-06, -0.137851168177863, 0.507191950715732, +0.825000000000002, 0.00333333333333341, 6.88075198723026, 0.506997204586075, 3.26885223743796, 1.01511143203966, -1.55700873010457e-07, 0.534729853372352, 1.18863373025521, 6.7662809487168e-08, 0.590760190688426, 0, 0, 0, 0, 0, 0, 3.00329451901633e-06, -0.184596423424693, 0.614721293192487, 3.04950913756717e-06, 0.0728047956479495, -0.369746260636296, 1.03957932245623, -2.66170757688123e-07, 0.539837610594235, 1.83130572964657, 5.22845257258922e-08, 0.923898146574758, 0, 0, 0, 0, 0, 0, 3.36584997891456e-06, 0.0861005386268603, -0.284811291813442, 3.26552683550033e-06, -0.144718698618496, 0.533382053429647, +0.828333333333335, 0.0033333333333333, 6.68548366491153, 0.474489268515815, 3.17290796983087, 0.988132326556902, -1.51001229788872e-07, 0.527246869822677, 1.16982561381485, 7.0214716499173e-08, 0.581405212438724, 0, 0, 0, 0, 0, 0, 2.92760841071785e-06, -0.190751325529084, 0.629967182104324, 2.91765497412823e-06, 0.0734865395086463, -0.371341668075558, 1.00800220661527, -2.56929329280888e-07, 0.528203212300522, 1.70174815163429, 9.7922127424473e-08, 0.846557964102474, 0, 0, 0, 0, 0, 0, 3.26991007907769e-06, 0.0838398892042477, -0.274257829961709, 3.13468012750597e-06, -0.146931221926295, 0.541530478815607, +0.831666666666669, 0.00333333333333341, 6.25604229640799, 0.400759834671599, 2.96509218311011, 0.987903496584947, -1.4988653173825e-07, 0.528838748269359, 1.17069946157816, 6.95502221074379e-08, 0.581686760298564, 0, 0, 0, 0, 0, 0, 2.94157962502916e-06, -0.191275609565393, 0.62741473684281, 2.91997725893409e-06, 0.0725674306248592, -0.365648539695503, 1.00844917350941, -2.56234223158274e-07, 0.530224736079856, 1.69117340406937, 1.08188850473587e-07, 0.83742201541578, 0, 0, 0, 0, 0, 0, 3.28711531635656e-06, 0.0873631169766049, -0.295215741226407, 3.14219826147179e-06, -0.149352703513858, 0.556716303392074, +0.835000000000002, 0.0033333333333333, 6.08425132626979, 0.384611141027586, 2.88064889773082, 0.989858143933799, -1.51272185893813e-07, 0.530723538072673, 1.17157834314119, 6.88831066443053e-08, 0.581971049034469, 0, 0, 0, 0, 0, 0, 2.96355549389721e-06, -0.19202442712155, 0.625216819841264, 2.93461045667165e-06, 0.072062471081963, -0.360732877860034, 1.01157990396062, -2.58486894711446e-07, 0.532603232614833, 1.69073335400064, 1.08491067007996e-07, 0.837279187380302, 0, 0, 0, 0, 0, 0, 3.31231224364409e-06, 0.0903568829240592, -0.314105447338905, 3.16146635798498e-06, -0.15287866103094, 0.577468830667333, +0.838333333333335, 0.0033333333333333, 5.81927074167627, 0.355708777073065, 2.7582298685295, 0.99181279128265, -1.52657840049377e-07, 0.532608327875988, 1.17245722470421, 6.82159911811726e-08, 0.582255337770374, 0, 0, 0, 0, 0, 0, 2.98553136276525e-06, -0.192773244677706, 0.623018902839718, 2.9492436544092e-06, 0.0715575115390673, -0.355817216024566, 1.01471063441184, -2.60739566264617e-07, 0.53498172914981, 1.6902933039319, 1.08793283542405e-07, 0.837136359344823, 0, 0, 0, 0, 0, 0, 3.33750917093162e-06, 0.0933506488715138, -0.332995153451403, 3.18073445449818e-06, -0.156404618548023, 0.598221357942596, +0.841666666666669, 0.00333333333333341, 5.52272905593654, 0.326580856504105, 2.62027020630568, 0.993767438631502, -1.5404349420494e-07, 0.534493117679302, 1.17333610626724, 6.75488757180399e-08, 0.582539626506279, 0, 0, 0, 0, 0, 0, 3.00750723163331e-06, -0.193522062233863, 0.620820985838173, 2.96387685214675e-06, 0.071052551996172, -0.3509015541891, 1.01784136486305, -2.62992237817788e-07, 0.537360225684786, 1.68985325386317, 1.09095500076814e-07, 0.836993531309345, 0, 0, 0, 0, 0, 0, 3.36270609821914e-06, 0.0963444148189684, -0.351884859563902, 3.20000255101137e-06, -0.159930576065105, 0.618973885217854, +0.845000000000002, 0.0033333333333333, 5.30978482146004, 0.31649362087182, 2.51420259297202, 0.995722085980353, -1.55429148360504e-07, 0.536377907482616, 1.17421498783027, 6.68817602549072e-08, 0.582823915242184, 0, 0, 0, 0, 0, 0, 3.02948310050136e-06, -0.19427087979002, 0.618623068836627, 2.9785100498843e-06, 0.0705475924532756, -0.345985892353631, 1.02097209531426, -2.6524490937096e-07, 0.539738722219763, 1.68941320379444, 1.09397716611223e-07, 0.836850703273867, 0, 0, 0, 0, 0, 0, 3.38790302550667e-06, 0.0993381807664237, -0.370774565676404, 3.21927064752456e-06, -0.163456533582187, 0.639726412493114, +0.848333333333335, 0.00333333333333341, 5.09259677157174, 0.305870018432398, 2.40645182254339, 0.997676733328576, -1.56814802515973e-07, 0.538262697285592, 1.17509386939255, 6.62146447917293e-08, 0.583108203977717, 0, 0, 0, 0.00107586547437465, -4.04892718173736e-06, 0.000541179717362651, 3.05145896936737e-06, -0.195019697346046, 0.61642515183467, 2.99314324761985e-06, 0.0700426329103329, -0.341070230517936, 1.02410282576483, -2.67497580923963e-07, 0.542117218754395, 1.68897315372464, 1.09699933145567e-07, 0.836707875237862, 0, 0, 0, 0.00132978225286311, -2.87938921041819e-05, 0.000796194416096592, 3.41309995279192e-06, 0.10233194671381, -0.389664271788639, 3.23853874403559e-06, -0.166982491099157, 0.660478939767928, +0.851666666666669, 0.0033333333333333, 4.87491481000663, 0.295099295265049, 2.29858209018918, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.855000000000002, 0.00333333333333341, 4.65723284844152, 0.284328572097702, 2.19071235783497, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.858333333333335, 0.0033333333333333, 4.44257802994141, 0.273736840084808, 2.08428342876373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.861666666666669, 0.00333333333333341, 4.28884536929433, 0.267003878720968, 2.00918706690338, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.865000000000002, 0.0033333333333333, 3.93638026437218, 0.230245733354572, 1.84269485953898, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.868333333333335, 0.0033333333333333, 3.33073218434185, 0.169877555818503, 1.56056949876719, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.871666666666669, 0.00333333333333341, 2.72487868381682, 0.10950943018352, 1.2783866700507, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.875000000000002, 0.0033333333333333, 2.11992419254253, 0.0493370184877524, 0.996766475528912, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.878333333333336, 0.00333333333333341, 1.82282604215475, 0.019875748428167, 0.861627755081207, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.881666666666669, 0.0033333333333333, 1.81695650874215, 0.0145040255064126, 0.859941791590373, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.885000000000002, 0.00333333333333341, 1.81142766617402, 0.00911995767873366, 0.858369742591981, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.888333333333336, 0.0033333333333333, 1.80589882360589, 0.00373588985105351, 0.856797693593589, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.891666666666669, 0.00333333333333341, 1.80036998103776, -0.00164817797662398, 0.855225644595198, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.895000000000002, 0.0033333333333333, 1.79484113846963, -0.00703224580430264, 0.853653595596806, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, +0.898333333333336, 0.0033333333333333, 26.2656401213185, 3.07492960850749, 12.1078153470754, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, + diff --git a/tests/data/case-c6f1b159-3dab-4729-b769-3ca9999b2b87/simulation.json b/tests/data/case-c6f1b159-3dab-4729-b769-3ca9999b2b87/simulation.json new file mode 100644 index 000000000..16164f02e --- /dev/null +++ b/tests/data/case-c6f1b159-3dab-4729-b769-3ca9999b2b87/simulation.json @@ -0,0 +1,2593 @@ +{ + "version": "25.6.2b2", + "unit_system": { + "name": "SI" + }, + "meshing": { + "defaults": { + "surface_edge_growth_rate": 1.2, + "surface_max_edge_length": { + "value": 0.2, + "units": "m" + }, + "curvature_resolution_angle": { + "value": 12, + "units": "degree" + }, + "boundary_layer_growth_rate": 1.2, + "boundary_layer_first_layer_thickness": { + "value": 0.2, + "units": "m" + } + }, + "refinement_factor": 1, + "gap_treatment_strength": 0, + "volume_zones": [ + { + "type": "AutomatedFarfield", + "name": "Farfield", + "method": "auto", + "_id": "a87eaca3-53fd-4595-bc8b-7f5382050529" + } + ] + }, + "reference_geometry": { + "moment_center": { + "value": [ + 0, + 0, + 0 + ], + "units": "m" + }, + "moment_length": { + "value": [ + 1, + 1, + 1 + ], + "units": "m" + }, + "area": { + "type_name": "number", + "value": 1, + "units": "m**2" + } + }, + "operating_condition": { + "type_name": "AerospaceCondition", + "private_attribute_constructor": "default", + "velocity_magnitude": { + "type_name": "number", + "value": 5.2, + "units": "m/s" + }, + "alpha": { + "value": 0, + "units": "degree" + }, + "beta": { + "value": 0, + "units": "degree" + }, + "thermal_state": { + "type_name": "ThermalState", + "private_attribute_constructor": "default", + "density": { + "value": 1.225, + "units": "kg/m**3" + }, + "temperature": { + "value": 288.15, + "units": "K" + } + } + }, + "models": [ + { + "_id": "a6638a1f-620c-4ddd-a94c-c820e4294f87", + "material": { + "type": "air", + "name": "air", + "dynamic_viscosity": { + "reference_viscosity": { + "value": 0.00001716, + "units": "Pa*s" + }, + "reference_temperature": { + "value": 273.15, + "units": "K" + }, + "effective_temperature": { + "value": 110.4, + "units": "K" + } + } + }, + "initial_condition": { + "type_name": "NavierStokesInitialCondition", + "rho": "rho", + "u": "u", + "v": "v", + "w": "w", + "p": "p" + }, + "type": "Fluid", + "navier_stokes_solver": { + "absolute_tolerance": 1e-10, + "relative_tolerance": 0, + "order_of_accuracy": 2, + "equation_evaluation_frequency": 1, + "linear_solver": { + "max_iterations": 30 + }, + "CFL_multiplier": 1, + "kappa_MUSCL": -1, + "numerical_dissipation_factor": 1, + "limit_velocity": false, + "limit_pressure_density": false, + "type_name": "Compressible", + "low_mach_preconditioner": false, + "update_jacobian_frequency": 4, + "max_force_jac_update_physical_steps": 0 + }, + "turbulence_model_solver": { + "absolute_tolerance": 1e-8, + "relative_tolerance": 0, + "order_of_accuracy": 2, + "equation_evaluation_frequency": 4, + "linear_solver": { + "max_iterations": 20 + }, + "CFL_multiplier": 2, + "type_name": "SpalartAllmaras", + "reconstruction_gradient_limiter": 0.5, + "quadratic_constitutive_relation": false, + "modeling_constants": { + "type_name": "SpalartAllmarasConsts", + "C_DES": 0.72, + "C_d": 8, + "C_cb1": 0.1355, + "C_cb2": 0.622, + "C_sigma": 0.6666666666666666, + "C_v1": 7.1, + "C_vonKarman": 0.41, + "C_w2": 0.3, + "C_t3": 1.2, + "C_t4": 0.5, + "C_min_rd": 10 + }, + "update_jacobian_frequency": 4, + "max_force_jac_update_physical_steps": 0, + "rotation_correction": false + }, + "transition_model_solver": { + "type_name": "None" + } + }, + { + "_id": "76b8c4b2-63e0-458c-820d-84e6071cb57f", + "type": "Wall", + "entities": { + "stored_entities": [ + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "Box1", + "name": "Box1", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "ByBody", + "private_attribute_sub_components": [ + "body00001_face00001", + "body00001_face00002", + "body00001_face00003", + "body00001_face00004", + "body00001_face00005", + "body00001_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00001", + "name": "body00002_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00002", + "name": "body00002_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00003", + "name": "body00002_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00004", + "name": "body00002_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00005", + "name": "body00002_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00006", + "name": "body00002_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00001", + "name": "body00003_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00002", + "name": "body00003_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00003", + "name": "body00003_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00004", + "name": "body00003_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00005", + "name": "body00003_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00006", + "name": "body00003_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00006" + ], + "private_attribute_color": null + } + ] + }, + "name": "Wall", + "use_wall_function": false, + "heat_spec": { + "value": { + "value": 0, + "units": "W/m**2" + }, + "type_name": "HeatFlux" + }, + "roughness_height": { + "value": 0, + "units": "m" + } + }, + { + "_id": "8682b71d-9fe8-4b3b-9b47-ee4a5d303856", + "type": "Freestream", + "entities": { + "stored_entities": [ + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "GhostSphere", + "name": "farfield", + "_id": "8ae37a4b-6970-5d88-aef5-43a1abcc845e" + } + ] + }, + "name": "Freestream" + } + ], + "time_stepping": { + "type_name": "Steady", + "max_steps": 2000, + "CFL": { + "type": "adaptive", + "min": 0.1, + "max": 10000, + "max_relative_change": 1, + "convergence_limiting_factor": 0.25 + } + }, + "outputs": [ + { + "output_fields": { + "items": [ + "Cp", + "yPlus", + "Cf", + "CfVec" + ] + }, + "frequency": -1, + "frequency_offset": 0, + "output_format": "paraview", + "name": "Surface output", + "entities": { + "stored_entities": [ + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "Box1", + "name": "Box1", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "ByBody", + "private_attribute_sub_components": [ + "body00001_face00001", + "body00001_face00002", + "body00001_face00003", + "body00001_face00004", + "body00001_face00005", + "body00001_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00001", + "name": "body00002_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00002", + "name": "body00002_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00003", + "name": "body00002_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00004", + "name": "body00002_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00005", + "name": "body00002_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00006", + "name": "body00002_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00001", + "name": "body00003_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00002", + "name": "body00003_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00003", + "name": "body00003_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00004", + "name": "body00003_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00005", + "name": "body00003_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00006", + "name": "body00003_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00006" + ], + "private_attribute_color": null + } + ] + }, + "write_single_file": false, + "output_type": "SurfaceOutput", + "_id": "e28a8d26-2332-4a8f-8beb-87ba4876dc6b" + } + ], + "private_attribute_asset_cache": { + "project_length_unit": { + "units": "m", + "value": 1 + }, + "project_entity_info": { + "ghost_entities": [ + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "GhostSphere", + "private_attribute_id": "farfield", + "name": "farfield", + "private_attribute_full_name": null, + "center": [ + 2.5, + 0.39999999999999997, + 0.5 + ], + "max_radius": 250 + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "GhostCircularPlane", + "private_attribute_id": "symmetric-1", + "name": "symmetric-1", + "private_attribute_full_name": null, + "center": [ + 2.5, + -0.1, + 0.5 + ], + "max_radius": 5, + "normal_axis": [ + 0, + 1, + 0 + ] + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "GhostCircularPlane", + "private_attribute_id": "symmetric-2", + "name": "symmetric-2", + "private_attribute_full_name": null, + "center": [ + 2.5, + 0.8999999999999999, + 0.5 + ], + "max_radius": 5, + "normal_axis": [ + 0, + 1, + 0 + ] + } + ], + "type_name": "GeometryEntityInfo", + "body_ids": [ + "body00001", + "body00002", + "body00003" + ], + "body_attribute_names": [ + "bodyId", + "groupByFile" + ], + "grouped_bodies": [ + [ + { + "private_attribute_registry_bucket_name": "GeometryBodyGroupEntityType", + "private_attribute_entity_type_name": "GeometryBodyGroup", + "private_attribute_id": "body00001", + "name": "body00001", + "private_attribute_tag_key": "bodyId", + "private_attribute_sub_components": [ + "body00001" + ], + "private_attribute_color": null, + "transformation": { + "angle_of_rotation": { + "value": 0, + "units": "degree" + }, + "axis_of_rotation": [ + 1, + 0, + 0 + ], + "origin": { + "value": [ + 0, + 0, + 0 + ], + "units": "m" + }, + "scale": [ + 1, + 1, + 1 + ], + "translation": { + "value": [ + 0, + 0, + 0 + ], + "units": "m" + }, + "type_name": "BodyGroupTransformation" + } + }, + { + "private_attribute_registry_bucket_name": "GeometryBodyGroupEntityType", + "private_attribute_entity_type_name": "GeometryBodyGroup", + "private_attribute_id": "body00002", + "name": "body00002", + "private_attribute_tag_key": "bodyId", + "private_attribute_sub_components": [ + "body00002" + ], + "private_attribute_color": null, + "transformation": { + "angle_of_rotation": { + "value": 0, + "units": "degree" + }, + "axis_of_rotation": [ + 1, + 0, + 0 + ], + "origin": { + "value": [ + 0, + 0, + 0 + ], + "units": "m" + }, + "scale": [ + 1, + 1, + 1 + ], + "translation": { + "value": [ + 0, + 0, + 0 + ], + "units": "m" + }, + "type_name": "BodyGroupTransformation" + } + }, + { + "private_attribute_registry_bucket_name": "GeometryBodyGroupEntityType", + "private_attribute_entity_type_name": "GeometryBodyGroup", + "private_attribute_id": "body00003", + "name": "body00003", + "private_attribute_tag_key": "bodyId", + "private_attribute_sub_components": [ + "body00003" + ], + "private_attribute_color": null, + "transformation": { + "angle_of_rotation": { + "value": 0, + "units": "degree" + }, + "axis_of_rotation": [ + 1, + 0, + 0 + ], + "origin": { + "value": [ + 0, + 0, + 0 + ], + "units": "m" + }, + "scale": [ + 1, + 1, + 1 + ], + "translation": { + "value": [ + 0, + 0, + 0 + ], + "units": "m" + }, + "type_name": "BodyGroupTransformation" + } + } + ], + [ + { + "private_attribute_registry_bucket_name": "GeometryBodyGroupEntityType", + "private_attribute_entity_type_name": "GeometryBodyGroup", + "private_attribute_id": "geo-11321727-9bb1-4fd5-b88d-19f360fb2149_box.csm", + "name": "geo-11321727-9bb1-4fd5-b88d-19f360fb2149_box.csm", + "private_attribute_tag_key": "groupByFile", + "private_attribute_sub_components": [ + "body00001", + "body00002", + "body00003" + ], + "private_attribute_color": null, + "transformation": { + "angle_of_rotation": { + "value": 0, + "units": "degree" + }, + "axis_of_rotation": [ + 1, + 0, + 0 + ], + "origin": { + "value": [ + 0, + 0, + 0 + ], + "units": "m" + }, + "scale": [ + 1, + 1, + 1 + ], + "translation": { + "value": [ + 0, + 0, + 0 + ], + "units": "m" + }, + "type_name": "BodyGroupTransformation" + } + } + ] + ], + "face_ids": [ + "body00001_face00001", + "body00001_face00002", + "body00001_face00003", + "body00001_face00004", + "body00001_face00005", + "body00001_face00006", + "body00002_face00001", + "body00002_face00002", + "body00002_face00003", + "body00002_face00004", + "body00002_face00005", + "body00002_face00006", + "body00003_face00001", + "body00003_face00002", + "body00003_face00003", + "body00003_face00004", + "body00003_face00005", + "body00003_face00006" + ], + "face_attribute_names": [ + "ByBody", + "ByTheType", + "OnlyFirstTwoBoxHave", + "RandomName", + "groupByBodyId", + "faceId" + ], + "grouped_faces": [ + [ + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "Box1", + "name": "Box1", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "ByBody", + "private_attribute_sub_components": [ + "body00001_face00001", + "body00001_face00002", + "body00001_face00003", + "body00001_face00004", + "body00001_face00005", + "body00001_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00001", + "name": "body00002_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00002", + "name": "body00002_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00003", + "name": "body00002_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00004", + "name": "body00002_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00005", + "name": "body00002_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00006", + "name": "body00002_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00001", + "name": "body00003_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00002", + "name": "body00003_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00003", + "name": "body00003_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00004", + "name": "body00003_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00005", + "name": "body00003_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00006", + "name": "body00003_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00006" + ], + "private_attribute_color": null + } + ], + [ + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "IamFaces", + "name": "IamFaces", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "ByTheType", + "private_attribute_sub_components": [ + "body00001_face00001", + "body00001_face00002", + "body00001_face00003", + "body00001_face00004", + "body00001_face00005", + "body00001_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00001", + "name": "body00002_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00002", + "name": "body00002_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00003", + "name": "body00002_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00004", + "name": "body00002_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00005", + "name": "body00002_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00006", + "name": "body00002_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00001", + "name": "body00003_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00002", + "name": "body00003_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00003", + "name": "body00003_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00004", + "name": "body00003_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00005", + "name": "body00003_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00006", + "name": "body00003_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00006" + ], + "private_attribute_color": null + } + ], + [ + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "Yes", + "name": "Yes", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "OnlyFirstTwoBoxHave", + "private_attribute_sub_components": [ + "body00001_face00001", + "body00001_face00002", + "body00001_face00003", + "body00001_face00004", + "body00001_face00005", + "body00001_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00001", + "name": "body00002_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00002", + "name": "body00002_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00003", + "name": "body00002_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00004", + "name": "body00002_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00005", + "name": "body00002_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00006", + "name": "body00002_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00001", + "name": "body00003_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00002", + "name": "body00003_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00003", + "name": "body00003_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00004", + "name": "body00003_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00005", + "name": "body00003_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00006", + "name": "body00003_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00006" + ], + "private_attribute_color": null + } + ], + [ + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "IamIsolated", + "name": "IamIsolated", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "RandomName", + "private_attribute_sub_components": [ + "body00003_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00001", + "name": "body00001_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00001_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00002", + "name": "body00001_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00001_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00003", + "name": "body00001_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00001_face00003" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00004", + "name": "body00001_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00001_face00004" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00005", + "name": "body00001_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00001_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00006", + "name": "body00001_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00001_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00001", + "name": "body00002_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00002", + "name": "body00002_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00003", + "name": "body00002_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00004", + "name": "body00002_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00005", + "name": "body00002_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00006", + "name": "body00002_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00002_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00001", + "name": "body00003_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00002", + "name": "body00003_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00004", + "name": "body00003_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00005", + "name": "body00003_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00006", + "name": "body00003_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "__standalone__", + "private_attribute_sub_components": [ + "body00003_face00006" + ], + "private_attribute_color": null + } + ], + [ + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001", + "name": "body00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "groupByBodyId", + "private_attribute_sub_components": [ + "body00001_face00001", + "body00001_face00002", + "body00001_face00003", + "body00001_face00004", + "body00001_face00005", + "body00001_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002", + "name": "body00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "groupByBodyId", + "private_attribute_sub_components": [ + "body00002_face00001", + "body00002_face00002", + "body00002_face00003", + "body00002_face00004", + "body00002_face00005", + "body00002_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003", + "name": "body00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "groupByBodyId", + "private_attribute_sub_components": [ + "body00003_face00001", + "body00003_face00002", + "body00003_face00003", + "body00003_face00004", + "body00003_face00005", + "body00003_face00006" + ], + "private_attribute_color": null + } + ], + [ + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00001", + "name": "body00001_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00001_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00002", + "name": "body00001_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00001_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00003", + "name": "body00001_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00001_face00003" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00004", + "name": "body00001_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00001_face00004" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00005", + "name": "body00001_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00001_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00001_face00006", + "name": "body00001_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00001_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00001", + "name": "body00002_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00002_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00002", + "name": "body00002_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00002_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00003", + "name": "body00002_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00002_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00004", + "name": "body00002_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00002_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00005", + "name": "body00002_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00002_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00002_face00006", + "name": "body00002_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00002_face00006" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00001", + "name": "body00003_face00001", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00003_face00001" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00002", + "name": "body00003_face00002", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00003_face00002" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00003", + "name": "body00003_face00003", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00003_face00003" + ], + "private_attribute_potential_issues": [ + "OverlapQuasi3DSymmetric" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00004", + "name": "body00003_face00004", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00003_face00004" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00005", + "name": "body00003_face00005", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00003_face00005" + ], + "private_attribute_color": null + }, + { + "private_attribute_registry_bucket_name": "SurfaceEntityType", + "private_attribute_entity_type_name": "Surface", + "private_attribute_id": "body00003_face00006", + "name": "body00003_face00006", + "private_attribute_full_name": null, + "private_attribute_is_interface": null, + "private_attribute_tag_key": "faceId", + "private_attribute_sub_components": [ + "body00003_face00006" + ], + "private_attribute_color": null + } + ] + ], + "edge_ids": [ + "body00001_edge00001", + "body00001_edge00002", + "body00001_edge00003", + "body00001_edge00004", + "body00001_edge00005", + "body00001_edge00006", + "body00001_edge00007", + "body00001_edge00008", + "body00001_edge00009", + "body00001_edge00010", + "body00001_edge00011", + "body00001_edge00012", + "body00002_edge00001", + "body00002_edge00002", + "body00002_edge00003", + "body00002_edge00004", + "body00002_edge00005", + "body00002_edge00006", + "body00002_edge00007", + "body00002_edge00008", + "body00002_edge00009", + "body00002_edge00010", + "body00002_edge00011", + "body00002_edge00012", + "body00003_edge00001", + "body00003_edge00002", + "body00003_edge00003", + "body00003_edge00004", + "body00003_edge00005", + "body00003_edge00006", + "body00003_edge00007", + "body00003_edge00008", + "body00003_edge00009", + "body00003_edge00010", + "body00003_edge00011", + "body00003_edge00012" + ], + "edge_attribute_names": [ + "ByBody", + "ByTheType", + "IamFirstEdge", + "edgeId" + ], + "grouped_edges": [ + [ + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "Box1", + "name": "Box1", + "private_attribute_tag_key": "ByBody", + "private_attribute_sub_components": [ + "body00001_edge00001", + "body00001_edge00002", + "body00001_edge00003", + "body00001_edge00004", + "body00001_edge00005", + "body00001_edge00006", + "body00001_edge00007", + "body00001_edge00008", + "body00001_edge00009", + "body00001_edge00010", + "body00001_edge00011", + "body00001_edge00012" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "Box2", + "name": "Box2", + "private_attribute_tag_key": "ByBody", + "private_attribute_sub_components": [ + "body00002_edge00001", + "body00002_edge00002", + "body00002_edge00003", + "body00002_edge00004", + "body00002_edge00005", + "body00002_edge00006", + "body00002_edge00007", + "body00002_edge00008", + "body00002_edge00009", + "body00002_edge00010", + "body00002_edge00011", + "body00002_edge00012" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "Box3", + "name": "Box3", + "private_attribute_tag_key": "ByBody", + "private_attribute_sub_components": [ + "body00003_edge00001", + "body00003_edge00002", + "body00003_edge00003", + "body00003_edge00004", + "body00003_edge00005", + "body00003_edge00006", + "body00003_edge00007", + "body00003_edge00008", + "body00003_edge00009", + "body00003_edge00010", + "body00003_edge00011", + "body00003_edge00012" + ] + } + ], + [ + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "IamEdges", + "name": "IamEdges", + "private_attribute_tag_key": "ByTheType", + "private_attribute_sub_components": [ + "body00001_edge00001", + "body00001_edge00002", + "body00001_edge00003", + "body00001_edge00004", + "body00001_edge00005", + "body00001_edge00006", + "body00001_edge00007", + "body00001_edge00008", + "body00001_edge00009", + "body00001_edge00010", + "body00001_edge00011", + "body00001_edge00012", + "body00002_edge00001", + "body00002_edge00002", + "body00002_edge00003", + "body00002_edge00004", + "body00002_edge00005", + "body00002_edge00006", + "body00002_edge00007", + "body00002_edge00008", + "body00002_edge00009", + "body00002_edge00010", + "body00002_edge00011", + "body00002_edge00012", + "body00003_edge00001", + "body00003_edge00002", + "body00003_edge00003", + "body00003_edge00004", + "body00003_edge00005", + "body00003_edge00006", + "body00003_edge00007", + "body00003_edge00008", + "body00003_edge00009", + "body00003_edge00010", + "body00003_edge00011", + "body00003_edge00012" + ] + } + ], + [ + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "Yes", + "name": "Yes", + "private_attribute_tag_key": "IamFirstEdge", + "private_attribute_sub_components": [ + "body00001_edge00001", + "body00001_edge00002", + "body00001_edge00003", + "body00001_edge00004", + "body00001_edge00005", + "body00001_edge00006", + "body00001_edge00007", + "body00001_edge00008", + "body00001_edge00009", + "body00001_edge00010", + "body00001_edge00011", + "body00001_edge00012", + "body00002_edge00001", + "body00002_edge00002", + "body00002_edge00003", + "body00002_edge00004", + "body00002_edge00005", + "body00002_edge00006", + "body00002_edge00007", + "body00002_edge00008", + "body00002_edge00009", + "body00002_edge00010", + "body00002_edge00011", + "body00002_edge00012", + "body00003_edge00001", + "body00003_edge00002", + "body00003_edge00003", + "body00003_edge00004", + "body00003_edge00005", + "body00003_edge00006", + "body00003_edge00007", + "body00003_edge00008", + "body00003_edge00009", + "body00003_edge00010", + "body00003_edge00011", + "body00003_edge00012" + ] + } + ], + [ + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00001", + "name": "body00001_edge00001", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00001" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00002", + "name": "body00001_edge00002", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00002" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00003", + "name": "body00001_edge00003", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00003" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00004", + "name": "body00001_edge00004", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00004" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00005", + "name": "body00001_edge00005", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00005" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00006", + "name": "body00001_edge00006", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00006" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00007", + "name": "body00001_edge00007", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00007" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00008", + "name": "body00001_edge00008", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00008" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00009", + "name": "body00001_edge00009", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00009" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00010", + "name": "body00001_edge00010", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00010" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00011", + "name": "body00001_edge00011", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00011" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00001_edge00012", + "name": "body00001_edge00012", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00001_edge00012" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00001", + "name": "body00002_edge00001", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00001" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00002", + "name": "body00002_edge00002", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00002" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00003", + "name": "body00002_edge00003", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00003" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00004", + "name": "body00002_edge00004", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00004" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00005", + "name": "body00002_edge00005", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00005" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00006", + "name": "body00002_edge00006", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00006" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00007", + "name": "body00002_edge00007", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00007" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00008", + "name": "body00002_edge00008", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00008" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00009", + "name": "body00002_edge00009", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00009" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00010", + "name": "body00002_edge00010", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00010" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00011", + "name": "body00002_edge00011", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00011" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00002_edge00012", + "name": "body00002_edge00012", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00002_edge00012" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00001", + "name": "body00003_edge00001", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00001" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00002", + "name": "body00003_edge00002", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00002" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00003", + "name": "body00003_edge00003", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00003" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00004", + "name": "body00003_edge00004", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00004" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00005", + "name": "body00003_edge00005", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00005" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00006", + "name": "body00003_edge00006", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00006" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00007", + "name": "body00003_edge00007", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00007" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00008", + "name": "body00003_edge00008", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00008" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00009", + "name": "body00003_edge00009", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00009" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00010", + "name": "body00003_edge00010", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00010" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00011", + "name": "body00003_edge00011", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00011" + ] + }, + { + "private_attribute_registry_bucket_name": "EdgeEntityType", + "private_attribute_entity_type_name": "Edge", + "private_attribute_id": "body00003_edge00012", + "name": "body00003_edge00012", + "private_attribute_tag_key": "edgeId", + "private_attribute_sub_components": [ + "body00003_edge00012" + ] + } + ] + ], + "body_group_tag": "groupByFile", + "face_group_tag": "ByBody", + "edge_group_tag": "ByBody", + "global_bounding_box": [ + [ + 0, + -0.1, + 0 + ], + [ + 5, + 0.8999999999999999, + 1 + ] + ] + }, + "use_inhouse_mesher": false, + "use_geometry_AI": false, + "variable_context": [ + { + "name": "velocity_with_units", + "value": { + "type_name": "expression", + "expression": "solution.velocity", + "output_units": "SI_unit_system" + } + }, + { + "name": "velocity_magnitude_with_units", + "value": { + "type_name": "expression", + "expression": "math.magnitude(solution.velocity)", + "output_units": "SI_unit_system" + } + }, + { + "name": "pressure_with_units", + "value": { + "type_name": "expression", + "expression": "solution.pressure", + "output_units": "SI_unit_system" + } + }, + { + "name": "wall_shear_stress_magnitude_with_units", + "value": { + "type_name": "expression", + "expression": "solution.wall_shear_stress_magnitude", + "output_units": "SI_unit_system" + } + } + ] + }, + "user_defined_dynamics": null +} \ No newline at end of file diff --git a/tests/test_results.py b/tests/test_results.py index 1a2baeb66..4fde814bb 100644 --- a/tests/test_results.py +++ b/tests/test_results.py @@ -613,3 +613,22 @@ def compare_surface_force_groups(surface_forces, surface_forces_group): match=r"Face group 'boundary2' contains faces belonging to multiple body groups: \['body00001', 'body00002'\]. The mapping between body and face groups cannot be created.", ): surface_forces.by_body_group(params=params) + +@pytest.mark.usefixtures("s3_download_override") +def test_force_distribution_grouping(mock_id, mock_response): + case = fl.Case(id="case-c6f1b159-3dab-4729-b769-3ca9999b2b87") + params = case.params + entity_info = params.private_attribute_asset_cache.project_entity_info + x_dist = case.results.x_slicing_force_distribution + + # x_dist.filter(include=["fluid/body00002_face00003"]) + # x_dist.as_dataframe().to_csv(path_or_buf="aaaaaa.csv") + # with open("aaaaaa.csv", "r") as fp: + # print(fp.read()) + + x_dist_by_boundary = x_dist.by_boundary_condition(params=params) + print("_entity_groups: ", x_dist_by_boundary._entity_groups) + print("_variables: ", x_dist_by_boundary._variables) + print("_entities: ", x_dist_by_boundary._entities) + for var_name in x_dist_by_boundary.raw_values.keys(): + print("var_name: ", var_name, "len: ", len(x_dist_by_boundary.raw_values[var_name]))