Repository: hancyran/RepSurf Branch: main Commit: 29bacd52fe61 Files: 115 Total size: 2.6 MB Directory structure: gitextract_ziqlnw07/ ├── .gitignore ├── LICENSE.txt ├── README.md ├── classification/ │ ├── README.md │ ├── dataset/ │ │ ├── ScanObjectNNDataLoader.py │ │ └── __init__.py │ ├── init.sh │ ├── models/ │ │ ├── __init__.py │ │ └── repsurf/ │ │ ├── __init__.py │ │ ├── repsurf_ssg_umb.py │ │ └── repsurf_ssg_umb_2x.py │ ├── modules/ │ │ ├── __init__.py │ │ ├── pointnet2_utils.py │ │ ├── pointops/ │ │ │ ├── __init__.py │ │ │ ├── functions/ │ │ │ │ ├── __init__.py │ │ │ │ └── pointops.py │ │ │ ├── setup.py │ │ │ └── src/ │ │ │ ├── __init__.py │ │ │ ├── ballquery/ │ │ │ │ ├── ballquery_cuda.cpp │ │ │ │ ├── ballquery_cuda_kernel.cu │ │ │ │ └── ballquery_cuda_kernel.h │ │ │ ├── cuda_utils.h │ │ │ ├── grouping/ │ │ │ │ ├── grouping_cuda.cpp │ │ │ │ ├── grouping_cuda_kernel.cu │ │ │ │ └── grouping_cuda_kernel.h │ │ │ ├── grouping_int/ │ │ │ │ ├── grouping_int_cuda.cpp │ │ │ │ ├── grouping_int_cuda_kernel.cu │ │ │ │ └── grouping_int_cuda_kernel.h │ │ │ ├── interpolation/ │ │ │ │ ├── interpolation_cuda.cpp │ │ │ │ ├── interpolation_cuda_kernel.cu │ │ │ │ └── interpolation_cuda_kernel.h │ │ │ ├── knnquery/ │ │ │ │ ├── __init__.py │ │ │ │ ├── knnquery_cuda.cpp │ │ │ │ ├── knnquery_cuda_kernel.cu │ │ │ │ └── knnquery_cuda_kernel.h │ │ │ ├── knnquery_heap/ │ │ │ │ ├── __init__.py │ │ │ │ ├── knnquery_heap_cuda.cpp │ │ │ │ ├── knnquery_heap_cuda_kernel.cu │ │ │ │ └── knnquery_heap_cuda_kernel.h │ │ │ ├── pointops_api.cpp │ │ │ └── sampling/ │ │ │ ├── sampling_cuda.cpp │ │ │ ├── sampling_cuda_kernel.cu │ │ │ └── sampling_cuda_kernel.h │ │ ├── polar_utils.py │ │ ├── ptaug_utils.py │ │ ├── recons_utils.py │ │ └── repsurface_utils.py │ ├── scripts/ │ │ └── scanobjectnn/ │ │ ├── repsurf_ssg_umb.sh │ │ └── repsurf_ssg_umb_2x.sh │ ├── tool/ │ │ └── train_cls_scanobjectnn.py │ └── util/ │ ├── __init__.py │ └── utils.py ├── segmentation/ │ ├── README.md │ ├── dataset/ │ │ ├── S3DISDataLoader.py │ │ └── __init__.py │ ├── init.sh │ ├── models/ │ │ ├── __init__.py │ │ ├── pointnet2/ │ │ │ ├── __init__.py │ │ │ └── pointnet2_ssg.py │ │ ├── pointtransformer/ │ │ │ ├── __init__.py │ │ │ └── pointtransformer.py │ │ └── repsurf/ │ │ ├── __init__.py │ │ └── repsurf_umb_ssg.py │ ├── modules/ │ │ ├── __init__.py │ │ ├── aug_utils.py │ │ ├── pointnet2_utils.py │ │ ├── pointops/ │ │ │ ├── __init__.py │ │ │ ├── functions/ │ │ │ │ ├── __init__.py │ │ │ │ └── pointops.py │ │ │ ├── setup.py │ │ │ └── src/ │ │ │ ├── __init__.py │ │ │ ├── aggregation/ │ │ │ │ ├── aggregation_cuda.cpp │ │ │ │ ├── aggregation_cuda_kernel.cu │ │ │ │ └── aggregation_cuda_kernel.h │ │ │ ├── cuda_utils.h │ │ │ ├── grouping/ │ │ │ │ ├── grouping_cuda.cpp │ │ │ │ ├── grouping_cuda_kernel.cu │ │ │ │ └── grouping_cuda_kernel.h │ │ │ ├── interpolation/ │ │ │ │ ├── interpolation_cuda.cpp │ │ │ │ ├── interpolation_cuda_kernel.cu │ │ │ │ └── interpolation_cuda_kernel.h │ │ │ ├── knnquery/ │ │ │ │ ├── knnquery_cuda.cpp │ │ │ │ ├── knnquery_cuda_kernel.cu │ │ │ │ └── knnquery_cuda_kernel.h │ │ │ ├── pointops_api.cpp │ │ │ ├── sampling/ │ │ │ │ ├── sampling_cuda.cpp │ │ │ │ ├── sampling_cuda_kernel.cu │ │ │ │ └── sampling_cuda_kernel.h │ │ │ └── subtraction/ │ │ │ ├── subtraction_cuda.cpp │ │ │ ├── subtraction_cuda_kernel.cu │ │ │ └── subtraction_cuda_kernel.h │ │ ├── pointtransformer_utils.py │ │ ├── polar_utils.py │ │ ├── recons_utils.py │ │ ├── repsurface_utils.py │ │ └── voxelize_utils.py │ ├── scripts/ │ │ └── s3dis/ │ │ ├── test_pointnet2.sh │ │ ├── test_pointtransformer.sh │ │ ├── test_repsurf_umb.sh │ │ ├── train_pointnet2.sh │ │ ├── train_pointtransformer.sh │ │ └── train_repsurf_umb.sh │ ├── tool/ │ │ ├── test_s3dis.py │ │ └── train.py │ └── util/ │ ├── __init__.py │ ├── data_util.py │ └── utils.py └── visualization/ ├── airplane_0001.txt ├── bed_0001.txt ├── cup_0001.txt ├── table_0250.txt ├── triangled_airplane.obj ├── triangled_bed.obj ├── triangled_cup.obj └── triangled_table.obj ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # C extensions *.so # Distribution / packaging .Python build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ pip-wheel-metadata/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ # Translations *.mo *.pot # Django stuff: *.log local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder target/ # Jupyter Notebook .ipynb_checkpoints # IPython profile_default/ ipython_config.py # pyenv .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath parsed files *.sage.py # Environments .env .venv env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ .idea/ ================================================ FILE: LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2022 Haoxi Ran. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ # RepSurf - Surface Representation for Point Clouds
[CVPR 2022 Oral] By *[Haoxi Ran\*](https://hancyran.github.io/) , Jun Liu, Chengjie Wang* ( * : corresponding contact) [![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/surface-representation-for-point-clouds/3d-point-cloud-classification-on-scanobjectnn)](https://paperswithcode.com/sota/3d-point-cloud-classification-on-scanobjectnn?p=surface-representation-for-point-clouds)
[![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/surface-representation-for-point-clouds/3d-object-detection-on-sun-rgbd-val)](https://paperswithcode.com/sota/3d-object-detection-on-sun-rgbd-val?p=surface-representation-for-point-clouds)
[![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/surface-representation-for-point-clouds/3d-point-cloud-classification-on-modelnet40)](https://paperswithcode.com/sota/3d-point-cloud-classification-on-modelnet40?p=surface-representation-for-point-clouds)
[![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/surface-representation-for-point-clouds/semantic-segmentation-on-s3dis)](https://paperswithcode.com/sota/semantic-segmentation-on-s3dis?p=surface-representation-for-point-clouds)
[![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/surface-representation-for-point-clouds/3d-object-detection-on-scannetv2)](https://paperswithcode.com/sota/3d-object-detection-on-scannetv2?p=surface-representation-for-point-clouds)
[![PWC](https://img.shields.io/endpoint.svg?url=https://paperswithcode.com/badge/surface-representation-for-point-clouds/semantic-segmentation-on-s3dis-area5)](https://paperswithcode.com/sota/semantic-segmentation-on-s3dis-area5?p=surface-representation-for-point-clouds) ### The pytorch official implementation of "[Surface Representation for Point Clouds](http://arxiv.org/abs/2205.05740)" ### [PDF](https://openaccess.thecvf.com/content/CVPR2022/papers/Ran_Surface_Representation_for_Point_Clouds_CVPR_2022_paper.pdf) | [arXiv](http://arxiv.org/abs/2205.05740)
## News: - (**Sep 10** NEW :fire:) We have uploaded the implementation of RepSurf on S3DIS along with its training log and pretrained weights. - (**June 24** :fire:) We sucessfully finished our Oral presentation at CVPR 2022! - (**May 11**) We have uploaded the implementation of RepSurf on ScanObjectNN along with its training log and pretrained weights. ## Tasks: ### We conduct experiments of different tasks on different codebases: > Classification: **[3D Object Classification](./classification)**
> Segmentation: **[3D Semantic Segmentation](./segmentation)** ## Visualization We provide several visualization results in the folder **./visualization** for a closer look at the construction of RepSurf. ## License RepSurf is under the Apache-2.0 license. Please contact the primary author **Haoxi Ran (ranhaoxi@gmail.com)** for commercial use. ================================================ FILE: classification/README.md ================================================ # RepSurf for Classification
By *[Haoxi Ran\*](https://hancyran.github.io/) , Jun Liu, Chengjie Wang* ( * : corresponding contact) ### [PDF](https://openaccess.thecvf.com/content/CVPR2022/papers/Ran_Surface_Representation_for_Point_Clouds_CVPR_2022_paper.pdf) | [arXiv](http://arxiv.org/abs/2205.05740) ## Preparation ### Environment We tested under the environment: * python 3.7 * pytorch 1.6.0 * cuda 10.1 * gcc 7.2.0 * h5py For anaconda user, initialize the conda environment **repsurf-cls** by: ``` sh init.sh ``` ## Experiments ### ScanObjectNN (Data & Logs: [Google Drive](https://drive.google.com/drive/folders/1DGWT9W46MKVI0-lu18hJhB-R3BFVWuCs?usp=sharing)) * Performance:
Model Accuracy #Params Augment Code Log Checkpoint
MVTN 82.8 4.24M None link N/A link
PointMLP 85.7 12.6M Scale, Shift link link link
PointNet++ SSG 77.9 1.475M Rotate, Jitter link N/A N/A
Umbrella RepSurf (PointNet++ SSG) 84.87 1.483M None link google drive google drive (6MB)
Umbrella RepSurf (PointNet++ SSG, 2x) 86.05 6.806M None link google drive google drive (27MB)

* To download dataset: ``` wget https://download.cs.stanford.edu/orion/scanobjectnn/h5_files.zip unzip h5_files.zip ln -s [PATH]/h5_files data/ScanObjectNN ``` **Note**: We conduct all experiments on the hardest variant of ScanObjectNN (**PB_T50_RS**).
* To train **Umbrella RepSurf** on ScanObjectNN: ``` sh scripts/scanobjectnn/repsurf_ssg_umb.sh ``` * To train **Umbrella RepSurf (2x setting)** on ScanObjectNN: ``` sh scripts/scanobjectnn/repsurf_ssg_umb_2x.sh ``` ## Acknowledgment We use part of the library [pointops](https://github.com/hszhao/PointWeb/tree/master/lib/pointops) from [PointWeb](https://github.com/hszhao/PointWeb). ## License RepSurf is under the Apache-2.0 license. Please contact the primary author **Haoxi Ran (ranhaoxi@gmail.com)** for commercial use. ================================================ FILE: classification/dataset/ScanObjectNNDataLoader.py ================================================ """ Author: Haoxi Ran Date: 05/10/2022 """ import h5py import warnings from torch.utils.data import Dataset warnings.filterwarnings('ignore') class ScanObjectNNDataLoader(Dataset): def __init__(self, root, split='training', bg=True): self.root = root assert (split == 'training' or split == 'test') if bg: print('Use data with background points') dir_name = 'main_split' else: print('Use data without background points') dir_name = 'main_split_nobg' file_name = '_objectdataset_augmentedrot_scale75.h5' h5_name = '{}/{}/{}'.format(self.root, dir_name, split + file_name) with h5py.File(h5_name, mode="r") as f: self.data = f['data'][:].astype('float32') self.label = f['label'][:].astype('int64') print('The size of %s data is %d' % (split, self.data.shape[0])) def __len__(self): return self.data.shape[0] def __getitem__(self, index): return self.data[index].T, self.label[index] ================================================ FILE: classification/dataset/__init__.py ================================================ ================================================ FILE: classification/init.sh ================================================ #!/bin/sh mkdir -p log/PointAnalysis/log/ScanObjectNN mkdir -p data/ conda create -n repsurf-cls python=3.7 -y conda activate repsurf-cls conda install pytorch=1.6.0 torchvision=0.7.0 cudatoolkit=10.1 -c pytorch -c conda-forge -y conda install -c anaconda h5py -y cd modules/pointops python3 setup.py install cd - ================================================ FILE: classification/models/__init__.py ================================================ ================================================ FILE: classification/models/repsurf/__init__.py ================================================ ================================================ FILE: classification/models/repsurf/repsurf_ssg_umb.py ================================================ """ Author: Haoxi Ran Date: 05/10/2022 """ import torch.nn as nn import torch.nn.functional as F from modules.repsurface_utils import SurfaceAbstractionCD, UmbrellaSurfaceConstructor class Model(nn.Module): def __init__(self, args): super(Model, self).__init__() center_channel = 0 if not args.return_center else (6 if args.return_polar else 3) repsurf_channel = 10 self.init_nsample = args.num_point self.return_dist = args.return_dist self.surface_constructor = UmbrellaSurfaceConstructor(args.group_size + 1, repsurf_channel, return_dist=args.return_dist, aggr_type=args.umb_pool, cuda=args.cuda_ops) self.sa1 = SurfaceAbstractionCD(npoint=512, radius=0.2, nsample=32, feat_channel=repsurf_channel, pos_channel=center_channel, mlp=[64, 64, 128], group_all=False, return_polar=args.return_polar, cuda=args.cuda_ops) self.sa2 = SurfaceAbstractionCD(npoint=128, radius=0.4, nsample=64, feat_channel=128 + repsurf_channel, pos_channel=center_channel, mlp=[128, 128, 256], group_all=False, return_polar=args.return_polar, cuda=args.cuda_ops) self.sa3 = SurfaceAbstractionCD(npoint=None, radius=None, nsample=None, feat_channel=256 + repsurf_channel, pos_channel=center_channel, mlp=[256, 512, 1024], group_all=True, return_polar=args.return_polar, cuda=args.cuda_ops) # modelnet40 self.classfier = nn.Sequential( nn.Linear(1024, 512), nn.BatchNorm1d(512), nn.ReLU(True), nn.Dropout(0.4), nn.Linear(512, 256), nn.BatchNorm1d(256), nn.ReLU(True), nn.Dropout(0.4), nn.Linear(256, args.num_class)) def forward(self, points): # init center = points[:, :3, :] normal = self.surface_constructor(center) center, normal, feature = self.sa1(center, normal, None) center, normal, feature = self.sa2(center, normal, feature) center, normal, feature = self.sa3(center, normal, feature) feature = feature.view(-1, 1024) feature = self.classfier(feature) feature = F.log_softmax(feature, -1) return feature ================================================ FILE: classification/models/repsurf/repsurf_ssg_umb_2x.py ================================================ """ Author: Haoxi Ran Date: 05/10/2022 """ import torch.nn as nn import torch.nn.functional as F from modules.repsurface_utils import SurfaceAbstractionCD, UmbrellaSurfaceConstructor class Model(nn.Module): def __init__(self, args): super(Model, self).__init__() center_channel = 0 if not args.return_center else (6 if args.return_polar else 3) repsurf_channel = 10 self.init_nsample = args.num_point self.return_dist = args.return_dist self.surface_constructor = UmbrellaSurfaceConstructor(args.group_size + 1, repsurf_channel, return_dist=args.return_dist, aggr_type=args.umb_pool, cuda=args.cuda_ops) self.sa1 = SurfaceAbstractionCD(npoint=512, radius=0.1, nsample=24, feat_channel=repsurf_channel, pos_channel=center_channel, mlp=[128, 128, 256], group_all=False, return_polar=args.return_polar, cuda=args.cuda_ops) self.sa2 = SurfaceAbstractionCD(npoint=128, radius=0.2, nsample=24, feat_channel=256 + repsurf_channel, pos_channel=center_channel, mlp=[256, 256, 512], group_all=False, return_polar=args.return_polar, cuda=args.cuda_ops) self.sa3 = SurfaceAbstractionCD(npoint=32, radius=0.4, nsample=24, feat_channel=512 + repsurf_channel, pos_channel=center_channel, mlp=[512, 512, 1024], group_all=False, return_polar=args.return_polar, cuda=args.cuda_ops) self.sa4 = SurfaceAbstractionCD(npoint=None, radius=None, nsample=None, feat_channel=1024 + repsurf_channel, pos_channel=center_channel, mlp=[1024, 1024, 2048], group_all=True, return_polar=args.return_polar, cuda=args.cuda_ops) # modelnet40 self.classfier = nn.Sequential( nn.Linear(2048, 512), nn.BatchNorm1d(512), nn.ReLU(True), nn.Dropout(0.4), nn.Linear(512, 256), nn.BatchNorm1d(256), nn.ReLU(True), nn.Dropout(0.4), nn.Linear(256, args.num_class)) def forward(self, points): # init center = points[:, :3, :] normal = self.surface_constructor(center) center, normal, feature = self.sa1(center, normal, None) center, normal, feature = self.sa2(center, normal, feature) center, normal, feature = self.sa3(center, normal, feature) center, normal, feature = self.sa4(center, normal, feature) feature = feature.view(-1, 2048) feature = self.classfier(feature) feature = F.log_softmax(feature, -1) return feature ================================================ FILE: classification/modules/__init__.py ================================================ ================================================ FILE: classification/modules/pointnet2_utils.py ================================================ """ Author: Haoxi Ran Date: 05/10/2022 """ import torch try: from modules.pointops.functions.pointops import furthestsampling, gathering, ballquery, knnquery, \ grouping, interpolation, nearestneighbor except: raise Exception('Failed to load pointops') def square_distance(src, dst): """ Calculate Squared distance between each two points. """ B, N, _ = src.shape _, M, _ = dst.shape dist = -2 * torch.matmul(src, dst.permute(0, 2, 1)) dist += torch.sum(src ** 2, -1).view(B, N, 1) dist += torch.sum(dst ** 2, -1).view(B, 1, M) return dist def index_points(points, idx, cuda=False, is_group=False): if cuda: if is_group: points = grouping(points.transpose(1, 2).contiguous(), idx) return points.permute(0, 2, 3, 1).contiguous() else: points = gathering(points.transpose(1, 2).contiguous(), idx) return points.permute(0, 2, 1).contiguous() device = points.device B = points.shape[0] view_shape = list(idx.shape) view_shape[1:] = [1] * (len(view_shape) - 1) repeat_shape = list(idx.shape) repeat_shape[0] = 1 batch_indices = torch.arange(B, dtype=torch.long).to(device).view(view_shape).repeat(repeat_shape) new_points = points[batch_indices, idx, :] return new_points def farthest_point_sample(xyz, npoint, cuda=False): """ Input: xyz: pointcloud data, [B, N, 3] npoint: number of samples Return: centroids: sampled pointcloud index, [B, npoint] FLOPs: S * (3 + 3 + 2) """ if cuda: if not xyz.is_contiguous(): xyz = xyz.contiguous() return furthestsampling(xyz, npoint) device = xyz.device B, N, C = xyz.shape centroids = torch.zeros(B, npoint, dtype=torch.long).to(device) distance = torch.ones(B, N).to(device) * 1e10 farthest = torch.randint(0, N, (B,), dtype=torch.long).to(device) batch_indices = torch.arange(B, dtype=torch.long).to(device) for i in range(npoint): centroids[:, i] = farthest centroid = xyz[batch_indices, farthest, :].view(B, 1, 3) dist = torch.sum((xyz - centroid) ** 2, -1) mask = dist < distance distance[mask] = dist[mask] farthest = torch.max(distance, -1)[1] return centroids def query_ball_point(radius, nsample, xyz, new_xyz, debug=False, cuda=False): if cuda: if not xyz.is_contiguous(): xyz = xyz.contiguous() if not new_xyz.is_contiguous(): new_xyz = new_xyz.contiguous() return ballquery(radius, nsample, xyz, new_xyz) device = xyz.device B, N, C = xyz.shape _, S, _ = new_xyz.shape group_idx = torch.arange(N, dtype=torch.long).to(device).view(1, 1, N).repeat([B, S, 1]) sqrdists = square_distance(new_xyz, xyz) group_idx[sqrdists > radius ** 2] = N group_idx = group_idx.sort(dim=-1)[0][:, :, :nsample] group_first = group_idx[:, :, 0].view(B, S, 1).repeat([1, 1, nsample]) mask = group_idx == N group_idx[mask] = group_first[mask] if debug: num_miss = torch.sum(mask) num_over = torch.sum(torch.clamp(torch.sum(sqrdists < radius ** 2, dim=2) - nsample, min=0)) return num_miss, num_over return group_idx def query_knn_point(k, xyz, new_xyz, cuda=False): if cuda: if not xyz.is_contiguous(): xyz = xyz.contiguous() if not new_xyz.is_contiguous(): new_xyz = new_xyz.contiguous() return knnquery(k, xyz, new_xyz) dist = square_distance(new_xyz, xyz) group_idx = dist.sort(descending=False, dim=-1)[1][:, :, :k] return group_idx def sample(nsample, feature, cuda=False): feature = feature.permute(0, 2, 1) xyz = feature[:, :, :3] fps_idx = farthest_point_sample(xyz, nsample, cuda=cuda) # [B, npoint, C] torch.cuda.empty_cache() feature = index_points(feature, fps_idx, cuda=cuda, is_group=False) torch.cuda.empty_cache() feature = feature.permute(0, 2, 1) return feature ================================================ FILE: classification/modules/pointops/__init__.py ================================================ ================================================ FILE: classification/modules/pointops/functions/__init__.py ================================================ from .pointops import * ================================================ FILE: classification/modules/pointops/functions/pointops.py ================================================ from typing import Tuple import numpy as np import torch from torch.autograd import Function import torch.nn as nn try: import pointops_cuda except ImportError: import warnings import os from torch.utils.cpp_extension import load warnings.warn("Unable to load pointops_cuda cpp extension.") pointops_cuda_src = os.path.join(os.path.dirname(__file__), "../src") pointops_cuda = load('pointops_cuda', [ pointops_cuda_src + '/pointops_api.cpp', pointops_cuda_src + '/ballquery/ballquery_cuda.cpp', pointops_cuda_src + '/ballquery/ballquery_cuda_kernel.cu', pointops_cuda_src + '/knnquery/knnquery_cuda.cpp', pointops_cuda_src + '/knnquery/knnquery_cuda_kernel.cu', pointops_cuda_src + '/knnquery_heap/knnquery_heap_cuda.cpp', pointops_cuda_src + '/knnquery_heap/knnquery_heap_cuda_kernel.cu', pointops_cuda_src + '/grouping/grouping_cuda.cpp', pointops_cuda_src + '/grouping/grouping_cuda_kernel.cu', pointops_cuda_src + '/grouping_int/grouping_int_cuda.cpp', pointops_cuda_src + '/grouping_int/grouping_int_cuda_kernel.cu', pointops_cuda_src + '/interpolation/interpolation_cuda.cpp', pointops_cuda_src + '/interpolation/interpolation_cuda_kernel.cu', pointops_cuda_src + '/sampling/sampling_cuda.cpp', pointops_cuda_src + '/sampling/sampling_cuda_kernel.cu' ], build_directory=pointops_cuda_src, verbose=False) class FurthestSampling(Function): @staticmethod def forward(ctx, xyz, m): """ input: xyz: (b, n, 3) and n > m, m: int32 output: idx: (b, m) """ assert xyz.is_contiguous() b, n, _ = xyz.size() idx = torch.cuda.IntTensor(b, m) temp = torch.cuda.FloatTensor(b, n).fill_(1e10) pointops_cuda.furthestsampling_cuda(b, n, m, xyz, temp, idx) return idx @staticmethod def backward(xyz, a=None): return None, None furthestsampling = FurthestSampling.apply class Gathering(Function): @staticmethod def forward(ctx, features, idx): """ input: features: (b, c, n), idx : (b, m) tensor output: (b, c, m) """ assert features.is_contiguous() assert idx.is_contiguous() b, c, n = features.size() m = idx.size(1) output = torch.cuda.FloatTensor(b, c, m) pointops_cuda.gathering_forward_cuda(b, c, n, m, features, idx, output) ctx.for_backwards = (idx, c, n) return output @staticmethod def backward(ctx, grad_out): idx, c, n = ctx.for_backwards b, m = idx.size() grad_features = torch.cuda.FloatTensor(b, c, n).zero_() grad_out_data = grad_out.data.contiguous() pointops_cuda.gathering_backward_cuda(b, c, n, m, grad_out_data, idx, grad_features.data) return grad_features, None gathering = Gathering.apply class NearestNeighbor(Function): @staticmethod def forward(ctx, unknown: torch.Tensor, known: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]: """ Find the three nearest neighbors of unknown in known input: unknown: (b, n, 3), known: (b, m, 3) output: dist2: (b, n, 3) l2 distance to the three nearest neighbors idx: (b, n, 3) index of 3 nearest neighbors """ assert unknown.is_contiguous() assert known.is_contiguous() b, n, _ = unknown.size() m = known.size(1) dist2 = torch.cuda.FloatTensor(b, n, 3) idx = torch.cuda.IntTensor(b, n, 3) pointops_cuda.nearestneighbor_cuda(b, n, m, unknown, known, dist2, idx) return torch.sqrt(dist2), idx @staticmethod def backward(ctx, a=None, b=None): return None, None nearestneighbor = NearestNeighbor.apply class Interpolation(Function): @staticmethod def forward(ctx, features: torch.Tensor, idx: torch.Tensor, weight: torch.Tensor) -> torch.Tensor: """ Performs weight linear interpolation on 3 features input: features: (b, c, m) features descriptors to be interpolated from idx: (b, n, 3) three nearest neighbors of the target features in features weight: (b, n, 3) weights output: (b, c, n) tensor of the interpolated features """ features = features.contiguous() assert features.is_contiguous() assert idx.is_contiguous() assert weight.is_contiguous() b, c, m = features.size() n = idx.size(1) ctx.interpolation_for_backward = (idx, weight, m) output = torch.cuda.FloatTensor(b, c, n) pointops_cuda.interpolation_forward_cuda(b, c, m, n, features, idx, weight, output) return output @staticmethod def backward(ctx, grad_out: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor, torch.Tensor]: """ input: grad_out: (b, c, n) output: grad_features: (b, c, m), None, None """ idx, weight, m = ctx.interpolation_for_backward b, c, n = grad_out.size() grad_features = torch.cuda.FloatTensor(b, c, m).zero_() grad_out_data = grad_out.data.contiguous() pointops_cuda.interpolation_backward_cuda(b, c, n, m, grad_out_data, idx, weight, grad_features.data) return grad_features, None, None interpolation = Interpolation.apply class Grouping(Function): @staticmethod def forward(ctx, features: torch.Tensor, idx: torch.Tensor) -> torch.Tensor: """ input: features: (b, c, n), idx : (b, m, nsample) containing the indicies of features to group with output: (b, c, m, nsample) """ assert features.is_contiguous() assert idx.is_contiguous() b, c, n = features.size() _, m, nsample = idx.size() output = torch.cuda.FloatTensor(b, c, m, nsample) pointops_cuda.grouping_forward_cuda(b, c, n, m, nsample, features, idx, output) ctx.for_backwards = (idx, n) return output @staticmethod def backward(ctx, grad_out: torch.Tensor) -> Tuple[torch.Tensor, torch.Tensor]: """ input: grad_out: (b, c, m, nsample) output: (b, c, n), None """ idx, n = ctx.for_backwards b, c, m, nsample = grad_out.size() grad_features = torch.cuda.FloatTensor(b, c, n).zero_() grad_out_data = grad_out.data.contiguous() pointops_cuda.grouping_backward_cuda(b, c, n, m, nsample, grad_out_data, idx, grad_features.data) return grad_features, None grouping = Grouping.apply class GroupingInt(Function): @staticmethod def forward(ctx, features: torch.Tensor, idx: torch.Tensor) -> torch.Tensor: """ input: features: (b, c, n), idx : (b, m, nsample) containing the indicies of features to group with output: (b, c, m, nsample) """ assert features.is_contiguous() assert idx.is_contiguous() b, c, n = features.size() _, m, nsample = idx.size() output = torch.cuda.LongTensor(b, c, m, nsample) pointops_cuda.grouping_int_forward_cuda(b, c, n, m, nsample, features, idx, output) return output @staticmethod def backward(ctx, a=None): return None, None grouping_int = GroupingInt.apply class BallQuery(Function): @staticmethod def forward(ctx, radius: float, nsample: int, xyz: torch.Tensor, new_xyz: torch.Tensor) -> torch.Tensor: """ input: radius: float, radius of the balls nsample: int, maximum number of features in the balls xyz: torch.Tensor, (b, n, 3) xyz coordinates of the features new_xyz: torch.Tensor, (b, m, 3) centers of the ball query output: (b, m, nsample) tensor with the indicies of the features that form the query balls """ assert xyz.is_contiguous() assert new_xyz.is_contiguous() b, n, _ = xyz.size() m = new_xyz.size(1) idx = torch.cuda.IntTensor(b, m, nsample).zero_() pointops_cuda.ballquery_cuda(b, n, m, radius, nsample, new_xyz, xyz, idx) return idx @staticmethod def backward(ctx, a=None): return None, None, None, None ballquery = BallQuery.apply def pairwise_distances(x, y=None): ''' Input: x is a Nxd matrix y is an optional Mxd matirx Output: dist is a NxM matrix where dist[i,j] is the square norm between x[i,:] and y[j,:] if y is not given then use 'y=x'. i.e. dist[i,j] = ||x[i,:]-y[j,:]||^2 ''' x_norm = (x ** 2).sum(1).view(-1, 1) if y is not None: y_t = torch.transpose(y, 0, 1) y_norm = (y ** 2).sum(1).view(1, -1) else: y_t = torch.transpose(x, 0, 1) y_norm = x_norm.view(1, -1) dist = x_norm + y_norm - 2.0 * torch.mm(x, y_t) import numpy as np return torch.clamp(dist, 0.0, np.inf) class KNNQueryNaive(Function): @staticmethod def forward(ctx, nsample: int, xyz: torch.Tensor, new_xyz: torch.Tensor = None) -> Tuple[torch.Tensor]: """ KNN Indexing input: nsample: int32, Number of neighbor xyz: (b, n, 3) coordinates of the features new_xyz: (b, m, 3) centriods output: idx: (b, m, nsample) """ if new_xyz is None: new_xyz = xyz b, m, _ = new_xyz.size() n = xyz.size(1) ''' idx = torch.zeros(b, m, nsample).int().cuda() for i in range(b): dist = pairwise_distances(new_xyz[i, :, :], xyz[i, :, :]) [_, idxs] = torch.sort(dist, dim=1) idx[i, :, :] = idxs[:, 0:nsample] ''' # ''' # new_xyz_repeat = new_xyz.repeat(1, 1, n).view(b, m * n, 3) # xyz_repeat = xyz.repeat(1, m, 1).view(b, m * n, 3) # dist = (new_xyz_repeat - xyz_repeat).pow(2).sum(dim=2).view(b, m, n) dist = (new_xyz.repeat(1, 1, n).view(b, m * n, 3) - xyz.repeat(1, m, 1).view(b, m * n, 3)).pow(2).sum( dim=2).view(b, m, n) [_, idxs] = torch.sort(dist, dim=2) idx = idxs[:, :, 0:nsample].int() # ''' return idx @staticmethod def backward(ctx): return None, None, None knnquery_naive = KNNQueryNaive.apply class KNNQuery(Function): @staticmethod def forward(ctx, nsample: int, xyz: torch.Tensor, new_xyz: torch.Tensor = None) -> Tuple[torch.Tensor]: """ KNN Indexing input: nsample: int32, Number of neighbor xyz: (b, n, 3) coordinates of the features new_xyz: (b, m, 3) centriods output: idx: (b, m, nsample) ( dist2: (b, m, nsample) ) """ if new_xyz is None: new_xyz = xyz xyz = xyz.contiguous() new_xyz = new_xyz.contiguous() assert xyz.is_contiguous() assert new_xyz.is_contiguous() b, m, _ = new_xyz.size() n = xyz.size(1) idx = torch.cuda.IntTensor(b, m, nsample).zero_() dist2 = torch.cuda.FloatTensor(b, m, nsample).zero_() pointops_cuda.knnquery_cuda(b, n, m, nsample, xyz, new_xyz, idx, dist2) return idx @staticmethod def backward(ctx, a=None): return None, None, None knnquery = KNNQuery.apply class KNNQuery_Heap(Function): @staticmethod def forward(ctx, nsample: int, xyz: torch.Tensor, new_xyz: torch.Tensor = None) -> Tuple[torch.Tensor]: """ KNN Indexing input: nsample: int32, Number of neighbor xyz: (b, n, 3) coordinates of the features new_xyz: (b, m, 3) centriods output: idx: (b, m, nsample) ( dist2: (b, m, nsample) ) """ if new_xyz is None: new_xyz = xyz assert xyz.is_contiguous() assert new_xyz.is_contiguous() b, m, _ = new_xyz.size() n = xyz.size(1) idx = torch.cuda.IntTensor(b, m, nsample).zero_() dist2 = torch.cuda.FloatTensor(b, m, nsample).zero_() pointops_cuda.knnquery_heap_cuda(b, n, m, nsample, xyz, new_xyz, idx, dist2) ctx.mark_non_differentiable(idx) return idx @staticmethod def backward(ctx, a=None): return None, None, None knnquery_heap = KNNQuery_Heap.apply class QueryAndGroup(nn.Module): """ Groups with a ball query of radius parameters: radius: float32, Radius of ball nsample: int32, Maximum number of features to gather in the ball """ def __init__(self, radius=None, nsample=32, use_xyz=True, return_idx=False): super(QueryAndGroup, self).__init__() self.radius, self.nsample, self.use_xyz = radius, nsample, use_xyz self.return_idx = return_idx def forward(self, xyz: torch.Tensor, new_xyz: torch.Tensor = None, features: torch.Tensor = None, idx: torch.Tensor = None) -> torch.Tensor: """ input: xyz: (b, n, 3) coordinates of the features new_xyz: (b, m, 3) centriods features: (b, c, n) idx: idx of neighbors # idxs: (b, n) output: new_features: (b, c+3, m, nsample) # grouped_idxs: (b, m, nsample) """ if new_xyz is None: new_xyz = xyz if idx is None: if self.radius is not None: idx = ballquery(self.radius, self.nsample, xyz, new_xyz) else: # idx = knnquery_naive(self.nsample, xyz, new_xyz) # (b, m, nsample) # idx = knnquery(self.nsample, xyz, new_xyz) # (b, m, nsample) idx = knnquery_heap(self.nsample, xyz, new_xyz) # (b, m, nsample) xyz_trans = xyz.transpose(1, 2).contiguous() grouped_xyz = grouping(xyz_trans, idx) # (b, 3, m, nsample) # grouped_idxs = grouping(idxs.unsqueeze(1).float(), idx).squeeze(1).int() # (b, m, nsample) grouped_xyz_diff = grouped_xyz - new_xyz.transpose(1, 2).unsqueeze(-1) if features is not None: grouped_features = grouping(features, idx) if self.use_xyz: new_features = torch.cat([grouped_xyz_diff, grouped_features], dim=1) # (b, 3+c, m, nsample) else: new_features = grouped_features else: assert self.use_xyz, "Cannot have not features and not use xyz as a feature!" new_features = grouped_xyz_diff if self.return_idx: return new_features, grouped_xyz, idx.long() # (b,c,m,k), (b,3,m,k), (b,m,k) else: return new_features, grouped_xyz ================================================ FILE: classification/modules/pointops/setup.py ================================================ #python3 setup.py install from setuptools import setup from torch.utils.cpp_extension import BuildExtension, CUDAExtension import os from distutils.sysconfig import get_config_vars (opt,) = get_config_vars('OPT') os.environ['OPT'] = " ".join( flag for flag in opt.split() if flag != '-Wstrict-prototypes' ) setup( name='pointops', ext_modules=[ CUDAExtension('pointops_cuda', [ 'src/pointops_api.cpp', 'src/ballquery/ballquery_cuda.cpp', 'src/ballquery/ballquery_cuda_kernel.cu', 'src/knnquery/knnquery_cuda.cpp', 'src/knnquery/knnquery_cuda_kernel.cu', 'src/knnquery_heap/knnquery_heap_cuda.cpp', 'src/knnquery_heap/knnquery_heap_cuda_kernel.cu', 'src/grouping/grouping_cuda.cpp', 'src/grouping/grouping_cuda_kernel.cu', 'src/grouping_int/grouping_int_cuda.cpp', 'src/grouping_int/grouping_int_cuda_kernel.cu', 'src/interpolation/interpolation_cuda.cpp', 'src/interpolation/interpolation_cuda_kernel.cu', 'src/sampling/sampling_cuda.cpp', 'src/sampling/sampling_cuda_kernel.cu', ], extra_compile_args={'cxx': ['-g'], 'nvcc': ['-O2']}) ], cmdclass={'build_ext': BuildExtension}) ================================================ FILE: classification/modules/pointops/src/__init__.py ================================================ ================================================ FILE: classification/modules/pointops/src/ballquery/ballquery_cuda.cpp ================================================ #include #include #include #include #include "ballquery_cuda_kernel.h" extern THCState *state; #define CHECK_CUDA(x) TORCH_CHECK(x.is_cuda(), #x, " must be a CUDAtensor ") #define CHECK_CONTIGUOUS(x) TORCH_CHECK(x.is_contiguous(), #x, " must be contiguous ") #define CHECK_INPUT(x) CHECK_CUDA(x);CHECK_CONTIGUOUS(x) void ballquery_cuda(int b, int n, int m, float radius, int nsample, at::Tensor new_xyz_tensor, at::Tensor xyz_tensor, at::Tensor idx_tensor) { const float *new_xyz = new_xyz_tensor.data_ptr(); const float *xyz = xyz_tensor.data_ptr(); int *idx = idx_tensor.data_ptr(); ballquery_cuda_launcher(b, n, m, radius, nsample, new_xyz, xyz, idx); } void ballquery_cuda_fast(int b, int n, int m, float radius, int nsample, at::Tensor new_xyz_tensor, at::Tensor xyz_tensor, at::Tensor idx_tensor) { CHECK_INPUT(new_xyz_tensor); CHECK_INPUT(xyz_tensor); const float *new_xyz = new_xyz_tensor.data_ptr(); const float *xyz = xyz_tensor.data_ptr(); int *idx = idx_tensor.data_ptr(); cudaStream_t stream = at::cuda::getCurrentCUDAStream(); ballquery_cuda_launcher_fast(b, n, m, radius, nsample, new_xyz, xyz, idx, stream); } ================================================ FILE: classification/modules/pointops/src/ballquery/ballquery_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "ballquery_cuda_kernel.h" // input: new_xyz(b, m, 3) xyz(b, n, 3) // output: idx(b, m, nsample) __global__ void ballquery_cuda_kernel(int b, int n, int m, float radius, int nsample, const float *new_xyz, const float *xyz, int *idx) { int batch_index = blockIdx.x; xyz += batch_index * n * 3; new_xyz += batch_index * m * 3; idx += m * nsample * batch_index; int index = threadIdx.x; int stride = blockDim.x; float radius2 = radius * radius; for (int j = index; j < m; j += stride) { float new_x = new_xyz[j * 3 + 0]; float new_y = new_xyz[j * 3 + 1]; float new_z = new_xyz[j * 3 + 2]; for (int k = 0, cnt = 0; k < n && cnt < nsample; ++k) { float x = xyz[k * 3 + 0]; float y = xyz[k * 3 + 1]; float z = xyz[k * 3 + 2]; float d2 = (new_x - x) * (new_x - x) + (new_y - y) * (new_y - y) + (new_z - z) * (new_z - z); if (d2 < radius2) { if (cnt == 0) { for (int l = 0; l < nsample; ++l) idx[j * nsample + l] = k; } idx[j * nsample + cnt] = k; ++cnt; } } } } void ballquery_cuda_launcher(int b, int n, int m, float radius, int nsample, const float *new_xyz, const float *xyz, int *idx) { ballquery_cuda_kernel<<>>(b, n, m, radius, nsample, new_xyz, xyz, idx); } __global__ void ballquery_cuda_kernel_fast(int b, int n, int m, float radius, int nsample, const float *__restrict__ new_xyz, const float *__restrict__ xyz, int *__restrict__ idx) { int bs_idx = blockIdx.y; int pt_idx = blockIdx.x * blockDim.x + threadIdx.x; if (bs_idx >= b || pt_idx >= m) return; new_xyz += bs_idx * m * 3 + pt_idx * 3; xyz += bs_idx * n * 3; idx += bs_idx * m * nsample + pt_idx * nsample; float radius2 = radius * radius; float new_x = new_xyz[0]; float new_y = new_xyz[1]; float new_z = new_xyz[2]; int cnt = 0; for (int k = 0; k < n; ++k) { float x = xyz[k * 3 + 0]; float y = xyz[k * 3 + 1]; float z = xyz[k * 3 + 2]; float d2 = (new_x - x) * (new_x - x) + (new_y - y) * (new_y - y) + (new_z - z) * (new_z - z); if (d2 < radius2){ if (cnt == 0){ for (int l = 0; l < nsample; ++l) { idx[l] = k; } } idx[cnt] = k; ++cnt; if (cnt >= nsample){ break; } } } } void ballquery_cuda_launcher_fast(int b, int n, int m, float radius, int nsample, const float *new_xyz, const float *xyz, int *idx, cudaStream_t stream) { // param new_xyz: (B, m, 3) // param xyz: (B, n, 3) // param idx: (B, m, nsample) cudaError_t err; dim3 blocks(DIVUP(m, THREADS_PER_BLOCK), b); // blockIdx.x(col), blockIdx.y(row) dim3 threads(THREADS_PER_BLOCK); ballquery_cuda_kernel_fast<<>>(b, n, m, radius, nsample, new_xyz, xyz, idx); // cudaDeviceSynchronize(); // for using printf in kernel function err = cudaGetLastError(); if (cudaSuccess != err) { fprintf(stderr, "CUDA kernel failed : %s\n", cudaGetErrorString(err)); exit(-1); } } ================================================ FILE: classification/modules/pointops/src/ballquery/ballquery_cuda_kernel.h ================================================ #ifndef _BALLQUERY_CUDA_KERNEL #define _BALLQUERY_CUDA_KERNEL #include #include #include void ballquery_cuda(int b, int n, int m, float radius, int nsample, at::Tensor new_xyz_tensor, at::Tensor xyz_tensor, at::Tensor idx_tensor); void ballquery_cuda_fast(int b, int n, int m, float radius, int nsample, at::Tensor new_xyz_tensor, at::Tensor xyz_tensor, at::Tensor idx_tensor); #ifdef __cplusplus extern "C" { #endif void ballquery_cuda_launcher(int b, int n, int m, float radius, int nsample, const float *xyz, const float *new_xyz, int *idx); void ballquery_cuda_launcher_fast(int b, int n, int m, float radius, int nsample, const float *new_xyz, const float *xyz, int *idx, cudaStream_t stream); #ifdef __cplusplus } #endif #endif ================================================ FILE: classification/modules/pointops/src/cuda_utils.h ================================================ #ifndef _CUDA_UTILS_H #define _CUDA_UTILS_H #include #define TOTAL_THREADS 1024 #define CHECK_CUDA(x) TORCH_CHECK(x.is_cuda(), #x, " must be a CUDAtensor ") #define CHECK_CONTIGUOUS(x) TORCH_CHECK(x.is_contiguous(), #x, " must be contiguous ") #define CHECK_INPUT(x) CHECK_CUDA(x);CHECK_CONTIGUOUS(x) #define THREADS_PER_BLOCK 256 #define DIVUP(m,n) ((m) / (n) + ((m) % (n) > 0)) inline int opt_n_threads(int work_size) { const int pow_2 = std::log(static_cast(work_size)) / std::log(2.0); return max(min(1 << pow_2, TOTAL_THREADS), 1); } inline dim3 opt_block_config(int x, int y) { const int x_threads = opt_n_threads(x); const int y_threads = max(min(opt_n_threads(y), TOTAL_THREADS / x_threads), 1); dim3 block_config(x_threads, y_threads, 1); return block_config; } #endif ================================================ FILE: classification/modules/pointops/src/grouping/grouping_cuda.cpp ================================================ #include #include #include #include #include "grouping_cuda_kernel.h" extern THCState *state; void grouping_forward_cuda(int b, int c, int n, int m, int nsample, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out_tensor) { const float *points = points_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); float *out = out_tensor.data_ptr(); grouping_forward_cuda_launcher(b, c, n, m, nsample, points, idx, out); } void grouping_backward_cuda(int b, int c, int n, int m, int nsample, at::Tensor grad_out_tensor, at::Tensor idx_tensor, at::Tensor grad_points_tensor) { float *grad_points = grad_points_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); const float *grad_out = grad_out_tensor.data_ptr(); grouping_backward_cuda_launcher(b, c, n, m, nsample, grad_out, idx, grad_points); } void grouping_forward_cuda_fast(int b, int c, int n, int npoints, int nsample, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out_tensor) { const float *points = points_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); float *out = out_tensor.data_ptr(); grouping_forward_cuda_launcher_fast(b, c, n, npoints, nsample, points, idx, out); } ================================================ FILE: classification/modules/pointops/src/grouping/grouping_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "grouping_cuda_kernel.h" // input: points(b, c, n) idx(b, m, nsample) // output: out(b, c, m, nsample) __global__ void grouping_forward_cuda_kernel(int b, int c, int n, int m, int nsample, const float *points, const int *idx, float *out) { int batch_index = blockIdx.x; points += batch_index * n * c; idx += batch_index * m * nsample; out += batch_index * m * nsample * c; const int index = threadIdx.y * blockDim.x + threadIdx.x; const int stride = blockDim.y * blockDim.x; for (int i = index; i < c * m; i += stride) { const int l = i / m; const int j = i % m; for (int k = 0; k < nsample; ++k) { int ii = idx[j * nsample + k]; out[(l * m + j) * nsample + k] = points[l * n + ii]; } } } // input: grad_out(b, c, m, nsample), idx(b, m, nsample) // output: grad_points(b, c, n) __global__ void grouping_backward_cuda_kernel(int b, int c, int n, int m, int nsample, const float *grad_out, const int *idx, float *grad_points) { int batch_index = blockIdx.x; grad_out += batch_index * m * nsample * c; idx += batch_index * m * nsample; grad_points += batch_index * n * c; const int index = threadIdx.y * blockDim.x + threadIdx.x; const int stride = blockDim.y * blockDim.x; for (int i = index; i < c * m; i += stride) { const int l = i / m; const int j = i % m; for (int k = 0; k < nsample; ++k) { int ii = idx[j * nsample + k]; atomicAdd(grad_points + l * n + ii, grad_out[(l * m + j) * nsample + k]); } } } void grouping_forward_cuda_launcher(int b, int c, int n, int m, int nsample, const float *points, const int *idx, float *out) { grouping_forward_cuda_kernel<<>>(b, c, n, m, nsample, points, idx, out); } void grouping_backward_cuda_launcher(int b, int c, int n, int m, int nsample, const float *grad_out, const int *idx, float *grad_points) { grouping_backward_cuda_kernel<<>>(b, c, n, m, nsample, grad_out, idx, grad_points); } // input: points(b, c, n) idx(b, npoints, nsample) // output: out(b, c, npoints, nsample) __global__ void grouping_forward_cuda_kernel_fast(int b, int c, int n, int npoints, int nsample, const float *__restrict__ points, const int *__restrict__ idx, float *__restrict__ out) { int bs_idx = blockIdx.z; int c_idx = blockIdx.y; int index = blockIdx.x * blockDim.x + threadIdx.x; int pt_idx = index / nsample; if (bs_idx >= b || c_idx >= c || pt_idx >= npoints) return; int sample_idx = index % nsample; idx += bs_idx * npoints * nsample + pt_idx * nsample + sample_idx; int in_idx = bs_idx * c * n + c_idx * n + idx[0]; int out_idx = bs_idx * c * npoints * nsample + c_idx * npoints * nsample + pt_idx * nsample + sample_idx; out[out_idx] = points[in_idx]; } // input: points(b, c, n) idx(b, npoints, nsample) // output: out(b, c, npoints, nsample) void grouping_forward_cuda_launcher_fast(int b, int c, int n, int npoints, int nsample, const float *points, const int *idx, float *out) { cudaError_t err; dim3 blocks(DIVUP(npoints * nsample, THREADS_PER_BLOCK), c, b); // blockIdx.x(col), blockIdx.y(row) dim3 threads(THREADS_PER_BLOCK); grouping_forward_cuda_kernel_fast<<>>(b, c, n, npoints, nsample, points, idx, out); // cudaDeviceSynchronize(); // for using printf in kernel function err = cudaGetLastError(); if (cudaSuccess != err) { fprintf(stderr, "CUDA kernel failed : %s\n", cudaGetErrorString(err)); exit(-1); } } ================================================ FILE: classification/modules/pointops/src/grouping/grouping_cuda_kernel.h ================================================ #ifndef _GROUPING_CUDA_KERNEL #define _GROUPING_CUDA_KERNEL #include #include #include void grouping_forward_cuda(int b, int c, int n, int m, int nsample, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out); void grouping_backward_cuda(int b, int c, int n, int m, int nsample, at::Tensor grad_out_tensor, at::Tensor idx_tensor, at::Tensor grad_points_tensor); void grouping_forward_cuda_fast(int b, int c, int n, int npoints, int nsample, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out_tensor); #ifdef __cplusplus extern "C" { #endif void grouping_forward_cuda_launcher(int b, int c, int n, int m, int nsample, const float *points, const int *idx, float *out); void grouping_backward_cuda_launcher(int b, int c, int n, int m, int nsample, const float *grad_out, const int *idx, float *grad_points); void grouping_forward_cuda_launcher_fast(int b, int c, int n, int npoints, int nsample, const float *points, const int *idx, float *out); #ifdef __cplusplus } #endif #endif ================================================ FILE: classification/modules/pointops/src/grouping_int/grouping_int_cuda.cpp ================================================ #include #include #include #include #include "grouping_int_cuda_kernel.h" extern THCState *state; void grouping_int_forward_cuda(int b, int c, int n, int m, int nsample, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out_tensor) { const long int *points = points_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); long int *out = out_tensor.data_ptr(); grouping_int_forward_cuda_launcher(b, c, n, m, nsample, points, idx, out); } void grouping_int_forward_cuda_fast(int b, int c, int n, int m, int nsample, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out_tensor) { const long int *points = points_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); long int *out = out_tensor.data_ptr(); grouping_int_forward_cuda_launcher_fast(b, c, n, m, nsample, points, idx, out); } ================================================ FILE: classification/modules/pointops/src/grouping_int/grouping_int_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "grouping_int_cuda_kernel.h" // input: points(b, c, n) idx(b, m, nsample) // output: out(b, c, m, nsample) __global__ void grouping_int_forward_cuda_kernel(int b, int c, int n, int m, int nsample, const long int *points, const int *idx, long int *out) { int batch_index = blockIdx.x; points += batch_index * n * c; idx += batch_index * m * nsample; out += batch_index * m * nsample * c; const int index = threadIdx.y * blockDim.x + threadIdx.x; const int stride = blockDim.y * blockDim.x; for (int i = index; i < c * m; i += stride) { const int l = i / m; const int j = i % m; for (int k = 0; k < nsample; ++k) { int ii = idx[j * nsample + k]; out[(l * m + j) * nsample + k] = points[l * n + ii]; } } } void grouping_int_forward_cuda_launcher(int b, int c, int n, int m, int nsample, const long int *points, const int *idx, long int *out) { grouping_int_forward_cuda_kernel<<>>(b, c, n, m, nsample, points, idx, out); } __global__ void grouping_int_forward_cuda_kernel_fast(int b, int c, int n, int npoints, int nsample, const long int *__restrict__ points, const int *__restrict__ idx, long int *__restrict__ out) { int bs_idx = blockIdx.z; int c_idx = blockIdx.y; int index = blockIdx.x * blockDim.x + threadIdx.x; int pt_idx = index / nsample; if (bs_idx >= b || c_idx >= c || pt_idx >= npoints) return; int sample_idx = index % nsample; idx += bs_idx * npoints * nsample + pt_idx * nsample + sample_idx; int in_idx = bs_idx * c * n + c_idx * n + idx[0]; int out_idx = bs_idx * c * npoints * nsample + c_idx * npoints * nsample + pt_idx * nsample + sample_idx; out[out_idx] = points[in_idx]; } void grouping_int_forward_cuda_launcher_fast(int b, int c, int n, int npoints, int nsample, const long int *points, const int *idx, long int *out) { cudaError_t err; dim3 blocks(DIVUP(npoints * nsample, THREADS_PER_BLOCK), c, b); // blockIdx.x(col), blockIdx.y(row) dim3 threads(THREADS_PER_BLOCK); grouping_int_forward_cuda_kernel_fast<<>>(b, c, n, npoints, nsample, points, idx, out); // cudaDeviceSynchronize(); // for using printf in kernel function err = cudaGetLastError(); if (cudaSuccess != err) { fprintf(stderr, "CUDA kernel failed : %s\n", cudaGetErrorString(err)); exit(-1); } } ================================================ FILE: classification/modules/pointops/src/grouping_int/grouping_int_cuda_kernel.h ================================================ #ifndef _GROUPING_INT_CUDA_KERNEL #define _GROUPING_INT_CUDA_KERNEL #include #include #include void grouping_int_forward_cuda(int b, int c, int n, int m, int nsample, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out); void grouping_int_forward_cuda_fast(int b, int c, int n, int m, int nsample, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out_tensor); #ifdef __cplusplus extern "C" { #endif void grouping_int_forward_cuda_launcher(int b, int c, int n, int m, int nsample, const long int *points, const int *idx, long int *out); void grouping_int_forward_cuda_launcher_fast(int b, int c, int n, int npoints, int nsample, const long int *points, const int *idx, long int *out); #ifdef __cplusplus } #endif #endif ================================================ FILE: classification/modules/pointops/src/interpolation/interpolation_cuda.cpp ================================================ #include #include #include #include #include "interpolation_cuda_kernel.h" extern THCState *state; void nearestneighbor_cuda(int b, int n, int m, at::Tensor unknown_tensor, at::Tensor known_tensor, at::Tensor dist2_tensor, at::Tensor idx_tensor) { const float *unknown = unknown_tensor.data_ptr(); const float *known = known_tensor.data_ptr(); float *dist2 = dist2_tensor.data_ptr(); int *idx = idx_tensor.data_ptr(); nearestneighbor_cuda_launcher(b, n, m, unknown, known, dist2, idx); } void interpolation_forward_cuda(int b, int c, int m, int n, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor weight_tensor, at::Tensor out_tensor) { const float *points = points_tensor.data_ptr(); const float *weight = weight_tensor.data_ptr(); float *out = out_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); interpolation_forward_cuda_launcher(b, c, m, n, points, idx, weight, out); } void interpolation_backward_cuda(int b, int c, int n, int m, at::Tensor grad_out_tensor, at::Tensor idx_tensor, at::Tensor weight_tensor, at::Tensor grad_points_tensor) { const float *grad_out = grad_out_tensor.data_ptr(); const float *weight = weight_tensor.data_ptr(); float *grad_points = grad_points_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); interpolation_backward_cuda_launcher(b, c, n, m, grad_out, idx, weight, grad_points); } void nearestneighbor_cuda_fast(int b, int n, int m, at::Tensor unknown_tensor, at::Tensor known_tensor, at::Tensor dist2_tensor, at::Tensor idx_tensor) { const float *unknown = unknown_tensor.data_ptr(); const float *known = known_tensor.data_ptr(); float *dist2 = dist2_tensor.data_ptr(); int *idx = idx_tensor.data_ptr(); nearestneighbor_cuda_launcher_fast(b, n, m, unknown, known, dist2, idx); } void interpolation_forward_cuda_fast(int b, int c, int m, int n, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor weight_tensor, at::Tensor out_tensor) { const float *points = points_tensor.data_ptr(); const float *weight = weight_tensor.data_ptr(); float *out = out_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); interpolation_forward_cuda_launcher_fast(b, c, m, n, points, idx, weight, out); } ================================================ FILE: classification/modules/pointops/src/interpolation/interpolation_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "interpolation_cuda_kernel.h" // input: unknown(b, n, 3) known(b, m, 3) // output: dist2(b, n, 3), idx(b, n, 3) __global__ void nearestneighbor_cuda_kernel(int b, int n, int m, const float *unknown, const float *known, float *dist2, int *idx) { int batch_index = blockIdx.x; unknown += batch_index * n * 3; known += batch_index * m * 3; dist2 += batch_index * n * 3; idx += batch_index * n * 3; int index = threadIdx.x; int stride = blockDim.x; for (int j = index; j < n; j += stride) { float ux = unknown[j * 3 + 0]; float uy = unknown[j * 3 + 1]; float uz = unknown[j * 3 + 2]; double best1 = 1e40, best2 = 1e40, best3 = 1e40; int besti1 = 0, besti2 = 0, besti3 = 0; for (int k = 0; k < m; ++k) { float x = known[k * 3 + 0]; float y = known[k * 3 + 1]; float z = known[k * 3 + 2]; float d = (ux - x) * (ux - x) + (uy - y) * (uy - y) + (uz - z) * (uz - z); if (d < best1) { best3 = best2; besti3 = besti2; best2 = best1; besti2 = besti1; best1 = d; besti1 = k; } else if (d < best2) { best3 = best2; besti3 = besti2; best2 = d; besti2 = k; } else if (d < best3) { best3 = d; besti3 = k; } } dist2[j * 3 + 0] = best1; dist2[j * 3 + 1] = best2; dist2[j * 3 + 2] = best3; idx[j * 3 + 0] = besti1; idx[j * 3 + 1] = besti2; idx[j * 3 + 2] = besti3; } } // input: points(b, c, m), idx(b, n, 3), weight(b, n, 3) // output: out(b, c, n) __global__ void interpolation_forward_cuda_kernel(int b, int c, int m, int n, const float *points, const int *idx, const float *weight, float *out) { int batch_index = blockIdx.x; points += batch_index * m * c; idx += batch_index * n * 3; weight += batch_index * n * 3; out += batch_index * n * c; const int index = threadIdx.y * blockDim.x + threadIdx.x; const int stride = blockDim.y * blockDim.x; for (int i = index; i < c * n; i += stride) { const int l = i / n; const int j = i % n; float w1 = weight[j * 3 + 0]; float w2 = weight[j * 3 + 1]; float w3 = weight[j * 3 + 2]; int i1 = idx[j * 3 + 0]; int i2 = idx[j * 3 + 1]; int i3 = idx[j * 3 + 2]; out[i] = points[l * m + i1] * w1 + points[l * m + i2] * w2 + points[l * m + i3] * w3; } } // input: grad_out(b, c, n), idx(b, n, 3), weight(b, n, 3) // output: grad_points(b, c, m) __global__ void interpolation_backward_cuda_kernel( int b, int c, int n, int m, const float *grad_out, const int *idx, const float *weight, float *grad_points) { int batch_index = blockIdx.x; grad_out += batch_index * n * c; idx += batch_index * n * 3; weight += batch_index * n * 3; grad_points += batch_index * m * c; const int index = threadIdx.y * blockDim.x + threadIdx.x; const int stride = blockDim.y * blockDim.x; for (int i = index; i < c * n; i += stride) { const int l = i / n; const int j = i % n; float w1 = weight[j * 3 + 0]; float w2 = weight[j * 3 + 1]; float w3 = weight[j * 3 + 2]; int i1 = idx[j * 3 + 0]; int i2 = idx[j * 3 + 1]; int i3 = idx[j * 3 + 2]; atomicAdd(grad_points + l * m + i1, grad_out[i] * w1); atomicAdd(grad_points + l * m + i2, grad_out[i] * w2); atomicAdd(grad_points + l * m + i3, grad_out[i] * w3); } } void nearestneighbor_cuda_launcher(int b, int n, int m, const float *unknown, const float *known, float *dist2, int *idx) { nearestneighbor_cuda_kernel<<>>(b, n, m, unknown, known, dist2, idx); } void interpolation_forward_cuda_launcher(int b, int c, int m, int n, const float *points, const int *idx, const float *weight, float *out) { interpolation_forward_cuda_kernel<<>>(b, c, m, n, points, idx, weight, out); } void interpolation_backward_cuda_launcher(int b, int n, int c, int m, const float *grad_out, const int *idx, const float *weight, float *grad_points) { interpolation_backward_cuda_kernel<<>>(b, n, c, m, grad_out, idx, weight, grad_points); } // input: unknown(b, n, 3) known(b, m, 3) // output: dist2(b, n, 3), idx(b, n, 3) __global__ void nearestneighbor_cuda_kernel_fast(int b, int n, int m, const float *__restrict__ unknown, const float *__restrict__ known, float *__restrict__ dist2, int *__restrict__ idx) { int bs_idx = blockIdx.y; int pt_idx = blockIdx.x * blockDim.x + threadIdx.x; if (bs_idx >= b || pt_idx >= n) return; unknown += bs_idx * n * 3 + pt_idx * 3; known += bs_idx * m * 3; dist2 += bs_idx * n * 3 + pt_idx * 3; idx += bs_idx * n * 3 + pt_idx * 3; float ux = unknown[0]; float uy = unknown[1]; float uz = unknown[2]; double best1 = 1e40, best2 = 1e40, best3 = 1e40; int besti1 = 0, besti2 = 0, besti3 = 0; for (int k = 0; k < m; ++k) { float x = known[k * 3 + 0]; float y = known[k * 3 + 1]; float z = known[k * 3 + 2]; float d = (ux - x) * (ux - x) + (uy - y) * (uy - y) + (uz - z) * (uz - z); if (d < best1) { best3 = best2; besti3 = besti2; best2 = best1; besti2 = besti1; best1 = d; besti1 = k; } else if (d < best2) { best3 = best2; besti3 = besti2; best2 = d; besti2 = k; } else if (d < best3) { best3 = d; besti3 = k; } } dist2[0] = best1; dist2[1] = best2; dist2[2] = best3; idx[0] = besti1; idx[1] = besti2; idx[2] = besti3; } // input: points(b, c, m), idx(b, n, 3), weight(b, n, 3) // output: out(b, c, n) __global__ void interpolation_forward_cuda_kernel_fast(int b, int c, int m, int n, const float *__restrict__ points, const int *__restrict__ idx, const float *__restrict__ weight, float *__restrict__ out) { int bs_idx = blockIdx.z; int c_idx = blockIdx.y; int pt_idx = blockIdx.x * blockDim.x + threadIdx.x; if (bs_idx >= b || c_idx >= c || pt_idx >= n) return; weight += bs_idx * n * 3 + pt_idx * 3; points += bs_idx * c * m + c_idx * m; idx += bs_idx * n * 3 + pt_idx * 3; out += bs_idx * c * n + c_idx * n; out[pt_idx] = weight[0] * points[idx[0]] + weight[1] * points[idx[1]] + weight[2] * points[idx[2]]; } void nearestneighbor_cuda_launcher_fast(int b, int n, int m, const float *unknown, const float *known, float *dist2, int *idx) { cudaError_t err; dim3 blocks(DIVUP(n, THREADS_PER_BLOCK), b); // blockIdx.x(col), blockIdx.y(row) dim3 threads(THREADS_PER_BLOCK); nearestneighbor_cuda_kernel_fast<<>>(b, n, m, unknown, known, dist2, idx); err = cudaGetLastError(); if (cudaSuccess != err) { fprintf(stderr, "CUDA kernel failed : %s\n", cudaGetErrorString(err)); exit(-1); } } void interpolation_forward_cuda_launcher_fast(int b, int c, int m, int n, const float *points, const int *idx, const float *weight, float *out) { cudaError_t err; dim3 blocks(DIVUP(n, THREADS_PER_BLOCK), c, b); // blockIdx.x(col), blockIdx.y(row) dim3 threads(THREADS_PER_BLOCK); interpolation_forward_cuda_kernel_fast<<>>(b, c, m, n, points, idx, weight, out); err = cudaGetLastError(); if (cudaSuccess != err) { fprintf(stderr, "CUDA kernel failed : %s\n", cudaGetErrorString(err)); exit(-1); } } ================================================ FILE: classification/modules/pointops/src/interpolation/interpolation_cuda_kernel.h ================================================ #ifndef _INTERPOLATION_CUDA_KERNEL #define _INTERPOLATION_CUDA_KERNEL #include #include #include void nearestneighbor_cuda(int b, int n, int m, at::Tensor unknown_tensor, at::Tensor known_tensor, at::Tensor dist2_tensor, at::Tensor idx_tensor); void interpolation_forward_cuda(int b, int c, int m, int n, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor weight_tensor, at::Tensor out_tensor); void interpolation_backward_cuda(int b, int c, int n, int m, at::Tensor grad_out_tensor, at::Tensor idx_tensor, at::Tensor weight_tensor, at::Tensor grad_points_tensor); void nearestneighbor_cuda_fast(int b, int n, int m, at::Tensor unknown_tensor, at::Tensor known_tensor, at::Tensor dist2_tensor, at::Tensor idx_tensor); void interpolation_forward_cuda_fast(int b, int c, int m, int n, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor weight_tensor, at::Tensor out_tensor); #ifdef __cplusplus extern "C" { #endif void nearestneighbor_cuda_launcher(int b, int n, int m, const float *unknown, const float *known, float *dist2, int *idx); void interpolation_forward_cuda_launcher(int b, int c, int m, int n, const float *points, const int *idx, const float *weight, float *out); void interpolation_backward_cuda_launcher(int b, int c, int n, int m, const float *grad_out, const int *idx, const float *weight, float *grad_points); void nearestneighbor_cuda_launcher_fast(int b, int n, int m, const float *unknown, const float *known, float *dist2, int *idx); void interpolation_forward_cuda_launcher_fast(int b, int c, int m, int n, const float *points, const int *idx, const float *weight, float *out); #ifdef __cplusplus } #endif #endif ================================================ FILE: classification/modules/pointops/src/knnquery/__init__.py ================================================ ================================================ FILE: classification/modules/pointops/src/knnquery/knnquery_cuda.cpp ================================================ #include #include #include #include #include "knnquery_cuda_kernel.h" extern THCState *state; #define CHECK_CUDA(x) TORCH_CHECK(x.is_cuda(), #x, " must be a CUDAtensor ") #define CHECK_CONTIGUOUS(x) TORCH_CHECK(x.is_contiguous(), #x, " must be contiguous ") #define CHECK_INPUT(x) CHECK_CUDA(x);CHECK_CONTIGUOUS(x) void knnquery_cuda(int b, int n, int m, int nsample, at::Tensor xyz_tensor, at::Tensor new_xyz_tensor, at::Tensor idx_tensor, at::Tensor dist2_tensor) { CHECK_INPUT(new_xyz_tensor); CHECK_INPUT(xyz_tensor); const float *new_xyz = new_xyz_tensor.data_ptr(); const float *xyz = xyz_tensor.data_ptr(); int *idx = idx_tensor.data_ptr(); float *dist2 = dist2_tensor.data_ptr(); cudaStream_t stream = at::cuda::getCurrentCUDAStream(); knnquery_cuda_launcher(b, n, m, nsample, xyz, new_xyz, idx, dist2, stream); } ================================================ FILE: classification/modules/pointops/src/knnquery/knnquery_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "knnquery_cuda_kernel.h" // input: xyz (b, n, 3) new_xyz (b, m, 3) // output: idx (b, m, nsample) dist2 (b, m, nsample) __global__ void knnquery_cuda_kernel(int b, int n, int m, int nsample, const float *__restrict__ xyz, const float *__restrict__ new_xyz, int *__restrict__ idx, float *__restrict__ dist2) { int bs_idx = blockIdx.y; int pt_idx = blockIdx.x * blockDim.x + threadIdx.x; if (bs_idx >= b || pt_idx >= m) return; new_xyz += bs_idx * m * 3 + pt_idx * 3; xyz += bs_idx * n * 3; idx += bs_idx * m * nsample + pt_idx * nsample; float new_x = new_xyz[0]; float new_y = new_xyz[1]; float new_z = new_xyz[2]; //double* best = new double[nsample]; //int* besti = new int[nsample]; double best[200]; int besti[200]; for(int i = 0; i < nsample; i++){ best[i] = 1e40; besti[i] = 0; } for(int k = 0; k < n; k++){ float x = xyz[k * 3 + 0]; float y = xyz[k * 3 + 1]; float z = xyz[k * 3 + 2]; float d2 = (new_x - x) * (new_x - x) + (new_y - y) * (new_y - y) + (new_z - z) * (new_z - z); for(int j = 0; j < nsample; j++){ if(d2 < best[j]){ for(int i = nsample - 1; i > j; i--){ best[i] = best[i - 1]; besti[i] = besti[i - 1]; } best[j] = d2; besti[j] = k; break; } } } for(int i = 0; i < nsample; i++){ idx[i] = besti[i]; dist2[i] = best[i]; } //delete []best; //delete []besti; } void knnquery_cuda_launcher(int b, int n, int m, int nsample, const float *xyz, const float *new_xyz, int *idx, float *dist2, cudaStream_t stream) { // param new_xyz: (B, m, 3) // param xyz: (B, n, 3) // param idx: (B, m, nsample) cudaError_t err; dim3 blocks(DIVUP(m, THREADS_PER_BLOCK), b); // blockIdx.x(col), blockIdx.y(row) dim3 threads(THREADS_PER_BLOCK); // fprintf('%d, %d', blocks, threads); knnquery_cuda_kernel<<>>(b, n, m, nsample, xyz, new_xyz, idx, dist2); // cudaDeviceSynchronize(); // for using printf in kernel function // err = cudaGetLastError(); // if (cudaSuccess != err) { // fprintf(stderr, "CUDA kernel failed : %s\n", cudaGetErrorString(err)); // exit(-1); // } } ================================================ FILE: classification/modules/pointops/src/knnquery/knnquery_cuda_kernel.h ================================================ #ifndef _KNNQUERY_CUDA_KERNEL #define _KNNQUERY_CUDA_KERNEL #include #include #include void knnquery_cuda(int b, int n, int m, int nsample, at::Tensor xyz_tensor, at::Tensor new_xyz_tensor, at::Tensor idx_tensor, at::Tensor dist2_tensor); #ifdef __cplusplus extern "C" { #endif void knnquery_cuda_launcher(int b, int n, int m, int nsample, const float *xyz, const float *new_xyz, int *idx, float *dist2, cudaStream_t stream); #ifdef __cplusplus } #endif #endif ================================================ FILE: classification/modules/pointops/src/knnquery_heap/__init__.py ================================================ ================================================ FILE: classification/modules/pointops/src/knnquery_heap/knnquery_heap_cuda.cpp ================================================ #include #include #include #include #include "knnquery_heap_cuda_kernel.h" extern THCState *state; #define CHECK_CUDA(x) TORCH_CHECK(x.is_cuda(), #x, " must be a CUDAtensor ") #define CHECK_CONTIGUOUS(x) TORCH_CHECK(x.is_contiguous(), #x, " must be contiguous ") #define CHECK_INPUT(x) CHECK_CUDA(x);CHECK_CONTIGUOUS(x) void knnquery_heap_cuda(int b, int n, int m, int nsample, at::Tensor xyz_tensor, at::Tensor new_xyz_tensor, at::Tensor idx_tensor, at::Tensor dist2_tensor) { CHECK_INPUT(new_xyz_tensor); CHECK_INPUT(xyz_tensor); const float *new_xyz = new_xyz_tensor.data_ptr(); const float *xyz = xyz_tensor.data_ptr(); int *idx = idx_tensor.data_ptr(); float *dist2 = dist2_tensor.data_ptr(); cudaStream_t stream = at::cuda::getCurrentCUDAStream(); knnquery_heap_cuda_launcher(b, n, m, nsample, xyz, new_xyz, idx, dist2, stream); } ================================================ FILE: classification/modules/pointops/src/knnquery_heap/knnquery_heap_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "knnquery_heap_cuda_kernel.h" __device__ void swap_float(float *x, float *y) { float tmp = *x; *x = *y; *y = tmp; } __device__ void swap_int(int *x, int *y) { int tmp = *x; *x = *y; *y = tmp; } __device__ void reheap(float *dist, int *idx, int k) { int root = 0; int child = root * 2 + 1; while (child < k) { if(child + 1 < k && dist[child+1] > dist[child]) child++; if(dist[root] > dist[child]) return; swap_float(&dist[root], &dist[child]); swap_int(&idx[root], &idx[child]); root = child; child = root * 2 + 1; } } __device__ void heap_sort(float *dist, int *idx, int k) { int i; for (i = k - 1; i > 0; i--) { swap_float(&dist[0], &dist[i]); swap_int(&idx[0], &idx[i]); reheap(dist, idx, i); } } // input: xyz (b, n, 3) new_xyz (b, m, 3) // output: idx (b, m, nsample) dist2 (b, m, nsample) __global__ void knnquery_heap_cuda_kernel(int b, int n, int m, int nsample, const float *__restrict__ xyz, const float *__restrict__ new_xyz, int *__restrict__ idx, float *__restrict__ dist2) { int bs_idx = blockIdx.y; int pt_idx = blockIdx.x * blockDim.x + threadIdx.x; if (bs_idx >= b || pt_idx >= m) return; new_xyz += bs_idx * m * 3 + pt_idx * 3; xyz += bs_idx * n * 3; idx += bs_idx * m * nsample + pt_idx * nsample; dist2 += bs_idx * m * nsample + pt_idx * nsample; float new_x = new_xyz[0]; float new_y = new_xyz[1]; float new_z = new_xyz[2]; float best_dist[100]; int best_idx[100]; for(int i = 0; i < nsample; i++){ best_dist[i] = 1e10; best_idx[i] = 0; } for(int i = 0; i < n; i++){ float x = xyz[i * 3 + 0]; float y = xyz[i * 3 + 1]; float z = xyz[i * 3 + 2]; float d2 = (new_x - x) * (new_x - x) + (new_y - y) * (new_y - y) + (new_z - z) * (new_z - z); if (d2 < best_dist[0]){ best_dist[0] = d2; best_idx[0] = i; reheap(best_dist, best_idx, nsample); } } heap_sort(best_dist, best_idx, nsample); for(int i = 0; i < nsample; i++){ idx[i] = best_idx[i]; dist2[i] = best_dist[i]; } } void knnquery_heap_cuda_launcher(int b, int n, int m, int nsample, const float *xyz, const float *new_xyz, int *idx, float *dist2, cudaStream_t stream) { // param new_xyz: (B, m, 3) // param xyz: (B, n, 3) // param idx: (B, m, nsample) cudaError_t err; dim3 blocks(DIVUP(m, THREADS_PER_BLOCK), b); // blockIdx.x(col), blockIdx.y(row) dim3 threads(THREADS_PER_BLOCK); knnquery_heap_cuda_kernel<<>>(b, n, m, nsample, xyz, new_xyz, idx, dist2); // cudaDeviceSynchronize(); // for using printf in kernel function err = cudaGetLastError(); if (cudaSuccess != err) { fprintf(stderr, "CUDA kernel failed : %s\n", cudaGetErrorString(err)); exit(-1); } } ================================================ FILE: classification/modules/pointops/src/knnquery_heap/knnquery_heap_cuda_kernel.h ================================================ #ifndef _KNNQUERY_HEAP_CUDA_KERNEL #define _KNNQUERY_HEAP_CUDA_KERNEL #include #include #include void knnquery_heap_cuda(int b, int n, int m, int nsample, at::Tensor xyz_tensor, at::Tensor new_xyz_tensor, at::Tensor idx_tensor, at::Tensor dist2_tensor); #ifdef __cplusplus extern "C" { #endif void knnquery_heap_cuda_launcher(int b, int n, int m, int nsample, const float *xyz, const float *new_xyz, int *idx, float *dist2, cudaStream_t stream); #ifdef __cplusplus } #endif #endif ================================================ FILE: classification/modules/pointops/src/pointops_api.cpp ================================================ #include #include #include "ballquery/ballquery_cuda_kernel.h" #include "grouping/grouping_cuda_kernel.h" #include "grouping_int/grouping_int_cuda_kernel.h" #include "sampling/sampling_cuda_kernel.h" #include "interpolation/interpolation_cuda_kernel.h" #include "knnquery/knnquery_cuda_kernel.h" #include "knnquery_heap/knnquery_heap_cuda_kernel.h" PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { m.def("ballquery_cuda", &ballquery_cuda_fast, "ballquery_cuda_fast"); // name in python, cpp function address, docs m.def("knnquery_cuda", &knnquery_cuda, "knnquery_cuda"); m.def("knnquery_heap_cuda", &knnquery_heap_cuda, "knnquery_heap_cuda"); m.def("grouping_forward_cuda", &grouping_forward_cuda_fast, "grouping_forward_cuda_fast"); m.def("grouping_backward_cuda", &grouping_backward_cuda, "grouping_backward_cuda"); m.def("grouping_int_forward_cuda", &grouping_int_forward_cuda_fast, "grouping_int_forward_cuda_fast"); m.def("gathering_forward_cuda", &gathering_forward_cuda, "gathering_forward_cuda"); m.def("gathering_backward_cuda", &gathering_backward_cuda, "gathering_backward_cuda"); m.def("furthestsampling_cuda", &furthestsampling_cuda, "furthestsampling_cuda"); m.def("nearestneighbor_cuda", &nearestneighbor_cuda_fast, "nearestneighbor_cuda_fast"); m.def("interpolation_forward_cuda", &interpolation_forward_cuda_fast, "interpolation_forward_cuda_fast"); m.def("interpolation_backward_cuda", &interpolation_backward_cuda, "interpolation_backward_cuda"); } ================================================ FILE: classification/modules/pointops/src/sampling/sampling_cuda.cpp ================================================ #include #include #include #include #include "sampling_cuda_kernel.h" extern THCState *state; void gathering_forward_cuda(int b, int c, int n, int m, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out_tensor) { const float *points = points_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); float *out = out_tensor.data_ptr(); gathering_forward_cuda_launcher(b, c, n, m, points, idx, out); } void gathering_backward_cuda(int b, int c, int n, int m, at::Tensor grad_out_tensor, at::Tensor idx_tensor, at::Tensor grad_points_tensor) { const float *grad_out = grad_out_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); float *grad_points = grad_points_tensor.data_ptr(); gathering_backward_cuda_launcher(b, c, n, m, grad_out, idx, grad_points); } void furthestsampling_cuda(int b, int n, int m, at::Tensor points_tensor, at::Tensor temp_tensor, at::Tensor idx_tensor) { const float *points = points_tensor.data_ptr(); float *temp = temp_tensor.data_ptr(); int *idx = idx_tensor.data_ptr(); furthestsampling_cuda_launcher(b, n, m, points, temp, idx); } ================================================ FILE: classification/modules/pointops/src/sampling/sampling_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "sampling_cuda_kernel.h" // input: points(b, c, n) idx(b, m) // output: out(b, c, m) __global__ void gathering_forward_cuda_kernel(int b, int c, int n, int m, const float *points, const int *idx, float *out) { for (int i = blockIdx.x; i < b; i += gridDim.x) { for (int l = blockIdx.y; l < c; l += gridDim.y) { for (int j = threadIdx.x; j < m; j += blockDim.x) { int a = idx[i * m + j]; out[(i * c + l) * m + j] = points[(i * c + l) * n + a]; } } } } // input: grad_out(b, c, m) idx(b, m) // output: grad_points(b, c, n) __global__ void gathering_backward_cuda_kernel(int b, int c, int n, int m, const float *grad_out, const int *idx, float *grad_points) { for (int i = blockIdx.x; i < b; i += gridDim.x) { for (int l = blockIdx.y; l < c; l += gridDim.y) { for (int j = threadIdx.x; j < m; j += blockDim.x) { int a = idx[i * m + j]; atomicAdd(grad_points + (i * c + l) * n + a, grad_out[(i * c + l) * m + j]); } } } } void gathering_forward_cuda_launcher(int b, int c, int n, int m, const float *points, const int *idx, float *out) { gathering_forward_cuda_kernel<<>>(b, c, n, m, points, idx, out); } void gathering_backward_cuda_launcher(int b, int c, int n, int m, const float *grad_out, const int *idx, float *grad_points) { gathering_backward_cuda_kernel<<>>(b, c, n, m, grad_out, idx, grad_points); } __device__ void __update(float *dists, int *dists_i, int idx1, int idx2) { const float v1 = dists[idx1], v2 = dists[idx2]; const int i1 = dists_i[idx1], i2 = dists_i[idx2]; dists[idx1] = max(v1, v2); dists_i[idx1] = v2 > v1 ? i2 : i1; } // Input dataset: (b, n, 3), tmp: (b, n) // Ouput idxs (b, m) template __global__ void furthestsampling_cuda_kernel(int b, int n, int m, const float *dataset, float *temp, int *idxs) { if (m <= 0) return; __shared__ float dists[block_size]; __shared__ int dists_i[block_size]; int batch_index = blockIdx.x; dataset += batch_index * n * 3; temp += batch_index * n; idxs += batch_index * m; int tid = threadIdx.x; const int stride = block_size; int old = 0; if (threadIdx.x == 0) idxs[0] = old; __syncthreads(); for (int j = 1; j < m; j++) { int besti = 0; float best = -1; float x1 = dataset[old * 3 + 0]; float y1 = dataset[old * 3 + 1]; float z1 = dataset[old * 3 + 2]; for (int k = tid; k < n; k += stride) { float x2, y2, z2; x2 = dataset[k * 3 + 0]; y2 = dataset[k * 3 + 1]; z2 = dataset[k * 3 + 2]; //float mag = (x2 * x2) + (y2 * y2) + (z2 * z2); //if (mag <= 1e-3) // continue; float d = (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1) + (z2 - z1) * (z2 - z1); float d2 = min(d, temp[k]); temp[k] = d2; besti = d2 > best ? k : besti; best = d2 > best ? d2 : best; } dists[tid] = best; dists_i[tid] = besti; __syncthreads(); if (block_size >= 1024) { if (tid < 512) { __update(dists, dists_i, tid, tid + 512); } __syncthreads(); } if (block_size >= 512) { if (tid < 256) { __update(dists, dists_i, tid, tid + 256); } __syncthreads(); } if (block_size >= 256) { if (tid < 128) { __update(dists, dists_i, tid, tid + 128); } __syncthreads(); } if (block_size >= 128) { if (tid < 64) { __update(dists, dists_i, tid, tid + 64); } __syncthreads(); } if (block_size >= 64) { if (tid < 32) { __update(dists, dists_i, tid, tid + 32); } __syncthreads(); } if (block_size >= 32) { if (tid < 16) { __update(dists, dists_i, tid, tid + 16); } __syncthreads(); } if (block_size >= 16) { if (tid < 8) { __update(dists, dists_i, tid, tid + 8); } __syncthreads(); } if (block_size >= 8) { if (tid < 4) { __update(dists, dists_i, tid, tid + 4); } __syncthreads(); } if (block_size >= 4) { if (tid < 2) { __update(dists, dists_i, tid, tid + 2); } __syncthreads(); } if (block_size >= 2) { if (tid < 1) { __update(dists, dists_i, tid, tid + 1); } __syncthreads(); } old = dists_i[0]; if (tid == 0) idxs[j] = old; } } void furthestsampling_cuda_launcher(int b, int n, int m, const float *dataset, float *temp, int *idxs) { unsigned int n_threads = opt_n_threads(n); switch (n_threads) { case 1024: furthestsampling_cuda_kernel<1024><<>>(b, n, m, dataset, temp, idxs); break; case 512: furthestsampling_cuda_kernel<512><<>>(b, n, m, dataset, temp, idxs); break; case 256: furthestsampling_cuda_kernel<256><<>>(b, n, m, dataset, temp, idxs); break; case 128: furthestsampling_cuda_kernel<128><<>>(b, n, m, dataset, temp, idxs); break; case 64: furthestsampling_cuda_kernel<64><<>>(b, n, m, dataset, temp, idxs); break; case 32: furthestsampling_cuda_kernel<32><<>>(b, n, m, dataset, temp, idxs); break; case 16: furthestsampling_cuda_kernel<16><<>>(b, n, m, dataset, temp, idxs); break; case 8: furthestsampling_cuda_kernel<8><<>>(b, n, m, dataset, temp, idxs); break; case 4: furthestsampling_cuda_kernel<4><<>>(b, n, m, dataset, temp, idxs); break; case 2: furthestsampling_cuda_kernel<2><<>>(b, n, m, dataset, temp, idxs); break; case 1: furthestsampling_cuda_kernel<1><<>>(b, n, m, dataset, temp, idxs); break; default: furthestsampling_cuda_kernel<512><<>>(b, n, m, dataset, temp, idxs); } } ================================================ FILE: classification/modules/pointops/src/sampling/sampling_cuda_kernel.h ================================================ #ifndef _SAMPLING_CUDA_KERNEL #define _SAMPLING_CUDA_KERNEL #include #include #include void gathering_forward_cuda(int b, int c, int n, int m, at::Tensor points_tensor, at::Tensor idx_tensor, at::Tensor out_tensor); void gathering_backward_cuda(int b, int c, int n, int m, at::Tensor grad_out_tensor, at::Tensor idx_tensor, at::Tensor grad_points_tensor); void furthestsampling_cuda(int b, int n, int m, at::Tensor points_tensor, at::Tensor temp_tensor, at::Tensor idx_tensor); #ifdef __cplusplus extern "C" { #endif void gathering_forward_cuda_launcher(int b, int c, int n, int m, const float *points, const int *idx, float *out); void gathering_backward_cuda_launcher(int b, int c, int n, int m, const float *grad_out, const int *idx, float *grad_points); void furthestsampling_cuda_launcher(int b, int n, int m, const float *dataset, float *temp, int *idxs); #ifdef __cplusplus } #endif #endif ================================================ FILE: classification/modules/polar_utils.py ================================================ """ Author: Haoxi Ran Date: 05/10/2022 """ import torch import numpy as np def xyz2sphere(xyz, normalize=True): """ Convert XYZ to Spherical Coordinate reference: https://en.wikipedia.org/wiki/Spherical_coordinate_system :param xyz: [B, N, 3] / [B, N, G, 3] :return: (rho, theta, phi) [B, N, 3] / [B, N, G, 3] """ rho = torch.sqrt(torch.sum(torch.pow(xyz, 2), dim=-1, keepdim=True)) rho = torch.clamp(rho, min=0) # range: [0, inf] theta = torch.acos(xyz[..., 2, None] / rho) # range: [0, pi] phi = torch.atan2(xyz[..., 1, None], xyz[..., 0, None]) # range: [-pi, pi] # check nan idx = rho == 0 theta[idx] = 0 if normalize: theta = theta / np.pi # [0, 1] phi = phi / (2 * np.pi) + .5 # [0, 1] out = torch.cat([rho, theta, phi], dim=-1) return out def xyz2cylind(xyz, normalize=True): """ Convert XYZ to Cylindrical Coordinate reference: https://en.wikipedia.org/wiki/Cylindrical_coordinate_system :param normalize: Normalize phi & z :param xyz: [B, N, 3] / [B, N, G, 3] :return: (rho, phi, z) [B, N, 3] """ rho = torch.sqrt(torch.sum(torch.pow(xyz[..., :2], 2), dim=-1, keepdim=True)) rho = torch.clamp(rho, 0, 1) # range: [0, 1] phi = torch.atan2(xyz[..., 1, None], xyz[..., 0, None]) # range: [-pi, pi] z = xyz[..., 2, None] z = torch.clamp(z, -1, 1) # range: [-1, 1] if normalize: phi = phi / (2 * np.pi) + .5 z = (z + 1.) / 2. out = torch.cat([rho, phi, z], dim=-1) return out ================================================ FILE: classification/modules/ptaug_utils.py ================================================ """ Author: Haoxi Ran Date: 05/10/2022 """ import torch ################# # MAIN ################# def get_aug_args(args): dataset = args.dataset if dataset == 'ScanObjectNN': aug_args = {'scale_factor': 0.5, 'shift_factor': 0.3} return aug_args else: raise Exception('No such dataset') def transform_point_cloud(batch, args, aug_args, train=True, label=None): """batch: B x 3/6 x N""" if args.aug_scale: batch[:, 0:3] = scale_point_cloud(batch[:, 0:3], aug_args['scale_factor']) if args.aug_shift: batch[:, 0:3] = shift_point_cloud(batch[:, 0:3], shift_range=aug_args['shift_factor']) if label is not None: return batch, label return batch ################# # Shift ################# def shift_point_cloud(batch_data, shift_range=0.2): """ Randomly shift point cloud. Shift is per point cloud. Input: B x C x N array, original batch of point clouds Return: B x C x N array, shifted batch of point clouds """ shifts = (torch.rand(batch_data.shape[0], 3, 1, device=batch_data.device) * 2. - 1.) * shift_range batch_data += shifts return batch_data ################# # Scale ################# def scale_point_cloud(batch_data, scale_range=0.2): """ Randomly scale the point cloud. Scale is per point cloud. Input: B x C x N array, original batch of point clouds Return: B x C x N array, scaled batch of point clouds """ scales = (torch.rand(batch_data.shape[0], 3, 1, device=batch_data.device) * 2. - 1.) * scale_range + 1. batch_data *= scales return batch_data ================================================ FILE: classification/modules/recons_utils.py ================================================ """ Author: Haoxi Ran Date: 05/10/2022 """ import torch from torch import nn from modules.pointnet2_utils import query_knn_point, index_points def _recons_factory(type): if type == 'knn': return knn_recons else: raise Exception('Not Implemented Reconstruction Type') def knn_recons(k, center, context, cuda=False): idx = query_knn_point(k, context, center, cuda=cuda) torch.cuda.empty_cache() group_xyz = index_points(context, idx, cuda=cuda, is_group=True) # [B, N, K, C] torch.cuda.empty_cache() return group_xyz def cal_normal(group_xyz, random_inv=False, is_group=False): """ Calculate Normal Vector (Unit Form + First Term Positive) :param group_xyz: [B, N, K=3, 3] / [B, N, G, K=3, 3] :param random_inv: :param return_intersect: :param return_const: :return: [B, N, 3] """ edge_vec1 = group_xyz[..., 1, :] - group_xyz[..., 0, :] # [B, N, 3] edge_vec2 = group_xyz[..., 2, :] - group_xyz[..., 0, :] # [B, N, 3] nor = torch.cross(edge_vec1, edge_vec2, dim=-1) unit_nor = nor / torch.norm(nor, dim=-1, keepdim=True) # [B, N, 3] / [B, N, G, 3] if not is_group: pos_mask = (unit_nor[..., 0] > 0).float() * 2. - 1. # keep x_n positive else: pos_mask = (unit_nor[..., 0:1, 0] > 0).float() * 2. - 1. unit_nor = unit_nor * pos_mask.unsqueeze(-1) # batch-wise random inverse normal vector (prob: 0.5) if random_inv: random_mask = torch.randint(0, 2, (group_xyz.size(0), 1, 1)).float() * 2. - 1. random_mask = random_mask.to(unit_nor.device) if not is_group: unit_nor = unit_nor * random_mask else: unit_nor = unit_nor * random_mask.unsqueeze(-1) return unit_nor def pca(X, k, center=True): """ Principal Components Analysis impl. with SVD function :param X: :param k: :param center: :return: """ n = X.size()[0] ones = torch.ones(n).view([n, 1]) h = ((1 / n) * torch.mm(ones, ones.t())) if center else torch.zeros(n * n).view([n, n]) H = torch.eye(n) - h X_center = torch.mm(H.double(), X.double()) u, s, v = torch.svd(X_center) components = v[:k].t() explained_variance = torch.mul(s[:k], s[:k]) / (n - 1) return {'X': X, 'k': k, 'components': components, 'explained_variance': explained_variance} def cal_center(group_xyz): """ Calculate Global Coordinates of the Center of Triangle :param group_xyz: [B, N, K, 3] / [B, N, G, K, 3]; K >= 3 :return: [B, N, 3] / [B, N, G, 3] """ center = torch.mean(group_xyz, dim=-2) return center def cal_area(group_xyz): """ Calculate Area of Triangle :param group_xyz: [B, N, K, 3] / [B, N, G, K, 3]; K = 3 :return: [B, N, 1] / [B, N, G, 1] """ pad_shape = group_xyz[..., 0, None].shape det_xy = torch.det(torch.cat([group_xyz[..., 0, None], group_xyz[..., 1, None], torch.ones(pad_shape)], dim=-1)) det_yz = torch.det(torch.cat([group_xyz[..., 1, None], group_xyz[..., 2, None], torch.ones(pad_shape)], dim=-1)) det_zx = torch.det(torch.cat([group_xyz[..., 2, None], group_xyz[..., 0, None], torch.ones(pad_shape)], dim=-1)) area = torch.sqrt(det_xy ** 2 + det_yz ** 2 + det_zx ** 2).unsqueeze(-1) return area def cal_const(normal, center, is_normalize=True): """ Calculate Constant Term (Standard Version, with x_normal to be 1) math:: const = x_nor * x_0 + y_nor * y_0 + z_nor * z_0 :param is_normalize: :param normal: [B, N, 3] / [B, N, G, 3] :param center: [B, N, 3] / [B, N, G, 3] :return: [B, N, 1] / [B, N, G, 1] """ const = torch.sum(normal * center, dim=-1, keepdim=True) factor = torch.sqrt(torch.Tensor([3])).to(normal.device) const = const / factor if is_normalize else const return const def check_nan(normal, center, pos=None): """ Check & Remove NaN in normal tensor :param pos: [B, N, 1] :param center: [B, N, 3] :param normal: [B, N, 3] :return: """ B, N, _ = normal.shape mask = torch.sum(torch.isnan(normal), dim=-1) > 0 mask_first = torch.argmax((~mask).int(), dim=-1) normal_first = normal[torch.arange(B), None, mask_first].repeat([1, N, 1]) normal[mask] = normal_first[mask] center_first = center[torch.arange(B), None, mask_first].repeat([1, N, 1]) center[mask] = center_first[mask] if pos is not None: pos_first = pos[torch.arange(B), None, mask_first].repeat([1, N, 1]) pos[mask] = pos_first[mask] return normal, center, pos return normal, center def check_nan_umb(normal, center, pos=None): """ Check & Remove NaN in normal tensor :param pos: [B, N, G, 1] :param center: [B, N, G, 3] :param normal: [B, N, G, 3] :return: """ B, N, G, _ = normal.shape mask = torch.sum(torch.isnan(normal), dim=-1) > 0 mask_first = torch.argmax((~mask).int(), dim=-1) b_idx = torch.arange(B).unsqueeze(1).repeat([1, N]) n_idx = torch.arange(N).unsqueeze(0).repeat([B, 1]) normal_first = normal[b_idx, n_idx, None, mask_first].repeat([1, 1, G, 1]) normal[mask] = normal_first[mask] center_first = center[b_idx, n_idx, None, mask_first].repeat([1, 1, G, 1]) center[mask] = center_first[mask] if pos is not None: pos_first = pos[b_idx, n_idx, None, mask_first].repeat([1, 1, G, 1]) pos[mask] = pos_first[mask] return normal, center, pos return normal, center class SurfaceConstructor(nn.Module): """ Surface Constructor for Point Clouds Formulation of A Surface: A * (x - x_0) + B * (y - y_0) + C * (z - z_0) = 0, where A^2 + B^2 + C^2 = 1 & A > 0 """ def __init__(self, r=None, k=3, recons_type='knn', return_dist=False, random_inv=True, cuda=False): super(SurfaceConstructor, self).__init__() self.K = k self.R = r self.recons = _recons_factory(recons_type) self.cuda = cuda self.return_dist = return_dist self.random_inv = random_inv def forward(self, center, context): """ Input: center: input points position as centroid points, [B, 3, N] context: input points position as context points, [B, 3, N'] Output: normal: normals of constructed triangles, [B, 3, N] center: centroids of constructed triangles, [B, 3, N] pos: position info of constructed triangles, [B, 1, N] """ center = center.permute(0, 2, 1) context = context.permute(0, 2, 1) group_xyz = self.recons(self.K, center, context, cuda=self.cuda) normal = cal_normal(group_xyz, random_inv=self.random_inv) center = cal_center(group_xyz) if self.return_dist: pos = cal_const(normal, center) normal, center, pos = check_nan(normal, center, pos) normal = normal.permute(0, 2, 1) center = center.permute(0, 2, 1) pos = pos.permute(0, 2, 1) return normal, center, pos normal, center = check_nan(normal, center) normal = normal.permute(0, 2, 1) center = center.permute(0, 2, 1) return normal, center if __name__ == '__main__': xyz = torch.rand(1, 3, 1024) * 2. - 1. constructor = SurfaceConstructor(return_dist=True) normal, center, pos = constructor(xyz, xyz) print(normal.shape) print(center.shape) ================================================ FILE: classification/modules/repsurface_utils.py ================================================ """ Author: Haoxi Ran Date: 05/10/2022 """ import torch import torch.nn as nn import torch.nn.functional as F from modules.pointnet2_utils import farthest_point_sample, index_points, query_knn_point, query_ball_point from modules.polar_utils import xyz2sphere from modules.recons_utils import cal_const, cal_normal, cal_center, check_nan_umb def sample_and_group(npoint, radius, nsample, center, normal, feature, return_normal=True, return_polar=False, cuda=False): """ Input: center: input points position data normal: input points normal data feature: input points feature Return: new_center: sampled points position data new_normal: sampled points normal data new_feature: sampled points feature """ # sample fps_idx = farthest_point_sample(center, npoint, cuda=cuda) # [B, npoint, A] torch.cuda.empty_cache() # sample center new_center = index_points(center, fps_idx, cuda=cuda, is_group=False) torch.cuda.empty_cache() # sample normal new_normal = index_points(normal, fps_idx, cuda=cuda, is_group=False) torch.cuda.empty_cache() # group idx = query_ball_point(radius, nsample, center, new_center, cuda=cuda) torch.cuda.empty_cache() # group normal group_normal = index_points(normal, idx, cuda=cuda, is_group=True) # [B, npoint, nsample, B] torch.cuda.empty_cache() # group center group_center = index_points(center, idx, cuda=cuda, is_group=True) # [B, npoint, nsample, A] torch.cuda.empty_cache() group_center_norm = group_center - new_center.unsqueeze(2) torch.cuda.empty_cache() # group polar if return_polar: group_polar = xyz2sphere(group_center_norm) group_center_norm = torch.cat([group_center_norm, group_polar], dim=-1) if feature is not None: group_feature = index_points(feature, idx, cuda=cuda, is_group=True) new_feature = torch.cat([group_center_norm, group_normal, group_feature], dim=-1) if return_normal \ else torch.cat([group_center_norm, group_feature], dim=-1) else: new_feature = torch.cat([group_center_norm, group_normal], dim=-1) return new_center, new_normal, new_feature def sample_and_group_all(center, normal, feature, return_normal=True, return_polar=False): """ Input: center: input centroid position data normal: input normal data feature: input feature data Return: new_center: sampled points position data new_normal: sampled points position data new_feature: sampled points data """ device = center.device B, N, C = normal.shape new_center = torch.zeros(B, 1, 3).to(device) new_normal = new_center group_normal = normal.view(B, 1, N, C) group_center = center.view(B, 1, N, 3) if return_polar: group_polar = xyz2sphere(group_center) group_center = torch.cat([group_center, group_polar], dim=-1) new_feature = torch.cat([group_center, group_normal, feature.view(B, 1, N, -1)], dim=-1) if return_normal \ else torch.cat([group_center, feature.view(B, 1, N, -1)], dim=-1) return new_center, new_normal, new_feature def resort_points(points, idx): """ Resort Set of points along G dim """ device = points.device B, N, G, _ = points.shape view_shape = [B, 1, 1] repeat_shape = [1, N, G] b_indices = torch.arange(B, dtype=torch.long).to(device).view(view_shape).repeat(repeat_shape) view_shape = [1, N, 1] repeat_shape = [B, 1, G] n_indices = torch.arange(N, dtype=torch.long).to(device).view(view_shape).repeat(repeat_shape) new_points = points[b_indices, n_indices, idx, :] return new_points def group_by_umbrella(xyz, new_xyz, k=9, cuda=False): """ Group a set of points into umbrella surfaces """ idx = query_knn_point(k, xyz, new_xyz, cuda=cuda) torch.cuda.empty_cache() group_xyz = index_points(xyz, idx, cuda=cuda, is_group=True)[:, :, 1:] # [B, N', K-1, 3] torch.cuda.empty_cache() group_xyz_norm = group_xyz - new_xyz.unsqueeze(-2) group_phi = xyz2sphere(group_xyz_norm)[..., 2] # [B, N', K-1] sort_idx = group_phi.argsort(dim=-1) # [B, N', K-1] # [B, N', K-1, 1, 3] sorted_group_xyz = resort_points(group_xyz_norm, sort_idx).unsqueeze(-2) sorted_group_xyz_roll = torch.roll(sorted_group_xyz, -1, dims=-3) group_centriod = torch.zeros_like(sorted_group_xyz) umbrella_group_xyz = torch.cat([group_centriod, sorted_group_xyz, sorted_group_xyz_roll], dim=-2) return umbrella_group_xyz class SurfaceAbstraction(nn.Module): """ Surface Abstraction Module """ def __init__(self, npoint, radius, nsample, in_channel, mlp, group_all, return_polar=True, return_normal=True, cuda=False): super(SurfaceAbstraction, self).__init__() self.npoint = npoint self.radius = radius self.nsample = nsample self.return_normal = return_normal self.return_polar = return_polar self.cuda = cuda self.group_all = group_all self.mlp_convs = nn.ModuleList() self.mlp_bns = nn.ModuleList() last_channel = in_channel for out_channel in mlp: self.mlp_convs.append(nn.Conv2d(last_channel, out_channel, 1)) self.mlp_bns.append(nn.BatchNorm2d(out_channel)) last_channel = out_channel def forward(self, center, normal, feature): normal = normal.permute(0, 2, 1) center = center.permute(0, 2, 1) if feature is not None: feature = feature.permute(0, 2, 1) if self.group_all: new_center, new_normal, new_feature = sample_and_group_all(center, normal, feature, return_polar=self.return_polar, return_normal=self.return_normal) else: new_center, new_normal, new_feature = sample_and_group(self.npoint, self.radius, self.nsample, center, normal, feature, return_polar=self.return_polar, return_normal=self.return_normal, cuda=self.cuda) new_feature = new_feature.permute(0, 3, 2, 1) for i, conv in enumerate(self.mlp_convs): bn = self.mlp_bns[i] new_feature = F.relu(bn(conv(new_feature))) new_feature = torch.max(new_feature, 2)[0] new_center = new_center.permute(0, 2, 1) new_normal = new_normal.permute(0, 2, 1) return new_center, new_normal, new_feature class SurfaceAbstractionCD(nn.Module): """ Surface Abstraction Module """ def __init__(self, npoint, radius, nsample, feat_channel, pos_channel, mlp, group_all, return_normal=True, return_polar=False, cuda=False): super(SurfaceAbstractionCD, self).__init__() self.npoint = npoint self.radius = radius self.nsample = nsample self.return_normal = return_normal self.return_polar = return_polar self.cuda = cuda self.mlp_convs = nn.ModuleList() self.mlp_bns = nn.ModuleList() self.pos_channel = pos_channel self.group_all = group_all self.mlp_l0 = nn.Conv2d(self.pos_channel, mlp[0], 1) self.mlp_f0 = nn.Conv2d(feat_channel, mlp[0], 1) self.bn_l0 = nn.BatchNorm2d(mlp[0]) self.bn_f0 = nn.BatchNorm2d(mlp[0]) # mlp_l0+mlp_f0 can be considered as the first layer of mlp_convs last_channel = mlp[0] for out_channel in mlp[1:]: self.mlp_convs.append(nn.Conv2d(last_channel, out_channel, 1)) self.mlp_bns.append(nn.BatchNorm2d(out_channel)) last_channel = out_channel def forward(self, center, normal, feature): normal = normal.permute(0, 2, 1) center = center.permute(0, 2, 1) if feature is not None: feature = feature.permute(0, 2, 1) if self.group_all: new_center, new_normal, new_feature = sample_and_group_all(center, normal, feature, return_normal=self.return_normal, return_polar=self.return_polar) else: new_center, new_normal, new_feature = sample_and_group(self.npoint, self.radius, self.nsample, center, normal, feature, return_normal=self.return_normal, return_polar=self.return_polar, cuda=self.cuda) new_feature = new_feature.permute(0, 3, 2, 1) # init layer loc = self.bn_l0(self.mlp_l0(new_feature[:, :self.pos_channel])) feat = self.bn_f0(self.mlp_f0(new_feature[:, self.pos_channel:])) new_feature = loc + feat new_feature = F.relu(new_feature) for i, conv in enumerate(self.mlp_convs): bn = self.mlp_bns[i] new_feature = F.relu(bn(conv(new_feature))) new_feature = torch.max(new_feature, 2)[0] new_center = new_center.permute(0, 2, 1) new_normal = new_normal.permute(0, 2, 1) return new_center, new_normal, new_feature class UmbrellaSurfaceConstructor(nn.Module): """ Umbrella-based Surface Abstraction Module """ def __init__(self, k, in_channel, aggr_type='sum', return_dist=False, random_inv=True, cuda=False): super(UmbrellaSurfaceConstructor, self).__init__() self.k = k self.return_dist = return_dist self.random_inv = random_inv self.aggr_type = aggr_type self.cuda = cuda self.mlps = nn.Sequential( nn.Conv2d(in_channel, in_channel, 1, bias=False), nn.BatchNorm2d(in_channel), nn.ReLU(True), nn.Conv2d(in_channel, in_channel, 1, bias=True), nn.BatchNorm2d(in_channel), nn.ReLU(True), nn.Conv2d(in_channel, in_channel, 1, bias=True), ) def forward(self, center): center = center.permute(0, 2, 1) # surface construction group_xyz = group_by_umbrella(center, center, k=self.k, cuda=self.cuda) # [B, N, K-1, 3 (points), 3 (coord.)] # normal group_normal = cal_normal(group_xyz, random_inv=self.random_inv, is_group=True) # coordinate group_center = cal_center(group_xyz) # polar group_polar = xyz2sphere(group_center) if self.return_dist: group_pos = cal_const(group_normal, group_center) group_normal, group_center, group_pos = check_nan_umb(group_normal, group_center, group_pos) new_feature = torch.cat([group_center, group_polar, group_normal, group_pos], dim=-1) # N+P+CP: 10 else: group_normal, group_center = check_nan_umb(group_normal, group_center) new_feature = torch.cat([group_center, group_polar, group_normal], dim=-1) new_feature = new_feature.permute(0, 3, 2, 1) # [B, C, G, N] # mapping new_feature = self.mlps(new_feature) # aggregation if self.aggr_type == 'max': new_feature = torch.max(new_feature, 2)[0] elif self.aggr_type == 'avg': new_feature = torch.mean(new_feature, 2) else: new_feature = torch.sum(new_feature, 2) return new_feature ================================================ FILE: classification/scripts/scanobjectnn/repsurf_ssg_umb.sh ================================================ #!/usr/bin/env bash set -v python3 tool/train_cls_scanobjectnn.py \ --cuda_ops \ --batch_size 64 \ --model repsurf.repsurf_ssg_umb \ --epoch 250 \ --log_dir repsurf_cls_ssg_umb \ --gpus 0 \ --n_workers 12 \ --return_center \ --return_dist \ --return_polar \ --group_size 8 \ --umb_pool sum \ --num_point 1024 ================================================ FILE: classification/scripts/scanobjectnn/repsurf_ssg_umb_2x.sh ================================================ #!/usr/bin/env bash set -v python3 tool/train_cls_scanobjectnn.py \ --cuda_ops \ --batch_size 64 \ --model repsurf.repsurf_ssg_umb_2x \ --epoch 250 \ --log_dir repsurf_cls_ssg_umb_2x \ --gpus 0 \ --n_workers 12 \ --return_center \ --return_dist \ --return_polar \ --group_size 8 \ --umb_pool sum \ --num_point 1024 ================================================ FILE: classification/tool/train_cls_scanobjectnn.py ================================================ """ Author: Haoxi Ran Date: 05/10/2022 """ from functools import partial import argparse import numpy as np import os import torch import datetime import logging from pathlib import Path from dataset.ScanObjectNNDataLoader import ScanObjectNNDataLoader from modules.ptaug_utils import transform_point_cloud, scale_point_cloud, get_aug_args from modules.pointnet2_utils import sample from util.utils import get_model, get_loss, set_seed, weight_init def parse_args(): """PARAMETERS""" parser = argparse.ArgumentParser('RepSurf') # Basic parser.add_argument('--log_dir', type=str, default=None, help='experiment root') parser.add_argument('--data_dir', type=str, default='./data', help='data dir') parser.add_argument('--log_root', type=str, default='./log', help='log root dir') parser.add_argument('--model', default='repsurf.scanobjectnn.repsurf_ssg_umb', help='model file name [default: repsurf_ssg_umb]') parser.add_argument('--gpus', nargs='+', type=str, default=None) parser.add_argument('--seed', type=int, default=2800, help='Training Seed') parser.add_argument('--cuda_ops', action='store_true', default=False, help='Whether to use cuda version operations [default: False]') # Training parser.add_argument('--batch_size', type=int, default=64, help='batch size in training [default: 64]') parser.add_argument('--optimizer', type=str, default='Adam', help='optimizer for training [Adam, SGD]') parser.add_argument('--scheduler', type=str, default='step', help='scheduler for training') parser.add_argument('--epoch', default=500, type=int, help='number of epoch in training [default: 500]') parser.add_argument('--learning_rate', default=0.001, type=float, help='learning rate in training [default: 0.001]') parser.add_argument('--decay_rate', type=float, default=1e-4, help='decay rate [default: 1e-4]') parser.add_argument('--decay_step', default=20, type=int, help='number of epoch per decay [default: 20]') parser.add_argument('--n_workers', type=int, default=4, help='DataLoader Workers Number [default: 4]') parser.add_argument('--init', type=str, default=None, help='initializer for model [kaiming, xavier]') # Evaluation parser.add_argument('--min_val', type=int, default=100, help='Min val epoch [default: 100]') # Augmentation parser.add_argument('--aug_scale', action='store_true', default=False, help='Whether to augment by scaling [default: False]') parser.add_argument('--aug_shift', action='store_true', default=False, help='Whether to augment by shifting [default: False]') # Modeling parser.add_argument('--num_point', type=int, default=1024, help='Point Number [default: 1024]') parser.add_argument('--return_dist', action='store_true', default=False, help='Whether to use signed distance [default: False]') parser.add_argument('--return_center', action='store_true', default=False, help='Whether to return center in surface abstraction [default: False]') parser.add_argument('--return_polar', action='store_true', default=False, help='Whether to return polar coordinate in surface abstraction [default: False]') parser.add_argument('--group_size', type=int, default=8, help='Size of umbrella group [default: 8]') parser.add_argument('--umb_pool', type=str, default='sum', help='pooling for umbrella repsurf [sum, mean, max]') return parser.parse_args() def test(model, loader, num_class=15, num_point=1024, num_votes=10, total_num=1): vote_correct = 0 sing_correct = 0 classifier = model.eval() for j, data in enumerate(loader): points, target = data points, target = points.cuda(), target.cuda() # preprocess points = sample(num_point, points) # vote vote_pool = torch.zeros(target.shape[0], num_class).cuda() for i in range(num_votes): new_points = points.clone() # scale if i > 0: new_points[:, :3] = scale_point_cloud(new_points[:, :3]) # predict pred = classifier(new_points) # single if i == 0: sing_pred = pred # vote vote_pool += pred vote_pred = vote_pool / num_votes # single pred sing_pred_choice = sing_pred.data.max(1)[1] sing_correct += sing_pred_choice.eq(target.long().data).cpu().sum() # vote pred vote_pred_choice = vote_pred.data.max(1)[1] vote_correct += vote_pred_choice.eq(target.long().data).cpu().sum() sing_acc = sing_correct.item() / total_num vote_acc = vote_correct.item() / total_num return sing_acc, vote_acc def main(args): def log_string(s): logger.info(s) print(s) '''HYPER PARAMETER''' os.environ["CUDA_VISIBLE_DEVICES"] = ','.join(args.gpus) set_seed(args.seed) '''CREATE DIR''' experiment_dir = Path(os.path.join(args.log_root, 'PointAnalysis', 'log')) experiment_dir.mkdir(exist_ok=True) experiment_dir = experiment_dir.joinpath('ScanObjectNN') experiment_dir.mkdir(exist_ok=True) if args.log_dir is None: timestr = str(datetime.datetime.now().strftime('%Y-%m-%d_%H-%M')) experiment_dir = experiment_dir.joinpath(timestr) else: experiment_dir = experiment_dir.joinpath(args.log_dir) experiment_dir.mkdir(exist_ok=True) checkpoints_dir = experiment_dir.joinpath('checkpoints/') checkpoints_dir.mkdir(exist_ok=True) log_dir = experiment_dir.joinpath('logs/') log_dir.mkdir(exist_ok=True) '''LOG''' args = parse_args() logger = logging.getLogger("Model") logger.setLevel(logging.INFO) formatter = logging.Formatter('%(asctime)s - %(name)s - %(levelname)s - %(message)s') file_handler = logging.FileHandler('%s/%s.txt' % (log_dir, args.model)) file_handler.setLevel(logging.INFO) file_handler.setFormatter(formatter) logger.addHandler(file_handler) log_string('PARAMETER ...') log_string(args) '''DATA LOADING''' log_string('Load dataset ...') args.num_class = 15 args.dataset = 'ScanObjectNN' args.normal = False aug_args = get_aug_args(args) DATA_PATH = os.path.join(args.data_dir, 'ScanObjectNN') TRAIN_DATASET = ScanObjectNNDataLoader(root=DATA_PATH, split='training') TEST_DATASET = ScanObjectNNDataLoader(root=DATA_PATH, split='test') trainDataLoader = torch.utils.data.DataLoader(TRAIN_DATASET, batch_size=args.batch_size, shuffle=True, num_workers=args.n_workers, drop_last=True) testDataLoader = torch.utils.data.DataLoader(TEST_DATASET, batch_size=args.batch_size, shuffle=False, num_workers=args.n_workers) '''MODEL BUILDING''' classifier = torch.nn.DataParallel(get_model(args)).cuda() criterion = get_loss().cuda() try: checkpoint = torch.load(str(experiment_dir) + '/checkpoints/best_model.pth') start_epoch = checkpoint['epoch'] classifier.load_state_dict(checkpoint['model_state_dict']) log_string('Use pretrain model') except: log_string('No existing model, starting training from scratch...') start_epoch = 0 if args.init: init_func = partial(weight_init, init_type=args.init) classifier = classifier.apply(init_func) '''OPTIMIZER''' if args.optimizer == 'Adam': optimizer = torch.optim.Adam( classifier.parameters(), lr=args.learning_rate, betas=(0.9, 0.999), eps=1e-08, weight_decay=args.decay_rate) elif args.optimizer == 'SGD': optimizer = torch.optim.SGD( classifier.parameters(), lr=args.learning_rate, momentum=0.9) '''LR SCHEDULER''' if args.scheduler == 'step': scheduler = torch.optim.lr_scheduler.StepLR(optimizer, step_size=args.decay_step, gamma=0.7) else: raise Exception('No Such Scheduler') global_epoch = 0 global_step = 0 best_sing_acc = 0.0 best_vote_acc = 0.0 loader_len = len(trainDataLoader) '''TRANING''' logger.info('Start training...') for epoch in range(start_epoch, args.epoch): log_string('Epoch %d (%d/%s):' % (global_epoch + 1, epoch + 1, args.epoch)) train_loss = [] train_correct = 0 scheduler.step() for batch_id, data in enumerate(trainDataLoader): '''INPUT''' points, target = data points, target = points.cuda(), target.cuda() '''PREPROCESS''' points = sample(args.num_point, points) points = transform_point_cloud(points, args, aug_args) '''FORWARD''' optimizer.zero_grad() lr = optimizer.state_dict()['param_groups'][0]['lr'] classifier = classifier.train() pred = classifier(points) loss = criterion(pred, target.long()) pred_choice = pred.data.max(1)[1] correct = pred_choice.eq(target.long().data).cpu().sum() train_correct += correct train_loss.append(loss.item()) '''BACKWARD''' loss.backward() optimizer.step() global_step += 1 if batch_id % 80 == 0: print('Epoch: [{0}][{1}/{2}] lr {lr:.6f} loss {loss:.4f}'. format(epoch, batch_id, len(trainDataLoader), lr=lr, loss=loss.item())) train_instance_acc = train_correct.item() / (loader_len * args.batch_size) train_mean_loss = np.mean(train_loss) log_string('Train Instance Accuracy: %.2f, Loss: %f' % (train_instance_acc * 100, train_mean_loss)) if epoch >= args.min_val: with torch.no_grad(): sing_acc, vote_acc = test(classifier.eval(), testDataLoader, num_point=args.num_point, total_num=len(TEST_DATASET)) if sing_acc >= best_sing_acc: best_sing_acc = sing_acc if vote_acc >= best_vote_acc: best_vote_acc = vote_acc best_epoch = epoch + 1 log_string('Test Single Accuracy: %.2f' % (sing_acc * 100)) log_string('Best Single Accuracy: %.2f' % (best_sing_acc * 100)) log_string('Test Vote Accuracy: %.2f' % (vote_acc * 100)) log_string('Best Vote Accuracy: %.2f' % (best_vote_acc * 100)) if vote_acc >= best_vote_acc: logger.info('Save model...') savepath = str(checkpoints_dir) + '/best_model.pth' log_string('Saving at %s' % savepath) state = { 'epoch': best_epoch, 'vote_acc': vote_acc, 'model_state_dict': classifier.state_dict(), 'optimizer_state_dict': optimizer.state_dict(), } torch.save(state, savepath) global_epoch += 1 logger.info('End of training...') if __name__ == '__main__': args = parse_args() main(args) ================================================ FILE: classification/util/__init__.py ================================================ ================================================ FILE: classification/util/utils.py ================================================ import importlib import argparse import random import numpy as np import torch from torch import nn import torch.nn.functional as F def set_seed(seed): """ Setting of Global Seed """ torch.backends.cudnn.enabled = True torch.backends.cudnn.deterministic = True # consistent results on the cpu and gpu torch.backends.cudnn.benchmark = True np.random.seed(seed) random.seed(seed) torch.manual_seed(seed) # cpu torch.cuda.manual_seed(seed) torch.cuda.manual_seed_all(seed) # gpu def weight_init(m, init_type): if init_type == 'xavier': init_func = torch.nn.init.xavier_normal_ elif init_type == 'kaiming': init_func = torch.nn.init.kaiming_normal_ else: raise Exception('No such init type') if isinstance(m, (torch.nn.Linear, torch.nn.Conv2d, torch.nn.Conv1d)): init_func(m.weight) if m.bias is not None: torch.nn.init.constant_(m.bias, 0) elif isinstance(m, (torch.nn.BatchNorm2d, torch.nn.BatchNorm1d)): torch.nn.init.constant_(m.weight, 1) # constant # torch.nn.init.normal_(m.weight, 1.0, 0.02) # normal torch.nn.init.constant_(m.bias, 0) class ClsLoss(nn.Module): def __init__(self): super(ClsLoss, self).__init__() def forward(self, pred, target): total_loss = F.nll_loss(pred, target) return total_loss class SmoothClsLoss(nn.Module): def __init__(self, smoothing_ratio=0.1): super(SmoothClsLoss, self).__init__() self.smoothing_ratio = smoothing_ratio def forward(self, pred, target): eps = self.smoothing_ratio n_class = pred.size(1) one_hot = torch.zeros_like(pred).scatter(1, target.view(-1, 1), 1) one_hot = one_hot * (1 - eps) + (1 - one_hot) * eps / (n_class - 1) # log_prb = F.log_softmax(pred, dim=1) loss = -(one_hot * pred).sum(dim=1).mean() return loss def get_model(args): module = importlib.import_module('models.%s' % args.model) return module.Model(args) def get_loss(): return SmoothClsLoss() def get_test_args(): return argparse.Namespace() ================================================ FILE: segmentation/README.md ================================================ # RepSurf for Segmentation
By *[Haoxi Ran\*](https://hancyran.github.io/) , Jun Liu, Chengjie Wang* ( * : corresponding contact) ### [PDF](https://openaccess.thecvf.com/content/CVPR2022/papers/Ran_Surface_Representation_for_Point_Clouds_CVPR_2022_paper.pdf) | [arXiv](http://arxiv.org/abs/2205.05740) ## Preparation ### Environment We tested under the environment: * python 3.7 * pytorch 1.6.0 / 1.8.0 * cuda 10.1 / 11.1 * gcc 7.2.0 * h5py * sharedarray * tensorboardx For anaconda user, initialize the conda environment **repsurf-seg** by: ``` sh init.sh ``` ## Experiments ### S3DIS Area-5 (Data & Logs: [Google Drive](https://drive.google.com/drive/folders/1jIZuy4RPFJ4YHAE8ScVQgwtBwNGgfKnv?usp=sharing)) * Performance using the same settings:
Model mIoU mAcc OA #Params Training Time Code Training Log Test Log Checkpoint
Point Transformer
(our settings)
70.37 (official: 70.4) 77.02 (official: 76.5) 90.80 (official: 90.8) 7.767M 19.91h pointtransformer.py google drive google drive google drive
(30 MB)
PointNet++ SSG (our settings) 64.05 71.52 87.92 0.968M 9.08h pointnet2_ssg.py google drive google drive google drive
(4 MB)
PointNet++ SSG w/ Umbrella RepSurf (ours) 68.86 76.54 90.22 0.976M 9.18h repsurf_umb_ssg.py google drive google drive google drive
(4 MB)

**Note**: 1. The performance (mIoU/mAcc/OA) are from the final predictions on the whole scenes of S3DIS Area-5, while the results during training is on sub-sampled scenes for fast validation. 2. The training time of all above implementations is estimated on four NVIDIA RTX 3090. The time in the logs contains both training and validating time. 3. To speed up the training process, we apply Sectorized FPS (in the first stage) for all above methods. It can save 30~40% training time and does not affect the performance. 4. To lessen the instability from grid sampling during inference, we apply median filtering to all the above implementations. Besides, it can slightly improve the results (~0.4 mIoU). * To (firstly install gdown by **pip install gdown** and) download dataset: ``` cd ./data/S3DIS gdown https://drive.google.com/u/1/uc?id=1UDM-bjrtqoIR9FWoIRyqLUJGyKEs22fP tar zxf s3dis.tar.gz && rm s3dis.tar.gz && cd - ``` * To train one model (**Umbrella RepSurf, Point Transformer, PointNet2**) for S3DIS Area-5: ``` sh scripts/s3dis/train_[MODEL].sh # MODEL: repsurf_umb, pointnet2, pointtransformer ``` * To test one model (**Our Umbrella RepSurf, Point Transformer, PointNet2**) for S3DIS Area-5 on whole scenes: ``` sh scripts/s3dis/test_[MODEL].sh # MODEL: repsurf_umb, pointnet2, pointtransformer ``` ## Acknowledgment We thank the [Point Transformer Implementation](https://github.com/POSTECH-CVLab/point-transformer) for the library pointops. ## License RepSurf is under the Apache-2.0 license. Please contact the primary author **Haoxi Ran (ranhaoxi@gmail.com)** for commercial use. ================================================ FILE: segmentation/dataset/S3DISDataLoader.py ================================================ """ Author: Haoxi Ran Date: 06/30/2022 """ import os import numpy as np import SharedArray as SA from torch.utils.data import Dataset from util.data_util import sa_create, data_prepare NUM_CLASS = 13 class S3DIS(Dataset): def __init__(self, args, split, coord_transform=None, rgb_transform=None, rgb_mean=None, rgb_std=None, shuffle_index=False): super().__init__() self.args, self.split, self.coord_transform, self.rgb_transform, self.rgb_mean, self.rgb_std, self.shuffle_index = \ args, split, coord_transform, rgb_transform, rgb_mean, rgb_std, shuffle_index self.stop_aug = False data_list = sorted(os.listdir(args.data_dir)) data_list = [item[:-4] for item in data_list if 'Area_' in item] if split == 'train': self.data_list = [item for item in data_list if not 'Area_{}'.format(args.test_area) in item] else: self.data_list = [item for item in data_list if 'Area_{}'.format(args.test_area) in item] self.data_idx = np.arange(len(self.data_list)) for item in self.data_list: if not os.path.exists("/dev/shm/s3dis_{}".format(item)): data_path = os.path.join(args.data_dir, item + '.npy') data = np.load(data_path).astype(np.float32) # xyzrgbl, N*7 sa_create("shm://s3dis_{}".format(item), data) def __getitem__(self, idx): data_idx = self.data_idx[idx % len(self.data_idx)] data = SA.attach("shm://s3dis_{}".format(self.data_list[data_idx])).copy() coord, feat, label = data[:, 0:3], data[:, 3:6], data[:, 6] coord, feat, label = \ data_prepare(coord, feat, label, self.args, self.split, self.coord_transform, self.rgb_transform, self.rgb_mean, self.rgb_std, self.shuffle_index, self.stop_aug) return coord, feat, label def __len__(self): return len(self.data_idx) * self.args.loop @staticmethod def print_weight(data_root, data_list): print('Computing label weight...') num_point_list = [] label_freq = np.zeros(NUM_CLASS) label_total = np.zeros(NUM_CLASS) # load data for idx, item in enumerate(data_list): data_path = os.path.join(data_root, item + '.npy') data = np.load(data_path) labels = data[:, 6] freq = np.histogram(labels, range(NUM_CLASS + 1))[0] label_freq += freq label_total += (freq > 0).astype(np.float) * labels.size num_point_list.append(labels.size) # label weight label_freq = label_freq / label_total label_weight = np.median(label_freq) / label_freq print(label_weight) @staticmethod def print_mean_std(data_root, data_list): print('Computing color mean & std...') point_list = [] for idx, item in enumerate(data_list): data_path = os.path.join(data_root, item + '.npy') data = np.load(data_path) point_list.append(data[:, 3:6]) points = np.vstack(point_list) / 255. mean = np.mean(points, 0) std = np.std(points, 0) print(f'mean: {mean}, std:{std}') ================================================ FILE: segmentation/dataset/__init__.py ================================================ ================================================ FILE: segmentation/init.sh ================================================ #!/bin/sh mkdir -p log/PointAnalysis/log/S3DIS mkdir -p log/PointAnalysis/log/ScanNet mkdir -p data/S3DIS mkdir -p data/ScanNet conda create -n repsurf-seg python=3.7 -y conda activate repsurf-seg #conda install pytorch=1.6.0 torchvision=0.7.0 cudatoolkit=10.1 -c pytorch -c conda-forge -y pip install torch==1.8.0+cu111 torchvision==0.9.0+cu111 torchaudio==0.8.0 -f https://download.pytorch.org/whl/torch_stable.html conda install -c anaconda h5py pyyaml -y conda install -c conda-forge sharedarray tensorboardx -y cd modules/pointops python3 setup.py install cd - ================================================ FILE: segmentation/models/__init__.py ================================================ ================================================ FILE: segmentation/models/pointnet2/__init__.py ================================================ ================================================ FILE: segmentation/models/pointnet2/pointnet2_ssg.py ================================================ """ Author: Haoxi Ran Date: 06/30/2022 """ import torch import torch.nn as nn from modules.pointnet2_utils import PointNetSetAbstraction, PointNetFeaturePropagation class Model(nn.Module): def __init__(self, args): super(Model, self).__init__() self.sa1 = PointNetSetAbstraction(4, 32, 6 + 3, [32, 32, 64], num_sector=4) self.sa2 = PointNetSetAbstraction(4, 32, 64 + 3, [64, 64, 128]) self.sa3 = PointNetSetAbstraction(4, 32, 128 + 3, [128, 128, 256]) self.sa4 = PointNetSetAbstraction(4, 32, 256 + 3, [256, 256, 512]) self.fp4 = PointNetFeaturePropagation(768, [256, 256]) self.fp3 = PointNetFeaturePropagation(384, [256, 256]) self.fp2 = PointNetFeaturePropagation(320, [256, 128]) self.fp1 = PointNetFeaturePropagation(128, [128, 128, 128]) self.classifier = nn.Sequential( nn.Linear(128, 128), nn.BatchNorm1d(128), nn.ReLU(True), nn.Dropout(0.5), nn.Linear(128, args.num_class), ) def forward(self, pos_feat_off0): pos_feat_off0[1] = torch.cat([pos_feat_off0[0], pos_feat_off0[1]], 1) pos_feat_off1 = self.sa1(pos_feat_off0) pos_feat_off2 = self.sa2(pos_feat_off1) pos_feat_off3 = self.sa3(pos_feat_off2) pos_feat_off4 = self.sa4(pos_feat_off3) pos_feat_off3[1] = self.fp4(pos_feat_off3, pos_feat_off4) pos_feat_off2[1] = self.fp3(pos_feat_off2, pos_feat_off3) pos_feat_off1[1] = self.fp2(pos_feat_off1, pos_feat_off2) pos_feat_off0[1] = self.fp1([pos_feat_off0[0], None, pos_feat_off0[2]], pos_feat_off1) feature = self.classifier(pos_feat_off0[1]) return feature ================================================ FILE: segmentation/models/pointtransformer/__init__.py ================================================ ================================================ FILE: segmentation/models/pointtransformer/pointtransformer.py ================================================ import torch import torch.nn as nn from modules.pointtransformer_utils import PointTransformerBlock, TransitionDown, TransitionUp class Model(nn.Module): def __init__(self, args): super().__init__() block = PointTransformerBlock num_block = [2, 3, 4, 6, 3] self.in_c = args.in_channel self.in_planes, planes = self.in_c, [32, 64, 128, 256, 512] fpn_planes, fpnhead_planes, share_planes = 128, 64, 8 stride, nsample = [1, 4, 4, 4, 4], [16, 16, 16, 16, 16] self.enc1 = self._make_enc(block, planes[0], num_block[0], share_planes, stride=stride[0], nsample=nsample[0]) # N/1 self.enc2 = self._make_enc(block, planes[1], num_block[1], share_planes, stride=stride[1], nsample=nsample[1], num_sector=4) # N/4 self.enc3 = self._make_enc(block, planes[2], num_block[2], share_planes, stride=stride[2], nsample=nsample[2]) # N/16 self.enc4 = self._make_enc(block, planes[3], num_block[3], share_planes, stride=stride[3], nsample=nsample[3]) # N/64 self.enc5 = self._make_enc(block, planes[4], num_block[4], share_planes, stride=stride[4], nsample=nsample[4]) # N/256 self.dec5 = self._make_dec(block, planes[4], 2, share_planes, nsample=nsample[4], is_head=True) # transform p5 self.dec4 = self._make_dec(block, planes[3], 2, share_planes, nsample=nsample[3]) # fusion p5 and p4 self.dec3 = self._make_dec(block, planes[2], 2, share_planes, nsample=nsample[2]) # fusion p4 and p3 self.dec2 = self._make_dec(block, planes[1], 2, share_planes, nsample=nsample[1]) # fusion p3 and p2 self.dec1 = self._make_dec(block, planes[0], 2, share_planes, nsample=nsample[0]) # fusion p2 and p1 self.cls = nn.Sequential(nn.Linear(planes[0], planes[0]), nn.BatchNorm1d(planes[0]), nn.ReLU(inplace=True), nn.Linear(planes[0], args.num_class)) def _make_enc(self, block, planes, blocks, share_planes=8, stride=1, nsample=16, num_sector=1): layers = [TransitionDown(self.in_planes, planes * block.expansion, stride, nsample, num_sector)] self.in_planes = planes * block.expansion for _ in range(1, blocks): layers.append(block(self.in_planes, self.in_planes, share_planes, nsample=nsample)) return nn.Sequential(*layers) def _make_dec(self, block, planes, blocks, share_planes=8, nsample=16, is_head=False): layers = [TransitionUp(self.in_planes, None if is_head else planes * block.expansion)] self.in_planes = planes * block.expansion for _ in range(1, blocks): layers.append(block(self.in_planes, self.in_planes, share_planes, nsample=nsample)) return nn.Sequential(*layers) def forward(self, pxo, *args): p0, x0, o0 = pxo # (n, 3), (n, c), (b) x0 = p0 if self.in_c == 3 else torch.cat((p0, x0), 1) p1, x1, o1 = self.enc1([p0, x0, o0]) p2, x2, o2 = self.enc2([p1, x1, o1]) p3, x3, o3 = self.enc3([p2, x2, o2]) p4, x4, o4 = self.enc4([p3, x3, o3]) p5, x5, o5 = self.enc5([p4, x4, o4]) x5 = self.dec5[1:]([p5, self.dec5[0]([p5, x5, o5]), o5])[1] x4 = self.dec4[1:]([p4, self.dec4[0]([p4, x4, o4], [p5, x5, o5]), o4])[1] x3 = self.dec3[1:]([p3, self.dec3[0]([p3, x3, o3], [p4, x4, o4]), o3])[1] x2 = self.dec2[1:]([p2, self.dec2[0]([p2, x2, o2], [p3, x3, o3]), o2])[1] x1 = self.dec1[1:]([p1, self.dec1[0]([p1, x1, o1], [p2, x2, o2]), o1])[1] x = self.cls(x1) return x ================================================ FILE: segmentation/models/repsurf/__init__.py ================================================ ================================================ FILE: segmentation/models/repsurf/repsurf_umb_ssg.py ================================================ """ Author: Haoxi Ran Date: 06/30/2022 """ import torch import torch.nn as nn from modules.repsurface_utils import UmbrellaSurfaceConstructor, SurfaceAbstractionCD, SurfaceFeaturePropagationCD class Model(nn.Module): def __init__(self, args): super(Model, self).__init__() center_channel = 6 if args.return_polar else 3 repsurf_in_channel = 10 repsurf_out_channel = 10 self.sa1 = SurfaceAbstractionCD(4, 32, args.in_channel + repsurf_out_channel, center_channel, [32, 32, 64], True, args.return_polar, num_sector=4) self.sa2 = SurfaceAbstractionCD(4, 32, 64 + repsurf_out_channel, center_channel, [64, 64, 128], True, args.return_polar) self.sa3 = SurfaceAbstractionCD(4, 32, 128 + repsurf_out_channel, center_channel, [128, 128, 256], True, args.return_polar) self.sa4 = SurfaceAbstractionCD(4, 32, 256 + repsurf_out_channel, center_channel, [256, 256, 512], True, args.return_polar) self.fp4 = SurfaceFeaturePropagationCD(512, 256, [256, 256]) self.fp3 = SurfaceFeaturePropagationCD(256, 128, [256, 256]) self.fp2 = SurfaceFeaturePropagationCD(256, 64, [256, 128]) self.fp1 = SurfaceFeaturePropagationCD(128, None, [128, 128, 128]) self.classifier = nn.Sequential( nn.Linear(128, 128), nn.BatchNorm1d(128), nn.ReLU(True), nn.Dropout(0.5), nn.Linear(128, args.num_class), ) self.surface_constructor = UmbrellaSurfaceConstructor(args.group_size + 1, repsurf_in_channel, repsurf_out_channel) def forward(self, pos_feat_off0): pos_nor_feat_off0 = [ pos_feat_off0[0], self.surface_constructor(pos_feat_off0[0], pos_feat_off0[2]), torch.cat([pos_feat_off0[0], pos_feat_off0[1]], 1), pos_feat_off0[2] ] pos_nor_feat_off1 = self.sa1(pos_nor_feat_off0) pos_nor_feat_off2 = self.sa2(pos_nor_feat_off1) pos_nor_feat_off3 = self.sa3(pos_nor_feat_off2) pos_nor_feat_off4 = self.sa4(pos_nor_feat_off3) del pos_nor_feat_off0[1], pos_nor_feat_off1[1], pos_nor_feat_off2[1], pos_nor_feat_off3[1], pos_nor_feat_off4[1] pos_nor_feat_off3[1] = self.fp4(pos_nor_feat_off3, pos_nor_feat_off4) pos_nor_feat_off2[1] = self.fp3(pos_nor_feat_off2, pos_nor_feat_off3) pos_nor_feat_off1[1] = self.fp2(pos_nor_feat_off1, pos_nor_feat_off2) pos_nor_feat_off0[1] = self.fp1([pos_nor_feat_off0[0], None, pos_nor_feat_off0[2]], pos_nor_feat_off1) feature = self.classifier(pos_nor_feat_off0[1]) return feature ================================================ FILE: segmentation/modules/__init__.py ================================================ ================================================ FILE: segmentation/modules/aug_utils.py ================================================ """ Author: Haoxi Ran Date: 06/30/2022 """ import numpy as np def transform_point_cloud_coord(args): transform_list = [] aug_args = args.aug_args if args.aug_scale: transform_list.append( RandomScale(aug_args['scale_factor'], aug_args['scale_ani'], aug_args['scale_prob'])) if args.aug_rotate: if args.aug_rotate == 'pert': transform_list.append( RandomRotatePerturb(aug_args['pert_factor'], 3 * aug_args['pert_factor'], aug_args['pert_prob'])) elif args.aug_rotate == 'pert_z': transform_list.append( RandomRotatePerturbAligned(aug_args['pert_factor'], 3 * aug_args['pert_factor'], aug_args['pert_prob'])) elif args.aug_rotate == 'rot': transform_list.append( RandomRotate(prob=aug_args['rot_prob'])) elif args.aug_rotate == 'rot_z': transform_list.append( RandomRotateAligned(prob=aug_args['rot_prob'])) if args.aug_jitter: transform_list.append( RandomJitter(aug_args['jitter_factor'], 5 * aug_args['jitter_factor'], aug_args['jitter_prob'], args.lidar)) if args.aug_flip: transform_list.append(RandomFlip()) if args.aug_shift: transform_list.append(RandomShift(aug_args['shifts'], aug_args['shift_prob'])) return Compose(transform_list) if len(transform_list) > 0 else None def transform_point_cloud_rgb(args): transform_list = [] aug_args = args.aug_args if args.color_contrast: transform_list.append(ChromaticAutoContrast()) if args.color_shift: transform_list.append(ChromaticTranslation()) if args.color_jitter: transform_list.append(ChromaticJitter()) if args.hs_shift: transform_list.append(HueSaturationTranslation()) if args.color_drop: transform_list.append(RandomDropColor()) return Compose(transform_list) if len(transform_list) > 0 else None class Compose(object): def __init__(self, transforms): self.transforms = transforms def __call__(self, coord, feat, label, mask=None): for t in self.transforms: coord, feat, label = t(coord, feat, label, mask) return coord, feat, label class RandomRotate(object): def __init__(self, rot=(np.pi/24, np.pi/24, np.pi/4), prob=1.): self.rot = rot self.prob = prob def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.prob: angle_x = np.random.uniform(-self.rot[0], self.rot[0]) angle_y = np.random.uniform(-self.rot[1], self.rot[1]) angle_z = np.random.uniform(-self.rot[2], self.rot[2]) cos_x, sin_x = np.cos(angle_x), np.sin(angle_x) cos_y, sin_y = np.cos(angle_y), np.sin(angle_y) cos_z, sin_z = np.cos(angle_z), np.sin(angle_z) R_x = np.array([[1, 0, 0], [0, cos_x, -sin_x], [0, sin_x, cos_x]]) R_y = np.array([[cos_y, 0, sin_y], [0, 1, 0], [-sin_y, 0, cos_y]]) R_z = np.array([[cos_z, -sin_z, 0], [sin_z, cos_z, 0], [0, 0, 1]]) R = np.dot(R_z, np.dot(R_y, R_x)) coord = np.dot(coord, np.transpose(R)) return coord, feat, label class RandomRotateAligned(object): def __init__(self, rot=np.pi, prob=1.): self.rot = rot self.prob = prob def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.prob: angle_z = np.random.uniform(-self.rot, self.rot) cos_z, sin_z = np.cos(angle_z), np.sin(angle_z) R = np.array([[cos_z, -sin_z, 0], [sin_z, cos_z, 0], [0, 0, 1]]) coord = np.dot(coord, R) return coord, feat, label class RandomRotatePerturb(object): def __init__(self, sigma=0.03, clip=0.09, prob=1.): self.sigma = sigma self.clip = clip self.prob = prob def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.prob: angle_x = np.clip(np.random.normal() * self.sigma, -self.clip, self.clip) angle_y = np.clip(np.random.normal() * self.sigma, -self.clip, self.clip) angle_z = np.clip(np.random.normal() * self.sigma, -self.clip, self.clip) cos_x, sin_x = np.cos(angle_x), np.sin(angle_x) cos_y, sin_y = np.cos(angle_y), np.sin(angle_y) cos_z, sin_z = np.cos(angle_z), np.sin(angle_z) R_x = np.array([[1, 0, 0], [0, cos_x, -sin_x], [0, sin_x, cos_x]]) R_y = np.array([[cos_y, 0, sin_y], [0, 1, 0], [-sin_y, 0, cos_y]]) R_z = np.array([[cos_z, -sin_z, 0], [sin_z, cos_z, 0], [0, 0, 1]]) R = np.dot(R_z, np.dot(R_y, R_x)) coord = np.dot(coord, np.transpose(R)) return coord, feat, label class RandomRotatePerturbAligned(object): def __init__(self, sigma=0.03, clip=0.09, prob=1.): self.sigma = sigma self.clip = clip self.prob = prob def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.prob: angle_z = np.clip(np.random.normal() * self.sigma, -self.clip, self.clip) cos_z, sin_z = np.cos(angle_z), np.sin(angle_z) R = np.array([[cos_z, -sin_z, 0], [sin_z, cos_z, 0], [0, 0, 1]]) coord = np.dot(coord, R) return coord, feat, label class RandomScale(object): def __init__(self, scale=0.1, anisotropic=False, prob=1.): self.scale = scale self.anisotropic = anisotropic self.prob = prob def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.prob: scale = np.random.uniform(1 - self.scale, 1 + self.scale, 3 if self.anisotropic else 1) coord *= scale return coord, feat, label class RandomShift(object): def __init__(self, shift=(0.2, 0.2, 0), p=0.95): self.shift = shift self.p = p def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.p: shift_x = np.random.uniform(-self.shift[0], self.shift[0]) shift_y = np.random.uniform(-self.shift[1], self.shift[1]) shift_z = np.random.uniform(-self.shift[2], self.shift[2]) coord += [shift_x, shift_y, shift_z] return coord, feat, label class RandomFlip(object): def __init__(self, p=1.): self.p = p def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.p: if np.random.rand() < 0.5: coord[:, 0] = -coord[:, 0] if np.random.rand() < 0.5: coord[:, 1] = -coord[:, 1] return coord, feat, label class RandomJitter(object): def __init__(self, sigma=0.01, clip=0.05, p=1., is_lidar=False): self.sigma = sigma self.clip = clip self.p = p self.is_lidar = is_lidar def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.p: assert (self.clip > 0) jitter = np.clip(self.sigma * np.random.randn(coord.shape[0], 3), -1 * self.clip, self.clip) if self.is_lidar: jitter[:, 2] *= 0.1 # re-scale z-axis jitter coord += jitter return coord, feat, label class ChromaticAutoContrast(object): def __init__(self, p=0.2, blend_factor=None): self.p = p self.blend_factor = blend_factor def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.p: tmp_feat = feat[mask] if mask is not None else feat lo = np.min(tmp_feat, 0, keepdims=True) hi = np.max(tmp_feat, 0, keepdims=True) scale = 255 / (hi - lo) contrast_feat = (tmp_feat[:, :3] - lo) * scale blend_factor = np.random.rand() if self.blend_factor is None else self.blend_factor tmp_feat[:, :3] = (1 - blend_factor) * tmp_feat[:, :3] + blend_factor * contrast_feat if mask is not None: feat[mask] = tmp_feat else: feat = tmp_feat return coord, feat, label class ChromaticTranslation(object): def __init__(self, p=0.95, ratio=0.05): self.p = p self.ratio = ratio def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.p: tr = (np.random.rand(1, feat.shape[1]) - 0.5) * 255 * 2 * self.ratio feat[:, :3] = np.clip(tr + feat[:, :3], 0, 255) if mask is not None: feat[:, :3][~mask] = 0. return coord, feat, label class ChromaticJitter(object): def __init__(self, p=0.95, std=0.005): self.p = p self.std = std def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.p: noise = np.random.randn(*feat.shape) noise *= self.std * 255 feat[:, :3] = np.clip(noise + feat[:, :3], 0, 255) if mask is not None: feat[:, :3][~mask] = 0. return coord, feat, label class HueSaturationTranslation(object): @staticmethod def rgb_to_hsv(rgb): # Translated from source of colorsys.rgb_to_hsv # r,g,b should be a numpy arrays with values between 0 and 255 # rgb_to_hsv returns an array of floats between 0.0 and 1.0. rgb = rgb.astype('float') hsv = np.zeros_like(rgb) # in case an RGBA array was passed, just copy the A channel hsv[..., 3:] = rgb[..., 3:] r, g, b = rgb[..., 0], rgb[..., 1], rgb[..., 2] maxc = np.max(rgb[..., :3], axis=-1) minc = np.min(rgb[..., :3], axis=-1) hsv[..., 2] = maxc mask = maxc != minc hsv[mask, 1] = (maxc - minc)[mask] / maxc[mask] rc = np.zeros_like(r) gc = np.zeros_like(g) bc = np.zeros_like(b) rc[mask] = (maxc - r)[mask] / (maxc - minc)[mask] gc[mask] = (maxc - g)[mask] / (maxc - minc)[mask] bc[mask] = (maxc - b)[mask] / (maxc - minc)[mask] hsv[..., 0] = np.select([r == maxc, g == maxc], [bc - gc, 2.0 + rc - bc], default=4.0 + gc - rc) hsv[..., 0] = (hsv[..., 0] / 6.0) % 1.0 return hsv @staticmethod def hsv_to_rgb(hsv): # Translated from source of colorsys.hsv_to_rgb # h,s should be a numpy arrays with values between 0.0 and 1.0 # v should be a numpy array with values between 0.0 and 255.0 # hsv_to_rgb returns an array of uints between 0 and 255. rgb = np.empty_like(hsv) rgb[..., 3:] = hsv[..., 3:] h, s, v = hsv[..., 0], hsv[..., 1], hsv[..., 2] i = (h * 6.0).astype('uint8') f = (h * 6.0) - i p = v * (1.0 - s) q = v * (1.0 - s * f) t = v * (1.0 - s * (1.0 - f)) i = i % 6 conditions = [s == 0.0, i == 1, i == 2, i == 3, i == 4, i == 5] rgb[..., 0] = np.select(conditions, [v, q, p, p, t, v], default=v) rgb[..., 1] = np.select(conditions, [v, v, v, q, p, p], default=t) rgb[..., 2] = np.select(conditions, [v, p, t, v, v, q], default=p) return rgb.astype('uint8') def __init__(self, hue_max=0.5, saturation_max=0.2, p=1.): self.hue_max = hue_max self.saturation_max = saturation_max self.p = p def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.p: # Assume feat[:, :3] is rgb tmp_feat = feat[mask] if mask is not None else feat hsv = HueSaturationTranslation.rgb_to_hsv(tmp_feat[:, :3]) hue_val = (np.random.rand() - 0.5) * 2 * self.hue_max sat_ratio = 1 + (np.random.rand() - 0.5) * 2 * self.saturation_max hsv[..., 0] = np.remainder(hue_val + hsv[..., 0] + 1, 1) hsv[..., 1] = np.clip(sat_ratio * hsv[..., 1], 0, 1) tmp_feat[:, :3] = np.clip(HueSaturationTranslation.hsv_to_rgb(hsv), 0, 255) if mask is not None: feat[mask] = tmp_feat else: feat = tmp_feat return coord, feat, label class RandomDropColor(object): def __init__(self, p=0.2): self.p = p def __call__(self, coord, feat, label, mask=None): if np.random.rand() < self.p: feat[:, :3] = 0 return coord, feat, label ================================================ FILE: segmentation/modules/pointnet2_utils.py ================================================ """ Author: Haoxi Ran Date: 06/30/2022 """ import torch import torch.nn as nn import torch.nn.functional as F from modules.pointops.functions import pointops def sample_and_group(stride, nsample, xyz, points, offset, return_idx=False, num_sector=1): # sample if stride > 1: new_offset, sample_idx = [offset[0].item() // stride], offset[0].item() // stride for i in range(1, offset.shape[0]): sample_idx += (offset[i].item() - offset[i - 1].item()) // stride new_offset.append(sample_idx) new_offset = torch.cuda.IntTensor(new_offset) if num_sector > 1: fps_idx = pointops.sectorized_fps(xyz, offset, new_offset, num_sector) # [M] else: fps_idx = pointops.furthestsampling(xyz, offset, new_offset) # [M] new_xyz = xyz[fps_idx.long(), :] # [M, 3] else: new_xyz = xyz new_offset = offset # group N, M = xyz.shape[0], new_xyz.shape[0] group_idx, _ = pointops.knnquery(nsample, xyz, new_xyz, offset, new_offset) # [M, nsample] group_xyz = xyz[group_idx.view(-1).long(), :].view(M, nsample, 3) # [M, nsample, 3] group_xyz_norm = group_xyz - new_xyz.unsqueeze(1) if points is not None and not return_idx: C = points.shape[1] group_points = points[group_idx.view(-1).long(), :].view(M, nsample, C) new_points = torch.cat([group_xyz_norm, group_points], dim=-1) # [M, nsample, 3/6+C] else: new_points = group_xyz_norm if return_idx: return new_xyz, new_points, new_offset, group_idx else: return new_xyz, new_points, new_offset class PointNetSetAbstraction(nn.Module): """ PointNet2 SA Module """ def __init__(self, stride, nsample, in_channel, mlp, num_sector=1): super(PointNetSetAbstraction, self).__init__() self.stride = stride self.nsample = nsample self.num_sector = num_sector self.mlp_convs = nn.ModuleList() self.mlp_bns = nn.ModuleList() last_channel = in_channel for out_channel in mlp: self.mlp_convs.append(nn.Conv1d(last_channel, out_channel, 1)) self.mlp_bns.append(nn.BatchNorm1d(out_channel)) last_channel = out_channel def forward(self, pos_feat_off): xyz, points, offset = pos_feat_off # [N, 3], [N, C], [B] new_xyz, new_points, new_offset = sample_and_group(self.stride, self.nsample, xyz, points, offset, num_sector=self.num_sector) # new_xyz: sampled points position data, [M, 3] # new_points: sampled points data, [M, nsample, 3+C] new_points = new_points.transpose(1, 2).contiguous() # [M, 3+C, nsample] for i, conv in enumerate(self.mlp_convs): bn = self.mlp_bns[i] new_points = F.relu(bn(conv(new_points))) new_points = torch.max(new_points, 2)[0] return [new_xyz, new_points, new_offset] class PointNetFeaturePropagation(nn.Module): """ PointNet2 FP Module """ def __init__(self, in_channel, mlp): super(PointNetFeaturePropagation, self).__init__() self.mlp_convs = nn.ModuleList() self.mlp_bns = nn.ModuleList() last_channel = in_channel for out_channel in mlp: self.mlp_convs.append(nn.Linear(last_channel, out_channel)) self.mlp_bns.append(nn.BatchNorm1d(out_channel)) last_channel = out_channel def forward(self, pos_feat_off1, pos_feat_off2): xyz1, points1, offset1 = pos_feat_off1 # [N, 3], [N, C], [B] xyz2, points2, offset2 = pos_feat_off2 # [M, 3], [M, C], [B] idx, dist = pointops.knnquery(3, xyz2, xyz1, offset2, offset1) # [M, 3], [M, 3] dist_recip = 1.0 / (dist + 1e-8) # [M, 3] norm = torch.sum(dist_recip, dim=1, keepdim=True) weight = dist_recip / norm # [M, 3] interpolated_points = torch.cuda.FloatTensor(xyz1.shape[0], points2.shape[1]).zero_() for i in range(3): interpolated_points += points2[idx[:, i].long(), :] * weight[:, i].unsqueeze(-1) # skip connection if points1 is not None: new_points = torch.cat([points1, interpolated_points], dim=1) # [M, C1+C2] else: new_points = interpolated_points # mlp for i, conv in enumerate(self.mlp_convs): bn = self.mlp_bns[i] new_points = F.relu(bn(conv(new_points))) return new_points ================================================ FILE: segmentation/modules/pointops/__init__.py ================================================ ================================================ FILE: segmentation/modules/pointops/functions/__init__.py ================================================ ================================================ FILE: segmentation/modules/pointops/functions/pointops.py ================================================ from typing import Tuple import torch from torch.autograd import Function import torch.nn as nn try: import pointops_cuda except ImportError: import warnings import os from torch.utils.cpp_extension import load warnings.warn("Unable to load pointops_cuda cpp extension.") pointops_cuda_src = os.path.join(os.path.dirname(__file__), "../src") pointops_cuda = load('pointops_cuda', [ pointops_cuda_src + '/pointops_api.cpp', pointops_cuda_src + '/knnquery/knnquery_cuda.cpp', pointops_cuda_src + '/knnquery/knnquery_cuda_kernel.cu', pointops_cuda_src + '/interpolation/interpolation_cuda.cpp', pointops_cuda_src + '/interpolation/interpolation_cuda_kernel.cu', pointops_cuda_src + '/sampling/sampling_cuda.cpp', pointops_cuda_src + '/sampling/sampling_cuda_kernel.cu', pointops_cuda_src + '/subtraction/subtraction_cuda.cpp', pointops_cuda_src + '/subtraction/subtraction_cuda_kernel.cu', pointops_cuda_src + '/aggregation/aggregation_cuda.cpp', pointops_cuda_src + '/aggregation/aggregation_cuda_kernel.cu', ], build_directory=pointops_cuda_src, verbose=False) class FurthestSampling(Function): @staticmethod def forward(ctx, xyz, offset, new_offset): """ input: xyz: (n, 3), offset: (b), new_offset: (b) output: idx: (m) """ assert xyz.is_contiguous() n, b, n_max = xyz.shape[0], offset.shape[0], offset[0] for i in range(1, b): n_max = max(offset[i] - offset[i - 1], n_max) idx = torch.cuda.IntTensor(new_offset[b - 1].item()).zero_() tmp = torch.cuda.FloatTensor(n).fill_(1e10) pointops_cuda.furthestsampling_cuda(b, n_max, xyz, offset, new_offset, tmp, idx) del tmp return idx furthestsampling = FurthestSampling.apply class SectorizedFurthestSampling(Function): @staticmethod def forward(ctx, xyz, offset, new_offset, num_sectors, min_points=10000): """ input: xyz: (n, 3), offset: (b), new_offset: (b) output: idx: (m) """ assert xyz.is_contiguous() # cut into batches last_offset = 0 sizes = [] new_sizes = [] indices = [] for i in range(offset.shape[0]): size = offset[i] - last_offset if size < min_points: tmp_num_sectors = 1 else: tmp_num_sectors = num_sectors batch_xyz = xyz[last_offset:last_offset + size] angle = torch.atan2(batch_xyz[:, 0], batch_xyz[:, 1]) # [0, 2*pi] sector_range = torch.linspace(angle.min(), angle.max() + 1e-4, tmp_num_sectors + 1) for s in range(tmp_num_sectors): indices.append( torch.where((angle >= sector_range[s]) & (angle < sector_range[s + 1]))[0] + last_offset ) sizes.append(indices[-1].shape[0]) if i > 0: new_size = (new_offset[i] - new_offset[i - 1]).item() else: new_size = new_offset[i].item() new_sizes_this_batch = [new_size // tmp_num_sectors for i in range(tmp_num_sectors)] new_sizes_this_batch[-1] += new_size % tmp_num_sectors new_sizes += new_sizes_this_batch last_offset = offset[i] sizes = torch.tensor(sizes, dtype=torch.long).to(offset) sector_offset = sizes.cumsum(dim=0) new_sizes = torch.tensor(new_sizes, dtype=torch.long).to(offset) new_sector_offset = new_sizes.cumsum(dim=0) indices = torch.cat(indices).long().to(offset.device) sector_xyz = xyz[indices].contiguous() # transform to sectors new_xyz = [] n, b, n_max = sector_xyz.shape[0], sector_offset.shape[0], sector_offset[0] for i in range(1, b): n_max = max(sector_offset[i] - sector_offset[i - 1], n_max) idx = torch.cuda.IntTensor(new_sector_offset[b - 1].item()).zero_() tmp = torch.cuda.FloatTensor(n).fill_(1e10) pointops_cuda.furthestsampling_cuda(b, n_max, sector_xyz, sector_offset.int(), new_sector_offset.int(), tmp, idx) idx = indices[idx.long()] del tmp del sector_xyz return idx sectorized_fps = SectorizedFurthestSampling.apply class KNNQuery(Function): @staticmethod def forward(ctx, nsample, xyz, new_xyz, offset, new_offset): """ input: xyz: (n, 3), new_xyz: (m, 3), offset: (b), new_offset: (b) output: idx: (m, nsample), dist2: (m, nsample) """ if new_xyz is None: new_xyz = xyz assert xyz.is_contiguous() and new_xyz.is_contiguous() m = new_xyz.shape[0] idx = torch.cuda.IntTensor(m, nsample).zero_() dist2 = torch.cuda.FloatTensor(m, nsample).zero_() pointops_cuda.knnquery_cuda(m, nsample, xyz, new_xyz, offset, new_offset, idx, dist2) return idx, torch.sqrt(dist2) knnquery = KNNQuery.apply class Grouping(Function): @staticmethod def forward(ctx, input, idx): """ input: input: (n, c), idx : (m, nsample) output: (m, nsample, c) """ assert input.is_contiguous() and idx.is_contiguous() m, nsample, n, c = idx.shape[0], idx.shape[1], input.shape[0], input.shape[1] output = torch.cuda.FloatTensor(m, nsample, c) pointops_cuda.grouping_forward_cuda(m, nsample, c, input, idx, output) ctx.n = n ctx.save_for_backward(idx) return output @staticmethod def backward(ctx, grad_output): """ input: grad_out: (m, c, nsample) output: (n, c), None """ n = ctx.n idx, = ctx.saved_tensors m, nsample, c = grad_output.shape grad_input = torch.cuda.FloatTensor(n, c).zero_() pointops_cuda.grouping_backward_cuda(m, nsample, c, grad_output, idx, grad_input) return grad_input, None grouping = Grouping.apply def queryandgroup(nsample, xyz, new_xyz, feat, idx, offset, new_offset, use_xyz=True): """ input: xyz: (n, 3), new_xyz: (m, 3), feat: (n, c), idx: (m, nsample), offset: (b), new_offset: (b) output: new_feat: (m, c+3, nsample), grouped_idx: (m, nsample) """ assert xyz.is_contiguous() and new_xyz.is_contiguous() and feat.is_contiguous() if new_xyz is None: new_xyz = xyz if idx is None: idx, _ = knnquery(nsample, xyz, new_xyz, offset, new_offset) # (m, nsample) n, m, c = xyz.shape[0], new_xyz.shape[0], feat.shape[1] grouped_xyz = xyz[idx.view(-1).long(), :].view(m, nsample, 3) # (m, nsample, 3) # grouped_xyz = grouping(xyz, idx) # (m, nsample, 3) grouped_xyz -= new_xyz.unsqueeze(1) # (m, nsample, 3) grouped_feat = feat[idx.view(-1).long(), :].view(m, nsample, c) # (m, nsample, c) # grouped_feat = grouping(feat, idx) # (m, nsample, c) if use_xyz: return torch.cat((grouped_xyz, grouped_feat), -1) # (m, nsample, 3+c) else: return grouped_feat class Subtraction(Function): @staticmethod def forward(ctx, input1, input2, idx): """ input: input1: (n, c), input2: (n, c), idx: (n, nsample) output: (n, nsample, c) """ assert input1.is_contiguous() and input2.is_contiguous() n, c = input1.shape; nsample = idx.shape[-1] output = torch.cuda.FloatTensor(n, nsample, c).zero_() pointops_cuda.subtraction_forward_cuda(n, nsample, c, input1, input2, idx, output) ctx.save_for_backward(idx) return output @staticmethod def backward(ctx, grad_output): """ input: grad_out: (n, nsample, c) output: grad_input1: (n, c), grad_input2: (n, c) """ idx, = ctx.saved_tensors n, nsample, c = grad_output.shape grad_input1 = torch.cuda.FloatTensor(n, c).zero_() grad_input2 = torch.cuda.FloatTensor(n, c).zero_() pointops_cuda.subtraction_backward_cuda(n, nsample, c, idx, grad_output, grad_input1, grad_input2) return grad_input1, grad_input2, None subtraction = Subtraction.apply class Aggregation(Function): @staticmethod def forward(ctx, input, position, weight, idx): """ input: input: (n, c), position: (n, nsample, c), weight : (n, nsample, c'), idx: (n, nsample) output: (n, c) """ assert input.is_contiguous() and position.is_contiguous() and weight.is_contiguous() n, nsample, c = position.shape; w_c = weight.shape[-1] output = torch.cuda.FloatTensor(n, c).zero_() pointops_cuda.aggregation_forward_cuda(n, nsample, c, w_c, input, position, weight, idx, output) ctx.save_for_backward(input, position, weight, idx) return output @staticmethod def backward(ctx, grad_output): """ input: grad_out: (n, c) output: grad_input: (n, c), grad_position: (n, nsample, c), grad_weight : (n, nsample, c') """ input, position, weight, idx = ctx.saved_tensors n, nsample, c = position.shape; w_c = weight.shape[-1] grad_input = torch.cuda.FloatTensor(n, c).zero_() grad_position = torch.cuda.FloatTensor(n, nsample, c).zero_() grad_weight = torch.cuda.FloatTensor(n, nsample, w_c).zero_() pointops_cuda.aggregation_backward_cuda(n, nsample, c, w_c, input, position, weight, idx, grad_output, grad_input, grad_position, grad_weight) return grad_input, grad_position, grad_weight, None aggregation = Aggregation.apply def interpolation(xyz, new_xyz, feat, offset, new_offset, k=3): """ input: xyz: (m, 3), new_xyz: (n, 3), feat: (m, c), offset: (b), new_offset: (b) output: (n, c) """ assert xyz.is_contiguous() and new_xyz.is_contiguous() and feat.is_contiguous() idx, dist = knnquery(k, xyz, new_xyz, offset, new_offset) # (n, 3), (n, 3) dist_recip = 1.0 / (dist + 1e-8) # (n, 3) norm = torch.sum(dist_recip, dim=1, keepdim=True) weight = dist_recip / norm # (n, 3) new_feat = torch.cuda.FloatTensor(new_xyz.shape[0], feat.shape[1]).zero_() for i in range(k): new_feat += feat[idx[:, i].long(), :] * weight[:, i].unsqueeze(-1) return new_feat class Interpolation(Function): @staticmethod def forward(ctx, xyz, new_xyz, input, offset, new_offset, k=3): """ input: xyz: (m, 3), new_xyz: (n, 3), input: (m, c), offset: (b), new_offset: (b) output: (n, c) """ assert xyz.is_contiguous() and new_xyz.is_contiguous() and input.is_contiguous() idx, dist = knnquery(k, xyz, new_xyz, offset, new_offset) # (n, k), (n, k) dist_recip = 1.0 / (dist + 1e-8) # (n, k) norm = torch.sum(dist_recip, dim=1, keepdim=True) weight = dist_recip / norm # (n, k) n, c, m = new_xyz.shape[0], input.shape[1], input.shape[0] output = torch.cuda.FloatTensor(n, c).zero_() pointops_cuda.interpolation_forward_cuda(n, c, k, input, idx, weight, output) ctx.m, ctx.k = m, k ctx.save_for_backward(idx, weight) return output @staticmethod def backward(ctx, grad_output): """ input: xyz: (m, 3), new_xyz: (n, 3), input: (m, c), offset: (b), new_offset: (b) output: (n, c) """ m, k = ctx.m, ctx.k idx, weight = ctx.saved_tensors n, c = grad_output.shape grad_input = torch.cuda.FloatTensor(m, c).zero_() pointops_cuda.interpolation_backward_cuda(n, c, k, grad_output, idx, weight, grad_input) return None, None, grad_input, None, None, None interpolation2 = Interpolation.apply ================================================ FILE: segmentation/modules/pointops/setup.py ================================================ #python3 setup.py install from setuptools import setup from torch.utils.cpp_extension import BuildExtension, CUDAExtension import os from distutils.sysconfig import get_config_vars (opt,) = get_config_vars('OPT') os.environ['OPT'] = " ".join( flag for flag in opt.split() if flag != '-Wstrict-prototypes' ) setup( name='pointops_cuda', author='Hengshuang Zhao', ext_modules=[ CUDAExtension('pointops_cuda', [ 'src/pointops_api.cpp', 'src/knnquery/knnquery_cuda.cpp', 'src/knnquery/knnquery_cuda_kernel.cu', 'src/sampling/sampling_cuda.cpp', 'src/sampling/sampling_cuda_kernel.cu', 'src/grouping/grouping_cuda.cpp', 'src/grouping/grouping_cuda_kernel.cu', 'src/interpolation/interpolation_cuda.cpp', 'src/interpolation/interpolation_cuda_kernel.cu', 'src/subtraction/subtraction_cuda.cpp', 'src/subtraction/subtraction_cuda_kernel.cu', 'src/aggregation/aggregation_cuda.cpp', 'src/aggregation/aggregation_cuda_kernel.cu', ], extra_compile_args={'cxx': ['-g'], 'nvcc': ['-O2']} ) ], cmdclass={'build_ext': BuildExtension} ) ================================================ FILE: segmentation/modules/pointops/src/__init__.py ================================================ ================================================ FILE: segmentation/modules/pointops/src/aggregation/aggregation_cuda.cpp ================================================ #include #include #include #include #include "aggregation_cuda_kernel.h" void aggregation_forward_cuda(int n, int nsample, int c, int w_c, at::Tensor input_tensor, at::Tensor position_tensor, at::Tensor weight_tensor, at::Tensor idx_tensor, at::Tensor output_tensor) { const float *input = input_tensor.data_ptr(); const float *position = position_tensor.data_ptr(); const float *weight = weight_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); float *output = output_tensor.data_ptr(); aggregation_forward_cuda_launcher(n, nsample, c, w_c, input, position, weight, idx, output); } void aggregation_backward_cuda(int n, int nsample, int c, int w_c, at::Tensor input_tensor, at::Tensor position_tensor, at::Tensor weight_tensor, at::Tensor idx_tensor, at::Tensor grad_output_tensor, at::Tensor grad_input_tensor, at::Tensor grad_position_tensor, at::Tensor grad_weight_tensor) { const float *input = input_tensor.data_ptr(); const float *position = position_tensor.data_ptr(); const float *weight = weight_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); const float *grad_output = grad_output_tensor.data_ptr(); float *grad_input = grad_input_tensor.data_ptr(); float *grad_position = grad_position_tensor.data_ptr(); float *grad_weight = grad_weight_tensor.data_ptr(); aggregation_backward_cuda_launcher(n, nsample, c, w_c, input, position, weight, idx, grad_output, grad_input, grad_position, grad_weight); } ================================================ FILE: segmentation/modules/pointops/src/aggregation/aggregation_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "aggregation_cuda_kernel.h" __global__ void aggregation_forward_cuda_kernel(int n, int nsample, int c, int w_c, const float *input, const float *position, const float *weight, const int *idx, float *output) { // input: input: (n, c), position: (n, nsample, c), weight: (n, nsample, w_c), idx: (n, nsample), output: (n, c) int index = blockIdx.x * blockDim.x + threadIdx.x; if (index >= n * c) return; const int c_idx = index % c; const int n_idx = index / c; const int w_c_idx = c_idx % w_c; for (int nsample_idx = 0; nsample_idx < nsample; nsample_idx++) { int idx_idx = n_idx * nsample + nsample_idx; int input_idx = idx[idx_idx] * c + c_idx; int position_idx = n_idx * nsample * c + nsample_idx * c + c_idx; int weight_idx = n_idx * nsample * w_c + nsample_idx * w_c + w_c_idx; output[index] += (input[input_idx] + position[position_idx]) * weight[weight_idx]; } } __global__ void aggregation_backward_cuda_kernel(int n, int nsample, int c, int w_c, const float *input, const float *position, const float *weight, const int *idx, const float *grad_output, float *grad_input, float *grad_position, float *grad_weight) { // input: grad_output: (n, c), output: grad_input: (n, c), grad_position: (n, nsample, c), grad_weight: (n, nsample, w_c) int index = blockIdx.x * blockDim.x + threadIdx.x; if (index >= n * c) return; const int c_idx = index % c; const int n_idx = index / c; const int w_c_idx = c_idx % w_c; for (int nsample_idx = 0; nsample_idx < nsample; nsample_idx++) { int idx_idx = n_idx * nsample + nsample_idx; int input_idx = idx[idx_idx] * c + c_idx; int position_idx = n_idx * nsample * c + nsample_idx * c + c_idx; int weight_idx = n_idx * nsample * w_c + nsample_idx * w_c + w_c_idx; atomicAdd(grad_input + input_idx, grad_output[index] * weight[weight_idx]); grad_position[position_idx] = grad_output[index] * weight[weight_idx]; atomicAdd(grad_weight + weight_idx, grad_output[index] * (input[input_idx] + position[position_idx])); } } void aggregation_forward_cuda_launcher(int n, int nsample, int c, int w_c, const float *input, const float *position, const float *weight, const int *idx, float *output) { // input: input: (n, c), position: (n, nsample, c), weight: (n, nsample, w_c), idx: (n, nsample), output: (n, c) dim3 blocks(DIVUP(n * c, THREADS_PER_BLOCK)); dim3 threads(THREADS_PER_BLOCK); aggregation_forward_cuda_kernel<<>>(n, nsample, c, w_c, input, position, weight, idx, output); } void aggregation_backward_cuda_launcher(int n, int nsample, int c, int w_c, const float *input, const float *position, const float *weight, const int *idx, const float *grad_output, float *grad_input, float *grad_position, float *grad_weight) { // input: grad_output: (n, c), output: grad_input: (n, c), grad_position: (n, nsample, c), grad_weight: (n, nsample, w_c) dim3 blocks(DIVUP(n * c, THREADS_PER_BLOCK)); dim3 threads(THREADS_PER_BLOCK); aggregation_backward_cuda_kernel<<>>(n, nsample, c, w_c, input, position, weight, idx, grad_output, grad_input, grad_position, grad_weight); } ================================================ FILE: segmentation/modules/pointops/src/aggregation/aggregation_cuda_kernel.h ================================================ #ifndef _AGGREGATION_CUDA_KERNEL #define _AGGREGATION_CUDA_KERNEL #include #include #include void aggregation_forward_cuda(int n, int nsample, int c, int w_c, at::Tensor input_tensor, at::Tensor position_tensor, at::Tensor weight_tensor, at::Tensor idx_tensor, at::Tensor output_tensor); void aggregation_backward_cuda(int n, int nsample, int c, int w_c, at::Tensor input_tensor, at::Tensor position_tensor, at::Tensor weight_tensor, at::Tensor idx_tensor, at::Tensor grad_output_tensor, at::Tensor grad_input_tensor, at::Tensor grad_position_tensor, at::Tensor grad_weight_tensor); #ifdef __cplusplus extern "C" { #endif void aggregation_forward_cuda_launcher(int n, int nsample, int c, int w_c, const float *input, const float *position, const float *weight, const int *idx, float *output); void aggregation_backward_cuda_launcher(int n, int nsample, int c, int w_c, const float *input, const float *position, const float *weight, const int *idx, const float *grad_output, float *grad_input, float *grad_position, float *grad_weight); #ifdef __cplusplus } #endif #endif ================================================ FILE: segmentation/modules/pointops/src/cuda_utils.h ================================================ #ifndef _CUDA_UTILS_H #define _CUDA_UTILS_H #include #include #define TOTAL_THREADS 1024 #define THREADS_PER_BLOCK 256 #define DIVUP(m, n) ((m) / (n) + ((m) % (n) > 0)) inline int opt_n_threads(int work_size) { const int pow_2 = std::log(static_cast(work_size)) / std::log(2.0); return std::max(std::min(1 << pow_2, TOTAL_THREADS), 1); } inline dim3 opt_block_config(int x, int y) { const int x_threads = opt_n_threads(x); const int y_threads = std::max(std::min(opt_n_threads(y), TOTAL_THREADS / x_threads), 1); dim3 block_config(x_threads, y_threads, 1); return block_config; } #endif ================================================ FILE: segmentation/modules/pointops/src/grouping/grouping_cuda.cpp ================================================ #include #include #include #include #include "grouping_cuda_kernel.h" void grouping_forward_cuda(int m, int nsample, int c, at::Tensor input_tensor, at::Tensor idx_tensor, at::Tensor output_tensor) { const float *input = input_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); float *output = output_tensor.data_ptr(); grouping_forward_cuda_launcher(m, nsample, c, input, idx, output); } void grouping_backward_cuda(int m, int nsample, int c, at::Tensor grad_output_tensor, at::Tensor idx_tensor, at::Tensor grad_input_tensor) { const float *grad_output = grad_output_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); float *grad_input = grad_input_tensor.data_ptr(); grouping_backward_cuda_launcher(m, nsample, c, grad_output, idx, grad_input); } ================================================ FILE: segmentation/modules/pointops/src/grouping/grouping_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "grouping_cuda_kernel.h" __global__ void grouping_forward_cuda_kernel(int m, int nsample, int c, const float *__restrict__ input, const int *__restrict__ idx, float *__restrict__ output) { // input: input: (n, c), idx: (m, nsample), output: (m, nsample, c) int index = blockIdx.x * blockDim.x + threadIdx.x; if (index >= m * nsample * c) return; const int c_idx = index % c; const int nsample_idx = (index / c) % nsample; const int m_idx = index / nsample / c; const int input_idx = idx[m_idx * nsample + nsample_idx] * c + c_idx; output[index] = input[input_idx]; } __global__ void grouping_backward_cuda_kernel(int m, int nsample, int c, const float *__restrict__ grad_output, const int *__restrict__ idx, float *__restrict__ grad_input) { // input: grad_output: (m, nsample, c), idx: (m, nsample), output: grad_input: (n, c) int index = blockIdx.x * blockDim.x + threadIdx.x; if (index >= m * nsample * c) return; const int c_idx = index % c; const int nsample_idx = (index / c) % nsample; const int m_idx = index / nsample / c; const int input_idx = idx[m_idx * nsample + nsample_idx] * c + c_idx; atomicAdd(grad_input + input_idx, grad_output[index]); } void grouping_forward_cuda_launcher(int m, int nsample, int c, const float *input, const int *idx, float *output) { // input: input: (n, c), idx: (m, nsample), output: (m, nsample, c) dim3 blocks(DIVUP(m * nsample * c, THREADS_PER_BLOCK)); dim3 threads(THREADS_PER_BLOCK); grouping_forward_cuda_kernel<<>>(m, nsample, c, input, idx, output); } void grouping_backward_cuda_launcher(int m, int nsample, int c, const float *grad_output, const int *idx, float *grad_input) { // input: grad_output: (m, nsample, c), idx: (m, nsample), output: grad_input: (n, c) dim3 blocks(DIVUP(m * nsample * c, THREADS_PER_BLOCK)); dim3 threads(THREADS_PER_BLOCK); grouping_backward_cuda_kernel<<>>(m, nsample, c, grad_output, idx, grad_input); } ================================================ FILE: segmentation/modules/pointops/src/grouping/grouping_cuda_kernel.h ================================================ #ifndef _GROUPING_CUDA_KERNEL #define _GROUPING_CUDA_KERNEL #include #include #include void grouping_forward_cuda(int m, int nsample, int c, at::Tensor input_tensor, at::Tensor idx_tensor, at::Tensor output_tensor); void grouping_backward_cuda(int m, int nsample, int c, at::Tensor grad_output_tensor, at::Tensor idx_tensor, at::Tensor grad_input_tensor); #ifdef __cplusplus extern "C" { #endif void grouping_forward_cuda_launcher(int m, int nsample, int c, const float *input, const int *idx, float *output); void grouping_backward_cuda_launcher(int m, int nsample, int c, const float *grad_output, const int *idx, float *grad_input); #ifdef __cplusplus } #endif #endif ================================================ FILE: segmentation/modules/pointops/src/interpolation/interpolation_cuda.cpp ================================================ #include #include #include #include #include "interpolation_cuda_kernel.h" void interpolation_forward_cuda(int n, int c, int k, at::Tensor input_tensor, at::Tensor idx_tensor, at::Tensor weight_tensor, at::Tensor output_tensor) { const float *input = input_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); const float *weight = weight_tensor.data_ptr(); float *output = output_tensor.data_ptr(); interpolation_forward_cuda_launcher(n, c, k, input, idx, weight, output); } void interpolation_backward_cuda(int n, int c, int k, at::Tensor grad_output_tensor, at::Tensor idx_tensor, at::Tensor weight_tensor, at::Tensor grad_input_tensor) { const float *grad_output = grad_output_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); const float *weight = weight_tensor.data_ptr(); float *grad_input = grad_input_tensor.data_ptr(); interpolation_backward_cuda_launcher(n, c, k, grad_output, idx, weight, grad_input); } ================================================ FILE: segmentation/modules/pointops/src/interpolation/interpolation_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "interpolation_cuda_kernel.h" __global__ void interpolation_forward_cuda_kernel(int n, int c, int k, const float *input, const int *idx, const float *weight, float *output) { // input: input: (m, c), idx: (n, k), weight: (n, k), output: output (n, c) int index = blockIdx.x * blockDim.x + threadIdx.x; if (index >= n * c) return; int c_idx = index % c; int n_idx = index / c; for (int i = 0; i < k; i++) { int idx_idx = n_idx * k + i; int input_idx = idx[idx_idx] * c + c_idx; output[index] += input[input_idx] * weight[idx_idx]; } } __global__ void interpolation_backward_cuda_kernel(int n, int c, int k, const float *grad_output, const int *idx, const float *weight, float *grad_input) { // input: grad_output: (n, c), idx: (n, k), weight: (n, k), output: grad_input (m, c) int index = blockIdx.x * blockDim.x + threadIdx.x; if (index >= n * c) return; int c_idx = index % c; int n_idx = index / c; for (int i = 0; i < k; i++) { int idx_idx = n_idx * k + i; int input_idx = idx[idx_idx] * c + c_idx; atomicAdd(grad_input + input_idx, grad_output[index] * weight[idx_idx]); } } void interpolation_forward_cuda_launcher(int n, int c, int k, const float *input, const int *idx, const float *weight, float *output) { // input: input: (m, c), idx: (n, k), weight: (n, k), output: output (n, c) dim3 blocks(DIVUP(n * c, THREADS_PER_BLOCK)); dim3 threads(THREADS_PER_BLOCK); interpolation_forward_cuda_kernel<<>>(n, c, k, input, idx, weight, output); } void interpolation_backward_cuda_launcher(int n, int c, int k, const float *grad_output, const int *idx, const float *weight, float *grad_input) { // input: grad_output: (n, c), idx: (n, k), weight: (n, k), output: grad_input (m, c) dim3 blocks(DIVUP(n * c, THREADS_PER_BLOCK)); dim3 threads(THREADS_PER_BLOCK); interpolation_backward_cuda_kernel<<>>(n, c, k, grad_output, idx, weight, grad_input); } ================================================ FILE: segmentation/modules/pointops/src/interpolation/interpolation_cuda_kernel.h ================================================ #ifndef _INTERPOLATION_CUDA_KERNEL #define _INTERPOLATION_CUDA_KERNEL #include #include #include void interpolation_forward_cuda(int n, int c, int k, at::Tensor input_tensor, at::Tensor idx_tensor, at::Tensor weight_tensor, at::Tensor output_tensor); void interpolation_backward_cuda(int n, int c, int k, at::Tensor grad_output_tensor, at::Tensor idx_tensor, at::Tensor weight_tensor, at::Tensor grad_input_tensor); #ifdef __cplusplus extern "C" { #endif void interpolation_forward_cuda_launcher(int n, int c, int k, const float *input, const int *idx, const float *weight, float *output); void interpolation_backward_cuda_launcher(int n, int c, int k, const float *grad_output, const int *idx, const float *weight, float *grad_input); #ifdef __cplusplus } #endif #endif ================================================ FILE: segmentation/modules/pointops/src/knnquery/knnquery_cuda.cpp ================================================ #include #include #include #include #include "knnquery_cuda_kernel.h" void knnquery_cuda(int m, int nsample, at::Tensor xyz_tensor, at::Tensor new_xyz_tensor, at::Tensor offset_tensor, at::Tensor new_offset_tensor, at::Tensor idx_tensor, at::Tensor dist2_tensor) { const float *xyz = xyz_tensor.data_ptr(); const float *new_xyz = new_xyz_tensor.data_ptr(); const int *offset = offset_tensor.data_ptr(); const int *new_offset = new_offset_tensor.data_ptr(); int *idx = idx_tensor.data_ptr(); float *dist2 = dist2_tensor.data_ptr(); knnquery_cuda_launcher(m, nsample, xyz, new_xyz, offset, new_offset, idx, dist2); } ================================================ FILE: segmentation/modules/pointops/src/knnquery/knnquery_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "knnquery_cuda_kernel.h" __device__ void swap_float(float *x, float *y) { float tmp = *x; *x = *y; *y = tmp; } __device__ void swap_int(int *x, int *y) { int tmp = *x; *x = *y; *y = tmp; } __device__ void reheap(float *dist, int *idx, int k) { int root = 0; int child = root * 2 + 1; while (child < k) { if(child + 1 < k && dist[child+1] > dist[child]) child++; if(dist[root] > dist[child]) return; swap_float(&dist[root], &dist[child]); swap_int(&idx[root], &idx[child]); root = child; child = root * 2 + 1; } } __device__ void heap_sort(float *dist, int *idx, int k) { int i; for (i = k - 1; i > 0; i--) { swap_float(&dist[0], &dist[i]); swap_int(&idx[0], &idx[i]); reheap(dist, idx, i); } } __device__ int get_bt_idx(int idx, const int *offset) { int i = 0; while (1) { if (idx < offset[i]) break; else i++; } return i; } __global__ void knnquery_cuda_kernel(int m, int nsample, const float *__restrict__ xyz, const float *__restrict__ new_xyz, const int *__restrict__ offset, const int *__restrict__ new_offset, int *__restrict__ idx, float *__restrict__ dist2) { // input: xyz (n, 3) new_xyz (m, 3) // output: idx (m, nsample) dist2 (m, nsample) int pt_idx = blockIdx.x * blockDim.x + threadIdx.x; if (pt_idx >= m) return; new_xyz += pt_idx * 3; idx += pt_idx * nsample; dist2 += pt_idx * nsample; int bt_idx = get_bt_idx(pt_idx, new_offset); int start; if (bt_idx == 0) start = 0; else start = offset[bt_idx - 1]; int end = offset[bt_idx]; float new_x = new_xyz[0]; float new_y = new_xyz[1]; float new_z = new_xyz[2]; float best_dist[100]; int best_idx[100]; for(int i = 0; i < nsample; i++){ best_dist[i] = 1e10; best_idx[i] = start; } for(int i = start; i < end; i++){ float x = xyz[i * 3 + 0]; float y = xyz[i * 3 + 1]; float z = xyz[i * 3 + 2]; float d2 = (new_x - x) * (new_x - x) + (new_y - y) * (new_y - y) + (new_z - z) * (new_z - z); if (d2 < best_dist[0]){ best_dist[0] = d2; best_idx[0] = i; reheap(best_dist, best_idx, nsample); } } heap_sort(best_dist, best_idx, nsample); for(int i = 0; i < nsample; i++){ idx[i] = best_idx[i]; dist2[i] = best_dist[i]; } } void knnquery_cuda_launcher(int m, int nsample, const float *xyz, const float *new_xyz, const int *offset, const int *new_offset, int *idx, float *dist2) { // input: new_xyz: (m, 3), xyz: (n, 3), idx: (m, nsample) dim3 blocks(DIVUP(m, THREADS_PER_BLOCK)); dim3 threads(THREADS_PER_BLOCK); knnquery_cuda_kernel<<>>(m, nsample, xyz, new_xyz, offset, new_offset, idx, dist2); } ================================================ FILE: segmentation/modules/pointops/src/knnquery/knnquery_cuda_kernel.h ================================================ #ifndef _KNNQUERY_CUDA_KERNEL #define _KNNQUERY_CUDA_KERNEL #include #include #include void knnquery_cuda(int m, int nsample, at::Tensor xyz_tensor, at::Tensor new_xyz_tensor, at::Tensor offset_tensor, at::Tensor new_offset_tensor, at::Tensor idx_tensor, at::Tensor dist2_tensor); #ifdef __cplusplus extern "C" { #endif void knnquery_cuda_launcher(int m, int nsample, const float *xyz, const float *new_xyz, const int *offset, const int *new_offset, int *idx, float *dist2); #ifdef __cplusplus } #endif #endif ================================================ FILE: segmentation/modules/pointops/src/pointops_api.cpp ================================================ #include #include #include "knnquery/knnquery_cuda_kernel.h" #include "sampling/sampling_cuda_kernel.h" #include "grouping/grouping_cuda_kernel.h" #include "interpolation/interpolation_cuda_kernel.h" #include "aggregation/aggregation_cuda_kernel.h" #include "subtraction/subtraction_cuda_kernel.h" PYBIND11_MODULE(TORCH_EXTENSION_NAME, m) { m.def("knnquery_cuda", &knnquery_cuda, "knnquery_cuda"); m.def("furthestsampling_cuda", &furthestsampling_cuda, "furthestsampling_cuda"); m.def("grouping_forward_cuda", &grouping_forward_cuda, "grouping_forward_cuda"); m.def("grouping_backward_cuda", &grouping_backward_cuda, "grouping_backward_cuda"); m.def("interpolation_forward_cuda", &interpolation_forward_cuda, "interpolation_forward_cuda"); m.def("interpolation_backward_cuda", &interpolation_backward_cuda, "interpolation_backward_cuda"); m.def("subtraction_forward_cuda", &subtraction_forward_cuda, "subtraction_forward_cuda"); m.def("subtraction_backward_cuda", &subtraction_backward_cuda, "subtraction_backward_cuda"); m.def("aggregation_forward_cuda", &aggregation_forward_cuda, "aggregation_forward_cuda"); m.def("aggregation_backward_cuda", &aggregation_backward_cuda, "aggregation_backward_cuda"); } ================================================ FILE: segmentation/modules/pointops/src/sampling/sampling_cuda.cpp ================================================ #include #include #include #include #include "sampling_cuda_kernel.h" void furthestsampling_cuda(int b, int n, at::Tensor xyz_tensor, at::Tensor offset_tensor, at::Tensor new_offset_tensor, at::Tensor tmp_tensor, at::Tensor idx_tensor) { const float *xyz = xyz_tensor.data_ptr(); const int *offset = offset_tensor.data_ptr(); const int *new_offset = new_offset_tensor.data_ptr(); float *tmp = tmp_tensor.data_ptr(); int *idx = idx_tensor.data_ptr(); furthestsampling_cuda_launcher(b, n, xyz, offset, new_offset, tmp, idx); } ================================================ FILE: segmentation/modules/pointops/src/sampling/sampling_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "sampling_cuda_kernel.h" __device__ void __update(float *dists, int *dists_i, int idx1, int idx2) { const float v1 = dists[idx1], v2 = dists[idx2]; const int i1 = dists_i[idx1], i2 = dists_i[idx2]; dists[idx1] = max(v1, v2); dists_i[idx1] = v2 > v1 ? i2 : i1; } // input xyz: (n, 3), tmp: (b, n_max) // ouput idx (m) template __global__ void furthestsampling_cuda_kernel(const float *xyz, const int *offset, const int *new_offset, float *tmp, int *idx) { __shared__ float dists[block_size]; __shared__ int dists_i[block_size]; int bid = blockIdx.x; int start_n, end_n, start_m, end_m, old; if (bid == 0) { start_n = 0; end_n = offset[0]; start_m = 0; end_m = new_offset[0]; old = 0; } else { start_n = offset[bid - 1]; end_n = offset[bid]; start_m = new_offset[bid - 1]; end_m = new_offset[bid]; old = offset[bid - 1]; } const int stride = block_size; int tid = threadIdx.x; if (tid == 0) idx[start_m] = start_n; __syncthreads(); for (int j = start_m + 1; j < end_m; j++) { int besti = start_n; float best = -1; float x1 = xyz[old * 3 + 0]; float y1 = xyz[old * 3 + 1]; float z1 = xyz[old * 3 + 2]; for (int k = start_n + tid; k < end_n; k += stride) { float x2 = xyz[k * 3 + 0]; float y2 = xyz[k * 3 + 1]; float z2 = xyz[k * 3 + 2]; float d = (x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1) + (z2 - z1) * (z2 - z1); float d2 = min(d, tmp[k]); tmp[k] = d2; besti = d2 > best ? k : besti; best = d2 > best ? d2 : best; } dists[tid] = best; dists_i[tid] = besti; __syncthreads(); if (block_size >= 1024) { if (tid < 512) { __update(dists, dists_i, tid, tid + 512); } __syncthreads(); } if (block_size >= 512) { if (tid < 256) { __update(dists, dists_i, tid, tid + 256); } __syncthreads(); } if (block_size >= 256) { if (tid < 128) { __update(dists, dists_i, tid, tid + 128); } __syncthreads(); } if (block_size >= 128) { if (tid < 64) { __update(dists, dists_i, tid, tid + 64); } __syncthreads(); } if (block_size >= 64) { if (tid < 32) { __update(dists, dists_i, tid, tid + 32); } __syncthreads(); } if (block_size >= 32) { if (tid < 16) { __update(dists, dists_i, tid, tid + 16); } __syncthreads(); } if (block_size >= 16) { if (tid < 8) { __update(dists, dists_i, tid, tid + 8); } __syncthreads(); } if (block_size >= 8) { if (tid < 4) { __update(dists, dists_i, tid, tid + 4); } __syncthreads(); } if (block_size >= 4) { if (tid < 2) { __update(dists, dists_i, tid, tid + 2); } __syncthreads(); } if (block_size >= 2) { if (tid < 1) { __update(dists, dists_i, tid, tid + 1); } __syncthreads(); } old = dists_i[0]; if (tid == 0) idx[j] = old; } } void furthestsampling_cuda_launcher(int b, int n, const float *xyz, const int *offset, const int *new_offset, float *tmp, int *idx) { unsigned int n_threads = opt_n_threads(n); switch (n_threads) { case 1024: furthestsampling_cuda_kernel<1024><<>>(xyz, offset, new_offset, tmp, idx); break; case 512: furthestsampling_cuda_kernel<512><<>>(xyz, offset, new_offset, tmp, idx); break; case 256: furthestsampling_cuda_kernel<256><<>>(xyz, offset, new_offset, tmp, idx); break; case 128: furthestsampling_cuda_kernel<128><<>>(xyz, offset, new_offset, tmp, idx); break; case 64: furthestsampling_cuda_kernel<64><<>>(xyz, offset, new_offset, tmp, idx); break; case 32: furthestsampling_cuda_kernel<32><<>>(xyz, offset, new_offset, tmp, idx); break; case 16: furthestsampling_cuda_kernel<16><<>>(xyz, offset, new_offset, tmp, idx); break; case 8: furthestsampling_cuda_kernel<8><<>>(xyz, offset, new_offset, tmp, idx); break; case 4: furthestsampling_cuda_kernel<4><<>>(xyz, offset, new_offset, tmp, idx); break; case 2: furthestsampling_cuda_kernel<2><<>>(xyz, offset, new_offset, tmp, idx); break; case 1: furthestsampling_cuda_kernel<1><<>>(xyz, offset, new_offset, tmp, idx); break; default: furthestsampling_cuda_kernel<512><<>>(xyz, offset, new_offset, tmp, idx); } } ================================================ FILE: segmentation/modules/pointops/src/sampling/sampling_cuda_kernel.h ================================================ #ifndef _SAMPLING_CUDA_KERNEL #define _SAMPLING_CUDA_KERNEL #include #include #include void furthestsampling_cuda(int b, int n, at::Tensor xyz_tensor, at::Tensor offset_tensor, at::Tensor new_offset_tensor, at::Tensor tmp_tensor, at::Tensor idx_tensor); #ifdef __cplusplus extern "C" { #endif void furthestsampling_cuda_launcher(int b, int n, const float *xyz, const int *offset, const int *new_offset, float *tmp, int *idx); #ifdef __cplusplus } #endif #endif ================================================ FILE: segmentation/modules/pointops/src/subtraction/subtraction_cuda.cpp ================================================ #include #include #include #include #include "subtraction_cuda_kernel.h" void subtraction_forward_cuda(int n, int nsample, int c, at::Tensor input1_tensor, at::Tensor input2_tensor, at::Tensor idx_tensor, at::Tensor output_tensor) { const float *input1 = input1_tensor.data_ptr(); const float *input2 = input2_tensor.data_ptr(); const int *idx = idx_tensor.data_ptr(); float *output = output_tensor.data_ptr(); subtraction_forward_cuda_launcher(n, nsample, c, input1, input2, idx, output); } void subtraction_backward_cuda(int n, int nsample, int c, at::Tensor idx_tensor, at::Tensor grad_output_tensor, at::Tensor grad_input1_tensor, at::Tensor grad_input2_tensor) { const int *idx = idx_tensor.data_ptr(); const float *grad_output = grad_output_tensor.data_ptr(); float *grad_input1 = grad_input1_tensor.data_ptr(); float *grad_input2 = grad_input2_tensor.data_ptr(); subtraction_backward_cuda_launcher(n, nsample, c, idx, grad_output, grad_input1, grad_input2); } ================================================ FILE: segmentation/modules/pointops/src/subtraction/subtraction_cuda_kernel.cu ================================================ #include "../cuda_utils.h" #include "subtraction_cuda_kernel.h" __global__ void subtraction_forward_cuda_kernel(int n, int nsample, int c, const float *input1, const float *input2, const int *idx, float *output) { // input: input1: (n, c), input2: (n, c), idx: (n, nsample), output: (n, nsample, c) int index = blockIdx.x * blockDim.x + threadIdx.x; if (index >= n * nsample * c) return; const int c_idx = index % c; const int nsample_idx = (index / c) % nsample; const int n_idx = index / nsample / c; const int idx_idx = n_idx * nsample + nsample_idx; const int input1_idx = n_idx * c + c_idx; const int input2_idx = idx[idx_idx] * c + c_idx; output[index] = input1[input1_idx] - input2[input2_idx]; } __global__ void subtraction_backward_cuda_kernel(int n, int nsample, int c, const int *idx, const float *grad_output, float *grad_input1, float *grad_input2) { // input: grad_output: (n, nsample, c), output: grad_input1: (n, c), grad_input2: (n, c) int index = blockIdx.x * blockDim.x + threadIdx.x; if (index >= n * nsample * c) return; const int c_idx = index % c; const int nsample_idx = (index / c) % nsample; const int n_idx = index / nsample / c; const int idx_idx = n_idx * nsample + nsample_idx; const int input1_idx = n_idx * c + c_idx; const int input2_idx = idx[idx_idx] * c + c_idx; atomicAdd(grad_input1 + input1_idx, grad_output[index]); atomicAdd(grad_input2 + input2_idx, -grad_output[index]); } void subtraction_forward_cuda_launcher(int n, int nsample, int c, const float *input1, const float *input2, const int *idx, float *output) { // input: input1: (n, c), input2: (n, c), idx: (n, nsample), output: (n, nsample, c) dim3 blocks(DIVUP(n * nsample * c, THREADS_PER_BLOCK)); dim3 threads(THREADS_PER_BLOCK); subtraction_forward_cuda_kernel<<>>(n, nsample, c, input1, input2, idx, output); } void subtraction_backward_cuda_launcher(int n, int nsample, int c, const int *idx, const float *grad_output, float *grad_input1, float *grad_input2) { // input: grad_output: (n, nsample, c), output: grad_input1: (n, c), grad_input2: (n, c) dim3 blocks(DIVUP(n * nsample * c, THREADS_PER_BLOCK)); dim3 threads(THREADS_PER_BLOCK); subtraction_backward_cuda_kernel<<>>(n, nsample, c, idx, grad_output, grad_input1, grad_input2); } ================================================ FILE: segmentation/modules/pointops/src/subtraction/subtraction_cuda_kernel.h ================================================ #ifndef _SUBTRACTION_CUDA_KERNEL #define _SUBTRACTION_CUDA_KERNEL #include #include #include void subtraction_forward_cuda(int n, int nsample, int c, at::Tensor input1_tensor, at::Tensor input2_tensor, at::Tensor idx_tensor, at::Tensor output_tensor); void subtraction_backward_cuda(int n, int nsample, int c, at::Tensor idx_tensor, at::Tensor grad_output_tensor, at::Tensor grad_input1_tensor, at::Tensor grad_input2_tensor); #ifdef __cplusplus extern "C" { #endif void subtraction_forward_cuda_launcher(int n, int nsample, int c, const float *input1, const float *input2, const int *idx, float *output); void subtraction_backward_cuda_launcher(int n, int nsample, int c, const int *idx, const float *grad_output, float *grad_input1, float *grad_input2); #ifdef __cplusplus } #endif #endif ================================================ FILE: segmentation/modules/pointtransformer_utils.py ================================================ import torch import torch.nn as nn from modules.pointops.functions import pointops class PointTransformerLayer(nn.Module): def __init__(self, in_planes, out_planes, share_planes=8, nsample=16): super().__init__() self.mid_planes = mid_planes = out_planes // 1 self.out_planes = out_planes self.share_planes = share_planes self.nsample = nsample self.linear_q = nn.Linear(in_planes, mid_planes) self.linear_k = nn.Linear(in_planes, mid_planes) self.linear_v = nn.Linear(in_planes, out_planes) self.linear_p = nn.Sequential(nn.Linear(3, 3), nn.BatchNorm1d(3), nn.ReLU(inplace=True), nn.Linear(3, out_planes)) self.linear_w = nn.Sequential(nn.BatchNorm1d(mid_planes), nn.ReLU(inplace=True), nn.Linear(mid_planes, mid_planes // share_planes), nn.BatchNorm1d(mid_planes // share_planes), nn.ReLU(inplace=True), nn.Linear(out_planes // share_planes, out_planes // share_planes)) self.softmax = nn.Softmax(dim=1) def forward(self, pxo) -> torch.Tensor: p, x, o = pxo # (n, 3), (n, c), (b) x_q, x_k, x_v = self.linear_q(x), self.linear_k(x), self.linear_v(x) # (n, c) x_k = pointops.queryandgroup(self.nsample, p, p, x_k, None, o, o, use_xyz=True) # (n, nsample, 3+c) x_v = pointops.queryandgroup(self.nsample, p, p, x_v, None, o, o, use_xyz=False) # (n, nsample, c) p_r, x_k = x_k[:, :, 0:3], x_k[:, :, 3:] for i, layer in enumerate(self.linear_p): # (n, nsample, c) p_r = layer(p_r.transpose(1, 2).contiguous()).transpose(1, 2).contiguous() if i == 1 else layer(p_r) w = x_k - x_q.unsqueeze(1) + p_r.view(p_r.shape[0], p_r.shape[1], self.out_planes // self.mid_planes, self.mid_planes).sum(2) # (n, nsample, c) for i, layer in enumerate(self.linear_w): w = layer(w.transpose(1, 2).contiguous()).transpose(1, 2).contiguous() if i % 3 == 0 else layer(w) w = self.softmax(w) # (n, nsample, c) n, nsample, c = x_v.shape s = self.share_planes x = ((x_v + p_r).view(n, nsample, s, c // s) * w.unsqueeze(2)).sum(1).view(n, c) return x class TransitionDown(nn.Module): def __init__(self, in_planes, out_planes, stride=1, nsample=16, num_sector=1): super().__init__() self.stride, self.nsample, self.num_sector = stride, nsample, num_sector if stride != 1: self.linear = nn.Linear(3 + in_planes, out_planes, bias=False) self.pool = nn.MaxPool1d(nsample) else: self.linear = nn.Linear(in_planes, out_planes, bias=False) self.bn = nn.BatchNorm1d(out_planes) self.relu = nn.ReLU(inplace=True) def forward(self, pxo): p, x, o = pxo # (n, 3), (n, c), (b) if self.stride != 1: n_o, count = [o[0].item() // self.stride], o[0].item() // self.stride for i in range(1, o.shape[0]): count += (o[i].item() - o[i - 1].item()) // self.stride n_o.append(count) n_o = torch.cuda.IntTensor(n_o) if self.num_sector > 1 and self.training: idx = pointops.sectorized_fps(p, o, n_o, self.num_sector) # [M] else: idx = pointops.furthestsampling(p, o, n_o) # [M] n_p = p[idx.long(), :] # (m, 3) x = pointops.queryandgroup(self.nsample, p, n_p, x, None, o, n_o, use_xyz=True) # (m, 3+c, nsample) x = self.relu(self.bn(self.linear(x).transpose(1, 2).contiguous())) # (m, c, nsample) x = self.pool(x).squeeze(-1) # (m, c) p, o = n_p, n_o else: x = self.relu(self.bn(self.linear(x))) # (n, c) return [p, x, o] class TransitionUp(nn.Module): def __init__(self, in_planes, out_planes=None): super().__init__() if out_planes is None: self.linear1 = nn.Sequential(nn.Linear(2 * in_planes, in_planes), nn.BatchNorm1d(in_planes), nn.ReLU(inplace=True)) self.linear2 = nn.Sequential(nn.Linear(in_planes, in_planes), nn.ReLU(inplace=True)) else: self.linear1 = nn.Sequential(nn.Linear(out_planes, out_planes), nn.BatchNorm1d(out_planes), nn.ReLU(inplace=True)) self.linear2 = nn.Sequential(nn.Linear(in_planes, out_planes), nn.BatchNorm1d(out_planes), nn.ReLU(inplace=True)) def forward(self, pxo1, pxo2=None): if pxo2 is None: _, x, o = pxo1 # (n, 3), (n, c), (b) x_tmp = [] for i in range(o.shape[0]): if i == 0: s_i, e_i, cnt = 0, o[0], o[0] else: s_i, e_i, cnt = o[i - 1], o[i], o[i] - o[i - 1] x_b = x[s_i:e_i, :] x_b = torch.cat((x_b, self.linear2(x_b.sum(0, True) / cnt).repeat(cnt, 1)), 1) x_tmp.append(x_b) x = torch.cat(x_tmp, 0) x = self.linear1(x) else: p1, x1, o1 = pxo1 p2, x2, o2 = pxo2 x = self.linear1(x1) + pointops.interpolation(p2, p1, self.linear2(x2), o2, o1) return x class PointTransformerBlock(nn.Module): expansion = 1 def __init__(self, in_planes, planes, share_planes=8, nsample=16): super(PointTransformerBlock, self).__init__() self.linear1 = nn.Linear(in_planes, planes, bias=False) self.bn1 = nn.BatchNorm1d(planes) self.transformer2 = PointTransformerLayer(planes, planes, share_planes, nsample) self.bn2 = nn.BatchNorm1d(planes) self.linear3 = nn.Linear(planes, planes * self.expansion, bias=False) self.bn3 = nn.BatchNorm1d(planes * self.expansion) self.relu = nn.ReLU(inplace=True) def forward(self, pxo): p, x, o = pxo # (n, 3), (n, c), (b) identity = x x = self.relu(self.bn1(self.linear1(x))) x = self.relu(self.bn2(self.transformer2([p, x, o]))) x = self.bn3(self.linear3(x)) x += identity x = self.relu(x) return [p, x, o] ================================================ FILE: segmentation/modules/polar_utils.py ================================================ """ Author: Haoxi Ran Date: 06/30/2022 """ import torch import numpy as np def xyz2sphere(xyz, normalize=True): """ Convert XYZ to Spherical Coordinate reference: https://en.wikipedia.org/wiki/Spherical_coordinate_system :param xyz: [N, 3] / [N, G, 3] :return: (rho, theta, phi) [N, 3] / [N, G, 3] """ rho = torch.sqrt(torch.sum(torch.pow(xyz, 2), dim=-1, keepdim=True)) rho = torch.clamp(rho, min=0) # range: [0, inf] theta = torch.acos(xyz[..., 2, None] / rho) # range: [0, pi] phi = torch.atan2(xyz[..., 1, None], xyz[..., 0, None]) # range: [-pi, pi] # check nan idx = rho == 0 theta[idx] = 0 if normalize: theta = theta / np.pi # [0, 1] phi = phi / (2 * np.pi) + .5 # [0, 1] out = torch.cat([rho, theta, phi], dim=-1) return out def xyz2cylind(xyz, normalize=True): """ Convert XYZ to Cylindrical Coordinate reference: https://en.wikipedia.org/wiki/Cylindrical_coordinate_system :param normalize: Normalize phi & z :param xyz: [N, 3] / [N, G, 3] :return: (rho, phi, z) [N, 3] / [N, G, 3] """ rho = torch.sqrt(torch.sum(torch.pow(xyz[..., :2], 2), dim=-1, keepdim=True)) rho = torch.clamp(rho, 0, 1) # range: [0, 1] phi = torch.atan2(xyz[..., 1, None], xyz[..., 0, None]) # range: [-pi, pi] z = xyz[..., 2, None] z = torch.clamp(z, -1, 1) # range: [-1, 1] if normalize: phi = phi / (2 * np.pi) + .5 z = (z + 1.) / 2. out = torch.cat([rho, phi, z], dim=-1) return out ================================================ FILE: segmentation/modules/recons_utils.py ================================================ """ Author: Haoxi Ran Date: 06/30/2022 """ import torch import numpy as np def cal_normal(group_xyz, offset, random_inv=False, is_group=False): """ Calculate Normal Vector (Unit Form + First Term Positive) :param group_xyz: [N, K=3, 3] / [N, G, K=3, 3] """ edge_vec1 = group_xyz[..., 1, :] - group_xyz[..., 0, :] # [N, 3] edge_vec2 = group_xyz[..., 2, :] - group_xyz[..., 0, :] # [N, 3] nor = torch.cross(edge_vec1, edge_vec2, dim=-1) unit_nor = nor / torch.norm(nor, dim=-1, keepdim=True) # [B, N, 3] / [B, N, G, 3] if not is_group: pos_mask = (unit_nor[..., 0] > 0).float() * 2. - 1. # keep x_n positive else: pos_mask = (unit_nor[..., 0:1, 0] > 0).float() * 2. - 1. unit_nor = unit_nor * pos_mask.unsqueeze(-1) # batch-wise random inverse normal vector (prob: 0.5) if random_inv: batch_prob = np.random.rand(offset.shape[0]) < 0.5 random_mask = [] sample_offset = [0] + list(offset.cpu().numpy()) for idx in range(len(sample_offset) - 1): sample_mask = torch.ones((sample_offset[idx+1] - sample_offset[idx], 1), dtype=torch.float32) if not batch_prob[idx]: sample_mask *= -1 random_mask.append(sample_mask) random_mask = torch.cat(random_mask, dim=0).to(unit_nor.device) # random_mask = torch.randint(0, 2, (group_xyz.size(0), 1)).float() * 2. - 1. # random_mask = random_mask.to(unit_nor.device) if not is_group: unit_nor = unit_nor * random_mask else: unit_nor = unit_nor * random_mask.unsqueeze(-1) return unit_nor def cal_center(group_xyz): """ Calculate Global Coordinates of the Center of Triangle :param group_xyz: [N, K, 3] / [N, G, K, 3]; K >= 3 :return: [N, 3] / [N, G, 3] """ center = torch.mean(group_xyz, dim=-2) return center def cal_area(group_xyz): """ Calculate Area of Triangle :param group_xyz: [N, K, 3] / [N, G, K, 3]; K = 3 :return: [N, 1] / [N, G, 1] """ pad_shape = group_xyz[..., 0, None].shape det_xy = torch.det(torch.cat([group_xyz[..., 0, None], group_xyz[..., 1, None], torch.ones(pad_shape)], dim=-1)) det_yz = torch.det(torch.cat([group_xyz[..., 1, None], group_xyz[..., 2, None], torch.ones(pad_shape)], dim=-1)) det_zx = torch.det(torch.cat([group_xyz[..., 2, None], group_xyz[..., 0, None], torch.ones(pad_shape)], dim=-1)) area = torch.sqrt(det_xy ** 2 + det_yz ** 2 + det_zx ** 2).unsqueeze(-1) return area def cal_const(normal, center, is_normalize=True): """ Calculate Constant Term (Standard Version, with x_normal to be 1) math:: const = x_nor * x_0 + y_nor * y_0 + z_nor * z_0 :param is_normalize: :param normal: [N, 3] / [N, G, 3] :param center: [N, 3] / [N, G, 3] :return: [N, 1] / [N, G, 1] """ const = torch.sum(normal * center, dim=-1, keepdim=True) factor = torch.sqrt(torch.Tensor([3])).to(normal.device) const = const / factor if is_normalize else const return const def check_nan(normal, center, pos=None): """ Check & Remove NaN in normal tensor :param pos: [N, 1] :param center: [N, 3] :param normal: [N, 3] """ N, _ = normal.shape mask = torch.sum(torch.isnan(normal), dim=-1) > 0 mask_first = torch.argmax((~mask).int(), dim=-1) normal_first = normal[None, mask_first].repeat([N, 1]) normal[mask] = normal_first[mask] center_first = center[None, mask_first].repeat([N, 1]) center[mask] = center_first[mask] if pos is not None: pos_first = pos[None, mask_first].repeat([N, 1]) pos[mask] = pos_first[mask] return normal, center, pos return normal, center def check_nan_umb(normal, center, pos=None): """ Check & Remove NaN in normal tensor :param pos: [N, G, 1] :param center: [N, G, 3] :param normal: [N, G, 3] """ N, G, _ = normal.shape mask = torch.sum(torch.isnan(normal), dim=-1) > 0 mask_first = torch.argmax((~mask).int(), dim=-1) normal_first = normal[torch.arange(N), None, mask_first].repeat([1, G, 1]) normal[mask] = normal_first[mask] center_first = center[torch.arange(N), None, mask_first].repeat([1, G, 1]) center[mask] = center_first[mask] if pos is not None: pos_first = pos[torch.arange(N), None, mask_first].repeat([1, G, 1]) pos[mask] = pos_first[mask] return normal, center, pos return normal, center ================================================ FILE: segmentation/modules/repsurface_utils.py ================================================ """ Author: Haoxi Ran Date: 06/30/2022 """ import torch import torch.nn as nn import torch.nn.functional as F from modules.polar_utils import xyz2sphere from modules.recons_utils import cal_const, cal_normal, cal_center, check_nan_umb from modules.pointops.functions import pointops def sample_and_group(stride, nsample, center, normal, feature, offset, return_polar=False, num_sector=1, training=True): # sample if stride > 1: new_offset, sample_idx = [offset[0].item() // stride], offset[0].item() // stride for i in range(1, offset.shape[0]): sample_idx += (offset[i].item() - offset[i - 1].item()) // stride new_offset.append(sample_idx) new_offset = torch.cuda.IntTensor(new_offset) if num_sector > 1 and training: fps_idx = pointops.sectorized_fps(center, offset, new_offset, num_sector) # [M] else: fps_idx = pointops.furthestsampling(center, offset, new_offset) # [M] new_center = center[fps_idx.long(), :] # [M, 3] new_normal = normal[fps_idx.long(), :] # [M, 3] else: new_center = center new_normal = normal new_offset = offset # group N, M, D = center.shape[0], new_center.shape[0], normal.shape[1] group_idx, _ = pointops.knnquery(nsample, center, new_center, offset, new_offset) # [M, nsample] group_center = center[group_idx.view(-1).long(), :].view(M, nsample, 3) # [M, nsample, 3] group_normal = normal[group_idx.view(-1).long(), :].view(M, nsample, D) # [M, nsample, 10] group_center_norm = group_center - new_center.unsqueeze(1) if return_polar: group_polar = xyz2sphere(group_center_norm) group_center_norm = torch.cat([group_center_norm, group_polar], dim=-1) if feature is not None: C = feature.shape[1] group_feature = feature[group_idx.view(-1).long(), :].view(M, nsample, C) new_feature = torch.cat([group_center_norm, group_normal, group_feature], dim=-1) # [npoint, nsample, C+D] else: new_feature = torch.cat([group_center_norm, group_normal], dim=-1) return new_center, new_normal, new_feature, new_offset def resort_points(points, idx): """ Resort Set of points along G dim :param points: [N, G, 3] :param idx: [N, G] :return: [N, G, 3] """ device = points.device N, G, _ = points.shape n_indices = torch.arange(N, dtype=torch.long).to(device).view([N, 1]).repeat([1, G]) new_points = points[n_indices, idx, :] return new_points def _fixed_rotate(xyz): # y-axis:45deg -> z-axis:45deg rot_mat = torch.FloatTensor([[0.5, -0.5, 0.7071], [0.7071, 0.7071, 0.], [-0.5, 0.5, 0.7071]]).to(xyz.device) return xyz @ rot_mat def group_by_umbrella_v2(xyz, new_xyz, offset, new_offset, k=9): """ Group a set of points into umbrella surfaces :param xyz: [N, 3] :param new_xyz: [N', 3] :param k: number of homogenous neighbors :return: [N', K-1, 3, 3] """ group_idx, _ = pointops.knnquery(k, xyz, new_xyz, offset, new_offset) # [M, K] group_xyz = xyz[group_idx.view(-1).long(), :].view(new_xyz.shape[0], k, 3) # [M, K, 3] group_xyz_norm = group_xyz - new_xyz.unsqueeze(-2) group_phi = xyz2sphere(_fixed_rotate(group_xyz_norm))[..., 2] # [M, K-1] sort_idx = group_phi.argsort(dim=-1) # [M, K-1] # [M, K-1, 1, 3] sorted_group_xyz = resort_points(group_xyz_norm, sort_idx).unsqueeze(-2) sorted_group_xyz_roll = torch.roll(sorted_group_xyz, -1, dims=-3) group_centriod = torch.zeros_like(sorted_group_xyz) umbrella_group_xyz = torch.cat([group_centriod, sorted_group_xyz, sorted_group_xyz_roll], dim=-2) return umbrella_group_xyz def group_by_umbrella(xyz, new_xyz, offset, new_offset, k=9): """ Group a set of points into umbrella surfaces :param xyz: [N, 3] :param new_xyz: [N', 3] :param k: number of homogenous neighbors :return: [N', K-1, 3, 3] """ group_idx, _ = pointops.knnquery(k, xyz, new_xyz, offset, new_offset) # [M, K] group_xyz = xyz[group_idx.view(-1).long(), :].view(new_xyz.shape[0], k, 3) # [M, K, 3] group_xyz_norm = group_xyz - new_xyz.unsqueeze(-2) group_phi = xyz2sphere(group_xyz_norm)[..., 2] # [M, K-1] sort_idx = group_phi.argsort(dim=-1) # [M, K-1] # [M, K-1, 1, 3] sorted_group_xyz = resort_points(group_xyz_norm, sort_idx).unsqueeze(-2) sorted_group_xyz_roll = torch.roll(sorted_group_xyz, -1, dims=-3) group_centriod = torch.zeros_like(sorted_group_xyz) umbrella_group_xyz = torch.cat([group_centriod, sorted_group_xyz, sorted_group_xyz_roll], dim=-2) return umbrella_group_xyz def sort_factory(s_type): if s_type is None: return group_by_umbrella elif s_type == 'fix': return group_by_umbrella_v2 else: raise Exception('No such sorting method') class SurfaceAbstraction(nn.Module): """ Surface Abstraction Module """ def __init__(self, stride, nsample, in_channel, mlp, return_polar=True, num_sector=1): super(SurfaceAbstraction, self).__init__() self.stride = stride self.nsample = nsample self.num_sector = num_sector self.return_polar = return_polar self.mlp_convs = nn.ModuleList() self.mlp_bns = nn.ModuleList() last_channel = in_channel for out_channel in mlp: self.mlp_convs.append(nn.Conv1d(last_channel, out_channel, 1)) self.mlp_bns.append(nn.BatchNorm1d(out_channel)) last_channel = out_channel def forward(self, pos_nor_feat_off): center, normal, feature, offset = pos_nor_feat_off # [N, 3], [N, 10], [N, C], [B] new_center, new_normal, new_feature, new_offset = sample_and_group(self.stride, self.nsample, center, normal, feature, offset, return_polar=self.return_polar, num_sector=self.num_sector, training=self.training) # new_center: sampled points position data, [M, 3] # new_normal: sampled normal feature data, [M, 3/10] # new_feature: sampled feature, [M, nsample, 3+3/10+C] new_feature = new_feature.transpose(1, 2).contiguous() # [M, 3+C, nsample] for i, conv in enumerate(self.mlp_convs): bn = self.mlp_bns[i] new_feature = F.relu(bn(conv(new_feature))) new_feature = torch.max(new_feature, 2)[0] return [new_center, new_normal, new_feature, new_offset] class SurfaceAbstractionCD(nn.Module): """ Surface Abstraction Module w/ Channel De-differentiation """ def __init__(self, stride, nsample, feat_channel, pos_channel, mlp, return_normal=True, return_polar=False, num_sector=1): super(SurfaceAbstractionCD, self).__init__() self.stride = stride self.nsample = nsample self.return_normal = return_normal self.return_polar = return_polar self.num_sector = num_sector self.mlp_convs = nn.ModuleList() self.mlp_bns = nn.ModuleList() self.pos_channel = pos_channel self.mlp_l0 = nn.Conv1d(self.pos_channel, mlp[0], 1) self.mlp_f0 = nn.Conv1d(feat_channel, mlp[0], 1) self.bn_l0 = nn.BatchNorm1d(mlp[0]) self.bn_f0 = nn.BatchNorm1d(mlp[0]) last_channel = mlp[0] for out_channel in mlp[1:]: self.mlp_convs.append(nn.Conv1d(last_channel, out_channel, 1)) self.mlp_bns.append(nn.BatchNorm1d(out_channel)) last_channel = out_channel def forward(self, pos_nor_feat_off): center, normal, feature, offset = pos_nor_feat_off # [N, 3], [N, 10], [N, C], [B] new_center, new_normal, new_feature, new_offset = sample_and_group(self.stride, self.nsample, center, normal, feature, offset, return_polar=self.return_polar, num_sector=self.num_sector, training=self.training) # new_center: sampled points position data, [M, 3] # new_normal: sampled normal feature data, [M, 3/10] # new_feature: sampled feature, [M, nsample, 3+3/10+C] new_feature = new_feature.transpose(1, 2).contiguous() # [M, 3+C, nsample] # init layer loc = self.bn_l0(self.mlp_l0(new_feature[:, :self.pos_channel])) feat = self.bn_f0(self.mlp_f0(new_feature[:, self.pos_channel:])) new_feature = loc + feat new_feature = F.relu(new_feature) for i, conv in enumerate(self.mlp_convs): bn = self.mlp_bns[i] new_feature = F.relu(bn(conv(new_feature))) new_feature = torch.max(new_feature, 2)[0] return [new_center, new_normal, new_feature, new_offset] class SurfaceFeaturePropagationCD(nn.Module): """ Surface FP Module w/ Channel De-differentiation """ def __init__(self, prev_channel, skip_channel, mlp): super(SurfaceFeaturePropagationCD, self).__init__() self.mlp_convs = nn.ModuleList() self.mlp_bns = nn.ModuleList() self.skip = skip_channel is not None self.mlp_f0 = nn.Linear(prev_channel, mlp[0]) self.norm_f0 = nn.BatchNorm1d(mlp[0]) if skip_channel is not None: self.mlp_s0 = nn.Linear(skip_channel, mlp[0]) self.norm_s0 = nn.BatchNorm1d(mlp[0]) last_channel = mlp[0] for out_channel in mlp[1:]: self.mlp_convs.append(nn.Linear(last_channel, out_channel)) self.mlp_bns.append(nn.BatchNorm1d(out_channel)) last_channel = out_channel def forward(self, pos_feat_off1, pos_feat_off2): xyz1, points1, offset1 = pos_feat_off1 # [N, 3], [N, C], [B] xyz2, points2, offset2 = pos_feat_off2 # [M, 3], [M, C], [B] # interpolation idx, dist = pointops.knnquery(3, xyz2, xyz1, offset2, offset1) # [M, 3], [M, 3] dist_recip = 1.0 / (dist + 1e-8) # [M, 3] norm = torch.sum(dist_recip, dim=1, keepdim=True) weight = dist_recip / norm # [M, 3] points2 = self.norm_f0(self.mlp_f0(points2)) interpolated_points = torch.cuda.FloatTensor(xyz1.shape[0], points2.shape[1]).zero_() for i in range(3): interpolated_points += points2[idx[:, i].long(), :] * weight[:, i].unsqueeze(-1) # init layer if self.skip: skip = self.norm_s0(self.mlp_s0(points1)) new_points = F.relu(interpolated_points + skip) else: new_points = F.relu(interpolated_points) # mlp for i, conv in enumerate(self.mlp_convs): bn = self.mlp_bns[i] new_points = F.relu(bn(conv(new_points))) return new_points class UmbrellaSurfaceConstructor(nn.Module): """ Umbrella Surface Representation Constructor """ def __init__(self, k, in_channel, out_channel, random_inv=True, sort='fix'): super(UmbrellaSurfaceConstructor, self).__init__() self.k = k self.random_inv = random_inv self.mlps = nn.Sequential( nn.Conv1d(in_channel, out_channel, 1, bias=True), nn.BatchNorm1d(out_channel), nn.ReLU(True), nn.Conv1d(out_channel, out_channel, 1, bias=True), ) self.sort_func = sort_factory(sort) def forward(self, center, offset): # umbrella surface reconstruction group_xyz = self.sort_func(center, center, offset, offset, k=self.k) # [N, K-1, 3 (points), 3 (coord.)] # normal group_normal = cal_normal(group_xyz, offset, random_inv=self.random_inv, is_group=True) # coordinate group_center = cal_center(group_xyz) # polar group_polar = xyz2sphere(group_center) # surface position group_pos = cal_const(group_normal, group_center) group_normal, group_center, group_pos = check_nan_umb(group_normal, group_center, group_pos) new_feature = torch.cat([group_polar, group_normal, group_pos, group_center], dim=-1) # P+N+SP+C: 10 new_feature = new_feature.transpose(1, 2).contiguous() # [N, C, G] # mapping new_feature = self.mlps(new_feature) # aggregation new_feature = torch.sum(new_feature, 2) return new_feature ================================================ FILE: segmentation/modules/voxelize_utils.py ================================================ import numpy as np def fnv_hash_vec(arr): """ FNV64-1A """ assert arr.ndim == 2 # Floor first for negative coordinates arr = arr.copy() arr = arr.astype(np.uint64, copy=False) hashed_arr = np.uint64(14695981039346656037) * np.ones(arr.shape[0], dtype=np.uint64) for j in range(arr.shape[1]): hashed_arr *= np.uint64(1099511628211) hashed_arr = np.bitwise_xor(hashed_arr, arr[:, j]) return hashed_arr def ravel_hash_vec(arr): """ Ravel the coordinates after subtracting the min coordinates. """ assert arr.ndim == 2 arr = arr.copy() arr -= arr.min(0) arr = arr.astype(np.uint64, copy=False) arr_max = arr.max(0).astype(np.uint64) + 1 keys = np.zeros(arr.shape[0], dtype=np.uint64) # Fortran style indexing for j in range(arr.shape[1] - 1): keys += arr[:, j] keys *= arr_max[j + 1] keys += arr[:, -1] return keys def voxelize(coord, voxel_size=0.05, hash_type='fnv', mode=0): # voxelize coordinates discrete_coord = np.floor(coord / np.array(voxel_size)) # shuffle coordinates if hash_type == 'ravel': key = ravel_hash_vec(discrete_coord) else: key = fnv_hash_vec(discrete_coord) idx_sort = np.argsort(key) key_sort = key[idx_sort] _, count = np.unique(key_sort, return_counts=True) if mode == 0: # train mode idx_select = np.cumsum(np.insert(count, 0, 0)[0:-1]) + np.random.randint(0, count.max(), count.size) % count idx_unique = idx_sort[idx_select] return idx_unique else: # val mode return idx_sort, count ================================================ FILE: segmentation/scripts/s3dis/test_pointnet2.sh ================================================ #!/bin/bash export PYTHONPATH=./ log_dir='pointnet2_A5' python3 tool/test_s3dis.py --log_dir ${log_dir} \ --batch_size_test 12 \ --gpu_id 0 \ --model pointnet2.pointnet2_ssg \ --test_area 5 \ --filter ================================================ FILE: segmentation/scripts/s3dis/test_pointtransformer.sh ================================================ #!/bin/bash export PYTHONPATH=./ log_dir='pointtransformer_A5' python3 tool/test_s3dis.py --log_dir ${log_dir} \ --batch_size_test 12 \ --gpu_id 0 \ --model pointtransformer.pointtransformer \ --test_area 5 \ --filter ================================================ FILE: segmentation/scripts/s3dis/test_repsurf_umb.sh ================================================ #!/bin/bash export PYTHONPATH=./ log_dir='repsurf_umb_A5' python3 tool/test_s3dis.py --log_dir ${log_dir} \ --batch_size_test 12 \ --gpu_id 0 \ --model repsurf.repsurf_umb_ssg \ --test_area 5 \ --filter ================================================ FILE: segmentation/scripts/s3dis/train_pointnet2.sh ================================================ #!/bin/bash export PYTHONPATH=./ log_dir='pointnet2_A5' python3 tool/train.py --log_dir ${log_dir} --dataset S3DIS \ --batch_size 8 \ --batch_size_val 24 \ --workers 24 \ --gpus 0 1 2 3 \ --model pointnet2.pointnet2_ssg \ --optimizer AdamW \ --min_val 60 \ --epoch 100 \ --lr_decay_epochs 60 80 \ --test_area 5 \ --learning_rate 0.006 \ --lr_decay 0.1 \ --weight_decay 1e-2 \ --aug_scale \ --color_contrast \ --color_shift \ --color_jitter \ --hs_shift ================================================ FILE: segmentation/scripts/s3dis/train_pointtransformer.sh ================================================ #!/bin/bash export PYTHONPATH=./ log_dir='pointtransformer_A5' python3 tool/train.py --log_dir ${log_dir} --dataset S3DIS \ --batch_size 8 \ --batch_size_val 24 \ --workers 24 \ --gpus 0 1 2 3 \ --model pointtransformer.pointtransformer \ --optimizer AdamW \ --min_val 60 \ --epoch 100 \ --lr_decay_epochs 60 80 \ --test_area 5 \ --learning_rate 0.006 \ --lr_decay 0.1 \ --weight_decay 1e-2 \ --aug_scale \ --color_contrast \ --color_shift \ --color_jitter \ --hs_shift ================================================ FILE: segmentation/scripts/s3dis/train_repsurf_umb.sh ================================================ #!/bin/bash export PYTHONPATH=./ log_dir='repsurf_umb_A5' python3 tool/train.py --log_dir ${log_dir} --dataset S3DIS \ --batch_size 8 \ --batch_size_val 24 \ --workers 24 \ --gpus 0 1 2 3 \ --model repsurf.repsurf_umb_ssg \ --optimizer AdamW \ --min_val 60 \ --epoch 100 \ --lr_decay_epochs 60 80 \ --test_area 5 \ --learning_rate 0.006 \ --lr_decay 0.1 \ --weight_decay 1e-2 \ --freeze_epoch 10 \ --color_contrast \ --color_shift \ --color_jitter \ --hs_shift ================================================ FILE: segmentation/tool/test_s3dis.py ================================================ """ Author: Haoxi Ran Date: 06/30/2022 """ import json import os import time import random import numpy as np import argparse import collections from pathlib import Path import torch import torch.nn.parallel import torch.optim import torch.utils.data from util.utils import AverageMeter, intersectionAndUnion, get_rgb_stat, pc_median_filter_gpu from util.utils import get_model, get_logger from modules.voxelize_utils import voxelize LABEL2COLOR = collections.OrderedDict([ ('ceiling', [0, 255, 0]), ('floor', [0, 0, 255]), ('wall', [0, 255, 255]), ('beam', [255, 255, 0]), ('column', [255, 0, 255]), ('window', [100, 100, 255]), ('door', [200, 200, 100]), ('chair', [170, 120, 200]), ('table', [255, 0, 0]), ('bookcase', [200, 100, 100]), ('sofa', [10, 200, 100]), ('board', [200, 200, 200]), ('clutter', [50, 50, 50])]) LABEL2CLASS = list(LABEL2COLOR.keys()) PALETTE = np.array(list(LABEL2COLOR.values()), dtype=np.int64) def parse_args(): parser = argparse.ArgumentParser('Model') # Basic parser.add_argument('--log_dir', type=str, default=None, help='experiment root') parser.add_argument('--data_dir', type=str, default='./data/S3DIS/trainval_fullarea', help='data dir') parser.add_argument('--log_root', type=str, default='./log', help='log root dir') parser.add_argument('--model_path', type=str, default=None, help='saved model weight') parser.add_argument('--model', default='pointnet_sem_seg', help='model name [default: pointnet_sem_seg]') parser.add_argument('--gpu_id', type=str, default='0') parser.add_argument('--seed', type=int, default=1000, help='Test Seed') # Test parser.add_argument('--batch_size_test', type=int, default=12, help='batch size in test [default: 24]') parser.add_argument('--test_area', type=int, default=5, help='Which area to use for test [default: 5]') parser.add_argument('--filter', action='store_true', default=False, help='Apply median filter [default: False]') parser.add_argument('--data_norm', type=str, default='mean', help='initializer for model [mean, min, z_min]') parser.add_argument('--visual', action='store_true', default=False, help='Output visual results [default: False]') # Modeling parser.add_argument('--group_size', type=int, default=8, help='Size of umbrella group [default: 8]') parser.add_argument('--return_polar', action='store_true', default=False, help='Whether to return polar coordinate in surface abstraction [default: False]') return parser.parse_args() def main(): global args, logger args = parse_args() os.environ["CUDA_VISIBLE_DEVICES"] = args.gpu_id random.seed(args.seed) np.random.seed(args.seed) args.dataset, args.num_class, args.voxel_max, args.voxel_size, args.in_channel, args.ignore_label = \ 'S3DIS', 13, 80000, 0.04, 6, 255 experiment_dir = Path(os.path.join(args.log_root, 'PointAnalysis', 'log', 'S3DIS')) experiment_dir = experiment_dir.joinpath(args.log_dir) checkpoints_dir = experiment_dir.joinpath('checkpoints/') args.ckpt_dir = str(checkpoints_dir) log_dir = experiment_dir.joinpath('logs/') args.log_dir = str(log_dir) result_dir = experiment_dir.joinpath('visual/') result_dir.mkdir(exist_ok=True) args.result_dir = str(result_dir) logger = get_logger(args.log_dir, 'test_%s' % args.model) logger.info(json.dumps(vars(args), indent=4, sort_keys=True)) logger.info("=> creating models ...") model = get_model(args).cuda() logger.info(model) ckpt_file = os.path.join(args.ckpt_dir, 'model_best.pth') if args.model_path is None else args.model_path if os.path.isfile(ckpt_file): logger.info("=> loading checkpoint '{}'".format(ckpt_file)) checkpoint = torch.load(ckpt_file) state_dict = checkpoint['state_dict'] new_state_dict = collections.OrderedDict() for k, v in state_dict.items(): name = k[7:] new_state_dict[name] = v.cpu() model.load_state_dict(new_state_dict, strict=True) logger.info("=> loaded checkpoint '{}'".format(ckpt_file)) else: raise RuntimeError("=> no checkpoint found at '{}'".format(ckpt_file)) test(model) def data_prepare(): """ Return area names of the test dataset """ data_list = sorted(os.listdir(args.data_dir)) data_list = [item[:-4] for item in data_list if 'Area_{}'.format(args.test_area) in item] print("Totally {} samples in val set.".format(len(data_list))) return data_list def data_load(data_name): """ Load data by area name """ data_path = os.path.join(args.data_dir, data_name + '.npy') data = np.load(data_path) # xyzrgbl, N*7 coord, feat, label = data[:, :3], data[:, 3:6], data[:, 6] idx_data = [] if args.voxel_size: idx_sort, count = voxelize(coord - np.min(coord, 0), args.voxel_size, mode=1) for i in range(count.max()): idx_select = np.cumsum(np.insert(count, 0, 0)[0:-1]) + i % count idx_part = idx_sort[idx_select] idx_data.append(idx_part) else: idx_data.append(np.arange(label.shape[0])) return coord, feat, label, idx_data def data_process(coord, feat, idx_data): """ Split points into batches by index """ idx_size = len(idx_data) idx_list, coord_list, feat_list, offset_list = [], [], [], [] for i in range(idx_size): idx_part = idx_data[i] coord_part, feat_part = coord[idx_part], feat[idx_part] if args.voxel_max and coord_part.shape[0] > args.voxel_max: coord_p, idx_uni, cnt = np.random.rand(coord_part.shape[0]) * 1e-3, np.array([]), 0 while idx_uni.size != idx_part.shape[0]: init_idx = np.argmin(coord_p) dist = np.sum(np.power(coord_part - coord_part[init_idx], 2), 1) idx_crop = np.argsort(dist)[:args.voxel_max] coord_sub, feat_sub, idx_sub = coord_part[idx_crop], feat_part[idx_crop], idx_part[idx_crop] dist = dist[idx_crop] delta = np.square(1 - dist / np.max(dist)) coord_p[idx_crop] += delta coord_sub, feat_sub = input_normalize(coord_sub, feat_sub) idx_list.append(idx_sub), coord_list.append(coord_sub), feat_list.append( feat_sub), offset_list.append(idx_sub.size) idx_uni = np.unique(np.concatenate((idx_uni, idx_sub))) else: coord_part, feat_part = input_normalize(coord_part, feat_part) idx_list.append(idx_part), coord_list.append(coord_part), feat_list.append( feat_part), offset_list.append(idx_part.size) return idx_list, coord_list, feat_list, offset_list def input_normalize(coord, feat): # normalize if args.data_norm == 'mean': coord -= np.mean(coord, 0) elif args.data_norm == 'min': coord -= np.min(coord, 0) else: raise Exception('No such data norm type') feat = feat / 255. if args.color_mean is not None and args.color_std is not None: feat = (feat - args.color_mean) / args.color_std return coord, feat def visualize_scene(coord, pred, label, name): color_pred = PALETTE[pred.astype(np.int64)] color_gt = PALETTE[label.astype(np.int64)] pred_save_path = os.path.join(args.result_dir, '{}_pred.txt'.format(name)) label_save_path = os.path.join(args.result_dir, '{}_label.txt'.format(name)) np.savetxt(pred_save_path, np.hstack([coord, color_pred]), fmt="%f " * 3 + "%d " * 3) np.savetxt(label_save_path, np.hstack([coord, color_gt]), fmt="%f " * 3 + "%d " * 3) def test(model): logger.info('>>>>>>>>>>>>>>>> Start Evaluation >>>>>>>>>>>>>>>>') batch_time = AverageMeter() model.eval() pred_list, label_list = [], [] data_list = data_prepare() args.color_mean, args.color_std = get_rgb_stat(args) for idx_scene, scene_name in enumerate(data_list): end = time.time() coord, feat, label, idx_data = data_load(scene_name) idx_list, coord_list, feat_list, offset_list = data_process(coord, feat, idx_data) pred = torch.zeros((label.size, args.num_class)).cuda(non_blocking=True) pred_count = torch.zeros((label.size, args.num_class)).cuda(non_blocking=True) num_batch = int(np.ceil(len(idx_list) / args.batch_size_test)) for idx_batch in range(num_batch): idx_start = idx_batch * args.batch_size_test idx_end = min((idx_batch + 1) * args.batch_size_test, len(idx_list)) idx_part, coord_part, feat_part, offset_part = \ idx_list[idx_start:idx_end], coord_list[idx_start:idx_end], \ feat_list[idx_start:idx_end], offset_list[idx_start:idx_end] idx_part = np.concatenate(idx_part) coord_part = torch.FloatTensor(np.concatenate(coord_part)).cuda(non_blocking=True) feat_part = torch.FloatTensor(np.concatenate(feat_part)).cuda(non_blocking=True) offset_part = torch.IntTensor(np.cumsum(offset_part)).cuda(non_blocking=True) with torch.no_grad(): pred_part = torch.nn.functional.softmax(model([coord_part, feat_part, offset_part]), dim=1) # (n, k) torch.cuda.empty_cache() pred[idx_part, :] += pred_part pred_count[idx_part, :] += 1. logger.info('Scene {}/{}, {}/{}, {}/{}'.format(idx_scene + 1, len(data_list), idx_end, len(idx_list), args.voxel_max, idx_part.shape[0])) # IoU per scene pred_choice = np.argmax((pred/pred_count).cpu().numpy(), 1) coord = coord label = label # median filter if args.filter: coord_gpu = torch.from_numpy(coord).float().cuda(non_blocking=True) pred_gpu = torch.from_numpy(pred_choice).int().cuda(non_blocking=True) pred_choice = pc_median_filter_gpu(coord_gpu, pred_gpu, 32) batch_time.update(time.time() - end) logger.info('Test: [{}/{}]-{} Batch {batch_time.val:.3f} ({batch_time.avg:.3f})'.format( idx_scene + 1, len(data_list), label.size, batch_time=batch_time)) pred_list.append(pred_choice) label_list.append(label) if args.visual: visualize_scene(coord, pred_choice, label, scene_name) # mIoU intersection, union, target = intersectionAndUnion(np.concatenate(pred_list), np.concatenate(label_list), args.num_class, args.ignore_label) iou_class = intersection / (union + 1e-10) accuracy_class = intersection / (target + 1e-10) mIoU = np.mean(iou_class) mAcc = np.mean(accuracy_class) allAcc = sum(intersection) / (sum(target) + 1e-10) logger.info('Val result: mIoU / mAcc / OA {:.2f} / {:.2f} / {:.2f}.'.format(mIoU * 100, mAcc * 100, allAcc * 100)) for i in range(args.num_class): logger.info('Class_{} Result: IoU / Acc {:.2f} / {:.2f}, name: {}.'.format( i, iou_class[i] * 100, accuracy_class[i] * 100, LABEL2CLASS[i])) logger.info('<<<<<<<<<<<<<<<<< End Evaluation <<<<<<<<<<<<<<<<<') if __name__ == '__main__': main() ================================================ FILE: segmentation/tool/train.py ================================================ """ Author: Haoxi Ran Date: 06/30/2022 """ import json import os import time from functools import partial import numpy as np import argparse from pathlib import Path import datetime import torch import torch.nn as nn import torch.nn.parallel import torch.optim import torch.utils.data import torch.multiprocessing as mp import torch.distributed as dist from tensorboardX import SummaryWriter from modules.aug_utils import transform_point_cloud_coord, transform_point_cloud_rgb from util.utils import AverageMeter, intersectionAndUnionGPU, find_free_port, get_dataset_description, get_optimizer, \ get_scheduler, get_loop, get_aug_args, get_loss, get_dataset_obj, get_rgb_stat, worker_init_fn from util.data_util import collate_fn from util.utils import get_model, get_class_weights, set_seed, main_process, get_logger def parse_args(): parser = argparse.ArgumentParser('Model') # Basic parser.add_argument('--log_dir', type=str, default=None, help='experiment root') parser.add_argument('--log_root', type=str, default='./log', help='log root dir') parser.add_argument('--dataset', type=str, default='S3DIS', help='dataset name') parser.add_argument('--model', default='pointnet_sem_seg', help='model name [default: pointnet_sem_seg]') parser.add_argument('--gpus', nargs='+', type=str, default=None) parser.add_argument('--seed', type=int, default=2000, help='Training Seed') parser.add_argument('--world_size', type=int, default=1, help='Number of processes participating in the job') parser.add_argument('--rank', type=int, default=0, help='Rank of the current process') parser.add_argument('--multiprocessing_distributed', action='store_false', default=True, help='Whether to use multiprocessing [default: True]') parser.add_argument('--sync_bn', action='store_true', default=False, help='Whether to use sync bn [default: False]') # Training parser.add_argument('--epoch', default=100, type=int, help='number of epoch in training [default: 100]') parser.add_argument('--batch_size', type=int, default=8, help='batch size in training [default: 32]') parser.add_argument('--workers', type=int, default=8, help='DataLoader Workers Number [default: 4]') parser.add_argument('--optimizer', type=str, default='AdamW', help='optimizer for training [SGD, AdamW]') parser.add_argument('--momentum', type=float, default=0.9, help='optimizer momentum [default: 0.9]') parser.add_argument('--weight_decay', type=float, default=1e-2, help='decay rate [default: 1e-2]') parser.add_argument('--scheduler', type=str, default='step', help='scheduler for training [step]') parser.add_argument('--learning_rate', default=0.006, type=float, help='init learning rate [default: 0.5]') parser.add_argument('--lr_decay', type=float, default=0.1, help='decay rate [default: 0.1]') parser.add_argument('--data_norm', type=str, default='mean', help='initializer for model [mean, min]') parser.add_argument('--lr_decay_epochs', type=int, default=[60, 80], nargs='+', help='for step scheduler. where to decay lr, can be a list') parser.add_argument('--start_epoch', type=int, default=0, help='Start Training Epoch [default: 0]') parser.add_argument('--train_freq', type=int, default=250, help='Training frequency [default: 250]') parser.add_argument('--resume', type=str, default=None, help='Trained checkpoint path') parser.add_argument('--pretrain', type=str, default=None, help='Pretrain model path') # Evaluation parser.add_argument('--batch_size_val', type=int, default=8, help='batch size in validation [default: 4]') parser.add_argument('--min_val', type=int, default=60, help='Min val epoch [default: 60]') parser.add_argument('--val_freq', type=int, default=1, help='Val frequency [default: 1]') parser.add_argument('--test_area', type=int, default=5, help='Which area to use for test [default: 5]') # Augmentation parser.add_argument('--aug_scale', action='store_true', default=False, help='Whether to augment by scaling [default: False]') parser.add_argument('--aug_rotate', type=str, default=None, help='Type to augment by rotation [pert, pert_z, rot, rot_z]') parser.add_argument('--aug_jitter', action='store_true', default=False, help='Whether to augment by shifting [default: False]') parser.add_argument('--aug_flip', action='store_true', default=False, help='Whether to augment by flipping [default: False]') parser.add_argument('--aug_shift', action='store_true', default=False, help='Whether to augment by shifting [default: False]') parser.add_argument('--color_contrast', action='store_true', default=False, help='Whether to augment by RGB contrasting [default: False]') parser.add_argument('--color_shift', action='store_true', default=False, help='Whether to augment by RGB shifting [default: False]') parser.add_argument('--color_jitter', action='store_true', default=False, help='Whether to augment by RGB jittering [default: False]') parser.add_argument('--hs_shift', action='store_true', default=False, help='Whether to augment by HueSaturation shifting [default: False]') parser.add_argument('--color_drop', action='store_true', default=False, help='Whether to augment by RGB Dropout [default: False]') # RepSurf parser.add_argument('--group_size', type=int, default=8, help='Size of umbrella group [default: 8]') parser.add_argument('--return_polar', action='store_true', default=False, help='Whether to return polar coordinate in surface abstraction [default: False]') parser.add_argument('--freeze_epoch', default=1e6, type=int, help='number of epoch to freeze repsurf [default: 1e6]') return parser.parse_args() def main_worker(gpu, ngpus_per_node, argss): global args, best_iou args, best_iou = argss, 0 if args.distributed: if args.dist_url == "env://" and args.rank == -1: args.rank = int(os.environ["RANK"]) if args.multiprocessing_distributed: args.rank = args.rank * ngpus_per_node + gpu dist.init_process_group(backend='nccl', init_method=args.dist_url, world_size=args.world_size, rank=args.rank) set_seed(args.seed + args.rank) """MODEL BUILDING""" # model model = get_model(args) if main_process(args): global logger, writer logger = get_logger(args.log_dir, args.model) writer = SummaryWriter(args.log_dir) logger.info(json.dumps(vars(args), indent=4, sort_keys=True)) # print args logger.info("=> creating models ...") logger.info("Classes: {}".format(args.num_class)) logger.info(model) # print num of params num_param = sum(p.numel() for p in model.parameters() if p.requires_grad) logger.info('Total Number of Parameters: {} M'.format(str(float(num_param) / 1e6)[:5])) if args.distributed: torch.cuda.set_device(gpu) args.batch_size = int(args.batch_size / ngpus_per_node) args.batch_size_val = int(args.batch_size_val / ngpus_per_node) args.workers = int((args.workers + ngpus_per_node - 1) / ngpus_per_node) if args.sync_bn: nn.SyncBatchNorm.convert_sync_batchnorm(model) model.cuda() # model parallel (Note: During DDP Training, enable 'find_unused_parameters' to freeze repsurf) model = torch.nn.parallel.DistributedDataParallel(model, device_ids=[gpu], find_unused_parameters='repsurf' in args.model) else: # model model.cuda() model = torch.nn.DataParallel(model) """DATA LOADING""" coord_transform = transform_point_cloud_coord(args) rgb_transform = transform_point_cloud_rgb(args) dataset_obj = get_dataset_obj(args) rgb_mean, rgb_std = get_rgb_stat(args) if 'trainval' not in args.dataset: TRAIN_DATASET = dataset_obj(args, 'train', coord_transform, rgb_transform, rgb_mean, rgb_std, True) VAL_DATASET = dataset_obj(args, 'val', None, None, rgb_mean, rgb_std, False) VAL_DATASET.stop_aug = True if main_process(args): logger.info("Totally {} samples in {} set.".format(len(TRAIN_DATASET) // args.loop, 'train')) logger.info("Totally {} samples in {} set.".format(len(VAL_DATASET) // args.loop, 'val')) else: TRAIN_DATASET = dataset_obj(args, 'trainval', coord_transform, rgb_transform, rgb_mean, rgb_std, True) VAL_DATASET = None if main_process(args): logger.info("Totally {} samples in {} set.".format(len(TRAIN_DATASET) // args.loop, 'trainval')) """DATALOADER BUILDING""" train_sampler = torch.utils.data.distributed.DistributedSampler(TRAIN_DATASET) if args.distributed else None train_loader = torch.utils.data.DataLoader(TRAIN_DATASET, batch_size=args.batch_size, shuffle=train_sampler is None, num_workers=args.workers, pin_memory=True, sampler=train_sampler, drop_last=True, collate_fn=collate_fn, worker_init_fn=partial(worker_init_fn, seed=args.seed)) if VAL_DATASET is not None: val_sampler = torch.utils.data.distributed.DistributedSampler(VAL_DATASET) if args.distributed else None val_loader = torch.utils.data.DataLoader(VAL_DATASET, batch_size=args.batch_size_val, shuffle=False, num_workers=args.workers, pin_memory=True, sampler=val_sampler, collate_fn=collate_fn, worker_init_fn=partial(worker_init_fn, seed=args.seed + 100)) """TRAINING UTILS""" # loss label_weight = get_class_weights(args.description).cuda() criterion = get_loss(label_weight, args.ignore_label).cuda() # optimizer optimizer = get_optimizer(args, model) # scheduler scheduler = get_scheduler(args, optimizer) """MODEL RESTORE""" if args.resume is not None: if os.path.isfile(args.resume): if main_process(args): logger.info("=> loading checkpoint '{}'".format(args.resume)) checkpoint = torch.load(args.resume, map_location=lambda storage, loc: storage.cuda()) args.start_epoch = checkpoint['epoch'] model.load_state_dict(checkpoint['state_dict'], strict=True) optimizer.load_state_dict(checkpoint['optimizer']) scheduler.load_state_dict(checkpoint['scheduler']) best_iou = checkpoint['best_iou'] if main_process(args): logger.info("=> loaded checkpoint '{}' (epoch {})".format(args.resume, checkpoint['epoch'])) else: if main_process(args): logger.info("=> no checkpoint found at '{}'".format(args.resume)) if args.pretrain is not None: if os.path.isfile(args.pretrain): if main_process(args): logger.info("=> loading pretrained model '{}'".format(args.pretrain)) checkpoint = torch.load(args.pretrain, map_location=lambda storage, loc: storage.cuda()) model.load_state_dict(checkpoint['state_dict'], strict=True) """TRAINING""" for epoch in range(args.start_epoch, args.epoch): # train if args.distributed: train_sampler.set_epoch(epoch) loss_train, mIoU_train, mAcc_train, allAcc_train = train(train_loader, model, criterion, optimizer, epoch) scheduler.step() epoch_log = epoch + 1 if main_process(args): writer.add_scalar('loss_train', loss_train, epoch_log) writer.add_scalar('mIoU_train', mIoU_train, epoch_log) writer.add_scalar('mAcc_train', mAcc_train, epoch_log) writer.add_scalar('allAcc_train', allAcc_train, epoch_log) # validate is_best = False if args.min_val < epoch_log and (epoch_log % args.val_freq == 0) and args.is_eval: loss_val, mIoU_val, mAcc_val, allAcc_val = validate(val_loader, model, criterion) if main_process(args): writer.add_scalar('loss_val', loss_val, epoch_log) writer.add_scalar('mIoU_val', mIoU_val, epoch_log) writer.add_scalar('mAcc_val', mAcc_val, epoch_log) writer.add_scalar('allAcc_val', allAcc_val, epoch_log) is_best = mIoU_val > best_iou best_iou = max(best_iou, mIoU_val) # save model if is_best and main_process(args): filename = args.ckpt_dir + '/model_best.pth' # save for publish torch.save({'state_dict': model.state_dict()}, filename) # save for training # torch.save({'epoch': epoch_log, 'state_dict': model.state_dict(), # 'optimizer': optimizer.state_dict(), 'scheduler': scheduler.state_dict(), # 'best_iou': best_iou, 'is_best': is_best}, filename) logger.info('Best validation mIoU updated to: {:.2f}'.format(best_iou * 100)) if main_process(args): writer.close() logger.info('==>Training done!\nBest Iou: {:.2f}'.format(best_iou * 100, )) def train(train_loader, model, criterion, optimizer, epoch): batch_time = AverageMeter() data_time = AverageMeter() loss_meter = AverageMeter() intersection_meter = AverageMeter() union_meter = AverageMeter() target_meter = AverageMeter() model.train() # freeze weight if args.freeze_epoch < epoch + 1: # freeze params for n, p in model.module.named_parameters(): if "surface_constructor" in n and p.requires_grad: p.requires_grad = False end = time.time() max_iter = args.epoch * len(train_loader) for i, (coord, feat, target, offset) in enumerate(train_loader): # [N, 3], [N, C], [N], [B] data_time.update(time.time() - end) coord, target, feat, offset = \ coord.cuda(non_blocking=True), target.cuda(non_blocking=True), feat.cuda(non_blocking=True), \ offset.cuda(non_blocking=True) output = model([coord, feat, offset]) loss = criterion(output, target) optimizer.zero_grad() loss.backward() optimizer.step() n = coord.size(0) if args.multiprocessing_distributed: loss *= n count = target.new_tensor([n], dtype=torch.long) dist.all_reduce(loss), dist.all_reduce(count) n = count.item() loss /= n output = output[:, 1:].max(1)[1] + 1 if 'ScanNet' in args.dataset else output.max(1)[1] # remove unclassified label intersection, union, target = intersectionAndUnionGPU(output, target, args.num_class, args.ignore_label) if args.multiprocessing_distributed: dist.all_reduce(intersection), dist.all_reduce(union), dist.all_reduce(target) intersection, union, target = intersection.cpu().numpy(), union.cpu().numpy(), target.cpu().numpy() intersection_meter.update(intersection), union_meter.update(union), target_meter.update(target) accuracy = sum(intersection_meter.val) / (sum(target_meter.val) + 1e-10) loss_meter.update(loss.item(), n) batch_time.update(time.time() - end) end = time.time() # calculate remain time current_iter = epoch * len(train_loader) + i + 1 remain_iter = max_iter - current_iter remain_time = remain_iter * batch_time.avg t_m, t_s = divmod(remain_time, 60) t_h, t_m = divmod(t_m, 60) remain_time = '{:02d}:{:02d}:{:02d}'.format(int(t_h), int(t_m), int(t_s)) if (i + 1) % args.train_freq == 0 and main_process(args): logger.info('Epoch: [{}/{}][{}/{}] ' 'Batch {batch_time.val:.3f} ({batch_time.avg:.3f}) ' 'Remain {remain_time} ' 'Loss {loss_meter.val:.4f} ' 'Accuracy {accuracy:.2f}'.format(epoch + 1, args.epoch, i + 1, len(train_loader), batch_time=batch_time, remain_time=remain_time, loss_meter=loss_meter, accuracy=accuracy * 100)) if main_process(args): writer.add_scalar('loss_train_batch', loss_meter.val, current_iter) writer.add_scalar('mIoU_train_batch', np.mean(intersection / (union + 1e-10)), current_iter) writer.add_scalar('mAcc_train_batch', np.mean(intersection / (target + 1e-10)), current_iter) writer.add_scalar('allAcc_train_batch', accuracy, current_iter) iou_class = intersection_meter.sum / (union_meter.sum + 1e-10) accuracy_class = intersection_meter.sum / (target_meter.sum + 1e-10) iou_class = iou_class[1:] if 'ScanNet' in args.dataset else iou_class accuracy_class = accuracy_class[1:] if 'ScanNet' in args.dataset else accuracy_class mIoU = np.mean(iou_class) mAcc = np.mean(accuracy_class) allAcc = sum(intersection_meter.sum) / (sum(target_meter.sum) + 1e-10) if main_process(args): for class_idx, class_iou in enumerate(iou_class): writer.add_scalar(f'class_{class_idx}_train_iou', class_iou, epoch) if main_process(args): logger.info('Train result at epoch [{}/{}]: mIoU / mAcc / OA {:.2f} / {:.2f} / {:.2f}'.format( epoch + 1, args.epoch, mIoU * 100, mAcc * 100, allAcc * 100)) return loss_meter.avg, mIoU, mAcc, allAcc def validate(val_loader, model, criterion): if main_process(args): logger.info('>>>>>>>>>>>>>>>> Start Evaluation >>>>>>>>>>>>>>>>') batch_time = AverageMeter() data_time = AverageMeter() loss_meter = AverageMeter() intersection_meter = AverageMeter() union_meter = AverageMeter() target_meter = AverageMeter() model.eval() end = time.time() for i, (coord, feat, target, offset) in enumerate(val_loader): data_time.update(time.time() - end) coord, target, feat, offset = \ coord.cuda(non_blocking=True), target.cuda(non_blocking=True), feat.cuda(non_blocking=True), \ offset.cuda(non_blocking=True) with torch.no_grad(): output = model([coord, feat, offset]) loss = criterion(output, target) n = coord.size(0) if args.multiprocessing_distributed: loss *= n count = target.new_tensor([n], dtype=torch.long) dist.all_reduce(loss), dist.all_reduce(count) n = count.item() loss /= n choice = output[:, 1:].max(1)[1] + 1 if 'ScanNet' in args.dataset else output.max(1)[1] # remove unclassified label intersection, union, target = intersectionAndUnionGPU(choice, target, args.num_class, args.ignore_label) if args.multiprocessing_distributed: dist.all_reduce(intersection), dist.all_reduce(union), dist.all_reduce(target) intersection, union, target = intersection.cpu().numpy(), union.cpu().numpy(), target.cpu().numpy() intersection_meter.update(intersection), union_meter.update(union), target_meter.update(target) loss_meter.update(loss.item(), n) batch_time.update(time.time() - end) end = time.time() iou_class = intersection_meter.sum / (union_meter.sum + 1e-10) accuracy_class = intersection_meter.sum / (target_meter.sum + 1e-10) # remove unlabeled class iou_class = iou_class[1:] if 'ScanNet' in args.dataset else iou_class accuracy_class = accuracy_class[1:] if 'ScanNet' in args.dataset else accuracy_class mIoU = np.mean(iou_class) mAcc = np.mean(accuracy_class) allAcc = sum(intersection_meter.sum) / (sum(target_meter.sum) + 1e-10) if main_process(args): logger.info('Val result: mIoU / mAcc / OA {:.2f} / {:.2f} / {:.2f}'.format( mIoU * 100, mAcc * 100, allAcc * 100)) logger.info('Val loss: {:.4f}'.format(loss_meter.avg)) for i in range(len(iou_class)): logger.info('Class_{} Result: IoU / Acc {:.2f}/{:.2f}'.format( i, iou_class[i] * 100, accuracy_class[i] * 100)) logger.info('<<<<<<<<<<<<<<<<< End Evaluation <<<<<<<<<<<<<<<<<') return loss_meter.avg, mIoU, mAcc, allAcc if __name__ == '__main__': import gc gc.collect() """HYPER PARAMETER""" args = parse_args() os.environ["CUDA_VISIBLE_DEVICES"] = ','.join(args.gpus) if 'A6000' in torch.cuda.get_device_name(0): os.environ["NCCL_P2P_DISABLE"] = '1' """DDP SETTING""" args.dist_url = 'tcp://localhost:8888' if args.dist_url == "env://" and args.world_size == -1: args.world_size = int(os.environ["WORLD_SIZE"]) args.distributed = args.world_size > 1 or args.multiprocessing_distributed args.ngpus_per_node = len(args.gpus) if len(args.gpus) == 1: args.sync_bn = False args.distributed = False args.multiprocessing_distributed = False """CREATE DIR""" experiment_dir = Path(os.path.join(args.log_root, 'PointAnalysis', 'log', args.dataset.split('_')[0])) if args.log_dir is None: timestr = str(datetime.datetime.now().strftime('%Y-%m-%d_%H-%M')) experiment_dir = experiment_dir.joinpath(timestr) else: experiment_dir = experiment_dir.joinpath(args.log_dir) experiment_dir.mkdir(exist_ok=True) checkpoints_dir = experiment_dir.joinpath('checkpoints/') checkpoints_dir.mkdir(exist_ok=True) args.ckpt_dir = str(checkpoints_dir) log_dir = experiment_dir.joinpath('logs/') log_dir.mkdir(exist_ok=True) args.log_dir = str(log_dir) """DATASET INIT""" dataset_obj = get_dataset_obj(args) args.loop = get_loop(args) if args.dataset == 'S3DIS': args.num_class, args.voxel_max, args.voxel_size, args.in_channel, args.ignore_label = \ 13, 80000, 0.04, 6, 255 args.data_dir = './data/S3DIS/trainval_fullarea' dataset_obj(args, 'train') dataset_obj(args, 'val') elif args.dataset == 'ScanNet_train': args.num_class, args.voxel_max, args.voxel_size, args.in_channel, args.ignore_label = \ 21, 120000, 0.02, 6, 0 args.data_dir = './data/ScanNet' dataset_obj(args, 'train') dataset_obj(args, 'val') elif args.dataset == 'ScanNet_trainval': args.num_class, args.voxel_max, args.voxel_size, args.in_channel, args.ignore_label = \ 21, 120000, 0.02, 6, 0 args.data_dir = './data/ScanNet' dataset_obj(args, 'trainval') else: raise Exception('Not Impl. Dataset') args.is_eval = 'trainval' not in args.dataset args.aug_args = get_aug_args(args) args.description = get_dataset_description(args) print('Train Model on %s' % args.description) """RUNNING""" if args.multiprocessing_distributed: port = find_free_port() args.dist_url = f"tcp://localhost:{port}" args.world_size = args.ngpus_per_node * args.world_size mp.spawn(main_worker, nprocs=args.ngpus_per_node, args=(args.ngpus_per_node, args)) else: main_worker(args.gpus, args.ngpus_per_node, args) ================================================ FILE: segmentation/util/__init__.py ================================================ ================================================ FILE: segmentation/util/data_util.py ================================================ import numpy as np import SharedArray as SA import torch from modules.voxelize_utils import voxelize def sa_create(name, var): x = SA.create(name, var.shape, dtype=var.dtype) x[...] = var[...] x.flags.writeable = False return x def collate_fn(batch): coord, feat, label = list(zip(*batch)) offset, count = [], 0 for item in coord: count += item.shape[0] offset.append(count) return torch.cat(coord), torch.cat(feat), torch.cat(label) if label[0] is not None else None, torch.IntTensor( offset) def data_prepare(coord, feat, label, args, split, coord_transform, rgb_transform, rgb_mean=None, rgb_std=None, shuffle_index=True, stop_transform=False): dataset = args.dataset.split('_')[0] # coordinate augment if coord_transform and not stop_transform: coord, _, _ = coord_transform(coord, None, None) # rgb augment if rgb_transform and not stop_transform: _, feat, _ = rgb_transform(None, feat, None) # grid sampling if args.voxel_size: uniq_idx = voxelize(coord - np.min(coord, 0), args.voxel_size) coord, feat = coord[uniq_idx], feat[uniq_idx] if label is not None: label = label[uniq_idx] # drop points when overflow if split != 'val' and args.voxel_max and coord.shape[0] > args.voxel_max: init_idx = np.random.randint(coord.shape[0]) if 'train' in split else coord.shape[0] // 2 crop_idx = np.argsort(np.sum(np.square(coord - coord[init_idx]), 1))[:args.voxel_max] coord, feat = coord[crop_idx], feat[crop_idx] if label is not None: label = label[crop_idx] # shuffle points if shuffle_index: shuf_idx = np.arange(coord.shape[0]) np.random.shuffle(shuf_idx) coord, feat = coord[shuf_idx], feat[shuf_idx] if label is not None: label = label[shuf_idx] # coord norm if args.data_norm == 'mean': coord -= np.mean(coord, 0) elif args.data_norm == 'min': coord -= np.min(coord, 0) # rgb norm if dataset in ['S3DIS', 'ScanNet']: feat = feat / 255. if rgb_mean is not None and rgb_std is not None: feat = (feat - rgb_mean) / rgb_std return torch.FloatTensor(coord), torch.FloatTensor(feat), torch.LongTensor(label) if label is not None else None ================================================ FILE: segmentation/util/utils.py ================================================ import importlib import argparse import random import logging import sys import numpy as np import torch from torch import nn import torch.optim.lr_scheduler as lr_scheduler from dataset.S3DISDataLoader import S3DIS from modules.pointops.functions import pointops def main_process(args): """ Determine whether the main process """ return not args.multiprocessing_distributed or ( args.multiprocessing_distributed and args.rank % args.ngpus_per_node == 0) class AverageMeter(object): """Computes and stores the average and current value""" def __init__(self): self.reset() def reset(self): self.val = 0 self.avg = 0 self.sum = 0 self.count = 0 def update(self, val, n=1): self.val = val self.sum += val * n self.count += n self.avg = self.sum / self.count def intersectionAndUnion(output, target, K, ignore_index=255): # 'K' classes, output and target sizes are N or N * L or N * H * W, each value in range 0 to K - 1. assert (output.ndim in [1, 2, 3]) assert output.shape == target.shape output = output.reshape(output.size).copy() target = target.reshape(target.size) output[np.where(target == ignore_index)[0]] = ignore_index intersection = output[np.where(output == target)[0]] area_intersection, _ = np.histogram(intersection, bins=np.arange(K + 1)) area_output, _ = np.histogram(output, bins=np.arange(K + 1)) area_target, _ = np.histogram(target, bins=np.arange(K + 1)) area_union = area_output + area_target - area_intersection return area_intersection, area_union, area_target def intersectionAndUnionGPU(output, target, K, ignore_index=255): # 'K' classes, output and target sizes are N or N * L or N * H * W, each value in range 0 to K - 1. assert (output.dim() in [1, 2, 3]) assert output.shape == target.shape output = output.view(-1) target = target.view(-1) output[target == ignore_index] = ignore_index intersection = output[output == target] area_intersection = torch.histc(intersection, bins=K, min=0, max=K - 1) area_output = torch.histc(output, bins=K, min=0, max=K - 1) area_target = torch.histc(target, bins=K, min=0, max=K - 1) area_union = area_output + area_target - area_intersection return area_intersection, area_union, area_target def find_free_port(): import socket sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) # Binding to port 0 will cause the OS to find an available port for us sock.bind(("", 0)) port = sock.getsockname()[1] sock.close() # NOTE: there is still a chance the port could be taken by other processes. return port def set_seed(seed): """ Setting of Global Seed """ np.random.seed(seed) random.seed(seed) torch.manual_seed(seed) # cpu torch.cuda.manual_seed(seed) torch.backends.cudnn.deterministic = True # consistent results on the cpu and gpu torch.backends.cudnn.benchmark = False def worker_init_fn(worker_id, seed=None): if seed is not None: random.seed(seed + worker_id) np.random.seed(seed + worker_id) torch.manual_seed(seed + worker_id) torch.cuda.manual_seed(seed + worker_id) torch.cuda.manual_seed_all(seed + worker_id) def get_logger(log_dir, model): logger_name = "main-logger" logger = logging.getLogger(logger_name) logging.root.handlers = [] logging.basicConfig( level=logging.INFO, format="[%(asctime)s %(levelname)s %(filename)s line %(lineno)d %(process)d] %(message)s", handlers=[ logging.FileHandler('%s/%s.txt' % (log_dir, model)), logging.StreamHandler(sys.stdout) ] ) return logger def get_aug_args(args): dataset = args.dataset if 'S3DIS' in dataset: aug_args = {'scale_factor': 0.1, 'scale_ani': True, 'scale_prob': 1., 'pert_factor': 0.03, 'pert_prob': 1., 'rot_prob': 0.5, 'shifts': [0.1, 0.1, 0.1], 'shift_prob': 1.} return aug_args else: raise Exception('No such dataset') def get_dataset_obj(args): dataset_name = args.dataset if 'S3DIS' in dataset_name: return S3DIS def get_dataset_description(args): dataset_name = args.dataset if 'S3DIS' in dataset_name: return '%s_A%d' % (dataset_name, args.test_area) if 'ScanNet' in dataset_name: return dataset_name def get_loop(args): if 'S3DIS' in args.dataset: return 30 if 'ScanNet' in args.dataset: return 6 else: raise Exception('No Fixed Loop for the Dataset') def get_class_weights(dataset_name): # pre-calculate the class weight if dataset_name == 'S3DIS_A1': num_per_class = [0.27362621, 0.3134626, 0.18798782, 1.38965602, 1.44210271, 0.86639497, 1.07227331, 1., 1.05912352, 1.92726327, 0.52329938, 2.04783419, 0.5104427] elif dataset_name == 'S3DIS_A2': num_per_class = [0.29036634, 0.34709631, 0.19514767, 1.20129272, 1.39663689, 0.87889087, 1.11586938, 1., 1.54599972, 1.87057415, 0.56458097, 1.87316536, 0.51576885] elif dataset_name == 'S3DIS_A3': num_per_class = [0.27578885, 0.32039725, 0.19055443, 1.14914046, 1.46885687, 0.85450877, 1.05414776, 1., 1.09680025, 2.09280004, 0.59355243, 1.95746691, 0.50429199] elif dataset_name == 'S3DIS_A4': num_per_class = [0.27667177, 0.32612854, 0.19886974, 1.18282174, 1.52145143, 0.8793782, 1.14202999, 1., 1.0857859, 1.89738584, 0.5964717, 1.95820557, 0.52113351] elif dataset_name == 'S3DIS_A5': num_per_class = [0.28459923, 0.32990557, 0.1999722, 1.20798185, 1.33784535, 1., 0.93323316, 1.0753585, 1.00199521, 1.53657772, 0.7987055, 1.82384844, 0.48565471] elif dataset_name == 'S3DIS_A6': num_per_class = [0.29442441, 0.37941846, 0.21360804, 0.9812721, 1.40968965, 0.88577139, 1., 1.09387107, 1.53238009, 1.61365643, 1.15693894, 1.57821041, 0.47342451] elif dataset_name == 'ScanNet_train': num_per_class = [0.32051547, 0.1980627, 0.2621471, 0.74563083, 0.52141879, 0.65918949, 0.73560561, 1.03624985, 1.00063147, 0.90604468, 0.43435155, 3.91494446, 1.94558718, 1., 0.54871637, 2.13587716, 1.13931665, 2.06423695, 5.59103054, 1.08557339, 1.35027497] elif dataset_name == 'ScanNet_trainval': num_per_class = [0.32051547, 0.1980627, 0.2621471, 0.74563083, 0.52141879, 0.65918949, 0.73560561, 1.03624985, 1.00063147, 0.90604468, 0.43435155, 3.91494446, 1.94558718, 1., 0.54871637, 2.13587716, 1.13931665, 2.06423695, 5.59103054, 1.08557339, 1.35027497] else: raise Exception('No Prepared Class Weights of Dataset') return torch.FloatTensor(num_per_class) def get_rgb_stat(args): if 'S3DIS' in args.dataset: mean, std = [0.52146571, 0.50457911, 0.44939377], [0.19645595, 0.19576158, 0.20104336] elif 'ScanNet' in args.dataset: mean, std = [0.08400667, 0.08400667, 0.08400667], [0.28983903, 0.28983903, 0.28983903] else: return None, None return np.array(mean, dtype=np.float32), np.array(std, dtype=np.float32) def get_model(args): module = importlib.import_module('models.%s' % args.model) return module.Model(args) def get_optimizer(args, model): param_dicts = model.parameters() if args.optimizer == 'SGD': optimizer = torch.optim.SGD(param_dicts, lr=args.learning_rate, momentum=args.momentum, weight_decay=args.weight_decay) elif args.optimizer == 'AdamW': optimizer = torch.optim.AdamW(model.parameters(), lr=args.learning_rate, weight_decay=args.weight_decay) else: raise Exception('Not impl. such optimizer') return optimizer def get_scheduler(args, optimizer): if args.scheduler == 'step': scheduler = lr_scheduler.MultiStepLR(optimizer, milestones=args.lr_decay_epochs, gamma=args.lr_decay) else: raise Exception('Not impl. such scheduler') return scheduler def get_loss(weight=None, ignore_label=None): return nn.CrossEntropyLoss(weight=weight, ignore_index=ignore_label) def get_test_args(): return argparse.Namespace() def pc_median_filter_gpu(coord, label, group_size=16): """ :param coord: coordinates of a whole point cloud [N, 3] :param label: segmentation results of a whole point cloud [N,] :param group_size: num of neighbors for filtering """ offset = torch.IntTensor([coord.shape[0]]).to(coord.device) group_idx, _ = pointops.knnquery(group_size, coord, coord, offset, offset) # [N, group_size] group_label = label[group_idx.view(-1).long()].view(coord.shape[0], group_size) # [N, group_size] median_label = torch.median(group_label, 1)[0] return median_label.cpu().numpy() ================================================ FILE: visualization/airplane_0001.txt ================================================ -0.098790,-0.182300,0.163800,0.829000,-0.557200,-0.048180 0.994600,0.074420,0.010250,0.331800,-0.939500,0.085320 0.189900,-0.292200,-0.926300,0.239000,-0.178100,-0.954500 -0.989200,0.074610,-0.012350,-0.816500,-0.250800,-0.520100 0.208700,0.221100,0.565600,0.837600,-0.019280,0.545900 0.404700,0.080140,-0.002638,0.002952,0.973500,-0.228800 -0.043890,-0.115500,-0.412900,-0.672800,0.679900,-0.291600 -0.525000,0.158200,0.303300,0.000000,-0.413200,0.910600 -0.191700,-0.160900,0.657400,0.228400,-0.071910,0.970900 -0.267300,-0.265700,-0.804700,-0.992800,0.095000,0.073630 0.694500,-0.135400,0.304400,0.023350,-0.973600,0.227200 0.186300,-0.376900,0.426500,0.562700,-0.531300,0.633300 -0.661600,-0.193600,0.102400,0.031270,0.768600,-0.638900 0.082090,0.160900,0.201000,-0.021110,0.968000,-0.250000 -0.320800,0.073440,-0.009860,-0.037590,-0.948400,-0.314900 0.246400,-0.197800,0.130300,0.023760,-0.939300,0.342400 0.001779,-0.038230,-0.784800,0.783800,0.607400,-0.129100 0.061140,-0.017800,-0.094900,0.665400,0.715000,-0.214700 0.550500,0.169500,0.301900,0.000000,0.702600,0.711600 -0.196800,-0.387400,0.417100,-0.023430,-0.761800,0.647300 -0.393700,-0.143600,0.305200,-0.031960,-0.971300,0.235800 -0.000442,-0.374300,-0.645700,0.089020,-0.868000,0.488600 0.092050,-0.059880,0.447800,-0.952200,0.271300,-0.140500 -0.853100,0.171800,0.267000,-0.062610,0.997400,0.035810 -0.218700,0.172400,0.294200,0.000000,0.991700,0.128500 0.857200,0.171600,0.265400,0.192600,0.972600,0.130000 -0.901500,-0.128400,0.273000,-0.896100,0.118600,0.427600 -0.667200,0.078680,-0.011820,0.000351,0.989800,-0.142300 0.701500,0.074850,-0.025130,-0.060230,0.016420,-0.998000 0.913200,-0.187100,0.114700,0.022700,-0.935800,0.351700 -0.007828,-0.264200,-0.185700,0.133700,0.984200,-0.115800 0.514400,-0.198900,0.102600,-0.027860,0.730500,-0.682400 0.224200,-0.229000,-0.645700,0.021850,0.981300,-0.191000 -0.065370,-0.300100,-0.945700,-0.025270,-0.999000,-0.036020 -0.031840,0.047050,0.632800,-0.539200,0.503100,0.675400 0.306300,0.152500,0.294000,0.000000,-0.960800,0.277200 0.393700,-0.139900,0.313100,0.021050,-0.824300,0.565800 -0.092960,0.084370,0.056500,0.000003,-0.946600,0.322400 -0.185900,-0.224500,-0.586600,-0.000442,-0.979000,0.204000 -0.115300,-0.155400,0.391500,-0.757900,0.521700,-0.391700 0.000016,-0.345800,0.298600,0.002517,0.674900,-0.737900 -0.665700,0.008514,0.202400,-0.979200,0.016240,-0.202400 0.103900,-0.056990,0.223300,0.998800,0.042160,0.022850 -0.322500,-0.206400,0.107300,-0.032420,-0.940000,0.339700 0.062460,-0.217700,0.026150,0.678400,-0.725800,0.114200 -0.053780,0.081300,0.387300,-0.536600,0.843800,-0.004537 0.180500,0.090560,0.030730,-0.005058,0.938000,-0.346500 0.003237,-0.160900,-0.624400,1.000000,-0.007297,-0.004346 -0.492200,0.097440,0.091620,0.000000,-0.945100,0.326800 0.662400,0.035890,0.204400,0.922800,0.039630,-0.383300 -0.099650,-0.126500,-0.049810,-0.994700,-0.097350,-0.033170 0.711000,-0.193700,0.102800,-0.013360,0.733600,-0.679400 -0.585100,-0.134500,0.312900,-0.025900,-0.784900,0.619100 -0.825800,0.097440,0.091620,0.000000,-0.945100,0.326800 -0.066960,-0.074600,-0.229900,-0.848300,0.488600,-0.204100 0.049220,-0.269300,-0.799500,0.000000,-0.979100,0.203400 0.881200,-0.131200,0.300200,0.415200,-0.750800,0.513700 -0.946200,-0.183300,0.102500,0.023430,0.798800,-0.601100 0.014360,-0.275600,-0.481700,-0.265400,0.964100,0.002391 -0.100100,-0.014160,0.223500,-0.974100,0.221900,-0.042540 0.546900,0.123800,0.100700,0.020250,0.905000,-0.424900 0.825800,0.122000,0.097150,-0.015250,0.909000,-0.416600 -0.317200,0.144400,0.151300,0.000030,0.951600,-0.307500 0.134400,-0.216500,0.382100,0.932200,0.348600,-0.097240 -0.492100,-0.187700,0.142300,-0.031760,-0.942200,0.333500 0.080350,-0.150100,-0.296100,0.987100,0.124900,-0.100300 0.122600,0.078230,0.347000,-0.566700,0.763100,0.310600 0.057420,0.110700,0.505300,0.550600,0.789900,0.270100 -0.235200,-0.141600,0.262200,0.037140,0.967600,-0.249900 -0.683100,0.168400,0.235600,0.000000,0.987700,-0.156400 -0.065070,-0.073350,0.523900,-0.709200,-0.608300,0.356300 -0.738400,-0.126400,0.257000,0.026860,0.975800,-0.217000 -0.103900,-0.250900,-0.749600,0.000000,0.978600,-0.205700 0.399200,0.118200,0.164500,0.000000,-0.966800,0.255600 0.047430,0.022240,0.097530,0.000143,0.211000,0.977500 -0.158500,-0.275300,0.297400,0.863400,-0.500800,0.061880 0.235600,-0.132400,0.295800,-0.029790,0.985900,-0.164700 0.120300,-0.213900,0.222100,0.919200,0.385000,-0.082260 -0.052810,-0.252200,-0.335200,-0.761800,-0.647800,-0.005893 -0.003240,-0.155400,-0.892300,-1.000000,-0.000104,-0.000322 -0.071080,0.170500,0.250900,0.015210,0.993500,-0.113100 -0.371900,0.158200,0.303300,0.000000,-0.413200,0.910600 0.546800,-0.153900,0.244800,0.023350,-0.965200,0.260300 0.700000,0.171300,0.261700,0.035500,0.995100,-0.091960 0.091220,-0.161500,-0.126800,-0.985800,0.165400,0.027450 -0.010790,-0.192500,0.288600,-0.112100,-0.962700,0.246100 0.251600,0.117200,0.160600,0.000000,-0.967000,0.254700 -0.804000,-0.172400,0.129600,0.035680,0.877700,-0.478000 0.202300,-0.266100,-0.783900,0.000000,-0.977900,0.208900 -0.175000,0.119300,0.168300,0.030240,-0.955500,0.293300 0.186800,-0.346200,0.288100,0.715200,-0.117300,-0.689000 -0.076560,-0.314400,0.411300,-0.000001,0.064670,0.997900 -0.099040,-0.051550,0.086550,0.988900,-0.139600,0.051340 0.853100,0.075100,-0.030770,0.009056,0.910300,-0.413800 0.393700,-0.176800,0.180600,0.023210,-0.950800,0.308800 0.014590,0.050880,0.261600,0.000001,-0.205600,-0.978600 0.104400,-0.101800,0.087000,0.998100,-0.060610,0.011240 -0.198000,-0.292600,-0.924200,-0.309600,-0.237200,-0.920800 -0.634100,0.127500,0.108600,0.000026,0.915800,-0.401700 0.068310,-0.023100,0.577900,0.903900,-0.338900,0.260900 0.797900,-0.161400,0.198100,0.022340,-0.954300,0.297900 -0.953800,0.124700,0.103600,-0.560600,0.823100,-0.090700 0.115800,-0.204400,-0.520300,0.416600,0.550700,0.723300 -0.039440,-0.242900,-0.049860,-0.451100,-0.885600,0.110800 -0.448400,0.159400,0.196600,-0.014860,0.962500,-0.271000 0.098450,-0.242500,-0.672200,-0.000013,-0.978500,0.206300 -0.061110,-0.004681,-0.034970,0.325500,-0.894000,0.307900 0.659900,-0.095810,0.165000,-0.892600,0.090470,0.441600 0.678100,0.135400,0.127700,-0.020250,0.930600,-0.365500 -0.103600,-0.031580,0.359000,0.989100,0.037550,-0.142200 0.546900,0.074930,-0.016070,-0.044600,-0.080630,-0.995700 0.065550,-0.296700,-0.949000,0.108700,-0.079230,-0.990900 0.065630,-0.318500,0.411200,-0.000003,-0.139700,0.990200 -0.061110,0.069700,0.512500,-0.701000,0.690600,0.178000 -0.842200,0.075260,-0.030750,-0.017060,0.868800,-0.494900 0.001412,-0.039790,-0.655000,0.697000,0.664700,0.269000 0.058990,-0.057830,-0.216900,0.710700,0.663700,-0.233100 0.005706,-0.150800,0.415400,-0.060790,0.947600,-0.313700 -0.110200,-0.070510,0.639200,-0.466400,0.315400,-0.826400 0.426600,0.172500,0.278000,0.000000,0.999400,-0.034010 -0.076550,-0.202400,-0.519600,0.006067,0.979300,-0.202100 0.138600,0.055690,0.173700,0.738400,-0.671500,0.062070 0.136500,0.129800,0.599800,0.170000,0.073470,0.982700 -0.224200,0.102600,0.056930,-0.000040,0.888100,-0.459600 0.920700,0.127400,0.171600,0.892400,0.079060,0.444300 -0.202300,-0.209600,0.109400,-0.031570,-0.936400,0.349500 0.089110,-0.106800,0.338200,-0.935400,0.351100,-0.042490 0.184500,0.144300,0.269500,-0.921100,0.058980,0.384800 0.067620,-0.172300,-0.416200,0.980200,0.148400,-0.130800 -0.021860,0.143300,0.147400,0.004775,0.939000,-0.343900 0.013910,-0.215600,0.171500,-0.158000,0.972200,-0.172600 0.300800,0.083100,0.052600,-0.000083,-0.953100,0.302600 0.016860,-0.089140,-0.011250,0.000007,-0.978600,0.205700 -0.087640,-0.179100,-0.177900,-0.977700,-0.208700,-0.024840 -0.590600,-0.165000,0.201000,-0.032010,-0.955900,0.291900 -0.203600,-0.270200,0.403800,-0.998500,0.051580,0.018540 -0.003240,-0.171800,-0.766500,-1.000000,0.000000,0.000000 -0.213300,-0.241900,-0.705400,0.001493,0.977700,-0.210000 -0.442900,0.078790,-0.010900,-0.009533,0.956800,-0.290700 -0.067980,-0.207100,0.055360,-0.738500,-0.666400,0.102900 -0.024280,-0.272200,-0.600600,-0.624300,-0.781200,-0.007362 -0.093080,-0.115900,0.274500,0.955500,0.290500,-0.051900 -0.573800,0.128600,0.203600,0.000000,-0.966800,0.255600 0.018100,-0.138900,-0.515400,0.333800,0.866900,-0.370300 -0.142000,0.092740,0.320400,0.510600,0.273300,-0.815200 0.010640,-0.068470,-0.324900,0.144000,0.935300,-0.323200 -0.355600,-0.156300,0.200500,0.001264,0.953900,-0.300100 0.602000,0.129600,0.207400,0.000000,-0.966800,0.255600 0.776600,0.126300,0.195100,0.000000,-0.967400,0.253400 -0.557800,0.073010,-0.011550,-0.004209,-0.998600,-0.053050 -0.077430,-0.144300,-0.312600,-0.979600,0.167500,-0.111200 0.048850,-0.253600,-0.290700,-0.693700,0.720200,-0.008354 0.043750,0.155500,0.301300,0.000000,-0.765000,0.644100 0.142100,-0.208600,0.107800,0.025950,-0.961500,0.273700 -0.190800,-0.385800,0.310200,0.839400,-0.382300,-0.386300 -0.782000,0.151700,0.171300,0.000000,0.946700,-0.322000 -0.043070,0.040330,0.152100,0.581500,-0.795900,0.168400 -0.054680,-0.278700,-0.843700,0.000000,-0.978500,0.206200 -0.042160,-0.017940,-0.136800,-0.471700,0.839100,-0.271000 -0.663800,-0.087720,0.163600,0.616800,0.312500,0.722400 -0.486800,-0.140400,0.234500,0.036540,0.963600,-0.264900 0.109400,0.123400,0.101000,0.020160,0.913400,-0.406500 -0.377300,0.111400,0.075240,-0.004978,0.910200,-0.414200 0.931600,-0.139100,0.203200,0.039430,0.948700,-0.313700 -0.013590,-0.278200,-0.710000,-0.643800,-0.765200,-0.007164 0.300800,-0.151300,0.212700,-0.029200,0.946700,-0.320700 -0.885900,0.124000,0.186300,0.000000,-0.966800,0.255700 0.076980,-0.008321,0.007805,-0.851500,-0.498600,0.162500 -0.754700,0.166100,0.303800,-0.021180,0.308400,0.951000 0.601500,-0.173600,0.141600,-0.013200,0.885400,-0.464700 0.038930,0.045510,0.387500,-0.735000,0.634500,-0.239100 0.809500,-0.193600,0.104300,0.022910,-0.936800,0.349000 -0.152700,-0.269900,-0.840000,0.000000,0.978400,-0.206900 0.913300,0.087100,0.063960,0.000000,-0.934900,0.354900 0.060750,0.069030,0.612000,-0.485000,0.622700,0.614000 -0.094920,-0.007591,0.458600,0.992700,-0.080930,-0.089220 -0.163700,0.075410,-0.014070,-0.062050,-0.018900,-0.997900 0.049310,-0.242000,-0.088750,0.558100,-0.824700,0.091560 0.039350,-0.095760,0.519400,0.388500,-0.802000,0.453700 0.131300,-0.272800,-0.853500,0.000000,0.984500,-0.175600 -0.814800,-0.122400,0.313900,-0.004962,-0.075560,0.997100 0.492600,0.133300,0.221500,0.000000,-0.966700,0.255800 -0.262600,-0.170400,0.171300,0.041990,0.914200,-0.403000 -0.825700,-0.151100,0.221000,-0.032020,-0.958900,0.282000 0.101000,-0.122300,-0.039110,0.996000,-0.078640,-0.043290 -0.092960,-0.346000,0.316100,0.000000,-0.976900,0.213600 0.623400,0.085710,0.060270,0.000001,-0.939400,0.342900 0.336300,-0.205100,0.104900,0.026360,-0.943200,0.331200 0.787500,-0.129800,0.312700,0.016200,-0.714500,0.699400 -0.064370,-0.206400,-0.417300,0.985000,0.160500,0.063730 0.025580,-0.272500,-0.389300,0.372500,-0.927800,0.021220 0.103100,-0.013380,0.354600,0.992400,0.123200,0.002125 -0.114800,-0.239500,-0.657900,0.000000,-0.978400,0.206500 0.262400,-0.280400,-0.853400,0.204400,-0.962200,0.180000 0.098440,-0.332900,0.312800,0.000000,0.820100,-0.572300 0.453900,0.118300,0.089890,0.015090,0.896200,-0.443300 -0.901900,0.079330,0.039540,0.000000,-0.970200,0.242400 -0.289800,0.139900,0.246500,0.000000,-0.966800,0.255700 0.081650,-0.199900,-0.208600,0.948900,-0.313500,-0.034460 -0.749200,0.076420,0.025960,0.000000,-0.983900,0.178800 0.705400,-0.160700,0.207900,0.023260,-0.957500,0.287500 -0.665900,0.041230,0.118600,-0.986800,0.022430,0.160400 0.732800,0.090400,0.072520,0.000059,-0.932400,0.361400 -0.918700,-0.159200,0.184500,-0.031820,-0.953100,0.300800 0.660000,0.016340,0.116900,-0.910400,-0.106200,-0.399800 -0.087230,-0.095140,-0.143800,0.963200,-0.250400,0.097470 0.081500,-0.140700,0.256100,-0.685100,0.685700,-0.245800 -0.010540,-0.054270,0.604500,-0.135100,-0.859800,0.492400 0.166700,-0.298800,0.360500,0.855200,0.487500,-0.176000 0.486200,-0.139500,0.307900,0.026510,-0.965200,0.260200 0.196900,-0.152100,0.218500,-0.034260,0.958500,-0.282900 -0.612500,0.172700,0.288900,0.000000,0.999800,0.021750 -0.074240,0.055930,0.278200,-0.773500,0.628400,-0.082580 -0.180400,-0.177700,0.204100,-0.032000,-0.954300,0.297200 0.044670,0.064580,0.173600,0.806500,0.589700,-0.041510 0.087560,0.013160,0.501100,-0.982600,-0.173100,-0.067750 -0.164100,-0.140700,0.318100,-0.013760,0.257100,0.966300 0.084180,-0.161800,0.152400,-0.923600,0.377200,-0.069120 -0.724400,-0.172400,0.164200,-0.032880,-0.946800,0.320100 -0.306000,-0.144600,0.312200,-0.032930,-0.929500,0.367400 -0.101700,-0.095740,0.190600,0.990200,0.137100,-0.028010 0.601500,-0.136300,0.309400,0.022260,-0.942500,0.333300 -0.415500,-0.201000,0.104500,0.028430,0.813000,-0.581600 -0.061160,-0.237400,-0.250600,0.845600,0.533800,0.000077 -0.101800,-0.122300,0.037390,-0.991900,-0.126200,-0.012020 0.012550,0.119900,0.426400,0.447700,0.799300,-0.401000 0.147700,-0.228000,-0.603400,0.000000,-0.977900,0.209000 -0.064770,-0.110800,0.446900,0.695400,0.652400,-0.301300 0.013720,0.046040,0.468700,0.449300,-0.883500,0.132100 0.027340,-0.211400,-0.558800,-0.060550,0.977300,-0.202900 -0.743700,0.124000,0.100700,0.000000,0.910900,-0.412700 -0.158100,0.168400,0.235600,-0.014580,0.987500,-0.156800 -0.003240,-0.106200,-0.706400,-1.000000,0.000000,0.000000 -0.070560,0.003198,0.572400,0.642500,-0.036980,-0.765400 0.328100,0.133500,0.124100,-0.040730,0.918100,-0.394200 0.164100,0.147000,0.159000,0.004341,0.925200,-0.379500 0.125800,-0.253000,-0.754700,-0.000028,0.977800,-0.209700 0.771100,0.155500,0.301300,0.007290,-0.741700,0.670700 -0.656400,-0.131600,0.246100,0.017460,0.967900,-0.250700 -0.131900,0.046260,0.176700,-0.616400,-0.779600,-0.110800 -0.563000,-0.200000,0.102300,-0.031940,-0.988700,0.146800 0.097950,-0.028810,0.137700,0.974100,0.222400,-0.041160 -0.153100,-0.334000,0.370500,0.000000,-0.976800,0.214000 0.143500,-0.267500,0.279500,-0.026190,-0.862600,-0.505200 0.333600,0.130700,0.211800,0.000000,-0.966800,0.255400 0.443000,-0.141200,0.234900,-0.035720,0.958100,-0.284100 0.090990,0.009667,0.277600,-0.952500,-0.291000,0.090320 0.005740,-0.231600,0.092670,0.067380,-0.985100,0.158500 0.503200,-0.161500,0.173200,-0.022980,0.927800,-0.372500 0.000006,0.136500,0.233600,0.000000,-0.966900,0.255200 0.102500,-0.134400,0.412800,0.448700,0.051770,0.892200 -0.366400,0.166000,0.223500,-0.015640,0.984000,-0.177700 -0.448400,0.172600,0.283500,0.000003,0.999800,-0.018290 0.257000,0.166200,0.223500,0.000092,0.973700,-0.228000 -0.007349,0.098570,0.324800,-0.295800,0.928200,-0.225600 -0.002910,-0.085120,-0.570200,-0.988700,0.109200,0.102500 -0.399200,0.114900,0.151500,0.000000,-0.971300,0.237900 -0.568700,0.104400,0.060560,0.000001,0.887200,-0.461500 0.029790,0.099330,0.091080,-0.169000,-0.623300,-0.763500 0.158600,-0.139200,0.317900,-0.003410,0.037000,0.999300 -0.024490,0.025010,0.064590,0.996900,-0.041090,-0.067590 0.258100,-0.253000,-0.729600,0.816600,-0.506200,0.277200 -0.005458,-0.307000,0.367100,0.020440,0.967200,-0.253100 -0.098430,0.124000,0.186300,0.000000,-0.966800,0.255700 0.141400,0.074780,0.249900,0.697200,-0.695000,0.175700 0.030810,-0.101400,-0.393900,-0.465400,-0.832000,0.302000 -0.063930,-0.229900,-0.123000,0.773100,0.633100,-0.037670 0.317200,-0.145500,0.299500,0.023360,-0.973100,0.229100 -0.059420,-0.155100,0.337400,0.626800,0.747100,-0.221300 -0.665700,0.095970,0.213700,-0.970200,0.059290,-0.234900 0.040540,-0.167200,0.342800,0.433700,-0.868600,0.239700 -0.127800,-0.226600,0.233400,0.868200,-0.478500,0.131400 0.177700,-0.296000,0.437200,-0.630100,0.423300,0.651000 0.776600,0.079500,-0.006589,0.006017,0.988500,-0.151200 0.437400,-0.200200,0.111100,0.023090,-0.934000,0.356500 -0.003240,-0.100700,-0.837600,-1.000000,0.000000,0.000000 -0.064610,-0.176200,0.235600,0.900600,0.386200,-0.199700 -0.300800,0.108000,0.067840,-0.020390,0.897200,-0.441200 0.043760,-0.285500,-0.876100,0.000034,-0.979100,0.203300 0.027180,-0.214100,-0.677300,0.886000,0.403000,-0.229500 0.634400,-0.135000,0.240000,-0.018880,0.956800,-0.290200 -0.258500,-0.279100,-0.879800,-0.591500,0.755100,-0.282800 0.623500,0.151500,0.290100,0.000000,-0.966700,0.255800 0.174500,-0.396200,0.343700,-0.989300,0.136900,0.050750 -0.552300,0.137100,0.131500,0.015060,0.920100,-0.391400 0.114800,0.172100,0.278000,0.000002,1.000000,-0.003477 0.031350,-0.002459,0.640400,0.453800,-0.265900,0.850500 0.082190,-0.074830,-0.139600,-0.934600,-0.324500,0.145500 0.847700,0.158000,0.191900,0.014750,0.947100,-0.320600 -0.007992,-0.243400,0.019310,-0.104500,-0.981100,0.163000 -0.147700,0.120600,0.093320,0.000000,0.907100,-0.420900 0.930600,0.073760,-0.029220,-0.000001,-0.990900,-0.134600 0.087050,-0.125500,-0.199200,-0.982900,-0.148400,0.109000 0.180500,-0.249100,-0.703300,0.000000,-0.977800,0.209600 0.196900,0.102900,0.108100,-0.000046,-0.954400,0.298500 -0.239500,0.073190,-0.009916,-0.046180,-0.987700,-0.149700 -0.234700,0.160900,0.200900,0.000009,0.965000,-0.262100 0.371900,0.103700,0.060960,0.004855,0.916800,-0.399300 0.070380,-0.216000,-0.351200,0.956100,-0.287700,-0.055360 -0.007942,-0.028740,-0.205000,-0.108100,0.946800,-0.303200 0.508600,0.083070,0.052530,-0.000051,-0.953100,0.302600 -0.003240,-0.210100,-0.843100,-1.000000,0.000000,0.000000 0.087180,0.011700,0.203000,-0.930300,-0.362500,0.055310 -0.144600,0.075970,0.242200,-0.587300,-0.038810,-0.808500 -0.087500,-0.225600,-0.591700,0.000000,-0.979100,0.203300 -0.513800,0.167400,0.232200,0.026710,0.983700,-0.177700 -0.000218,-0.035180,-0.060000,-0.002540,-0.203200,-0.979100 -0.004881,0.016420,0.322300,-0.111600,-0.395300,0.911700 0.858700,-0.158700,0.159200,-0.027600,0.913500,-0.405800 -0.875100,-0.178700,0.114000,0.045510,0.855500,-0.515700 -0.513800,-0.140000,0.303500,-0.032220,-0.973400,0.226900 -0.235100,0.109300,0.129700,-0.000090,-0.964300,0.264800 0.084880,-0.173000,0.081260,-0.915500,0.398000,-0.057970 -0.437400,-0.172500,0.193200,-0.031870,-0.953000,0.301400 0.083090,-0.196300,-0.044760,0.901500,-0.432300,0.020910 -0.105900,-0.046090,0.288900,-0.999900,0.015290,-0.002572 -0.094630,-0.056590,0.009839,0.967300,-0.234700,0.096750 0.240600,0.079340,-0.006556,0.006155,0.982400,-0.186800 -0.694500,0.150400,0.167400,0.000048,0.945400,-0.325900 0.475800,0.073030,-0.010440,-0.001547,-0.994800,-0.102000 -0.202300,-0.256600,-0.776900,0.000000,0.978500,-0.206200 -0.088670,-0.059740,-0.072040,-0.940900,0.317500,-0.117900 0.492200,0.144600,0.151200,-0.000013,0.922900,-0.385100 -0.120300,0.158200,0.303300,0.000000,-0.413200,0.910600 0.333600,0.077520,-0.010050,0.000057,0.773300,-0.634000 -0.010930,0.053010,0.565300,0.000000,-0.206200,-0.978500 -0.002267,-0.392100,-0.714300,-0.472500,0.650800,-0.594300 0.825900,-0.127200,0.253200,-0.034480,0.972700,-0.229600 -0.039640,0.076340,0.212700,-0.850700,0.513400,-0.113200 0.042830,-0.195000,0.234100,0.465400,-0.866300,0.181200 -0.132300,-0.209700,0.107000,0.062970,0.782300,-0.619800 -0.008588,0.134000,0.507700,-0.635600,0.731600,-0.246400 0.694500,0.126300,0.195100,0.000000,-0.967400,0.253400 -0.038760,-0.231600,-0.662000,-0.355900,0.894100,-0.271700 -0.089600,0.039220,0.344300,-0.827300,0.481700,-0.289100 -0.689100,0.085710,0.060260,-0.000254,-0.939400,0.342900 0.103900,0.093430,0.038370,0.005819,0.922900,-0.385100 -0.081780,-0.191900,-0.028500,0.914500,0.404000,-0.022050 -0.037700,-0.258700,-0.533800,0.792700,0.607900,0.046620 0.053550,-0.245000,-0.159800,0.637700,-0.768400,0.053510 0.060620,-0.247200,-0.732200,0.000072,0.978200,-0.207500 -0.035720,-0.173700,-0.568700,-0.753100,0.580800,-0.309100 0.060520,0.063780,0.320700,-0.269400,-0.957000,0.107200 -0.033170,-0.266300,-0.431100,0.573400,0.819300,-0.003694 0.092420,0.022500,0.433000,-0.954900,-0.295900,-0.023180 -0.782000,0.137800,0.238700,0.000000,-0.966200,0.257900 -0.100400,-0.112000,0.119400,0.988400,0.151300,-0.008432 -0.694600,-0.119100,0.309500,0.023290,0.971900,0.234300 -0.089990,-0.166800,-0.110400,0.980300,0.196900,0.014920 0.602100,0.139900,0.139600,-0.000336,0.932400,-0.361300 -0.032800,-0.255500,-0.771700,0.000024,0.979200,-0.202900 0.765600,0.109300,0.129700,0.000051,-0.964300,0.264600 -0.152700,-0.236900,0.372500,-0.833800,0.484400,-0.264800 -0.199800,-0.324800,0.444800,-0.429900,0.018140,0.902700 -0.081570,0.127500,0.108600,0.000000,0.915700,-0.401800 0.064380,0.207300,0.248600,0.100200,0.712600,-0.694400 0.238800,0.169500,0.301900,0.005111,0.720800,0.693100 -0.983300,0.086370,0.053690,-0.858700,-0.070370,0.507600 -0.094020,-0.098090,0.356000,-0.940400,-0.322700,0.107300 -0.486300,0.141700,0.143200,-0.000019,0.935200,-0.354100 -0.678100,0.155500,0.301300,0.000000,-0.764900,0.644200 -0.920100,0.073420,-0.024510,0.000000,-0.997800,-0.066070 -0.049020,-0.152900,-0.484100,-0.864000,0.448800,-0.228200 0.060170,-0.230200,-0.613900,-0.000103,-0.979000,0.203700 0.056280,-0.240100,-0.443700,0.924100,-0.376400,-0.065950 -0.131000,-0.290700,-0.937600,-0.050400,0.793000,-0.607100 0.399200,0.164000,0.213100,0.000016,0.974900,-0.222600 0.749300,-0.166000,0.149900,-0.012400,0.895600,-0.444800 -0.144000,-0.208900,-0.537100,-0.594100,0.190500,0.781500 -0.043630,-0.211400,0.132600,0.482000,0.866100,-0.132700 0.093810,-0.025570,0.069750,0.946200,0.314900,-0.074560 0.760100,-0.146100,0.254500,0.024040,-0.965300,0.260000 0.667300,-0.168700,0.147900,-0.027420,0.900900,-0.433100 -0.891400,0.102900,0.108100,0.000000,-0.954400,0.298400 0.950700,0.109100,0.114000,0.859900,-0.096050,0.501300 -0.086240,-0.139100,-0.230500,-0.983100,0.129600,-0.129400 -0.135600,-0.131400,0.638700,0.459000,-0.256700,0.850500 -0.289800,-0.165300,0.234000,-0.032680,-0.962000,0.270900 0.050950,-0.196800,-0.499100,-0.445600,0.654700,0.610600 0.062800,-0.088180,-0.275100,-0.829000,-0.516700,0.214000 0.853100,0.093360,0.038440,0.015250,0.919300,-0.393200 -0.021860,0.172400,0.294200,0.000000,0.991700,0.128500 -0.558400,-0.133100,0.253200,0.035410,0.969100,-0.244300 -0.099340,-0.026320,0.146900,-0.971100,0.232200,-0.055410 0.088750,-0.056710,-0.050310,-0.949100,-0.293200,0.115500 -0.056160,-0.019360,0.635400,0.298000,-0.051220,0.953200 0.197300,-0.281500,-0.857300,-0.000017,-0.978500,0.206400 0.100300,-0.068630,0.015780,0.982700,0.168000,-0.078090 -0.010930,-0.285400,-0.913300,0.005883,0.978900,-0.204100 -0.623000,0.078420,0.035680,0.000000,-0.975300,0.220800 -0.069060,0.064400,0.448000,0.741500,-0.669600,-0.042020 0.257000,0.117000,0.086040,0.000136,0.893500,-0.449000 0.355500,-0.140300,0.245400,-0.018680,0.959600,-0.280600 0.002273,-0.307900,-0.553700,0.977100,-0.179100,0.114500 0.546900,0.157200,0.187900,0.010090,0.952600,-0.304200 -0.076070,0.003485,0.032220,-0.828700,0.542300,-0.138500 0.103400,-0.089760,0.157700,0.995800,-0.084040,0.035240 0.060150,0.141500,0.143700,-0.021300,0.932400,-0.360900 0.886400,0.107000,0.121400,0.000000,-0.960000,0.279800 0.142400,-0.164400,0.187200,-0.039300,0.933800,-0.355500 -0.049720,-0.082530,-0.309100,-0.663600,0.697700,-0.270000 -0.076830,0.019330,0.100600,-0.822600,0.556100,-0.118800 0.660000,-0.038980,0.193900,-0.859100,0.046390,-0.509800 -0.503100,0.075530,0.020700,0.000000,-0.988000,0.154200 -0.661200,-0.172300,0.170700,-0.031860,-0.948600,0.314900 0.039070,-0.024760,-0.162500,0.441000,0.847200,-0.296300 -0.016620,-0.117900,0.487600,0.172600,0.873300,-0.455500 -0.284400,0.166100,0.303800,0.000000,0.306600,0.951800 -0.074390,-0.193400,-0.356300,-0.986500,-0.152100,-0.060250 -0.530600,-0.156000,0.184000,0.031620,0.929600,-0.367200 0.099750,-0.078160,0.283300,0.989800,-0.140500,0.022590 -0.743700,-0.191900,0.107700,-0.041170,-0.939200,0.341000 0.000011,-0.017920,0.105500,0.000033,0.111800,0.993700 -0.153200,-0.147000,0.251300,0.046840,0.968900,-0.243100 0.005423,-0.047310,-0.263100,0.071520,0.950700,-0.301600 0.096110,-0.145300,0.026450,-0.973800,0.226800,-0.015470 -0.007788,-0.269700,-0.251100,0.137200,0.986400,-0.090280 -0.366500,-0.180700,0.143000,0.033970,0.875200,-0.482600 0.639900,0.073150,-0.016650,-0.004711,-0.996800,-0.079610 -0.211700,-0.352000,0.360100,-0.969600,-0.240700,-0.044540 0.043960,-0.133000,-0.458100,0.695100,0.652500,-0.302000 0.371900,0.158200,0.303300,0.000000,-0.413200,0.910600 -0.048760,-0.089940,-0.015050,-0.001293,-0.978800,0.205000 0.080910,0.114000,0.575000,0.274400,-0.417800,-0.866100 -0.203500,-0.286700,0.337900,-0.960300,0.223500,-0.166700 -0.437500,0.124000,0.100700,0.000000,0.910900,-0.412700 0.045870,-0.255400,-0.219800,0.568500,-0.820500,0.060150 0.189800,0.124500,0.211700,0.800100,-0.589500,0.110900 0.054690,-0.312500,0.350600,-0.000022,0.936300,-0.351100 0.125800,-0.292900,-0.911100,0.000000,-0.977800,0.209500 -0.094630,-0.068290,0.409400,0.965800,0.217500,-0.140900 0.328000,-0.184700,0.161800,0.023170,-0.946600,0.321600 0.024680,-0.267100,-0.646500,-0.785900,0.618000,0.023110 0.070760,-0.151600,-0.355900,-0.983700,-0.155300,0.090440 0.002121,-0.031800,-0.724600,0.867300,0.497800,-0.003945 -0.190900,-0.236900,-0.645600,0.000060,-0.978600,0.205900 -0.628900,0.119300,0.168300,0.000000,-0.967400,0.253400 0.074130,0.034950,0.562000,0.958700,0.270200,0.088940 0.003237,-0.100700,-0.629800,0.999700,-0.005118,0.025380 -0.153100,-0.243500,-0.709300,0.000000,0.977600,-0.210300 0.162100,0.114700,0.319800,0.783800,-0.524000,0.333300 -0.190900,-0.325200,0.288000,0.729400,0.065980,-0.680900 -0.000012,-0.275600,-0.318100,-0.002090,-0.999600,0.027400 0.497700,0.171900,0.267100,0.003053,0.997100,-0.075660 -0.085270,-0.167600,0.103100,0.921600,0.383300,-0.060940 -0.050740,-0.144900,0.396300,-0.507500,-0.816000,0.276700 0.579800,-0.150700,0.195000,-0.002669,0.933000,-0.359800 -0.393800,-0.140500,0.245500,0.031020,0.967500,-0.251000 -0.432000,0.081570,0.047670,0.000000,-0.958400,0.285500 0.136600,-0.162500,0.249500,0.023330,-0.964100,0.264400 -0.776600,0.076310,-0.026690,0.002477,0.975400,-0.220500 0.057070,-0.206600,0.124500,0.625200,-0.769900,0.128000 -0.688600,0.105800,0.117500,0.000000,-0.957500,0.288300 -0.842200,0.089140,0.026890,0.000000,0.941400,-0.337200 0.755200,0.167700,0.231700,0.000000,0.985400,-0.170100 0.131300,0.136500,0.233600,0.000000,-0.966900,0.255200 0.053810,0.079600,0.439900,-0.323900,-0.945600,-0.031760 -0.013340,-0.259500,-0.114600,-0.167900,-0.978700,0.117700 -0.016400,-0.198900,-0.502000,0.000104,0.991400,-0.130700 0.814900,0.137800,0.238700,0.000000,-0.966200,0.257900 -0.727300,0.132100,0.216900,0.000000,-0.966700,0.255900 -0.448300,-0.147100,0.282700,-0.031660,-0.970900,0.237300 0.174400,0.172100,0.583700,0.524200,-0.565600,-0.636700 -0.771000,-0.159000,0.200900,-0.031330,-0.956300,0.290800 0.678100,0.089140,0.026890,-0.005700,0.939200,-0.343300 -0.086220,-0.018850,0.518400,0.961500,0.162300,-0.221800 -0.003240,-0.095250,-0.772000,-1.000000,0.000000,0.000000 -0.174200,0.118600,0.269500,0.483300,0.666500,-0.567600 -0.011450,-0.085920,0.546400,0.113100,0.852400,-0.510600 0.656300,0.165900,0.223500,0.005348,0.982000,-0.188500 0.109400,-0.332900,0.375700,0.000000,-0.976300,0.216400 0.541500,-0.125500,0.294900,-0.028430,0.985900,-0.164800 -0.385100,0.078150,-0.012130,-0.208400,0.751100,-0.626400 -0.032810,0.099080,0.096450,0.000723,-0.951500,0.307500 0.443000,0.093360,0.038440,0.015240,0.919300,-0.393200 -0.015780,-0.221800,-0.721900,-0.726000,0.615700,-0.306200 -0.163600,0.080340,0.043350,0.000000,-0.964000,0.265900 0.082290,-0.054920,0.504300,0.921600,-0.298200,0.248500 -0.030980,0.016750,0.270000,0.000000,-0.746100,-0.665800 -0.003082,-0.328200,-0.607200,-0.553700,0.710200,-0.434800 -0.568700,0.144700,0.264500,0.000000,-0.966100,0.258300 0.098450,-0.214000,-0.574300,0.000000,0.977700,-0.209900 0.021860,0.156100,0.183900,-0.056480,0.957100,-0.284100 -0.218700,-0.277600,-0.838500,0.000000,-0.977900,0.208900 -0.864200,-0.151600,0.168400,0.052110,0.919200,-0.390300 0.055410,-0.124000,0.443600,0.545000,-0.772000,0.327300 -0.410200,0.141000,0.250400,0.000000,-0.967400,0.253200 0.568800,0.098700,0.049660,-0.005479,0.885200,-0.465100 0.005369,0.006321,-0.098660,0.063650,0.957400,-0.281800 0.886000,-0.128200,0.243500,-0.014540,0.971000,-0.238500 0.967800,-0.180200,0.129400,0.056610,-0.929600,0.364100 0.038960,-0.260500,-0.530800,0.799100,-0.599300,-0.046490 0.574200,0.142300,0.255400,0.000000,-0.967400,0.253300 0.196900,-0.189500,0.157100,0.023080,-0.945600,0.324600 0.066120,0.052450,0.237600,-0.746300,-0.659900,0.087300 0.197400,-0.340100,0.384700,0.972000,-0.108600,0.208300 -0.825800,0.117200,0.160600,0.000000,-0.967000,0.254700 0.097860,-0.071940,0.392800,0.978900,-0.198300,0.049300 -0.622900,0.162000,0.204800,-0.000115,0.973500,-0.228500 0.091850,-0.130400,0.201600,-0.951500,0.301300,-0.062140 0.660000,0.070860,0.100200,-0.928000,-0.106200,-0.357100 -0.015740,-0.205200,0.234200,-0.165900,-0.965600,0.200100 0.448400,-0.181400,0.162700,0.023690,-0.947600,0.318500 0.825800,0.117200,0.160600,0.000000,-0.967000,0.254700 -0.355500,0.124000,0.186300,0.000000,-0.966800,0.255700 -0.278900,0.124000,0.186300,0.000000,-0.966800,0.255700 -0.344600,-0.136000,0.273000,0.026740,0.970900,-0.238100 -0.929200,0.134200,0.152900,-0.892800,0.095030,0.440300 -0.065620,-0.311900,0.350400,0.000000,0.936500,-0.350800 0.005496,-0.221700,-0.609400,0.060910,0.976700,-0.205800 0.147700,0.091870,0.076320,0.000000,-0.935100,0.354500 -0.153000,-0.193400,0.158600,-0.031880,-0.945800,0.323300 0.658800,0.090680,0.217800,-1.000000,-0.000220,0.000436 0.295300,0.150300,0.167500,0.005084,0.954100,-0.299300 -0.191400,-0.406400,0.365500,0.675400,-0.737400,0.013390 -0.098430,-0.289100,-0.893000,0.000033,-0.978500,0.206100 -0.054950,-0.106800,-0.358400,-0.789700,0.574200,-0.215900 0.042010,-0.240100,-0.034100,0.461900,-0.881000,0.102500 -0.003240,-0.160900,-0.711900,-1.000000,0.000000,0.000000 0.000003,-0.277600,-0.838500,0.000000,-0.977900,0.208900 0.010950,0.003681,0.575600,0.000016,-0.205900,-0.978600 0.880900,0.135300,0.229200,0.007947,-0.962800,0.270000 -0.639900,-0.120700,0.309700,0.028610,0.983700,0.177300 -0.574100,-0.170000,0.149100,0.045680,0.887600,-0.458300 0.404700,0.102900,0.108100,0.000000,-0.954400,0.298400 0.787400,0.090220,0.072060,-0.000032,-0.932500,0.361200 0.165000,-0.216100,-0.553000,0.628300,-0.168100,0.759600 -0.665600,-0.040260,0.136900,-0.978300,-0.071530,-0.194300 -0.218400,-0.143500,0.317100,0.010750,-0.367800,0.929900 0.027390,0.067140,0.517800,0.111600,-0.974200,0.196100 0.010970,0.017620,0.145100,0.246900,-0.657000,-0.712300 -0.085590,-0.058230,0.475800,0.929500,0.304200,-0.208500 -0.842200,0.158400,0.191800,0.000027,0.958400,-0.285300 0.056550,-0.096850,-0.329200,0.777500,0.586000,-0.228200 0.186900,-0.272900,0.317500,0.720300,0.524300,-0.454300 -0.077470,0.038020,0.217800,0.843400,-0.529500,0.091400 -0.098360,0.005582,0.406300,-0.974200,0.209700,0.083470 0.074610,-0.206400,-0.285500,-0.960800,0.274800,0.035290 -0.036690,0.106200,0.459000,-0.453800,0.865400,-0.212300 0.188100,-0.262000,0.396700,0.903000,0.406500,0.139100 0.547000,-0.176500,0.139100,-0.032550,0.887500,-0.459600 -0.011350,0.068010,0.417600,-0.930800,-0.033140,0.364100 -0.027340,0.037360,0.366300,-0.000347,0.977800,-0.209600 0.053560,0.004538,-0.038650,-0.804800,0.208000,0.556000 0.076570,0.141000,0.250400,0.000000,-0.967400,0.253200 -0.082030,-0.241000,-0.700200,0.015210,0.975000,-0.221500 -0.010520,-0.172300,0.357300,-0.104300,-0.950700,0.292200 -0.316700,0.161900,0.204700,-0.015280,0.973500,-0.228300 0.055820,-0.171400,0.291200,0.627900,-0.750400,0.206400 -0.888500,0.164600,0.227900,-0.754300,0.592000,0.283700 0.628900,-0.198100,0.103300,0.027040,-0.974200,0.224200 -0.491700,0.128600,0.203600,0.000000,-0.966800,0.255600 0.279400,-0.138100,0.263100,-0.029910,0.977700,-0.207600 -0.109300,-0.151800,0.309900,-0.031840,-0.968800,0.245700 0.634300,-0.168200,0.189300,0.023130,-0.953100,0.301900 0.257000,-0.175400,0.195400,0.023270,-0.955100,0.295500 -0.328100,0.104400,0.113000,0.000000,-0.956100,0.293000 -0.130800,0.140200,0.139400,0.000000,0.932400,-0.361400 0.971900,0.106300,0.065710,0.354300,0.880600,-0.314700 -0.010710,-0.113000,-0.453900,-0.168200,0.923800,-0.344000 0.027340,0.093530,0.369000,0.509900,0.174600,-0.842400 -0.664600,-0.044370,0.193600,-0.800000,0.042320,-0.598500 -0.218700,0.139900,0.246500,0.000068,-0.966800,0.255700 0.080560,0.019640,0.148900,0.869600,0.487000,-0.081180 0.003237,-0.221000,-0.788400,0.999900,-0.005024,0.010140 -0.037820,0.162900,0.208600,-0.010130,0.973300,-0.229500 0.034170,-0.066950,0.564000,-0.387300,0.763200,-0.517200 -0.880400,-0.149900,0.219100,-0.032480,-0.959300,0.280500 -0.002211,-0.298700,-0.756900,-0.424700,-0.766100,-0.482500 -0.055710,-0.243900,-0.179700,-0.675500,-0.736100,0.041760 0.438000,0.129600,0.207400,0.000000,-0.966800,0.255600 0.662900,-0.030230,0.140200,0.998000,0.012150,0.062440 -0.058210,-0.170300,0.287600,0.624300,0.756200,-0.196200 0.170000,-0.231100,-0.655600,0.000000,0.978200,-0.207700 0.628900,0.122100,0.097080,-0.009977,0.903100,-0.429200 -0.054660,-0.046260,0.575400,-0.635100,-0.621700,0.458400 0.721900,0.145400,0.155200,0.010550,0.950300,-0.311100 -0.000067,0.063960,0.116200,0.014360,0.980200,-0.197600 -0.081840,-0.195200,-0.226900,-0.966400,-0.255500,-0.028500 -0.606900,-0.150800,0.248100,-0.032050,-0.963900,0.264300 -0.771100,0.090370,0.072430,0.000086,-0.932400,0.361300 0.639900,0.119300,0.168300,0.000000,-0.967400,0.253400 0.088920,0.043990,0.374300,0.825000,0.301200,0.478100 -0.147700,-0.330600,0.315900,0.000000,0.809600,-0.586900 -0.029050,-0.270500,-0.377300,-0.431500,-0.901900,0.017670 0.727400,0.075530,0.020700,0.000000,-0.988000,0.154200 0.190900,-0.155900,0.269500,0.022480,-0.967600,0.251500 0.492300,-0.144100,0.220600,-0.022640,0.953500,-0.300500 -0.094210,0.008945,0.272400,0.971600,-0.234200,0.033130 -0.311600,-0.185100,0.167500,-0.031900,-0.947200,0.319100 0.109400,-0.271000,-0.807200,0.000000,-0.977800,0.209600 -0.798400,0.132400,0.120200,0.000000,0.922900,-0.385000 0.095850,-0.111400,-0.088720,-0.991900,-0.087320,0.092730 -0.713700,-0.139000,0.214200,0.032840,0.951000,-0.307500 0.448400,0.114900,0.151500,-0.000029,-0.971300,0.237900 0.064290,0.024910,0.049500,0.832100,0.554500,0.010650 -0.727300,0.114900,0.151500,0.000000,-0.971300,0.237900 -0.133500,-0.307500,0.409200,0.000000,0.544500,0.838800 0.074860,-0.212900,-0.126700,-0.892500,0.451000,-0.009385 0.218800,0.153100,0.175200,0.020330,0.951100,-0.308200 0.377400,0.142300,0.255400,0.000000,-0.967400,0.253300 -0.056940,-0.221400,-0.476800,0.981700,0.185900,0.040750 0.229700,0.095180,0.042230,-0.005102,0.926300,-0.376700 0.006538,0.078000,0.605800,0.094060,0.907500,0.409400 -0.147600,-0.231300,-0.619000,0.000000,-0.979100,0.203300 -0.020890,0.086900,0.260100,0.800400,0.582200,-0.142900 0.029330,0.081850,0.218500,-0.271000,0.942400,-0.195800 0.173900,-0.343200,0.336700,-0.652200,-0.744000,0.145600 -0.634400,0.142300,0.255400,0.000000,-0.967400,0.253300 0.264600,-0.263500,-0.778300,0.750300,-0.616100,0.239500 0.596100,0.083440,0.010360,0.004541,0.960700,-0.277500 -0.061100,-0.221700,0.005953,-0.670200,-0.735000,0.102900 -0.278900,0.075530,0.020700,0.000000,-0.988000,0.154200 0.864000,-0.191100,0.107300,0.020800,-0.940000,0.340400 0.147700,0.109300,0.129700,0.000000,-0.964400,0.264600 -0.803800,-0.140000,0.264400,-0.032880,-0.967100,0.252400 -0.459400,0.138900,0.242700,0.000000,-0.966100,0.258100 -0.213400,-0.175100,0.164900,0.011110,0.907900,-0.418900 -0.058280,-0.014980,-0.083600,0.664000,-0.712600,0.226600 -0.169500,-0.287100,-0.883800,0.000000,-0.977800,0.209400 0.114800,-0.150800,0.297400,0.023390,-0.972100,0.233300 -0.053260,-0.044410,-0.192000,-0.633800,0.732000,-0.250000 0.101300,-0.018440,0.403900,-0.995400,-0.077680,-0.055690 -0.248800,-0.199100,0.133400,-0.030190,-0.939200,0.342000 -0.350000,0.089140,0.026890,0.000000,0.941400,-0.337200 -0.162700,0.076110,0.147700,-0.449900,-0.807700,-0.381100 -0.109400,-0.272900,-0.816400,0.000000,-0.978500,0.206200 -0.071090,0.162100,0.304300,0.000000,-0.066080,0.997800 -0.065880,-0.075050,0.618200,0.687500,-0.643800,0.336000 -0.109400,0.139900,0.246500,0.000000,-0.966800,0.255700 0.191300,-0.207600,0.107600,0.016040,-0.947000,0.320900 -0.051700,0.080970,0.338200,-0.455700,0.889900,-0.021530 -0.612500,0.073010,-0.011880,0.000090,-0.999900,-0.014360 -0.959400,-0.153400,0.157900,-0.627100,0.778600,-0.022640 0.003226,-0.144400,-0.564200,0.989700,0.133900,-0.051280 -0.067180,-0.149700,-0.378500,0.960100,-0.236500,0.149500 -0.049210,0.123000,0.182400,0.000000,-0.966100,0.258200 0.721900,0.158200,0.303300,0.000000,-0.413200,0.910600 0.371900,-0.184800,0.131400,-0.027200,0.890400,-0.454300 0.700000,-0.129300,0.256300,-0.023180,0.973200,-0.228900 0.120900,-0.193900,0.149200,-0.016480,-0.947800,0.318300 -0.010530,-0.085190,-0.373800,-0.157900,0.934200,-0.320000 0.442900,-0.145600,0.286500,0.024250,-0.970800,0.238500 0.039190,0.092160,0.269300,0.680000,0.633100,0.369900 0.667200,0.171100,0.298600,-0.015370,0.942400,0.334100 0.088030,0.060610,0.280800,0.963600,0.121900,0.237700 -0.035180,-0.195400,-0.612600,-0.900300,0.387000,-0.199500 0.065420,0.015750,0.606800,0.879900,0.039470,0.473500 0.891400,0.083760,0.010290,0.000000,0.964200,-0.265300 -0.016340,0.088090,0.532300,0.058850,0.702400,-0.709400 0.082860,-0.128800,-0.252700,0.976900,0.185400,-0.105900 -0.055500,-0.199300,0.177900,-0.589600,-0.798700,0.120700 0.295300,-0.190500,0.126000,-0.017510,0.870600,-0.491700 0.033830,-0.259800,-0.586200,-0.866500,0.498500,0.024280 0.032810,0.171500,0.256200,-0.013240,0.995100,-0.097840 -0.125700,-0.174100,0.222300,-0.032010,-0.959000,0.281700 -0.054040,0.058780,0.591600,-0.712500,0.646100,0.273500 0.814300,0.172200,0.287400,0.075590,0.955800,0.284200 -0.261000,-0.253100,-0.758600,-0.124800,0.967700,-0.219000 0.109400,0.124000,0.186300,0.000000,-0.966800,0.255700 0.557800,0.113700,0.146500,0.000000,-0.971900,0.235600 -0.060860,-0.159600,-0.427900,0.962600,-0.231500,0.140900 -0.042820,-0.222100,-0.564600,0.656400,-0.740000,0.146800 -0.208800,-0.319400,0.398000,-0.970800,0.076240,0.227300 0.864100,0.142900,0.147500,-0.010400,0.938600,-0.344900 0.240600,-0.160800,0.246500,0.023840,-0.964600,0.262700 0.005465,0.095980,0.479300,0.026790,0.191500,0.981100 0.047180,-0.148500,0.391600,0.478300,-0.833100,0.277700 -0.429400,-0.177900,0.144000,0.023180,0.887200,-0.460800 -0.093270,-0.163200,0.014270,-0.957100,-0.288600,0.027460 -0.858700,-0.115900,0.289900,0.038520,0.979700,-0.196700 -0.026820,0.061400,0.299800,-0.067670,-0.993000,0.096410 0.131100,0.163000,0.566300,0.284100,-0.438400,-0.852700 0.158600,0.171400,0.298600,0.015230,0.940900,0.338500 -0.234900,-0.233000,-0.662900,-0.108900,0.983400,-0.144800 0.842500,-0.154300,0.218100,0.024100,-0.959500,0.280600 -0.076870,-0.117600,-0.273700,-0.951500,0.263800,-0.158400 -0.951600,0.084740,0.014290,-0.020300,0.955900,-0.293000 0.042540,-0.056790,-0.041010,0.615000,-0.167900,-0.770500 0.043760,-0.346000,0.316100,0.000000,-0.976900,0.213600 0.311700,0.099080,0.096450,0.000000,-0.946300,0.323400 0.907800,-0.171500,0.158800,0.023160,-0.946700,0.321300 0.033250,0.019390,0.291200,0.000134,-0.978500,0.206300 -0.003240,-0.133500,-0.799400,-1.000000,0.000000,0.000000 0.798500,-0.168400,0.142300,-0.008158,0.880000,-0.475000 0.093800,0.022290,0.325600,0.948800,0.314200,-0.031750 -0.114800,-0.308000,0.363100,0.000000,0.961500,-0.274900 -0.869500,0.137100,0.131500,0.000000,0.927800,-0.373000 -0.918600,-0.174100,0.140100,-0.031820,-0.942200,0.333700 -0.618000,-0.184000,0.140800,-0.031750,-0.941800,0.334500 -0.213300,0.144700,0.151200,0.005044,0.940400,-0.340100 -0.663000,-0.123000,0.194300,0.824700,-0.159600,0.542600 -0.098910,-0.116800,0.412200,-0.895700,0.437500,-0.079220 -0.100100,-0.106200,-0.006463,0.997600,-0.034280,0.059570 0.142200,0.082430,0.005278,-0.009331,0.967300,-0.253600 0.195700,-0.223500,-0.587400,0.370100,-0.810100,0.454600 -0.339100,0.146700,0.272200,0.000000,-0.967400,0.253300 -0.798400,0.172700,0.288900,-0.006614,0.999700,0.022080 -0.088290,0.022220,0.496500,-0.973600,0.222900,0.049360 -0.001609,-0.340200,-0.677400,0.549300,0.699800,0.456700 0.705500,0.102900,0.108100,0.000000,-0.954400,0.298400 -0.189600,0.119400,0.216500,-0.563400,-0.797900,0.214200 0.235200,-0.272900,-0.816400,0.000006,-0.978500,0.206200 0.098800,-0.170800,0.223600,0.024110,-0.960100,0.278800 -0.087590,-0.112500,-0.186900,-0.975300,0.193400,-0.106400 0.071060,0.108100,0.067720,-0.054790,0.851100,-0.522200 -0.754700,0.171000,0.256200,0.000000,0.995200,-0.097950 0.000053,0.071020,0.162700,-0.070820,-0.983400,0.167000 0.580000,-0.197700,0.108400,0.023720,-0.934300,0.355700 -0.864100,0.108000,0.067840,-0.020380,0.888000,-0.459400 0.047400,-0.081310,0.022660,0.000006,0.958600,0.284900 -0.793000,0.090560,0.030720,0.000001,0.933300,-0.359100 -0.585100,0.149100,0.163700,-0.000052,0.944600,-0.328400 0.946100,0.090410,0.030800,-0.020320,0.944800,-0.327100 -0.092190,-0.134500,0.232200,-0.938000,-0.338900,0.072950 0.197300,0.167000,0.227900,0.000000,0.983100,-0.183100 0.021880,-0.328000,0.397700,0.000000,-0.976200,0.216900 -0.095000,-0.101300,-0.098920,-0.982400,0.141300,-0.122500 0.049220,0.130700,0.211800,0.000000,-0.966800,0.255400 0.590600,-0.147200,0.266300,0.023240,-0.968500,0.248100 -0.028820,-0.231700,0.062740,-0.326300,-0.932400,0.155700 -0.040610,-0.046620,-0.042210,0.594900,0.176600,0.784100 -0.731400,0.073250,-0.021750,0.001755,-0.996900,-0.078200 0.468500,0.169500,0.301900,-0.005266,0.719100,0.694900 0.311700,0.141000,0.250400,0.000000,-0.967400,0.253200 -0.404700,0.126300,0.195100,0.000000,-0.967400,0.253400 0.232300,-0.287700,-0.910900,0.625300,-0.014130,-0.780300 -0.202300,0.099080,0.096450,0.000000,-0.946300,0.323400 0.082000,-0.018200,0.533300,-0.930600,0.179100,-0.319300 -0.935200,0.088890,0.068650,-0.000000,-0.933000,0.360000 0.087500,-0.279600,-0.886000,0.008833,0.980100,-0.198200 -0.073120,-0.205000,-0.312600,0.972000,0.222900,0.074490 -0.003240,-0.149900,-0.668100,-1.000000,-0.000002,-0.000002 -0.634400,0.107900,0.067910,-0.030440,0.890800,-0.453500 0.025030,0.049480,0.635500,0.411300,0.557200,0.721400 0.032560,-0.182200,-0.597500,0.772500,0.585600,-0.245500 0.509100,0.105800,0.117500,0.000000,-0.957500,0.288300 -0.012970,-0.009111,0.645400,-0.224500,-0.380100,0.897300 -0.273000,0.141700,0.143200,0.000000,0.935200,-0.354100 0.061540,-0.019710,0.105500,0.000584,-0.447000,0.894600 -0.158600,-0.254500,-0.766500,0.000102,0.979300,-0.202500 -0.029340,-0.271300,-0.491200,-0.512000,-0.858400,-0.030550 0.661700,0.107900,0.067930,-0.015280,0.917300,-0.397900 0.071550,0.105800,0.117500,0.000000,-0.957500,0.288300 -0.557800,0.166200,0.223500,0.010170,0.979600,-0.200700 -0.804000,-0.152700,0.169900,0.025850,0.915700,-0.401000 -0.098060,-0.129400,0.161200,-0.964700,-0.262000,0.027660 -0.088610,0.011300,0.168800,-0.923200,0.377100,-0.074620 0.192000,0.112700,0.151700,0.448100,-0.873700,0.189400 0.268000,0.143600,0.260500,0.000000,-0.966200,0.257700 -0.552300,0.101700,0.104200,0.000000,-0.951500,0.307600 0.886300,-0.159900,0.196200,0.022700,-0.954800,0.296300 -0.440000,-0.144000,0.227500,0.038770,0.956800,-0.288100 0.099830,-0.024110,0.305300,-0.992800,-0.098710,0.067620 0.875000,0.113300,0.078800,-0.015470,0.888900,-0.457800 0.722300,0.160600,0.201000,-0.004752,0.968300,-0.249900 0.470300,0.158000,0.191900,0.015630,0.941000,-0.338000 -0.104000,-0.085200,0.233800,-0.991000,-0.131200,0.026800 0.078730,0.047830,0.474600,-0.884200,-0.459000,-0.086810 -0.042460,-0.258600,-0.292400,0.591100,0.805200,-0.048030 -0.738200,-0.126700,0.314000,-0.016730,-0.303700,0.952600 0.101500,-0.062090,0.108400,-0.993500,-0.113500,-0.000238 -0.076200,-0.210500,-0.068480,-0.862500,-0.504900,0.034140 0.820300,0.081080,0.001335,0.009980,0.958400,-0.285400 -0.021030,0.062310,0.494800,-0.010870,-0.979200,0.202700 0.404600,-0.134200,0.267100,-0.034210,0.989200,-0.142700 -0.262500,0.122000,0.097140,0.020320,0.911500,-0.410700 0.005414,-0.301300,-0.951400,0.011370,-0.995900,-0.089510 -0.090760,-0.165600,0.059120,-0.938600,-0.341700,0.047280 -0.076560,-0.234900,-0.635900,-0.000006,-0.978500,0.206100 0.050020,-0.197200,0.190400,-0.570100,0.804400,-0.166900 0.039980,-0.169600,-0.538700,-0.845000,-0.475600,0.244600 -0.191400,0.158100,0.191900,0.000000,0.947200,-0.320700 0.099560,-0.099790,0.233800,0.977900,-0.187900,0.092050 0.023220,-0.260800,-0.690300,-0.919200,0.369800,0.135400 0.344500,0.153100,0.175200,0.005640,0.951300,-0.308300 -0.251600,0.169500,0.245600,-0.005027,0.992900,-0.119100 0.284400,0.109300,0.129700,0.000000,-0.964400,0.264600 0.366400,0.123700,0.100800,0.020400,0.913400,-0.406600 0.661300,-0.133600,0.194300,0.096720,-0.033880,0.994700 0.097130,-0.012280,0.459800,-0.989300,-0.045180,-0.139000 0.090990,-0.167900,-0.077620,-0.968600,0.247800,0.021160 -0.003240,-0.177300,-0.810300,-1.000000,0.000000,0.000000 0.180900,-0.404300,0.386600,-0.075790,-0.969400,0.233500 -0.115800,0.086110,0.018820,0.162400,0.868400,-0.468500 0.146300,-0.258600,0.376800,-0.921500,-0.373700,0.105900 0.060070,-0.179300,-0.459700,-0.949600,-0.213700,0.229200 -0.207700,-0.167100,0.237000,-0.032100,-0.961000,0.274600 0.103900,-0.231300,-0.619000,-0.000060,-0.979100,0.203400 0.002825,-0.220300,-0.885500,0.987200,-0.089380,-0.132300 0.949000,-0.155500,0.160600,-0.019140,0.911000,-0.412000 0.169500,-0.268000,-0.826000,0.000000,0.979200,-0.203000 -0.164100,0.162100,0.304300,0.000000,-0.063810,0.998000 0.284400,0.079980,-0.002583,-0.008385,0.975100,-0.221700 0.136700,-0.248300,-0.699500,0.000000,-0.978500,0.206300 -0.018290,-0.275700,-0.649900,-0.543100,-0.839600,-0.005893 0.754800,-0.190900,0.104900,-0.020800,0.794400,-0.607100 0.029140,0.071080,0.561500,-0.069600,-0.372400,-0.925500 -0.484900,-0.202200,0.101500,-0.023070,-0.843600,-0.536500 -0.880500,0.079330,-0.006570,0.004117,0.988400,-0.152100 0.089010,-0.161200,-0.170600,-0.990400,0.132500,0.038270 0.000072,-0.249400,-0.023370,-0.011500,-0.993200,0.115800 -0.175000,0.135500,0.127600,0.000000,0.925700,-0.378200 0.448400,0.166800,0.228800,-0.011860,0.993000,-0.117600 -0.443000,0.114900,0.151500,0.000000,-0.971300,0.237900 0.058770,-0.234800,-0.400300,-0.922200,0.384600,0.041620 -0.082180,0.046150,0.409300,0.892300,-0.449900,-0.037630 -0.191300,-0.155100,0.284800,-0.031670,-0.970900,0.237500 -0.355500,0.137100,0.131500,0.000000,0.927800,-0.373000 0.169500,-0.252200,-0.754800,-0.024730,0.970900,-0.238200 -0.071070,0.144700,0.151400,0.020290,0.940200,-0.340000 0.530500,0.142300,0.255400,0.000000,-0.967400,0.253300 -0.147700,0.130700,0.211800,0.000000,-0.966800,0.255400 0.022150,-0.274700,-0.432700,0.368000,-0.929800,0.005314 -0.265200,-0.133400,0.301800,0.013620,0.992300,-0.122900 0.136700,-0.318400,0.335800,0.000000,0.889900,-0.456200 -0.103700,-0.053780,0.201800,0.999100,-0.043340,0.003518 -0.519500,0.114900,0.151500,0.000000,-0.971300,0.237900 -0.568700,0.162100,0.304300,0.000000,-0.063810,0.998000 -0.034220,-0.047230,-0.238000,-0.450500,0.852200,-0.265900 -0.765700,-0.163800,0.148100,0.030480,0.913800,-0.405100 0.191400,0.077590,-0.009173,0.024450,0.702500,-0.711200 -0.168500,-0.276000,0.361100,-0.235300,0.283900,-0.929500 -0.057060,-0.238700,-0.389400,0.897200,0.437900,0.056890 -0.138500,-0.203000,0.395300,-0.877700,0.454400,0.152400 -0.694500,-0.185600,0.129300,-0.031240,-0.938900,0.342800 -0.076320,0.029720,0.538800,0.919500,-0.334200,-0.207000 0.096250,-0.134400,0.114100,-0.967500,0.246900,-0.054160 0.765600,0.147200,0.159000,0.000981,0.936100,-0.351700 -0.054690,-0.255700,-0.734600,0.000026,-0.977900,0.208900 0.158600,-0.279600,-0.886100,0.000000,0.977700,-0.209800 -0.000108,-0.009319,-0.139900,0.012210,-0.944400,0.328700 0.208300,-0.248100,-0.736100,0.000000,0.978400,-0.206900 -0.119700,0.045250,0.221300,-0.226300,0.304100,-0.925400 -0.328200,-0.145700,0.234500,0.036500,0.962900,-0.267300 0.164500,0.160900,0.200900,0.004752,0.971600,-0.236500 -0.037000,-0.302600,0.399700,0.000000,0.999800,0.018300 -0.114400,0.160900,0.200900,-0.000014,0.965100,-0.262000 0.187000,-0.337500,0.443100,0.692100,-0.075520,0.717800 -0.103300,-0.013390,0.316300,-0.986700,0.159900,-0.028770 -0.005839,-0.084790,-0.047160,0.073860,0.405600,0.911000 0.798400,0.136500,0.131800,-0.016000,0.928300,-0.371500 0.153100,0.170700,0.256300,-0.000072,0.995200,-0.097950 0.634300,-0.141900,0.282800,0.023360,-0.971500,0.235800 -0.049220,-0.330600,0.315900,0.000000,0.809600,-0.587000 -0.104100,-0.089800,0.064690,-0.999400,0.023760,-0.026070 0.399700,0.079330,0.039540,0.000000,-0.970200,0.242400 0.972900,0.076500,-0.026800,0.046430,0.970900,-0.234800 0.034230,-0.047620,0.601800,0.429100,-0.773800,0.465900 0.042340,0.029030,0.336800,0.033070,-0.978200,0.205200 0.029560,0.051090,0.072250,-0.468900,0.669800,-0.575800 -0.585200,0.109300,0.129700,0.000045,-0.964300,0.264700 0.322700,0.118200,0.164500,0.000000,-0.966800,0.255600 0.842200,-0.122900,0.314300,-0.000240,0.118100,0.993000 0.045980,-0.256300,-0.356000,-0.690400,0.723400,0.002478 -0.029290,-0.133700,0.450500,-0.294900,-0.882200,0.367200 0.355500,-0.130800,0.289400,-0.058840,0.985100,-0.161900 -0.030920,0.010740,-0.060120,0.335400,0.446300,0.829700 -0.694400,-0.145100,0.258500,-0.032550,-0.965900,0.257000 -0.069470,-0.048760,-0.153300,-0.800900,0.561100,-0.209100 0.459400,0.145700,0.268300,0.000000,-0.966700,0.255700 0.068150,-0.051280,-0.005266,0.949400,-0.070280,-0.306000 -0.076110,0.133300,0.221500,0.000000,-0.966700,0.255800 -0.200100,0.073830,0.007119,0.000000,-0.996200,0.087490 0.081540,-0.191500,-0.000783,-0.902900,0.427400,-0.045400 -0.003133,-0.062450,-0.613400,-0.996800,0.068830,0.040960 -0.042780,-0.005268,0.100500,0.163700,-0.336500,-0.927400 0.025250,-0.118000,0.484300,-0.253400,0.842800,-0.474900 -0.262500,0.085710,0.060270,0.000036,-0.939300,0.343000 0.019200,-0.263300,-0.749800,0.748600,-0.662000,0.036300 0.103500,0.096800,0.605900,0.609800,-0.747800,-0.262500 0.087510,-0.256500,-0.771500,0.000000,0.979200,-0.203000 0.475900,-0.132900,0.264100,-0.027510,0.982100,-0.186600 0.174300,-0.306900,0.296600,-0.978700,0.066360,-0.194500 -0.001871,-0.321900,-0.715000,-0.786800,-0.576900,-0.219300 0.114400,-0.310600,0.410700,0.000000,0.293300,0.956000 0.114900,-0.173300,0.404000,-0.589700,-0.428400,0.684700 0.046610,-0.249800,-0.487900,-0.879000,0.470700,0.075870 -0.398700,-0.160700,0.183400,0.028250,0.930700,-0.364600 -0.003240,-0.073370,-0.679100,-1.000000,0.000000,0.000000 0.087810,-0.163600,-0.227900,0.991100,-0.129400,-0.031620 -0.530500,0.097060,0.045910,0.010130,0.901300,-0.433200 0.339100,0.077430,0.031150,0.000000,-0.979400,0.201900 -0.631400,-0.161500,0.208000,-0.033320,-0.956700,0.289300 -0.240600,-0.175100,0.206200,-0.030970,-0.956400,0.290500 -0.005004,0.129100,0.112300,0.000025,0.918000,-0.396500 0.057180,-0.132600,-0.400600,-0.892200,-0.407500,0.195000 -0.371800,-0.204000,0.109200,-0.031680,-0.933600,0.356800 0.003659,0.022550,0.097630,-0.005267,0.220800,0.975300 0.235200,-0.247400,-0.695600,0.000048,-0.979100,0.203400 -0.063220,-0.092690,0.487400,0.677400,0.643900,-0.355700 -0.470300,0.102600,0.056930,-0.000108,0.888200,-0.459500 -0.596100,0.097440,0.091620,0.000000,-0.945100,0.326800 0.798900,0.160600,0.201000,-0.014700,0.965000,-0.262000 -0.049210,-0.287100,-0.883800,-0.000060,-0.977800,0.209600 -0.535800,-0.185100,0.145500,-0.031810,-0.942500,0.332800 0.082060,-0.095290,0.429000,-0.877300,0.433800,-0.205300 -0.492200,0.171900,0.267100,0.000000,0.997800,-0.066540 -0.251300,-0.252100,-0.717800,-0.137500,-0.967600,0.211600 -0.694500,0.086110,0.018110,0.000000,0.950700,-0.310000 -0.777100,-0.117200,0.298200,0.035510,0.989200,-0.142500 -0.042210,-0.257100,-0.219900,-0.538000,-0.840600,0.062360 0.454000,-0.153000,0.197100,-0.023520,0.939100,-0.342900 -0.094980,-0.036340,0.048610,-0.958700,0.273400,-0.078280 -0.710900,0.172600,0.283500,0.000000,0.999800,-0.018290 0.015450,0.057580,0.353200,0.946400,0.057790,0.317800 -0.006010,-0.099840,-0.412100,0.101200,-0.945000,0.310900 0.060170,-0.239500,-0.657900,0.000028,-0.978400,0.206500 -0.664000,0.055540,0.219200,0.707400,-0.059140,0.704300 0.891400,0.154500,0.180100,0.000734,0.961700,-0.274000 0.070100,-0.141500,0.354200,0.731400,-0.659300,0.174400 0.180600,-0.254500,0.355100,-0.239400,0.942300,-0.234000 -0.119800,0.074830,0.349500,0.695800,0.716100,0.054260 0.063930,-0.093530,0.487000,-0.664600,0.639900,-0.385800 -0.043110,0.030990,0.329300,0.632400,0.767100,-0.107500 -0.038280,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.120000,-0.160700,0.271700,-0.030800,-0.968700,0.246400 0.153600,-0.331800,0.380300,0.000191,-0.976300,0.216600 0.102400,-0.046270,0.174100,0.991500,0.127900,-0.025450 -0.049880,-0.069040,-0.270800,-0.652700,0.719200,-0.238000 0.290300,-0.170100,0.165300,-0.024040,0.913000,-0.407200 0.043710,-0.058090,-0.255200,0.546000,0.793000,-0.270100 0.601600,0.171500,0.261600,0.015190,0.995200,-0.097010 0.099760,-0.068140,0.343600,-0.985000,0.172400,-0.012230 0.196900,0.105900,0.064380,0.000131,0.888400,-0.459100 -0.683600,0.132100,0.216900,0.000294,-0.966700,0.255800 -0.218700,-0.286300,-0.880000,0.000013,-0.978500,0.206200 -0.009813,-0.197800,-0.678300,-0.572400,0.766700,-0.290800 0.252000,0.127500,0.199700,0.000000,-0.966800,0.255600 0.503000,-0.187200,0.142000,0.022450,-0.942400,0.333700 0.355400,-0.167000,0.215100,0.023200,-0.957500,0.287600 -0.093820,-0.163600,-0.064650,-0.972200,-0.234100,-0.005646 -0.036200,0.105200,0.501500,-0.496900,-0.762500,0.414500 -0.018090,0.099860,0.384100,-0.474500,0.825800,0.304900 0.765600,0.093660,0.038300,-0.005150,0.932100,-0.362100 -0.105500,-0.084010,0.152200,-0.998000,-0.062460,-0.009469 0.131000,-0.235400,0.254500,0.907700,0.411500,-0.082070 0.147700,-0.340300,0.303800,-0.000005,0.749800,-0.661700 -0.169500,-0.270200,-0.803400,0.000000,-0.978500,0.206400 -0.831400,-0.186700,0.103800,0.026000,0.829500,-0.557900 0.421100,0.138900,0.242700,0.000000,-0.966100,0.258100 0.005477,0.146700,0.272200,0.000000,-0.967400,0.253300 -0.377300,0.149100,0.163700,-0.000001,0.944500,-0.328500 0.913300,0.118100,0.089980,0.010190,0.910700,-0.412900 -0.918300,-0.145000,0.231500,-0.069540,-0.954100,0.291400 0.669000,-0.197800,0.101200,0.006519,-0.881800,-0.471600 0.645300,0.170900,0.261700,0.015110,0.996500,-0.081730 -0.013010,0.051570,0.195200,0.354200,-0.920300,0.166300 0.530500,0.121900,0.178500,0.000000,-0.966200,0.257700 -0.606800,0.169600,0.245600,0.000013,0.990400,-0.138300 -0.021870,-0.023600,0.581400,-0.000001,-0.205800,-0.978600 -0.079500,-0.055840,-0.110800,0.922700,-0.357700,0.143500 -0.377300,0.171500,0.261600,-0.010140,0.997000,-0.076780 0.787900,-0.134500,0.228300,-0.022000,0.969100,-0.245700 -0.092860,-0.133500,-0.132200,0.996900,-0.032320,0.072230 -0.771100,0.116200,0.156700,0.000000,-0.968900,0.247400 0.201800,-0.144900,0.312900,0.019050,-0.918300,0.395400 0.021510,-0.184000,0.310400,0.251500,-0.930900,0.264800 -0.426600,0.149100,0.163700,0.014520,0.938200,-0.345700 0.080780,-0.055500,-0.104800,-0.912300,-0.375300,0.164100 -0.003240,-0.171800,-0.854000,-1.000000,0.000000,0.000000 0.082040,0.166100,0.303900,0.000000,0.306500,0.951900 -0.787600,-0.132900,0.225900,0.032000,0.957400,-0.286900 0.060270,-0.206200,-0.536600,0.207600,0.967800,-0.142400 0.415600,0.106200,0.064220,0.015190,0.878800,-0.477000 -0.131200,-0.284400,-0.871000,0.000000,-0.979100,0.203600 0.574200,0.166000,0.223500,-0.010150,0.982000,-0.188700 0.032800,0.112700,0.142400,-0.000036,-0.970000,0.243200 0.021880,-0.338900,0.348500,0.000000,-0.976300,0.216400 0.084620,-0.110200,0.386900,0.919100,-0.387200,0.072950 -0.525100,-0.142100,0.224300,0.031830,0.956400,-0.290200 0.590600,0.152900,0.175200,0.030920,0.954300,-0.297200 0.090060,-0.122200,-0.159900,-0.981700,-0.140000,0.129400 -0.071080,-0.264400,-0.776100,0.000000,-0.978500,0.206300 0.073700,0.048390,0.513800,-0.876800,-0.442700,-0.187800 0.667100,-0.156200,0.226200,0.023230,-0.960300,0.278200 -0.039700,-0.160000,-0.521800,0.785800,-0.554700,0.273500 -0.131200,0.100500,0.053390,0.020320,0.904200,-0.426700 0.000806,-0.107600,-0.538000,0.091570,0.716500,0.691600 -0.317100,-0.173000,0.204600,-0.033180,-0.954700,0.295900 -0.064050,-0.188400,-0.454600,-0.984300,0.101600,-0.144600 -0.003240,-0.139000,-0.744700,-1.000000,0.000000,0.000000 -0.098550,-0.105200,0.624700,0.292000,-0.566100,-0.770900 0.388300,0.136800,0.131600,0.009760,0.925800,-0.377900 -0.095320,-0.078530,-0.033960,0.981300,-0.170000,0.090150 0.071190,-0.061030,-0.179700,0.846000,0.511300,-0.151200 -0.041320,-0.236600,-0.618700,-0.842200,-0.536200,0.056000 -0.842100,-0.141100,0.255200,-0.032300,-0.965700,0.257700 -0.568700,0.076420,0.025960,0.000000,-0.983900,0.178800 0.125800,0.140100,0.140000,-0.011480,0.919600,-0.392600 -0.229700,0.121900,0.178500,0.000000,-0.966200,0.257700 -0.388300,0.092080,0.034540,-0.010230,0.928000,-0.372600 -0.093480,-0.016590,0.103300,-0.947100,0.311500,-0.076990 -0.173700,-0.302300,0.400600,0.007722,0.999900,0.015380 0.475800,0.104000,0.060800,-0.020270,0.893100,-0.449300 0.073630,-0.094440,-0.236500,-0.923900,-0.347300,0.160300 -0.171100,-0.127000,0.654400,-0.846600,0.446900,0.289100 0.079520,-0.182500,-0.317900,0.991900,-0.103300,-0.074240 0.267900,-0.137700,0.317100,0.026020,-0.201800,0.979100 -0.819900,0.128600,0.203600,0.000000,-0.966800,0.255600 0.196900,0.166100,0.303800,-0.000248,0.307200,0.951700 -0.045880,0.074310,0.553700,-0.586400,0.797300,0.143100 0.323200,-0.154700,0.262100,0.022560,-0.967700,0.251200 0.246100,0.131800,0.120400,0.025790,0.920700,-0.389400 0.002903,-0.067920,-0.739200,0.998200,-0.020280,0.055790 -0.175900,-0.314100,0.339600,0.429000,0.536800,-0.726600 -0.064480,0.024370,0.606400,-0.871400,0.184700,0.454500 -0.431600,0.167600,0.231800,0.015150,0.981500,-0.191000 -0.043740,-0.271000,-0.807200,0.000000,-0.977800,0.209600 -0.032790,0.054530,0.457900,-0.007199,-0.979100,0.203200 0.738300,0.123000,0.182400,0.000000,-0.966100,0.258200 -0.836300,0.129100,0.112300,0.000000,0.918000,-0.396500 -0.618100,-0.158800,0.170300,0.027970,0.908800,-0.416400 -0.001444,-0.066120,-0.855100,-0.228300,0.781400,-0.580800 0.760100,-0.159700,0.206600,0.023640,-0.957900,0.286300 -0.371900,0.104400,0.113000,0.000000,-0.956100,0.293000 0.475800,-0.197400,0.105900,-0.016070,0.809200,-0.587300 0.036690,0.065480,0.135700,0.226100,0.969400,-0.095780 -0.672700,0.144700,0.264500,0.000000,-0.966100,0.258300 -0.661700,-0.002322,0.130200,0.998300,0.027420,0.050750 -0.205100,-0.196900,0.652700,-0.659300,-0.010520,-0.751800 -0.322700,0.169500,0.245600,0.005096,0.992300,-0.124100 0.013540,-0.237600,0.050880,0.158200,-0.974400,0.160000 0.062180,-0.212000,0.064370,0.704000,-0.700700,0.115700 0.078420,-0.199600,-0.247100,-0.965700,0.256200,0.042720 -0.525000,0.143600,0.260500,0.000000,-0.966200,0.257700 0.000004,0.126300,0.195100,0.000000,-0.967400,0.253400 -0.065940,-0.039210,-0.014030,-0.937200,0.019430,-0.348200 -0.148500,-0.256000,0.265500,-0.736900,-0.399300,-0.545500 -0.204700,-0.346600,0.317000,-0.970100,-0.072050,-0.231800 0.536000,-0.153100,0.191700,-0.014300,0.926800,-0.375400 0.503100,0.084960,0.014400,0.005160,0.954000,-0.299700 0.710900,-0.168100,0.147000,-0.021680,0.893800,-0.447900 -0.147700,-0.223400,-0.581300,0.000000,-0.978500,0.206300 0.590600,0.166100,0.303800,0.000000,0.308600,0.951200 -0.278400,0.162900,0.208600,-0.000002,0.972000,-0.235200 -0.043270,0.036510,0.108400,-0.865000,-0.498000,0.061060 0.014220,0.038830,0.430900,0.610300,-0.786100,0.097840 -0.075160,-0.131600,0.369700,-0.772600,-0.601400,0.203500 0.174800,-0.298500,0.398100,-0.840000,0.524000,-0.140900 -0.273800,-0.206000,0.105000,0.102600,0.727500,-0.678400 -0.514000,0.157700,0.192000,0.015660,0.952800,-0.303200 -0.116700,-0.210300,0.200400,0.626700,-0.716300,-0.306900 0.739700,0.073250,-0.021740,-0.001012,-0.997300,-0.073880 0.099640,-0.095180,-0.011920,-0.996800,-0.069680,0.039370 0.063210,-0.156500,0.223600,-0.965200,0.239600,-0.104600 0.097440,-0.135600,0.070260,-0.974100,0.224600,-0.027610 -0.096760,-0.134900,0.086700,0.967900,0.250700,-0.020110 0.024430,0.085850,0.413400,0.548700,-0.252400,-0.797000 0.153200,-0.139200,0.275000,-0.063720,0.982500,-0.175200 -0.273500,-0.140400,0.261900,0.041310,0.972400,-0.229500 -0.339100,0.108000,0.067810,0.020360,0.884700,-0.465700 0.218900,-0.177400,0.192100,0.024340,-0.953900,0.299100 0.079900,0.056350,0.420200,0.849500,0.527600,0.007202 0.727400,0.144700,0.264500,0.000000,-0.966100,0.258300 0.514300,0.167700,0.231800,-0.010350,0.986600,-0.162700 0.514100,-0.135000,0.250900,-0.022580,0.966200,-0.257000 0.032450,-0.067030,-0.293500,-0.422700,-0.859400,0.287600 -0.072840,-0.216300,-0.159500,0.894700,0.446600,-0.008782 -0.469900,0.108100,0.125200,0.000000,-0.962500,0.271300 0.107900,-0.197900,0.184900,0.491600,-0.553400,-0.672400 -0.003240,-0.111700,-0.668100,-1.000000,0.000000,0.000000 -0.333100,0.134300,0.225400,0.000000,-0.966800,0.255600 -0.096070,-0.154800,-0.022790,-0.975300,-0.220500,-0.009922 0.535900,0.108200,0.067750,0.000006,0.891200,-0.453500 0.082040,-0.338900,0.348500,0.000000,-0.976300,0.216400 0.585600,0.107000,0.121400,0.000000,-0.960000,0.279800 -0.481400,-0.163600,0.169700,0.015370,0.916700,-0.399200 -0.606600,0.135300,0.229200,0.000000,-0.966900,0.255300 0.060650,-0.222400,-0.576700,0.083800,-0.981800,0.170400 -0.108900,-0.216700,-0.549400,-0.000040,-0.978400,0.206700 0.188800,-0.374000,0.316400,0.999800,0.002973,0.018600 0.012840,-0.187800,-0.649500,0.478900,0.801900,-0.357200 -0.143000,-0.095540,0.648700,-0.550500,0.331100,-0.766400 0.158600,0.125000,0.190100,0.000000,-0.967400,0.253200 0.355500,0.111700,0.138700,-0.000043,-0.967000,0.254900 -0.661300,0.078420,0.035680,0.000000,-0.975300,0.220800 -0.074020,-0.077720,-0.192800,0.900100,-0.400800,0.170800 0.512200,0.169500,0.301900,0.000140,0.726000,0.687700 -0.317200,0.123000,0.182400,0.000000,-0.966100,0.258200 0.028110,0.087430,0.330800,0.786800,0.615600,-0.044370 -0.222600,-0.225700,-0.628100,-0.180600,0.970400,-0.160400 0.071050,-0.201000,-0.389500,0.977000,-0.187200,-0.102400 -0.972400,-0.168300,0.126000,-0.037280,0.885600,-0.463000 0.060200,-0.243300,-0.252300,0.784100,-0.620500,0.010700 -0.628800,-0.142500,0.277400,-0.032160,-0.970300,0.239600 -0.043740,-0.248300,-0.699500,0.003832,-0.978600,0.206000 0.470800,0.107000,0.121400,0.000000,-0.960000,0.279800 0.013860,-0.253800,-0.085600,-0.157900,0.980600,-0.116300 -0.050380,-0.215700,0.096010,-0.544300,-0.828700,0.130700 0.071100,0.123000,0.182400,0.000000,-0.966100,0.258200 0.010470,-0.033750,0.629800,0.142100,-0.650800,0.745800 -0.398400,0.130600,0.116200,0.010360,0.918900,-0.394300 -0.546900,0.121900,0.178500,0.000000,-0.966200,0.257700 -0.000079,0.024870,0.654200,0.007251,0.071640,0.997400 0.700000,0.104000,0.060810,-0.040870,0.898800,-0.436500 0.060650,-0.069970,0.536100,0.652500,-0.573100,0.495700 -0.514100,0.075270,-0.015010,-0.004044,-0.066650,-0.997800 -0.522000,-0.198300,0.103100,0.007309,0.786200,-0.618000 -0.082010,-0.154300,-0.269200,0.997600,-0.027090,0.063780 0.437500,0.132100,0.120300,0.020560,0.939600,-0.341800 -0.705500,0.113500,0.078730,-0.020380,0.904000,-0.427100 0.120800,0.162100,0.208800,-0.036050,0.973900,-0.223900 0.793000,-0.123000,0.276600,-0.043350,0.982900,-0.178800 0.005479,-0.286300,-0.880000,0.000013,-0.978500,0.206200 -0.010480,-0.209200,-0.551700,0.000022,0.978200,-0.207700 -0.557900,-0.146500,0.207500,0.035660,0.941900,-0.334100 0.087510,-0.279800,-0.848900,0.000000,-0.978600,0.205900 0.024180,-0.000036,-0.060810,-0.419100,0.181200,0.889700 -0.092960,-0.279800,-0.848900,0.000000,-0.978600,0.205900 -0.190400,0.102300,0.133400,-0.739900,-0.658200,0.138600 -0.022110,0.107900,0.421600,-0.411100,0.858300,-0.307200 -0.158600,-0.240600,-0.663200,0.000000,-0.979100,0.203600 0.596000,-0.157600,0.227500,0.023480,-0.961100,0.275200 -0.103700,-0.047170,0.239700,0.998900,-0.042490,-0.020290 -0.721900,0.095330,0.042140,0.000003,0.913300,-0.407400 0.157300,0.195000,0.560300,-0.575200,0.643300,0.505300 -0.025360,-0.177500,0.323900,0.270600,0.922200,-0.276100 -0.839400,-0.177200,0.138900,-0.031180,-0.941900,0.334400 0.754700,0.116800,0.086120,0.000041,0.902400,-0.430800 -0.054680,-0.080840,0.020210,0.021700,0.999700,-0.005980 0.077980,-0.172300,0.193200,0.652200,-0.665600,-0.362800 -0.180500,-0.192100,0.133400,0.025600,0.871300,-0.490100 -0.546900,-0.124200,0.300100,0.031850,0.989800,-0.139200 0.825800,0.104100,0.060690,-0.005148,0.883900,-0.467600 -0.185900,-0.254000,-0.726700,0.000030,-0.978500,0.206300 -0.612000,0.138800,0.135700,0.015180,0.929900,-0.367600 -0.650800,0.147300,0.159000,-0.005601,0.940400,-0.340100 0.018260,-0.238400,-0.722800,-0.980600,0.183000,0.070170 0.097340,-0.127900,0.157600,0.976200,-0.209100,0.058370 0.191400,-0.232100,-0.622800,-0.000060,-0.978500,0.206200 -0.814800,0.073080,-0.006550,0.000000,-0.999700,0.023270 0.661700,0.147200,0.159000,0.010250,0.934000,-0.357200 -0.793000,0.170500,0.250900,0.000000,0.993600,-0.113100 0.421100,-0.164700,0.217400,0.023160,-0.959300,0.281500 -0.175000,0.109700,0.071550,0.000083,0.874600,-0.484900 -0.552300,0.156800,0.188000,-0.000177,0.960600,-0.277900 -0.360800,-0.161900,0.237400,-0.032960,-0.961300,0.273600 -0.052700,0.071670,0.250700,-0.461400,0.876800,-0.135300 -0.721900,0.158100,0.191900,0.000019,0.947200,-0.320800 0.262500,0.083100,0.052600,0.000000,-0.953100,0.302600 -0.109400,0.104400,0.113000,0.000000,-0.956100,0.293000 0.082230,0.010220,0.107100,0.890000,0.444800,-0.100700 -0.098830,-0.092160,0.320400,-0.965500,-0.253000,0.061700 -0.530400,-0.147200,0.271700,-0.031650,-0.968900,0.245300 0.023030,-0.219700,0.136500,-0.293300,0.942200,-0.162000 -0.891400,0.114900,0.151500,0.000000,-0.971300,0.237900 -0.869500,0.150400,0.167400,0.000003,0.945500,-0.325800 0.064760,-0.208800,-0.425000,-0.987200,0.154700,0.039150 -0.015790,-0.061670,-0.300900,-0.198500,0.928300,-0.314500 0.153300,-0.293000,-0.934700,0.195700,-0.090800,-0.976500 0.628900,0.153100,0.175200,-0.000021,0.949400,-0.314000 -0.021100,-0.217800,0.162600,-0.234200,-0.960200,0.152200 0.038290,-0.292900,-0.911100,0.000060,-0.977800,0.209600 0.103500,-0.111600,0.037350,0.995700,-0.091050,-0.016090 -0.045240,-0.196600,0.212900,0.504400,0.842200,-0.190600 0.095340,-0.160000,-0.011890,0.962600,-0.270200,0.022540 -0.623300,-0.196200,0.107200,-0.031680,-0.936700,0.348800 -0.415600,0.171400,0.298600,0.000000,0.935100,0.354300 0.054700,-0.270000,-0.835200,0.000000,0.977600,-0.210600 -0.020090,-0.132500,-0.491300,0.355400,-0.868900,0.344400 -0.082340,-0.127100,0.334600,0.888800,0.448800,-0.092540 0.026720,-0.241100,0.009700,0.299900,-0.943100,0.143400 0.064760,0.097860,0.469000,0.889200,-0.441600,0.119500 -0.333600,0.162100,0.304300,0.000000,-0.063820,0.998000 -0.075050,-0.029220,0.551000,-0.947500,-0.212100,0.239100 0.032100,-0.035880,-0.207500,0.406500,0.865600,-0.292500 0.102200,-0.046200,0.267000,0.998300,0.056780,0.012790 0.097480,-0.021810,0.219600,-0.978100,-0.208000,0.004269 0.836700,-0.179700,0.140100,0.023260,-0.942100,0.334600 0.087610,-0.139700,0.318000,0.331200,-0.185100,0.925200 0.174900,-0.179400,0.189300,0.023260,-0.952500,0.303700 0.021910,-0.258100,-0.120900,0.272600,-0.958400,0.084380 -0.077090,-0.198800,-0.262200,0.970200,0.232000,0.069530 -0.035200,-0.096190,0.521700,-0.348900,-0.831900,0.431500 -0.142200,0.172500,0.278000,0.000001,0.999400,-0.034010 0.058230,0.066790,0.541200,0.718300,0.681300,0.141100 0.383000,-0.202600,0.102500,0.007336,0.685200,-0.728300 0.076560,-0.240500,-0.700300,0.000013,0.978500,-0.206200 0.558300,0.129600,0.207400,0.000000,-0.966800,0.255600 -0.079930,-0.200500,-0.104800,0.908500,0.417400,-0.018490 0.048190,0.057860,0.272500,0.999500,0.031290,0.005854 -0.666700,0.161800,0.204700,0.005041,0.970300,-0.242000 0.003237,-0.193700,-0.739200,1.000000,0.000000,0.000000 -0.278900,0.109300,0.129700,0.000000,-0.964400,0.264600 -0.382400,0.134300,0.225400,0.000000,-0.966800,0.255600 -0.092510,-0.331000,0.384200,0.000000,-0.976300,0.216600 -0.776000,0.162000,0.204800,-0.005266,0.972000,-0.235000 0.224200,0.170300,0.250900,-0.005095,0.994700,-0.102800 -0.475700,-0.141000,0.304500,-0.031860,-0.973400,0.226900 0.010190,0.023640,0.362300,0.058010,-0.829200,0.555900 -0.003240,-0.062430,-0.810300,-1.000000,0.000000,0.000000 -0.235200,-0.259600,-0.789900,-0.040870,0.986700,-0.157100 -0.016400,0.170900,0.256200,0.020260,0.993900,-0.108200 0.700000,0.138900,0.242700,0.000000,-0.966100,0.258100 -0.667100,-0.122600,0.287000,0.009455,0.990400,-0.137700 0.170000,0.127200,0.108700,0.025410,0.904300,-0.426100 0.065060,0.069600,0.368900,-0.531300,-0.841100,0.101000 -0.101200,-0.035240,0.398500,0.995000,0.069650,-0.071690 -0.918700,0.109300,0.129700,0.000000,-0.964400,0.264600 -0.071090,0.111700,0.138700,0.000000,-0.967000,0.254800 0.535900,0.089140,0.026890,-0.005675,0.939300,-0.343000 -0.683500,-0.157200,0.216600,-0.031890,-0.957500,0.286600 -0.031430,-0.250600,-0.083390,-0.351700,-0.929100,0.114600 0.017230,0.047980,0.304300,0.934100,-0.215400,0.284600 0.918800,0.110700,0.134700,0.000000,-0.965100,0.261700 0.005345,-0.104900,0.518800,0.055570,-0.876400,0.478300 -0.049550,0.053280,0.184200,-0.467100,-0.826200,0.314900 -0.519100,0.105800,0.117500,0.000000,-0.957500,0.288300 0.003237,-0.144500,-0.832200,1.000000,0.000000,0.000000 -0.102600,-0.073890,0.267100,0.993700,0.110700,-0.016260 -0.240600,0.096090,0.087790,0.000000,-0.942000,0.335700 -0.007637,-0.229700,-0.755200,-0.732600,0.598700,-0.323700 -0.029620,-0.298500,-0.952600,-0.123000,-0.553500,-0.823700 -0.191500,-0.285700,0.303600,0.587800,0.499300,-0.636500 0.021880,0.051960,0.199000,-0.001402,-0.977900,0.209000 -0.085160,-0.183700,-0.143200,0.964700,0.261900,0.028760 -0.825800,0.102600,0.056930,-0.000055,0.888200,-0.459500 0.051530,-0.162400,-0.492300,0.901500,0.379600,-0.207600 -0.035330,-0.254900,-0.141500,-0.411900,-0.908700,0.068150 0.732800,0.133500,0.124100,-0.040730,0.918100,-0.394200 0.013790,-0.275200,-0.558700,-0.310900,0.949800,-0.036340 -0.167700,-0.211900,0.104500,-0.037520,-0.994000,-0.102400 -0.064810,-0.113800,-0.324300,0.896300,-0.399700,0.191900 0.077890,-0.020220,-0.034020,0.857700,0.494100,-0.142200 -0.738300,0.147300,0.158900,0.020390,0.931700,-0.362700 0.001670,-0.389700,-0.679600,0.888000,-0.432100,0.157300 0.103300,-0.084260,0.201400,0.995100,-0.096900,0.019520 0.072270,0.043170,0.199800,0.792100,0.604000,-0.087720 0.415600,-0.186000,0.151500,0.023150,-0.944900,0.326500 -0.776600,0.148000,0.277200,0.000000,-0.967400,0.253400 0.060440,0.041500,0.126600,0.657900,0.738000,-0.150100 0.015910,-0.197000,0.266500,0.196200,-0.947900,0.251000 -0.120300,-0.266100,-0.783900,0.000000,-0.977900,0.208900 0.246200,-0.172500,0.162300,-0.012550,0.914300,-0.404700 0.738200,-0.139900,0.281000,0.023370,-0.970100,0.241500 -0.092970,0.113600,0.078660,-0.010150,0.901200,-0.433400 -0.005155,-0.278000,-0.411200,-0.093530,-0.995200,0.027990 -0.078010,0.051500,0.480600,-0.882000,0.468500,0.050350 -0.066140,-0.232900,-0.211100,-0.831300,-0.555500,0.018370 -0.208100,-0.295500,0.371300,-0.968000,0.249500,0.026440 -0.052480,-0.226300,-0.531400,-0.969800,-0.223100,-0.098990 0.514000,-0.144300,0.284800,0.023250,-0.971200,0.237100 0.678100,0.116200,0.156700,0.000000,-0.968900,0.247400 0.131300,-0.219800,-0.564500,0.000000,-0.978600,0.206000 0.273800,-0.206700,0.104000,0.027040,-0.975100,0.220100 0.091370,-0.077300,-0.078200,-0.964600,-0.242800,0.103100 0.092970,-0.287400,-0.921100,-0.005011,0.985200,-0.171300 -0.017650,-0.267800,-0.742900,-0.914700,-0.382300,-0.131200 -0.049210,0.132400,0.120200,0.000000,0.922900,-0.385000 0.191800,-0.303700,0.332700,0.973600,0.153300,-0.168800 -0.295200,-0.198300,0.131200,-0.031790,-0.938600,0.343400 0.093310,-0.032760,0.035820,0.948400,0.304900,-0.086870 -0.088530,-0.043460,0.638100,-0.652000,0.585800,-0.481400 0.437600,0.073020,-0.010880,0.000450,-0.996800,-0.080290 -0.201900,0.168200,0.235700,0.005319,0.982000,-0.188700 -0.896900,0.156800,0.188000,0.015240,0.960500,-0.278000 -0.590600,-0.143600,0.277800,-0.032590,-0.970600,0.238400 -0.195400,-0.291600,0.436000,0.005054,0.496800,0.867900 -0.053460,0.026100,0.045790,0.894300,-0.205500,-0.397500 0.568800,0.094710,0.083960,0.000000,-0.939200,0.343300 -0.836900,-0.144000,0.188100,0.031730,0.933700,-0.356600 -0.015610,-0.169300,-0.596400,-0.381900,0.869900,-0.312100 0.166700,0.114800,0.267700,-0.691500,0.665500,-0.280900 -0.413400,0.073830,0.007119,0.000000,-0.996200,0.087490 0.639900,0.077430,0.031150,0.000000,-0.979400,0.201900 -0.043070,0.080700,0.424700,-0.113400,-0.861500,-0.494900 0.218800,0.149400,0.282300,-0.000010,-0.966200,0.257900 -0.136700,-0.138800,0.292400,0.033020,0.984700,-0.171400 0.059790,0.073550,0.492900,0.627400,0.776200,0.061540 0.563200,-0.176300,0.169500,0.022000,-0.948500,0.316100 -0.339100,0.116200,0.156700,0.000000,-0.968900,0.247400 0.273900,0.134300,0.225400,0.000000,-0.966800,0.255600 0.847700,0.124000,0.186300,0.000008,-0.966800,0.255700 0.399200,0.154500,0.180000,0.026090,0.943400,-0.330600 0.268000,0.158100,0.191900,-0.014780,0.941100,-0.337900 -0.464800,0.074760,0.015340,0.000000,-0.990900,0.134700 0.853100,0.109300,0.129700,-0.000025,-0.964300,0.264600 0.085170,-0.170700,0.119200,0.899700,-0.424800,0.100300 0.169500,0.085700,0.141900,0.723000,-0.690800,-0.000602 0.092980,0.169400,0.240200,0.018850,0.989500,-0.143200 0.190600,-0.375400,0.370800,0.970900,-0.237600,0.031320 -0.096060,-0.169400,0.195500,0.321000,-0.025640,-0.946700 0.050790,0.089930,0.580300,-0.521800,0.397700,-0.754700 0.672700,0.073080,-0.006560,0.000000,-0.999800,0.020470 -0.661700,0.094710,0.083960,0.014490,-0.951800,0.306500 0.164100,-0.147800,0.235200,-0.017880,0.958500,-0.284500 0.590600,0.119300,0.168300,0.000000,-0.967400,0.253400 0.109300,0.090230,0.072080,0.000002,-0.932500,0.361200 -0.257000,0.130700,0.211800,0.000000,-0.966800,0.255400 0.049080,-0.019800,-0.130100,0.579900,0.762500,-0.286900 -0.010050,-0.278800,-0.531400,-0.546400,-0.837400,-0.010810 0.333600,0.172500,0.288900,-0.035460,0.998900,0.032050 0.229700,-0.275700,-0.866500,0.020460,0.979700,-0.199200 0.601600,0.109400,0.071690,-0.005193,0.899400,-0.437000 0.032820,0.138900,0.242700,0.000000,-0.966100,0.258100 -0.032170,-0.238600,-0.004256,0.359700,0.927300,-0.103500 -0.052030,-0.246800,-0.454700,-0.890700,-0.453000,-0.036890 0.070410,-0.110500,-0.299600,0.916100,0.351600,-0.192900 0.078780,-0.208700,-0.175900,0.911300,-0.411600,0.012970 0.062760,-0.118600,-0.355700,0.889200,0.417200,-0.188000 0.989400,0.091790,0.038930,0.816300,0.494000,0.299200 -0.546400,0.134300,0.225400,0.000000,-0.966800,0.255600 0.452100,-0.126800,0.313200,-0.009513,0.823300,0.567600 0.453900,0.147500,0.159000,-0.000195,0.929400,-0.369000 -0.048620,0.036010,0.294400,0.997500,0.068070,-0.019160 -0.076170,-0.029630,-0.058820,0.872100,-0.447800,0.197400 -0.084180,-0.023400,0.009721,0.920000,-0.370700,0.127000 -0.050700,-0.041420,0.610300,-0.919600,0.296600,-0.257700 -0.142200,-0.291200,-0.903400,0.000022,-0.979100,0.203200 -0.005015,-0.231900,-0.659400,0.000296,0.978300,-0.207000 -0.251500,-0.270000,-0.835200,0.031000,0.977100,-0.210500 0.059870,-0.198400,0.157200,0.647600,-0.749900,0.135300 -0.191600,-0.352300,0.387300,0.999900,-0.000006,0.015280 -0.412900,-0.166500,0.215700,-0.031300,-0.957900,0.285300 -0.082630,0.013380,0.135600,0.884600,-0.452100,0.114000 0.025570,0.113900,0.516100,0.091590,0.798800,0.594500 -0.043740,-0.294800,-0.920300,-0.000060,-0.978500,0.206300 -0.820300,0.150400,0.167400,-0.005060,0.943100,-0.332600 -0.251600,0.158200,0.303300,0.000000,-0.413200,0.910600 0.016680,-0.272200,-0.350900,-0.211300,0.977200,-0.019220 0.023390,-0.112000,-0.441600,0.359700,0.883900,-0.299000 0.371900,0.167200,0.232600,-0.001364,0.989100,-0.147100 0.858600,-0.143400,0.255900,0.023930,-0.967200,0.252800 0.804400,0.105800,0.117500,0.000000,-0.957500,0.288300 0.776500,-0.169800,0.173500,0.023160,-0.950900,0.308600 0.787500,0.171600,0.267100,-0.000069,0.995300,-0.096890 -0.196900,0.081570,0.047670,0.000000,-0.958400,0.285500 0.069130,0.183500,0.271800,0.980800,0.091760,0.172100 0.041480,0.017250,0.572800,0.000007,-0.206600,-0.978400 0.662500,-0.096910,0.198400,0.935500,-0.037090,0.351500 -0.300800,0.134000,0.123900,0.000000,0.924100,-0.382100 0.068010,-0.221900,-0.318300,-0.939100,0.337800,0.063400 -0.322200,0.080340,0.043350,0.000004,-0.964000,0.265900 0.002980,-0.252800,-0.816200,0.999900,0.009010,-0.007252 -0.869500,0.081570,0.047670,0.000000,-0.958400,0.285500 -0.664600,-0.125800,0.161000,-0.748800,-0.122700,-0.651300 -0.984400,0.075530,0.020700,-0.000017,-0.988000,0.154200 -0.883200,-0.171900,0.149900,-0.029870,-0.944500,0.327200 0.273400,-0.166200,0.224600,0.023180,-0.960200,0.278400 0.037210,-0.222100,0.102600,0.391700,-0.908700,0.144400 0.847700,0.097440,0.091620,0.000000,-0.945100,0.326800 0.817400,0.074670,-0.031280,-0.040410,-0.668900,-0.742300 -0.020960,-0.270800,-0.343600,0.298500,0.954100,-0.023720 -0.246100,0.145700,0.268300,0.000000,-0.966700,0.255700 0.093070,-0.122600,-0.126700,-0.994800,-0.077520,0.066130 -0.289800,0.151700,0.171300,0.000000,0.946700,-0.322000 -0.016360,0.075300,0.346900,-0.266000,-0.056190,0.962300 -0.097830,-0.070900,0.374900,0.972400,0.223500,-0.067820 -0.060150,-0.332900,0.375700,0.000000,-0.976300,0.216400 0.623400,0.165100,0.218300,-0.015210,0.977900,-0.208300 -0.081040,-0.138000,0.299000,0.552200,0.823700,-0.128400 -0.079630,-0.106900,-0.235700,-0.946300,0.286500,-0.149800 0.084620,-0.178300,0.048410,-0.917700,0.394000,-0.052030 0.025500,0.115300,0.456700,0.438900,0.884200,0.159800 0.002440,-0.106200,-0.597000,0.999300,0.037170,0.000029 -0.089530,-0.163900,0.137700,-0.898900,-0.246900,-0.361900 0.530500,0.172200,0.272500,-0.000015,0.998700,-0.050440 -0.645300,0.172600,0.283500,0.000000,0.999800,-0.018290 -0.924200,0.118600,0.089790,-0.005018,0.902200,-0.431300 -0.016400,0.111700,0.138700,0.000018,-0.967000,0.254800 -0.101300,-0.056630,0.119300,0.991700,-0.122000,0.040360 -0.710500,0.138800,0.135700,-0.000091,0.930200,-0.367000 0.005702,-0.278400,-0.613400,-0.134300,0.990900,-0.008268 0.658900,0.123400,0.223300,-0.973800,-0.193200,0.119600 0.825800,0.169100,0.240200,-0.000019,0.989700,-0.143200 0.126800,0.054370,0.228200,0.396700,0.274900,-0.875800 0.062180,-0.228600,-0.061280,0.694200,-0.716000,0.073670 0.066610,-0.216200,-0.017100,-0.752400,0.654600,-0.073320 -0.787000,0.127500,0.199700,0.000000,-0.966800,0.255600 -0.601600,0.102300,0.057100,-0.010180,0.891200,-0.453400 -0.771100,-0.124100,0.261900,0.031880,0.975700,-0.216900 -0.065790,-0.228200,-0.359200,-0.931300,-0.362300,-0.037560 0.722300,0.167900,0.235700,-0.020400,0.989200,-0.145300 -0.448400,0.126300,0.195100,0.000000,-0.967400,0.253400 0.034110,-0.264900,-0.263300,0.441100,-0.896200,0.046800 0.350100,-0.164300,0.175600,-0.022490,0.905900,-0.422900 -0.721800,-0.137900,0.283200,-0.032050,-0.971700,0.234100 -0.055170,0.075570,0.480500,0.601200,-0.798300,-0.035870 -0.481000,0.167100,0.228000,-0.018620,0.988500,-0.150300 -0.185900,-0.276700,-0.834500,0.000000,-0.977800,0.209500 0.388600,-0.156600,0.248800,0.024190,-0.964700,0.262200 0.016860,-0.132800,0.456000,-0.181400,0.911900,-0.368100 -0.552300,0.172200,0.272500,0.000000,0.998700,-0.050480 0.749200,0.172600,0.283500,0.000000,0.999800,-0.018290 0.051340,-0.244400,-0.126900,0.591300,-0.804000,0.063040 -0.181200,0.134000,0.302200,0.763100,0.630000,-0.144200 -0.060970,0.069980,0.304900,0.642800,-0.760700,0.090560 0.033290,0.126900,0.108800,0.031060,0.898100,-0.438800 0.760600,0.135300,0.229200,0.000000,-0.966900,0.255300 -0.317100,-0.154100,0.272200,-0.031200,-0.969200,0.244300 -0.004519,0.089870,0.288500,-0.259800,0.964800,-0.040190 -0.052810,0.038560,0.076210,-0.599700,0.791500,-0.117800 0.912600,-0.146800,0.238300,0.075500,-0.962200,0.261700 0.063960,-0.140400,0.283900,-0.816200,0.551700,-0.171600 0.404700,0.148000,0.277200,0.000000,-0.967400,0.253400 0.131700,-0.227000,-0.636000,0.000000,0.978700,-0.205500 0.733200,-0.132400,0.241500,-0.012310,0.962300,-0.271600 -0.344500,0.156800,0.188000,0.000000,0.954700,-0.297700 -0.913400,-0.184100,0.103100,0.028790,0.832000,-0.554000 -0.776500,-0.191000,0.107300,-0.023020,-0.947600,0.318500 0.136700,0.093660,0.038310,-0.010150,0.922100,-0.386900 -0.105800,-0.045900,0.321700,-0.999300,-0.035070,0.008485 0.525000,0.144500,0.151300,0.005082,0.940400,-0.340200 -0.814800,0.137800,0.238700,0.000000,-0.966200,0.257900 0.344500,0.141000,0.250400,0.000000,-0.967400,0.253200 -0.103200,-0.089840,0.031910,-0.997000,0.060990,-0.048280 -0.027340,-0.274800,-0.862700,0.000000,0.977600,-0.210600 0.809800,0.129600,0.207400,0.000000,-0.966800,0.255600 0.081780,-0.092020,-0.180200,-0.947100,-0.290400,0.136800 -0.104700,-0.052780,0.169100,-0.994700,0.100800,-0.020770 -0.503100,0.136500,0.233600,0.000000,-0.966900,0.255200 0.093390,0.138800,0.135700,0.022750,0.924700,-0.380100 0.002403,-0.188300,-0.892300,0.995500,-0.088580,-0.033350 -0.005846,-0.281700,-0.784600,-0.642500,-0.636100,-0.427200 0.040640,-0.088950,-0.035580,0.591100,-0.229100,-0.773400 0.045940,-0.256400,-0.323100,-0.663000,0.748600,0.000389 -0.820300,0.149400,0.282300,0.000000,-0.966200,0.257800 -0.212800,0.127500,0.108600,0.000000,0.915700,-0.401800 0.760200,-0.120200,0.294900,-0.028120,0.986300,-0.162400 -0.028270,-0.202800,-0.650800,-0.861000,0.453200,-0.230900 -0.018680,-0.276200,-0.458600,-0.317600,-0.948100,0.016980 -0.191400,-0.236200,-0.678200,0.010210,0.976500,-0.215500 0.870000,0.168400,0.235600,0.002885,0.985100,-0.172200 0.095850,0.014920,0.387300,-0.962300,-0.271800,-0.007067 -0.453900,0.094710,0.083960,-0.000020,-0.939200,0.343400 -0.015100,0.064710,0.230700,0.565400,0.824300,-0.029640 -0.743800,-0.150800,0.178900,0.026370,0.924000,-0.381500 0.820300,0.149100,0.163700,-0.005705,0.948500,-0.316800 -0.710800,-0.150100,0.183800,0.050020,0.934600,-0.352100 0.082030,0.017520,0.532800,-0.951000,-0.242000,-0.192600 -0.091770,-0.136200,0.199800,0.944200,0.322900,-0.065690 0.073240,-0.134400,-0.328500,0.952600,0.258900,-0.159600 -0.014040,0.042220,0.135800,0.990300,-0.132800,-0.040320 -0.109400,-0.245100,-0.717000,-0.031780,0.988300,-0.148900 -0.103900,-0.320200,0.332300,0.000000,0.875300,-0.483500 -0.079640,-0.195200,0.004718,0.878900,0.471300,-0.073790 -0.399200,0.099080,0.096450,0.000000,-0.946300,0.323400 -0.069790,0.006196,-0.005755,-0.195800,0.949500,-0.245000 0.601600,0.137800,0.238700,0.000000,-0.966200,0.257900 -0.492200,0.119300,0.168300,0.000000,-0.967400,0.253400 0.036120,-0.221700,-0.645600,0.876700,0.415800,-0.242000 -0.590600,0.117200,0.160600,0.000000,-0.967000,0.254700 0.289800,0.117200,0.160600,0.000000,-0.967000,0.254700 0.131300,-0.241700,-0.668300,0.000000,-0.979100,0.203400 0.202300,0.132400,0.120200,-0.025830,0.924400,-0.380500 -0.295300,0.116200,0.156700,0.000000,-0.968900,0.247400 -0.019910,-0.019770,-0.163200,0.237400,-0.922500,0.304400 0.035740,0.081330,0.300000,0.876000,-0.468700,0.114000 -0.090530,-0.150300,-0.159700,0.989700,0.127300,0.065750 -0.055260,-0.227700,-0.026150,0.603200,0.790400,-0.106500 0.099830,-0.056770,0.075550,-0.986400,-0.156100,0.051460 0.492200,0.142300,0.255400,0.000000,-0.967400,0.253300 0.563300,0.083770,0.010290,-0.011450,0.970100,-0.242300 -0.355400,-0.180000,0.178600,-0.031720,-0.950600,0.308900 -0.032260,0.057970,0.393100,0.518000,-0.056700,-0.853500 -0.005458,-0.084320,0.011500,0.000000,-0.978500,0.206400 -0.028670,-0.193200,0.261800,0.327700,0.912300,-0.245600 -0.153000,-0.160800,0.205300,0.032360,0.942700,-0.332000 0.900600,-0.132400,0.271900,0.881600,-0.014130,0.471700 0.125800,-0.305500,0.371500,0.000000,0.970100,-0.242500 -0.421200,-0.127400,0.309500,0.039130,0.997800,0.054380 -0.078900,0.053850,0.370900,0.822700,-0.567200,0.037250 0.219100,-0.138300,0.268800,-0.032560,0.988400,-0.148700 -0.097570,-0.035040,0.442000,-0.989300,-0.106900,0.099380 0.169500,0.136500,0.233600,0.034260,-0.966000,0.256200 0.008367,-0.161000,0.385000,-0.101700,0.940700,-0.323600 -0.097160,-0.133400,-0.099300,-0.996300,-0.062990,-0.057860 -0.847700,0.142300,0.255400,0.000000,-0.967400,0.253400 0.689000,-0.172600,0.171300,0.023210,-0.948600,0.315500 -0.103000,0.020190,0.209900,-0.733900,-0.659200,0.164000 -0.185800,0.141500,0.250200,0.155200,-0.945800,0.285400 -0.021160,-0.001637,-0.114900,-0.242900,0.919900,-0.307800 -0.005464,-0.247400,-0.695600,-0.000127,-0.979100,0.203200 0.486600,-0.168300,0.200300,0.023300,-0.954700,0.296500 -0.066230,-0.194400,0.148100,-0.707700,-0.699200,0.101900 -0.152700,0.161900,0.204700,0.000000,0.968600,-0.248700 -0.278900,-0.159700,0.196700,0.017360,0.944200,-0.328800 0.087960,0.133300,0.221500,0.000000,-0.966700,0.255800 0.067070,-0.042660,0.552600,-0.848800,0.398300,-0.347700 0.891400,0.095330,0.042140,0.000018,0.913300,-0.407300 -0.078730,-0.171900,-0.328700,-0.994500,0.016950,-0.103100 -0.180500,-0.152100,0.229400,0.047700,0.946800,-0.318300 -0.404500,0.158100,0.191900,0.000202,0.934700,-0.355500 -0.015980,0.083510,0.583800,-0.202900,0.961100,0.187600 0.142200,0.149400,0.282300,0.000000,-0.966200,0.257800 0.629000,-0.166000,0.155900,-0.031800,0.914400,-0.403700 -0.574200,0.125500,0.104500,0.005273,0.907700,-0.419500 -0.114800,-0.232900,-0.626700,0.000000,-0.977800,0.209500 0.075360,-0.182600,-0.361700,0.995600,-0.041000,-0.084740 0.041020,-0.255900,-0.187000,0.496400,-0.865800,0.063770 -0.081470,-0.085320,0.456200,-0.877300,-0.426400,0.220300 0.108700,0.128900,0.579500,0.425600,-0.562600,-0.708800 0.661400,-0.127300,0.160500,0.210700,-0.247500,-0.945700 0.103700,-0.062490,0.141300,0.996400,0.084970,-0.002129 -0.514100,0.135500,0.127600,-0.010230,0.928200,-0.371900 0.098210,-0.139000,-0.066590,0.996900,-0.078260,-0.000878 0.070960,-0.045150,-0.138300,0.768200,0.592500,-0.242300 -0.050810,-0.134000,0.426100,-0.504300,-0.797600,0.330800 -0.125800,0.117200,0.160600,0.000000,-0.967000,0.254700 -0.083610,0.041340,0.304700,0.897900,-0.435600,0.064320 0.005470,0.166000,0.223500,0.005404,0.982100,-0.188500 -0.190900,-0.258600,0.345200,0.709400,0.688700,-0.149800 -0.082000,0.001277,0.075140,0.893800,-0.431800,0.120900 -0.896600,0.135600,0.218400,-0.851700,-0.104500,0.513500 0.092350,-0.035310,0.481700,0.946700,-0.208900,0.245200 -0.074480,-0.191000,0.084890,0.838100,0.535600,-0.103300 -0.836700,0.169100,0.240200,-0.000008,0.989700,-0.143100 0.200000,-0.318800,0.361600,0.951200,0.290000,-0.105500 0.148100,-0.247200,-0.732200,-0.000043,0.978200,-0.207500 0.054700,-0.255500,-0.771700,0.025540,0.974400,-0.223400 -0.070790,-0.144900,-0.343400,0.979700,-0.156300,0.125300 0.067670,-0.227600,-0.203200,-0.861000,0.508500,-0.008342 0.639900,0.133900,0.124100,0.020790,0.918600,-0.394600 0.355500,0.143100,0.147500,0.000550,0.949900,-0.312700 0.039970,0.051700,0.444000,0.191900,-0.932200,0.307000 -0.005397,-0.269500,-0.219800,-0.082730,-0.992600,0.089190 -0.087950,0.027350,0.245400,-0.917400,0.391800,-0.070540 -0.233400,-0.209100,0.105200,-0.016280,-0.878000,-0.478400 0.031230,-0.081890,-0.344400,0.429300,0.851800,-0.300300 -0.601600,-0.141400,0.218500,0.037350,0.944100,-0.327600 0.355500,0.125000,0.190100,0.000000,-0.967400,0.253200 0.510400,0.073610,-0.013870,-0.002215,-0.878000,-0.478600 0.388400,-0.167700,0.210100,0.024390,-0.957300,0.288200 0.366400,0.159700,0.196600,0.015470,0.958200,-0.285700 -0.700000,0.138900,0.242700,0.000000,-0.966100,0.258100 0.103900,0.152800,0.175300,0.053600,0.946000,-0.319700 -0.163600,-0.163800,0.643900,0.482800,-0.282900,0.828800 -0.031780,-0.262800,-0.571700,0.806500,0.589800,0.040780 -0.787500,0.120300,0.093480,-0.005073,0.904300,-0.427000 0.322700,-0.158400,0.191600,-0.027190,0.945400,-0.324800 0.749200,0.155600,0.184200,0.000077,0.964100,-0.265400 0.158500,-0.287500,0.332600,0.405000,0.827800,0.388200 -0.000448,-0.310600,0.410700,0.000000,0.293300,0.956000 0.891400,0.125000,0.190100,-0.000017,-0.967400,0.253200 0.005477,0.016490,0.277400,0.000000,-0.979700,0.200500 -0.785300,0.073560,0.003419,0.000000,-0.997800,0.066760 -0.002018,-0.245300,-0.867600,-0.846700,-0.453600,-0.278000 0.628900,0.143600,0.260500,0.000000,-0.966200,0.257700 -0.005452,-0.214500,0.195800,-0.059010,-0.977600,0.201900 -0.041920,0.043820,0.567200,0.000000,-0.210300,-0.977600 0.094530,-0.099530,0.305200,0.951600,-0.306400,0.024420 -0.104900,-0.083720,0.104600,-0.999900,0.005836,-0.011330 0.081310,-0.196900,-0.082910,-0.921700,0.387900,-0.009810 -0.066710,0.105200,0.064440,0.430500,0.523600,-0.735200 -0.068790,-0.222800,-0.280000,0.932100,0.361900,0.017190 -0.497600,-0.169800,0.195400,-0.031360,-0.954900,0.295400 0.014460,-0.212200,-0.705500,0.587800,0.736700,-0.334200 0.235200,0.100400,0.100400,0.000000,-0.948000,0.318100 -0.093150,-0.018730,0.487400,-0.973500,-0.131400,0.187300 -0.164200,-0.171300,0.177100,0.031500,0.921100,-0.388100 0.214800,0.074200,0.010740,0.000000,-0.994200,0.107900 -0.136700,0.143600,0.260500,0.000000,-0.966200,0.257700 0.262500,0.145600,0.155200,-0.015490,0.939300,-0.342700 0.062290,-0.173900,0.261100,0.728400,-0.661400,0.179000 -0.169500,0.101700,0.104200,0.000000,-0.951500,0.307600 0.082200,0.040380,0.303500,-0.895900,-0.431700,0.104300 -0.010760,-0.252500,-0.055800,-0.134900,-0.983400,0.121400 0.043750,0.162200,0.204700,0.010150,0.966000,-0.258400 -0.022320,0.056240,0.262600,0.000028,0.206700,0.978400 -0.464600,-0.167500,0.206700,-0.032640,-0.955400,0.293500 -0.082030,-0.337700,0.353700,0.000000,-0.975700,0.219100 -0.017270,-0.075810,-0.335500,0.251000,-0.916500,0.311400 0.264800,-0.271100,-0.808300,0.179000,-0.933800,0.309900 0.067460,-0.349700,0.296900,0.000000,-0.919700,-0.392700 0.086860,-0.208400,-0.510900,0.091400,-0.959400,0.266700 0.464900,-0.179500,0.136900,-0.017470,0.884800,-0.465600 0.034830,-0.144000,0.422200,0.341400,-0.879300,0.332000 -0.020840,-0.152700,-0.547100,-0.380300,0.856800,-0.348300 -0.075930,0.034320,0.184600,0.823400,-0.557400,0.106600 -0.195600,-0.355500,0.288300,0.051450,-0.312700,-0.948500 -0.202800,-0.343900,0.421000,-0.974900,-0.088090,0.204700 0.021650,0.041010,0.114200,0.487200,0.750200,-0.446900 0.333600,0.120300,0.093450,-0.020320,0.912600,-0.408400 -0.705600,-0.192900,0.101700,0.045060,0.743600,-0.667200 -0.387700,-0.183100,0.165700,-0.031670,-0.946500,0.321300 -0.278800,0.077460,-0.009825,0.086990,0.747000,-0.659100 0.030550,-0.019380,0.105100,0.000000,-0.378000,-0.925800 0.459400,0.124000,0.186300,0.000000,-0.966800,0.255700 0.607000,0.100400,0.100400,0.000000,-0.948000,0.318100 -0.803900,0.158100,0.192000,0.000046,0.947100,-0.320800 0.771100,0.117200,0.160600,0.000000,-0.967000,0.254700 0.020860,-0.250800,-0.056030,0.237500,-0.964800,0.113300 0.836800,-0.150700,0.178900,-0.032930,0.936100,-0.350200 0.000074,-0.067900,0.579400,-0.001808,-0.840900,0.541200 -0.021880,-0.218600,-0.596400,-0.031030,0.978000,-0.206100 0.109100,0.032480,0.199100,-0.762600,0.632500,-0.135600 -0.366400,0.141000,0.250400,0.000000,-0.967400,0.253200 -0.000018,0.077080,0.205500,0.127700,-0.965900,0.225400 -0.442900,-0.196100,0.123700,-0.031910,-0.937400,0.346900 -0.025110,0.069410,0.613300,-0.303000,0.819500,0.486500 0.328000,-0.162500,0.233100,0.023250,-0.961000,0.275500 0.716500,-0.153000,0.180700,-0.011840,0.921100,-0.389200 0.100400,-0.057240,0.305300,-0.994200,0.103800,0.026850 0.076570,-0.303300,0.387300,0.000000,0.997300,-0.073590 -0.043730,0.154600,0.180000,0.000012,0.961700,-0.273900 0.224100,-0.168100,0.222100,0.022970,-0.958900,0.282900 0.284400,0.094710,0.083960,0.000000,-0.939200,0.343300 -0.661700,0.122200,0.097200,0.015500,0.900200,-0.435200 -0.202100,-0.385600,0.387300,-0.998900,-0.047320,-0.000509 -0.033720,-0.018530,-0.052720,0.469900,0.155500,0.868900 -0.098430,0.149100,0.163700,-0.005608,0.936100,-0.351700 -0.596200,-0.186800,0.117000,0.030480,0.857000,-0.514400 -0.218900,-0.193200,0.128700,0.030330,0.869600,-0.492900 0.097920,-0.051900,0.415500,-0.975500,0.173100,-0.135700 0.109600,-0.161500,0.196900,-0.020120,0.936800,-0.349200 0.196900,0.171800,0.267100,-0.010140,0.997000,-0.076630 0.240600,-0.253700,-0.762700,0.000000,0.978500,-0.206200 0.956900,-0.188000,0.102300,-0.048830,0.818200,-0.572900 -0.213300,0.148000,0.277200,-0.096790,-0.963900,0.247900 0.262500,0.152500,0.294000,0.000000,-0.960800,0.277200 -0.754200,0.128600,0.203600,0.000000,-0.966800,0.255600 -0.426600,0.106300,0.064160,-0.010160,0.909300,-0.416000 -0.278900,0.094710,0.083960,0.000000,-0.939200,0.343300 -0.803800,-0.140200,0.201500,0.032940,0.943200,-0.330400 0.143400,0.094060,0.331400,0.796900,-0.581000,0.165600 -0.008524,0.043400,0.335300,-0.757700,-0.081230,-0.647600 0.202400,-0.237500,-0.686100,-0.000030,0.978500,-0.206200 0.202400,0.121900,0.178400,0.085110,-0.969000,0.231900 -0.093210,0.021320,0.431400,-0.957300,0.285400,0.046600 -0.311700,0.120300,0.093480,-0.000294,0.898800,-0.438300 0.196900,-0.264400,-0.813400,-0.030160,0.977100,-0.210400 -0.010740,0.036040,0.300100,-0.996700,-0.008922,-0.081240 0.000460,-0.222400,-0.576700,0.000000,-0.978500,0.206400 0.038290,0.146700,0.272200,0.000000,-0.967400,0.253300 -0.125800,-0.245300,-0.685200,0.000000,-0.978500,0.206200 0.858700,-0.119900,0.283900,-0.033490,0.978700,-0.202700 0.928000,0.142600,0.146800,0.211600,0.955200,-0.207000 0.000119,-0.037970,-0.235100,-0.003617,0.950900,-0.309500 -0.202400,-0.387200,0.337800,-0.992800,0.059420,0.104100 0.090630,-0.094640,-0.116200,-0.974400,-0.194000,0.113900 0.005469,0.147200,0.159000,-0.000066,0.942400,-0.334500 0.065630,0.152200,0.171100,-0.007490,0.952800,-0.303600 0.041800,-0.226700,0.045780,-0.461000,0.878600,-0.124600 -0.120400,-0.150000,0.243800,0.053020,0.965700,-0.254400 -0.814800,0.109300,0.129700,0.000000,-0.964400,0.264600 -0.174500,-0.342700,0.331100,-0.000670,-0.976200,0.216800 0.306600,-0.205500,0.101800,-0.013950,0.295300,-0.955300 -0.015940,-0.226200,-0.632200,-0.000014,0.978400,-0.206800 -0.623400,0.109300,0.129700,0.000000,-0.964400,0.264600 -0.050510,-0.187800,-0.520900,0.960400,-0.194600,0.199500 -0.721900,-0.174000,0.131500,0.030550,0.876800,-0.479900 -0.168700,-0.296100,-0.928600,-0.125400,-0.969200,-0.211800 0.579700,-0.136200,0.240400,-0.027400,0.964500,-0.262800 0.831300,0.134000,0.123900,0.000012,0.924100,-0.382100 0.814800,-0.133200,0.301200,0.023010,-0.974000,0.225300 -0.459400,0.146000,0.155300,0.005052,0.941700,-0.336300 0.021540,-0.266000,-0.236300,-0.262700,0.962500,-0.068180 -0.738200,-0.153600,0.222800,-0.030610,-0.960700,0.275900 -0.246200,-0.151700,0.223700,0.031840,0.965600,-0.258000 0.716400,0.116200,0.156700,0.000000,-0.968900,0.247400 -0.026880,0.129600,0.207400,0.000000,-0.966800,0.255600 0.820400,-0.135200,0.223700,-0.017410,0.959000,-0.282800 0.776700,-0.186800,0.124600,0.023900,-0.938800,0.343500 0.082940,-0.005453,0.041350,0.879500,0.454100,-0.142300 0.067640,-0.201300,0.097230,0.724200,-0.681000,0.108800 -0.114800,-0.337700,0.353700,0.000000,-0.975700,0.219100 0.023820,0.084230,0.459100,0.748100,-0.653900,-0.113200 -0.094940,0.014620,0.321600,0.952500,-0.301500,0.042800 0.092970,0.099080,0.096450,0.000000,-0.946300,0.323400 0.814900,0.146700,0.272200,0.000000,-0.967400,0.253200 0.891700,0.162800,0.208600,0.035310,0.978300,-0.204200 0.864100,-0.141100,0.202100,-0.017190,0.951800,-0.306100 0.372400,-0.150200,0.274600,0.022160,-0.968900,0.246500 0.388300,0.094710,0.083960,0.000000,-0.939200,0.343300 -0.087870,-0.102700,0.388600,-0.909100,-0.393300,0.137300 0.088310,0.002664,0.171900,-0.938500,-0.338800,0.066200 -0.048000,0.008568,0.630000,-0.683000,-0.083810,0.725600 -0.091430,0.027060,0.371400,0.937800,-0.346200,0.027140 0.059950,-0.008205,-0.066950,0.658800,0.720000,-0.218100 -0.032100,0.065630,0.135900,-0.140100,0.982400,-0.123900 -0.207800,0.116200,0.156700,-0.073050,-0.960500,0.268400 -0.907800,0.102400,0.057020,-0.025360,0.881600,-0.471300 -0.022680,-0.145600,0.421700,0.218600,0.915500,-0.337900 -0.557900,-0.160300,0.171800,0.041820,0.915600,-0.399900 0.153100,-0.264400,-0.776100,0.000000,-0.978500,0.206300 -0.071140,-0.182400,0.204500,-0.313000,-0.935600,0.163500 -0.585100,0.172500,0.278000,0.000000,0.999400,-0.034100 0.486700,0.117200,0.160600,0.000000,-0.967000,0.254700 0.596600,0.079330,0.039540,-0.000001,-0.970200,0.242400 0.096770,-0.017770,0.261500,-0.980900,-0.194200,0.009491 0.021870,0.172700,0.283500,-0.020360,0.999600,0.018150 0.015700,-0.022250,-0.180200,0.181600,0.938200,-0.294700 -0.100200,-0.132900,0.009995,-0.989900,-0.141900,0.001479 0.574200,0.134000,0.123900,0.000051,0.931900,-0.362700 0.076570,-0.264500,-0.809200,0.000000,0.977700,-0.209800 -0.023330,-0.053860,-0.264500,0.310600,-0.901900,0.300000 0.093250,0.016130,0.466300,0.946400,0.283900,0.154100 0.061680,-0.153800,0.327400,-0.742900,0.665600,-0.071280 -0.092900,-0.164400,0.261000,-0.031860,-0.966800,0.253700 -0.049200,0.172600,0.283500,0.000000,0.999800,-0.018290 0.081600,0.001068,0.071560,-0.886000,-0.447800,0.120500 -0.475700,-0.148800,0.272300,-0.032110,-0.969300,0.243600 0.142200,-0.272900,-0.816400,0.000000,-0.978500,0.206200 0.010950,0.104400,0.113000,0.000000,-0.956100,0.293000 0.213300,0.116800,0.086120,-0.000182,0.911300,-0.411800 0.240600,0.141000,0.250400,0.000000,-0.967400,0.253200 0.284400,0.171400,0.298600,0.000000,0.935100,0.354300 0.065640,0.149400,0.282300,0.000000,-0.966200,0.257800 -0.914900,0.123400,0.182400,-0.466800,-0.700100,0.540400 -0.656200,0.121900,0.178500,0.000000,-0.966200,0.257700 -0.437500,0.135500,0.127600,0.000000,0.925700,-0.378200 0.683600,0.163800,0.213200,-0.020270,0.976900,-0.212500 0.103900,0.143600,0.260500,0.000000,-0.966200,0.257700 0.034600,-0.299800,-0.950400,0.056770,-0.861700,-0.504200 0.010560,-0.273800,-0.290900,0.146400,-0.987800,0.053060 -0.085080,0.040430,0.452800,-0.915500,0.397900,0.060080 -0.083330,-0.187100,0.032540,-0.905800,-0.420000,0.055730 0.022490,-0.272000,-0.509600,-0.426600,0.904300,0.015150 -0.070480,-0.177600,-0.386400,0.988200,-0.056560,0.142400 -0.748800,0.167000,0.227900,-0.000039,0.983100,-0.183000 -0.896900,-0.141000,0.191200,0.051900,0.917900,-0.393500 -0.765500,-0.146600,0.244200,-0.032190,-0.963900,0.264200 -0.590500,-0.173900,0.172900,-0.031890,-0.949300,0.312700 0.095190,0.014690,0.354500,-0.959800,-0.279500,0.025290 0.700500,0.080340,0.043350,-0.000007,-0.964000,0.265900 -0.028140,-0.061080,0.576700,0.362300,0.748300,-0.555700 0.038480,-0.203000,-0.617000,0.929800,0.317400,-0.186300 0.371800,-0.184000,0.160500,0.023200,-0.945800,0.323800 0.662600,-0.067900,0.195900,0.997400,0.020800,-0.069640 0.067700,-0.160500,-0.389600,-0.964200,-0.193200,0.181700 0.036480,0.025320,0.057980,0.519900,-0.022420,-0.853900 0.082440,-0.081090,0.468400,0.882700,-0.408700,0.232100 0.541400,-0.196900,0.113100,0.023330,-0.935000,0.353900 -0.449000,-0.167800,0.162800,0.039490,0.907500,-0.418100 -0.508100,-0.133300,0.259500,0.026480,0.972800,-0.230100 -0.749200,0.111800,0.075010,-0.000003,0.895600,-0.444900 -0.344500,0.120600,0.093320,0.000000,0.907100,-0.420900 0.136700,0.116800,0.086120,-0.020210,0.908000,-0.418400 -0.064780,-0.036500,-0.127500,0.736900,-0.641800,0.212100 0.039830,-0.261100,-0.454900,-0.704500,0.709600,0.014190 0.196900,-0.290200,-0.898300,0.000000,-0.979000,0.203600 0.032910,-0.134400,-0.484800,0.557200,0.764500,-0.324200 -0.101700,-0.002742,0.360000,-0.982800,0.184800,0.003498 0.492200,0.125400,0.104600,-0.004891,0.902400,-0.430900 0.169500,0.115400,0.082310,-0.010330,0.894100,-0.447700 0.153500,-0.281200,0.302900,0.933400,0.201400,-0.297000 0.031490,-0.228900,0.075110,0.335300,-0.929900,0.151100 -0.876300,0.155900,0.252600,-0.817400,0.122400,0.562900 -0.137800,0.080190,-0.002232,0.078910,0.941500,-0.327500 0.041430,-0.187000,-0.565100,-0.906400,-0.347600,0.239800 -0.060150,0.104400,0.113000,0.000000,-0.956100,0.293000 -0.853100,0.114900,0.151500,0.000000,-0.971300,0.237900 0.003684,0.126300,0.472000,-0.058220,0.808000,0.586300 -0.159000,0.097230,0.255300,0.183600,0.687600,-0.702500 0.242200,-0.235500,-0.670300,0.669600,0.736400,0.096590 -0.093030,-0.053530,-0.019850,-0.956500,0.271900,-0.106200 0.067810,-0.222600,-0.099270,-0.796500,0.602200,-0.054950 0.675700,-0.188200,0.127500,0.022640,-0.938300,0.345100 0.306300,0.074760,0.015340,0.000000,-0.991200,0.132200 -0.273400,0.172500,0.278000,-0.000001,0.999400,-0.034020 0.010470,0.074270,0.239700,0.999900,0.010330,-0.001481 -0.663000,0.064370,0.101800,0.749400,-0.073440,-0.658100 0.083430,0.029580,0.239400,0.909600,0.413200,-0.043480 0.968000,0.080770,0.001447,-0.010040,0.962100,-0.272500 0.098080,-0.033790,0.104900,0.978900,0.202600,-0.028040 0.114900,-0.252100,-0.717800,0.000000,-0.979000,0.203700 -0.003276,-0.133500,-0.618800,-1.000000,-0.006101,0.002220 -0.549600,-0.155600,0.237700,-0.029860,-0.962500,0.269800 0.103500,-0.046000,0.381900,0.994100,-0.102900,0.033510 0.251500,-0.153800,0.272100,0.022900,-0.969200,0.245100 0.058150,-0.226100,-0.476600,0.979600,-0.192100,-0.058810 -0.525000,0.120300,0.093480,-0.015520,0.931300,-0.363800 -0.093900,-0.025000,0.075900,-0.952000,0.295000,-0.082140 0.096880,-0.023280,0.190300,-0.974200,-0.221400,0.043120 0.057200,-0.022420,0.604300,0.762000,-0.453800,0.462000 0.153600,0.167000,0.227900,0.005292,0.984300,-0.176500 -0.470300,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.000562,-0.347500,-0.635600,0.001275,0.843100,-0.537800 0.872200,-0.177900,0.142800,0.022700,-0.942300,0.334000 0.044250,-0.021930,-0.044340,-0.621200,0.165600,0.766000 0.102800,-0.090110,0.114100,-0.997300,0.062050,-0.038970 0.678100,0.143600,0.260500,0.000000,-0.966200,0.257700 -0.064250,-0.349200,0.300200,0.000000,-0.997700,0.067870 0.003237,-0.133500,-0.700900,1.000000,0.000000,0.000000 -0.092960,-0.298600,-0.938400,-0.003096,-0.983000,0.183600 0.041590,0.069060,0.352000,-0.863600,-0.371700,0.340600 -0.076550,-0.242500,-0.672200,0.000036,-0.978500,0.206200 -0.213200,-0.178300,0.198800,-0.031970,-0.953600,0.299400 0.014140,0.050150,0.400900,0.556800,0.592200,0.582500 0.218700,-0.204200,0.114900,0.022960,-0.934700,0.354700 -0.109400,0.130700,0.211800,0.000000,-0.966800,0.255400 -0.019890,-0.273200,-0.678300,-0.759200,-0.641500,-0.109800 -0.588400,0.073560,0.003419,0.000000,-0.997800,0.066760 -0.842200,0.080140,-0.002628,0.000125,0.976400,-0.215800 0.629400,0.127500,0.199700,0.000000,-0.966800,0.255600 0.101400,-0.127800,0.004537,0.994100,-0.108400,-0.003171 -0.100500,-0.018350,0.267000,0.985000,-0.169600,0.032750 -0.004783,0.063540,0.372400,-0.238800,-0.203500,-0.949500 0.059650,-0.075880,-0.018810,0.829300,-0.079670,-0.553100 -0.120300,0.116800,0.086120,0.004935,0.914100,-0.405400 -0.896400,0.141700,0.143200,0.000000,0.935200,-0.354100 0.008332,0.092880,0.436800,0.066810,0.199100,0.977700 -0.393800,-0.183400,0.135300,0.030770,0.878400,-0.476900 -0.180500,0.172600,0.283500,0.000000,0.999800,-0.018290 0.661700,0.126300,0.195100,0.000000,-0.967400,0.253400 0.002214,-0.319500,-0.580600,0.999600,0.028010,-0.009940 -0.058980,-0.183000,-0.482100,-0.985600,0.139000,-0.096580 -0.667300,-0.177200,0.129400,0.009616,0.880200,-0.474400 0.046000,0.041430,0.310700,0.999400,-0.008197,0.034200 0.041970,-0.262800,-0.416100,0.664000,-0.747700,-0.000626 -0.152900,-0.327000,0.401900,0.000362,-0.974600,0.223800 -0.048450,0.057880,0.354500,0.999500,0.030950,-0.000016 -0.103900,-0.210200,-0.518900,-0.001640,-0.977200,0.212200 0.426600,-0.156500,0.190300,-0.041700,0.951300,-0.305500 -0.054310,-0.236400,-0.074220,-0.615300,-0.782700,0.093470 -0.142200,-0.271800,-0.811200,0.000000,-0.977900,0.209000 -0.858600,0.121900,0.178500,0.000000,-0.966200,0.257700 0.010950,-0.205600,-0.498100,0.001462,-0.757800,0.652500 0.549800,-0.144500,0.215000,-0.021510,0.950500,-0.310000 -0.776600,0.109300,0.129700,-0.000068,-0.964300,0.264800 0.142200,0.116200,0.156700,0.000000,-0.968900,0.247400 -0.016400,0.025740,0.571000,0.000001,-0.206600,-0.978400 -0.202500,0.124100,0.186300,-0.182400,-0.951900,0.246200 -0.001748,0.058830,0.634500,-0.023100,0.733100,0.679700 0.771600,0.127300,0.108600,0.035460,0.900900,-0.432600 0.109700,-0.143800,0.256500,-0.008462,0.971300,-0.237700 -0.459200,-0.156800,0.244000,-0.032510,-0.962900,0.267800 -0.074990,-0.212300,-0.187500,0.917100,0.398300,0.015880 0.117600,0.076340,0.018010,-0.415700,-0.853700,-0.313800 -0.262500,0.137800,0.238700,0.000000,-0.966200,0.257900 0.924600,-0.168200,0.136200,-0.027380,0.879200,-0.475600 0.164100,0.083100,0.052600,-0.000066,-0.953100,0.302600 0.164100,-0.244200,-0.680000,0.000000,-0.977900,0.208900 -0.235100,-0.152800,0.288200,-0.031850,-0.971700,0.233900 0.000463,-0.203400,-0.524300,0.031750,0.978100,-0.205900 0.065640,0.166600,0.223300,0.000012,0.987300,-0.158800 0.628900,-0.131700,0.314700,0.011690,-0.393900,0.919100 0.082490,-0.331000,0.384200,0.000000,-0.976300,0.216600 -0.040870,-0.250000,-0.114200,-0.467600,-0.879600,0.087160 0.076310,0.029360,0.175100,-0.846300,-0.523200,0.100400 0.426600,0.123000,0.182400,0.000000,-0.966100,0.258200 0.196200,0.137500,0.244700,0.488800,-0.841500,0.230200 -0.650300,0.107000,0.121400,0.000021,-0.960000,0.279900 -0.213300,0.171500,0.261600,0.005066,0.997000,-0.076780 0.722000,-0.121700,0.295200,-0.037960,0.989100,-0.142300 -0.024740,-0.227100,0.098820,-0.273800,-0.949900,0.150500 0.743800,0.102900,0.108100,0.000000,-0.954400,0.298400 -0.223800,0.079330,0.039540,0.000000,-0.970200,0.242400 0.079900,-0.001770,0.556100,0.929700,-0.191200,0.315000 0.061260,0.048990,0.592200,0.824100,0.487600,0.288300 -0.113500,-0.347700,0.296900,-0.000189,0.323200,-0.946300 0.027800,-0.280700,-0.853400,0.000000,-0.978600,0.205900 -0.710000,0.073250,-0.001572,0.000000,-0.998800,0.048080 -0.596100,0.159700,0.196500,0.000113,0.951800,-0.306600 0.295400,-0.160900,0.241300,0.024230,-0.963500,0.266700 -0.045440,-0.157200,0.361700,0.457600,0.848600,-0.265500 -0.000050,0.062420,0.088130,0.024700,0.973300,-0.228000 0.016680,-0.203900,0.229000,-0.210900,0.956000,-0.203900 0.081680,-0.196700,-0.148600,-0.941500,0.336800,0.009774 0.361300,0.075320,-0.014070,-0.069410,0.016490,-0.997500 0.311700,0.106200,0.064230,0.010060,0.894600,-0.446800 -0.319900,-0.133100,0.290600,0.010750,0.988300,-0.152400 0.002737,-0.073400,-0.651700,0.998700,-0.035490,-0.035420 0.455400,0.074200,0.010740,0.000000,-0.994200,0.107900 -0.371900,0.148000,0.277200,0.000000,-0.967400,0.253400 0.081310,0.084660,0.052430,-0.620100,-0.636200,-0.459000 0.104600,-0.040520,0.327500,0.998400,-0.021000,-0.052720 0.951600,0.087100,0.063950,0.000048,-0.935100,0.354300 -0.169500,0.153100,0.175200,-0.005678,0.953100,-0.302700 0.093050,-0.088430,0.370700,-0.948300,0.304800,-0.088810 0.087510,-0.254800,-0.730600,0.000000,-0.977800,0.209400 0.661100,0.008395,0.199400,-0.003296,0.104600,-0.994500 -0.645300,-0.181200,0.146200,-0.031750,-0.943700,0.329300 -0.612500,-0.137700,0.299600,-0.030130,-0.974400,0.222900 -0.650800,0.114900,0.151500,0.000000,-0.971300,0.237900 0.574200,0.171600,0.267100,0.015220,0.995200,-0.097110 -0.003240,-0.106200,-0.865000,-1.000000,0.000000,0.000000 -0.092960,0.165100,0.218300,0.000000,0.978100,-0.208300 0.181000,0.209300,0.564000,-0.392100,0.521700,0.757700 0.470300,0.137800,0.238700,0.000000,-0.966200,0.257900 0.322600,0.146800,0.159100,-0.025820,0.944000,-0.329000 -0.066450,-0.089420,-0.261400,0.882200,-0.429800,0.192000 0.087510,0.117200,0.160600,0.000000,-0.967000,0.254700 -0.262500,0.118200,0.164500,0.000000,-0.966800,0.255600 -0.055270,-0.150900,-0.453800,-0.913700,0.352900,-0.201500 -0.749200,0.146700,0.272200,0.000000,-0.967400,0.253300 0.003237,-0.095250,-0.744700,0.999800,0.005081,0.020350 0.005473,-0.332900,0.375700,0.000000,-0.976300,0.216400 -0.180400,-0.336800,0.357700,0.127800,-0.970700,0.203400 -0.038270,-0.001555,0.576700,0.000000,-0.206700,-0.978400 0.618000,-0.130100,0.262000,-0.003392,0.969300,-0.246000 0.224600,-0.192400,0.146800,0.023940,-0.943300,0.331000 0.486800,0.168100,0.236200,-0.016920,0.984300,-0.175600 0.049220,-0.241600,-0.705500,0.000000,0.977700,-0.210000 0.787500,0.152400,0.175400,0.000056,0.949200,-0.314500 -0.003240,-0.144500,-0.772000,-1.000000,0.000000,0.000000 0.076490,0.091760,0.601400,-0.445200,0.640000,0.626200 0.754700,0.074760,0.015340,0.000000,-0.991200,0.132200 -0.082020,-0.246400,-0.727500,0.004800,0.979600,-0.200900 -0.003240,-0.166300,-0.739200,-1.000000,0.000000,0.000000 0.003274,-0.133500,-0.591700,1.000000,-0.007862,-0.001131 -0.060180,-0.224500,-0.586600,-0.068610,-0.981100,0.180700 0.101900,-0.111400,0.135700,0.987300,-0.152500,0.044560 0.027350,-0.310500,0.355200,0.000006,0.943800,-0.330500 -0.371900,0.113700,0.146500,-0.000053,-0.971800,0.235800 0.120400,-0.171500,0.171800,-0.020450,0.911600,-0.410700 0.596100,0.149400,0.282300,0.000000,-0.966200,0.257800 0.098450,-0.306900,0.367000,0.000000,0.960800,-0.277400 0.044050,-0.100100,-0.364500,-0.648900,-0.714300,0.262100 -0.863700,-0.138900,0.199900,0.035570,0.943000,-0.330800 0.033470,0.068500,0.607100,0.453500,0.767000,0.453900 -0.089660,-0.139300,-0.203000,-0.993700,0.068450,-0.088970 -0.924200,0.083760,0.010290,-0.000014,0.964100,-0.265400 0.793000,0.091770,0.034680,0.000048,0.925400,-0.378900 -0.612500,0.150100,0.167600,-0.040840,0.959300,-0.279300 -0.213300,-0.254800,-0.730600,0.000030,-0.977800,0.209400 0.295400,-0.129500,0.305400,-0.022360,0.997100,-0.073270 -0.031620,-0.099430,-0.394000,-0.445200,0.845400,-0.294900 0.749200,-0.167500,0.182400,0.023180,-0.950600,0.309400 -0.486700,0.172400,0.294200,0.005508,0.993200,0.116600 -0.082310,0.002827,0.541200,0.979100,-0.034360,-0.200300 0.700100,-0.136500,0.229600,-0.029740,0.947900,-0.317200 -0.069040,0.046370,0.562500,-0.892400,0.432400,0.129100 0.216800,-0.225800,-0.613900,0.847300,0.056790,0.528100 0.229700,0.144500,0.151300,0.004991,0.940500,-0.339900 0.082510,0.046270,0.445800,-0.893100,-0.444500,-0.069510 0.536000,0.135500,0.127600,-0.000025,0.925700,-0.378200 -0.153200,-0.194700,0.130100,0.030220,0.870300,-0.491500 0.607000,-0.167500,0.193400,0.023220,-0.953400,0.300700 0.754700,0.143600,0.260500,0.000000,-0.966200,0.257700 0.864100,0.084580,0.014340,-0.015280,0.958000,-0.286400 0.224700,0.128600,0.203600,0.000000,-0.966800,0.255600 -0.262500,0.150300,0.167500,0.000002,0.945500,-0.325700 -0.409700,0.133300,0.221500,0.000000,-0.966700,0.255800 0.121200,-0.189000,0.382200,-0.430200,0.093080,-0.897900 -0.071260,-0.194200,0.112100,-0.762900,-0.638100,0.104000 0.525500,0.135300,0.229200,0.000000,-0.966900,0.255300 -0.639400,0.135300,0.229200,0.000023,-0.966900,0.255200 0.300800,-0.176000,0.190100,0.023700,-0.953900,0.299300 0.011540,0.063970,0.489500,0.081810,0.992400,0.091530 0.235100,0.088810,0.068450,-0.000074,-0.933000,0.359800 -0.461900,-0.188800,0.142200,-0.032270,-0.941900,0.334300 -0.574300,-0.138400,0.231400,0.031990,0.959600,-0.279600 0.464900,-0.162300,0.173600,-0.022410,0.935800,-0.351800 0.218800,0.116200,0.156700,0.000000,-0.968900,0.247400 -0.087410,-0.085930,0.429200,-0.910800,-0.361600,0.198900 0.051060,-0.039300,-0.182500,0.591900,0.766200,-0.250300 -0.649500,0.074240,0.011230,0.000000,-0.993600,0.112700 0.176800,-0.357800,0.409200,-1.000000,-0.000122,0.000153 0.410300,-0.199300,0.115400,0.023900,-0.935300,0.353100 0.929700,0.074760,0.015340,0.000004,-0.991200,0.132200 0.054970,-0.140100,-0.426900,-0.892000,-0.412700,0.184500 0.814900,0.097440,0.091620,0.000000,-0.945100,0.326800 0.089660,-0.165900,-0.197600,0.989500,-0.132600,-0.057140 0.021720,0.074500,0.387900,0.375200,-0.564400,0.735300 -0.947500,0.073420,-0.024510,0.000014,-0.997800,-0.066470 0.519500,0.157200,0.187900,-0.004969,0.952600,-0.304200 0.164100,0.078660,-0.011080,0.005964,0.945000,-0.326900 -0.415600,0.149400,0.282300,0.000000,-0.966200,0.257800 0.015820,-0.088050,0.545500,0.156600,-0.829500,0.536100 0.158600,0.136900,0.131600,0.022070,0.922800,-0.384700 -0.027330,-0.345500,0.298200,-0.000062,0.648200,-0.761500 -0.071080,0.154600,0.180000,0.000000,0.961700,-0.273900 0.010550,-0.276900,-0.585800,-0.212300,0.976900,-0.024000 -0.448300,-0.140800,0.309300,-0.029740,-0.956600,0.289700 -0.612500,0.148000,0.277200,0.000000,-0.967400,0.253400 0.907900,-0.146700,0.185900,-0.001736,0.921400,-0.388500 0.790100,0.074830,-0.030230,-0.041490,-0.604200,-0.795800 0.081690,-0.177700,-0.291100,0.987700,-0.138400,-0.072930 0.355500,0.093300,0.080160,-0.000000,-0.937200,0.348800 0.940600,0.118600,0.089780,-0.009961,0.899200,-0.437500 0.623400,0.083760,0.010290,-0.000007,0.964200,-0.265300 0.443000,0.158200,0.191900,0.010070,0.951000,-0.309100 -0.393700,0.166000,0.223600,0.019950,0.985300,-0.169600 0.003237,-0.144500,-0.859500,1.000000,0.000000,0.000000 0.031250,-0.046050,-0.232800,-0.395900,-0.866800,0.303200 -0.689000,-0.166300,0.186300,-0.032350,-0.952300,0.303300 0.098560,-0.094370,0.261400,0.978400,-0.192100,0.075630 -0.040830,-0.194400,-0.585700,-0.942600,0.264900,-0.203500 -0.426100,0.105800,0.117500,0.000000,-0.957500,0.288300 -0.092960,0.171900,0.267100,0.000000,0.997800,-0.066540 0.481200,-0.182000,0.158600,0.023160,-0.946300,0.322400 -0.464800,0.132100,0.216900,0.000000,-0.966700,0.255900 -0.046260,-0.250100,-0.493500,0.882900,0.460700,0.090870 -0.086670,-0.166300,-0.230600,-0.988700,-0.136600,-0.061820 -0.639800,-0.137900,0.225500,0.032720,0.956800,-0.288900 0.514100,0.114900,0.082550,-0.020370,0.906000,-0.422800 -0.546900,0.111800,0.075010,0.005073,0.889400,-0.457100 -0.045980,-0.256200,-0.361200,0.692300,0.721600,0.011530 0.002570,-0.188200,-0.700900,0.998700,0.050620,-0.010150 0.179400,0.135800,0.294800,-0.759200,0.636700,-0.134800 0.317200,0.111700,0.138700,0.000013,-0.967000,0.254800 -0.665100,-0.066610,0.143500,-0.909500,-0.174500,-0.377400 0.596100,0.125500,0.104500,-0.020220,0.910900,-0.412200 -0.546900,0.109300,0.129700,0.000000,-0.964400,0.264600 -0.164100,0.109300,0.129700,-0.000132,-0.964300,0.264700 0.743800,0.116200,0.156700,0.000000,-0.968900,0.247400 0.066190,0.014980,0.016560,-0.186700,0.899000,-0.396100 -0.076740,-0.037810,-0.090730,-0.866000,0.470000,-0.170800 0.541400,0.149400,0.282300,0.000000,-0.966200,0.257800 0.021880,-0.324600,0.325500,0.000000,0.852100,-0.523300 -0.098720,-0.063680,0.037190,0.989800,-0.132300,0.051840 -0.096520,-0.149400,0.037300,-0.968700,-0.247500,0.019810 -0.069250,0.034590,0.125500,-0.735800,0.661200,-0.146600 0.017850,0.089720,0.502500,0.786800,-0.603800,-0.128000 -0.912700,0.129100,0.112300,-0.000023,0.918100,-0.396400 -0.147600,-0.248900,-0.735200,0.000020,0.978500,-0.206300 0.054010,0.079570,0.412900,-0.336200,-0.941800,0.005494 0.033740,-0.230500,-0.608400,-0.335200,-0.937900,0.089440 0.097730,-0.035580,0.437500,-0.989100,0.118200,-0.087570 -0.918400,-0.134600,0.206600,0.029990,0.955800,-0.292600 0.541400,0.083100,0.052600,0.000000,-0.953100,0.302700 -0.010570,-0.262700,-0.148800,-0.136800,-0.987200,0.081810 -0.917900,0.149000,0.172400,-0.889500,0.300700,0.344000 -0.164400,-0.217100,-0.552700,-0.638600,-0.112900,0.761200 0.382900,-0.130200,0.289300,-0.002891,0.986000,-0.166400 -0.333100,0.130700,0.116000,0.000000,0.921300,-0.388800 -0.168600,-0.281000,0.321700,-0.872300,0.488900,0.012920 -0.075480,0.033360,0.157700,-0.797700,0.591900,-0.115700 -0.563200,-0.142000,0.288200,-0.031780,-0.972000,0.232900 -0.041980,-0.107000,0.495600,-0.411400,-0.805600,0.426400 0.109400,-0.230100,-0.651000,0.000021,0.978400,-0.206800 0.032360,-0.305100,0.407100,0.000000,0.738500,0.674300 -0.033410,-0.255600,-0.170300,0.404700,0.912000,-0.067200 0.068740,-0.131200,0.392300,0.714000,-0.673700,0.190600 0.290300,0.128900,0.112300,0.005100,0.920700,-0.390200 0.002903,-0.051530,-0.706400,0.998800,-0.045650,-0.015200 -0.040220,-0.088660,-0.340900,0.570700,-0.773900,0.274500 -0.765600,0.081570,0.047670,0.000000,-0.958400,0.285500 0.448500,0.087100,0.063950,0.000152,-0.935200,0.354000 -0.246100,0.172200,0.272500,-0.014980,0.998600,-0.050640 -0.025760,0.014430,0.646800,-0.451100,-0.045770,0.891300 0.023710,-0.002560,-0.116100,0.274300,0.905900,-0.322700 -0.962500,0.093510,0.038370,0.020390,0.905500,-0.423800 0.694500,0.118900,0.089630,0.045750,0.895300,-0.443200 -0.497700,0.108200,0.067750,-0.015240,0.891100,-0.453500 -0.803800,-0.133500,0.290300,-0.032630,-0.972000,0.232700 -0.084450,-0.090820,-0.170000,-0.951600,0.278000,-0.130800 0.157600,0.080900,0.165300,-0.300400,0.818100,0.490300 0.147700,-0.173000,0.211900,0.023190,-0.957100,0.288800 0.235200,0.109300,0.129700,-0.000041,-0.964300,0.264900 -0.213700,-0.138700,0.280800,0.017400,0.979800,-0.199000 0.075370,0.014240,0.578700,0.965400,0.053750,0.255000 -0.371900,0.083760,0.010290,-0.005676,0.962500,-0.271100 -0.015130,-0.181200,-0.622800,0.413000,-0.853400,0.318000 0.673200,-0.149100,0.251100,0.022600,-0.965500,0.259400 -0.010330,0.090330,0.458700,-0.925200,-0.269700,-0.267100 -0.317200,0.094710,0.083960,-0.000020,-0.939200,0.343400 -0.076720,-0.049930,0.528500,-0.885700,-0.318900,0.337300 0.175200,-0.183800,0.142900,-0.016500,0.904200,-0.426700 -0.492200,0.112700,0.142600,0.000035,-0.970000,0.243000 -0.079860,-0.061500,0.501500,-0.886500,-0.388200,0.251900 -0.202300,-0.270000,0.375700,-0.998500,-0.051970,-0.014090 -0.382800,-0.165300,0.223000,-0.032550,-0.960100,0.277700 -0.175000,-0.274900,-0.858600,-0.000135,0.969700,-0.244400 -0.590600,0.090560,0.030720,-0.000003,0.933300,-0.359100 -0.213100,-0.160200,0.262000,-0.031920,-0.967300,0.251600 0.057950,0.061460,0.567100,0.755600,0.626800,0.190200 -0.059200,-0.138200,-0.400900,0.910600,-0.354000,0.213400 -0.026740,-0.155900,0.395500,-0.263600,-0.913700,0.309300 -0.202300,-0.265200,-0.817300,0.000000,0.978500,-0.206200 0.010900,0.102900,0.343500,-0.117800,0.973100,-0.198000 0.038220,-0.243500,-0.672000,0.264000,-0.917800,0.296600 -0.068730,-0.125900,0.408500,-0.707900,-0.667100,0.231900 -0.019800,-0.270100,-0.299500,0.283700,0.958600,-0.023110 0.005368,-0.279300,-0.684400,-0.198900,0.980000,0.000777 0.399200,0.146100,0.155000,0.005406,0.941700,-0.336500 -0.031550,0.051730,0.422300,-0.593900,-0.273500,-0.756700 -0.366500,-0.138300,0.258500,0.016630,0.981200,-0.192100 0.039830,-0.186000,0.267900,-0.479400,0.849200,-0.221500 -0.047950,0.057850,0.278000,0.995100,-0.005899,0.098190 -0.060550,-0.177300,0.262300,-0.643400,-0.743900,0.180400 0.021930,0.140100,0.139700,0.006289,0.927000,-0.374900 -0.122700,-0.178300,0.402200,0.720900,-0.502500,0.477400 0.530400,-0.160600,0.222600,0.022390,-0.960000,0.279000 0.847700,-0.131200,0.235300,-0.022240,0.959500,-0.280900 0.040530,0.028230,0.635400,0.637600,0.197100,0.744700 -0.891400,0.117100,0.085960,0.000000,0.902400,-0.430900 -0.010160,-0.278400,-0.569700,-0.235200,-0.971800,0.019230 0.046090,0.048150,0.101600,0.542600,0.827700,-0.143400 0.453900,-0.153300,0.255500,0.023360,-0.966100,0.257100 0.092900,-0.163500,0.249800,0.023200,-0.965200,0.260600 -0.087440,-0.078610,-0.123400,-0.950300,0.279400,-0.137100 -0.311700,0.143600,0.260500,0.000000,-0.966200,0.257700 -0.131200,-0.220400,-0.601500,-0.005678,0.976400,-0.215700 -0.410100,-0.153800,0.261200,-0.030670,-0.967400,0.251500 0.013840,-0.264700,-0.200500,-0.185600,0.979000,-0.084520 -0.099500,-0.105900,0.251100,-0.971900,-0.229800,0.051350 0.114800,-0.288000,-0.887800,0.000000,-0.977900,0.208900 0.788000,0.133300,0.221500,0.000000,-0.966700,0.255800 0.093730,-0.047190,-0.001226,0.954200,0.277100,-0.112800 0.029580,-0.267600,-0.613200,0.766900,-0.638000,-0.070310 -0.825500,-0.167600,0.168300,-0.032150,-0.947800,0.317100 0.142700,0.129100,0.112300,-0.000049,0.918100,-0.396400 -0.191500,-0.308600,0.316300,0.999400,0.007094,0.033060 0.055010,-0.083760,-0.299700,0.715400,0.655400,-0.242200 -0.067210,-0.151800,0.244700,0.168900,0.954800,-0.244700 0.072710,0.021660,0.085020,0.757100,0.644900,-0.104200 -0.885900,0.086110,0.018110,0.010220,0.948600,-0.316500 0.081760,0.033840,0.273900,-0.904000,-0.414000,0.106900 0.798400,0.152500,0.293900,0.014240,-0.939500,0.342300 -0.083450,-0.183000,-0.203400,0.975800,0.207400,0.068990 0.145300,-0.150100,0.297400,0.023350,-0.972900,0.230000 -0.027680,-0.217800,-0.681200,-0.904400,0.326100,-0.275400 -0.240600,-0.245300,-0.685200,-0.004731,-0.978500,0.206300 0.054700,0.117000,0.086000,0.027580,0.906500,-0.421200 -0.090590,-0.302500,0.392800,0.000534,0.999400,-0.034840 -0.142200,0.104400,0.113000,0.000000,-0.956100,0.293000 -0.322700,-0.181400,0.144200,0.065880,0.881400,-0.467800 -0.524900,-0.177100,0.169800,-0.032310,-0.948400,0.315300 0.076560,-0.322500,0.329000,-0.010040,0.866000,-0.500000 -0.023340,-0.064570,-0.049840,-0.356700,-0.188600,-0.915000 -0.061710,-0.001911,0.610500,-0.837100,-0.204500,0.507300 0.003226,-0.133500,-0.536900,0.990000,0.131300,-0.050800 0.081140,0.052600,0.351000,0.854800,0.515200,-0.061660 -0.404700,0.083100,0.052600,0.000000,-0.953100,0.302600 -0.295000,-0.143400,0.247000,0.032280,0.967000,-0.252800 -0.026550,-0.268200,-0.269000,-0.361400,-0.930500,0.060380 0.076070,-0.045800,0.527800,-0.867900,0.336600,-0.365200 -0.443000,0.148000,0.277200,0.000000,-0.967400,0.253400 -0.064500,-0.097460,-0.286000,0.870700,-0.453000,0.191500 0.710900,0.080930,0.001433,0.015510,0.970700,-0.239800 0.705400,-0.186700,0.129800,0.023100,-0.939800,0.340800 -0.705000,0.129100,0.112300,-0.000012,0.918000,-0.396500 -0.047620,0.057860,0.327200,0.989300,-0.133500,0.058950 -0.046970,-0.257100,-0.404600,-0.742400,-0.669700,-0.016690 0.192300,-0.330300,0.323800,0.975300,0.018330,-0.220000 -0.820400,-0.129700,0.234600,0.048310,0.952000,-0.302400 0.437500,0.149400,0.282300,0.000000,-0.966200,0.257800 -0.032180,-0.236500,0.025490,-0.373500,-0.915000,0.152800 -0.584700,0.139900,0.139500,-0.000012,0.946600,-0.322500 -0.000147,-0.008371,-0.063830,-0.002669,0.198700,0.980100 -0.322700,0.086110,0.018120,-0.010210,0.952800,-0.303600 -0.508700,-0.186800,0.122500,0.050860,0.865600,-0.498100 0.634400,0.097440,0.091620,0.000000,-0.945100,0.326800 -0.136300,0.130700,0.116000,0.000000,0.921300,-0.388800 0.067250,-0.031710,-0.116100,0.783100,0.581300,-0.220900 -0.005181,-0.243200,-0.778200,0.659200,-0.689200,0.300900 0.045170,0.044300,0.157600,0.475600,-0.861800,0.176200 0.008765,-0.166300,-0.588400,-0.214700,-0.907600,0.360700 -0.057690,0.061080,0.223100,0.439200,-0.881100,0.175400 0.404800,-0.141800,0.235200,-0.023550,0.957800,-0.286500 0.090010,-0.118000,0.267300,-0.950000,0.295700,-0.100600 0.065700,-0.230800,-0.274200,-0.893000,0.449800,0.016840 0.005604,0.109900,0.382300,-0.020260,0.975500,-0.219200 0.045840,0.049300,0.619300,0.459500,0.335400,0.822400 -0.031710,0.068730,0.525000,-0.261500,-0.857200,0.443600 0.738700,0.080340,0.043350,0.000000,-0.964000,0.265900 -0.848000,-0.128700,0.233400,0.032140,0.961800,-0.271900 0.273600,-0.150000,0.285200,0.024620,-0.971400,0.236300 0.202400,-0.168000,0.174700,-0.017540,0.922900,-0.384600 -0.164100,0.083760,0.010290,-0.000023,0.964200,-0.265300 0.459400,0.172500,0.278000,0.005078,0.998200,-0.059450 0.524900,-0.174300,0.178500,0.023170,-0.950600,0.309600 0.579700,0.073080,-0.006566,-0.002641,-0.999900,0.012040 0.656300,0.083440,0.010360,-0.005594,0.962400,-0.271700 -0.350000,0.146000,0.155000,0.000000,0.939400,-0.342800 0.426600,-0.166000,0.166400,-0.032940,0.915500,-0.401000 -0.678200,-0.135500,0.229300,0.023880,0.964700,-0.262400 -0.350000,0.096090,0.087790,0.000000,-0.942000,0.335700 -0.060140,0.149400,0.282300,0.000000,-0.966200,0.257800 0.579700,0.144700,0.151200,0.000009,0.938000,-0.346600 0.000050,-0.121800,-0.479500,-0.003625,0.930300,-0.366800 0.009067,0.047090,0.160500,-0.914300,0.044020,0.402600 -0.344500,0.080140,-0.002638,0.000038,0.976300,-0.216300 -0.021410,0.167000,0.227900,-0.000039,0.983100,-0.183000 -0.743700,0.081080,0.001335,0.009979,0.958400,-0.285400 -0.618000,0.101700,0.104200,0.000000,-0.951500,0.307600 0.093370,-0.154600,0.283900,0.022860,-0.971100,0.237500 -0.257000,0.083760,0.010290,0.005645,0.955900,-0.293700 0.410600,0.168400,0.235600,-0.000015,0.987700,-0.156300 -0.705500,0.118200,0.164500,0.000000,-0.966800,0.255600 -0.203200,-0.299000,0.412400,-0.970800,0.136000,0.197800 0.004715,-0.277000,-0.373000,0.066210,-0.997500,0.024860 0.525000,-0.137900,0.310000,0.021010,-0.920700,0.389800 -0.069090,-0.057460,0.009096,0.974800,0.066950,0.212900 0.131300,0.169100,0.240200,-0.000129,0.989600,-0.143900 0.131300,-0.267200,-0.789100,0.000000,-0.978500,0.206100 0.032010,-0.257500,-0.154200,0.388400,-0.918500,0.074380 0.546900,0.149100,0.163700,0.000011,0.944600,-0.328300 0.099760,-0.003474,0.436000,0.990800,0.128600,0.041850 0.267900,-0.185900,0.162400,0.022640,-0.947000,0.320300 -0.771000,-0.167900,0.172700,-0.031690,-0.949300,0.312900 0.257000,0.104400,0.113000,0.000000,-0.956100,0.293000 0.918800,0.131800,0.120400,-0.014880,0.914700,-0.403900 0.030990,0.039970,0.568000,0.000053,-0.206300,-0.978500 0.098230,-0.297000,-0.944100,0.124600,-0.201400,-0.971600 -0.793000,0.096090,0.087790,0.000000,-0.942000,0.335700 0.437400,-0.191400,0.135000,0.023040,-0.940900,0.337800 -0.470300,0.155500,0.184200,0.010590,0.962300,-0.271700 0.377400,0.150100,0.167600,0.000141,0.951900,-0.306300 0.068240,0.065780,0.459900,-0.746200,-0.661800,-0.072250 -0.415600,-0.145800,0.292400,-0.032500,-0.971200,0.235900 -0.242600,-0.133700,0.313500,0.046570,0.964700,0.259100 0.749200,0.171000,0.256200,-0.000018,0.995200,-0.097940 0.019190,0.023990,0.319100,0.361800,-0.826000,0.432300 0.095620,-0.177000,0.173200,-0.981700,-0.121800,0.146000 -0.056930,-0.244300,-0.311400,0.806200,0.591600,0.003615 0.077410,0.059300,0.391000,0.777000,0.629400,0.009993 0.000287,-0.183000,0.324300,0.019460,-0.955800,0.293300 -0.034000,-0.250700,-0.638500,-0.938700,-0.328600,-0.104100 0.010940,0.120700,0.093540,-0.000176,0.909200,-0.416400 -0.043740,-0.326900,0.402500,-0.000233,-0.957900,0.287100 0.360900,0.090400,0.030790,0.005027,0.942700,-0.333500 0.820200,-0.138900,0.277100,0.022480,-0.970500,0.239900 -0.043330,-0.028880,-0.160000,0.509500,-0.817000,0.270100 -0.037460,-0.121600,-0.436600,0.610600,-0.736900,0.290000 -0.748800,0.105800,0.117500,0.000000,-0.957500,0.288300 -0.339000,-0.166300,0.224600,-0.032530,-0.959800,0.278600 -0.051780,-0.066340,-0.031020,-0.734000,-0.139800,-0.664700 -0.530500,0.170500,0.250900,0.000030,0.993600,-0.113000 -0.160300,0.106700,0.310000,-0.444000,-0.752000,-0.487200 0.145100,0.151100,0.589300,-0.379800,0.571700,0.727200 0.092000,0.000279,0.230500,-0.955700,-0.293500,0.020730 0.090270,-0.167300,0.015570,-0.948300,0.315600,-0.034250 0.002903,-0.221000,-0.821200,0.999000,0.045710,-0.000005 0.002903,-0.188200,-0.832200,0.998400,0.010160,0.055850 0.087340,-0.138600,-0.224600,0.979600,0.138500,-0.145700 0.650800,0.152500,0.294000,0.000000,-0.960800,0.277200 0.809500,-0.171900,0.164700,0.024040,-0.947700,0.318300 0.333600,0.097070,0.045940,-0.010210,0.907000,-0.421000 0.093140,-0.154200,0.053840,-0.957600,0.285900,-0.036100 -0.825300,0.080340,0.043350,0.000000,-0.964000,0.265900 0.039510,0.085680,0.241200,0.548300,0.822400,-0.151900 0.880500,0.078680,-0.011820,0.000000,0.990100,-0.140300 0.164100,-0.292000,-0.907300,-0.000014,-0.978500,0.206200 0.043760,-0.087100,-0.001554,-0.000001,-0.978500,0.206100 0.645300,-0.147200,0.260800,0.023450,-0.967800,0.250800 -0.147200,-0.341000,0.338800,0.000000,-0.976300,0.216300 0.039570,-0.207400,0.169000,-0.452900,0.878700,-0.150500 0.246100,0.172100,0.278000,0.000000,1.000000,-0.003481 -0.771100,0.172500,0.278000,0.000000,0.999400,-0.034010 -0.235100,-0.272900,-0.816400,0.000000,-0.978500,0.206200 0.069060,-0.223900,-0.148500,-0.843800,0.536200,-0.021370 0.492500,-0.151200,0.259700,0.024430,-0.966700,0.254800 -0.913300,0.096090,0.087790,0.000000,-0.942000,0.335700 -0.082020,-0.284400,-0.871000,-0.000023,-0.979000,0.203600 0.924300,-0.154000,0.165900,-0.053310,0.922400,-0.382400 -0.054340,-0.061640,0.555600,-0.557200,-0.659500,0.504600 0.142100,-0.198100,0.136500,0.022040,-0.940300,0.339500 -0.038280,0.117200,0.160600,0.000000,-0.967000,0.254700 -0.612500,0.113500,0.078730,0.020280,0.892000,-0.451600 -0.350000,0.110700,0.134700,0.000000,-0.965100,0.261700 -0.535900,0.149400,0.282300,0.000000,-0.966200,0.257800 0.388300,0.136500,0.233600,0.000000,-0.966900,0.255200 0.053220,0.209700,0.270900,-0.885600,0.197000,0.420600 -0.033880,0.058470,0.100900,-0.226200,0.923300,-0.310400 -0.896900,-0.172000,0.124300,0.027970,0.872300,-0.488100 -0.009418,0.091520,0.498900,-0.881700,-0.121800,-0.455800 0.054720,-0.248800,-0.378200,0.829300,-0.558400,-0.019840 -0.880500,0.109300,0.129700,0.000000,-0.964400,0.264600 0.601600,0.159700,0.196600,0.010580,0.960400,-0.278600 -0.079070,-0.020450,-0.027720,-0.866500,0.471500,-0.163700 0.771000,-0.153200,0.228100,0.022710,-0.961500,0.273700 -0.180200,-0.330100,0.388000,0.022880,-0.970300,0.240900 -0.169500,-0.233800,-0.630700,0.000000,-0.977900,0.208900 0.768700,-0.139100,0.281000,0.022980,-0.970800,0.238700 -0.175000,-0.345500,0.298200,0.062000,0.612200,-0.788300 0.085830,-0.030610,0.508600,-0.966900,0.188400,-0.172300 0.202300,-0.161300,0.248000,0.022990,-0.963900,0.265300 0.585200,-0.124500,0.294700,-0.028460,0.988400,-0.149500 -0.094790,0.169400,0.301900,0.000761,0.702000,0.712100 0.426400,-0.128300,0.293500,-0.022670,0.988700,-0.148200 -0.169700,-0.161200,0.263400,-0.031430,-0.967100,0.252300 0.667200,0.169500,0.245600,-0.025490,0.989900,-0.139400 -0.109400,-0.214600,-0.574200,-0.004239,0.976500,-0.215600 0.016450,-0.227000,-0.631300,0.030720,0.977900,-0.206800 0.191400,-0.198700,0.131300,0.023090,-0.938900,0.343300 0.891500,-0.189100,0.102700,-0.041020,0.785900,-0.617000 -0.065830,-0.181500,-0.417200,0.973300,-0.144700,0.178400 -0.119900,-0.327000,0.401900,-0.000017,-0.974400,0.224600 -0.628900,0.162100,0.304300,0.000000,-0.063810,0.998000 -0.064370,-0.016960,0.104400,-0.009355,-0.232300,-0.972600 -0.098420,-0.256600,-0.776900,0.000000,0.978500,-0.206200 0.100700,-0.068110,0.245300,-0.994700,0.082020,-0.062570 -0.535900,-0.165100,0.206500,-0.032040,-0.957300,0.287400 -0.021870,0.008136,0.100900,0.000025,0.156900,0.987600 -0.054680,0.136500,0.233600,0.000000,-0.966900,0.255200 -0.568700,0.169800,0.245500,0.000004,0.991600,-0.129200 0.043760,-0.023600,0.581400,-0.000015,-0.205800,-0.978600 -0.030990,-0.034190,-0.195800,0.376800,-0.878400,0.294000 -0.007794,0.091030,0.409100,0.463000,-0.154500,-0.872800 -0.031150,-0.261200,-0.198100,-0.381900,-0.920900,0.077400 -0.185600,-0.175700,0.165400,0.031340,0.911500,-0.410000 0.530400,-0.148500,0.266700,0.023210,-0.968800,0.246800 -0.612500,0.084900,0.014220,-0.015230,0.963600,-0.267100 -0.940400,0.129200,0.131400,-0.896300,0.116400,0.427900 0.289800,0.118100,0.089990,0.010130,0.902000,-0.431500 0.169500,-0.218600,-0.596400,0.000000,0.978500,-0.206300 0.052510,0.061770,0.196900,0.601900,0.785000,-0.146200 -0.278800,-0.152700,0.282700,-0.031680,-0.970700,0.238100 -0.021870,0.141000,0.250400,0.000000,-0.967400,0.253200 0.328100,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.656200,0.149400,0.282300,0.000000,-0.966200,0.257800 -0.068760,-0.218900,-0.044890,-0.770800,-0.634100,0.061060 -0.108900,0.129100,0.112300,0.000000,0.918000,-0.396500 -0.218700,-0.252900,-0.758800,0.000000,0.977600,-0.210600 0.875000,-0.123000,0.265600,0.000339,0.975700,-0.219200 0.246200,-0.203200,0.106200,-0.021560,0.798800,-0.601200 -0.448400,0.155500,0.301300,0.000000,-0.764900,0.644200 -0.141700,-0.236900,-0.645600,0.000000,-0.978600,0.205800 -0.061270,-0.061780,-0.209600,0.762700,-0.604800,0.229100 -0.033230,0.077650,0.322200,0.261800,0.957600,-0.120600 0.155500,0.093670,0.261700,0.752200,-0.641800,0.149600 -0.086040,-0.158100,0.161400,0.916600,0.398300,-0.035160 -0.180500,0.163800,0.213200,-0.015500,0.970900,-0.238900 -0.055820,-0.019200,-0.112500,-0.633100,0.734100,-0.245500 -0.415800,-0.144100,0.231800,0.037760,0.954700,-0.295300 0.749300,-0.184200,0.133400,0.024150,-0.940600,0.338700 0.366400,0.170500,0.256300,0.020300,0.996800,-0.077390 -0.102200,-0.029990,0.196000,-0.983300,0.178200,-0.035830 -0.041420,0.081360,0.275500,-0.572100,0.744200,0.344900 0.880900,0.129100,0.112300,-0.020490,0.915200,-0.402500 0.918800,0.073080,-0.006560,0.000000,-0.999800,0.020470 0.036020,0.064670,0.488400,-0.480700,0.800400,-0.358000 -0.044200,-0.255100,-0.250500,0.568000,0.822000,-0.040670 0.098350,-0.109800,0.174100,-0.982500,0.182000,-0.038200 -0.028090,0.076660,0.191100,0.090950,0.969500,-0.227500 -0.188800,-0.325400,0.410800,0.559700,-0.536600,0.631500 -0.003240,-0.073370,-0.783000,-1.000000,0.000000,0.000000 -0.146600,0.065100,0.162500,0.802700,0.545800,-0.240400 -0.525000,0.172600,0.283500,0.000000,0.999800,-0.018290 -0.000003,0.050830,0.449000,-0.018650,-0.651400,0.758500 -0.003258,-0.139000,-0.646200,-1.000000,-0.003873,0.001107 0.060170,-0.236700,-0.682200,0.000000,0.977600,-0.210600 -0.098640,-0.005106,0.428300,-0.982500,0.172700,0.069160 -0.661200,0.129600,0.207400,0.077330,-0.993800,0.079340 -0.130800,-0.331800,0.380300,0.000000,-0.976300,0.216600 -0.344000,-0.175300,0.154500,0.022310,0.907800,-0.418800 0.088560,-0.141700,0.223000,0.950200,-0.311400,-0.010430 0.689100,-0.123800,0.283600,-0.022300,0.983500,-0.179500 -0.508600,-0.159600,0.228400,-0.032030,-0.961900,0.271700 0.875000,0.084370,0.056500,0.000000,-0.946600,0.322400 0.029180,-0.349700,0.296900,0.000000,-0.919700,-0.392700 0.009981,0.089440,0.308100,0.158900,0.320300,0.933900 -0.864100,0.118600,0.089790,0.010200,0.902100,-0.431300 0.176900,-0.336000,0.398300,-0.965100,-0.260500,0.028190 0.519600,-0.171300,0.150100,-0.012440,0.894300,-0.447200 -0.169500,-0.257900,-0.745000,0.000000,-0.978600,0.205900 0.054690,-0.304400,0.376700,0.000018,0.984000,-0.178100 -0.229600,-0.191400,0.156900,-0.031350,-0.946100,0.322500 0.377400,-0.143800,0.231400,-0.038540,0.964400,-0.261600 0.929700,0.101700,0.104200,0.000000,-0.951500,0.307600 0.120400,-0.216600,-0.586000,0.004281,0.976800,-0.214100 0.027350,-0.267200,-0.789100,-0.000964,-0.978400,0.206700 -0.546900,0.074760,0.015340,0.000000,-0.990900,0.134700 -0.355500,0.170500,0.250900,0.000018,0.995200,-0.097780 -0.095770,-0.090310,-0.077270,-0.982200,0.167000,-0.085570 0.218800,-0.241700,-0.668400,0.000028,-0.978900,0.204400 -0.005636,-0.130100,0.464700,0.068100,0.920200,-0.385500 -0.880500,0.088680,0.068100,0.000070,-0.933200,0.359500 0.656300,0.113700,0.146500,0.000131,-0.971800,0.235700 0.415600,0.086110,0.018110,-0.000063,0.950700,-0.310000 -0.054900,-0.204600,-0.541800,-0.657800,0.741400,-0.133100 0.158100,-0.310600,0.410700,0.000076,0.293200,0.956100 0.075570,-0.194000,-0.340400,0.976500,-0.193800,-0.094130 -0.136700,-0.167800,0.243100,-0.032340,-0.962400,0.269800 0.048750,0.069260,0.225300,0.733200,0.677400,-0.059840 0.164100,0.100400,0.100400,0.000000,-0.948000,0.318100 -0.142100,-0.186900,0.179100,-0.032020,-0.951000,0.307400 0.054710,-0.153800,-0.463800,0.903400,0.357100,-0.237200 0.077820,0.065790,0.302000,0.905600,0.253400,0.340200 0.790400,-0.128100,0.253200,-0.028990,0.979400,-0.199800 -0.514100,-0.150300,0.200600,0.021190,0.956100,-0.292400 -0.060560,-0.025360,0.595300,-0.770200,-0.504600,0.390000 0.075420,-0.216300,-0.225100,0.934400,-0.355100,-0.028460 0.018540,-0.172700,0.350900,0.205900,-0.938300,0.277900 0.557800,0.101700,0.104200,0.000000,-0.951500,0.307600 -0.667100,-0.162800,0.199900,-0.032030,-0.954100,0.297600 -0.782000,-0.180500,0.135000,-0.031410,-0.941600,0.335400 0.125700,-0.133900,0.310600,-0.019900,0.994800,0.099680 0.047530,-0.222300,-0.551600,-0.761900,-0.394000,0.514100 0.164100,-0.336800,0.357700,-0.049020,-0.966000,0.253700 0.371900,-0.154400,0.198800,-0.022880,0.939400,-0.342000 0.486700,0.101700,0.104200,0.000000,-0.951500,0.307600 -0.100500,-0.079300,0.004746,-0.990500,0.122800,-0.061130 0.311700,0.155600,0.184200,0.015380,0.952500,-0.304100 -0.174500,0.127500,0.199700,0.067440,-0.975700,0.208500 -0.090160,-0.176400,-0.088410,-0.962700,-0.270500,-0.009628 -0.743700,0.172600,0.283500,0.000000,0.999800,-0.018290 0.055400,-0.040990,-0.028350,-0.797300,0.128500,0.589800 -0.076560,0.046460,0.256300,0.811000,-0.570200,0.130900 -0.305800,0.107000,0.121400,0.000000,-0.960000,0.279800 -0.048750,0.141700,0.143200,0.000000,0.935200,-0.354100 -0.820400,-0.123100,0.260800,0.046560,0.978400,-0.201400 0.684100,0.134300,0.225400,-0.000189,-0.966800,0.255600 -0.716400,0.162100,0.304300,0.000000,-0.063810,0.998000 0.103400,-0.089840,0.026440,0.995700,0.071470,-0.058460 0.186000,-0.246300,-0.727600,0.000000,0.978400,-0.206800 -0.043740,0.162100,0.304300,0.000000,-0.066080,0.997800 -0.034460,-0.122400,0.472300,-0.351200,-0.863700,0.361400 -0.382900,-0.154400,0.201700,0.056810,0.940600,-0.334800 0.842300,-0.183200,0.113500,-0.022090,0.864300,-0.502500 -0.185900,0.143300,0.147400,0.000000,0.936800,-0.350000 -0.697200,-0.139200,0.281500,-0.030440,-0.970800,0.238000 -0.218700,-0.291200,-0.903400,0.000637,-0.979100,0.203300 -0.377300,-0.148100,0.288400,-0.032320,-0.971800,0.233700 0.008462,-0.056860,-0.284800,-0.117700,-0.939900,0.320600 0.097640,-0.054630,0.044430,-0.975600,-0.210100,0.064170 -0.153100,0.143300,0.147400,0.000000,0.936800,-0.350000 -0.304000,0.073830,0.007119,0.000000,-0.996200,0.087490 -0.153100,-0.313500,0.346700,-0.005363,0.921500,-0.388400 0.886400,0.140200,0.139400,-0.000096,0.916800,-0.399400 -0.662300,-0.068040,0.191600,0.972700,0.055980,-0.225200 0.847700,0.148500,0.163900,0.025910,0.942300,-0.333600 0.098450,-0.206000,-0.536600,-0.000133,0.982100,-0.188400 0.046490,-0.244000,-0.515300,-0.931100,0.357200,0.074080 -0.579800,-0.124900,0.289300,0.032000,0.985000,-0.169600 0.197300,-0.232700,-0.663300,0.000000,0.978700,-0.205400 0.541500,-0.164300,0.164600,-0.040100,0.903300,-0.427100 -0.009482,-0.276000,-0.436600,0.167100,0.985800,-0.017100 -0.849500,-0.115900,0.311900,0.004248,0.698000,0.716100 -0.180500,0.076420,0.025960,0.000000,-0.983900,0.178800 0.344600,-0.177900,0.146100,-0.027480,0.897000,-0.441200 0.295300,-0.133500,0.281900,-0.039240,0.981700,-0.186400 0.519500,-0.192700,0.125700,0.022800,-0.938400,0.344900 -0.798400,0.142300,0.255400,0.000037,-0.967400,0.253400 -0.612500,0.114900,0.151500,0.000000,-0.971300,0.237900 0.218800,-0.251000,-0.712500,0.000000,-0.978500,0.206200 0.087500,-0.234900,-0.635900,0.000000,-0.978500,0.206100 -0.071080,-0.229100,-0.608600,0.000000,-0.978500,0.206100 -0.432000,0.130700,0.211800,0.000000,-0.966800,0.255400 -0.090840,-0.132700,0.255900,-0.976600,-0.204200,0.066820 -0.196900,-0.156800,0.212800,0.036420,0.949900,-0.310600 0.022580,-0.030390,-0.055160,-0.397100,0.192600,0.897300 0.054690,-0.282100,-0.897700,0.000013,0.979300,-0.202400 0.035750,-0.247000,-0.640300,0.921000,-0.353500,-0.163800 -0.099570,0.001135,0.294200,-0.970300,0.238400,-0.040370 -0.891400,0.076420,-0.027490,0.000000,0.980600,-0.196200 0.028540,0.072820,0.278100,-0.403100,-0.905100,-0.135100 0.016420,-0.274000,-0.821700,0.000000,-0.979000,0.203700 0.082170,-0.160900,-0.274300,-0.994900,-0.024820,0.097440 -0.541400,0.144700,0.151200,-0.010180,0.933100,-0.359500 -0.251700,-0.137500,0.278800,0.042570,0.978700,-0.200900 -0.109400,-0.287900,-0.925000,-0.000060,0.979300,-0.202300 0.847700,0.085710,0.060270,0.000172,-0.939500,0.342700 0.661300,0.047840,0.105900,0.195600,-0.254000,-0.947200 0.700000,0.148600,0.163800,0.026030,0.942200,-0.333900 0.042670,-0.234500,-0.586400,-0.959800,0.240000,0.145900 -0.082020,-0.073090,-0.150900,-0.935300,0.323700,-0.142700 0.029090,-0.106100,-0.417100,0.431000,0.853900,-0.291700 -0.382800,0.124000,0.186300,0.000000,-0.966800,0.255700 0.087300,-0.096400,-0.148000,-0.969500,-0.215700,0.116400 0.045630,0.073510,0.381900,0.758200,-0.652000,0.009721 -0.328000,-0.179300,0.183600,-0.031510,-0.950700,0.308500 -0.073460,-0.219300,-0.241500,-0.925300,-0.379100,-0.014730 0.148100,-0.237700,-0.649400,0.000000,-0.978500,0.206300 -0.820300,0.086180,0.018340,-0.009946,0.952700,-0.303700 -0.044970,-0.177200,0.306000,-0.470000,-0.847300,0.247300 0.246600,0.078420,0.035680,0.000000,-0.975300,0.220800 -0.065620,-0.264400,-0.813400,0.000000,0.977600,-0.210600 0.902400,0.117200,0.160600,0.000000,-0.967000,0.254700 -0.091970,-0.010850,0.130600,0.946900,-0.311800,0.078120 -0.000029,-0.221800,0.141300,0.001943,0.989700,-0.143400 0.103900,-0.239400,-0.695000,0.000000,0.979200,-0.203000 0.924200,0.107700,0.067950,0.005102,0.854700,-0.519100 0.088000,-0.152500,0.173800,0.925900,-0.362000,0.108000 0.038290,-0.254800,-0.730600,-0.000706,-0.977800,0.209700 0.000067,0.118200,0.446400,-0.026200,0.002464,-0.999700 0.087140,0.004159,0.132300,0.921800,0.383500,-0.056910 0.213300,-0.254500,-0.766500,0.000060,0.979300,-0.202400 0.240900,-0.158200,0.197200,-0.022240,0.937700,-0.346800 -0.475800,0.081570,0.047670,0.000000,-0.958400,0.285500 0.070610,-0.060680,0.016270,0.870100,0.283900,0.403000 0.869800,-0.133000,0.227000,-0.028960,0.957100,-0.288300 -0.047580,-0.192300,0.238500,-0.521200,-0.834800,0.177100 0.639900,0.102300,0.057090,0.030710,0.887600,-0.459500 0.744000,0.141700,0.143200,-0.015020,0.935000,-0.354400 -0.086900,-0.014640,0.042750,-0.917500,0.383800,-0.104300 -0.530500,0.097440,0.091620,0.000000,-0.945100,0.326800 0.021870,-0.082370,0.010780,-0.015550,0.987300,-0.158300 0.202400,0.084370,0.056500,0.000000,-0.946600,0.322400 -0.803900,0.076270,-0.027210,0.009781,0.976900,-0.213500 -0.036590,-0.095910,-0.368400,0.536300,-0.794600,0.284600 -0.021880,0.158200,0.191900,-0.005533,0.951100,-0.309000 -0.035330,0.079750,0.501600,0.840000,0.302900,0.450100 -0.068160,-0.208900,-0.394200,-0.960900,-0.247900,-0.123500 -0.371400,0.127500,0.108600,0.000057,0.899200,-0.437600 0.131200,-0.154900,0.279200,0.021920,-0.970000,0.242300 -0.060030,-0.243400,-0.287200,-0.820500,-0.571500,0.011650 -0.284400,0.150400,0.286300,0.000000,-0.966100,0.258200 -0.055450,-0.090100,0.510500,-0.578900,-0.717200,0.387800 -0.064780,-0.207100,-0.499800,-0.590600,-0.623000,0.512900 0.043250,-0.162500,-0.514300,-0.834600,-0.482600,0.265500 0.010970,-0.237400,-0.682100,0.065940,0.973700,-0.218200 -0.617800,-0.156500,0.226500,-0.033140,-0.960100,0.277800 0.076630,-0.091420,-0.213400,-0.927300,-0.338300,0.160300 0.246300,-0.269900,-0.839900,-0.025230,0.979500,-0.199900 0.656200,-0.174700,0.167700,0.022880,-0.948100,0.317000 0.765600,0.096090,0.087790,0.000000,-0.942000,0.335700 0.088370,-0.176300,-0.033710,-0.948100,0.317800,-0.011640 0.574200,0.152500,0.294000,0.000000,-0.960800,0.277200 0.071920,-0.107300,0.446400,0.770000,-0.592100,0.237800 0.038290,0.104400,0.113000,0.000000,-0.956100,0.293000 -0.028080,0.069800,0.158600,0.091980,0.973600,-0.208900 0.024880,-0.209600,0.191300,-0.280500,0.938200,-0.202900 -0.037020,-0.066470,-0.290200,-0.472900,0.833800,-0.285000 0.094800,-0.349700,0.296900,0.000000,-0.919700,-0.392700 0.043760,0.168700,0.235700,0.005660,0.981500,-0.191100 0.339100,0.102900,0.108100,0.000000,-0.954400,0.298400 0.244300,-0.135500,0.317300,-0.005921,0.225100,0.974300 -0.003240,-0.199200,-0.793900,-1.000000,0.000000,0.000000 -0.803800,-0.149300,0.229900,-0.031540,-0.961500,0.273000 0.084520,-0.189000,-0.126700,-0.951000,0.309200,0.006604 0.393700,-0.192300,0.135300,0.023510,-0.941200,0.337100 0.054750,-0.213700,-0.514800,-0.976700,-0.043440,0.210100 -0.049240,0.051510,0.125300,-0.546200,0.814800,-0.194200 -0.284400,0.125700,0.104400,0.000000,0.913300,-0.407400 -0.076180,-0.132600,-0.291600,0.961600,-0.219800,0.164700 -0.574100,-0.150400,0.253500,-0.031950,-0.964500,0.262200 -0.005457,-0.089810,-0.024350,-0.000011,0.978500,-0.206200 0.153100,-0.279800,-0.848900,0.000000,-0.978600,0.205900 -0.063540,-0.010090,-0.060830,-0.699000,0.682000,-0.215000 -0.694500,0.097440,0.091620,0.000000,-0.945100,0.326800 0.000013,-0.252100,-0.717800,-0.000023,-0.979000,0.203700 0.650800,0.145700,0.268300,0.000000,-0.966700,0.255700 0.164100,-0.270200,-0.803400,0.000000,-0.978500,0.206400 -0.552300,0.093660,0.038300,-0.000008,0.919500,-0.393100 0.776600,-0.165200,0.149700,-0.002472,0.892200,-0.451700 -0.633900,0.141700,0.143200,0.000000,0.935200,-0.354100 -0.048370,0.018920,0.159700,0.459000,-0.851300,0.254300 -0.136700,-0.262500,-0.767100,0.000000,-0.979000,0.203700 -0.907400,-0.139400,0.253300,-0.067930,-0.960000,0.271500 -0.541400,0.087100,0.063960,0.000000,-0.934900,0.354900 -0.076560,0.121900,0.178500,0.000000,-0.966200,0.257700 -0.095710,-0.143600,0.108300,-0.959200,-0.280400,0.036330 -0.147700,0.119300,0.168300,0.000000,-0.967400,0.253400 0.114800,-0.315200,0.343100,-0.015310,0.928600,-0.370800 0.158600,-0.322200,0.328800,-0.000008,0.863600,-0.504200 0.459300,-0.163900,0.217000,0.023380,-0.958600,0.283700 0.185900,0.144000,0.151400,-0.010330,0.964900,-0.262300 -0.191400,-0.285500,-0.876100,0.000000,-0.979100,0.203400 0.048960,0.063310,0.249900,0.064250,-0.996500,0.052780 0.268300,-0.145500,0.233900,-0.019210,0.967800,-0.250800 -0.051270,-0.167800,-0.503200,-0.914200,0.344100,-0.214200 -0.003240,-0.177300,-0.662600,-1.000000,-0.003123,0.001274 -0.021880,-0.269300,-0.799500,-0.020940,-0.983000,0.182200 -0.026190,-0.243300,-0.026210,0.303600,0.946600,-0.108200 0.010950,-0.292900,-0.911100,0.000000,-0.977800,0.209500 0.114900,0.150400,0.286300,0.000000,-0.966100,0.258200 -0.672100,0.130600,0.116200,0.014970,0.928800,-0.370300 -0.131200,-0.196700,0.151300,-0.031270,-0.943500,0.329800 -0.064540,-0.132700,-0.362900,0.925900,-0.337600,0.169300 -0.131200,0.137800,0.238700,0.000000,-0.966200,0.257900 -0.300900,-0.161800,0.189600,0.021370,0.928000,-0.372100 -0.083810,-0.039960,-0.039490,0.923200,-0.358400,0.138900 0.645400,-0.172900,0.141000,-0.011950,0.874000,-0.485700 0.886000,-0.161400,0.151500,-0.032910,0.911100,-0.410800 0.328100,0.124000,0.186300,0.000000,-0.966800,0.255700 0.339100,-0.150900,0.211500,-0.017720,0.966900,-0.254700 0.700000,0.109300,0.129700,0.000053,-0.964300,0.264700 -0.836700,0.117100,0.085960,-0.005084,0.899400,-0.437000 -0.054680,-0.337700,0.353700,0.000000,-0.975700,0.219100 -0.077520,-0.182900,-0.307200,0.993000,0.111400,0.038570 0.552600,-0.133400,0.253900,-0.023620,0.971600,-0.235300 -0.038270,-0.206400,-0.500600,-0.000460,-0.972000,0.235100 0.094540,0.022910,0.409000,0.942000,0.333200,0.039280 -0.382800,0.172700,0.288900,0.000000,0.999800,0.021750 -0.104200,0.057820,0.351300,0.742200,0.625000,-0.241700 0.443000,0.109300,0.129700,-0.000089,-0.964300,0.264800 -0.732800,0.126300,0.195100,0.000000,-0.967400,0.253400 0.598900,-0.127900,0.276000,-0.046710,0.984500,-0.169200 -0.196800,-0.165900,0.188200,0.046230,0.922800,-0.382400 -0.246100,-0.181600,0.184700,-0.032200,-0.951600,0.305500 -0.193400,0.136300,0.278300,-0.738400,-0.660000,0.138400 0.005471,0.079450,0.353200,0.033750,0.160900,0.986400 0.721900,0.097440,0.091620,0.000000,-0.945100,0.326800 -0.045070,0.085400,0.453500,-0.679500,0.731000,0.062590 0.104800,-0.078730,0.086580,0.997300,0.059830,-0.042510 -0.940400,-0.165800,0.162000,-0.031570,-0.947600,0.318000 0.176800,-0.357800,0.376400,-1.000000,0.000000,0.000000 -0.044230,-0.244900,-0.561500,-0.918500,-0.367300,-0.146700 0.464800,0.099080,0.096450,0.000000,-0.946300,0.323400 0.039420,-0.256400,-0.564100,0.882600,-0.466200,-0.060640 -0.131200,-0.251000,-0.712500,0.000000,-0.978500,0.206200 -0.678100,-0.161700,0.159200,0.027490,0.911000,-0.411400 0.798400,-0.147900,0.244600,0.022700,-0.964800,0.262200 -0.317200,0.100400,0.053470,-0.005055,0.907200,-0.420600 -0.792900,0.083060,0.052480,-0.000106,-0.953100,0.302600 -0.018330,-0.276000,-0.622500,-0.496700,-0.867900,-0.009295 -0.026920,-0.143500,-0.510300,0.478000,-0.812300,0.334200 -0.733000,-0.132100,0.235400,0.036290,0.964000,-0.263500 -0.070710,-0.182200,0.175800,0.766300,0.637800,-0.078040 0.149900,0.173800,0.573900,-0.347100,0.544600,0.763500 0.092320,-0.139100,-0.175900,0.992100,0.075680,-0.100500 0.941700,-0.156700,0.192500,0.844900,-0.135800,0.517400 -0.090010,-0.057610,0.453300,0.950700,0.262000,-0.165900 0.175000,-0.276400,-0.870400,0.000000,0.979300,-0.202400 0.382800,0.073080,-0.006427,0.010640,-0.999900,-0.009783 0.839400,0.170400,0.279800,0.328200,0.705500,0.628200 0.185900,-0.171600,0.213600,0.023220,-0.957900,0.286000 -0.470300,0.079010,-0.006484,-0.010610,0.988300,-0.152300 -0.721900,-0.118600,0.300100,0.031570,0.991500,-0.126100 -0.142100,-0.158600,0.277300,-0.032030,-0.969800,0.241700 0.093660,-0.078240,0.414400,0.938800,-0.293200,0.180600 0.087280,-0.059180,0.472900,-0.923900,0.279900,-0.260900 0.432000,0.164000,0.213100,0.019690,0.972500,-0.232100 0.005821,-0.278700,-0.640800,-0.164400,0.986000,-0.026920 0.103900,-0.276400,-0.870400,-0.025990,0.980100,-0.196600 -0.530500,-0.128900,0.315300,-0.000548,0.244900,0.969600 -0.048530,-0.219100,-0.605900,-0.377300,0.888000,-0.262900 0.092520,-0.305100,0.407100,0.000047,0.738600,0.674200 0.102000,-0.062270,0.190400,-0.999200,-0.039910,0.008291 -0.088040,0.010860,0.520600,-0.968400,0.153800,0.196100 -0.639800,0.093660,0.038300,-0.000006,0.919500,-0.393100 -0.010610,-0.276500,-0.762800,-0.886000,-0.459900,-0.059540 0.055140,0.101000,0.447700,-0.239200,0.946000,-0.218900 0.935200,-0.181800,0.111800,-0.031910,0.856500,-0.515100 0.013930,0.065400,0.134200,0.565000,0.814700,-0.130500 -0.000704,-0.351800,-0.613200,0.060730,-0.828100,0.557200 0.003237,-0.051500,-0.679100,1.000000,-0.000005,-0.000002 -0.082030,-0.284300,-0.908100,-0.000030,0.978500,-0.206100 0.176800,-0.281200,0.370900,-1.000000,0.000398,0.000031 0.689100,-0.190400,0.109200,-0.020020,0.849100,-0.527800 -0.039240,-0.250700,-0.589500,-0.942100,-0.328400,-0.067210 0.039590,-0.211000,-0.578000,-0.493900,0.845600,0.202300 0.092830,-0.138600,-0.142900,-0.998400,0.009943,0.055110 -0.284300,-0.172700,0.164800,0.002740,0.918700,-0.394900 0.101200,0.027260,0.219800,-0.857100,0.426200,0.289300 -0.120300,-0.332900,0.312800,0.000000,0.794600,-0.607100 0.188100,-0.404400,0.360000,0.893700,-0.448400,-0.013240 0.026240,0.068370,0.160800,-0.383100,0.923700,-0.010570 0.349900,-0.151600,0.271500,0.023320,-0.967700,0.250900 -0.279000,-0.152500,0.218600,-0.001563,0.954000,-0.299900 0.075670,-0.199200,0.048010,0.815100,-0.573400,0.082610 0.465000,-0.138400,0.242400,-0.023360,0.965200,-0.260500 -0.207800,-0.233000,-0.662800,-0.026630,0.980000,-0.197300 -0.061060,-0.106900,0.469800,-0.635300,-0.703600,0.318300 -0.612900,-0.128000,0.270100,0.046250,0.969200,-0.241800 -0.037420,0.044230,0.060490,-0.171500,0.712000,-0.680900 -0.102900,-0.062310,0.354500,-0.988400,-0.137500,0.064460 0.536400,0.127500,0.199700,0.000000,-0.966800,0.255600 -0.798400,-0.171700,0.158800,-0.032250,-0.946400,0.321500 -0.568700,-0.167400,0.195600,-0.032010,-0.953500,0.299800 -0.864000,-0.159300,0.190000,-0.031830,-0.954600,0.296100 0.136700,0.104100,0.060720,0.015280,0.887100,-0.461300 0.080270,-0.184100,-0.269400,-0.976400,0.197000,0.088210 0.092770,-0.165800,-0.104600,0.973900,-0.224500,-0.034140 0.910000,-0.126800,0.248600,0.459300,0.885800,0.066320 -0.809300,-0.191500,0.102800,-0.030630,-0.968500,0.247200 -0.009745,0.014390,-0.067240,0.123800,0.409900,0.903700 -0.155600,-0.172500,0.224500,-0.032900,-0.959100,0.281100 -0.086010,0.033250,0.283700,0.924600,-0.379900,0.028230 -0.041730,-0.262200,-0.318200,-0.579300,-0.815000,0.009369 -0.213100,-0.225700,-0.607600,-0.843100,0.082040,0.531500 -0.224200,-0.151000,0.228800,0.021090,0.962100,-0.271900 -0.093360,0.005136,0.477200,-0.974400,0.195600,0.110500 0.216700,0.074350,-0.011760,-0.171700,-0.638900,-0.749900 -0.064500,-0.064020,-0.012520,-0.912500,-0.080990,-0.400900 -0.421100,0.111700,0.138700,0.000000,-0.967000,0.254800 0.814700,-0.182200,0.134800,0.022440,-0.941200,0.337100 0.174900,-0.391800,0.404400,-0.891800,-0.374300,0.254300 0.002095,-0.254900,-0.847600,0.760500,-0.642700,-0.092610 0.798500,-0.140900,0.207500,-0.023300,0.953200,-0.301500 0.459400,0.151500,0.290100,0.000000,-0.966700,0.255800 0.262600,-0.154000,0.209000,0.002425,0.931700,-0.363100 0.659800,0.052700,0.219200,-0.785300,-0.057130,0.616400 0.109400,-0.272000,-0.848200,-0.000035,0.990000,-0.141100 0.092980,-0.168400,-0.055170,0.972100,-0.234500,0.008845 -0.095590,-0.139300,-0.077600,0.993200,0.110700,0.037300 -0.393800,-0.135600,0.267500,0.021820,0.978700,-0.204300 -0.003240,-0.095250,-0.684500,-1.000000,0.000000,0.000000 -0.339100,0.141000,0.250400,0.000000,-0.967400,0.253200 0.069920,0.059900,0.266900,0.271300,0.842000,-0.466300 -0.029560,-0.270700,-0.409300,-0.457200,-0.889300,0.012700 0.046720,0.016990,0.273300,0.714300,-0.699700,0.013250 -0.131200,-0.149400,0.314600,-0.048360,-0.834800,0.548400 -0.503100,0.142300,0.255400,0.000000,-0.967400,0.253300 -0.002883,0.115100,0.490400,-0.087240,-0.303000,-0.949000 -0.054680,-0.236000,-0.641100,0.000838,-0.978500,0.206300 -0.150900,-0.118000,0.650200,0.392500,-0.259900,0.882300 -0.043750,0.171300,0.261700,-0.020220,0.994600,-0.102200 -0.628900,-0.148100,0.255600,-0.030840,-0.966500,0.254900 0.678100,0.110700,0.134700,0.000000,-0.965100,0.261700 -0.514100,0.120600,0.173300,0.000000,-0.967400,0.253400 0.136700,0.126300,0.195100,0.000000,-0.967400,0.253400 -0.612500,0.141000,0.250400,0.000000,-0.967400,0.253200 0.025530,-0.036640,0.584200,0.000000,-0.206100,-0.978500 0.028990,0.077180,0.196500,-0.308300,0.935100,-0.174600 -0.093080,-0.061240,0.430700,0.969700,0.208800,-0.126700 -0.557700,-0.186100,0.140500,-0.031830,-0.942800,0.331800 0.612400,-0.141200,0.288100,0.023790,-0.971000,0.238000 0.082450,-0.116400,0.365400,-0.886500,0.442900,-0.134300 0.919200,0.080340,0.043350,0.000000,-0.964000,0.265900 0.053000,-0.115500,-0.378200,-0.787100,-0.573700,0.226400 0.198900,0.236400,0.552400,-0.229100,0.267300,-0.936000 -0.273400,0.170500,0.250900,0.010190,0.992900,-0.118200 -0.663700,-0.021990,0.195200,0.744600,0.114200,-0.657700 -0.090200,-0.116800,-0.148900,0.983300,-0.135800,0.120800 -0.330900,-0.155300,0.204100,0.032030,0.942900,-0.331500 -0.072650,-0.208300,-0.339600,-0.975600,-0.212800,-0.053250 0.061420,-0.222100,0.004169,0.695300,-0.711500,0.102100 -0.147600,0.125000,0.190100,0.000000,-0.967400,0.253200 -0.415500,-0.184000,0.160500,-0.032460,-0.945600,0.323800 -0.103400,-0.144300,0.270400,0.070300,0.970300,-0.231600 -0.186600,-0.301800,0.370600,-0.315500,0.947900,0.044900 -0.328100,-0.197700,0.129800,-0.032210,-0.939000,0.342400 0.448400,0.170500,0.250900,-0.015240,0.995100,-0.097740 -0.092980,-0.222500,-0.613200,-0.011610,0.976700,-0.214300 -0.060970,-0.210600,0.076940,-0.659900,-0.741000,0.124200 -0.092660,-0.142500,0.143500,0.953700,0.296300,-0.051420 -0.053470,-0.115900,-0.378800,0.771500,-0.582800,0.255000 0.120400,0.111200,0.603100,0.643800,-0.763100,-0.057350 -0.135500,-0.230200,0.254100,-0.184300,0.923300,0.337100 0.047540,0.074630,0.511600,0.073830,-0.996900,-0.027130 0.054830,0.073930,0.291000,0.534500,0.834300,-0.135300 0.065210,-0.045840,-0.159900,0.745500,0.613400,-0.260800 0.344500,-0.197600,0.124300,0.023040,-0.938700,0.343900 0.020880,-0.270700,-0.329000,-0.284300,0.958600,-0.017830 0.071170,-0.220000,-0.252600,-0.924500,0.379800,0.031240 -0.896700,-0.155300,0.156300,0.031640,0.905400,-0.423400 0.017000,0.084760,0.574300,0.222900,0.970800,0.088510 0.165600,0.074200,0.010740,0.000000,-0.994200,0.107900 -0.541500,-0.128100,0.278800,0.017880,0.982200,-0.187000 0.482700,0.074200,0.010740,0.000000,-0.994200,0.107900 0.514100,0.136800,0.131600,0.015010,0.934800,-0.354700 0.771100,-0.147400,0.191600,-0.041080,0.933400,-0.356500 0.218800,0.159700,0.196500,0.000124,0.951800,-0.306600 -0.349900,-0.203100,0.113300,-0.031760,-0.935000,0.353300 0.020520,-0.273300,-0.667500,0.713300,-0.698400,-0.057720 0.891500,-0.133900,0.222000,-0.002779,0.958000,-0.286600 0.093420,-0.058090,-0.028570,0.956400,0.283900,-0.069140 -0.683600,0.111800,0.075010,-0.000005,0.895600,-0.444900 -0.940600,0.092080,0.034540,-0.010230,0.928000,-0.372600 0.191400,0.118600,0.089790,-0.000046,0.905100,-0.425200 0.574200,0.124000,0.100700,0.000085,0.910900,-0.412700 0.716300,-0.141400,0.277200,0.023290,-0.970100,0.241400 0.432000,0.117000,0.086020,0.030510,0.873700,-0.485500 0.907800,0.102900,0.108100,0.000000,-0.954400,0.298400 -0.710500,0.107000,0.121400,0.000000,-0.960000,0.279800 0.716400,0.121900,0.178500,0.000000,-0.966200,0.257700 0.803900,0.118200,0.164500,0.000000,-0.966800,0.255600 -0.062990,-0.235000,-0.152500,-0.749900,-0.661000,0.028190 -0.092960,0.169100,0.240200,0.000015,0.989700,-0.143100 0.065800,-0.234200,-0.296200,0.896200,-0.443600,0.004234 -0.563300,0.145900,0.155000,-0.005107,0.944000,-0.330000 -0.043740,-0.313400,0.346600,0.000000,0.924100,-0.382200 0.607500,0.108100,0.125200,0.000000,-0.962500,0.271300 -0.054690,0.018560,0.098500,-0.020710,0.217300,0.975900 -0.240600,0.087100,0.063960,0.000002,-0.935200,0.354200 0.377800,0.080340,0.043350,-0.000000,-0.964000,0.265900 -0.087490,-0.313400,0.346600,0.000000,0.924100,-0.382200 0.044860,-0.121600,-0.419500,-0.723500,-0.644300,0.247900 0.048240,0.082280,0.321900,0.271800,0.961100,-0.049770 0.574300,-0.183700,0.124700,-0.011920,0.863000,-0.505100 -0.836700,-0.117000,0.287000,0.032800,0.984500,-0.172600 0.010330,-0.272200,-0.263700,0.140600,-0.988400,0.057950 0.120300,-0.335300,0.309700,-0.000034,0.781700,-0.623700 0.662000,0.003917,0.135200,0.363200,0.316600,0.876300 -0.048640,0.052320,0.376000,-0.975900,0.043990,0.213900 0.836700,-0.170100,0.168100,0.023190,-0.949400,0.313200 -0.842300,-0.153500,0.164900,0.041690,0.912400,-0.407100 0.093410,0.015770,0.298800,0.948200,0.301700,-0.099920 0.694500,0.075530,0.020700,0.000000,-0.988000,0.154200 0.393700,0.102400,0.057020,-0.015190,0.906000,-0.423000 -0.300800,-0.207000,0.102700,0.022210,0.469900,-0.882500 -0.300900,-0.180100,0.148100,0.000461,0.893300,-0.449400 -0.847700,0.151700,0.171300,0.000000,0.946700,-0.322000 0.180500,-0.265200,-0.779900,0.000000,-0.977800,0.209500 -0.864100,0.084900,0.014220,-0.000016,0.958000,-0.286700 -0.039560,0.098950,0.436800,-0.882600,0.453700,-0.122700 0.061500,-0.078480,-0.255200,-0.804200,-0.555400,0.211700 -0.853200,-0.181100,0.111500,0.035520,0.850600,-0.524600 -0.890900,0.127500,0.108600,0.000000,0.915700,-0.401800 0.090160,-0.156300,0.103100,-0.940600,0.336200,-0.048380 -0.153100,0.098840,0.049580,-0.000012,0.897500,-0.441000 0.263300,0.073210,-0.002224,-0.000071,-0.998900,0.046280 0.579700,0.111800,0.075010,-0.020290,0.892300,-0.451000 0.101600,-0.046520,0.124900,0.985600,0.168500,-0.013460 0.596100,0.168900,0.240300,0.005502,0.988000,-0.154200 0.415500,-0.140900,0.309300,0.021350,-0.956500,0.290900 -0.595600,0.129600,0.207400,0.000000,-0.966800,0.255600 -0.519500,0.082270,0.005297,0.020170,0.948700,-0.315500 0.136800,-0.149500,0.231600,-0.033260,0.960300,-0.277000 0.339200,-0.144500,0.301600,0.024710,-0.974100,0.224700 0.028860,-0.235700,-0.699200,0.689400,0.607100,-0.395200 -0.185900,-0.290200,-0.898300,0.000000,-0.979000,0.203700 -0.078340,-0.150400,0.317100,-0.176800,-0.859700,0.479200 -0.027330,-0.274000,-0.821700,0.000000,-0.979000,0.203700 -0.864100,-0.161500,0.146000,0.030940,0.894500,-0.446100 0.087510,0.091870,0.076320,-0.000004,-0.935000,0.354500 -0.207900,0.130800,0.211800,-0.139900,-0.970600,0.196000 0.153100,-0.182600,0.180800,0.023220,-0.950700,0.309300 -0.078380,-0.181600,0.130700,-0.854300,-0.514000,0.077590 -0.869600,-0.129300,0.229000,0.032100,0.960200,-0.277500 0.404700,0.123700,0.100800,0.000121,0.910900,-0.412700 -0.067020,-0.051000,0.621600,-0.586400,0.340400,-0.735100 0.072470,-0.188700,0.119800,-0.790100,0.604300,-0.102800 -0.590500,-0.183800,0.144000,-0.031830,-0.941800,0.334700 0.260400,-0.252300,-0.751500,0.460000,0.885400,-0.066910 -0.968000,0.073080,-0.006587,0.000038,-0.999700,0.023230 0.006119,-0.265400,-0.775900,-0.144600,-0.765500,0.626900 -0.497600,0.104400,0.113000,0.000000,-0.956100,0.293000 -0.060160,-0.243400,-0.713300,-0.020460,0.985000,-0.171300 0.492300,-0.138000,0.242100,-0.044050,0.968100,-0.246800 -0.013710,0.051350,0.402900,-0.337500,0.018470,-0.941200 -0.076560,0.137100,0.131500,-0.000070,0.927900,-0.372900 -0.541500,-0.167300,0.157100,0.031070,0.903900,-0.426500 -0.098260,-0.140500,0.057340,-0.973000,-0.229200,0.026100 -0.101600,-0.018410,0.376500,0.995600,-0.092570,-0.011990 -0.019980,-0.039180,-0.223300,0.255800,-0.919600,0.298100 -0.185900,0.166100,0.303800,-0.000039,0.306400,0.951900 0.743800,0.166100,0.303800,0.000086,0.306500,0.951900 -0.185900,0.077680,-0.009221,-0.029360,0.729500,-0.683300 0.175600,-0.291600,0.315100,-0.974300,-0.143200,0.173800 -0.071220,-0.209600,-0.009595,0.801100,0.595200,-0.062830 -0.054680,-0.261400,-0.761800,-0.000022,-0.978400,0.206500 -0.207800,0.115100,0.082470,-0.010430,0.911900,-0.410200 -0.065500,-0.205200,-0.439200,-0.987500,-0.131500,-0.086970 0.019970,0.040490,0.092310,-0.193200,-0.357500,-0.913700 -0.075620,0.045150,0.523200,-0.898300,0.404400,0.171900 0.765700,-0.126400,0.262400,-0.021670,0.982700,-0.184000 -0.087720,-0.160400,-0.197300,0.994900,0.089770,0.045610 0.454400,0.133300,0.221500,0.000000,-0.966700,0.255800 -0.047680,-0.220700,0.060650,0.534200,0.833300,-0.141900 0.278400,-0.173500,0.199800,0.023120,-0.954600,0.297100 0.678100,-0.135400,0.234700,-0.019590,0.966200,-0.256900 -0.054680,0.123800,0.100800,0.020350,0.905000,-0.425000 -0.121600,-0.089220,0.638800,-0.472100,0.279600,-0.836000 -0.103800,-0.174800,0.222500,-0.032090,-0.959500,0.279800 0.497600,-0.194600,0.122100,0.022970,-0.936900,0.348900 -0.257000,0.163700,0.213200,-0.000011,0.978600,-0.206000 0.672600,0.118700,0.089690,-0.025540,0.889900,-0.455500 0.278900,0.166000,0.223500,0.020420,0.978200,-0.206900 0.218800,0.106000,0.064320,0.020400,0.891400,-0.452800 -0.101800,-0.002787,0.338100,-0.979700,0.200200,0.000167 -0.404700,0.149000,0.163700,0.004530,0.946500,-0.322600 0.404700,0.172500,0.278000,-0.005090,0.999200,-0.039080 0.705500,0.144700,0.264500,0.000000,-0.966100,0.258300 -0.240600,0.139900,0.246500,0.000000,-0.966800,0.255700 -0.229700,0.116200,0.156700,0.000000,-0.968900,0.247400 -0.355000,0.134300,0.225400,0.000000,-0.966800,0.255600 -0.090290,-0.095680,0.409200,-1.000000,0.003432,0.001806 -0.443000,0.101700,0.104200,0.000000,-0.951500,0.307600 -0.021860,0.149400,0.282300,0.000000,-0.966200,0.257800 -0.661900,0.019750,0.119900,0.982800,-0.020240,-0.183600 0.710900,-0.150500,0.242500,0.023200,-0.963300,0.267500 -0.175800,0.092790,0.153100,-0.108200,0.549400,0.828500 0.071090,-0.287600,-0.921000,-0.000097,0.982700,-0.185300 -0.213300,0.159700,0.196500,0.000042,0.957000,-0.290000 0.047220,-0.105300,0.494800,0.467200,-0.769800,0.434900 -0.628900,0.087100,0.063960,0.000001,-0.934900,0.354900 0.022800,-0.063150,-0.047960,-0.356500,0.215600,0.909100 0.530500,0.080310,-0.002646,-0.001081,0.980400,-0.197000 0.087680,-0.008837,0.090080,-0.930500,-0.361700,0.057890 0.180200,-0.394100,0.316700,-0.158400,-0.823300,-0.545000 0.345000,0.160900,0.200900,-0.000023,0.965000,-0.262100 -0.010970,0.099390,0.097170,0.004733,-0.991600,0.129500 0.864100,0.138900,0.242700,0.000000,-0.966100,0.258200 -0.317100,-0.164500,0.233700,-0.030980,-0.962100,0.271000 -0.191300,-0.363200,0.321700,1.000000,0.000201,-0.001229 0.114900,0.131800,0.120400,0.000071,0.922800,-0.385200 0.028120,-0.242000,-0.017360,-0.328300,0.937600,-0.114300 0.031480,-0.267600,-0.290900,0.425600,-0.903900,0.042970 -0.584100,0.073870,-0.017970,0.082170,-0.830000,-0.551700 -0.056700,0.053840,0.163600,-0.640700,0.757600,-0.124500 -0.393700,-0.201500,0.105000,0.047530,0.826000,-0.561700 0.189300,-0.373700,0.392500,0.964900,-0.219600,0.143800 -0.147300,-0.149600,0.636000,-0.176600,-0.074070,-0.981500 0.169500,-0.208000,0.107600,0.024490,-0.971900,0.233900 0.021340,0.083720,0.530600,0.076750,0.100800,-0.991900 -0.105700,-0.046230,0.267100,-0.999000,0.044420,-0.009281 0.623400,0.171300,0.261700,-0.020310,0.996000,-0.086900 0.700500,0.168000,0.235700,0.041100,0.986100,-0.161000 -0.694500,0.144700,0.264500,0.000000,-0.966100,0.258300 0.142700,0.160900,0.200900,-0.000026,0.965000,-0.262100 0.580200,0.129600,0.207400,0.000000,-0.966800,0.255600 -0.031640,-0.189000,0.283300,-0.317600,-0.919700,0.230900 -0.257000,-0.273900,-0.858700,-0.009046,0.984600,-0.174700 0.689100,-0.173800,0.136800,-0.007775,0.883000,-0.469300 0.202400,-0.278500,-0.880800,-0.000007,0.975200,-0.221400 -0.475300,-0.160300,0.229800,-0.031230,-0.961500,0.272900 0.814800,-0.157100,0.211100,0.023030,-0.957400,0.288000 0.136700,0.100400,0.100400,0.000000,-0.948000,0.318100 0.563600,-0.157100,0.179700,-0.014490,0.916800,-0.399100 0.096930,-0.116700,0.217700,0.973100,-0.225200,0.048060 0.328100,0.151500,0.290100,0.000000,-0.966700,0.255800 -0.185100,-0.190400,0.647200,0.662400,-0.680200,0.313900 -0.032520,-0.252600,-0.717600,-0.173000,-0.978800,0.110000 0.003420,-0.106100,-0.575300,1.000000,0.005571,-0.001180 -0.036550,-0.264000,-0.456700,0.636800,0.770900,-0.013440 -0.885900,0.096090,0.087790,0.000000,-0.942000,0.335700 -0.034700,-0.257400,-0.612600,-0.900500,-0.420100,-0.112000 0.102700,-0.035090,0.354600,-0.999900,0.001838,-0.014790 0.079570,-0.041760,-0.088040,0.892200,0.430200,-0.137700 -0.273400,0.108200,0.067870,0.025560,0.887800,-0.459600 0.077430,-0.160900,-0.318200,-0.992500,-0.078680,0.093300 -0.016440,0.019350,0.285900,-0.096910,0.909500,-0.404200 0.317700,0.079330,0.039540,0.000000,-0.970200,0.242400 0.558300,0.079330,0.039540,0.000003,-0.970200,0.242400 -0.008972,0.049840,0.481800,-0.633200,-0.749900,0.191400 -0.923800,0.079330,0.039540,0.000000,-0.970200,0.242400 -0.066560,0.069610,0.327300,-0.676200,0.736000,-0.033040 0.284400,0.151500,0.290100,0.000000,-0.966700,0.255800 0.793400,-0.151300,0.179500,-0.027530,0.931900,-0.361600 0.032820,-0.207200,-0.504700,0.000021,-0.978300,0.207300 -0.100100,-0.133900,0.399000,0.908200,-0.409300,-0.087960 0.897800,0.142900,0.214500,0.887900,0.098770,0.449400 -0.002125,-0.049120,-0.630400,-0.811300,0.565800,0.147200 0.051510,0.081220,0.472900,0.524800,0.847800,0.076190 -0.098270,-0.038960,0.419600,0.978600,0.136800,-0.154000 0.683800,-0.161000,0.208500,0.024490,-0.957700,0.286600 0.047970,-0.004871,0.626800,0.669900,-0.280200,0.687500 0.415900,0.132500,0.120300,-0.004330,0.935000,-0.354600 0.057870,-0.180700,0.240000,-0.643100,0.742500,-0.187500 -0.189600,-0.277300,0.418600,0.968200,0.167400,0.186100 -0.503100,0.092080,0.034540,-0.010190,0.927900,-0.372600 0.393700,-0.147700,0.282800,0.023560,-0.971300,0.236500 0.443400,0.139900,0.139500,0.015500,0.932200,-0.361600 -0.037300,0.063550,0.479900,-0.829700,0.035730,0.557100 0.268400,0.138600,0.135700,-0.024740,0.925200,-0.378700 -0.150700,-0.302600,0.397200,0.000374,1.000000,-0.002741 -0.653500,-0.139300,0.287000,-0.030750,-0.971200,0.236200 -0.032820,0.120400,0.093400,-0.019510,0.903200,-0.428800 0.048620,-0.185700,-0.527300,-0.957400,-0.222200,0.184400 -0.240600,-0.288000,-0.887800,-0.001253,-0.978100,0.208200 0.525100,-0.139700,0.233000,-0.033330,0.973100,-0.227900 -0.054180,-0.139300,-0.425300,0.897700,-0.392500,0.200200 0.040600,-0.244100,-0.061400,0.453100,-0.885600,0.102100 -0.052840,-0.247300,-0.433200,-0.874700,-0.482500,-0.046220 0.659100,-0.051340,0.141800,-0.992800,-0.025080,-0.117100 -0.065580,0.053730,0.204500,-0.692500,0.711300,-0.120000 -0.199200,-0.346200,0.442900,-0.369400,-0.224200,0.901800 0.109500,-0.138500,0.280600,-0.012830,0.979400,-0.201400 -0.475800,0.089140,0.026890,-0.004511,0.951100,-0.308700 0.547300,0.162900,0.208600,-0.000040,0.971900,-0.235300 0.054970,0.096630,0.425900,-0.057140,0.978800,-0.196900 0.353700,0.169500,0.301900,0.000000,0.702600,0.711600 -0.103900,-0.243300,-0.676000,-0.000090,-0.977800,0.209500 0.103900,-0.226400,-0.595600,0.000000,-0.978500,0.206300 0.010660,-0.192200,0.288600,0.144200,-0.957800,0.248800 -0.054110,-0.237300,-0.103100,0.639100,0.760800,-0.112900 -0.039120,0.109000,0.480600,-0.764900,0.631600,-0.126600 -0.095660,-0.079420,-0.055380,-0.978100,0.188500,-0.088360 -0.084340,0.004114,0.113700,0.899000,-0.425000,0.105800 -0.026630,-0.165000,0.369400,-0.277300,-0.906700,0.317900 -0.968000,0.088830,0.068490,-0.021780,-0.928100,0.371600 0.120300,-0.221400,-0.609400,-0.005148,0.985200,-0.171600 0.063250,-0.139700,0.305300,-0.991200,0.132000,0.004160 -0.197000,-0.141600,0.267700,0.031970,0.976200,-0.214300 0.656700,0.139900,0.139500,-0.008462,0.931400,-0.363900 -0.023110,-0.105800,-0.423500,-0.345700,0.884800,-0.312600 0.057430,-0.148600,0.369900,0.602200,-0.758300,0.249700 -0.202300,0.091870,0.076320,0.000000,-0.935100,0.354500 0.880600,0.153300,0.246400,0.858800,0.106300,0.501100 0.075020,-0.165900,-0.340600,-0.982800,-0.112400,0.146400 0.421100,0.171200,0.298600,0.019250,0.944300,0.328600 0.213300,-0.134500,0.289000,-0.023720,0.985100,-0.170600 -0.049470,0.036550,0.354400,-0.959700,-0.279600,0.029130 0.075410,-0.026320,-0.054320,-0.847000,-0.505900,0.163200 0.045630,0.007083,-0.062900,0.601000,0.590300,-0.538800 0.782000,0.172300,0.294000,0.026440,0.995900,0.086780 0.142200,-0.181300,0.149600,-0.002179,0.888800,-0.458300 0.065310,-0.084250,0.011530,0.185900,-0.964200,0.189300 0.628900,0.146100,0.155100,0.000064,0.939400,-0.342800 0.224600,-0.143100,0.314700,0.033680,-0.757900,0.651500 0.366400,0.132400,0.120200,0.002517,0.921500,-0.388300 -0.047270,-0.048840,-0.219000,-0.576200,0.773400,-0.264300 -0.887000,0.138600,0.237100,-0.779000,-0.316000,0.541600 -0.021870,0.150400,0.167400,-0.000010,0.945400,-0.325900 0.043440,-0.233100,-0.000621,-0.481100,0.870200,-0.106100 -0.011110,-0.139600,0.441300,0.112400,0.915700,-0.385900 0.727800,0.107000,0.121400,0.000000,-0.960000,0.279800 0.011590,0.049350,0.332200,0.248900,-0.280200,-0.927100 0.749700,0.127500,0.199700,0.000000,-0.966800,0.255600 -0.764700,0.073250,-0.001572,0.000000,-0.998800,0.048080 -0.897000,-0.134000,0.211200,0.042050,0.953400,-0.298800 0.010310,-0.083890,-0.370200,0.142200,0.937400,-0.318000 0.021250,-0.008796,-0.136200,0.252200,0.913800,-0.318300 -0.486700,0.117100,0.085960,0.000000,0.902400,-0.430900 -0.765600,0.097440,0.091620,0.000000,-0.945100,0.326800 0.612500,0.096910,0.045980,-0.010170,0.907000,-0.421000 -0.180400,-0.243100,-0.709400,0.060820,0.975800,-0.210100 0.268000,0.124000,0.186300,0.000000,-0.966800,0.255700 -0.104700,-0.066020,0.295900,-0.994000,-0.106500,0.025000 -0.002105,-0.268300,-0.492800,-0.126700,-0.386400,0.913600 -0.071950,-0.215300,-0.091960,0.876400,0.477700,-0.060940 0.650700,-0.160300,0.213500,0.023280,-0.958200,0.285300 -0.037960,-0.164700,-0.544000,-0.745500,0.595900,-0.298500 0.125900,-0.167600,0.232000,0.024430,-0.961200,0.274800 0.043640,0.041370,0.353900,-0.977300,0.187700,-0.097910 0.052830,-0.245700,-0.422100,-0.877600,0.477800,0.039930 -0.344500,0.098830,0.049560,0.000018,0.897500,-0.441000 -0.010650,-0.033680,0.629900,-0.140300,-0.650800,0.746200 0.047150,-0.004224,-0.086800,0.523100,0.814400,-0.251300 -0.836700,0.111700,0.138600,-0.000006,-0.967000,0.254800 -0.131200,-0.311900,0.350400,0.000000,0.936500,-0.350800 -0.190900,-0.361300,0.420000,0.971400,0.147100,-0.186600 -0.842200,0.101700,0.104200,0.000000,-0.951500,0.307600 -0.087040,0.020430,0.196100,-0.831700,0.523800,-0.184100 0.172300,-0.133000,0.303100,-0.006759,0.993200,-0.116500 -0.935100,0.109800,0.071460,0.020350,0.896300,-0.442900 -0.103900,0.102400,0.057020,-0.020350,0.894200,-0.447300 0.136700,-0.344900,0.321200,0.000000,-0.976800,0.214000 -0.355400,-0.154200,0.266800,-0.031980,-0.968600,0.246600 -0.645200,-0.168500,0.183900,-0.031990,-0.951400,0.306400 -0.486700,0.090400,0.072520,0.000000,-0.932400,0.361500 -0.015880,0.034940,0.116100,0.369900,-0.887300,0.275500 0.459300,-0.142200,0.299300,0.023320,-0.974100,0.224700 -0.076560,0.100400,0.100400,0.000000,-0.948000,0.318100 0.574100,-0.162900,0.211200,0.023270,-0.957700,0.286800 0.065640,-0.260400,-0.789800,-0.000135,0.978500,-0.206100 -0.005452,-0.045640,0.586000,0.016300,-0.145200,-0.989300 -0.754700,0.102400,0.057010,0.020410,0.881400,-0.472000 0.062750,-0.220100,-0.443500,0.950300,-0.281000,-0.134100 -0.062400,0.018080,0.025780,0.691600,0.539200,-0.480500 -0.432000,0.123000,0.182400,0.000000,-0.966100,0.258200 0.443000,-0.135400,0.256500,-0.028070,0.971200,-0.236500 -0.475800,-0.135000,0.256500,0.030630,0.980400,-0.194900 -0.503100,0.146000,0.155000,0.010210,0.937000,-0.349200 0.044550,-0.210700,0.148900,0.479300,-0.863600,0.156400 0.087530,0.034930,0.341700,-0.919900,-0.390700,0.033700 0.191100,-0.354900,0.324700,0.963600,-0.142800,-0.226200 -0.083870,-0.118700,0.355700,0.917300,0.383900,-0.105700 -0.618000,-0.145000,0.206000,0.041850,0.935200,-0.351600 0.019310,0.161700,0.203900,-0.009433,0.964200,-0.265200 0.176800,-0.368700,0.332700,-1.000000,0.003123,0.003123 -0.070790,0.050460,0.236600,0.751000,-0.654300,0.089180 0.087490,0.116500,0.086260,-0.010480,0.905300,-0.424600 0.026020,-0.122500,-0.460200,-0.429700,-0.838400,0.335300 -0.029950,-0.258200,-0.667800,-0.946900,-0.314000,-0.069710 -0.180500,0.118400,0.089730,0.010100,0.893200,-0.449600 0.481600,-0.159900,0.229100,0.024320,-0.961900,0.272500 -0.005292,-0.246500,-0.001168,-0.069940,-0.990400,0.119500 0.055340,-0.110200,0.476200,0.552600,-0.749900,0.363600 -0.459500,-0.132200,0.273300,0.013320,0.970200,-0.241800 -0.918300,0.138800,0.135700,0.000002,0.930200,-0.367000 0.073240,-0.211200,-0.055560,-0.837100,0.544900,-0.048950 -0.076180,-0.071720,-0.171500,0.896700,-0.404300,0.180400 -0.278900,-0.159600,0.255800,-0.032080,-0.966200,0.255700 -0.070810,0.011970,0.050530,0.763200,-0.633400,0.127700 0.064610,0.078160,0.349900,0.794100,0.596100,-0.118600 -0.087040,-0.260500,-0.757200,0.000000,-0.978400,0.206700 0.716400,0.138300,0.136400,-0.000003,0.916700,-0.399500 -0.000047,-0.014110,-0.160500,-0.005654,0.948600,-0.316400 -0.202800,-0.311000,0.429500,-0.987500,-0.045340,-0.150800 -0.040060,0.068790,0.442000,-0.998700,-0.028960,-0.041530 -0.601700,-0.154300,0.182300,0.041940,0.925600,-0.376200 -0.686800,0.073560,0.003419,0.000000,-0.997800,0.066760 -0.097410,-0.096450,0.300100,0.959600,0.275800,-0.056300 -0.246100,0.111700,0.075210,-0.005420,0.883200,-0.469000 0.142200,-0.283200,-0.902800,-0.005197,0.978100,-0.208100 0.115500,0.150700,0.572400,-0.394400,0.609700,0.687600 0.071320,-0.023250,-0.075680,0.804600,0.565100,-0.182200 -0.196900,0.089140,0.026890,0.005746,0.930400,-0.366600 0.486800,-0.127300,0.291100,-0.021530,0.979200,-0.201600 0.099110,0.002711,0.321200,0.974200,0.209900,-0.083360 -0.009929,0.101300,0.517200,-0.917500,0.022520,0.397200 0.235200,0.124000,0.186300,0.000000,-0.966800,0.255700 -0.300300,0.135300,0.229200,0.000000,-0.966900,0.255300 0.054690,0.099080,0.096450,-0.003641,-0.947500,0.319800 -0.079960,-0.200500,-0.132200,0.922400,0.386000,0.014370 -0.323900,-0.135400,0.317200,-0.009177,0.234000,0.972200 0.727800,0.127500,0.199700,0.000000,-0.966800,0.255600 -0.099410,-0.122700,0.070150,0.989100,0.146900,-0.007134 0.169500,0.153700,0.298100,0.000445,-0.924900,0.380300 -0.041070,0.072760,0.583500,-0.555700,0.811300,0.181400 0.590600,0.125000,0.190100,0.000000,-0.967400,0.253200 -0.027480,0.086680,0.397000,-0.148400,-0.706700,0.691800 0.046730,-0.258400,-0.394700,0.728100,-0.685500,-0.005154 0.027770,0.047880,0.416300,-0.048310,0.978200,-0.201900 0.090770,-0.100500,0.404100,0.972200,0.142700,-0.185600 -0.142300,-0.155900,0.222300,0.046510,0.958500,-0.281300 0.765700,-0.133800,0.232900,-0.012980,0.965300,-0.260800 -0.940600,0.080470,-0.002679,-0.000188,0.976500,-0.215300 -0.202300,0.100700,0.053300,0.015230,0.892400,-0.451000 0.309300,-0.150200,0.281000,0.023420,-0.970500,0.240000 -0.634300,-0.187800,0.128700,-0.031450,-0.939200,0.341900 0.497700,-0.150900,0.200800,-0.022690,0.954000,-0.299000 -0.273400,0.155600,0.184200,0.004953,0.965900,-0.259000 -0.891200,-0.159900,0.185200,-0.031880,-0.952900,0.301600 0.019780,0.126700,0.501000,0.593500,0.795900,0.119500 0.098450,-0.217600,-0.554000,0.000060,-0.978500,0.206500 0.678100,0.097050,0.045910,-0.000006,0.904200,-0.427100 0.022610,-0.272400,-0.454800,-0.381700,0.924300,-0.006639 0.005394,0.101500,0.363500,0.023400,0.042700,-0.998800 -0.027330,-0.017920,0.105500,0.000000,0.111800,0.993700 -0.759900,-0.187000,0.119400,-0.031580,-0.937600,0.346200 0.084230,-0.039780,-0.039540,-0.923500,-0.360700,0.130300 -0.803900,0.100400,0.053460,0.020300,0.895400,-0.444900 0.202500,-0.160400,0.193800,-0.032490,0.937600,-0.346300 0.268000,0.102400,0.057020,0.020250,0.881600,-0.471500 -0.503100,0.153100,0.175200,0.000019,0.949400,-0.314000 -0.120300,0.083100,0.052600,-0.000104,-0.953100,0.302600 0.188800,-0.265100,0.376400,0.999400,-0.032830,-0.005033 -0.097050,0.010320,0.381900,0.960100,-0.279500,-0.000674 -0.224200,0.104400,0.113000,0.000008,-0.956100,0.293000 0.727400,-0.173600,0.136100,-0.023250,0.891400,-0.452700 -0.100100,-0.116200,0.190300,-0.974000,-0.222100,0.045160 0.907800,0.087450,0.022050,0.014750,0.939200,-0.343100 0.054190,-0.049760,0.566900,-0.648700,0.625000,-0.434300 -0.188800,0.123400,0.236600,0.413800,-0.875700,0.248700 0.470300,0.143100,0.147500,0.020030,0.925700,-0.377800 0.039440,-0.064430,-0.274400,-0.517800,-0.808100,0.280700 -0.164100,0.114900,0.151500,-0.000022,-0.971300,0.237900 -0.054680,-0.306900,0.367000,0.000000,0.960800,-0.277400 -0.047830,-0.253400,-0.270600,0.656100,0.753300,-0.045620 0.124500,0.042100,0.189600,0.733100,-0.668400,0.125700 -0.306200,-0.158800,0.255500,-0.032310,-0.965900,0.256800 0.009893,-0.204200,-0.687200,-0.352100,-0.856200,0.378100 -0.908000,-0.127300,0.231300,0.047050,0.960200,-0.275300 0.054510,-0.132300,0.424900,0.541800,-0.775100,0.325100 0.001093,0.119400,0.518300,-0.018850,0.102000,0.994600 -0.039780,-0.008453,-0.105700,0.468200,-0.839300,0.276200 -0.410200,0.087450,0.022050,0.015130,0.939000,-0.343600 0.065640,-0.278500,-0.880800,0.005049,0.982600,-0.185800 0.172300,0.189800,0.573200,-0.384900,0.519000,0.763300 -0.007638,0.073330,0.398200,0.429000,0.132600,0.893500 0.153600,0.078420,0.035680,0.000000,-0.975300,0.220800 -0.052910,-0.165400,0.320700,0.531700,0.813900,-0.234300 -0.105800,-0.067740,0.223300,-0.999100,-0.040640,0.009209 0.470300,0.091870,0.076320,0.000030,-0.935100,0.354500 0.880500,0.076420,0.025960,0.000000,-0.983900,0.178800 -0.360900,0.106300,0.064140,-0.005087,0.885200,-0.465200 -0.667300,-0.141000,0.212900,0.030390,0.960100,-0.278100 0.787500,0.148000,0.277200,0.000015,-0.967400,0.253400 -0.683600,-0.129500,0.250900,0.021980,0.977000,-0.211900 0.530500,-0.129300,0.278100,-0.029150,0.986700,-0.160100 0.366400,0.099080,0.096450,0.000000,-0.946300,0.323400 0.174400,-0.267400,0.332700,-0.966200,0.228400,-0.119600 -0.732900,-0.140600,0.207400,0.026130,0.938800,-0.343600 0.864100,0.093300,0.080160,0.000000,-0.937200,0.348800 -0.191400,-0.260200,-0.793800,0.000000,0.979300,-0.202500 -0.251100,0.105800,0.117500,0.000000,-0.957500,0.288300 0.743800,0.148000,0.277200,0.000000,-0.967400,0.253400 -0.317300,-0.141700,0.251300,0.031670,0.969700,-0.242100 0.875100,-0.153500,0.170200,-0.023500,0.902600,-0.429900 0.240600,0.111400,0.075240,0.015160,0.895100,-0.445600 0.023250,-0.202700,-0.658800,-0.798200,-0.536800,0.273500 0.107600,-0.153500,0.407700,-0.810700,-0.410700,0.417200 0.093090,-0.015030,0.483900,-0.979500,0.054810,-0.193900 -0.076240,-0.163000,0.272700,-0.341300,-0.902700,0.262100 -0.634400,0.086110,0.018110,0.000000,0.950700,-0.310000 -0.067320,-0.058130,-0.186500,-0.824000,0.529900,-0.200800 -0.063370,-0.120900,-0.346300,0.910500,-0.372400,0.179600 0.360900,0.137800,0.238700,0.000000,-0.966200,0.257900 0.601900,-0.164600,0.159900,-0.023250,0.908800,-0.416600 -0.091850,-0.062540,0.631700,-0.465000,0.302400,-0.832100 -0.202300,0.150400,0.167400,0.005035,0.940800,-0.338800 0.798400,0.147100,0.159000,0.001107,0.936100,-0.351800 0.010970,-0.208900,-0.546900,0.061810,0.976400,-0.206800 0.016130,-0.063170,-0.306000,0.223100,0.928000,-0.298500 0.178700,-0.375900,0.298800,-0.399200,-0.506700,-0.764100 -0.036480,-0.083760,0.537800,0.375100,0.780400,-0.500300 -0.125300,0.108100,0.125200,0.000000,-0.962500,0.271300 0.060880,-0.207100,-0.484600,0.989900,-0.072260,-0.121700 -0.475600,-0.128400,0.288500,0.018500,0.988000,-0.153400 -0.437500,0.154600,0.180000,0.004678,0.958400,-0.285300 -0.442900,-0.163500,0.222400,-0.032310,-0.959700,0.279000 0.503100,-0.159500,0.228400,0.023370,-0.962100,0.271500 0.710900,0.087100,0.063960,-0.000095,-0.935200,0.354200 -0.120300,-0.288000,-0.887800,0.000000,-0.977900,0.208900 0.027790,-0.187600,-0.624900,0.708500,0.633900,-0.310200 0.464900,0.083100,0.052600,0.000000,-0.953100,0.302600 -0.180200,-0.183800,0.184700,-0.031800,-0.950200,0.310000 0.070610,0.036150,0.156800,0.802300,0.584700,-0.120000 0.289900,-0.141900,0.246000,-0.026340,0.962800,-0.269000 0.371900,0.121900,0.178500,0.000000,-0.966200,0.257700 0.661700,0.119300,0.168300,0.000000,-0.967400,0.253400 0.229700,-0.264400,-0.776100,0.000013,-0.978500,0.206300 0.049230,0.131800,0.120400,0.000036,0.922800,-0.385200 -0.091900,-0.103700,0.336600,0.940400,0.329700,-0.082730 -0.844700,-0.156000,0.202500,-0.032930,-0.955600,0.292800 0.025510,-0.231300,-0.660000,-0.411100,0.837200,-0.360800 -0.019140,0.072960,0.212600,0.960100,0.271000,-0.068580 -0.426100,0.141700,0.143200,-0.010200,0.937300,-0.348500 0.782000,0.102600,0.056940,0.001245,0.891300,-0.453500 0.179000,0.116800,0.166700,-0.565200,-0.823400,0.051170 -0.459500,-0.145000,0.222100,0.031750,0.960200,-0.277700 0.103900,0.165900,0.223500,0.023190,0.982800,-0.183100 -0.092850,-0.159200,-0.042300,0.975700,0.218800,-0.011260 -0.103200,-0.046200,0.146800,-0.988200,0.147000,-0.043910 0.107500,-0.195500,0.205000,-0.891000,0.153600,0.427200 0.136700,-0.310200,0.355100,-0.000016,0.955000,-0.296500 0.284500,-0.162000,0.184300,-0.007209,0.921500,-0.388400 0.547300,0.141700,0.143200,0.000000,0.935200,-0.354100 -0.623200,-0.177400,0.159200,-0.032160,-0.946200,0.321900 0.030860,-0.268100,-0.547700,0.644800,-0.764100,-0.021420 0.650800,0.081570,0.047670,-0.000008,-0.958400,0.285500 0.902300,-0.164900,0.179100,0.023170,-0.951800,0.306000 0.021860,-0.219600,-0.596200,-0.030540,0.978100,-0.206100 0.109900,-0.145100,0.316400,0.005128,-0.689200,0.724600 0.028800,-0.253700,-0.099220,0.334400,-0.935900,0.111000 0.093430,-0.258800,-0.749500,0.000000,-0.978600,0.205900 0.078350,-0.188600,0.065000,-0.864400,0.496900,-0.076990 0.558100,-0.139100,0.232600,-0.033440,0.967900,-0.249000 0.951600,0.099100,0.096480,0.028550,-0.939900,0.340400 0.640000,-0.192200,0.119100,0.023650,-0.937500,0.347300 -0.191300,-0.385000,0.354500,0.999700,0.025150,0.002636 -0.029210,-0.232800,-0.694600,-0.788700,0.546100,-0.282300 -0.051400,-0.244500,-0.130500,-0.596900,-0.800600,0.052510 -0.366500,-0.171600,0.161000,0.041770,0.903400,-0.426900 -0.732700,-0.163800,0.189600,-0.032310,-0.953600,0.299400 -0.867700,0.073220,-0.020900,0.000000,-0.999000,-0.043830 0.098890,-0.029630,0.278000,-0.993700,-0.105100,0.039540 -0.027860,-0.205500,0.207900,0.284300,0.936800,-0.203700 0.087510,-0.118400,0.321800,0.942300,-0.334300,0.018670 -0.147600,0.111900,0.075150,0.000274,0.895600,-0.444900 -0.003240,-0.237400,-0.804800,-1.000000,-0.000085,0.000088 0.077190,-0.072300,0.495500,0.857500,-0.429000,0.283900 0.016730,0.059570,0.106000,0.790200,0.609400,-0.064680 -0.967400,0.073780,-0.027540,-0.044610,-0.976900,-0.209000 -0.098430,-0.335100,0.365400,0.000000,-0.976900,0.213800 -0.065700,0.023640,0.072220,0.732600,-0.663400,0.152100 0.057320,-0.165000,0.310200,0.634900,-0.746900,0.197600 0.173900,-0.354000,0.301400,-0.661200,-0.509700,0.550500 -0.180400,-0.332900,0.312900,0.152100,0.782300,-0.604100 -0.514000,-0.152000,0.255100,-0.032290,-0.964900,0.260800 -0.083030,-0.122400,-0.219800,0.986000,-0.128800,0.106000 -0.043120,-0.138500,-0.463900,0.713500,-0.632200,0.302000 0.382800,0.172400,0.294200,0.000000,0.995500,0.094600 0.197700,0.203300,0.573400,0.720400,-0.619200,-0.312500 -0.060290,-0.233800,-0.408600,-0.928300,-0.367700,-0.054800 -0.032810,0.060380,0.239100,0.000022,-0.978500,0.206100 0.025930,-0.020830,0.634400,0.357400,-0.472500,0.805600 0.058340,-0.302400,0.401700,0.000000,0.983000,0.183400 0.180600,-0.160800,0.194200,-0.038430,0.943000,-0.330500 -0.001419,-0.307500,-0.738900,0.999800,0.016070,0.011870 0.056600,-0.081070,0.519900,-0.617700,0.680200,-0.394700 0.014100,-0.035320,-0.216300,-0.183000,-0.930400,0.317600 0.011550,-0.176400,-0.614800,-0.239000,-0.921400,0.306400 0.043760,-0.290500,-0.935200,0.004711,0.979200,-0.202800 0.442900,-0.160600,0.229900,0.023230,-0.961500,0.273900 0.021880,0.047830,0.179400,-0.004753,-0.979000,0.203800 -0.048620,0.026180,0.269200,-0.859500,-0.191100,-0.474000 -0.050880,-0.227200,0.022260,-0.553200,-0.822600,0.131200 0.032800,-0.266200,-0.367300,-0.498800,0.866700,-0.008163 -0.077680,0.018500,0.561700,-0.955600,0.239700,0.171500 -0.021090,-0.268000,-0.236300,-0.278600,-0.957900,0.068880 0.147700,-0.214000,-0.574300,-0.000122,0.977700,-0.209900 -0.098430,-0.107100,-0.045270,0.999100,-0.029540,0.029310 -0.221400,-0.160200,0.200600,0.009015,0.940000,-0.341000 0.023700,-0.000802,0.102700,0.019690,0.242700,0.969900 0.721800,-0.174800,0.162300,0.022320,-0.947100,0.320300 0.645300,0.171100,0.298600,0.015340,0.947300,0.320000 -0.202000,0.105400,0.117500,-0.141300,-0.935100,0.325000 -0.015400,0.051850,0.097550,0.843200,-0.438500,0.310900 -0.202900,-0.187900,0.139300,0.030510,0.882300,-0.469700 0.015930,-0.226000,0.119000,0.181700,-0.969500,0.164200 -0.929400,-0.150900,0.209700,-0.078290,-0.947000,0.311600 -0.100700,-0.307500,0.409200,0.000000,0.544500,0.838800 -0.147700,-0.274900,-0.858600,0.000000,0.969700,-0.244400 0.005471,-0.333200,0.313000,0.000005,0.820100,-0.572200 0.973900,0.079330,0.039530,0.000041,-0.970200,0.242400 -0.062490,-0.147000,0.355300,0.657000,0.719900,-0.223800 -0.032800,0.047020,0.175500,-0.000063,-0.978500,0.206300 0.470400,-0.125800,0.305500,-0.022260,0.994700,-0.100600 -0.046680,0.055660,0.609800,-0.653500,0.601600,0.459400 0.918900,-0.134600,0.217800,0.020910,0.953300,-0.301400 -0.088840,-0.180200,-0.042900,-0.945100,-0.326400,0.014300 -0.101100,-0.046270,0.382000,0.995200,0.088870,-0.042000 0.008565,-0.106100,-0.429800,-0.142300,-0.935600,0.323200 -0.129800,-0.112600,0.636200,-0.461400,0.260100,-0.848200 -0.034610,-0.052000,0.593100,-0.418900,-0.831700,0.364500 -0.016800,-0.184900,0.305900,0.165800,0.952100,-0.256800 0.076300,-0.177600,0.168800,0.824900,-0.555400,0.105200 -0.757000,0.073630,-0.025500,0.005865,-0.970900,-0.239400 -0.885900,0.100700,0.053300,-0.000014,0.892500,-0.451000 0.056720,-0.243300,-0.345600,-0.837500,0.546000,0.021270 -0.377300,0.096090,0.087790,0.000000,-0.942000,0.335700 0.054030,-0.030920,-0.151100,0.616000,0.741800,-0.265100 0.098810,0.001834,0.369100,-0.979400,-0.201200,0.017560 0.218800,0.088970,0.026930,0.020300,0.930600,-0.365500 0.044800,0.039020,0.075920,-0.086360,-0.915300,0.393300 -0.191500,-0.402200,0.389100,0.559900,-0.777600,0.286100 -0.014720,-0.236600,-0.681700,0.198700,0.953000,-0.228700 -0.240700,-0.172700,0.167900,0.026330,0.910100,-0.413600 -0.028860,-0.072270,-0.319900,-0.391600,0.871100,-0.296400 0.002903,-0.177300,-0.875900,0.998100,-0.060800,0.000003 0.016410,0.053020,0.565300,0.000044,-0.206300,-0.978500 -0.432000,0.172200,0.272500,0.000000,0.998700,-0.050290 0.076390,0.053390,0.493400,0.866700,0.493400,0.073320 -0.072110,-0.119900,-0.307000,-0.939000,0.306900,-0.155300 -0.027330,0.029220,0.099320,-0.000423,-0.720800,0.693200 -0.328100,0.115100,0.082580,-0.000071,0.909100,-0.416500 -0.426600,0.153700,0.298100,0.000000,-0.924800,0.380500 0.060170,0.166100,0.303900,-0.000157,0.308200,0.951300 -0.202300,-0.232100,-0.622800,-0.000030,-0.978500,0.206300 -0.563400,-0.187700,0.117700,-0.013990,0.868100,-0.496200 -0.574200,0.134000,0.123900,0.000000,0.924100,-0.382100 0.027620,-0.157800,0.382300,-0.296100,0.904400,-0.307300 -0.027360,-0.207400,-0.541700,-0.060830,0.976800,-0.205500 -0.158600,0.171900,0.267100,0.000053,0.997800,-0.066550 0.443000,0.172300,0.288900,-0.000013,0.998600,0.052700 0.149300,-0.214000,-0.541300,0.392600,-0.667600,0.632600 -0.003240,-0.122600,-0.755600,-1.000000,0.000000,0.000000 -0.547000,-0.141600,0.224100,0.014910,0.953800,-0.300100 -0.125800,-0.218700,-0.559300,0.000000,-0.978500,0.206100 0.026470,-0.155300,-0.539300,-0.533500,-0.780900,0.325000 0.158500,-0.168100,0.227600,0.023210,-0.960000,0.279100 -0.541500,-0.196600,0.105100,0.041260,0.802900,-0.594700 -0.005215,-0.280200,-0.597100,-0.140800,-0.989700,0.026480 0.607600,-0.149200,0.256600,0.022550,-0.966600,0.255200 -0.007988,-0.279300,-0.730200,0.544900,0.836900,0.051100 0.084520,-0.017750,0.026090,-0.916300,-0.383800,0.114600 -0.056160,-0.096610,-0.328300,-0.777900,0.587000,-0.224300 -0.032770,-0.201700,-0.631700,-0.905700,0.335300,-0.259600 -0.929700,-0.146200,0.174700,0.036330,0.911300,-0.410100 0.071130,0.172800,0.289000,0.026590,0.988900,0.146500 0.074570,-0.104900,-0.253100,-0.936000,-0.318200,0.150500 0.025200,0.105000,0.417700,0.661000,0.533900,0.527300 0.159200,-0.286400,0.377900,-0.233800,-0.313700,0.920300 -0.047440,-0.242300,-0.542300,-0.941300,-0.331900,-0.061180 -0.940600,0.100200,0.053530,0.035560,0.876300,-0.480500 0.065630,-0.346000,0.316100,0.000000,-0.976900,0.213600 0.004484,0.044590,0.646500,0.089040,0.527300,0.845000 -0.825800,0.135500,0.127600,-0.000025,0.925700,-0.378200 -0.719200,-0.128100,0.253300,0.009411,0.980000,-0.198600 0.103900,0.171300,0.261700,0.016120,0.995400,-0.094200 0.563300,0.172400,0.283400,0.025400,0.999600,-0.008071 -0.147600,-0.279500,-0.880600,0.000000,0.978500,-0.206200 0.012080,-0.263400,-0.181000,-0.159700,0.982100,-0.100100 -0.075270,-0.008271,0.557200,0.930700,0.209700,-0.299600 0.826100,-0.165000,0.147600,-0.006636,0.894400,-0.447300 -0.000479,-0.295900,-0.532100,0.007968,-0.820100,0.572200 -0.038270,0.039490,0.386600,-0.004551,-0.978200,0.207600 0.082040,-0.219800,-0.564500,0.000000,-0.978600,0.206000 -0.092970,-0.212100,-0.563800,-0.005582,0.974200,-0.225700 0.125100,-0.224800,0.239100,0.908300,0.418300,-0.005331 -0.062640,-0.199200,-0.470900,-0.992100,0.025310,-0.122800 -0.076670,0.058320,0.431000,-0.832200,0.553800,0.026980 -0.793400,-0.116000,0.309000,-0.000231,0.978300,0.207200 -0.464800,0.172400,0.294200,-0.000004,0.991800,0.128100 0.885900,0.120300,0.093480,0.000046,0.907100,-0.420900 -0.524500,0.129100,0.112300,0.004949,0.912600,-0.408900 -0.022140,-0.265600,-0.697700,-0.906400,-0.413300,-0.086710 -0.322600,0.113700,0.146500,0.000000,-0.971900,0.235600 0.317300,-0.196100,0.115200,-0.032190,0.856200,-0.515700 0.366300,-0.201400,0.112600,0.023050,-0.934200,0.356100 0.097870,0.000245,0.416900,-0.982900,-0.179800,-0.040580 0.158600,0.107900,0.067920,-0.005147,0.888200,-0.459500 0.063430,0.091060,0.073510,-0.071190,-0.940200,0.333100 0.070630,0.008390,0.035110,-0.699000,-0.682900,0.212200 -0.010470,0.079730,0.245200,-0.999800,0.018760,0.009931 0.235100,-0.151600,0.282500,0.023250,-0.970000,0.241900 -0.574200,0.164000,0.213100,-0.000096,0.974900,-0.222800 -0.104300,-0.096690,0.130900,-0.996400,-0.084760,0.000016 0.864100,0.106200,0.064220,0.005429,0.900600,-0.434600 -0.875100,-0.168600,0.131500,0.030860,0.877600,-0.478300 -0.300700,-0.152000,0.282600,-0.032400,-0.970100,0.240500 -0.399300,-0.150600,0.211600,0.052410,0.942100,-0.331100 0.257000,0.172000,0.294200,-0.010130,0.994900,0.100300 -0.711000,-0.166800,0.146000,0.046090,0.892400,-0.448800 -0.076560,0.088890,0.068650,0.000189,-0.933100,0.359700 0.825800,-0.117400,0.305300,-0.021790,0.999700,0.011170 -0.005335,-0.140400,-0.520800,0.112500,-0.922200,0.369900 -0.125800,0.150400,0.286300,0.000000,-0.966100,0.258200 0.096670,-0.084670,-0.060950,0.981700,0.171300,-0.083340 0.082010,-0.168400,0.233200,0.112700,-0.954800,0.275000 -0.710800,-0.133600,0.232700,0.050670,0.964300,-0.260000 -0.563300,0.119300,0.168300,0.000000,-0.967400,0.253400 0.164000,-0.151000,0.292000,0.024260,-0.971300,0.236600 -0.059630,0.074070,0.354600,0.391800,-0.919600,0.027740 0.599000,-0.193900,0.106400,0.027510,0.804000,-0.593900 0.420600,-0.145900,0.287500,0.023620,-0.970900,0.238200 0.097660,-0.123500,0.397400,0.246400,0.338300,-0.908200 0.705500,-0.120200,0.309600,-0.005266,0.984400,0.176000 0.065640,-0.251000,-0.712500,-0.000030,-0.978500,0.206200 0.917400,0.146400,0.174100,0.889600,0.126600,0.438900 -0.118200,0.037120,0.203700,-0.818600,-0.419500,0.392400 0.005484,-0.290400,-0.935300,0.029970,0.978200,-0.205300 -0.153100,-0.347700,0.308400,0.000000,-0.975600,0.219300 -0.546800,-0.172400,0.182200,-0.032370,-0.950100,0.310200 0.120200,-0.177700,0.198600,0.019640,-0.954000,0.299100 -0.131500,0.085190,0.334900,0.732700,0.662700,-0.154700 -0.041960,-0.217700,0.113400,-0.450600,-0.880900,0.144800 -0.656200,-0.150700,0.242600,-0.032100,-0.963000,0.267600 0.055320,-0.149400,-0.444900,-0.920000,-0.338800,0.197000 0.062990,-0.149900,0.267000,-1.000000,0.003241,0.006715 0.087240,-0.180700,-0.093460,-0.955900,0.293700,0.005075 0.028850,-0.089690,-0.370600,0.404000,0.864300,-0.299700 -0.114800,-0.303600,0.382000,-0.000004,0.990000,-0.140700 0.037130,0.055570,0.462800,0.040950,-0.978800,0.200600 -0.540900,0.129600,0.207400,0.000000,-0.966800,0.255600 0.519500,0.098840,0.049580,-0.005131,0.903400,-0.428800 -0.869400,-0.129400,0.298800,-0.032810,-0.972800,0.229500 -0.038900,-0.209300,0.177300,-0.423600,-0.894600,0.142600 -0.453900,0.077430,0.031150,0.000000,-0.979400,0.201900 0.077190,-0.133200,0.333000,-0.843500,0.536900,-0.015730 0.453800,-0.174300,0.184000,0.023260,-0.951300,0.307300 0.102300,-0.116900,0.108400,0.986500,-0.160000,0.035700 0.853100,0.119300,0.168300,0.000000,-0.967400,0.253400 0.111100,0.063620,0.341600,-0.638200,0.275000,-0.719100 0.166000,-0.304200,0.338900,0.946200,0.275300,-0.170300 0.032580,-0.251500,-0.712400,0.241800,-0.963400,0.115500 -0.825300,0.160900,0.200900,-0.000059,0.965100,-0.261800 0.027350,0.036640,0.264600,0.000000,-0.206200,-0.978500 -0.020470,0.114800,0.465100,-0.549800,0.666500,0.503600 0.946100,0.098860,0.049610,-0.020110,0.919700,-0.392200 0.023940,0.032960,0.645500,0.451500,0.279100,0.847500 -0.209400,-0.346300,0.391900,-0.969000,-0.137600,0.205100 0.016380,-0.073050,0.568500,0.173200,-0.829000,0.531700 -0.071090,-0.214100,-0.537200,0.000836,-0.978500,0.206300 0.350000,0.109700,0.071550,0.010270,0.890300,-0.455200 -0.273300,-0.143700,0.316000,-0.027730,-0.733600,0.679000 -0.027330,-0.290000,-0.935400,-0.000072,0.978400,-0.206800 0.924100,-0.157700,0.200400,0.024660,-0.955000,0.295700 -0.188200,0.112200,0.191500,-0.614000,-0.774000,0.154900 -0.120300,0.121900,0.178500,0.000000,-0.966200,0.257700 0.393800,0.123000,0.182400,0.000000,-0.966100,0.258200 -0.101000,-0.122000,0.102900,-0.983100,-0.182000,0.018800 0.328200,-0.129100,0.305400,-0.012660,0.997200,-0.073780 -0.082100,-0.135300,-0.265800,-0.972800,0.170900,-0.156300 0.071470,0.032960,0.581300,0.936600,0.273900,0.218500 -0.432000,0.170300,0.250900,-0.000041,0.993600,-0.113100 0.175800,-0.282100,0.408200,-0.983000,-0.144800,-0.112900 -0.486300,0.133300,0.221500,0.000000,-0.966700,0.255800 0.010610,0.014770,0.295900,0.182900,-0.490100,-0.852200 0.740600,0.073470,0.002268,0.000000,-0.997800,0.065690 0.858400,-0.116700,0.302900,-0.043490,0.987300,-0.152500 -0.034070,-0.169700,0.339200,0.363000,0.887900,-0.282500 -0.082160,-0.181300,0.066200,0.895300,0.436800,-0.087640 0.519900,-0.165400,0.207200,0.022750,-0.957200,0.288700 -0.836700,0.074760,0.015340,0.000000,-0.990900,0.134700 -0.082120,-0.164800,0.179000,0.884400,0.465900,-0.027570 -0.173200,-0.298700,0.328400,0.757900,-0.652300,-0.005257 0.102300,-0.040820,0.196000,0.990900,0.132400,-0.026300 0.853000,-0.149600,0.233500,0.022470,-0.962100,0.271600 -0.174900,-0.183000,0.151200,0.052380,0.897000,-0.438900 0.218800,-0.154500,0.209600,-0.002718,0.941800,-0.336100 -0.131200,-0.267000,-0.826200,0.000000,0.979200,-0.202900 0.328300,-0.149100,0.283600,0.024620,-0.971700,0.234900 0.095670,-0.112100,-0.110000,0.986600,0.113100,-0.117900 0.087130,-0.110200,-0.187600,0.982500,0.177200,-0.057350 -0.190800,0.107400,0.155400,-0.736800,-0.662000,0.137300 -0.765600,0.090560,0.030720,0.000000,0.933300,-0.359100 0.191200,-0.339500,0.410600,0.969700,-0.059960,0.236700 -0.099840,-0.018680,0.414800,0.994200,-0.071670,-0.079590 0.639900,-0.157100,0.174700,-0.020620,0.915800,-0.401000 -0.061780,0.037370,0.103500,-0.651100,0.741600,-0.161500 0.081640,-0.174300,0.138100,0.725800,-0.686200,-0.048750 0.096600,-0.073810,-0.039040,0.975500,0.198800,-0.094310 0.039310,-0.251000,-0.602300,0.948000,-0.311700,-0.064300 -0.492100,-0.196500,0.118300,-0.031540,-0.935700,0.351300 -0.055210,-0.022870,-0.035800,-0.830800,-0.032480,-0.555700 -0.056430,-0.033210,-0.144400,0.635600,-0.730100,0.250900 0.574200,-0.169500,0.189700,0.022630,-0.953400,0.300900 0.732900,-0.144500,0.263200,0.024590,-0.968100,0.249500 0.328200,-0.143700,0.236600,-0.014220,0.960700,-0.277300 -0.010520,0.063260,0.436100,-0.972300,0.054150,0.227400 0.087390,-0.009600,0.517100,-0.985400,0.054760,-0.161500 0.016640,0.058940,0.216000,-0.082750,0.880100,-0.467600 -0.864100,0.170500,0.250900,-0.005294,0.993900,-0.110400 -0.596100,0.171400,0.298600,0.000000,0.935100,0.354300 -0.795400,0.157100,0.299500,-0.271200,-0.002511,0.962500 0.130300,0.080340,0.329200,0.452600,-0.774600,-0.441800 0.000075,-0.279300,-0.460400,-0.000396,-0.999800,0.019710 0.525500,0.079330,0.039540,0.000000,-0.970200,0.242400 -0.191300,-0.352300,0.360000,1.000000,0.000489,-0.000244 -0.962600,-0.176800,0.112000,0.025330,0.853100,-0.521100 -0.079810,-0.121900,-0.247500,0.959600,-0.250800,0.127600 -0.027020,-0.220500,0.134900,-0.317400,-0.935900,0.153100 -0.099760,-0.111900,0.168600,0.986500,0.163600,-0.009708 0.085430,-0.046840,-0.066290,0.916400,0.373200,-0.144900 -0.009323,0.052740,0.291000,-0.836300,-0.245600,-0.490100 0.028200,0.007540,-0.077830,0.454300,0.774400,-0.440400 -0.203200,-0.277900,0.354800,-0.961600,0.267600,-0.060890 -0.665900,0.112600,0.223000,-0.988300,-0.003702,0.152400 -0.278400,-0.181900,0.180400,-0.031260,-0.950700,0.308500 -0.077710,-0.082840,0.474700,-0.860300,-0.437600,0.261300 0.760500,-0.154200,0.174800,-0.013690,0.922000,-0.387000 -0.372000,-0.142600,0.240800,0.039130,0.962900,-0.267000 -0.196700,-0.255600,0.386800,-0.149600,0.964100,0.219300 0.827400,0.158500,0.289000,0.379100,0.179200,0.907900 -0.798600,-0.128300,0.240700,0.038020,0.961200,-0.273100 -0.672700,0.093360,0.038440,0.000059,0.919400,-0.393400 0.097800,-0.120100,-0.064820,-0.995600,-0.026230,0.089600 -0.158500,-0.167200,0.242500,-0.032190,-0.962100,0.271000 0.099730,-0.137200,0.048550,0.980200,-0.198000,-0.000311 -0.976300,0.103700,0.060100,-0.497800,0.846400,-0.189100 0.131300,-0.255700,-0.734600,0.000000,-0.977900,0.208900 -0.091070,-0.121900,0.299600,-0.931400,-0.352600,0.090800 -0.158600,-0.261600,0.368500,0.884700,-0.462000,0.062880 -0.268000,0.096910,0.045980,0.010180,0.901200,-0.433200 -0.071050,-0.077440,0.496200,0.794200,0.516200,-0.320700 0.681400,0.073910,-0.023390,-0.025050,-0.871900,-0.489000 0.076530,0.034930,0.527700,-0.897200,-0.389100,-0.208700 -0.448000,0.134300,0.225400,0.000000,-0.966800,0.255600 -0.399000,-0.162100,0.232300,-0.031890,-0.960900,0.275100 -0.661700,0.111500,0.075170,0.005059,0.898600,-0.438800 -0.858500,-0.177200,0.137000,-0.032280,-0.941500,0.335300 0.580000,-0.178700,0.161100,0.023580,-0.946900,0.320600 -0.021940,-0.091170,-0.033570,0.103800,0.989800,0.097810 -0.091200,0.029820,0.414600,-0.938800,0.341400,0.046930 -0.022110,0.117200,0.497500,-0.015010,0.071200,-0.997300 0.068660,-0.188200,-0.406000,-0.993600,0.008232,0.112600 -0.136600,-0.203700,0.131200,-0.031290,-0.938600,0.343500 0.073200,-0.166700,-0.372600,0.991500,0.100600,-0.083050 0.065870,-0.193700,-0.448900,0.989100,0.023780,-0.145100 -0.005186,-0.229100,0.107900,-0.069080,-0.984700,0.160000 0.147700,0.138900,0.242700,0.000000,-0.966100,0.258100 -0.585100,0.142300,0.255400,0.000000,-0.967400,0.253300 -0.355500,0.150400,0.286300,0.000000,-0.966100,0.258200 -0.885900,-0.136800,0.266400,-0.032100,-0.968800,0.245700 -0.120300,-0.156000,0.223100,0.035530,0.961800,-0.271400 -0.683600,0.159700,0.196500,0.000024,0.951800,-0.306600 -0.011420,0.035410,0.376300,-0.238300,-0.956800,-0.166400 -0.568700,0.111700,0.138600,0.000037,-0.967000,0.254900 0.164100,-0.251000,-0.712500,0.000000,-0.978500,0.206200 0.082000,-0.174700,0.211500,0.056810,-0.959000,0.277600 -0.661500,0.100400,0.107700,0.229800,-0.725900,0.648300 -0.771000,-0.126100,0.313700,-0.016540,-0.340300,0.940200 0.164500,0.107000,0.121400,0.005127,-0.958000,0.286600 -0.727300,0.083760,0.010290,0.005645,0.955900,-0.293700 0.078890,-0.208400,-0.104900,0.900200,-0.434300,0.032630 0.853100,-0.133600,0.295600,0.023930,-0.973700,0.226800 0.076570,-0.224500,-0.586600,0.000000,-0.979100,0.203600 -0.190500,-0.396400,0.325800,0.802000,-0.511900,-0.307700 -0.781600,0.129100,0.112300,0.000000,0.918000,-0.396500 0.371800,-0.161800,0.231700,0.023260,-0.960800,0.276100 -0.071710,0.014030,0.592400,-0.943600,0.022740,0.330300 0.514100,0.152500,0.294000,0.000000,-0.960800,0.277200 0.103900,-0.325600,0.406300,-0.000736,-0.911600,0.411000 -0.169600,-0.163400,0.196800,0.031050,0.938000,-0.345300 0.052910,-0.177800,-0.509100,0.936500,0.266900,-0.227300 0.640300,-0.127400,0.272400,0.018510,0.974400,-0.224000 -0.086880,-0.043460,0.487400,0.967600,0.182300,-0.174500 -0.431600,0.161900,0.204700,-0.014730,0.968400,-0.249100 0.082040,-0.240600,-0.663200,0.000000,-0.979000,0.203700 -0.136700,-0.344900,0.321200,0.000000,-0.976800,0.214000 0.038290,-0.253700,-0.762700,0.000047,0.978500,-0.206200 0.086920,-0.151100,0.206800,0.979800,0.173200,-0.099860 -0.508500,-0.174800,0.178700,-0.031900,-0.950600,0.308800 -0.065620,-0.326900,0.402500,-0.000120,-0.957100,0.289600 -0.073980,-0.166000,-0.345900,0.979800,-0.137400,0.145600 0.153100,-0.305500,0.371600,-0.232900,0.956700,-0.174700 0.246100,0.148500,0.163900,0.015690,0.944600,-0.328000 -0.596200,-0.197100,0.101300,0.027460,0.631200,-0.775200 -0.169400,-0.205900,0.122200,-0.032280,-0.936000,0.350500 0.104000,-0.152800,0.224200,-0.021560,0.948600,-0.315800 0.097210,-0.034900,0.463600,0.975200,-0.136900,0.174000 -0.579600,-0.132500,0.252700,0.033420,0.970400,-0.239200 -0.664500,-0.104200,0.154700,-0.790000,-0.133000,-0.598600 0.246100,-0.257700,-0.782200,0.000072,0.977700,-0.209800 -0.907500,-0.149600,0.216900,-0.030750,-0.959400,0.280200 0.083930,-0.186700,0.031680,0.894700,-0.442300,0.062720 0.143300,-0.241500,0.369800,0.535500,0.429000,-0.727400 -0.066560,-0.050850,0.546400,0.776600,0.475100,-0.413700 -0.043740,-0.283300,-0.865700,-0.000032,-0.978400,0.206500 0.833300,0.073220,-0.021570,-0.000044,-0.999000,-0.044720 -0.894700,0.073830,0.007119,0.000000,-0.996200,0.087490 -0.152700,0.135300,0.229200,0.000000,-0.966900,0.255300 -0.015600,-0.242300,-0.720800,0.695000,0.715600,-0.070070 -0.147700,-0.136000,0.310500,0.030490,0.999300,0.022710 -0.078350,-0.119100,0.383200,0.838900,0.518500,-0.165500 0.015950,-0.013900,0.579400,-0.000057,-0.205600,-0.978600 -0.262400,-0.155400,0.274200,-0.033030,-0.968400,0.247200 -0.689000,-0.149900,0.241300,-0.033270,-0.963400,0.265800 -0.710800,-0.146900,0.249800,-0.031840,-0.964800,0.260900 -0.132800,0.061870,0.245300,-0.072790,-0.774800,0.628000 -0.327800,-0.149800,0.288100,-0.030870,-0.971700,0.234400 0.658100,0.073640,-0.020620,-0.020000,-0.937600,-0.347200 -0.103700,-0.029370,0.245200,-0.989600,0.141000,-0.029630 -0.074720,-0.189000,-0.334900,0.979300,0.176700,0.098590 -0.147200,-0.210200,-0.555400,-0.004067,0.976700,-0.214400 0.404700,-0.162900,0.174900,-0.023010,0.929200,-0.368900 0.010950,-0.272800,-0.853500,0.005076,0.982600,-0.185600 -0.951600,0.085710,0.060270,-0.000312,-0.939300,0.343000 0.021880,0.062350,0.248300,-0.000032,-0.976700,0.214800 0.006092,-0.194700,-0.665400,-0.160900,-0.901800,0.401000 -0.175000,0.092080,0.034540,0.000000,0.925400,-0.378900 -0.612500,0.093510,0.038380,-0.000022,0.919500,-0.393200 -0.015010,-0.256000,-0.787400,-0.526500,0.791200,-0.311200 0.382900,-0.161800,0.178800,-0.038530,0.932200,-0.359800 0.754600,-0.133400,0.306700,0.022950,-0.961600,0.273600 -0.016420,-0.275400,-0.390000,-0.279500,-0.959800,0.025690 -0.099990,-0.034830,0.168500,0.983400,-0.178100,0.035740 -0.158400,-0.151600,0.304200,-0.032100,-0.973000,0.228500 -0.114300,-0.166200,0.194300,0.044130,0.931700,-0.360400 -0.016400,-0.211000,-0.522800,0.000000,-0.977800,0.209500 -0.017040,-0.235000,0.048790,0.197300,0.967700,-0.156800 -0.207800,0.111700,0.138700,-0.030200,-0.960500,0.276500 -0.158600,0.151500,0.290100,0.000000,-0.966700,0.255800 0.081290,-0.020920,-0.005087,-0.893800,-0.423600,0.147300 0.050790,-0.207900,-0.562800,0.702000,0.617800,-0.354100 0.042570,0.023260,0.309500,0.032130,-0.978400,0.204100 0.063530,-0.224100,-0.033560,0.718100,-0.694000,0.052380 0.793000,-0.119600,0.294800,-0.018310,0.985700,-0.167700 0.869400,-0.162500,0.189100,0.023290,-0.953500,0.300400 0.087960,0.128600,0.203600,0.000000,-0.966800,0.255600 -0.189900,-0.256900,0.363600,0.868500,0.495200,-0.019780 -0.772700,0.169500,0.301200,-0.056760,0.585600,0.808600 -0.781900,-0.149900,0.230400,-0.033050,-0.961200,0.273900 -0.193000,-0.300900,0.293200,0.304700,0.428100,-0.850800 -0.003240,-0.210100,-0.744700,-0.999900,-0.012910,0.006378 0.003237,-0.106200,-0.821200,0.999500,-0.030410,-0.000012 -0.003240,-0.188200,-0.722800,-1.000000,0.000000,0.000000 0.030090,-0.268200,-0.493200,-0.559700,0.828200,0.029140 0.771100,0.087100,0.063960,-0.000013,-0.935000,0.354700 -0.158500,-0.178400,0.204300,-0.032750,-0.954300,0.297100 -0.710900,0.081570,0.047670,-0.000061,-0.958400,0.285300 -0.831200,-0.183600,0.122000,-0.031740,-0.937100,0.347700 -0.003258,-0.117100,-0.553300,-1.000000,-0.002204,0.002768 0.236700,0.074200,0.010740,0.000000,-0.994200,0.107900 -0.097580,0.014540,0.355000,-0.959200,0.282700,-0.006122 0.011900,0.071270,0.370800,0.127600,-0.227100,-0.965500 -0.001811,0.040530,0.092280,0.000069,-0.206200,-0.978500 -0.617500,0.130700,0.116000,0.000057,0.921300,-0.388800 0.596200,-0.153700,0.187100,-0.043220,0.923100,-0.382200 -0.104700,-0.027910,0.291800,-0.993900,0.108600,-0.017760 0.078480,0.036870,0.256000,-0.884200,-0.462400,0.066170 -0.010480,-0.292700,-0.947700,-0.000441,0.972100,-0.234500 0.306300,0.089140,0.026890,0.005677,0.937300,-0.348600 -0.924300,-0.158400,0.147900,0.031590,0.887500,-0.459700 0.014120,-0.200000,0.248400,-0.155200,0.965300,-0.210000 -0.009448,0.099240,0.343100,-0.810600,0.579100,-0.086390 -0.028440,-0.270600,-0.523200,-0.541900,-0.838700,-0.054230 -0.136700,0.074760,0.015340,0.000436,-0.991100,0.133300 0.662100,-0.184300,0.139300,0.022890,-0.942400,0.333600 -0.105600,-0.078630,0.185000,-0.998200,-0.058100,0.011370 0.195500,-0.341200,0.338300,0.966600,-0.071900,-0.246000 -0.048560,-0.292700,-0.947100,-0.033230,0.911900,-0.409000 -0.155300,0.103900,0.327500,-0.771000,-0.556800,0.309100 -0.169600,-0.286200,-0.913100,-0.024990,0.985300,-0.168800 -0.663300,-0.141400,0.193700,0.660100,0.443200,0.606400 -0.388100,-0.145400,0.228700,0.031870,0.958000,-0.285000 0.003252,-0.117200,-0.613300,0.998400,-0.012290,0.054780 0.114900,-0.295900,-0.925600,0.000000,-0.979000,0.203600 -0.278800,-0.172700,0.209700,-0.031990,-0.956100,0.291200 0.003071,-0.056970,-0.788400,0.999900,0.010190,0.010170 -0.360900,0.154600,0.180000,0.000088,0.961700,-0.274000 -0.153200,-0.204700,0.113200,0.045750,0.847000,-0.529600 -0.039920,-0.030320,-0.178000,-0.483600,0.827800,-0.284300 0.355400,-0.174800,0.189700,0.022560,-0.953100,0.302000 0.040030,-0.118900,0.471000,-0.394600,0.845200,-0.360500 0.114900,-0.259600,-0.785900,0.000000,0.977600,-0.210500 0.803900,-0.130900,0.240400,-0.046000,0.959000,-0.279600 -0.090080,-0.149000,0.247500,-0.456900,0.823200,-0.337000 0.042260,0.039660,0.140100,0.082490,-0.977100,0.195900 -0.065510,-0.143700,0.291100,0.937100,0.342400,-0.067790 -0.032680,-0.183600,-0.598800,-0.786100,0.571200,-0.236100 0.179300,0.095100,0.129600,0.582300,-0.759300,-0.290500 -0.039510,-0.012070,0.633100,-0.131200,-0.361100,0.923300 0.077750,0.019430,0.550500,-0.934900,-0.297400,-0.193600 -0.557700,-0.146400,0.271300,-0.032210,-0.967600,0.250500 0.694500,0.079340,-0.006541,-0.019000,0.991600,-0.127700 0.180500,0.102300,0.057090,0.000066,0.906100,-0.423000 0.284400,0.155500,0.184200,0.020360,0.960300,-0.278200 -0.453900,0.106000,0.064310,-0.000001,0.906600,-0.422100 0.075610,-0.155000,0.288300,0.300700,-0.927400,0.222700 0.306400,-0.165000,0.176600,-0.023620,0.923400,-0.383200 0.123800,-0.189300,0.400300,0.264200,-0.002692,0.964500 0.475800,0.149400,0.282300,0.000000,-0.966200,0.257800 0.453900,0.139900,0.246500,0.000000,-0.966800,0.255700 -0.765600,0.139900,0.246500,0.000000,-0.966800,0.255700 0.601600,0.079330,-0.006582,-0.000021,0.987600,-0.156700 0.186000,-0.235900,-0.678200,0.000000,0.977700,-0.209800 0.069960,0.062700,0.336300,-0.565400,-0.820800,0.082130 -0.694100,0.141700,0.143200,0.000065,0.935200,-0.354100 0.525500,0.108100,0.125200,0.000000,-0.962500,0.271300 -0.869500,0.090560,0.030720,-0.015300,0.940300,-0.339900 0.142200,0.143200,0.147400,-0.005665,0.947600,-0.319500 0.771100,0.083760,0.010290,0.005676,0.955800,-0.293800 -0.064810,0.048540,0.581000,-0.866100,0.463900,0.186000 0.891400,0.109700,0.071640,0.005066,0.877500,-0.479600 0.202500,-0.185700,0.137700,-0.015970,0.893500,-0.448700 -0.096220,-0.017840,0.163000,0.954800,-0.293500,0.046730 -0.191500,-0.137500,0.289600,0.032450,0.984100,-0.174700 0.076590,-0.250000,-0.744400,0.056410,0.967900,-0.244800 -0.079630,-0.200300,-0.165000,0.938200,0.346100,0.007735 0.864500,0.133300,0.221500,-0.000036,-0.966700,0.256000 -0.032810,0.125000,0.190100,0.000000,-0.967400,0.253200 0.738300,-0.183200,0.118900,-0.026910,0.876900,-0.479900 0.067080,-0.228500,-0.121400,0.790000,-0.609600,0.066360 0.350000,0.120600,0.173300,0.000000,-0.967400,0.253400 0.453900,0.119300,0.168300,0.000000,-0.967400,0.253400 0.131300,0.094710,0.083960,0.000017,-0.939200,0.343400 0.913300,0.097440,0.091620,0.000000,-0.945100,0.326800 0.170000,-0.248100,-0.736100,0.000000,0.978400,-0.206800 -0.574300,-0.155200,0.183300,0.021100,0.945600,-0.324700 -0.305800,0.078420,0.035680,0.000000,-0.975300,0.220800 0.716900,0.078420,0.035680,0.000000,-0.975300,0.220800 -0.082030,-0.308000,0.363100,0.000028,0.961500,-0.275000 -0.098430,-0.275900,-0.830600,0.000000,-0.978500,0.206200 -0.169500,-0.266000,-0.821100,0.000000,0.979300,-0.202400 -0.229700,-0.253200,-0.722900,0.000000,-0.979100,0.203300 0.421200,-0.184400,0.130600,-0.021790,0.892800,-0.450000 0.847700,0.113700,0.146500,-0.000128,-0.971800,0.235900 0.174700,-0.327000,0.434800,-0.970800,0.009391,-0.239900 0.508900,-0.172000,0.186900,0.023510,-0.952400,0.303800 0.219200,0.107000,0.121400,0.000000,-0.960000,0.279800 -0.732800,0.110700,0.134700,0.000000,-0.965100,0.261700 -0.284300,-0.148500,0.299500,-0.030880,-0.973600,0.226000 -0.000175,-0.052390,-0.054180,0.007798,0.217200,0.976100 -0.349500,0.161900,0.204700,0.000000,0.968600,-0.248700 -0.102400,-0.062930,0.316400,0.991500,0.124700,-0.037490 -0.913200,-0.164700,0.168100,-0.031840,-0.949500,0.312000 -0.045240,0.003155,-0.068290,-0.538000,0.740100,-0.403500 0.639800,-0.137800,0.299600,0.023360,-0.974700,0.222400 0.147700,-0.243300,-0.713400,0.000000,0.978500,-0.206200 0.235200,-0.243300,-0.713400,0.000066,0.978500,-0.206300 0.088670,-0.181000,-0.142800,0.971200,-0.236000,-0.031720 0.506100,-0.128000,0.285700,-0.004474,0.987600,-0.156800 -0.929800,-0.169500,0.126600,0.045860,0.861000,-0.506500 0.229700,-0.269300,-0.799500,0.000000,-0.979100,0.203400 -0.005650,-0.067480,-0.317000,0.074090,-0.943400,0.323300 0.191500,-0.147200,0.235100,-0.042920,0.963900,-0.262700 0.246000,-0.189000,0.154800,0.023290,-0.944300,0.328100 0.743800,0.139900,0.246500,0.000000,-0.966800,0.255700 0.896900,0.149100,0.163700,0.014750,0.931600,-0.363200 -0.650800,0.164000,0.213100,-0.004711,0.973600,-0.228400 -0.001823,0.072760,0.283200,-0.047260,-0.292400,-0.955100 0.011400,-0.236900,-0.645600,-0.000099,-0.978600,0.205900 0.060620,0.134300,0.225400,0.000000,-0.966800,0.255600 0.345000,0.134300,0.225400,0.000000,-0.966800,0.255600 -0.361000,-0.191900,0.122200,0.030550,0.861700,-0.506500 -0.114800,-0.284300,-0.908100,-0.000103,0.978600,-0.206000 -0.223800,-0.237700,-0.649400,-0.000614,-0.978400,0.206800 0.350500,0.128900,0.112300,0.020620,0.903600,-0.427900 -0.065620,-0.238000,-0.685900,0.030240,0.978100,-0.205900 -0.175100,-0.157500,0.213000,0.030460,0.959100,-0.281500 0.869600,-0.179300,0.119800,-0.017380,0.876900,-0.480400 -0.689100,-0.123400,0.278100,0.022180,0.986700,-0.161200 0.005519,0.035820,0.265800,0.025920,0.203300,0.978800 -0.185900,-0.168900,0.233300,-0.032140,-0.961600,0.272700 -0.555000,-0.177300,0.166400,-0.030360,-0.947500,0.318200 0.803800,-0.187700,0.120400,0.023100,-0.937600,0.347000 -0.010430,0.066400,0.130800,-0.152000,0.971600,-0.181500 -0.032810,-0.088200,-0.006756,-0.000002,-0.978600,0.205600 0.032820,-0.282100,-0.897700,-0.000078,0.979300,-0.202500 -0.683600,0.091870,0.076320,0.000000,-0.935100,0.354500 -0.328100,0.164800,0.218400,0.020420,0.978800,-0.203600 -0.103800,-0.139200,0.298200,0.045370,0.992400,-0.114200 0.027780,0.110800,0.498000,0.750200,-0.262000,-0.607100 -0.475900,-0.181600,0.133400,0.030650,0.877500,-0.478600 0.169600,-0.152900,0.218800,-0.009609,0.941000,-0.338300 -0.300800,0.120600,0.173300,0.000000,-0.967400,0.253400 0.065900,0.013710,0.100300,-0.302100,-0.015520,0.953100 -0.045470,-0.221400,0.079630,-0.492700,-0.859000,0.139300 -0.082030,0.126300,0.195100,0.000000,-0.967400,0.253400 -0.371400,0.140200,0.139400,0.000000,0.932400,-0.361400 -0.005429,-0.255700,-0.734600,0.102000,-0.975600,0.194200 0.853100,-0.123700,0.267200,-0.044640,0.991300,-0.123700 -0.074460,-0.211700,-0.225200,0.934900,0.354700,0.013810 -0.104300,-0.094690,0.082020,-0.999100,-0.042660,-0.008718 0.508600,-0.132900,0.315500,0.011090,-0.242600,0.970100 -0.021430,-0.236900,-0.645600,0.022030,-0.971700,0.235300 0.574300,-0.132200,0.257100,-0.022810,0.976800,-0.212900 -0.434500,-0.149300,0.211200,-0.006049,0.952400,-0.304900 -0.069890,-0.208200,0.013980,0.795900,0.596500,-0.103600 -0.049460,-0.182200,0.275600,-0.526500,-0.824200,0.208800 -0.716500,-0.156300,0.167900,0.031430,0.915900,-0.400200 0.067700,-0.003677,-0.006887,-0.573800,-0.782000,0.243400 -0.073100,0.007382,0.014940,-0.964100,0.265600,-0.000959 0.120300,-0.267000,-0.820900,0.000000,0.979300,-0.202500 -0.853100,-0.164900,0.173600,-0.031830,-0.951000,0.307700 0.188600,-0.341400,0.305300,0.999500,-0.009277,-0.029960 0.109400,0.104100,0.060700,0.010090,0.883900,-0.467500 0.861200,0.154600,0.269500,0.647600,0.154500,0.746200 0.904500,0.150100,0.199500,0.910000,0.100900,0.402200 -0.059720,0.074110,0.425700,0.633400,-0.773700,-0.013810 -0.048620,-0.248200,-0.195600,0.617000,0.785300,-0.051890 -0.694500,0.162100,0.304300,0.000000,-0.063810,0.998000 -0.203200,-0.372600,0.399600,-0.970000,-0.183000,0.160100 0.077860,-0.092050,0.453700,-0.855500,0.473000,-0.210600 0.869500,-0.139500,0.269900,0.022580,-0.967900,0.250200 -0.016560,-0.271500,-0.323600,0.225000,0.974000,-0.025390 -0.057900,0.066350,0.529800,0.705100,-0.692900,-0.150500 -0.278400,0.128600,0.203600,0.000000,-0.966800,0.255600 0.557800,0.125000,0.190100,0.000000,-0.967400,0.253200 0.109800,0.128600,0.203600,0.000000,-0.966800,0.255600 -0.382400,0.128600,0.203600,0.000000,-0.966800,0.255600 0.033890,-0.218400,0.119800,-0.373400,0.916700,-0.142200 -0.016390,-0.346900,0.312300,0.000000,-0.976300,0.216300 0.169600,-0.136000,0.284000,-0.058880,0.983100,-0.173200 0.084240,-0.189000,-0.061060,-0.933000,0.359500,-0.014960 -0.071080,-0.073780,0.019110,-0.996700,-0.048460,0.065470 -0.464800,0.087100,0.063960,0.000002,-0.935000,0.354700 0.371800,-0.154700,0.257300,0.021980,-0.966000,0.257500 -0.185900,-0.226700,-0.631300,0.030940,0.977900,-0.206600 -0.010830,-0.265300,-0.203300,0.134700,0.987400,-0.083370 0.065940,-0.118100,-0.328600,-0.917100,-0.360000,0.171100 -0.771200,-0.141200,0.202100,0.047130,0.937200,-0.345600 -0.051200,-0.151000,0.377400,-0.515500,-0.813000,0.270800 0.579700,-0.137900,0.305100,0.023350,-0.970000,0.241800 0.083470,0.030500,0.501800,-0.951600,-0.296400,-0.080940 -0.235200,0.092080,0.034540,0.000000,0.925400,-0.378900 0.042630,-0.085790,0.533800,0.430600,-0.763100,0.482000 -0.025340,-0.012170,-0.135700,0.304800,-0.903500,0.301400 0.046630,-0.183700,-0.547300,0.927600,0.326300,-0.182100 -0.042700,-0.234700,-0.582500,0.952800,0.192800,0.234600 -0.158600,0.085710,0.060270,0.000007,-0.939400,0.342900 -0.902500,-0.120900,0.256900,-0.008476,0.978000,-0.208400 -0.404700,0.137100,0.131500,-0.015350,0.927900,-0.372500 -0.322600,0.087100,0.063950,-0.000005,-0.935100,0.354400 0.193000,-0.351600,0.397500,0.968300,-0.148800,0.200500 0.208300,-0.236900,-0.645600,0.000060,-0.978600,0.205900 0.026620,0.066930,0.342700,0.449000,-0.798600,0.400700 -0.125800,0.172400,0.294200,0.000000,0.991700,0.128500 -0.661200,-0.164300,0.154500,0.015090,0.906300,-0.422300 -0.716400,0.151500,0.290100,0.000000,-0.966700,0.255800 -0.923900,-0.140400,0.190400,0.037270,0.933200,-0.357500 0.072630,0.027030,0.134900,-0.812000,-0.574500,0.103200 0.044670,-0.255800,-0.252400,-0.589800,0.806800,-0.034800 -0.060290,-0.199700,0.132300,0.645300,0.753100,-0.128300 0.176000,-0.390700,0.376400,-0.981900,0.185200,-0.040850 0.986500,0.073790,-0.015820,0.528200,-0.786700,-0.319600 -0.070630,-0.130500,-0.324000,0.934600,-0.301500,0.188800 0.224200,-0.255700,-0.734600,0.000000,-0.977900,0.208800 0.075640,-0.111300,0.425100,0.766600,-0.578000,0.279800 -0.097560,-0.073260,0.392700,-0.962700,-0.254700,0.091540 -0.825500,-0.140000,0.261500,-0.032450,-0.966600,0.254400 -0.017600,-0.057540,-0.280800,0.251900,-0.917100,0.309100 -0.043030,0.059320,0.258800,-0.134000,-0.608600,-0.782100 -0.014640,-0.277200,-0.514400,-0.304500,-0.952500,-0.003649 -0.087240,0.006783,0.151800,0.931300,-0.358100,0.066320 -0.464400,0.139700,0.139600,0.020480,0.934600,-0.355000 0.103000,-0.040650,0.299900,0.996600,0.049910,-0.065540 0.164100,0.093510,0.038360,0.025390,0.924400,-0.380600 -0.102000,-0.090500,0.633800,0.467500,-0.276100,0.839700 0.673100,0.080340,0.043350,0.000000,-0.964000,0.265900 -0.064210,-0.121300,0.424900,0.648800,0.696300,-0.307000 -0.084720,0.045430,0.321800,-0.884700,0.464700,-0.036540 -0.038680,-0.264800,-0.391100,-0.598400,-0.801200,0.001212 -0.265300,-0.260800,-0.787900,-0.724700,0.677600,-0.125200 -0.005454,-0.276400,-0.870400,0.000000,0.979300,-0.202400 0.088470,-0.059960,-0.078870,0.940300,0.316000,-0.126800 0.710900,0.171100,0.298600,0.015270,0.947200,0.320400 0.019420,-0.265900,-0.706700,-0.951600,0.283800,0.118400 0.064850,0.062920,0.525400,0.748400,0.648700,0.138100 0.043770,-0.273400,-0.853400,0.020300,0.972600,-0.231500 -0.604200,-0.122400,0.301900,0.004531,0.992300,-0.123900 -0.710500,0.161900,0.204700,0.000000,0.968600,-0.248700 0.897700,0.073210,-0.002235,0.000000,-0.999000,0.044880 -0.355000,0.105800,0.117500,0.000000,-0.957500,0.288300 0.039380,-0.183800,0.285300,0.444000,-0.863100,0.240800 0.052300,0.195400,0.253100,-0.924900,-0.073010,-0.373200 -0.005414,-0.002173,0.100000,-0.086150,-0.237300,-0.967600 -0.776600,0.157000,0.188000,-0.010110,0.956600,-0.291200 -0.125800,-0.229500,-0.645600,0.000065,0.971600,-0.236500 -0.044690,-0.184000,-0.557700,-0.915600,0.343000,-0.209900 -0.075320,-0.215800,-0.139400,-0.895900,-0.444300,0.000097 0.065060,-0.232700,-0.334400,0.909900,-0.412800,-0.041710 -0.033720,-0.245200,-0.066270,0.409600,0.904700,-0.117600 -0.825700,-0.156100,0.204200,-0.032080,-0.955500,0.293200 0.005683,-0.151100,-0.548200,-0.137200,-0.916600,0.375500 -0.089480,-0.009307,0.086920,-0.931900,0.351700,-0.088520 -0.530100,-0.160600,0.222400,-0.030590,-0.960300,0.277500 -0.081320,-0.100500,-0.198000,0.949200,-0.280700,0.142500 -0.018350,-0.020820,-0.060780,-0.246900,-0.207500,-0.946600 0.082040,-0.324100,0.408800,-0.000410,-0.715300,0.698800 0.031590,-0.145200,-0.506200,-0.589100,-0.741500,0.321100 -0.344000,-0.143200,0.241600,0.031650,0.964800,-0.260900 -0.803800,-0.163200,0.183900,-0.032180,-0.951800,0.305000 -0.181300,-0.300800,0.349600,-0.890200,0.445300,-0.096120 0.005542,-0.116200,-0.459500,-0.068660,-0.932100,0.355600 -0.004900,-0.374200,-0.662600,-0.999900,0.008019,-0.011490 -0.054720,-0.083270,-0.288900,0.735200,-0.615100,0.284700 -0.541300,-0.142700,0.288400,-0.031730,-0.972000,0.232600 0.091310,-0.156000,-0.143400,-0.986600,0.150300,0.063600 0.022330,0.135300,0.229200,0.000000,-0.966900,0.255300 -0.005350,0.089540,0.545800,-0.076230,0.991500,0.105200 -0.665900,-0.106200,0.190500,-0.999400,0.008462,-0.032680 -0.081570,0.108100,0.125200,0.000000,-0.962500,0.271300 -0.382500,-0.193800,0.118500,0.043390,0.848800,-0.527000 0.100400,-0.067160,0.376200,0.969600,-0.231000,0.080650 -0.891400,0.093660,0.038300,0.015190,0.911300,-0.411500 -0.350100,-0.163500,0.180700,0.031400,0.926400,-0.375100 0.060550,-0.156400,-0.429700,-0.949400,-0.278400,0.145300 0.951000,-0.179100,0.134000,0.023370,-0.940900,0.337800 -0.415800,-0.159100,0.186500,0.041190,0.922300,-0.384300 0.738200,-0.195900,0.102900,0.022100,-0.961600,0.273400 0.678100,0.083770,0.010290,-0.015910,0.964000,-0.265300 0.284400,-0.154400,0.266800,0.024150,-0.968800,0.246700 0.687300,-0.121800,0.312600,-0.012770,0.792500,0.609700 0.090340,-0.159200,0.136300,0.976600,-0.127300,-0.173100 0.071560,-0.341900,0.334900,0.000000,-0.976300,0.216600 0.042710,0.110800,0.516700,0.228700,0.260000,0.938100 0.164000,-0.174400,0.205900,0.023530,-0.956100,0.292000 0.820400,-0.140500,0.207100,-0.023310,0.947400,-0.319300 -0.546800,0.130600,0.116300,-0.006080,0.918400,-0.395500 0.672100,-0.147000,0.197000,0.267600,0.918800,-0.290100 -0.218700,0.169100,0.240200,0.004785,0.985400,-0.170000 0.170000,-0.220800,-0.569000,0.002411,-0.977900,0.209100 0.155100,0.072250,0.150400,0.164900,-0.749500,-0.641100 0.101300,-0.079090,0.217900,-0.995700,0.088000,-0.029710 -0.202900,0.140000,0.253800,-0.400700,-0.903200,0.154100 0.002570,-0.128100,-0.668100,0.999100,0.040980,-0.011290 0.164100,0.094710,0.083960,-0.000002,-0.939200,0.343300 -0.300800,0.155600,0.184200,-0.004897,0.962400,-0.271700 0.005337,-0.276400,-0.427500,-0.055570,0.998300,-0.015220 -0.092910,-0.141100,0.283900,-0.370300,0.928900,-0.010770 -0.776600,0.152500,0.294000,0.000000,-0.960800,0.277300 0.984400,0.086110,0.018110,0.000186,0.950800,-0.309800 -0.595800,-0.154700,0.235300,-0.030930,-0.962400,0.270000 0.099160,-0.078740,-0.017540,0.983400,0.171000,-0.060990 0.052400,-0.075750,-0.284500,0.669700,0.699900,-0.248000 0.618400,0.160800,0.200900,-0.010820,0.966900,-0.254900 0.015610,-0.179100,0.331500,0.183900,-0.942000,0.280700 -0.095410,-0.088780,0.370600,-0.949400,-0.296100,0.104900 0.197100,-0.270700,-0.843700,-0.014120,0.982400,-0.186300 0.257100,-0.130600,0.305500,-0.012170,0.997300,-0.072820 0.158600,0.120600,0.173300,0.000000,-0.967400,0.253400 0.574200,0.146700,0.272200,0.000000,-0.967400,0.253300 -0.798400,0.146700,0.272200,0.000000,-0.967400,0.253300 -0.102700,-0.089550,0.256000,-0.984900,-0.169000,0.036780 -0.091110,-0.111200,-0.132500,0.981000,-0.158000,0.112900 -0.155500,-0.245500,0.387300,-0.151400,-0.156800,0.975900 0.765600,0.101700,0.104200,0.000000,-0.951500,0.307600 -0.080830,-0.196000,-0.188300,0.951600,0.306800,0.017940 -0.497700,0.166000,0.223500,-0.016000,0.987100,-0.159100 -0.590600,0.171500,0.261600,0.000030,0.996700,-0.081780 -0.404600,-0.136600,0.316700,-0.016890,-0.273600,0.961700 0.053490,0.030660,0.061760,-0.470900,-0.820400,0.324400 0.383100,0.161000,0.201000,-0.015960,0.960400,-0.278300 0.208200,-0.155600,0.269100,0.023920,-0.968300,0.248700 -0.022780,-0.249400,-0.690100,0.574300,-0.720500,0.388600 0.082040,-0.340500,0.304100,0.000000,0.749500,-0.662000 0.323300,0.127500,0.108600,-0.004729,0.912900,-0.408100 -0.637200,-0.133400,0.242000,0.031140,0.966100,-0.256500 0.101600,-0.084560,0.174100,-0.997100,0.074680,-0.015240 0.002737,-0.204600,-0.826700,0.998500,0.020300,0.050740 0.077030,-0.203600,-0.524300,0.010070,0.977000,-0.213200 -0.508600,0.172500,0.278000,0.000000,0.999400,-0.034100 -0.003240,-0.149900,-0.875900,-1.000000,0.000000,0.000000 0.481300,0.171900,0.272600,0.015210,0.996600,-0.080710 -0.760100,0.110700,0.134700,0.000000,-0.965100,0.261700 0.645200,-0.151700,0.244100,0.023250,-0.963600,0.266500 0.102500,-0.029600,0.371000,-0.999800,-0.018900,-0.010370 0.097800,-0.032500,0.164700,-0.978800,-0.201300,0.038610 0.146300,-0.264500,0.296300,0.910100,0.406800,-0.078480 0.045400,0.046880,0.327100,0.999100,-0.023350,0.034090 -0.048120,0.052400,0.310800,0.999600,0.008979,-0.025520 0.519500,0.145700,0.268300,0.000000,-0.966700,0.255700 0.273400,0.112700,0.142600,0.000000,-0.970000,0.243000 0.432000,0.112700,0.142600,-0.000102,-0.970000,0.243100 0.536000,-0.132800,0.258700,-0.012770,0.971500,-0.236800 -0.322600,0.148000,0.277200,0.000000,-0.967400,0.253400 -0.003240,-0.089780,-0.668100,-1.000000,0.000000,0.000000 -0.030600,0.074830,0.597100,-0.351600,0.875100,0.332400 -0.097410,-0.068180,-0.011800,-0.977200,0.196800,-0.080060 -0.102600,-0.095370,0.015550,-0.996000,0.067150,-0.058170 -0.098430,-0.260200,-0.793800,0.000000,0.979300,-0.202500 0.169500,-0.222200,-0.613300,0.000000,0.979300,-0.202600 -0.142200,-0.294800,-0.920300,0.000019,-0.978500,0.206100 0.289900,0.088890,0.068650,-0.000001,-0.933000,0.359900 -0.546900,0.172700,0.288900,0.000000,0.999800,0.021750 0.002238,-0.199200,-0.810300,1.000000,0.000025,-0.000001 0.067360,0.048120,0.215600,-0.754100,-0.651100,0.086220 -0.568700,0.171900,0.267100,0.000000,0.997800,-0.066630 0.716400,0.171600,0.267100,-0.000067,0.995300,-0.096890 -0.005551,-0.096710,0.529400,0.063430,0.873800,-0.482200 -0.103800,-0.095270,0.048290,-0.999800,0.005322,-0.016740 0.176800,-0.341400,0.381900,-0.987200,-0.152900,0.045390 -0.003240,-0.144500,-0.717300,-1.000000,0.000000,0.000000 0.003237,-0.128100,-0.717300,1.000000,0.000000,0.000000 0.459300,0.077330,-0.013150,0.010880,0.648300,-0.761300 0.683600,0.170500,0.250900,0.000023,0.993600,-0.113100 -0.047600,0.018650,0.284700,-0.432500,-0.882600,0.184300 0.180300,0.141200,0.250300,-0.261800,-0.962700,0.068920 -0.013400,-0.024450,-0.189200,-0.140800,0.935100,-0.325300 0.077160,-0.212500,-0.197700,0.930000,-0.365700,-0.037620 -0.612400,-0.141700,0.282700,-0.031650,-0.971000,0.236900 0.114900,0.169800,0.245500,0.000044,0.987100,-0.160000 0.038290,-0.340000,0.343300,0.000000,-0.976300,0.216200 0.000003,0.170300,0.250900,-0.020260,0.994500,-0.102800 -0.727300,0.151800,0.171400,0.000040,0.946700,-0.322100 -0.940600,0.094710,0.083960,0.000032,-0.939200,0.343400 -0.164100,-0.150100,0.238300,0.016680,0.967800,-0.251100 0.317200,0.172000,0.294200,0.000043,0.995500,0.094660 0.207800,-0.248300,-0.699500,0.000060,-0.978500,0.206200 0.016200,-0.041520,-0.240200,0.195300,0.931500,-0.307000 -0.361000,-0.134200,0.278000,0.026850,0.986400,-0.162300 0.080220,-0.194600,-0.230700,-0.967400,0.251700,0.028970 -0.171100,-0.149900,0.650800,0.442700,-0.214800,0.870500 -0.008156,0.062750,0.355400,-0.581100,0.132600,0.803000 0.612500,0.148000,0.277200,0.000000,-0.967400,0.253400 -0.803500,-0.122800,0.265400,0.043740,0.978300,-0.202300 0.091020,-0.156900,0.081280,-0.944400,0.325500,-0.046070 0.125800,-0.141800,0.262300,-0.038130,0.974000,-0.223400 -0.907800,0.112700,0.142600,0.000000,-0.970000,0.243000 0.096520,-0.024780,0.119500,0.962600,0.268900,-0.033390 -0.098430,-0.304400,0.376700,0.000000,0.984000,-0.178100 -0.012040,-0.275800,-0.369200,-0.200400,-0.979200,0.031690 -0.046670,0.068770,0.371300,0.935100,-0.238800,-0.261900 -0.044800,-0.121000,0.458600,0.484200,0.804800,-0.343100 -0.929700,0.112700,0.142500,-0.021800,-0.966300,0.256500 0.300900,-0.145300,0.233200,-0.008026,0.960500,-0.278100 -0.047960,0.074080,0.294400,0.985200,0.076670,-0.153500 -0.187100,0.107000,0.172200,-0.482100,-0.818800,0.311500 0.776600,0.156700,0.188000,0.010210,0.952500,-0.304300 -0.088440,-0.065120,-0.088380,-0.943100,0.307800,-0.126000 -0.054880,-0.199900,0.159800,0.599400,0.791400,-0.120000 0.003237,-0.128100,-0.569700,1.000000,-0.006673,0.003336 0.459400,0.110700,0.134700,0.000000,-0.965100,0.261700 -0.886000,-0.130200,0.223900,0.032210,0.952200,-0.303700 0.147700,0.104400,0.113000,-0.000028,-0.956100,0.293000 -0.214900,-0.288200,-0.919900,-0.326800,0.421800,-0.845700 -0.103100,-0.022840,0.344200,0.988900,-0.142400,-0.043290 -0.464800,0.125000,0.190100,0.000000,-0.967400,0.253200 -0.382800,0.142300,0.255400,0.000000,-0.967400,0.253300 0.661200,0.107100,0.213300,-0.001467,0.142300,-0.989800 0.951600,0.081570,0.047670,-0.000075,-0.958400,0.285400 0.002362,-0.226400,-0.772100,0.972800,0.222300,-0.065560 -0.039490,-0.141700,0.415700,0.396400,0.864200,-0.309700 -0.072750,0.058730,0.310400,0.769000,-0.632700,0.091390 0.147700,0.085710,0.060270,0.000000,-0.939400,0.342900 0.043950,-0.206300,-0.542000,-0.391500,0.919800,-0.027390 0.103900,-0.254700,-0.762500,0.000000,0.978500,-0.206200 -0.076870,-0.134800,0.352900,-0.802200,-0.573800,0.165200 -0.005410,-0.276600,-0.547800,0.085340,0.996100,-0.023430 0.084560,-0.177800,-0.208900,-0.980200,0.186400,0.067380 0.924200,0.089140,0.026890,0.000040,0.941300,-0.337500 0.388300,0.104400,0.113000,0.000000,-0.956100,0.293000 -0.092970,-0.208500,-0.547000,0.004949,0.975100,-0.221500 -0.120300,-0.270200,-0.803400,0.000000,-0.978500,0.206400 -0.891400,0.083100,0.052600,0.000000,-0.953100,0.302600 -0.218700,0.097440,0.091620,0.000000,-0.945100,0.326800 0.235200,0.154500,0.180100,0.015840,0.945500,-0.325300 -0.010150,-0.160000,0.393800,-0.110900,-0.936500,0.332700 -0.339100,0.120600,0.173300,0.000000,-0.967400,0.253400 -0.289800,0.083760,0.010290,0.000007,0.964100,-0.265400 -0.011090,0.086490,0.304000,-0.757400,0.538300,0.369600 -0.125800,0.123800,0.100800,0.020380,0.905000,-0.425000 -0.251600,0.081570,0.047670,-0.000019,-0.958500,0.285100 -0.858600,0.085710,0.060270,0.000175,-0.939500,0.342700 0.971300,0.090090,0.071330,0.112500,-0.835400,0.538000 0.038180,-0.213600,-0.630500,0.933900,0.244400,-0.261000 -0.088640,-0.172000,-0.126700,0.977200,0.211300,0.022810 -0.103800,-0.078790,0.121000,0.997800,0.058420,0.029820 -0.782000,0.113300,0.078810,-0.010090,0.901200,-0.433300 -0.436900,-0.155400,0.194500,-0.008262,0.950300,-0.311200 0.842600,-0.137600,0.214200,-0.022070,0.951300,-0.307500 0.027380,0.030770,0.345000,0.103600,-0.966700,0.234000 0.175000,-0.287100,-0.883800,0.000000,-0.977800,0.209400 -0.071080,-0.253700,-0.762700,0.000000,0.978500,-0.206200 -0.136700,-0.277600,-0.838500,0.000000,-0.977900,0.208900 0.891500,-0.168900,0.137100,-0.007300,0.874600,-0.484900 0.064510,-0.163300,0.198800,-0.470200,0.680300,-0.562300 -0.885900,0.109800,0.071460,0.020350,0.877300,-0.479500 -0.836800,-0.125700,0.246000,0.031850,0.968200,-0.248300 -0.683600,0.125700,0.104500,0.000051,0.905200,-0.425100 -0.415000,0.129100,0.112300,-0.014930,0.925800,-0.377700 0.065630,0.169300,0.240200,0.007181,0.981900,-0.189400 0.038300,0.008074,0.100500,0.005007,0.177600,0.984100 -0.432000,0.113600,0.078660,-0.010150,0.901200,-0.433400 -0.076170,-0.176000,0.223000,-0.175900,-0.960000,0.217600 0.902800,0.078420,0.035680,0.000000,-0.975300,0.220800 -0.289400,0.138800,0.135700,0.000000,0.930200,-0.367000 -0.628900,-0.170600,0.179200,-0.032490,-0.951200,0.307000 -0.809300,-0.164500,0.143800,0.031640,0.892200,-0.450600 -0.552300,0.126300,0.195100,0.000000,-0.967400,0.253400 -0.196900,-0.227200,-0.599400,-0.005174,-0.977000,0.213200 -0.103900,0.157000,0.188000,-0.010110,0.956600,-0.291200 0.025300,-0.269700,-0.575200,-0.616200,0.787600,-0.003942 -0.021920,0.059250,0.470200,-0.112800,0.974300,-0.195100 0.041420,-0.260400,-0.433000,-0.683500,0.729900,0.006975 -0.042400,-0.257500,-0.478600,0.810900,0.584800,0.021560 0.967500,0.103500,0.081970,0.892200,0.081130,0.444300 0.097770,-0.139500,0.097880,0.969400,-0.243900,0.029150 0.045080,-0.253900,-0.471400,-0.826200,0.562500,0.031600 -0.628800,-0.138300,0.294600,-0.032690,-0.973200,0.227700 0.339100,-0.171000,0.160700,-0.032840,0.910000,-0.413400 0.415600,0.144700,0.264500,0.000000,-0.966100,0.258300 -0.727500,-0.121200,0.284200,0.011830,0.982900,-0.183600 -0.596100,0.135500,0.127600,-0.000118,0.925800,-0.378100 0.470400,-0.168800,0.158800,-0.007688,0.888000,-0.459800 -0.098540,-0.088120,-0.020230,0.996500,-0.077840,0.030500 0.005637,-0.221000,0.157600,0.073960,-0.982900,0.168600 -0.163600,-0.331000,0.384200,0.000000,-0.976300,0.216600 0.268000,-0.160800,0.188400,-0.032160,0.942000,-0.334200 -0.040050,0.068740,0.463900,-0.987500,-0.156800,0.017700 0.164100,-0.140800,0.262000,-0.023210,0.974000,-0.225300 0.103900,-0.095260,0.130300,0.996700,-0.075420,0.030100 -0.102600,-0.187700,0.179500,0.901700,-0.417900,0.110900 -0.021880,0.051860,0.445100,-0.054160,-0.967900,0.245200 -0.328100,-0.160600,0.246100,-0.031920,-0.964400,0.262700 0.191400,-0.262500,-0.767100,0.000000,-0.979000,0.203700 0.672700,-0.161800,0.162500,-0.017460,0.895800,-0.444200 0.077820,0.054450,0.314700,0.857600,0.511200,-0.057460 0.126300,-0.187200,0.168900,0.022930,-0.948200,0.316800 0.153100,0.156700,0.188100,0.010070,0.946100,-0.323800 -0.010580,-0.262800,-0.813800,-0.397100,0.917400,-0.024820 0.142500,-0.171200,0.171600,-0.032910,0.920100,-0.390400 -0.056800,-0.243400,-0.349200,0.860100,0.510100,0.001838 0.136800,-0.135600,0.294800,-0.008019,0.987100,-0.160100 0.102300,-0.101100,0.070140,-0.997700,0.067450,0.005176 -0.295400,0.077190,-0.013490,0.026170,0.668900,-0.742900 0.339100,0.082430,0.005270,-0.010360,0.959400,-0.281800 -0.639800,-0.197100,0.103200,-0.031150,-0.971200,0.236400 0.443000,-0.130600,0.278500,-0.008009,0.975100,-0.221700 -0.664600,-0.034730,0.207600,-0.579800,-0.128500,0.804600 -0.858600,0.073080,-0.006550,0.000000,-0.999700,0.023270 -0.481200,0.110000,0.071390,0.000030,0.893400,-0.449300 -0.787300,-0.159900,0.196200,-0.031660,-0.955000,0.294900 -0.432000,-0.142400,0.304800,-0.031860,-0.972700,0.229800 0.240500,-0.146200,0.304400,0.023270,-0.973400,0.227900 0.097380,-0.076060,0.359900,-0.968600,0.238400,-0.070220 0.246100,0.125100,0.104800,-0.000412,0.913600,-0.406500 0.525100,-0.178600,0.135800,-0.042290,0.885900,-0.461900 0.048650,0.084110,0.355400,0.098870,0.987100,-0.126000 -0.700100,-0.128400,0.254700,0.047760,0.975900,-0.213000 0.246100,0.167800,0.236400,-0.027340,0.985000,-0.170100 0.051720,-0.250900,-0.307200,-0.729200,0.684300,0.010320 -0.080090,-0.013970,0.541800,0.904500,0.223100,-0.363400 0.957000,0.077430,0.031150,0.000002,-0.979400,0.201900 0.058560,-0.177600,-0.476500,0.985400,0.125300,-0.115500 -0.229700,0.081250,0.001321,-0.005057,0.964000,-0.266000 0.016410,-0.316600,0.339400,-0.010080,0.921100,-0.389100 -0.836600,-0.147300,0.233400,-0.032060,-0.962400,0.269600 -0.246100,-0.254700,-0.766500,-0.014580,0.982700,-0.184500 0.154200,-0.268200,0.365300,0.858900,0.417100,-0.297000 0.289800,-0.169600,0.211700,0.022390,-0.957800,0.286500 0.045070,-0.256200,-0.274400,-0.630600,0.775000,-0.042510 0.091720,-0.134200,0.185100,-0.951000,0.303000,-0.062270 -0.207200,-0.335800,0.405000,-0.968200,-0.042670,0.246700 0.180500,-0.264500,-0.809200,-0.031870,0.977300,-0.209600 0.503100,0.100400,0.053480,0.010150,0.915500,-0.402300 0.010940,-0.308300,0.363100,0.000006,0.961500,-0.274800 -0.738300,0.093360,0.038450,-0.020340,0.924400,-0.380800 0.853200,-0.151900,0.174900,-0.025310,0.919400,-0.392500 0.076570,0.147200,0.159200,0.000174,0.917700,-0.397400 0.044430,0.041430,0.370800,0.999300,0.009589,0.036930 -0.596000,-0.139000,0.296100,-0.033440,-0.972900,0.228900 0.388500,0.168200,0.235700,-0.034400,0.988900,-0.144600 0.404700,0.137800,0.238700,0.000000,-0.966200,0.257900 -0.003080,-0.383500,-0.694600,-0.553000,0.760100,-0.341200 -0.547000,-0.154000,0.187600,0.016220,0.939800,-0.341300 -0.842200,0.100500,0.053400,-0.020250,0.907000,-0.420600 0.251500,0.090300,0.072270,0.000144,-0.932500,0.361100 -0.803900,0.118700,0.089710,0.020330,0.899000,-0.437400 0.579700,0.084900,0.014220,-0.010270,0.954100,-0.299400 0.057620,-0.245900,-0.235800,0.724600,-0.687200,0.052290 -0.256600,0.140200,0.139400,0.000000,0.932400,-0.361400 0.328200,-0.180000,0.142600,-0.027810,0.902600,-0.429600 0.749200,0.092080,0.034540,-0.000015,0.925400,-0.378900 0.039740,-0.021330,-0.144100,-0.464200,-0.836900,0.290000 -0.333600,0.097440,0.091620,0.000000,-0.945100,0.326800 -0.639800,0.123000,0.182400,0.000000,-0.966100,0.258200 0.005478,0.154500,0.180100,0.025710,0.949300,-0.313400 0.847700,0.141500,0.143700,0.015930,0.934400,-0.355800 -0.164100,0.122300,0.096990,-0.005076,0.897300,-0.441500 0.101300,-0.035330,0.404000,-0.994400,0.069840,-0.079070 0.590600,0.132400,0.120200,0.000114,0.937200,-0.348700 -0.852700,0.127500,0.108600,0.000000,0.899200,-0.437500 0.070740,-0.202700,-0.361600,-0.987200,0.153700,0.041720 0.054690,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.562800,0.133300,0.221500,0.000000,-0.966700,0.255800 -0.508500,-0.185900,0.145900,-0.031200,-0.942900,0.331600 0.026400,-0.070220,-0.317400,0.351200,0.885900,-0.302900 0.120300,-0.247400,-0.695600,0.000000,-0.979100,0.203300 0.831300,0.084370,0.056500,0.000000,-0.946600,0.322400 -0.202400,-0.374700,0.315400,-0.984600,0.104000,0.140600 -0.109400,-0.221700,-0.609400,-0.005062,0.981300,-0.192300 -0.082020,0.150400,0.167400,0.000000,0.945400,-0.325800 0.535900,-0.183800,0.149500,0.023050,-0.942900,0.332300 -0.086240,-0.034800,0.512900,-0.955600,-0.233200,0.180300 0.492300,-0.131800,0.267900,-0.003000,0.974500,-0.224300 0.306300,0.119300,0.168300,0.000000,-0.967400,0.253400 0.787500,0.119300,0.168300,0.000000,-0.967400,0.253300 -0.097380,-0.117200,-0.093810,-0.993600,0.067350,-0.090730 0.935600,0.079330,0.039540,0.000000,-0.970200,0.242400 -0.075290,-0.102700,0.436500,0.806200,0.523900,-0.275000 -0.448600,-0.178500,0.141000,0.030890,0.885600,-0.463400 0.176800,-0.286700,0.354500,-1.000000,0.000000,0.000000 0.033030,0.057460,0.096390,-0.060880,0.985600,-0.158000 -0.497600,-0.141600,0.299100,-0.032090,-0.973400,0.226900 0.213300,-0.274800,-0.862700,0.000060,0.977600,-0.210700 0.031470,-0.080780,0.545400,-0.363000,0.765900,-0.530600 -0.448000,0.168400,0.235600,-0.000012,0.987700,-0.156400 -0.054680,-0.265200,-0.779900,0.000000,-0.977800,0.209500 -0.645300,0.132400,0.120200,-0.000054,0.922900,-0.385000 0.202400,-0.293700,-0.915100,0.001064,-0.978500,0.206100 0.491700,-0.156000,0.242000,0.022820,-0.963100,0.268200 -0.016360,-0.232100,-0.741000,-0.821900,0.481900,-0.303700 -0.623600,-0.121100,0.305500,0.022150,0.997400,-0.068700 0.776500,-0.142600,0.266500,0.022350,-0.968500,0.248000 0.082040,0.152500,0.294000,0.000000,-0.960800,0.277200 -0.069380,-0.001246,0.101100,-0.043910,-0.207400,-0.977300 -0.089770,-0.089270,-0.110600,0.968700,-0.215900,0.122600 -0.017470,-0.273600,-0.422000,0.319000,0.947800,-0.003718 -0.664700,0.082490,0.223700,-0.549900,-0.234700,0.801600 0.035330,-0.266200,-0.307200,0.472500,-0.881200,0.015870 -0.096740,-0.149700,-0.055600,-0.986500,-0.163200,-0.009901 0.618400,0.138800,0.135700,-0.000002,0.943900,-0.330300 -0.056760,-0.245000,-0.218000,-0.722500,-0.690400,0.036220 -0.069690,-0.226700,-0.172300,-0.847400,-0.530900,0.011540 0.235200,-0.167600,0.174000,-0.008723,0.915800,-0.401600 -0.004412,0.131800,0.489700,-0.001875,0.686100,-0.727500 0.574200,0.083070,0.052530,-0.000050,-0.953100,0.302600 0.848100,-0.145800,0.190300,-0.027720,0.933300,-0.358100 0.213500,-0.188300,0.159200,0.024210,-0.946500,0.321900 -0.665900,-0.007722,0.206600,-0.990000,-0.007775,0.140800 0.158600,-0.162500,0.191100,-0.023160,0.940800,-0.338200 -0.018710,0.083020,0.332200,-0.312900,-0.206100,-0.927200 -0.705500,0.077840,-0.017060,0.000367,0.984700,-0.174500 0.019330,0.092740,0.383700,0.619300,0.557800,0.552500 0.002783,-0.258900,-0.119100,-0.039070,0.995200,-0.090100 -0.634400,-0.168600,0.147900,0.028430,0.892800,-0.449500 -0.779000,-0.172400,0.158700,-0.032250,-0.946200,0.321900 0.156700,-0.285100,0.361400,-0.928400,-0.216000,-0.302300 -0.094930,-0.024320,0.458600,0.992200,0.067780,-0.104600 0.032830,0.120300,0.093440,0.034590,0.904800,-0.424500 -0.003240,-0.210100,-0.777500,-1.000000,0.000000,0.000000 0.003237,-0.122600,-0.810300,0.999800,0.015230,-0.015230 -0.661700,0.088770,0.068340,-0.000136,-0.933100,0.359700 -0.618000,0.124000,0.100700,0.010140,0.908000,-0.418900 0.727400,0.078680,-0.011820,-0.000001,0.990100,-0.140400 0.749400,-0.133200,0.237500,-0.036520,0.972900,-0.228500 -0.090650,-0.166000,-0.154000,-0.985200,-0.164700,-0.047190 0.035250,-0.249200,-0.083330,0.396900,-0.911600,0.107300 0.054760,0.059620,0.299600,0.199100,-0.957700,0.207700 0.022280,0.039010,0.391500,0.389500,-0.898500,0.202500 0.065140,-0.008009,0.601500,0.850000,-0.286900,0.441800 -0.169500,-0.314400,0.411300,0.000000,0.064240,0.997900 -0.459200,-0.143800,0.294900,-0.031790,-0.973100,0.228200 -0.120200,-0.138900,0.294900,0.041070,0.988100,-0.148200 -0.070960,-0.114100,-0.291400,0.924900,-0.333200,0.183000 -0.037360,0.024950,0.075200,-0.901300,-0.021700,0.432700 -0.410100,0.104400,0.113000,0.000000,-0.956100,0.293000 -0.061630,0.065250,0.272000,0.659100,-0.746300,0.092720 0.068350,-0.223900,-0.082660,0.778800,-0.625600,0.045560 0.650900,-0.192700,0.106500,-0.021250,0.826600,-0.562400 0.421200,-0.134200,0.265600,0.017840,0.974500,-0.223800 0.793100,-0.192600,0.101500,-0.014680,0.738200,-0.674400 -0.864000,-0.154200,0.206500,-0.032090,-0.957900,0.285400 0.300700,-0.145100,0.302900,0.023290,-0.973200,0.228600 0.101000,-0.111900,0.020880,-0.996300,0.083460,0.022460 0.076180,-0.080930,-0.191300,-0.914600,-0.373300,0.155100 0.031490,-0.254100,-0.137900,-0.375400,0.924100,-0.071210 0.183800,-0.310200,0.443400,0.265900,0.193100,0.944500 0.918800,0.096760,0.046080,-0.000039,0.920800,-0.390000 0.061410,-0.200000,0.140700,0.669200,-0.729800,0.139600 -0.191600,-0.281200,0.381800,0.999200,-0.027940,-0.028850 -0.185500,-0.258800,-0.749500,0.000000,-0.978600,0.205900 -0.016370,0.026880,0.312800,-0.423200,0.889700,-0.171400 -0.053110,0.079260,0.403800,0.549600,-0.835400,-0.008322 0.229800,-0.198500,0.129400,0.022600,-0.938800,0.343700 -0.903500,0.139600,0.203800,-0.892400,0.092490,0.441700 0.180500,0.159400,0.196600,0.000011,0.951900,-0.306500 0.738300,0.159600,0.196600,-0.014940,0.952000,-0.305700 -0.913100,-0.148300,0.170800,0.031380,0.921300,-0.387700 -0.147600,0.081570,0.047670,0.000000,-0.958400,0.285500 0.596100,-0.181300,0.127900,-0.037760,0.870900,-0.490000 -0.065110,0.067920,0.469600,0.711400,-0.700800,-0.053920 -0.585200,-0.150200,0.194800,0.027170,0.942200,-0.334000 -0.420900,0.135400,0.127900,0.010150,0.923100,-0.384500 0.086960,0.014830,0.186700,0.926400,0.370200,-0.069090 0.705800,-0.148600,0.192600,-0.043760,0.941600,-0.333700 -0.055290,-0.029510,0.622300,-0.680100,0.360600,-0.638300 -0.104700,-0.055250,0.339600,-0.994000,-0.101700,0.040530 0.136700,-0.257600,-0.776700,0.000000,0.978500,-0.206200 0.185900,-0.230100,-0.651000,0.000000,0.978400,-0.206800 0.257000,0.154000,0.180200,-0.015000,0.951100,-0.308500 -0.787000,0.168400,0.235600,-0.010150,0.988500,-0.150600 -0.033820,-0.137500,-0.483500,0.611300,-0.734000,0.295900 0.054010,-0.019020,-0.109800,-0.617700,-0.743500,0.256400 -0.306200,-0.177300,0.192000,-0.032910,-0.953200,0.300600 0.257000,0.094870,0.042340,-0.035480,0.918000,-0.394900 0.010110,0.111600,0.476400,0.140000,0.115100,0.983400 -0.071060,-0.217300,-0.325800,-0.955800,-0.290200,-0.047570 -0.722000,-0.145300,0.195000,0.047020,0.937700,-0.344300 0.028720,0.089810,0.256700,-0.370400,0.889200,-0.268400 -0.081920,0.040060,0.469300,0.923800,-0.378800,-0.056210 -0.075290,-0.182700,0.155500,-0.806800,-0.584900,0.083530 -0.058300,0.074250,0.455800,0.628700,-0.777300,-0.023840 0.585300,-0.154400,0.239700,0.024150,-0.963900,0.265200 -0.172700,-0.177600,0.644000,0.682000,-0.664100,-0.306300 -0.047580,0.062280,0.152700,-0.581800,0.793100,-0.180500 0.847700,0.100700,0.053310,-0.005100,0.889500,-0.456900 0.279500,-0.160100,0.245700,0.022730,-0.964700,0.262400 0.853100,-0.157700,0.205900,0.023190,-0.956800,0.289800 -0.028650,0.077570,0.297000,-0.783100,-0.086410,0.615900 -0.814800,0.095330,0.042140,0.020340,0.907600,-0.419400 0.010140,-0.277900,-0.542400,0.426500,-0.903400,-0.044880 0.136300,-0.246400,0.265600,0.926900,0.369200,-0.067720 -0.191500,-0.197800,0.122500,0.025420,0.868300,-0.495400 -0.061330,-0.237300,-0.267100,0.846400,0.532600,0.001621 0.102300,-0.046030,0.283500,0.999100,0.023260,-0.034490 0.410100,-0.156600,0.190200,-0.009557,0.931000,-0.365000 0.464900,0.166800,0.228700,-0.004156,0.991500,-0.129900 -0.585200,0.104400,0.060560,-0.015290,0.896300,-0.443100 -0.189000,-0.396800,0.343200,0.996700,0.078150,0.021630 -0.042530,-0.237200,-0.034690,0.487400,0.867900,-0.096250 -0.229600,-0.197200,0.140600,-0.031760,-0.942300,0.333400 -0.261600,0.073250,-0.001561,-0.000036,-0.998800,0.049790 0.175000,-0.257600,0.371400,-0.869000,0.494400,0.019340 -0.129900,0.047670,0.193000,-0.793200,-0.496100,0.353100 0.005475,0.037480,0.406900,0.006661,-0.473200,0.880900 0.815300,0.127500,0.108600,-0.020400,0.905200,-0.424500 -0.096210,-0.174000,0.149800,-0.572700,-0.617200,-0.539600 -0.252700,-0.244400,-0.703300,-0.947700,0.146700,0.283500 -0.061880,-0.239700,-0.234300,-0.800700,-0.598700,0.020500 -0.015960,-0.070980,0.571700,-0.162100,-0.826900,0.538400 0.072360,-0.215500,-0.268400,-0.941200,0.335900,0.037430 0.053310,-0.246500,-0.176200,0.634300,-0.770900,0.057890 0.070440,-0.218400,-0.296300,-0.937400,0.347100,0.026950 0.024790,-0.246600,-0.735500,0.486900,0.800700,-0.348900 0.027780,-0.222400,-0.576700,0.000092,-0.978500,0.206300 -0.754700,0.095330,0.042140,0.000000,0.913300,-0.407400 0.091410,-0.035570,0.010180,0.944800,0.312000,-0.099810 -0.017250,0.048730,0.640200,-0.293300,0.565600,0.770700 0.073230,-0.149500,-0.335000,-0.963800,-0.189600,0.187500 0.951600,-0.179600,0.115400,-0.022950,0.877900,-0.478200 -0.018900,0.051470,0.113600,-0.718700,0.256200,0.646500 -0.678000,-0.145400,0.259400,-0.033290,-0.966000,0.256300 0.229700,0.077430,0.031150,0.000000,-0.979400,0.201900 0.099970,0.049560,0.363500,0.799000,-0.566600,0.201200 -0.089670,-0.150200,-0.176100,0.994500,0.089330,0.055000 -0.003112,-0.253400,-0.832100,-0.990500,-0.137500,-0.007105 0.448800,-0.167800,0.205000,0.023260,-0.955900,0.292800 0.799000,-0.166600,0.181500,0.022160,-0.951100,0.308200 0.102000,-0.051880,0.343600,-0.994900,0.100200,-0.010810 0.003237,-0.128100,-0.684500,0.999500,-0.000005,0.030490 0.317100,-0.181000,0.173500,0.023240,-0.950300,0.310400 0.047400,0.039970,0.568000,0.000003,-0.206300,-0.978500 -0.727200,-0.157300,0.211200,-0.031520,-0.957300,0.287400 0.328100,0.152600,0.175400,-0.040770,0.950400,-0.308400 -0.333500,-0.153600,0.272000,-0.031980,-0.968800,0.245900 -0.196400,0.138600,0.135700,0.010230,0.920000,-0.391800 0.853600,0.167900,0.235700,-0.036100,0.993600,-0.107100 -0.749100,-0.147100,0.244300,-0.032290,-0.964600,0.261700 -0.514000,-0.169400,0.195100,-0.031950,-0.954400,0.296800 0.546900,0.113600,0.078660,-0.010130,0.901200,-0.433400 0.081280,-0.097720,-0.196500,-0.948500,-0.287700,0.132900 -0.732900,-0.155900,0.167700,0.031420,0.915800,-0.400300 0.207700,-0.168500,0.222300,0.023260,-0.959200,0.281800 0.175000,0.136500,0.131800,0.025020,0.926200,-0.376200 -0.497500,-0.163300,0.216900,-0.032260,-0.958400,0.283500 0.656300,0.133500,0.124100,0.009802,0.929300,-0.369200 -0.771100,0.120600,0.093320,-0.015340,0.907000,-0.420900 0.344600,-0.128800,0.305400,-0.012930,0.996200,-0.086170 0.907800,0.109800,0.071460,-0.010160,0.887200,-0.461400 -0.875100,-0.155900,0.156800,0.036410,0.899600,-0.435100 0.530500,0.124000,0.100700,0.000005,0.910900,-0.412700 -0.069000,-0.224800,-0.105000,-0.800200,-0.596500,0.062520 -0.021870,0.125700,0.104400,0.000060,0.913200,-0.407500 -0.079740,-0.200400,-0.148600,0.933100,0.359700,0.006201 0.361000,-0.179400,0.142400,-0.017380,0.880600,-0.473600 0.078820,-0.208700,-0.159500,0.905900,-0.423500,-0.000142 -0.552300,0.104400,0.060560,-0.000026,0.896400,-0.443100 -0.568700,0.101700,0.104200,0.000000,-0.951500,0.307600 -0.519500,0.075530,0.020700,0.000000,-0.988000,0.154200 -0.787500,0.116200,0.156700,0.000000,-0.968900,0.247400 0.289900,0.074760,0.015340,0.000000,-0.991200,0.132200 -0.213300,0.089140,0.026890,0.000000,0.941400,-0.337200 -0.185900,0.101700,0.104200,-0.000074,-0.951500,0.307800 -0.366400,0.172700,0.288900,0.000000,0.999800,0.021750 -0.437500,0.077430,0.031150,0.000000,-0.979400,0.201900 -0.355500,0.116200,0.156700,0.000000,-0.968900,0.247400 -0.098420,-0.284400,-0.871000,0.000000,-0.979100,0.203600 0.120300,-0.325600,0.406300,-0.000751,-0.912600,0.408800 -0.054680,0.117200,0.160600,0.000000,-0.967000,0.254700 0.182000,0.074200,0.010740,0.000000,-0.994200,0.107900 -0.114400,-0.331800,0.380300,0.000000,-0.976300,0.216600 0.869500,0.093360,0.038450,-0.015210,0.911200,-0.411700 0.574200,0.113700,0.146500,-0.000045,-0.971800,0.235700 -0.003240,-0.210100,-0.859500,-1.000000,0.000000,0.000000 0.639900,0.165900,0.223500,0.014830,0.983900,-0.178300 -0.503100,0.117100,0.085960,-0.000035,0.902300,-0.431200 -0.003240,-0.095250,-0.788400,-1.000000,0.000000,0.000000 0.476200,0.133300,0.221500,0.000000,-0.966700,0.255800 0.439000,0.074200,0.010740,0.000000,-0.994200,0.107900 0.273400,0.117200,0.160600,0.000000,-0.967000,0.254700 0.003237,-0.128100,-0.733700,1.000000,0.000000,0.000000 0.535900,0.098840,0.049580,0.005184,0.900400,-0.435100 -0.893700,-0.116400,0.281000,-0.070970,0.987100,-0.143700 -0.085080,0.037330,0.436700,0.921500,-0.387600,-0.026730 -0.142200,0.147500,0.158900,0.000000,0.942400,-0.334300 0.659000,-0.112000,0.167400,-0.991700,0.018960,0.126800 -0.670400,0.073560,0.003419,0.000000,-0.997800,0.066760 0.112700,0.123100,0.594300,-0.406800,0.591000,0.696600 0.672700,0.143000,0.147600,-0.004206,0.947800,-0.318700 -0.787500,0.137100,0.131500,0.000000,0.927800,-0.373000 -0.048620,-0.084760,0.524400,0.512000,0.761800,-0.396900 -0.040340,-0.083010,-0.324500,0.566700,-0.779200,0.267900 -0.085390,-0.011660,0.058780,0.921500,-0.380600,0.077230 0.836700,0.109700,0.071550,0.015230,0.884100,-0.467100 -0.513600,0.141700,0.143200,-0.010240,0.937300,-0.348400 -0.025290,0.080750,0.412100,-0.605300,-0.349100,-0.715400 0.060650,0.073590,0.307600,0.323700,0.935100,-0.144100 -0.273400,0.081570,0.047670,0.000000,-0.958400,0.285500 0.015060,-0.144100,-0.530600,0.372800,0.856400,-0.357300 0.754700,0.080140,-0.002632,0.015000,0.976400,-0.215600 -0.300700,-0.168300,0.222200,-0.031800,-0.958400,0.283700 -0.311400,-0.198600,0.129100,-0.031100,-0.938900,0.342900 0.125800,-0.263400,-0.804000,0.000000,0.978500,-0.206200 0.339200,-0.131700,0.289600,-0.007843,0.982300,-0.187100 0.557800,-0.171000,0.186000,0.022960,-0.952200,0.304500 -0.350000,-0.189800,0.150000,-0.031450,-0.943000,0.331300 -0.026150,-0.267400,-0.252700,-0.336600,-0.939900,0.056630 -0.568600,-0.162600,0.211200,-0.031800,-0.956900,0.288700 0.590200,-0.140600,0.292900,0.023550,-0.972000,0.233700 -0.054700,-0.232400,-0.658600,-0.011020,0.983900,-0.178600 -0.754700,-0.125800,0.256700,0.031400,0.968300,-0.247900 -0.005458,0.143600,0.260500,0.000000,-0.966200,0.257700 0.721900,0.083100,0.052600,0.000000,-0.953100,0.302600 0.053410,-0.062850,-0.026380,-0.772900,0.127500,0.621600 -0.792800,-0.190500,0.107100,-0.031510,-0.936400,0.349600 -0.257000,-0.144200,0.316100,-0.024990,-0.729100,0.684000 0.557900,-0.182200,0.128400,-0.027170,0.868400,-0.495100 0.164000,-0.340300,0.303800,-0.137400,0.745000,-0.652700 -0.913300,0.090400,0.072520,0.000001,-0.932400,0.361600 -0.015460,0.070280,0.257500,0.674000,0.679900,0.289000 -0.088330,0.024310,0.261400,0.929000,-0.360800,0.082810 -0.486600,-0.151500,0.260500,-0.031990,-0.966000,0.256500 0.181000,-0.203400,0.119500,0.022520,-0.936700,0.349500 0.251600,0.149400,0.282300,0.000000,-0.966200,0.257800 -0.027170,-0.170600,-0.582200,-0.576300,0.748300,-0.328500 0.831300,-0.131800,0.235300,-0.037990,0.957300,-0.286600 -0.087400,-0.104200,0.372400,0.929400,0.355300,-0.100100 0.076160,-0.138000,-0.312900,0.975100,0.198400,-0.099590 -0.492200,0.170500,0.250900,0.000000,0.993600,-0.113100 0.040250,0.084360,0.447500,-0.989300,0.142600,-0.029920 0.623400,-0.175300,0.168000,0.023200,-0.949100,0.314200 -0.437500,0.093660,0.038300,0.000000,0.919500,-0.393100 -0.016610,0.002077,-0.099750,0.207500,-0.934000,0.291000 -0.240500,-0.204200,0.120400,-0.031700,-0.936300,0.349700 -0.896800,-0.174800,0.140300,-0.030980,-0.942500,0.332800 -0.450900,-0.183400,0.158700,-0.032460,-0.945800,0.323200 0.068580,0.199700,0.270800,0.950000,0.063780,0.305700 -0.008280,0.087360,0.480000,-0.654100,0.239200,0.717600 0.025260,-0.018990,-0.156200,-0.311000,-0.895200,0.319100 0.131300,-0.245100,-0.722300,-0.005120,0.978100,-0.208100 -0.377500,-0.186200,0.132400,0.041070,0.870800,-0.489900 -0.087970,-0.121800,-0.200200,-0.981600,0.161700,-0.102000 -0.153100,0.170500,0.250900,-0.000019,0.995200,-0.097750 0.240600,0.118600,0.089780,0.004875,0.932000,-0.362300 0.132200,0.154000,0.579900,-0.397700,0.572500,0.717000 -0.634400,0.081570,0.047670,-0.000012,-0.958400,0.285500 -0.814600,0.172400,0.288200,-0.070570,0.960100,0.270600 -0.426600,0.081240,0.001311,0.005165,0.962100,-0.272600 -0.185900,-0.160800,0.262900,-0.032660,-0.967000,0.252600 -0.076310,-0.108500,-0.260300,-0.941000,0.302500,-0.151400 -0.164100,-0.230000,-0.645500,-0.000025,0.978500,-0.206200 0.088130,0.035200,0.423900,-0.927900,-0.372300,-0.017990 -0.087840,0.025210,0.212600,-0.571700,0.802200,-0.172300 -0.147700,-0.252000,-0.754800,-0.005968,0.980200,-0.198100 0.125800,-0.324300,0.325400,0.000000,0.830000,-0.557800 -0.069820,-0.028740,0.566300,-0.890700,-0.317700,0.325200 0.147700,-0.224500,-0.586600,0.000000,-0.979100,0.203600 0.306400,-0.193700,0.137300,0.024240,-0.941200,0.336900 -0.109100,-0.298500,-0.937700,-0.007302,-0.983000,0.183600 -0.051500,0.043110,0.092440,-0.549900,0.818500,-0.166300 -0.213200,-0.154600,0.283600,-0.033020,-0.971000,0.236700 -0.095140,-0.154600,-0.082750,-0.982900,-0.178600,-0.044060 -0.072310,-0.047170,-0.137000,-0.844900,0.501900,-0.185200 0.928000,0.124500,0.157500,0.892100,0.081420,0.444500 -0.078920,-0.203600,-0.246900,-0.958700,-0.281900,-0.037070 0.885300,0.165800,0.223100,0.151200,0.979800,-0.131000 0.000195,-0.204900,0.241900,0.013680,-0.977300,0.211400 -0.169500,-0.197300,0.146100,-0.031700,-0.943000,0.331400 -0.000034,-0.021530,-0.176800,-0.000760,-0.953700,0.300700 -0.164100,-0.277400,-0.870200,0.000000,0.979300,-0.202500 -0.047050,-0.247500,-0.166600,0.555900,0.830000,-0.045860 0.498400,-0.200600,0.101900,-0.027580,0.523700,-0.851500 0.103600,-0.062500,0.124900,0.995400,0.095480,-0.000411 0.087790,0.112700,0.589500,-0.415700,0.606800,0.677400 0.195600,-0.303400,0.360000,0.966400,0.249100,-0.063770 -0.087490,-0.279600,-0.886000,-0.010360,0.978900,-0.204100 -0.103200,-0.062550,0.097530,-0.992500,0.115900,-0.040180 0.055500,0.079680,0.455900,0.616300,0.697900,0.364800 -0.711100,-0.184400,0.114200,0.035300,0.858000,-0.512400 0.049890,-0.244300,-0.142900,-0.605600,0.791700,-0.080420 -0.068850,0.066380,0.370900,0.722200,-0.691300,0.022500 0.011860,-0.155100,0.401200,-0.141000,0.940500,-0.309000 0.080550,0.046850,0.288900,0.993600,0.083530,0.075820 0.090940,-0.149900,-0.197700,0.997800,0.003676,-0.066480 0.016260,-0.098240,0.528500,0.160800,-0.862300,0.480200 0.083510,-0.002356,0.535300,-0.969500,0.054250,-0.238900 0.060780,-0.199000,-0.512600,0.599600,0.781100,-0.174200 0.051050,0.053030,0.145500,0.624600,0.767600,-0.143600 0.076000,-0.053540,-0.125600,-0.888500,-0.424600,0.173900 0.060170,-0.164200,-0.452900,0.948600,0.215900,-0.231400 0.005032,0.070050,0.147500,0.071970,0.978900,-0.191000 -0.032840,0.090130,0.382300,-0.188500,0.974200,-0.124000 -0.426600,-0.129000,0.294500,0.031610,0.989000,-0.144300 -0.011350,-0.262200,-0.170200,0.153400,0.984700,-0.082860 0.026000,-0.189000,0.278200,-0.318800,0.915100,-0.247000 0.093400,-0.066800,0.425600,-0.955800,0.258300,-0.140300 -0.382700,-0.139300,0.316000,-0.008280,-0.607400,0.794400 0.022830,-0.166800,-0.580800,0.486700,0.815800,-0.312300 -0.080990,0.033460,0.513700,0.910200,-0.352600,-0.217400 -0.289700,-0.140000,0.261700,0.031720,0.981600,-0.188200 0.010160,-0.279800,-0.657200,0.305600,-0.952100,0.002609 -0.071400,-0.057080,-0.167200,-0.844000,0.500400,-0.192900 -0.037350,-0.134200,0.436700,0.378300,0.854200,-0.356700 -0.333600,0.074760,0.015340,0.000000,-0.990900,0.134700 0.101700,-0.062300,0.283400,0.995700,-0.092070,0.010600 0.088100,-0.040500,0.496200,0.961800,-0.188300,0.198500 0.170900,0.128100,0.305900,-0.756000,0.641900,-0.128200 0.176800,-0.303100,0.327200,-1.000000,0.000000,0.000000 -0.004861,0.101700,0.435100,-0.221900,0.087180,0.971200 0.005002,-0.044540,0.619400,0.075340,-0.747000,0.660600 -0.096000,-0.132800,0.184800,-0.955600,-0.288400,0.060140 -0.628800,-0.127200,0.269100,0.032900,0.977600,-0.207800 0.000056,-0.092870,-0.399100,-0.013790,0.946700,-0.321900 0.005498,-0.217800,-0.591100,0.060810,0.977400,-0.202500 0.189100,0.220300,0.555800,0.340900,-0.506400,-0.792100 -0.061410,-0.221300,-0.422100,0.970100,0.236700,0.053600 0.005329,-0.236200,0.064460,0.064980,-0.985000,0.160000 -0.847600,-0.129100,0.303200,-0.032040,-0.972900,0.229000 0.042320,0.068790,0.442000,0.999400,0.020250,0.029050 -0.188600,-0.301300,0.406100,0.753100,0.525500,0.395800 -0.016400,0.164000,0.213100,0.014930,0.971200,-0.238000 -0.002118,-0.175200,-0.900100,-0.825800,-0.082330,-0.557900 -0.010790,0.063290,0.184700,0.998300,-0.008484,-0.057740 -0.037730,-0.246500,-0.684900,-0.305300,-0.947000,0.100100 0.093120,-0.087480,0.395300,0.936700,-0.335000,0.101900 -0.579500,-0.138900,0.298700,-0.031160,-0.974000,0.224600 0.262700,-0.199400,0.112700,-0.028830,0.862400,-0.505400 -0.486800,-0.173700,0.147600,0.031120,0.893600,-0.447700 -0.370900,0.073250,-0.001572,0.000115,-0.998900,0.047840 -0.607000,-0.131500,0.314600,-0.021510,-0.399000,0.916700 -0.902300,0.151700,0.171300,0.000009,0.946700,-0.322100 0.136700,-0.218600,-0.596400,-0.015260,0.978400,-0.206100 -0.213300,0.082430,0.005268,-0.000038,0.957800,-0.287500 0.081240,0.050310,0.405600,-0.871600,-0.490200,-0.011170 0.129400,-0.209100,0.395200,-0.750600,-0.290800,0.593300 0.410200,-0.127700,0.302300,-0.034660,0.986200,-0.161600 -0.016930,-0.192200,-0.647600,0.507300,-0.800800,0.318500 -0.027330,-0.294800,-0.920300,0.000000,-0.978500,0.206200 -0.015950,-0.280700,-0.853400,0.000000,-0.978600,0.205900 0.064460,0.023630,0.033710,0.373400,0.838000,-0.398000 -0.024600,0.086750,0.243800,0.414000,0.895200,-0.165400 -0.191400,-0.330400,0.425600,0.998000,-0.006135,-0.062190 -0.113100,-0.201700,0.187600,-0.127500,-0.787900,-0.602400 0.017170,-0.243700,-0.006059,-0.175600,0.979700,-0.096170 -0.079080,-0.203100,-0.039350,-0.883800,-0.466400,0.035580 0.021920,0.056750,0.458600,0.110200,0.963300,-0.244800 0.021840,-0.252400,-0.071740,0.256700,-0.959200,0.118100 0.092970,0.018050,0.450600,-0.955800,-0.275400,-0.102900 0.086080,0.009653,0.519700,-0.969000,-0.156700,-0.190900 0.202300,-0.221400,-0.609400,0.018120,0.981300,-0.191700 -0.034000,-0.221300,-0.651000,-0.854100,0.465100,-0.232700 0.103900,-0.292900,-0.911100,0.000000,-0.977800,0.209600 0.156400,0.160100,0.582900,0.407000,-0.584500,-0.701900 -0.090200,-0.045240,-0.006703,0.950700,-0.293000,0.101300 0.038590,-0.258800,-0.515100,-0.780300,0.623700,0.046150 0.388200,-0.178900,0.141600,-0.039450,0.885200,-0.463500 0.727400,0.151500,0.290100,0.000000,-0.966700,0.255800 0.377400,0.151500,0.290100,0.000000,-0.966700,0.255800 0.046860,-0.047780,-0.218000,0.559500,0.788300,-0.256200 -0.164100,-0.290200,-0.898300,0.000000,-0.979000,0.203700 0.147600,0.103400,0.319400,-0.760500,0.633100,-0.144200 0.025540,-0.214500,0.160900,-0.279600,0.944400,-0.172800 -0.072250,-0.029410,-0.078160,0.830100,-0.525000,0.187800 -0.058060,-0.194700,-0.508900,-0.865600,0.472700,-0.165400 0.058810,0.005316,0.616600,0.813600,-0.112800,0.570400 -0.601600,0.075530,0.020700,0.000000,-0.988000,0.154200 0.004360,-0.215300,-0.717200,-0.126400,-0.904100,0.408100 0.053670,0.052210,0.177400,-0.025860,-0.996100,0.083990 -0.098160,-0.095230,-0.034290,0.984800,-0.142400,0.099220 -0.025120,-0.113700,-0.442400,-0.406100,0.859600,-0.310100 -0.125800,-0.235600,-0.672800,-0.025390,0.972500,-0.231400 -0.078050,-0.156100,-0.323000,-0.982000,0.136000,-0.130800 0.792900,-0.182000,0.136700,0.023130,-0.941700,0.335500 -0.092470,-0.128200,-0.159500,-0.988700,0.103900,-0.107900 0.136700,-0.236700,-0.682200,0.000000,0.977600,-0.210600 0.131300,-0.186900,0.138800,-0.017490,0.875700,-0.482500 -0.067180,-0.084000,-0.242500,0.887900,-0.419200,0.189600 0.853700,-0.126800,0.251800,-0.002285,0.963000,-0.269500 0.289800,-0.185500,0.162200,0.023220,-0.946300,0.322500 0.003117,0.085740,0.581600,0.055510,0.983500,0.172400 -0.073620,-0.012210,0.572500,-0.936700,-0.260400,0.233900 -0.028100,-0.270300,-0.538900,-0.567400,-0.823400,-0.004538 -0.060410,-0.166700,-0.441900,0.959900,-0.227600,0.163800 -0.054770,-0.023760,0.580800,0.180900,-0.009173,-0.983500 -0.023190,-0.100400,-0.407200,-0.342700,0.888100,-0.306300 -0.164100,-0.254800,-0.730600,0.000000,-0.977800,0.209400 0.651100,0.135700,0.229100,-0.145500,-0.949400,0.278400 -0.024270,-0.248800,-0.048770,-0.281300,-0.953000,0.112700 -0.097400,-0.024400,0.124900,-0.963200,0.260200,-0.067050 -0.000123,-0.061740,-0.300700,0.008082,-0.948500,0.316700 -0.683500,-0.182800,0.118500,0.030950,0.859500,-0.510300 -0.021550,-0.129100,0.466500,-0.219500,-0.899700,0.377400 0.176800,-0.385100,0.354500,-0.998100,0.060600,0.011120 0.191400,-0.260600,-0.793700,-0.060640,0.977500,-0.202300 0.164100,-0.329100,0.392500,-0.063030,-0.979200,0.192800 -0.264900,-0.259600,-0.772300,-0.996000,-0.005661,0.088640 -0.061370,-0.128600,-0.383400,-0.906600,0.381100,-0.181400 -0.060190,-0.092880,-0.303800,-0.816000,0.536700,-0.214600 -0.076850,-0.194800,0.060350,-0.836300,-0.541900,0.082810 -0.661900,-0.138900,0.169100,0.987000,-0.033950,-0.157100 -0.369100,-0.155600,0.259400,-0.029750,-0.966500,0.255000 -0.065620,-0.248300,-0.699500,0.000060,-0.978500,0.206200 0.011740,-0.274800,-0.742300,-0.819100,0.563000,0.110200 0.432200,0.166600,0.228500,0.013050,0.982100,-0.187700 -0.066090,-0.025680,-0.092020,0.747600,-0.631200,0.206600 0.067200,0.106800,0.577000,-0.443000,0.299300,-0.845100 0.033470,-0.018590,-0.055130,0.458100,-0.190600,-0.868200 -0.102500,-0.111400,0.135800,-0.986900,-0.161200,0.010230 0.295800,-0.182500,0.139700,-0.003403,0.878500,-0.477700 0.083120,-0.144400,-0.252600,-0.993800,-0.086650,0.069990 -0.530500,0.081570,0.047670,0.000007,-0.958400,0.285500 -0.000031,-0.082660,0.556500,0.000908,-0.841500,0.540200 -0.049920,-0.214800,-0.521200,0.719400,-0.522200,0.458000 0.432500,0.133300,0.221500,0.000000,-0.966700,0.255800 -0.415200,0.129600,0.207400,0.000000,-0.966800,0.255600 -0.667200,0.141000,0.250400,0.000007,-0.967400,0.253200 -0.022210,0.058660,0.628900,-0.346500,0.686100,0.639700 0.055780,-0.093550,-0.314000,-0.785000,-0.577600,0.223900 -0.541500,-0.180100,0.131900,0.050990,0.868400,-0.493200 0.044050,-0.195800,0.218600,-0.495900,0.853700,-0.159100 0.016850,-0.145700,0.425000,-0.163900,0.911100,-0.378200 -0.041100,-0.152200,-0.508400,-0.735900,0.613100,-0.287100 -0.650800,-0.131100,0.313600,-0.019460,-0.519300,0.854400 0.176300,0.121700,0.277800,0.776200,-0.623300,0.094810 0.020180,-0.100500,-0.405200,-0.304400,-0.906300,0.293100 -0.240600,-0.262400,-0.804200,-0.005121,0.977400,-0.211300 -0.174200,0.120200,0.300900,-0.494800,-0.784800,-0.373200 -0.019240,-0.243200,0.008607,-0.216800,-0.967400,0.131100 0.125800,0.077430,0.031150,-0.002675,-0.980000,0.199200 -0.101800,-0.117000,0.004552,-0.996500,-0.081810,-0.014040 -0.084340,-0.068680,0.464400,0.928500,0.322700,-0.183700 -0.782100,-0.129100,0.239900,0.027360,0.969700,-0.242800 -0.003240,-0.084310,-0.695500,-1.000000,0.000000,0.000000 0.009591,-0.251900,-0.769100,-0.824200,0.542200,0.163500 0.017650,-0.224900,-0.713800,-0.908400,-0.368200,0.198200 -0.101300,-0.106500,0.103000,0.993200,0.116700,-0.005282 -0.235100,0.171500,0.261600,0.005065,0.994200,-0.107300 -0.743800,0.073010,-0.011900,0.000000,-1.000000,-0.000851 0.820300,0.073010,-0.011900,0.000000,-1.000000,-0.000843 0.658900,-0.111500,0.194600,-0.988100,-0.012260,0.153100 -0.097840,-0.040590,0.097440,0.968600,-0.239100,0.068730 -0.067540,-0.160500,-0.389600,0.959300,-0.199300,0.200200 -0.519500,0.139900,0.246500,0.000000,-0.966800,0.255700 0.209900,-0.208500,0.102900,0.021740,-0.833700,-0.551800 -0.003240,-0.188200,-0.783000,-1.000000,0.000000,0.000000 0.003237,-0.062430,-0.640800,1.000000,0.000006,0.000014 -0.572900,0.074240,0.011230,0.000000,-0.993600,0.112700 -0.075850,-0.177300,-0.356300,-0.992600,0.035380,-0.116100 -0.050700,-0.115200,-0.394000,-0.767300,0.593100,-0.243800 0.098440,-0.266200,-0.817000,0.000000,0.978500,-0.206200 0.114000,-0.185400,0.178100,0.391100,-0.908400,0.148000 0.021590,-0.047670,0.610700,0.306300,-0.777700,0.549000 0.043760,-0.247000,-0.536600,-0.922500,0.380900,0.063040 -0.410200,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.010930,-0.206000,-0.536600,-0.000115,0.978800,-0.205000 0.508600,0.171000,0.256200,-0.015090,0.996500,-0.082610 0.127400,0.077940,0.006188,-0.700500,-0.130500,-0.701600 0.004748,-0.073820,-0.049570,-0.081070,0.221400,0.971800 -0.102800,-0.078980,0.042850,-0.994700,0.095320,-0.039560 -0.328100,0.093660,0.038300,-0.005089,0.924600,-0.380900 0.002238,-0.177300,-0.690000,0.999900,0.010120,-0.005058 0.002041,-0.308600,-0.569700,0.999200,0.020230,-0.034210 -0.366400,-0.186700,0.157200,-0.031880,-0.946400,0.321400 0.032630,0.074880,0.181700,-0.027620,0.971700,-0.234800 0.235000,-0.157200,0.260400,0.023320,-0.966000,0.257500 -0.344500,0.169100,0.240200,-0.000051,0.984400,-0.175700 -0.426500,-0.164000,0.222500,-0.032170,-0.959900,0.278400 -0.853100,0.169100,0.240200,0.000008,0.989700,-0.143100 -0.032810,0.170300,0.250900,-0.020200,0.994500,-0.102900 0.027350,-0.092850,-0.028840,0.000080,-0.978600,0.205800 -0.170600,-0.273200,0.376100,-0.891200,0.453500,0.005595 -0.147600,-0.235700,-0.672800,0.000000,0.978500,-0.206200 0.061980,0.050260,0.190800,-0.700900,-0.701800,0.127500 -0.084730,-0.177000,-0.241500,-0.990600,-0.133400,-0.031100 0.046550,0.045740,0.116800,0.576000,-0.734700,0.358300 0.049150,-0.294800,-0.949900,0.052270,0.644500,-0.762800 -0.102700,-0.056800,0.370900,-0.989800,-0.130100,0.057750 0.055770,0.069390,0.265700,0.609500,0.782200,-0.129100 -0.098670,-0.053800,0.415600,-0.966200,-0.179200,0.185500 0.224500,-0.177900,0.151900,-0.021610,0.877900,-0.478400 0.689100,0.172200,0.272500,0.000000,0.998700,-0.050290 -0.842200,0.171000,0.256200,0.000006,0.995200,-0.097950 0.153100,-0.246400,-0.690500,0.000000,-0.979000,0.203700 0.213300,-0.268300,-0.794400,0.000000,-0.979000,0.203600 0.188400,-0.341300,0.425600,0.999900,-0.016560,0.000440 -0.546900,0.081080,0.001338,-0.000279,0.960300,-0.278800 0.000089,-0.209700,0.209300,-0.014410,0.977100,-0.212100 -0.101600,-0.117000,-0.017280,-0.998400,-0.050160,-0.026040 -0.018420,-0.091020,-0.385600,-0.252400,0.910000,-0.328900 0.662600,-0.024270,0.197400,0.991800,0.031440,-0.124100 -0.063920,-0.226000,-0.394600,-0.952900,-0.298700,-0.053090 -0.057560,-0.078870,-0.020990,-0.793000,-0.127100,-0.595800 -0.114300,-0.200100,0.211600,0.167100,0.733800,0.658500 0.010100,-0.157200,-0.569100,0.456200,0.855400,-0.245300 0.031540,-0.253600,-0.662600,0.958900,-0.280600,-0.041510 -0.612500,-0.123900,0.289100,0.031400,0.985600,-0.166100 0.094910,-0.012790,0.201300,-0.968100,-0.246900,0.042530 -0.044220,-0.236900,-0.019460,-0.495300,-0.863300,0.096900 0.005479,0.096860,0.494600,0.029700,-0.202500,-0.978800 0.032830,-0.276400,-0.870400,0.004445,0.983900,-0.178400 -0.021880,-0.283300,-0.902800,0.005195,0.980200,-0.197900 0.092970,-0.241600,-0.705500,0.000000,0.977700,-0.209900 0.102700,-0.007984,0.392800,0.988600,0.147500,0.031140 0.464800,0.096910,0.045990,-0.020360,0.909700,-0.414800 -0.393800,-0.129200,0.300000,0.031840,0.988400,-0.148400 0.032880,-0.269300,-0.465800,0.565200,-0.824900,-0.005925 0.377400,-0.127900,0.303400,-0.001192,0.988100,-0.153700 -0.820400,-0.157100,0.158400,0.035460,0.909600,-0.414000 -0.153100,0.080150,-0.002612,0.030410,0.976000,-0.215800 0.344900,-0.178500,0.179200,0.023070,-0.950600,0.309500 0.738300,0.085990,0.018290,-0.020500,0.954700,-0.297000 -0.076870,-0.205700,-0.024090,-0.852700,-0.521000,0.038790 -0.038270,0.172400,0.294200,0.000000,0.991700,0.128500 0.098290,-0.146000,-0.017300,0.984300,-0.176300,0.002782 0.067610,0.070880,0.445500,0.693300,0.718200,0.060450 0.041640,0.105000,0.500800,-0.489400,-0.633000,-0.599800 -0.054100,-0.188200,0.225300,0.577800,0.795700,-0.181400 0.055280,-0.176100,0.274500,0.614500,-0.762200,0.203300 0.081010,-0.171800,-0.307100,0.995900,-0.010550,-0.089450 -0.207800,0.172600,0.283500,0.000000,0.999800,-0.018290 -0.086460,-0.138200,0.321400,-0.626000,-0.008824,0.779800 -0.158600,-0.247400,-0.695600,0.000000,-0.979100,0.203300 -0.122900,0.049180,0.235700,-0.531000,-0.594300,0.604000 0.036610,-0.073860,-0.306500,-0.496200,-0.817200,0.293100 0.448900,0.079330,0.039540,0.000000,-0.970200,0.242400 -0.018580,-0.220800,0.147600,-0.212100,-0.963400,0.164000 0.909100,0.156200,0.186300,0.297000,0.915600,-0.271000 0.070420,-0.013490,-0.047760,0.761800,0.616700,-0.198400 -0.213200,-0.170900,0.223300,-0.032600,-0.959700,0.279100 0.033190,-0.269300,-0.443900,0.545500,-0.838100,-0.004617 0.036590,-0.104600,0.505700,0.353000,-0.816300,0.457200 -0.060780,-0.207500,-0.485100,-0.991000,-0.073890,-0.111600 -0.097860,-0.144400,-0.033770,-0.987500,-0.156300,-0.018020 -0.481200,0.121900,0.178500,0.000000,-0.966200,0.257700 0.046900,-0.039660,0.599000,0.582800,-0.687700,0.433000 -0.105100,-0.035500,0.278000,-0.996400,0.083260,-0.016620 -0.082020,-0.224800,-0.623500,0.010290,0.980300,-0.197200 -0.191600,-0.292100,0.360000,0.999900,0.014810,0.000238 0.005451,-0.091440,-0.039430,-0.010420,0.972400,0.233000 0.771200,-0.118700,0.305300,-0.000861,0.999500,-0.032060 -0.095240,-0.148900,0.080950,-0.958700,-0.282000,0.037530 0.246100,0.163300,0.213300,0.029700,0.958000,-0.285100 0.080560,0.030570,0.198000,0.862300,0.501300,-0.072010 -0.067800,-0.073420,0.004285,0.966800,0.172200,0.188600 0.043770,-0.090370,-0.345600,0.604800,0.746800,-0.276400 -0.109500,-0.147200,0.256800,0.042110,0.965800,-0.255900 -0.694700,-0.132200,0.240900,0.037300,0.956700,-0.288600 0.048590,0.085670,0.370500,0.116600,0.976900,-0.179000 0.037670,-0.189800,-0.585400,-0.907200,-0.370300,0.199600 0.361400,0.128600,0.203600,0.000000,-0.966800,0.255600 0.361400,0.108100,0.125200,0.000009,-0.962500,0.271300 -0.098410,-0.154500,0.299700,-0.032550,-0.973700,0.225400 -0.000003,-0.275100,-0.301700,-0.002682,-0.999500,0.032310 0.092370,-0.106200,-0.137600,0.986900,0.129500,-0.095870 0.667200,0.163700,0.213200,-0.014860,0.966700,-0.255400 -0.612000,0.105800,0.117500,0.000000,-0.957500,0.288300 0.443000,0.121900,0.178500,0.000000,-0.966200,0.257700 0.051730,-0.160200,-0.477200,-0.911400,-0.353800,0.210400 0.525000,0.172000,0.294200,-0.010130,0.994900,0.100300 0.076340,0.080580,0.611600,-0.391200,0.572400,0.720600 0.005471,0.090870,0.322500,0.031270,-0.089690,-0.995500 0.027360,0.149400,0.282300,0.000000,-0.966200,0.257800 0.083810,-0.007075,0.059010,-0.910300,-0.399300,0.108800 -0.054680,0.153700,0.298100,0.000000,-0.924800,0.380500 -0.529500,0.073250,-0.001572,0.000003,-0.998800,0.048100 0.880500,0.102900,0.108100,0.000000,-0.954400,0.298400 -0.098200,0.080250,0.042940,0.034560,-0.975800,0.216100 -0.089890,-0.128300,-0.186700,-0.994400,0.087880,-0.058780 0.043370,0.063300,0.392800,0.999500,-0.019290,0.026800 -0.798300,-0.177300,0.142700,-0.032650,-0.942200,0.333300 -0.053530,-0.037350,-0.031890,0.778300,0.117600,0.616800 0.076080,-0.083870,0.481800,0.814800,-0.477800,0.328400 -0.023240,-0.159200,-0.560500,-0.460000,0.825100,-0.328000 0.025460,-0.029650,-0.189000,-0.318100,-0.898600,0.302200 -0.203000,-0.287900,0.402200,-0.971000,0.205100,0.122600 -0.101100,-0.111900,0.048280,0.995300,0.096550,-0.009364 0.044120,-0.232700,-0.663300,0.115600,0.970100,-0.213500 0.093890,-0.141500,0.152100,0.951200,-0.300700,0.068990 0.173200,-0.318800,0.330300,-0.509600,0.720900,-0.469700 -0.036620,0.050170,0.436400,-0.147800,-0.982400,0.114500 0.077430,-0.212600,-0.143100,0.908600,-0.417600,-0.006509 -0.530500,0.102900,0.108100,0.000000,-0.954400,0.298400 -0.880000,0.127500,0.199700,0.000000,-0.966800,0.255700 0.853600,0.127500,0.199700,-0.000031,-0.966800,0.255700 0.077540,-0.153600,0.218300,-0.398500,0.880300,-0.257600 0.019130,0.089980,0.342600,0.917000,0.060770,0.394100 0.066470,-0.036940,0.566500,0.805400,-0.454400,0.380700 0.028380,-0.061120,0.576600,-0.357600,0.765300,-0.535200 -0.043790,-0.200700,0.198500,0.479300,0.855900,-0.194400 -0.885900,0.164000,0.213100,-0.006189,0.975600,-0.219500 0.021810,0.032720,0.359400,0.379000,-0.917100,0.124000 0.102300,-0.122400,0.048280,0.990400,-0.138400,0.004916 0.030990,-0.081310,0.022660,-0.000086,0.958600,0.284700 -0.970200,-0.170400,0.140700,-0.779300,-0.346200,0.522300 0.044770,-0.156200,0.372600,0.453000,-0.843700,0.288100 0.010150,0.079250,0.396200,0.156500,0.173900,0.972300 -0.410100,-0.175600,0.149300,0.031440,0.895700,-0.443600 -0.053620,-0.169000,-0.482500,0.936300,-0.304300,0.175400 0.116900,-0.210100,0.208000,0.971000,0.156800,-0.180600 0.186300,-0.387300,0.415700,0.499900,-0.640800,0.582600 -0.209300,-0.356900,0.381300,-0.968200,-0.211400,0.133900 0.063530,0.072410,0.422000,-0.659100,-0.752100,0.003707 -0.000108,-0.190400,0.298900,0.021130,-0.967100,0.253300 0.026220,-0.249200,-0.681300,-0.754700,-0.639400,0.147300 -0.071580,-0.096520,0.467400,-0.770300,-0.578500,0.268400 0.071610,0.008981,0.003959,0.607900,0.704300,-0.366500 -0.793000,0.077840,-0.017070,0.000002,0.988800,-0.149100 -0.836700,0.077840,-0.017070,-0.000003,0.988800,-0.149000 -0.104600,-0.086880,0.202300,-0.993900,-0.108300,0.020730 0.021910,-0.274700,-0.602500,0.525600,-0.850700,0.000192 -0.064630,-0.154500,0.323400,0.844700,0.486700,-0.222600 0.065630,0.130700,0.211800,0.000000,-0.966800,0.255400 0.043230,-0.244000,-0.574900,0.947800,-0.306100,-0.089740 0.063060,-0.150800,-0.416100,0.933500,0.317700,-0.166400 0.030280,0.068960,0.292400,0.779400,-0.463900,-0.421200 -0.187300,-0.176600,0.652400,0.399400,-0.197200,0.895300 0.437900,-0.149100,0.272900,0.023690,-0.969300,0.244700 0.019860,0.044800,0.128500,-0.652600,-0.702700,-0.283400 -0.040750,-0.255400,-0.185200,-0.494900,-0.866400,0.065880 -0.175000,0.083070,0.052530,0.000051,-0.953100,0.302600 0.093560,-0.005192,0.183400,0.953200,0.296600,-0.058060 0.096930,-0.002637,0.283500,0.978500,0.193900,-0.071010 0.076670,-0.003298,0.021810,-0.843000,-0.518100,0.144500 -0.115700,0.064800,0.339300,0.294000,-0.333000,-0.895900 -0.049310,-0.225000,-0.623500,-0.276200,0.947800,-0.159500 0.092770,-0.173800,0.154300,-0.498400,-0.864600,-0.062860 -0.557900,-0.172200,0.145800,0.015660,0.901300,-0.432900 -0.040320,0.001970,-0.052640,0.585200,0.104600,0.804100 -0.056220,-0.055200,0.611200,-0.448100,0.129800,-0.884500 0.015310,-0.275600,-0.624400,-0.430000,0.902800,0.012850 0.574300,0.162700,0.209000,-0.016090,0.971700,-0.235800 -0.092840,-0.151200,0.313900,-0.031200,-0.932400,0.360000 0.486700,0.170300,0.250900,0.010200,0.992900,-0.118200 0.082030,-0.158000,0.193400,-0.832900,0.526600,-0.170500 -0.043290,-0.269900,-0.840000,0.000000,0.978400,-0.206900 -0.002139,-0.295300,-0.560200,-0.301400,0.763200,-0.571500 -0.088260,-0.176200,-0.070190,0.957100,0.289700,0.001530 0.064620,-0.131900,-0.362000,-0.924000,-0.340200,0.174700 -0.027490,0.072010,0.392800,0.578200,-0.514200,-0.633500 -0.557800,0.084750,0.014290,0.010200,0.967200,-0.253900 -0.102200,-0.046470,0.360300,0.989300,0.115800,-0.088230 -0.072350,-0.087770,-0.225800,0.926500,-0.338400,0.164400 0.010950,-0.347700,0.308400,0.000000,-0.975700,0.219300 0.016870,-0.341900,0.334900,0.000000,-0.976300,0.216600 -0.525100,-0.176900,0.139400,0.020650,0.897300,-0.440900 -0.918700,0.144500,0.151300,0.014030,0.941800,-0.336000 0.514100,0.101700,0.104200,0.000000,-0.951500,0.307600 0.672800,-0.188300,0.113000,-0.056850,0.878900,-0.473700 -0.087440,-0.131800,0.273800,0.938500,0.343700,-0.032410 -0.080310,-0.044490,-0.078040,0.891200,-0.424100,0.161100 0.013310,0.009009,-0.086490,0.141400,0.929800,-0.339800 0.022720,-0.219400,-0.695600,0.863000,0.386500,-0.325400 -0.016360,-0.062440,0.585500,-0.184100,-0.873400,0.450800 0.031510,-0.050340,-0.252200,0.376200,0.881600,-0.285000 0.322700,0.076420,0.025960,0.000000,-0.983900,0.178800 -0.190700,0.127600,0.250700,-0.415200,-0.880000,0.230700 0.088050,0.029490,0.314100,-0.928700,-0.356900,0.100900 -0.175000,-0.253900,-0.758600,0.014920,0.981700,-0.189900 -0.138500,0.057370,0.186000,-0.735500,-0.045600,0.676000 -0.081080,-0.196600,-0.068340,0.916600,0.399600,-0.013630 0.008821,-0.271100,-0.241700,0.119500,-0.991200,0.057090 0.765900,-0.122400,0.281500,0.001052,0.981800,-0.190100 0.075580,-0.200300,-0.506000,0.132000,0.965300,0.225400 -0.064900,-0.077910,0.509900,0.731500,0.593500,-0.335700 0.454400,0.127500,0.199700,0.000000,-0.966800,0.255600 -0.016210,0.102300,0.471600,-0.248700,0.037710,0.967800 0.010680,0.058410,0.503100,0.208900,-0.477100,-0.853700 0.406200,0.074200,0.010740,0.000000,-0.994200,0.107900 0.295200,-0.151500,0.277000,0.023530,-0.968900,0.246200 0.175000,0.166100,0.303800,0.000000,0.308600,0.951200 0.185700,0.131700,0.262000,0.221200,-0.974500,0.037900 -0.018220,0.023580,0.267400,0.000000,-0.233500,-0.972400 -0.145900,-0.246600,0.276500,-0.563800,0.805700,0.181500 -0.103400,-0.270800,-0.843800,0.000000,0.969900,-0.243600 0.366500,-0.170300,0.160400,-0.022620,0.907200,-0.420000 -0.065710,0.040040,0.149000,0.651200,-0.757200,0.050680 -0.792800,-0.167500,0.171700,-0.032810,-0.948900,0.314000 -0.042170,-0.210300,-0.573300,0.797000,0.602300,0.044840 0.098880,-0.120500,0.415800,0.876300,0.248200,0.412800 0.088310,-0.175500,-0.186600,0.983400,-0.180900,-0.014010 0.046720,-0.037790,0.583600,-0.327600,0.040370,-0.944000 -0.158700,-0.179900,0.158700,0.025980,0.890800,-0.453700 0.475700,-0.187800,0.142300,0.023110,-0.942400,0.333600 -0.089540,-0.029030,0.037140,0.954000,-0.288600,0.081410 0.802600,0.166400,0.295800,0.275800,0.232300,0.932700 0.188900,-0.303100,0.431000,0.999900,0.001337,0.010280 -0.191400,-0.285400,-0.913300,0.031980,0.977300,-0.209600 0.046170,0.030660,0.321600,0.996800,-0.063130,0.049900 0.000029,0.051480,0.262900,0.066930,0.202000,0.977100 -0.066410,-0.063920,0.535000,-0.741300,-0.523800,0.419700 -0.103600,-0.035960,0.311200,0.999900,-0.010450,0.008522 0.164000,-0.154500,0.277800,0.024000,-0.970500,0.240000 -0.062200,-0.135300,0.399400,-0.631700,-0.734300,0.248600 -0.847400,0.163900,0.277900,-0.500700,0.132000,0.855500 0.072410,-0.166100,-0.356700,-0.980800,-0.139500,0.136000 0.071130,-0.207200,-0.375500,0.969800,-0.228000,-0.086240 0.054760,-0.246600,-0.331500,-0.799900,0.599400,0.030060 0.098450,-0.239500,-0.657900,0.000000,-0.978400,0.206500 0.027350,-0.270200,-0.803400,-0.000013,-0.978500,0.206400 -0.404800,-0.154700,0.198700,0.031820,0.939300,-0.341600 0.494900,-0.183300,0.153700,0.022280,-0.944500,0.327900 0.011240,-0.214800,0.190800,0.147600,-0.969500,0.195500 -0.043730,0.063360,0.563100,0.090270,-0.333200,-0.938500 -0.049130,-0.171300,-0.517200,-0.915500,0.340600,-0.214200 0.042440,0.057840,0.431000,0.999700,-0.008045,0.025120 0.054870,-0.200000,0.170800,0.604900,-0.781400,0.153500 0.311700,0.144700,0.264500,0.000000,-0.966100,0.258300 -0.082530,-0.026870,-0.015100,0.922600,-0.371900,0.102300 -0.036620,-0.088940,-0.355600,-0.503800,0.814800,-0.286800 0.103900,-0.346000,0.316100,0.000000,-0.976900,0.213600 0.081480,-0.161400,0.258600,0.155900,-0.956200,0.248000 0.016420,0.019880,0.268400,-0.000045,-0.362800,-0.931900 -0.087830,-0.106700,0.418400,0.336200,-0.641600,0.689400 0.131100,-0.149700,0.300600,0.023000,-0.973800,0.226300 -0.604400,-0.161000,0.165900,0.012720,0.908200,-0.418400 -0.032810,0.046320,0.264400,-0.023570,0.170400,0.985100 0.083580,-0.188900,-0.028240,-0.924100,0.381500,-0.021820 -0.043740,-0.082370,0.010750,-0.000029,0.978400,-0.206900 0.962500,0.073090,-0.017230,-0.000011,-0.999800,-0.021690 0.054960,-0.227900,-0.022450,-0.603500,0.788700,-0.116800 -0.902100,-0.184900,0.112200,-0.032180,-0.934700,0.354000 -0.661900,0.046790,0.207800,0.986000,0.013260,-0.166400 0.079170,-0.198500,-0.274200,0.969200,-0.238200,-0.063260 0.065680,-0.019070,0.591600,0.849900,-0.402900,0.339600 0.098160,-0.018850,0.287700,-0.989100,-0.132100,0.064620 -0.083030,-0.052570,-0.093270,-0.922100,0.360400,-0.140600 0.295400,-0.136500,0.267700,-0.017940,0.967200,-0.253600 0.051050,-0.120100,-0.396500,-0.794700,-0.560200,0.233800 -0.082030,-0.216300,-0.582000,-0.000174,0.982700,-0.185400 0.069740,-0.099300,-0.268900,-0.901600,-0.395500,0.175300 -0.097200,0.044630,0.355400,-0.760800,-0.648900,0.011000 0.043640,-0.143900,-0.482600,0.736000,0.600100,-0.313400 -0.031740,-0.232900,0.048590,-0.336100,-0.930000,0.148500 0.010960,0.052790,0.189500,-0.936400,-0.349500,-0.031100 0.082050,-0.295900,-0.925600,-0.000006,-0.979000,0.203700 -0.207800,-0.227500,-0.635400,0.002295,0.979200,-0.203100 0.010920,-0.165300,0.371400,-0.127500,0.937500,-0.323700 -0.081520,-0.025470,0.530400,0.904300,0.232600,-0.358000 0.918800,-0.141600,0.196900,-0.043990,0.937200,-0.345900 -0.153100,-0.219800,-0.564500,0.000000,-0.978600,0.206000 -0.014140,-0.083320,-0.359900,0.210500,-0.925700,0.314400 -0.109400,0.143600,0.260500,0.000000,-0.966200,0.257700 0.100900,0.117600,0.584100,0.423300,-0.605500,-0.673900 -0.026060,-0.093540,0.532600,-0.268300,-0.830900,0.487500 -0.151500,-0.231600,0.386900,-0.912200,0.401900,0.079720 -0.101500,-0.008262,0.403500,-0.983900,0.157000,0.085440 -0.038720,0.063340,0.309700,0.147300,-0.983300,0.107200 0.066220,-0.149100,0.340300,0.707600,-0.693300,0.136700 0.093540,-0.138800,-0.161500,0.996800,0.013820,-0.078360 0.278900,0.148000,0.277200,0.000000,-0.967400,0.253400 0.246100,-0.164300,0.233600,0.022520,-0.961900,0.272400 0.935400,-0.144200,0.188900,0.046230,0.930900,-0.362500 -0.038780,-0.049060,0.607400,0.096830,-0.984000,-0.149800 0.164100,-0.270800,-0.839100,0.000000,0.986300,-0.164800 0.147600,-0.203900,0.120300,0.023090,-0.936600,0.349500 -0.098370,-0.160900,0.273900,-0.032560,-0.968400,0.247400 0.656800,-0.144800,0.269200,0.022210,-0.968300,0.249000 -0.164100,0.156700,0.188100,-0.020380,0.952400,-0.304000 0.069000,0.096500,0.590000,-0.526800,0.615700,0.585900 -0.138500,-0.238400,0.265600,0.668700,0.301800,0.679600 -0.459300,-0.160700,0.230100,-0.032460,-0.961100,0.274200 0.831300,0.083760,0.010290,0.001126,0.968800,-0.247800 0.371900,0.145700,0.268300,0.000000,-0.966700,0.255700 0.125800,0.139900,0.246500,0.000000,-0.966800,0.255700 -0.665900,0.019710,0.211500,-0.984800,-0.008359,0.173200 0.049220,-0.256800,-0.739800,-0.000030,-0.978500,0.206100 0.322700,0.091930,0.034610,0.020400,0.920000,-0.391400 0.114900,0.155600,0.184200,0.014900,0.952600,-0.304000 0.147800,-0.133400,0.310300,-0.017900,0.999300,0.034200 -0.787000,0.078420,0.035680,0.000000,-0.975300,0.220800 -0.054680,-0.292900,-0.911100,0.000072,-0.977800,0.209500 0.503600,0.079330,0.039540,0.000000,-0.970200,0.242400 0.033020,-0.266700,-0.405500,-0.516500,0.855800,-0.028450 0.194400,-0.362600,0.365400,0.961400,-0.274500,0.018620 -0.557800,0.142300,0.255400,0.000000,-0.967400,0.253300 -0.710900,0.136500,0.233600,0.000000,-0.966900,0.255200 -0.470300,0.136500,0.233600,0.000000,-0.966900,0.255200 -0.075380,-0.210000,-0.280300,-0.953600,-0.298500,-0.039960 0.094520,-0.098700,0.327600,0.955600,-0.294500,0.010100 -0.091390,-0.085790,0.398800,0.921600,0.363600,-0.135500 -0.809400,0.112700,0.142600,0.000000,-0.970000,0.243000 0.658900,-0.051450,0.201000,-0.995600,-0.006080,0.093450 -0.179400,-0.302900,0.387400,0.019680,0.995100,-0.097230 0.049680,0.107000,0.121400,0.000000,-0.960000,0.279800 0.475800,0.114900,0.151500,0.000000,-0.971300,0.237900 -0.574200,0.114900,0.151500,0.000000,-0.971300,0.237900 0.546800,-0.176700,0.169600,0.023220,-0.948800,0.315100 0.459400,0.085800,0.018240,-0.010150,0.952700,-0.303600 0.525000,-0.197200,0.113200,0.023050,-0.935300,0.353000 -0.820300,0.101700,0.104200,0.000000,-0.951500,0.307600 -0.437500,0.097440,0.091620,0.000000,-0.945100,0.326800 0.809400,0.101700,0.104200,0.000000,-0.951500,0.307600 -0.612500,0.097440,0.091620,0.000000,-0.945100,0.326800 -0.700000,0.154600,0.180000,0.004668,0.958400,-0.285300 0.071100,0.156100,0.183800,-0.007263,0.949700,-0.313200 0.049220,-0.308000,0.363100,-0.000043,0.949300,-0.314400 0.037250,0.064030,0.502700,0.221600,-0.953500,0.204200 0.907900,-0.130200,0.234800,-0.020650,0.960800,-0.276400 -0.929700,0.075530,0.020700,0.000002,-0.988000,0.154200 -0.158600,0.075530,0.020700,0.000000,-0.988000,0.154200 0.089870,-0.117600,-0.175600,0.988200,0.126400,-0.086280 -0.175000,0.080920,0.001386,-0.020080,0.963800,-0.265800 -0.853100,0.081570,0.047670,0.000054,-0.958400,0.285400 -0.068570,0.049870,0.218000,0.738600,-0.664700,0.112700 -0.023680,0.081740,0.223000,0.436600,0.883500,-0.169800 0.814800,0.144700,0.151200,-0.010220,0.940300,-0.340300 0.716400,0.149800,0.167700,-0.000055,0.945600,-0.325200 0.410100,-0.181900,0.164100,0.022950,-0.947000,0.320400 0.097930,-0.022830,0.176000,0.980800,0.193400,-0.025930 -0.360900,0.101700,0.104200,0.000000,-0.951500,0.307600 0.071450,-0.193200,-0.372400,-0.992700,0.105200,0.058830 -0.410200,0.109300,0.129700,0.000000,-0.964400,0.264600 -0.240600,0.083760,0.010290,-0.005614,0.957500,-0.288300 -0.042570,-0.042240,-0.201300,0.514000,-0.814300,0.269600 -0.279000,-0.131900,0.310200,0.042180,0.999100,-0.000406 -0.273400,0.099080,0.096450,0.000000,-0.946300,0.323400 0.853400,-0.178600,0.121300,0.004226,0.861800,-0.507200 0.590700,-0.133600,0.249200,-0.023270,0.969200,-0.245200 0.050530,-0.078350,-0.029570,0.689900,-0.128600,-0.712400 0.262500,0.100400,0.100400,0.000000,-0.948000,0.318100 0.071550,-0.237700,-0.649400,0.000000,-0.978500,0.206300 -0.782000,0.099080,0.096450,0.000000,-0.946300,0.323400 -0.036120,-0.262900,-0.500600,0.704100,0.708100,0.053720 -0.008746,-0.148500,-0.540700,0.177100,-0.918600,0.353300 -0.273400,-0.176800,0.197100,-0.031900,-0.954200,0.297500 0.558300,0.127300,0.108600,0.000611,0.907400,-0.420200 0.016410,0.100400,0.100400,-0.000156,-0.950600,0.310300 -0.481200,-0.176800,0.175200,-0.031750,-0.949900,0.310900 -0.110600,-0.190000,0.166200,0.578600,-0.656300,-0.484200 -0.011180,-0.048930,-0.258800,0.157000,-0.939900,0.303200 0.137300,0.068000,0.238000,0.799900,-0.600000,-0.013860 -0.000074,-0.255600,-0.088230,0.011140,0.991400,-0.130000 -0.087490,-0.240600,-0.663200,0.000000,-0.979000,0.203700 0.788000,0.078420,0.035680,0.000000,-0.975300,0.220800 0.814900,0.120600,0.173300,0.000000,-0.967400,0.253300 -0.955200,-0.162800,0.167800,-0.439500,-0.774300,0.455300 -0.931900,-0.135300,0.211200,-0.905500,0.247200,0.344900 0.683500,-0.146400,0.260600,0.023170,-0.966500,0.255600 0.188300,-0.291900,0.321600,0.999500,0.020970,-0.023790 -0.265200,-0.268800,-0.831400,-0.438200,0.883900,-0.163400 -0.092190,-0.125600,0.243600,0.944600,0.317900,-0.081480 0.404600,-0.173800,0.189300,0.023270,-0.952800,0.302700 -0.213300,-0.267000,-0.826200,0.000000,0.979200,-0.202900 0.929700,0.083100,0.052600,0.000000,-0.953100,0.302600 0.290300,0.080340,0.043350,0.000000,-0.964000,0.265900 -0.814800,0.083100,0.052600,0.000000,-0.953100,0.302600 0.601600,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.074050,-0.177500,-0.372600,-0.993900,0.057460,-0.094490 0.508700,-0.140100,0.303200,0.024720,-0.973900,0.225700 -0.135000,-0.208200,0.382500,0.902300,-0.416600,0.110400 -0.585100,0.120600,0.173300,0.000000,-0.967400,0.253400 -0.240600,0.112700,0.142400,-0.000195,-0.969900,0.243300 0.700000,0.090400,0.072520,-0.000030,-0.932400,0.361500 -0.503100,0.114900,0.151500,-0.000029,-0.971300,0.237900 -0.094850,-0.023790,0.474200,-0.979400,-0.111000,0.168500 -0.201900,-0.248200,-0.736000,-0.010250,0.983800,-0.179200 0.005918,0.162800,0.208600,-0.009827,0.973300,-0.229400 0.044180,0.082710,0.259900,0.920300,0.383200,-0.079480 -0.060740,-0.238100,-0.166200,-0.728800,-0.684100,0.028290 0.705500,-0.132700,0.242200,-0.033460,0.972300,-0.231500 -0.481200,0.085710,0.060270,0.000000,-0.939400,0.342900 0.096430,-0.089140,0.354400,0.954700,-0.288100,0.074160 0.262500,-0.148200,0.293900,0.022550,-0.972600,0.231300 0.005475,0.123000,0.182400,0.000000,-0.966100,0.258200 -0.101700,-0.133100,0.413100,0.759600,-0.481600,0.437100 0.907800,0.120600,0.173300,0.001004,-0.967300,0.253600 -0.579800,-0.142000,0.218800,0.032060,0.954000,-0.297900 -0.150400,-0.264400,0.276800,0.854300,-0.506800,-0.115500 -0.010940,-0.277400,-0.688500,0.480400,0.877000,-0.000693 -0.585200,0.077430,0.031150,0.000000,-0.979400,0.201900 0.176000,0.132000,0.221800,-0.254900,-0.861500,0.439100 0.185900,0.077430,0.031150,0.000000,-0.979400,0.201900 -0.092380,0.023230,0.332600,0.942800,-0.332600,0.020950 -0.508500,-0.197700,0.113400,-0.032150,-0.935000,0.353200 0.218800,-0.284300,-0.908100,0.000081,0.975100,-0.221600 -0.034700,-0.248800,-0.623900,0.925700,0.361300,0.111800 -0.010360,-0.276400,-0.470100,0.156700,0.987500,-0.015700 0.066210,0.063660,0.500800,-0.758500,-0.642800,-0.107600 0.585200,-0.139700,0.227800,-0.020610,0.956300,-0.291500 -0.667300,-0.125400,0.273100,0.047220,0.972200,-0.229400 0.076570,-0.243300,-0.676000,-0.000060,-0.977800,0.209600 -0.803400,0.080340,0.043350,0.000002,-0.964000,0.265900 -0.771200,-0.171400,0.133800,0.030390,0.870200,-0.491800 0.099960,-0.122800,0.064720,-0.988400,0.151000,-0.013450 -0.229800,-0.145200,0.249600,0.030520,0.977600,-0.208300 0.317100,-0.187800,0.153300,0.023110,-0.944700,0.327000 0.366500,-0.150500,0.211300,-0.038250,0.959700,-0.278400 0.725100,0.073750,-0.024890,-0.015500,-0.957700,-0.287300 0.213700,-0.259600,-0.753300,0.000000,-0.978500,0.206300 -0.203700,-0.363000,0.425800,-0.978700,0.102600,-0.177900 -0.667100,-0.189200,0.121900,-0.031700,-0.936900,0.348100 -0.025160,0.030180,0.080090,0.898200,-0.315400,0.306300 0.207800,-0.232100,-0.622800,0.000588,-0.978400,0.206800 0.088140,-0.100200,0.376800,-0.924300,0.366400,-0.106500 0.246600,-0.248100,-0.736200,0.000387,0.978400,-0.206700 0.804000,0.076290,-0.027090,-0.002791,0.980000,-0.199200 0.175700,-0.264500,0.403000,-0.846400,0.441600,0.297700 0.240600,0.112700,0.142300,-0.000043,-0.970000,0.243200 -0.256900,-0.154100,0.214800,0.032650,0.949000,-0.313500 -0.098920,-0.011960,0.209600,-0.968100,0.246200,-0.046020 -0.054930,0.063640,0.239300,0.046370,-0.997000,0.062340 -0.202600,-0.402700,0.380400,-0.776400,-0.616500,0.131000 0.382800,0.141500,0.143700,-0.000898,0.919200,-0.393700 -0.078550,-0.069900,0.621600,-0.509000,0.342000,-0.789900 0.634400,0.090400,0.030780,0.020350,0.935500,-0.352600 0.263000,0.108100,0.125200,0.000000,-0.962500,0.271300 0.459400,0.151600,0.171300,0.010290,0.944500,-0.328300 -0.082080,-0.089310,-0.183800,-0.944100,0.301700,-0.133000 0.045300,0.106800,0.083570,-0.546100,-0.177100,-0.818800 0.601500,-0.152700,0.244400,0.023150,-0.964700,0.262400 -0.007992,-0.155600,0.407000,-0.092520,-0.939900,0.328800 -0.506400,0.073830,0.007119,0.000000,-0.996200,0.087490 -0.045080,-0.208500,0.146300,0.509200,0.850400,-0.132200 0.683600,0.130700,0.211800,0.000047,-0.966800,0.255400 0.002461,-0.280700,-0.698100,-0.109900,0.990200,-0.085660 -0.191600,-0.292100,0.332700,0.999400,-0.032530,0.008278 0.443000,-0.170800,0.155200,-0.032750,0.905100,-0.423900 -0.672000,-0.132700,0.241600,0.013140,0.967400,-0.252800 0.864000,-0.170800,0.164000,0.022380,-0.947300,0.319500 -0.185700,-0.148300,0.655800,-0.711900,0.524800,-0.466800 0.246000,-0.183600,0.170900,0.023380,-0.948000,0.317400 0.094990,-0.090380,0.316300,-0.968100,0.250000,-0.015290 -0.847700,-0.140600,0.196400,0.031800,0.946300,-0.321900 0.859100,0.105800,0.117500,0.000000,-0.957500,0.288300 0.178000,-0.367700,0.433100,-0.548600,-0.407700,0.729900 0.095130,0.023860,0.376500,0.949100,0.313800,-0.026330 -0.065830,-0.167500,-0.416200,-0.987600,0.118300,-0.103600 -0.066060,-0.139400,0.377000,-0.676800,-0.696700,0.237700 -0.256900,-0.195000,0.144100,-0.032300,-0.941500,0.335500 0.072340,-0.210000,-0.312300,-0.960300,0.268100,0.077280 -0.316900,-0.197100,0.116300,0.035030,0.868700,-0.494000 -0.087340,0.017070,0.182500,-0.914500,0.395900,-0.083050 -0.021090,-0.043220,-0.240800,-0.276600,0.910400,-0.307500 0.000025,-0.206800,-0.696800,0.006848,-0.919400,0.393400 -0.191600,-0.149700,0.237600,0.028270,0.960900,-0.275500 -0.035900,0.079850,0.532400,0.152400,-0.920900,0.358900 0.023070,0.067400,0.174400,-0.909600,0.409200,-0.072230 0.547100,-0.149900,0.199600,-0.028070,0.951900,-0.305200 0.013160,-0.073260,-0.337800,0.186600,0.929000,-0.319500 0.924100,-0.166900,0.171300,0.023200,-0.949000,0.314300 0.000002,-0.044240,-0.247600,-0.001132,-0.951400,0.308000 0.016880,-0.138200,0.443100,-0.159200,0.904300,-0.396100 0.087390,-0.036760,-0.008051,-0.933100,-0.337400,0.124300 -0.013370,-0.248800,-0.027180,-0.168400,-0.977200,0.129600 0.070970,-0.030230,-0.087790,-0.813400,-0.556000,0.170800 -0.191600,-0.324800,0.310800,0.982100,0.173200,-0.074080 -0.737800,0.129100,0.112300,0.000000,0.918000,-0.396500 0.760200,0.138900,0.242700,0.000000,-0.966100,0.258100 -0.098900,-0.103200,0.274100,-0.967500,-0.247100,0.054350 -0.091250,0.027000,0.355000,0.935600,-0.352900,0.011320 0.080110,-0.106800,-0.235800,0.946100,0.280300,-0.162200 -0.005631,-0.174500,0.344400,0.060320,0.952300,-0.299100 -0.276700,0.073560,0.003419,-0.000004,-0.997800,0.066770 -0.147700,-0.185600,0.148300,0.020660,0.885600,-0.464000 -0.074290,0.022330,0.114000,0.794900,-0.581700,0.172400 -0.009987,-0.072150,-0.051390,-0.131900,-0.207400,-0.969300 -0.084300,-0.074470,-0.137200,-0.949900,0.286300,-0.125600 0.092720,0.036930,0.354500,0.983100,-0.178700,-0.038770 0.000058,-0.239200,0.047650,-0.004582,-0.986300,0.164700 -0.092960,-0.249100,-0.703300,0.000000,-0.977800,0.209500 -0.543900,-0.149400,0.200400,0.009647,0.934800,-0.355100 0.027360,0.132100,0.120300,0.040580,0.920600,-0.388500 -0.639800,0.122300,0.096990,-0.004969,0.906100,-0.423000 0.891400,0.130800,0.211900,0.039900,-0.959400,0.279100 0.006528,-0.263300,-0.761700,-0.362900,-0.913000,0.186100 0.870000,0.080340,0.043350,0.000000,-0.964000,0.265900 0.089760,-0.143200,0.195700,0.925100,-0.373200,0.070260 0.048040,-0.034950,-0.041210,0.640600,-0.158900,-0.751300 0.552400,-0.196300,0.104600,-0.022250,0.811100,-0.584500 0.557900,-0.162000,0.168000,-0.023010,0.906700,-0.421200 0.175000,-0.239400,-0.695000,0.000000,0.979200,-0.203000 -0.003240,-0.139000,-0.821200,-1.000000,0.000000,0.000000 -0.075690,0.014110,0.070640,-0.809900,0.568000,-0.146200 0.099600,-0.137600,0.015430,0.976500,-0.215500,0.008730 0.470300,-0.136700,0.314100,0.014160,-0.585000,0.810900 -0.054680,-0.340000,0.304200,-0.000159,0.751200,-0.660100 0.174000,-0.337200,0.369000,-0.681700,-0.727600,0.076440 0.042910,0.051930,0.198600,0.073300,-0.965600,0.249500 0.063810,0.034090,0.115400,-0.707000,-0.696600,0.122100 0.022260,0.069340,0.223200,-0.987900,0.153900,-0.020640 0.710900,-0.132800,0.311500,0.022610,-0.858500,0.512300 0.002977,-0.128100,-0.629900,0.999600,-0.013240,-0.025850 0.087130,0.005054,0.146100,0.941800,0.336300,0.002530 -0.070400,-0.100200,-0.273800,-0.903100,0.394500,-0.169800 -0.957000,0.080470,-0.002654,-0.000092,0.984600,-0.174600 0.003237,-0.155400,-0.679000,0.998800,-0.045600,0.015220 0.003237,-0.199200,-0.848600,1.000000,0.000000,0.000000 -0.142100,-0.173700,0.221800,-0.032620,-0.957800,0.285600 0.087990,-0.136100,0.244800,0.872000,-0.406500,0.272700 0.075220,-0.202500,0.004695,-0.835000,0.545300,-0.073330 0.871300,-0.120300,0.306300,0.523700,0.266900,0.809000 -0.169500,-0.251000,-0.712500,0.000000,-0.978500,0.206200 0.585200,0.110700,0.134700,-0.000016,-0.965100,0.261800 -0.180500,-0.272900,-0.816400,0.000000,-0.978500,0.206200 0.005435,-0.108100,-0.443100,0.080000,0.942900,-0.323300 0.003237,-0.067900,-0.821200,1.000000,0.000000,0.000000 0.003237,-0.182700,-0.761100,1.000000,0.000003,0.000003 0.487000,-0.172000,0.151100,-0.028140,0.903500,-0.427600 0.065640,-0.262500,-0.767100,0.000000,-0.979000,0.203700 -0.006141,-0.165600,-0.587100,0.129300,-0.938600,0.319800 0.339100,0.153700,0.298100,0.000000,-0.924800,0.380500 0.069990,0.056580,0.295400,-0.510800,-0.853500,0.102900 -0.071520,-0.100300,0.452700,0.761500,0.595300,-0.256500 -0.051390,0.072690,0.314400,-0.752100,-0.659000,-0.010470 -0.025720,-0.268800,-0.582500,0.640400,0.766300,0.051920 -0.054670,-0.276400,-0.870400,0.000000,0.979300,-0.202400 0.207800,0.150400,0.167400,0.010200,0.936000,-0.351900 0.081650,-0.022910,-0.021070,0.873900,0.456900,-0.166000 0.077310,-0.195800,-0.320600,0.974500,-0.202400,-0.096670 -0.025500,-0.254000,-0.111300,0.325900,0.940400,-0.097360 0.377300,-0.198200,0.120200,0.023120,-0.937100,0.348400 0.139000,0.175500,0.565700,-0.504100,0.639100,0.580900 -0.033700,0.067730,0.331700,0.086820,-0.976400,0.197600 0.029060,-0.093700,0.530600,0.286100,-0.832400,0.474600 0.011420,0.070170,0.208700,0.998700,-0.004382,0.050550 0.091780,-0.021580,0.082740,-0.945700,-0.316400,0.073960 -0.054090,-0.132100,-0.412100,0.858500,-0.464200,0.217900 -0.083310,-0.041180,-0.060890,-0.918500,0.370400,-0.138300 -0.003482,-0.320700,-0.595700,-0.682100,0.588600,-0.433900 0.656700,0.078420,0.035680,0.000000,-0.975300,0.220800 0.068820,-0.198900,-0.416400,0.987700,-0.134900,-0.078820 -0.166900,-0.280900,0.306700,-0.948600,0.220000,-0.227300 -0.089590,-0.046500,0.469900,0.954200,0.211900,-0.211400 0.038290,-0.263600,-0.772200,0.000000,-0.979100,0.203300 -0.076320,-0.116000,0.402800,0.781200,0.584500,-0.219400 -0.924000,-0.184300,0.111800,-0.031560,-0.934500,0.354500 0.902400,0.092080,0.034540,0.010180,0.922800,-0.385100 0.322700,0.101700,0.104200,0.000000,-0.951500,0.307600 -0.087270,-0.204400,-0.527900,0.005333,0.975500,-0.219800 0.443000,0.161500,0.205200,-0.020730,0.980900,-0.193200 0.033270,0.108100,0.125200,0.000000,-0.962500,0.271300 -0.079750,0.021300,0.146400,0.845600,-0.523500,0.103900 -0.224200,0.146900,0.159200,-0.000200,0.936100,-0.351800 0.716400,0.165900,0.223500,-0.000019,0.981000,-0.194100 -0.328000,-0.169000,0.216900,-0.031560,-0.958500,0.283300 -0.295300,0.104400,0.113000,0.000000,-0.956100,0.293000 0.612500,0.104400,0.113000,0.000000,-0.956100,0.293000 0.086050,-0.073830,-0.126500,0.941200,0.306000,-0.143300 -0.092830,-0.075340,0.421000,-0.940400,-0.289200,0.178800 -0.098430,-0.337800,0.306600,-0.000065,0.736900,-0.676000 0.098440,0.126300,0.195100,0.000000,-0.967400,0.253400 0.951100,-0.167900,0.166000,0.128800,-0.910700,0.392500 0.760600,0.130700,0.116000,0.000015,0.921300,-0.388800 -0.933300,0.073220,-0.020900,0.000000,-0.999000,-0.043820 0.263000,0.168400,0.235600,-0.009958,0.988600,-0.150400 0.101300,-0.046590,0.108500,0.977800,0.208300,-0.021160 -0.229700,-0.238500,-0.689900,-0.004084,0.981600,-0.190700 -0.705500,0.094710,0.083960,0.000019,-0.939200,0.343400 0.134700,0.141600,0.585100,0.421700,-0.560500,-0.712800 -0.683600,0.153100,0.175200,0.000008,0.954900,-0.296900 0.743900,-0.176000,0.157500,0.024120,-0.947100,0.320000 -0.197700,0.124000,0.199100,-0.593200,-0.789600,0.156900 -0.136700,-0.287100,-0.883800,0.000000,-0.977800,0.209400 -0.003240,-0.062430,-0.700900,-1.000000,0.000000,0.000000 -0.448000,0.138800,0.135700,-0.000012,0.943900,-0.330300 0.957000,0.095340,0.042160,-0.005185,0.926200,-0.376900 0.751900,-0.188800,0.120800,0.022210,-0.937000,0.348600 0.377400,0.120000,0.093590,0.015170,0.907000,-0.420900 0.372100,0.162800,0.208900,0.023470,0.962500,-0.270400 -0.601500,-0.171100,0.180500,-0.031390,-0.950900,0.307800 -0.187700,0.132400,0.290300,-0.740000,-0.658200,0.138500 -0.199400,-0.309200,0.442600,-0.422900,0.179000,0.888300 0.103900,0.101700,0.104200,0.000000,-0.951500,0.307600 -0.125800,0.135500,0.127600,0.000000,0.925700,-0.378200 0.552400,0.151500,0.290100,0.000000,-0.966700,0.255800 -0.235100,0.143600,0.260500,0.000000,-0.966200,0.257700 -0.875000,0.096920,0.046010,0.010190,0.901200,-0.433200 -0.142200,-0.249100,-0.703300,0.000000,-0.977800,0.209600 -0.089250,-0.023670,0.053590,0.947500,-0.309800,0.079470 -0.059310,-0.107900,-0.335300,0.848200,-0.495000,0.188800 0.229600,-0.163200,0.238800,0.023620,-0.962600,0.270000 -0.180500,-0.244200,-0.680000,0.000000,-0.977900,0.208900 -0.056710,0.060180,0.578300,-0.756500,0.634300,0.159200 0.525000,0.092080,0.034540,0.000035,0.925400,-0.378900 0.590600,0.147500,0.158900,-0.005688,0.952100,-0.305700 -0.896600,0.160900,0.201000,-0.121600,0.972600,-0.198300 -0.317200,0.090560,0.030720,0.000000,0.933300,-0.359100 0.344500,0.113700,0.146500,0.000000,-0.971900,0.235600 0.087510,-0.270200,-0.803400,0.000000,-0.978500,0.206400 0.011400,-0.084180,0.002245,-0.000027,0.978400,-0.206700 -0.021270,0.071210,0.533400,-0.183000,-0.808000,0.560000 -0.508100,0.108100,0.125200,-0.000009,-0.962500,0.271300 0.189100,-0.400800,0.376300,0.985700,-0.167400,0.021080 0.235200,0.089140,0.026890,-0.010130,0.937200,-0.348600 0.093000,-0.245500,-0.722300,0.045700,0.967500,-0.248600 0.131200,-0.175100,0.206200,0.022030,-0.956300,0.291400 0.486700,0.100400,0.053470,-0.015180,0.910000,-0.414300 -0.913300,0.086110,0.018110,0.000000,0.950700,-0.310000 0.913400,-0.172700,0.129900,-0.057590,0.861000,-0.505300 -0.034730,-0.063490,-0.042460,0.501100,0.181800,0.846100 0.003469,-0.021250,-0.061300,-0.083970,0.190300,0.978100 0.070840,-0.198800,0.069990,-0.779900,0.617900,-0.099700 -0.880500,0.120600,0.093320,0.005063,0.909900,-0.414700 -0.103900,0.109700,0.071550,-0.020300,0.890100,-0.455300 -0.306200,0.164000,0.213100,-0.005458,0.977400,-0.211500 0.147600,-0.166100,0.235500,0.023330,-0.961900,0.272300 0.284700,-0.181600,0.174200,0.023720,-0.950200,0.310800 -0.196900,-0.239500,-0.657900,0.000000,-0.978400,0.206500 -0.105300,-0.084040,0.135800,-0.998700,-0.050400,-0.012400 0.197000,-0.203100,0.119100,0.023770,-0.936800,0.349100 -0.005465,-0.219700,-0.601600,0.000059,0.977800,-0.209800 -0.645300,0.111700,0.075100,-0.020380,0.892300,-0.450900 0.175000,0.097440,0.091620,0.000000,-0.945100,0.326800 -0.032800,0.151500,0.290100,0.000000,-0.966700,0.255800 -0.864200,-0.172900,0.124600,0.035520,0.861900,-0.505800 0.426500,-0.197600,0.118800,0.023030,-0.937200,0.348100 0.035050,-0.046620,-0.046030,-0.465600,0.161200,0.870200 -0.552300,0.117200,0.160600,0.000000,-0.967000,0.254700 -0.273400,0.152500,0.294000,0.000000,-0.960800,0.277200 -0.443000,0.102600,0.056940,0.000000,0.897400,-0.441200 -0.847100,-0.148300,0.176500,0.020810,0.928000,-0.372100 0.526800,0.073610,-0.013870,-0.003987,-0.891500,-0.453100 -0.067930,-0.227200,-0.223300,0.863000,0.504900,0.018900 0.519500,0.085690,0.060200,-0.000105,-0.939400,0.342900 -0.104400,-0.150300,0.244600,0.024130,0.968900,-0.246100 -0.089360,-0.175400,0.009764,-0.938600,-0.342400,0.041580 0.755100,0.107000,0.121400,0.000000,-0.960000,0.279800 0.875000,0.145700,0.155100,-0.015420,0.939300,-0.342700 -0.081600,-0.009573,0.031320,0.907300,-0.409800,0.093640 -0.077610,-0.191100,-0.321800,-0.979100,-0.183700,-0.087060 0.153300,-0.167600,0.179000,-0.033620,0.918500,-0.394000 0.585200,-0.177600,0.135100,-0.022600,0.859100,-0.511400 -0.158600,0.123000,0.182400,0.000000,-0.966100,0.258200 0.082490,0.108100,0.125200,0.000000,-0.962500,0.271300 -0.032370,-0.213200,-0.638900,0.906100,-0.320300,0.276300 -0.030600,0.102900,0.446200,0.616600,0.767000,-0.177600 0.002569,-0.067950,-0.668100,0.998000,-0.060820,0.015180 -0.059970,0.135400,0.127900,-0.004755,0.930600,-0.365900 0.552400,0.137100,0.131500,0.000091,0.927800,-0.373100 0.191800,0.128600,0.112500,-0.040670,0.911700,-0.408800 0.437600,-0.153400,0.197600,-0.052910,0.938900,-0.340200 0.984900,0.073210,-0.002370,0.013080,-0.999000,0.043660 0.207800,-0.279800,-0.848900,0.000000,-0.978600,0.205900 -0.382800,0.111700,0.138700,-0.000045,-0.967000,0.254900 0.333600,0.116200,0.156700,0.000000,-0.968900,0.247400 -0.207800,0.095330,0.042140,0.000000,0.913300,-0.407400 -0.027360,-0.186600,-0.620600,-0.693800,0.652900,-0.304000 -0.088000,0.008276,0.507300,0.988400,-0.139400,-0.060390 0.087500,-0.326700,0.322200,-0.000031,0.813500,-0.581600 0.058280,0.061110,0.553500,-0.743800,-0.647200,-0.167100 0.032910,0.045570,0.060340,-0.038000,0.915200,-0.401200 -0.114800,-0.236000,-0.641100,-0.000028,-0.978600,0.205900 0.634300,-0.177700,0.160200,0.022810,-0.946100,0.323200 0.607500,0.162300,0.208800,-0.041280,0.980200,-0.193600 0.617900,-0.164900,0.201000,0.023310,-0.956200,0.291800 0.639800,0.150500,0.167600,0.015110,0.945500,-0.325300 0.082500,0.141700,0.143200,0.005492,0.937700,-0.347500 -0.059700,-0.258800,-0.749500,0.000000,-0.978600,0.205800 0.427000,0.129100,0.112300,0.011810,0.906400,-0.422200 -0.663100,0.047620,0.107000,0.766800,-0.083790,-0.636300 0.481700,0.129100,0.112300,0.000000,0.918100,-0.396400 -0.174700,-0.187800,0.173000,-0.030610,-0.949400,0.312500 -0.196900,-0.275100,-0.826800,0.000000,-0.979100,0.203300 -0.001049,-0.348700,-0.666900,0.866000,-0.434400,-0.247900 0.258800,-0.207100,0.102300,0.011440,-0.884500,-0.466400 0.084500,-0.096280,0.415300,-0.898500,0.404200,-0.171000 0.175000,-0.242500,-0.672200,0.000000,-0.978500,0.206300 -0.136700,-0.247200,-0.727400,0.000018,0.977700,-0.209800 -0.142800,-0.242600,0.253500,-0.903200,0.412200,-0.119400 0.710900,0.141000,0.250400,0.000000,-0.967400,0.253200 0.760600,0.129600,0.207400,0.000000,-0.966800,0.255600 -0.060580,-0.038750,-0.156000,-0.696000,0.670400,-0.257300 -0.147700,-0.221900,-0.609300,-0.000052,0.982700,-0.185300 0.568800,0.087290,0.022110,0.020530,0.934800,-0.354600 0.093730,0.027760,0.390900,0.937500,0.345400,0.041510 -0.902300,0.097050,0.045910,-0.000053,0.904200,-0.427100 0.065550,-0.220800,-0.050000,-0.753400,0.654300,-0.065240 -0.004804,0.003586,-0.107100,-0.066750,0.950300,-0.304200 -0.014570,-0.126400,-0.480600,0.266100,-0.895800,0.356100 0.094230,-0.154600,-0.115600,0.990100,-0.139700,-0.010130 0.019010,0.090210,0.470200,0.550600,-0.536600,0.639500 -0.042370,-0.242900,-0.081630,0.498400,0.860400,-0.106400 0.083950,0.025780,0.261400,-0.924700,-0.375100,0.064940 0.251600,0.158000,0.191900,0.004659,0.943200,-0.332300 0.042200,0.080880,0.344000,-0.473200,0.854400,-0.214500 0.142200,-0.140500,0.267300,-0.023150,0.989600,-0.141800 0.007947,0.074700,0.173000,0.074600,0.981800,-0.174400 0.213300,0.087100,0.063960,0.000000,-0.934900,0.354900 0.923800,0.146200,0.159100,0.761400,0.598200,0.249800 -0.001814,0.025160,0.332100,-0.009902,-0.920100,-0.391700 -0.804100,-0.116300,0.300800,0.034200,0.985000,-0.169000 0.913300,0.101800,0.057310,0.005116,0.900200,-0.435400 0.047220,-0.172400,-0.525600,0.911600,0.346500,-0.221100 0.043550,0.054210,0.378300,0.999800,-0.002889,0.021620 -0.508100,0.133300,0.221500,0.000000,-0.966700,0.255800 0.634400,0.130700,0.211800,0.000000,-0.966800,0.255400 0.749200,0.151700,0.171300,-0.000033,0.946700,-0.322100 -0.050230,-0.160700,0.349600,-0.516700,-0.816800,0.256600 0.432600,-0.143800,0.295000,0.022440,-0.973200,0.229000 -0.361000,-0.160200,0.187900,0.021430,0.934400,-0.355600 -0.043740,-0.263600,-0.772200,-0.000005,-0.979100,0.203300 0.809800,0.162800,0.208600,-0.019980,0.974500,-0.223500 0.020120,-0.094910,-0.388900,-0.301400,-0.905400,0.299000 -0.831800,-0.166100,0.139500,0.041210,0.882400,-0.468700 -0.030150,-0.268400,-0.445700,0.523800,0.851800,-0.008777 0.054690,-0.287100,-0.883800,0.000060,-0.977800,0.209500 0.050050,-0.199000,-0.531600,-0.980200,0.197200,0.019600 -0.158600,-0.293700,-0.915100,-0.000028,-0.977900,0.209100 -0.426400,-0.200900,0.112400,-0.031940,-0.933700,0.356600 0.076570,0.113500,0.078750,0.015220,0.907100,-0.420700 0.153100,0.125200,0.104700,0.010200,0.893600,-0.448800 -0.125800,0.095200,0.042260,-0.005035,0.918600,-0.395300 0.345400,0.073210,-0.002238,-0.000046,-0.999000,0.044470 -0.081510,-0.191500,-0.008083,0.908800,0.417000,-0.013580 0.486200,-0.177900,0.170400,0.022560,-0.948500,0.316100 0.076570,-0.286300,-0.880000,-0.000006,-0.978500,0.206300 0.291100,0.075470,-0.013340,-0.169400,0.007079,-0.985500 -0.543900,-0.139500,0.301200,-0.032890,-0.973400,0.226700 0.088070,-0.105300,0.360300,-0.924000,0.367600,-0.105000 -0.012930,-0.258500,-0.128000,0.177000,0.980100,-0.090250 -0.207400,-0.242500,-0.672300,0.000403,-0.978700,0.205300 -0.048310,-0.128200,-0.432200,-0.758100,0.602700,-0.249100 0.131200,0.098870,0.049630,-0.015140,0.914500,-0.404300 -0.207800,-0.278500,-0.880800,0.000000,0.978500,-0.206200 -0.017370,0.095600,0.396800,-0.279000,0.956100,0.089930 0.399200,0.114900,0.151500,0.000000,-0.971300,0.237900 -0.032270,0.008675,-0.073300,-0.386200,0.754700,-0.530300 0.062060,0.043210,0.139800,0.670500,0.726000,-0.152900 -0.045040,-0.172800,-0.536000,-0.892600,0.392400,-0.221900 -0.034820,-0.044290,-0.221000,0.431900,-0.856500,0.282700 0.125800,0.090400,0.072520,0.000061,-0.932400,0.361400 0.175200,-0.380300,0.419800,-0.769000,-0.425100,0.477400 0.631200,0.073750,0.005978,0.000000,-0.996300,0.085660 -0.694600,-0.188700,0.108100,0.035160,0.826300,-0.562100 0.043680,0.069530,0.277300,-0.772900,-0.521700,0.361200 -0.574200,0.109900,0.071470,-0.005101,0.890300,-0.455300 0.016430,-0.224200,-0.618200,0.030640,0.978700,-0.203000 0.136700,-0.221400,-0.609500,0.000000,0.978500,-0.206200 0.045770,-0.104300,-0.379500,0.665900,0.698600,-0.261900 0.470800,0.161900,0.204700,0.000000,0.968600,-0.248700 -0.579700,0.120600,0.093320,-0.015310,0.915500,-0.402100 0.760100,-0.181400,0.140800,0.023720,-0.943200,0.331400 -0.015940,-0.240000,-0.751800,-0.843300,0.442400,-0.305100 -0.629000,-0.186300,0.116500,-0.022350,0.874400,-0.484700 0.065990,-0.188300,0.163500,-0.734000,0.667400,-0.125300 0.125800,0.087290,0.022100,0.015960,0.933400,-0.358600 0.074340,0.031770,0.546600,-0.954700,-0.271100,-0.122900 0.246100,-0.279800,-0.848900,0.000018,-0.978600,0.205800 -0.360900,0.132400,0.120200,-0.000023,0.922900,-0.385000 0.317200,0.142900,0.147500,-0.000176,0.936100,-0.351600 0.760200,0.143300,0.147400,-0.004775,0.947700,-0.319100 -0.120300,-0.265200,-0.817300,0.000000,0.978500,-0.206200 0.047540,0.082540,0.485600,0.499400,0.864400,0.058020 -0.689100,0.117000,0.086030,0.020330,0.905200,-0.424500 0.087500,-0.165100,0.091720,-0.929500,0.365000,-0.053470 0.085640,0.126500,0.575200,-0.590500,0.806800,-0.019330 -0.371900,0.151500,0.290100,0.000000,-0.966700,0.255800 0.040520,-0.262000,-0.487600,0.730100,-0.682300,-0.036120 -0.202900,-0.284900,0.427200,-0.869300,0.319400,0.377300 -0.732800,0.143300,0.147400,0.000000,0.949700,-0.313100 -0.059070,0.041340,0.130900,0.584400,-0.807300,-0.082320 0.273400,-0.170000,0.211800,0.023380,-0.958600,0.283800 -0.158600,-0.246100,-0.722100,0.000000,0.979200,-0.203000 -0.836700,0.106300,0.064080,-0.005125,0.875400,-0.483300 0.929700,0.078680,-0.011820,-0.000012,0.990000,-0.140900 -0.001942,-0.031960,-0.711900,-0.837200,0.546400,0.024420 -0.610300,0.073830,0.007119,0.000000,-0.996200,0.087490 -0.010770,-0.275500,-0.350800,-0.156900,-0.987300,0.026010 -0.133100,-0.191600,0.399600,-0.850300,0.409700,0.330200 -0.038920,-0.033960,-0.045990,0.581900,0.169400,0.795400 -0.056550,-0.235500,-0.460100,-0.950500,-0.307300,-0.046420 -0.080320,-0.169300,0.166600,0.871800,0.485300,-0.065790 0.039880,-0.113400,0.487200,0.380900,-0.808500,0.448600 0.022340,-0.302600,0.398700,0.000000,0.995600,-0.093360 -0.045050,-0.254300,-0.207200,-0.564400,-0.823300,0.060720 -0.047090,-0.009182,-0.094600,0.528400,-0.809000,0.257500 -0.064060,0.024660,0.053710,-0.812700,0.580800,-0.046200 0.804000,-0.162900,0.153100,-0.042850,0.915200,-0.400800 0.552400,-0.167500,0.157200,-0.017550,0.915700,-0.401500 0.213200,-0.165000,0.233900,0.023260,-0.962500,0.270300 -0.585100,-0.168800,0.189500,-0.032120,-0.953200,0.300600 0.011470,-0.238000,0.037750,-0.114900,0.982300,-0.147600 0.097430,-0.122600,0.141300,-0.973600,0.221100,-0.057280 -0.541400,0.152500,0.294000,0.000000,-0.960800,0.277200 0.109400,0.146700,0.272200,0.000000,-0.967400,0.253300 0.809400,0.143600,0.260500,0.000000,-0.966300,0.257600 -0.005457,-0.200300,-0.509400,-0.000040,0.979300,-0.202500 0.098440,-0.057780,0.403600,-0.980300,0.174400,-0.093130 0.012450,-0.274500,-0.383500,-0.239700,0.970500,-0.026560 0.032820,0.152500,0.294000,0.000000,-0.960800,0.277200 -0.027360,-0.200600,-0.509300,-0.060660,0.977400,-0.202300 0.820300,0.141000,0.250400,0.000000,-0.967400,0.253200 0.117900,0.138300,0.577700,0.423800,-0.556300,-0.714800 -0.010270,-0.237900,-0.765300,-0.812800,0.510500,-0.280800 -0.656100,-0.169900,0.143600,0.031080,0.890900,-0.453200 -0.459500,-0.170900,0.155300,0.031110,0.902400,-0.429700 0.059940,0.068360,0.280100,0.468200,0.865000,-0.180500 0.005757,-0.133500,-0.518500,0.649900,0.755400,-0.083430 0.043760,-0.275900,-0.830600,0.000000,-0.978500,0.206200 0.039770,-0.137600,0.432700,0.386700,-0.849800,0.358100 -0.524900,-0.173000,0.182400,-0.032430,-0.950200,0.309800 0.771100,0.091870,0.076320,-0.000141,-0.935000,0.354700 0.087070,-0.023190,0.012030,0.927200,0.355300,-0.119000 -0.628900,0.091870,0.076320,0.000036,-0.935100,0.354500 -0.678000,-0.174600,0.162200,-0.031750,-0.946900,0.319800 -0.404700,-0.197100,0.111100,0.030360,0.846700,-0.531300 0.010600,-0.010500,-0.147600,0.130800,0.939800,-0.315800 0.049680,-0.282400,-0.861100,0.000000,-0.978400,0.206600 -0.005654,-0.183000,-0.650900,-0.850600,0.502400,-0.155000 0.273500,0.075270,-0.010400,-0.075090,-0.085480,-0.993500 -0.399200,0.094710,0.083960,0.000015,-0.939200,0.343400 -0.028120,-0.267100,-0.622400,-0.819800,-0.570000,-0.055530 0.864100,-0.167600,0.141000,-0.037740,0.887600,-0.459000 -0.262500,0.145700,0.155100,0.015380,0.939300,-0.342800 -0.546800,-0.168400,0.194800,-0.031650,-0.953800,0.298800 0.000458,-0.215000,-0.541700,0.000000,-0.978600,0.205900 -0.866600,-0.133100,0.216700,-0.005901,0.957000,-0.290100 -0.066510,-0.192300,-0.436500,-0.994800,0.024600,-0.099000 -0.098430,-0.326400,0.322000,0.000000,0.838300,-0.545300 0.634400,0.116200,0.156700,0.000000,-0.968900,0.247400 -0.084540,0.034870,0.496500,-0.943600,0.326900,0.052640 -0.557900,-0.151000,0.195100,0.031970,0.937600,-0.346300 -0.003009,-0.386300,-0.667500,-0.548900,-0.777400,0.307100 0.103200,-0.189100,0.171500,-0.222900,-0.741700,-0.632600 -0.874900,-0.168100,0.161800,-0.031970,-0.946600,0.320900 0.028850,-0.185900,-0.609600,-0.756500,-0.604100,0.250700 -0.069460,-0.226300,-0.145000,-0.839200,-0.543700,0.011790 0.071740,-0.194900,0.108000,0.768100,-0.632200,0.101700 -0.176900,-0.137900,0.316700,0.016900,0.641500,0.767000 0.123000,-0.228400,0.226600,-0.296800,-0.771000,-0.563400 0.084180,-0.134300,0.267300,-0.860600,0.492200,-0.130500 -0.032560,0.068690,0.508200,0.452200,0.889700,0.062130 0.711000,0.142900,0.147500,0.005145,0.938500,-0.345100 -0.021460,-0.269700,-0.665700,0.763800,0.643000,0.056380 0.864100,-0.145800,0.189800,-0.013140,0.932400,-0.361200 0.045260,-0.034090,-0.171900,-0.522800,-0.811400,0.261400 -0.664700,0.068630,0.220300,-0.784800,-0.051130,0.617600 0.043760,-0.271800,-0.811200,0.000000,-0.977900,0.209000 0.015580,-0.117700,0.493200,0.138500,-0.866300,0.479900 -0.032810,-0.253000,-0.758800,0.013060,0.976000,-0.217500 0.175000,-0.255000,-0.766400,-0.020190,0.965100,-0.261200 0.229700,0.084740,0.014270,0.020360,0.959800,-0.280100 -0.020740,-0.274100,-0.637100,-0.595800,-0.803000,-0.014130 0.093300,0.081830,0.047900,-0.065530,-0.971000,0.230000 -0.568700,0.148000,0.277200,0.000000,-0.967400,0.253400 0.048870,0.071290,0.312900,0.796000,-0.437800,-0.417900 -0.042770,0.085170,0.398300,0.433700,-0.896500,0.090090 0.300700,-0.202800,0.113200,0.023050,-0.935100,0.353500 -0.039940,-0.261400,-0.414800,0.653300,0.756200,0.035190 -0.030130,0.094890,0.458000,0.454400,-0.888500,0.063240 0.086930,-0.009652,0.076910,-0.925500,-0.366000,0.097560 0.104500,-0.029250,0.334200,0.998400,0.052470,-0.022050 -0.557700,-0.165600,0.202500,-0.031480,-0.955600,0.293100 -0.153100,-0.336800,0.357700,0.000000,-0.975600,0.219600 0.017170,-0.052270,-0.266100,-0.229900,-0.917600,0.324400 -0.082020,-0.318400,0.335800,0.000000,0.889900,-0.456200 -0.306300,0.079330,-0.006553,-0.016900,0.986500,-0.162600 -0.021870,-0.335300,0.309700,0.000019,0.781700,-0.623700 -0.125800,-0.222700,-0.613200,-0.011790,0.980400,-0.196400 -0.032800,0.053010,0.565300,0.000000,-0.206200,-0.978500 0.509100,-0.175300,0.143400,-0.014030,0.878900,-0.476800 -0.075500,-0.058690,0.513500,0.871200,0.421700,-0.251300 0.076790,-0.013060,0.550300,-0.884800,0.274300,-0.376800 0.010970,-0.240000,-0.694900,0.062910,0.977200,-0.202700 0.000022,-0.169000,-0.598100,0.003491,-0.944700,0.327800 0.563300,0.075530,0.020700,0.000000,-0.988000,0.154200 0.047590,-0.002960,-0.073810,-0.541400,-0.804000,0.245900 0.043810,-0.156200,-0.500800,-0.826000,-0.504000,0.252400 0.031500,-0.055790,-0.268700,0.381000,0.879500,-0.285000 -0.063840,-0.186500,0.194500,0.786300,0.585600,-0.197100 0.722000,-0.193700,0.109800,0.023770,-0.934400,0.355400 0.175700,-0.260100,0.344400,-0.744900,0.641500,-0.183500 0.486800,-0.191100,0.115700,-0.032170,0.857700,-0.513200 0.084850,-0.085470,0.437100,-0.902900,0.389200,-0.182600 0.020680,-0.018610,-0.060390,0.318000,-0.212800,-0.923900 -0.199900,-0.334400,0.286000,-0.437400,0.014880,-0.899200 -0.207800,-0.266100,-0.783900,0.000000,-0.977900,0.208900 0.596100,0.075530,0.020700,0.000000,-0.988000,0.154200 -0.022440,0.055900,0.414000,-0.883000,-0.028390,-0.468500 -0.005456,-0.268100,-0.831500,0.000000,0.978400,-0.206800 0.083170,-0.037970,-0.057060,0.909000,0.394800,-0.133700 0.184600,0.131700,0.277900,0.756100,-0.647300,0.096520 0.026550,-0.247800,-0.044740,0.306700,-0.944600,0.117100 -0.088510,-0.130700,0.290400,-0.950300,-0.301100,0.079640 0.207900,-0.180500,0.148300,-0.022500,0.873800,-0.485700 -0.203500,-0.361600,0.296600,-0.967800,-0.113400,-0.224600 -0.004385,-0.280600,-0.742600,0.364400,0.931100,0.015350 -0.082060,-0.200300,-0.117600,-0.927700,-0.373200,0.010150 -0.842100,-0.159900,0.190400,-0.032670,-0.954100,0.297600 0.360900,0.153700,0.298100,0.000000,-0.924800,0.380500 -0.743600,-0.146400,0.191100,0.024800,0.947600,-0.318400 0.058650,-0.230600,-0.077260,-0.678000,0.731200,-0.075070 -0.006504,0.017880,0.294100,-0.148900,-0.819900,-0.552700 -0.023850,-0.215200,0.175000,-0.262100,-0.952000,0.158000 0.092050,-0.072560,-0.060720,-0.962500,-0.249900,0.105100 0.219300,-0.193600,0.123600,-0.013570,0.863100,-0.504900 0.915600,0.073750,0.005978,-0.000000,-0.996300,0.085660 0.081810,-0.167200,0.174200,0.894300,-0.422800,0.146500 -0.098500,-0.032400,0.135500,0.974100,-0.217700,0.060610 0.052380,-0.180900,0.256600,-0.585400,0.781500,-0.216000 0.030390,0.086780,0.380600,0.437700,0.758100,-0.483300 -0.103800,-0.178500,0.210100,-0.033100,-0.955900,0.291700 0.042720,-0.129200,-0.445800,-0.701400,-0.661300,0.266000 0.005774,-0.198400,0.258600,-0.077810,0.962000,-0.261800 0.032820,0.025020,0.317800,-0.000687,-0.978500,0.206100 0.194000,0.142700,0.278100,0.708700,-0.692100,0.136800 -0.163700,-0.156100,0.218900,0.018160,0.953000,-0.302500 0.189800,0.142300,0.298800,0.762600,-0.609400,0.216900 0.089990,-0.107000,0.316300,-0.945900,0.322300,-0.037350 -0.169400,-0.182000,0.191500,-0.031440,-0.953200,0.300800 -0.102500,-0.084270,0.091950,0.999700,-0.015770,0.019310 -0.321400,0.074240,0.011230,0.000000,-0.993600,0.112700 0.955800,0.113700,0.103100,0.874400,0.114600,0.471400 -0.004708,-0.335900,-0.597000,-0.970800,-0.185700,0.152200 0.055210,0.070420,0.354100,0.142000,-0.978900,0.147100 0.125900,-0.146400,0.313700,0.021910,-0.915700,0.401300 -0.288000,-0.208400,0.102600,-0.019770,-0.805900,-0.591800 -0.142100,-0.208200,0.118700,-0.031640,-0.936200,0.350000 0.095630,-0.090350,0.283600,-0.978800,0.198800,-0.050110 -0.880500,0.074760,0.015340,0.000000,-0.990900,0.134700 -0.002847,-0.072880,0.567900,0.052980,0.802500,-0.594300 -0.049210,-0.265200,-0.817300,0.000000,0.978500,-0.206200 -0.136700,-0.238500,-0.685900,0.000000,0.978500,-0.206100 0.097190,-0.078580,0.381800,0.968400,-0.237300,0.076650 -0.011100,0.111400,0.429400,-0.747200,0.381500,0.544200 -0.388000,-0.160600,0.238800,-0.030710,-0.963100,0.267400 -0.051800,0.076150,0.518600,-0.550400,0.820000,0.157300 0.051990,-0.228800,0.009784,0.569200,-0.813400,0.120300 0.257000,-0.255500,-0.771700,0.030300,0.978700,-0.202900 0.075800,0.045230,0.273900,-0.847800,-0.518600,0.110500 0.052250,-0.219800,0.048680,-0.580300,0.804300,-0.128000 -0.295500,-0.170000,0.170500,0.031980,0.901200,-0.432200 -0.021870,0.040590,0.381700,-0.021290,0.973800,-0.226400 -0.021870,-0.299500,-0.942400,0.002161,-0.979400,0.202000 -0.039710,-0.254000,-0.158300,-0.477100,-0.876500,0.063690 0.662700,-0.084320,0.195900,1.000000,-0.003068,0.009039 -0.054000,-0.058930,-0.223200,0.680600,-0.692400,0.239300 -0.081810,-0.060750,0.487800,0.917300,0.320600,-0.236000 0.067090,-0.221300,-0.339900,-0.947400,0.315800,0.051840 0.804300,-0.148900,0.185800,0.010920,0.926900,-0.375200 0.038360,-0.181000,-0.576000,0.853600,0.462300,-0.240200 -0.153200,0.073800,0.169200,0.663800,0.739900,0.109400 0.202300,0.154800,0.301100,0.220500,-0.702000,0.677200 0.930000,-0.188500,0.102200,-0.011760,0.798100,-0.602400 0.098500,-0.015590,0.274000,0.976200,0.186300,-0.111000 -0.224200,-0.280500,-0.890000,-0.000060,0.977600,-0.210400 -0.037690,0.053170,0.623200,-0.584700,0.563900,0.583300 0.081640,-0.062030,0.489300,-0.898900,0.341900,-0.273900 -0.634300,0.146100,0.155200,0.000102,0.939500,-0.342600 0.098440,-0.220600,-0.605600,0.000000,0.977600,-0.210400 -0.765500,-0.173600,0.156300,-0.031850,-0.946000,0.322700 0.092460,-0.155700,-0.159600,0.989200,-0.130600,-0.066140 -0.585100,-0.197400,0.107600,-0.028450,-0.948600,0.315300 0.003237,-0.144500,-0.799400,1.000000,0.000000,0.000000 -0.003240,-0.221000,-0.799400,-1.000000,0.000000,0.000000 -0.000061,-0.036060,-0.222500,0.011110,-0.950600,0.310100 -0.114800,0.090560,0.030720,-0.005045,0.930800,-0.365400 -0.596100,0.077730,-0.016100,0.003738,0.953500,-0.301400 0.056810,-0.038620,-0.166200,0.688300,0.686400,-0.234800 -0.243900,0.073560,0.003419,0.000006,-0.997800,0.066770 -0.087990,-0.174200,-0.195400,-0.981200,-0.183700,-0.059850 0.071790,-0.011230,0.580900,0.915800,-0.297500,0.269900 0.114800,-0.236000,-0.641100,-0.000032,-0.978600,0.205900 0.086230,-0.183100,-0.049960,-0.938500,0.344700,-0.018700 -0.025330,0.045290,0.064320,0.857900,0.475700,-0.194400 0.010980,0.056630,0.452100,0.087390,0.994700,-0.054860 -0.760100,-0.191500,0.107500,-0.037450,-0.950400,0.308900 0.787500,0.094710,0.083960,-0.000018,-0.939200,0.343500 -0.025220,-0.263400,-0.684400,-0.848200,-0.503400,-0.164700 0.003237,-0.084310,-0.788400,1.000000,0.000000,0.000000 0.115700,-0.176500,0.161100,-0.085450,0.885900,-0.456000 0.094120,-0.128300,0.174100,-0.965300,0.255000,-0.055630 -0.085060,-0.085110,-0.153700,-0.953600,0.268600,-0.136300 -0.019550,0.078240,0.234500,0.953600,0.292900,-0.069630 -0.005463,-0.291200,-0.903400,0.000000,-0.979100,0.203300 0.003237,-0.051510,-0.810300,0.999400,0.031030,-0.012410 -0.092300,0.023580,0.289000,-0.932500,0.356600,-0.056520 -0.956000,0.112200,0.103400,-0.892100,0.091480,0.442400 -0.094100,0.008664,0.431100,0.985000,-0.166200,-0.047550 -0.218700,-0.262500,-0.767100,0.000000,-0.979000,0.203700 -0.131000,-0.192600,0.163300,-0.031500,-0.946900,0.320000 0.011300,-0.002916,-0.063830,-0.162100,0.180900,0.970100 -0.344600,-0.146600,0.229400,0.031940,0.958400,-0.283500 -0.519400,-0.192800,0.125700,-0.031330,-0.938200,0.344800 -0.012010,0.056790,0.221300,0.128700,-0.958900,0.253000 0.019820,-0.057250,-0.279200,-0.261500,-0.911100,0.318700 -0.091470,-0.155200,0.146700,-0.999200,-0.038370,-0.008605 -0.076180,-0.102100,-0.246900,-0.923400,0.350300,-0.157200 -0.046290,0.081490,0.507700,-0.495200,0.858200,0.135100 -0.069120,-0.164200,0.283100,-0.633200,-0.747300,0.201300 -0.038180,0.033310,0.349700,0.247300,0.956100,-0.157200 0.218800,-0.249800,-0.744400,0.000006,0.978700,-0.205100 -0.426700,0.078660,-0.011070,0.016470,0.952300,-0.304700 -0.891500,-0.178200,0.113800,0.030150,0.844100,-0.535300 0.095530,0.009050,0.442100,-0.981700,-0.187700,-0.032860 -0.033170,0.114000,0.492300,-0.114400,0.947800,-0.297600 0.176800,-0.292100,0.387400,-0.997900,0.065090,-0.001111 0.661700,-0.180100,0.151200,0.022690,-0.944100,0.328800 -0.100100,-0.095600,0.239800,0.983500,0.176800,-0.038770 -0.153100,-0.324300,0.325400,-0.000112,0.852400,-0.522900 0.034430,-0.107800,-0.405800,-0.543900,-0.790500,0.281600 0.051440,-0.206200,0.136100,-0.557200,0.818800,-0.138300 0.240700,-0.179800,0.148000,-0.032700,0.886800,-0.461000 -0.902300,0.123000,0.182400,0.000022,-0.966100,0.258200 0.040550,-0.205500,0.189900,0.449100,-0.876300,0.174200 0.022890,-0.238500,0.021420,-0.235900,0.962000,-0.137100 0.541800,-0.192500,0.124900,0.022810,-0.938400,0.344700 0.026700,-0.270600,-0.476700,-0.474900,0.880000,0.003375 -0.003178,-0.118400,-0.532900,-0.988900,0.101800,0.108100 -0.077930,-0.174000,0.186500,-0.822500,-0.568800,-0.004021 0.059250,0.073670,0.466300,-0.629400,-0.774700,-0.060760 -0.486700,0.137100,0.131500,0.000000,0.927800,-0.373000 0.131300,-0.224400,-0.623700,0.000000,0.978400,-0.206700 0.065520,-0.080140,-0.243400,-0.850400,-0.489600,0.192800 -0.072210,-0.011430,-0.033170,-0.838100,0.509100,-0.195900 0.061650,-0.059970,-0.204800,-0.766800,-0.605200,0.214100 0.020780,-0.011830,0.641500,0.317100,-0.405200,0.857500 -0.481200,-0.192500,0.130100,-0.032420,-0.939000,0.342300 0.049090,-0.096440,0.503500,-0.507600,0.748500,-0.426700 0.158600,-0.286600,-0.917200,-0.025360,0.978700,-0.203700 -0.053990,-0.246900,-0.363800,0.826400,0.560700,0.051310 -0.659900,0.073560,-0.020640,0.013240,-0.961500,-0.274300 -0.028020,-0.266600,-0.290700,0.381400,0.923000,-0.051220 0.062550,-0.116100,-0.340500,-0.890900,-0.409600,0.196300 0.046980,0.081750,0.501300,0.485900,0.866400,0.115200 -0.084810,-0.150200,-0.257700,-0.994300,0.071030,-0.078900 0.118600,-0.189500,0.137700,-0.698600,0.536500,-0.473400 -0.026630,0.068250,0.485300,0.631100,0.263700,-0.729500 -0.973400,0.081090,0.001381,0.015570,0.975400,-0.219900 -0.836700,-0.153500,0.211800,-0.030920,-0.958500,0.283500 0.103900,-0.078860,0.185000,0.998200,-0.058840,0.011570 -0.188900,-0.400600,0.376300,0.983900,-0.175700,0.031600 -0.036550,0.098510,0.474300,-0.363300,-0.919900,0.147700 0.661200,-0.150300,0.247800,0.022410,-0.964300,0.264000 -0.036440,-0.263700,-0.358200,0.533900,0.845500,0.007561 -0.253000,-0.287300,-0.889200,-0.542200,-0.802000,-0.250800 -0.050470,-0.237800,-0.062410,-0.569500,-0.816100,0.098460 -0.663500,-0.117100,0.183300,0.700700,0.265500,-0.662200 -0.153100,-0.285100,-0.907900,-0.030370,0.989000,-0.144900 -0.000125,-0.263600,-0.175500,0.007848,0.995600,-0.093480 0.027360,0.058670,0.258900,0.000000,-0.596100,-0.802900 -0.311900,-0.139300,0.262300,0.010910,0.983900,-0.178400 0.031630,0.082050,0.556100,0.349100,0.927400,0.134200 -0.003536,0.058290,0.400900,0.251900,0.143200,0.957100 0.098920,-0.045240,0.429700,0.981600,-0.157200,0.108900 0.084090,-0.123400,0.310900,-0.924500,0.376500,-0.059600 0.006063,-0.236800,-0.777900,0.839300,0.505600,-0.199900 -0.185900,-0.238700,-0.689800,0.029220,0.978800,-0.202500 -0.185900,-0.280100,-0.885900,0.034820,0.981800,-0.186500 0.907900,-0.161400,0.151500,-0.032690,0.910800,-0.411500 -0.120600,0.041550,0.187400,0.747700,0.612100,-0.257300 0.535900,0.077430,0.031150,0.000000,-0.979400,0.201900 0.103800,-0.035120,0.316300,0.996100,0.055720,-0.067700 0.880500,0.086120,0.018150,-0.010280,0.952800,-0.303500 0.086450,0.022310,0.274000,-0.933600,-0.345700,0.094090 -0.078000,-0.171800,-0.312800,0.997400,0.000829,0.072010 0.030050,-0.225500,0.086990,-0.329800,0.930400,-0.160000 0.078200,-0.183000,-0.301800,-0.991100,0.124100,0.048340 -0.065150,-0.070570,-0.217500,0.826500,-0.526300,0.199800 0.164100,0.098700,0.049660,0.010040,0.885300,-0.465000 -0.076090,-0.139200,0.341300,-0.789700,-0.588200,0.174400 0.067070,-0.205700,0.054180,-0.739200,0.665500,-0.103200 -0.432100,-0.190700,0.120800,0.009791,0.846600,-0.532100 0.229700,0.100600,0.053400,-0.015160,0.901400,-0.432800 -0.235200,0.097050,0.045910,0.000000,0.904200,-0.427100 -0.040580,-0.183600,0.290000,-0.423000,-0.879800,0.216800 0.174400,-0.319300,0.297000,-0.962600,-0.069240,0.262100 -0.098330,-0.139800,-0.045280,-0.992100,-0.123100,-0.023860 0.020570,-0.188900,-0.634900,-0.584600,-0.735000,0.343400 0.114900,-0.146200,0.245500,-0.012790,0.960700,-0.277200 0.095200,-0.144200,-0.132100,0.995200,-0.092040,-0.032870 0.071090,-0.209400,-0.515100,-0.003048,-0.970800,0.240000 -0.618100,-0.164100,0.159100,0.020800,0.918300,-0.395300 -0.377100,-0.151000,0.212100,0.030800,0.951300,-0.306600 0.027750,0.053630,0.443600,-0.074780,0.972400,-0.221000 0.656300,0.087140,0.022170,-0.000003,0.932900,-0.360200 -0.005620,-0.184700,0.311200,0.047480,0.959000,-0.279400 0.009806,0.134000,0.500500,0.194100,0.946900,-0.256200 -0.038140,0.074260,0.453000,0.999600,-0.025410,-0.010130 0.071870,0.046370,0.528100,-0.907100,-0.393300,-0.149900 0.084930,0.042810,0.414700,-0.902900,-0.429500,-0.015060 0.858600,0.075530,0.020700,0.000000,-0.988000,0.154200 -0.147700,0.106300,0.064140,-0.000001,0.888400,-0.459000 0.089130,-0.101500,-0.159100,0.973100,0.199400,-0.115400 0.011130,-0.018200,-0.163800,-0.137200,-0.945200,0.296400 -0.022850,-0.235300,0.037900,0.263600,0.951600,-0.157900 -0.131200,-0.234900,-0.635900,-0.000030,-0.978500,0.206100 0.136700,-0.250300,-0.744300,-0.035100,0.969800,-0.241500 0.003237,-0.144500,-0.586100,1.000000,-0.000028,0.000015 -0.043900,-0.206400,-0.536500,0.303900,0.948300,-0.091280 0.082040,-0.272900,-0.816400,0.000000,-0.978500,0.206200 -0.229600,-0.201400,0.129000,-0.031680,-0.938200,0.344600 0.180500,0.096760,0.046070,-0.010110,0.889400,-0.457000 0.038730,-0.161200,-0.525700,-0.767000,-0.582900,0.268100 0.089380,-0.079410,0.425900,-0.931200,0.327300,-0.160600 0.018390,-0.271500,-0.679500,-0.769300,0.629900,0.107100 -0.015140,0.009331,0.650400,-0.277800,-0.158700,0.947400 -0.078890,-0.028670,-0.039580,0.886900,-0.432800,0.161600 0.062120,-0.032030,-0.023230,0.943600,0.194500,-0.267800 -0.983400,0.073250,-0.001573,-0.011020,-0.999000,0.043700 -0.162100,-0.272400,0.314200,-0.411900,0.816100,0.405300 -0.005525,-0.263900,-0.772200,0.171200,-0.958000,0.230300 0.568800,0.104400,0.060570,-0.005057,0.893400,-0.449300 0.005341,-0.110800,0.508000,0.050330,-0.877300,0.477400 0.099220,-0.002592,0.403300,-0.982800,-0.173100,-0.064710 0.103600,-0.202800,-0.520200,0.055920,0.986300,-0.155400 0.081060,0.050250,0.367200,-0.864000,-0.502000,0.037870 -0.131200,0.172200,0.272500,0.000938,0.998700,-0.051450 0.102100,-0.062400,0.212400,-0.999900,-0.012420,-0.004238 -0.087240,-0.167400,0.250500,-0.031370,-0.963700,0.265200 -0.284400,0.172600,0.283500,0.000000,0.999800,-0.018290 -0.003240,-0.177300,-0.865000,-1.000000,0.000000,0.000000 -0.003240,-0.204600,-0.733700,-1.000000,-0.002031,0.000629 -0.003240,-0.133500,-0.777500,-1.000000,0.000000,0.000000 0.443000,0.089140,0.026890,0.005689,0.943400,-0.331700 0.062120,-0.124300,0.430300,0.625500,-0.721200,0.297800 -0.552300,0.088970,0.026940,0.026000,0.926000,-0.376700 -0.180200,-0.295600,-0.924300,-0.028260,-0.999300,-0.023910 0.077310,-0.104500,0.435600,0.812100,-0.536000,0.230500 -0.202000,-0.294600,0.298700,-0.719600,0.334900,-0.608300 0.164100,0.088980,0.026940,0.011310,0.932900,-0.359900 0.064620,0.212100,0.267000,0.053550,0.997000,-0.055870 0.388300,0.080750,0.001437,-0.025480,0.972100,-0.233100 0.064330,-0.237400,-0.241600,0.844400,-0.535400,0.021080 -0.475800,0.093510,0.038370,0.025610,0.908200,-0.417700 -0.700000,0.080300,-0.002660,0.010280,0.974900,-0.222500 0.040000,-0.241000,-0.049530,-0.485800,0.869100,-0.092790 -0.022820,-0.186400,0.295300,0.254100,0.933500,-0.253100 0.104000,-0.089800,0.141300,0.997600,-0.064020,0.025580 -0.025330,-0.100500,0.515800,0.260900,0.841300,-0.473400 -0.126200,0.073540,0.339100,-0.734800,-0.664000,0.138500 0.656300,0.171600,0.267100,0.000024,0.995300,-0.096910 -0.891500,-0.120200,0.262300,0.052230,0.969000,-0.241600 -0.101800,-0.024040,0.387400,0.998700,-0.040820,-0.028950 0.010500,-0.046360,-0.054640,-0.163600,0.238400,0.957300 0.034790,-0.236900,0.017930,0.384100,-0.912300,0.142200 -0.055880,-0.050360,-0.202400,-0.668000,0.701100,-0.249500 0.497700,0.169800,0.245500,-0.020370,0.992700,-0.118500 0.585600,0.167000,0.227900,0.004673,0.984300,-0.176500 0.003237,-0.232000,-0.815800,1.000000,0.000000,0.000000 0.290400,-0.175300,0.154200,0.010900,0.889700,-0.456400 -0.191400,0.082270,0.005297,0.020100,0.948800,-0.315400 -0.074360,0.054880,0.469400,0.861000,-0.505600,-0.055100 -0.049040,-0.158300,-0.495100,-0.877000,0.429100,-0.216100 0.061330,-0.161100,0.294900,-0.921400,0.378800,-0.086390 -0.043350,-0.237200,-0.645600,-0.213500,-0.969500,0.120600 -0.948300,0.128100,0.114000,-0.712800,0.701100,0.020520 0.102100,-0.067850,0.179500,-0.999800,-0.018750,0.003721 0.448400,-0.138300,0.245500,-0.047840,0.965500,-0.255900 -0.502600,-0.175400,0.143700,0.016420,0.891700,-0.452300 0.042290,0.074160,0.431000,0.972500,-0.230800,0.031660 -0.869500,0.132400,0.120200,0.000000,0.922900,-0.385000 0.035440,0.054470,0.084770,0.564100,0.815600,-0.128700 0.207800,0.114900,0.151500,-0.000213,-0.971300,0.237900 -0.519500,-0.136100,0.313600,-0.024090,-0.709400,0.704400 -0.098410,-0.083590,-0.006519,0.996600,-0.074570,0.034810 0.084850,-0.024770,0.519300,-0.955900,0.182500,-0.230000 0.705500,0.076420,0.025960,0.000000,-0.983900,0.178800 -0.076050,-0.067060,-0.160200,0.891500,-0.422100,0.164600 0.421100,0.171900,0.267100,0.000000,0.997800,-0.066540 0.102200,-0.078910,0.152200,-0.999800,0.017390,-0.012010 -0.131200,-0.201300,0.120500,0.043560,0.844600,-0.533600 0.147700,0.096090,0.087790,0.000000,-0.942000,0.335700 -0.727300,-0.180400,0.140400,-0.031570,-0.942800,0.332000 -0.426600,0.100700,0.053300,0.000000,0.892500,-0.451000 0.579700,0.158200,0.303300,0.000000,-0.413200,0.910600 0.158600,-0.135700,0.289300,-0.038370,0.981300,-0.188400 -0.535900,0.172400,0.294200,0.000000,0.991700,0.128500 0.002237,-0.177300,-0.706400,0.999700,-0.005005,0.025350 -0.224200,0.171700,0.267100,0.005072,0.997000,-0.076660 -0.003240,-0.188200,-0.815800,-1.000000,0.000000,0.000000 -0.295200,-0.157800,0.260700,-0.031570,-0.966400,0.255300 -0.311700,-0.181300,0.179100,-0.031820,-0.951100,0.307300 0.076580,-0.252100,-0.717800,0.000000,-0.979000,0.203800 -0.765600,0.149400,0.282300,0.000000,-0.966200,0.257800 -0.047780,0.046920,0.321700,0.999300,-0.025730,-0.025250 -0.169500,0.077430,0.031150,0.000000,-0.979400,0.201900 0.067410,0.082850,0.603600,-0.478600,0.613200,0.628400 -0.003239,-0.188200,-0.690000,-0.999900,0.009915,0.002528 0.022470,-0.224000,0.108900,-0.257400,0.953700,-0.155300 -0.333200,0.168200,0.235700,0.023800,0.981200,-0.191500 -0.066240,-0.210800,0.043870,-0.716700,-0.689400,0.105500 0.828500,0.170100,0.285400,0.286800,0.666600,0.688100 0.825800,0.116800,0.086120,-0.015210,0.902400,-0.430700 0.136700,0.122000,0.097150,-0.020200,0.914400,-0.404200 0.005562,-0.267900,-0.224900,-0.078980,0.993800,-0.077740 -0.432000,0.118900,0.089640,-0.010200,0.908000,-0.418900 -0.095410,-0.154600,0.026330,-0.965300,-0.260200,0.022630 0.046310,0.057720,0.321600,0.940400,-0.338900,0.028250 0.180900,-0.150900,0.222900,-0.023210,0.941700,-0.335600 -0.053840,-0.078550,-0.277700,0.709100,-0.661200,0.245000 -0.057040,-0.215800,-0.493200,0.990200,0.012400,0.139100 -0.010930,-0.104100,-0.422400,0.177300,-0.931800,0.316800 -0.097400,-0.144400,-0.066550,-0.990900,-0.133400,-0.017020 0.082040,0.170200,0.245500,0.021890,0.991400,-0.129000 0.180000,-0.400100,0.327300,-0.190000,-0.857800,-0.477500 -0.462600,0.073560,0.003419,0.000000,-0.997800,0.066760 0.033270,-0.259600,-0.753300,0.055560,-0.977100,0.205400 -0.048450,0.041440,0.305300,0.999100,-0.036380,-0.020150 -0.004156,0.058260,0.416400,0.202000,-0.050840,-0.978100 -0.771000,-0.164200,0.184300,-0.030690,-0.952600,0.302500 -0.201500,-0.260200,0.397000,-0.762900,0.594000,0.255200 -0.765600,0.171500,0.261600,0.000000,0.996600,-0.081890 0.120300,-0.240600,-0.663200,0.000006,-0.979000,0.203700 -0.010930,-0.218700,-0.559300,0.000000,-0.978500,0.206100 0.000020,-0.212900,-0.569100,0.030460,0.978100,-0.206000 0.186400,-0.226200,-0.632200,0.000000,0.978400,-0.206900 0.142200,-0.273900,-0.858800,0.000000,0.977800,-0.209700 -0.158600,-0.273400,-0.853400,0.000000,0.963900,-0.266400 -0.361000,-0.141600,0.245900,0.012890,0.967100,-0.253900 -0.579700,0.172700,0.288900,0.000000,0.999800,0.021750 -0.514000,0.172700,0.288900,0.000000,0.999800,0.021750 -0.059660,-0.225800,-0.040700,0.668600,0.742200,-0.047220 0.003206,-0.138900,-0.547800,0.975200,0.212700,-0.060940 -0.003240,-0.149900,-0.640800,-1.000000,-0.000000,-0.000003 -0.003240,-0.182700,-0.848600,-1.000000,0.000000,0.000000 0.314000,0.073750,0.005978,0.000000,-0.996300,0.085660 0.110900,-0.207300,0.197800,-0.599500,-0.743300,-0.296800 -0.639800,0.075530,0.020700,0.000000,-0.988000,0.154200 -0.055630,-0.028550,-0.133200,0.646800,-0.716400,0.261600 0.102800,-0.029570,0.414600,0.994700,-0.049620,0.089840 0.033990,-0.246000,-0.071670,-0.377900,0.917700,-0.122500 0.546800,-0.157200,0.233100,0.023310,-0.961100,0.275300 0.096310,-0.101400,0.245400,-0.975600,0.204100,-0.080560 0.083860,0.024940,0.512600,-0.950800,-0.271500,-0.149300 -0.289800,0.119300,0.168300,0.000000,-0.967400,0.253400 0.355500,0.142300,0.255400,0.000000,-0.967400,0.253300 0.010170,0.078970,0.228500,0.972700,0.232000,0.010250 0.038770,-0.264700,-0.351000,0.556200,-0.831000,0.007381 -0.105800,-0.040540,0.332600,-0.999900,-0.011360,0.010370 -0.869500,0.120600,0.173300,0.000000,-0.967400,0.253400 -0.842100,-0.163700,0.178600,-0.031680,-0.951100,0.307400 -0.101400,-0.101200,0.174100,0.987200,0.156200,-0.033400 -0.096730,-0.067120,0.004172,0.964800,-0.233300,0.121200 0.069820,0.067240,0.350900,0.822000,0.569500,-0.002248 -0.557800,0.169100,0.240200,-0.000026,0.989700,-0.143100 -0.189100,0.142200,0.298000,0.881100,0.472700,0.013080 -0.071080,-0.340000,0.304200,0.000000,0.751000,-0.660300 0.092450,-0.045220,0.474700,0.939300,-0.200500,0.278300 0.088530,-0.023480,0.042000,-0.937400,-0.335300,0.093890 0.003237,-0.122600,-0.542300,1.000000,0.000183,0.000181 0.089020,-0.172300,0.004589,-0.945900,0.322500,-0.036500 -0.782000,0.141000,0.250400,-0.000007,-0.967400,0.253200 0.514100,0.109600,0.071640,-0.020260,0.899200,-0.437000 -0.382900,-0.136700,0.262300,0.024670,0.976900,-0.212400 -0.153100,-0.272900,-0.816400,0.000000,-0.978500,0.206200 -0.065280,-0.221000,-0.024830,-0.725300,-0.685200,0.066840 -0.705500,0.099080,0.096450,0.000000,-0.946300,0.323400 0.344500,0.172400,0.294200,0.000000,0.991700,0.128500 0.021890,0.064610,0.507300,0.249900,-0.963200,0.099410 0.016790,-0.256100,-0.110100,-0.177400,0.979300,-0.097370 -0.147700,0.171500,0.261700,-0.000030,0.996600,-0.081860 -0.191400,0.077430,0.031150,0.000000,-0.979400,0.201900 0.350000,0.076420,0.025960,0.000000,-0.983900,0.178800 0.590700,-0.123100,0.305400,-0.026200,0.998600,-0.046170 -0.049340,0.084150,0.376400,-0.491900,0.869700,-0.041170 -0.105900,-0.051500,0.278000,-1.000000,-0.007902,0.002126 0.618000,0.172200,0.272500,0.000000,0.998700,-0.050380 0.097640,-0.144300,-0.077460,0.991000,-0.129300,-0.034720 0.076800,0.058500,0.455400,0.822900,0.561100,0.090020 0.099850,-0.122800,0.015450,-0.994500,0.104200,0.009577 0.101900,-0.073570,0.206900,-0.998500,0.054080,-0.010850 -0.145400,0.073820,0.006982,0.000376,-0.996200,0.086990 0.147700,-0.268000,-0.826000,0.000000,0.979200,-0.203000 -0.071090,0.125000,0.190100,0.000000,-0.967400,0.253200 0.109600,-0.205100,-0.532000,-0.014440,0.982400,-0.186000 0.044610,0.052340,0.348900,0.998100,-0.038110,0.049240 -0.010910,0.058650,0.259400,0.103800,-0.513600,-0.851700 -0.069940,0.055810,0.523700,-0.812500,0.559300,0.164700 -0.032230,0.090770,0.258500,-0.118900,0.923300,-0.365100 0.623400,-0.143400,0.277800,0.023240,-0.971000,0.238000 -0.125800,-0.263600,-0.772200,0.000000,-0.979100,0.203300 -0.169500,-0.241700,-0.668300,0.000000,-0.979100,0.203400 0.021420,-0.271100,-0.285200,0.269700,-0.961500,0.053080 -0.158000,-0.153100,0.643700,0.424000,-0.188900,0.885700 -0.089500,-0.170400,0.048110,-0.935900,-0.349700,0.043630 0.601400,-0.160500,0.217100,0.022540,-0.958600,0.283800 -0.092290,-0.094240,0.380900,-0.930200,-0.346400,0.121800 0.015700,-0.273400,-0.301800,0.213500,-0.976500,0.029190 -0.125800,-0.246100,-0.722100,0.000034,0.979100,-0.203200 -0.042660,-0.192600,0.249500,-0.471500,-0.856400,0.210400 0.083140,0.035550,0.292200,-0.908800,-0.404000,0.104300 -0.026740,0.106200,0.508900,-0.114100,-0.715300,0.689400 0.831300,-0.136400,0.218700,-0.038290,0.954500,-0.295800 -0.273400,0.085970,0.018250,0.010270,0.948500,-0.316500 -0.977400,0.073210,-0.020850,-0.040820,-0.995300,-0.088310 0.049200,-0.229100,-0.561400,0.956500,-0.276100,-0.094500 0.176300,-0.379500,0.327400,-0.992800,0.085090,0.083800 -0.503100,0.099080,0.096450,0.000000,-0.946300,0.323400 0.535900,-0.200700,0.103100,0.026010,-0.968100,0.249300 0.100700,-0.083890,0.255900,0.987200,-0.149800,0.055080 -0.760200,-0.123300,0.267100,0.030850,0.984600,-0.172000 -0.268000,0.171500,0.261600,0.015240,0.996500,-0.081860 0.089440,-0.007136,0.135700,-0.943100,-0.329200,0.047390 -0.020760,-0.055420,0.598300,-0.298200,-0.842800,0.448100 0.011620,-0.242500,-0.713700,-0.193900,0.919300,-0.342500 0.102400,-0.084170,0.228700,0.991400,-0.113800,0.064510 -0.664000,0.099240,0.225100,0.726600,-0.048850,0.685300 0.448600,-0.189700,0.138900,0.023980,-0.941900,0.335000 0.659800,-0.041250,0.148200,-0.885500,0.067910,0.459700 -0.175000,-0.275100,-0.826800,0.000000,-0.979100,0.203300 -0.058150,-0.005347,0.100600,-0.176800,-0.396100,-0.901000 0.568700,-0.193400,0.120500,0.023150,-0.937400,0.347500 0.099820,-0.116200,0.157400,0.970500,-0.226900,0.081580 -0.060140,-0.346900,0.312300,0.000000,-0.976300,0.216300 0.060160,-0.343800,0.326500,0.000000,-0.976300,0.216500 -0.098380,-0.181100,0.196300,0.525500,-0.761400,-0.379600 -0.067450,-0.009076,-0.044100,-0.765300,0.603500,-0.224000 0.082050,-0.258700,-0.781900,0.000000,0.977700,-0.209900 -0.097420,-0.111400,0.261500,-0.960800,-0.270200,0.061490 -0.010920,-0.340400,0.303900,0.020340,0.740000,-0.672200 0.092940,-0.049690,-0.012880,0.959100,0.248700,-0.134800 0.639900,0.162100,0.304300,0.000000,-0.063680,0.998000 0.000466,0.062850,0.498800,0.000384,-0.986400,-0.164200 -0.093720,-0.085180,-0.087850,-0.974300,0.193800,-0.114500 -0.105800,-0.073430,0.157700,-0.999900,0.008204,-0.012380 0.083680,0.049510,0.429200,0.887000,0.461700,0.010770 -0.604200,-0.182300,0.124600,0.022760,0.896000,-0.443600 0.013310,-0.002126,-0.121900,0.159400,0.934400,-0.318500 -0.203100,-0.328600,0.434000,-0.980700,0.002554,-0.195500 0.891500,-0.156600,0.206400,0.023150,-0.956600,0.290500 -0.062790,-0.207100,0.088180,-0.680700,-0.723600,0.114000 0.410200,-0.136300,0.256800,-0.007880,0.965400,-0.260600 -0.069110,-0.216800,-0.061280,0.784300,0.617600,-0.058260 0.076100,0.019810,0.099580,0.800000,0.592100,-0.097300 0.339000,-0.181800,0.169400,0.022090,-0.948200,0.316900 0.658900,-0.122600,0.190300,-0.998100,-0.021690,0.058410 -0.077870,-0.039600,0.534300,-0.878900,-0.284100,0.383200 0.065410,-0.217000,-0.416400,0.982800,-0.173100,-0.063990 -0.079870,-0.192400,0.042600,-0.867900,-0.491900,0.069280 -0.136800,-0.136600,0.305800,0.031710,0.993400,-0.110600 -0.083240,0.049240,0.343700,-0.872200,0.488700,-0.019970 0.207700,0.150800,0.286300,0.093200,-0.968800,0.229600 0.022090,-0.196100,0.256300,-0.267600,0.928000,-0.259200 0.525000,0.119300,0.168300,0.000000,-0.967400,0.253400 -0.035880,0.077540,0.201500,-0.412000,0.890200,-0.194600 -0.034480,-0.022510,-0.155300,0.402200,-0.868100,0.290700 -0.000644,-0.345100,-0.603400,0.006773,-0.821400,0.570300 0.010950,-0.335100,0.365400,0.000000,-0.976900,0.213800 0.076570,0.167100,0.227900,-0.014830,0.989300,-0.145100 0.162500,-0.298000,0.328800,0.947500,0.237200,-0.214600 -0.000060,-0.277900,-0.580600,0.011150,0.999500,-0.029480 0.065560,-0.166800,-0.426500,0.981500,0.169600,-0.088600 0.082260,-0.035800,0.526300,0.913300,-0.263400,0.310800 0.957600,-0.169400,0.132300,-0.029950,0.885900,-0.462900 0.650800,0.116200,0.156700,0.000000,-0.968900,0.247400 0.147700,0.113700,0.146500,0.000000,-0.971900,0.235600 -0.060100,-0.237300,-0.134100,-0.702700,-0.710500,0.037750 -0.027350,-0.267200,-0.789200,-0.024480,-0.983300,0.180500 -0.060050,-0.125200,-0.370900,0.898600,-0.403500,0.172300 0.021770,0.051090,0.426000,0.350800,0.925500,-0.142800 0.032810,0.034870,0.354700,-0.045830,0.972800,-0.227100 -0.453900,0.079340,-0.006532,-0.004644,0.991700,-0.128700 -0.039850,-0.166400,0.349600,-0.410200,-0.870900,0.270700 0.094300,-0.112700,0.400900,0.755800,0.319800,-0.571400 -0.074870,-0.214900,-0.252400,-0.936700,-0.348000,-0.038610 0.186300,-0.394900,0.405100,0.561000,-0.739500,0.371900 0.175800,-0.340900,0.441400,-0.758000,-0.112000,0.642500 0.344500,-0.201900,0.112800,0.022470,-0.933800,0.357000 0.530600,-0.127000,0.289700,-0.043730,0.976400,-0.211400 0.000031,-0.040350,-0.796300,-0.148500,0.934600,-0.323100 0.497900,0.167400,0.232200,0.000892,0.981600,-0.190900 0.005159,-0.173100,0.349000,-0.068010,0.956500,-0.283500 0.091920,0.003618,0.267500,-0.959900,-0.273500,0.060980 -0.880600,-0.161100,0.145900,0.026250,0.900400,-0.434200 -0.149100,-0.138300,0.638900,-0.447000,0.233700,-0.863500 -0.134200,-0.207900,-0.530600,-0.556400,0.366500,0.745700 0.213500,0.112000,0.075340,-0.014420,0.886500,-0.462600 -0.075010,-0.191800,0.096650,-0.806100,-0.584200,0.093880 -0.787500,0.143600,0.260500,-0.000059,-0.966200,0.257700 -0.333600,0.143600,0.260500,0.000000,-0.966200,0.257700 -0.360800,-0.151400,0.276900,-0.032400,-0.968500,0.246900 -0.092470,0.020600,0.272600,-0.936400,0.346500,-0.054830 0.148800,0.074180,0.010500,-0.001369,-0.994400,0.106100 0.161100,-0.349400,0.296900,-0.050340,-0.885700,-0.461400 0.096960,-0.001160,0.447800,-0.989900,-0.132900,-0.049680 -0.014590,-0.032660,0.583300,0.000049,-0.210300,-0.977600 0.078520,-0.000326,0.103400,-0.403600,0.238000,0.883500 -0.027780,-0.139700,0.432600,0.259300,0.893900,-0.365600 -0.749100,-0.185700,0.123900,-0.030540,-0.938200,0.344700 -0.661700,0.095330,0.042140,-0.020240,0.918300,-0.395300 0.213400,-0.132500,0.300600,-0.022870,0.987600,-0.155100 -0.070440,-0.067450,-0.197300,-0.859700,0.476400,-0.184400 -0.049440,-0.234200,-0.550600,-0.968600,-0.233800,-0.084450 0.301300,-0.171600,0.161400,-0.023610,0.909600,-0.414800 0.273500,-0.136200,0.273100,-0.038090,0.978800,-0.201400 -0.546800,-0.183400,0.149300,-0.031730,-0.942600,0.332400 0.464800,-0.195700,0.109700,-0.022920,0.880200,-0.474100 0.962600,-0.181300,0.111600,-0.028950,0.846300,-0.531900 0.557800,0.100700,0.053310,0.010280,0.889300,-0.457200 0.094330,-0.069180,-0.049610,0.957600,0.262900,-0.117900 0.371900,0.138900,0.242700,0.000000,-0.966100,0.258100 0.355500,-0.168900,0.164300,-0.017620,0.921600,-0.387600 0.072190,-0.053310,-0.154100,0.839800,0.506500,-0.195200 -0.317100,-0.145300,0.308400,-0.033370,-0.968200,0.248000 -0.001925,-0.314400,-0.729400,0.867400,-0.416700,-0.272000 -0.036370,-0.107500,-0.401100,0.540500,-0.791200,0.286200 0.174400,-0.393500,0.387700,-0.960800,0.258600,-0.100000 0.091710,-0.001499,0.201900,-0.948900,-0.311500,0.050150 -0.031110,-0.112800,-0.432100,-0.483300,0.823700,-0.296600 -0.189000,-0.330400,0.437100,0.998800,0.015400,-0.046510 0.094560,-0.150300,0.042850,-0.966900,0.254000,-0.022560 0.103900,0.149400,0.282300,0.000000,-0.966200,0.257800 -0.136700,-0.252900,-0.758800,0.000000,0.977600,-0.210600 0.721900,0.081950,0.005399,-0.015610,0.957400,-0.288200 -0.365100,0.074240,0.011230,0.000000,-0.993600,0.112700 -0.098740,-0.000381,0.266900,-0.966400,0.253000,-0.044830 0.071170,-0.206300,0.039820,0.768100,-0.631600,0.104900 -0.019680,0.079110,0.596700,-0.323500,0.893500,0.311500 -0.119800,0.141700,0.143200,0.000000,0.935200,-0.354100 0.683600,0.073010,-0.011900,0.000027,-1.000000,-0.000879 -0.377400,-0.169500,0.164800,0.035080,0.906300,-0.421100 0.459800,0.105800,0.117500,0.000000,-0.957500,0.288300 -0.279000,-0.142700,0.251800,0.047770,0.968700,-0.243800 -0.031610,-0.267800,-0.301800,-0.433100,-0.901000,0.024820 0.251600,0.109700,0.071550,-0.010120,0.913900,-0.405900 0.793000,0.104300,0.060630,0.020290,0.880600,-0.473400 -0.481200,0.096090,0.087790,0.000000,-0.942000,0.335700 -0.710900,0.155600,0.184200,-0.015040,0.964000,-0.265400 -0.831200,0.079330,-0.006583,-0.000081,0.987700,-0.156600 -0.672300,-0.183100,0.138200,-0.031500,-0.941200,0.336400 -0.289400,0.161900,0.204700,0.000000,0.968600,-0.248700 -0.189800,-0.289000,0.418100,0.984800,-0.113300,-0.131900 -0.328100,0.105900,0.064380,0.010180,0.894600,-0.446700 -0.464600,-0.150100,0.268800,-0.032290,-0.967900,0.249100 0.037600,-0.151100,0.397800,0.368600,-0.881300,0.295700 -0.662400,-0.057870,0.150800,0.967000,0.109500,0.229900 -0.776700,-0.165300,0.144400,0.026100,0.898300,-0.438600 0.574200,-0.174800,0.173200,0.022440,-0.949700,0.312300 -0.607100,-0.146700,0.202100,0.026910,0.951900,-0.305400 0.782000,0.130700,0.211800,0.000000,-0.966800,0.255400 0.300800,0.154500,0.180100,0.015840,0.945500,-0.325300 0.164000,-0.178300,0.193400,0.023150,-0.953100,0.301800 0.082050,0.106000,0.064310,0.014900,0.897500,-0.440700 -0.629000,-0.160200,0.166300,0.043880,0.905400,-0.422300 0.629400,0.139900,0.139500,0.000150,0.946500,-0.322700 0.103900,0.156700,0.188000,0.048700,0.949300,-0.310600 -0.092830,0.000742,0.171500,-0.941000,0.331300,-0.069340 0.005457,0.062590,0.356600,-0.004975,0.226900,0.973900 0.031650,-0.262700,-0.602800,-0.842200,0.536400,0.054660 0.109400,-0.215600,-0.582200,0.000000,0.978500,-0.206200 -0.317100,-0.194900,0.138600,-0.032500,-0.940200,0.339100 -0.067090,0.064220,0.480500,0.769800,-0.635100,-0.063430 0.000032,-0.273300,-0.269100,-0.005063,-0.998000,0.062470 0.246100,0.093350,0.038430,0.010160,0.932100,-0.362100 0.060740,-0.231100,-0.389400,-0.935300,0.350300,0.048950 0.098440,0.123000,0.182400,0.000000,-0.966100,0.258200 -0.038280,-0.288000,-0.887800,0.000060,-0.978000,0.208800 -0.077870,0.041580,0.239300,0.834700,-0.544100,0.084870 0.317200,0.151100,0.171500,0.000034,0.946800,-0.321900 0.026900,-0.255900,-0.728300,0.478000,-0.858900,0.183800 -0.102400,-0.105900,0.184900,-0.984100,-0.173900,0.035660 0.579700,0.100700,0.053310,-0.020230,0.889300,-0.456900 -0.010910,-0.220500,0.157600,-0.128400,-0.979300,0.156400 0.010140,0.124000,0.447400,0.136000,0.325700,-0.935600 -0.008577,0.090500,0.521400,-0.717900,0.197300,0.667600 -0.060150,0.121900,0.178500,0.000000,-0.966200,0.257700 -0.322600,0.144700,0.264500,0.000000,-0.966100,0.258300 -0.191400,0.098700,0.049670,0.005096,0.909000,-0.416700 0.880500,0.097050,0.045910,-0.000008,0.904200,-0.427100 -0.169600,-0.177700,0.162200,0.036280,0.900500,-0.433400 0.060160,0.124000,0.186300,0.000000,-0.966800,0.255700 -0.015940,0.130700,0.116000,0.000000,0.921300,-0.388800 -0.102700,-0.079040,0.631800,-0.466900,0.303500,-0.830600 -0.094130,-0.117000,-0.105000,0.987300,-0.111500,0.112800 0.557800,0.158200,0.191900,0.031350,0.952400,-0.303100 -0.289900,-0.163400,0.186100,0.031390,0.930600,-0.364800 0.382800,-0.175800,0.184600,0.023250,-0.952400,0.304100 0.585200,0.150400,0.286300,0.000000,-0.966100,0.258200 0.054700,0.161000,0.200900,0.006653,0.976400,-0.216100 0.092900,-0.167000,0.237100,0.023240,-0.961300,0.274600 0.041850,-0.247700,-0.121000,-0.503400,0.861900,-0.061630 0.443000,0.120600,0.093300,0.035790,0.891400,-0.451800 0.158600,-0.253500,-0.758700,-0.025450,0.964100,-0.264200 -0.080740,0.050000,0.398400,0.868600,-0.493000,-0.050520 0.361000,0.102300,0.057100,0.035550,0.899800,-0.434800 0.845200,0.160300,0.279800,0.481500,0.200800,0.853100 -0.612500,0.100400,0.053470,0.010130,0.898500,-0.438800 0.175000,0.084370,0.056490,0.000009,-0.946600,0.322400 0.645300,0.089140,0.026890,0.005689,0.943400,-0.331700 -0.333600,0.080920,0.001371,0.020060,0.956300,-0.291700 0.858600,0.084350,0.056420,-0.000029,-0.946600,0.322400 0.191400,-0.249900,-0.707300,-0.000085,-0.977900,0.209100 -0.164100,0.093660,0.038300,0.000000,0.919500,-0.393100 0.081420,-0.199900,-0.055700,0.868500,-0.493400,0.048170 0.005462,-0.254800,-0.730600,-0.054080,-0.967600,0.246800 -0.295300,0.124000,0.100700,-0.010280,0.913600,-0.406400 0.787600,-0.170300,0.138700,-0.012210,0.882800,-0.469700 0.213300,-0.141200,0.316700,0.024240,-0.484900,0.874200 -0.109400,0.123000,0.182400,0.000000,-0.966100,0.258200 -0.480800,0.127500,0.199700,0.000000,-0.966800,0.255600 -0.328100,0.143300,0.147400,-0.000009,0.949700,-0.313100 0.021160,-0.274200,-0.542100,0.432000,-0.901900,-0.005466 -0.196900,-0.220800,-0.585900,-0.769700,0.051710,0.636300 -0.114800,0.111500,0.075170,-0.015170,0.895400,-0.444900 -0.096360,-0.122900,0.399400,0.864700,-0.174400,-0.471100 -0.634400,0.113600,0.078660,-0.010150,0.901200,-0.433400 -0.792500,0.127500,0.108600,0.000019,0.899200,-0.437400 -0.344500,0.166100,0.303800,0.000000,0.306600,0.951800 0.732800,0.162100,0.304300,-0.000113,-0.063590,0.998000 -0.136700,0.116200,0.156700,0.000000,-0.968900,0.247400 0.120400,-0.137500,0.284500,-0.022580,0.979300,-0.201300 -0.163600,0.162900,0.208600,0.000042,0.972000,-0.235200 0.388300,0.149100,0.163700,-0.001302,0.944600,-0.328300 0.262500,0.118200,0.164500,0.000000,-0.966800,0.255600 0.913200,-0.165900,0.175200,0.023180,-0.950500,0.309800 -0.355600,-0.137900,0.262500,0.033210,0.979900,-0.196700 0.754700,0.100400,0.100400,0.000000,-0.948000,0.318100 -0.135100,-0.239200,0.245500,0.806700,-0.589900,0.035580 -0.158100,-0.341900,0.334900,0.000000,-0.976300,0.216600 -0.152300,0.092470,0.263500,0.846600,0.412400,0.336300 -0.563300,0.135500,0.127600,0.000000,0.925700,-0.378200 0.503100,-0.145500,0.281000,0.024300,-0.970300,0.240800 -0.793100,-0.154600,0.166400,0.051550,0.908200,-0.415200 0.656200,-0.155400,0.230100,0.023830,-0.961700,0.273000 -0.633800,0.162800,0.208700,-0.005593,0.974800,-0.223200 0.191400,-0.222200,-0.613300,-0.000069,0.979300,-0.202600 -0.191400,-0.264400,-0.813400,0.000000,0.977600,-0.210600 0.101700,-0.067550,0.086390,-0.993900,-0.102800,0.040380 -0.016960,0.100400,0.414400,-0.283700,0.128900,-0.950200 0.026280,-0.265000,-0.673200,0.870800,-0.476100,-0.123100 -0.089880,-0.018460,0.507400,-0.986900,-0.116200,0.111900 -0.005338,0.083800,0.589300,-0.079410,0.967000,0.242300 -0.563200,-0.149700,0.257400,-0.032020,-0.966300,0.255300 0.519600,-0.128600,0.282000,0.002430,0.985200,-0.171700 0.634400,0.150400,0.286300,0.000000,-0.966100,0.258200 -0.251600,0.119300,0.168300,0.000000,-0.967400,0.253400 0.273900,0.107000,0.121400,0.000000,-0.960000,0.279800 -0.005987,-0.220900,-0.741500,-0.763800,0.568000,-0.306600 -0.229700,0.085710,0.060270,-0.000039,-0.939400,0.342900 0.021890,0.122100,0.097070,0.009990,0.931200,-0.364400 -0.047010,-0.025800,-0.143800,0.544400,-0.793400,0.272200 0.026410,-0.211000,0.179900,-0.305800,0.940400,-0.149100 -0.189100,-0.394700,0.397600,0.943400,-0.296400,0.149000 -0.190600,-0.278100,0.312300,0.770400,0.467300,-0.433800 -0.366400,0.150400,0.167400,0.000000,0.945400,-0.325800 -0.109400,-0.335300,0.309700,-0.000024,0.781500,-0.624000 -0.098830,-0.141400,0.002247,-0.983200,-0.182300,0.008369 -0.759700,0.167700,0.231700,0.000000,0.985400,-0.170100 -0.158600,-0.332900,0.312800,0.000000,0.794600,-0.607100 -0.052660,-0.091980,-0.318300,0.730900,-0.641600,0.232400 0.060170,-0.242500,-0.672200,0.000060,-0.978500,0.206300 0.659200,-0.094870,0.153500,-0.983800,-0.062950,-0.167800 -0.793100,-0.168700,0.137000,0.025790,0.880800,-0.472800 0.072250,-0.218900,-0.284900,0.937600,-0.345900,-0.035610 0.084770,0.001843,0.086780,0.901500,0.429100,-0.056890 -0.081040,0.014290,0.540600,0.951000,-0.227400,-0.209500 -0.782000,-0.182600,0.113000,0.030260,0.853300,-0.520600 0.073710,-0.219700,-0.214200,0.914500,-0.404200,-0.016620 0.071100,-0.338100,0.306900,0.000000,0.737600,-0.675200 0.007012,0.073800,0.250700,-0.907000,-0.148400,-0.394000 -0.142200,-0.328000,0.397700,0.000000,-0.976300,0.216400 0.047580,-0.194100,-0.558400,0.955800,0.240000,-0.170000 -0.036710,0.102100,0.490400,-0.418000,-0.876200,0.240000 0.044590,-0.216200,0.116100,0.474900,-0.867700,0.146400 0.064230,-0.177500,-0.449100,0.970500,0.159800,-0.180300 0.546900,0.126300,0.195100,0.000000,-0.967400,0.253400 -0.047500,-0.142900,0.407500,-0.486600,-0.824900,0.287600 -0.038970,-0.188300,-0.576100,0.918800,-0.315800,0.236900 0.032820,-0.288000,-0.887800,-0.000026,-0.977900,0.208900 -0.047740,0.082680,0.485700,-0.489700,0.871000,0.039840 0.045050,-0.232700,-0.608200,0.746500,-0.665200,0.013680 -0.017400,-0.079540,-0.346400,0.261200,-0.911600,0.317300 0.052910,-0.242100,-0.482100,0.917100,-0.394000,-0.061490 0.145100,0.064640,0.176900,0.803900,-0.479400,0.352000 -0.678100,0.104400,0.113000,0.000000,-0.956100,0.293000 -0.139700,0.072740,0.252100,0.635400,0.053100,0.770400 -0.083720,-0.173300,0.140900,-0.620200,-0.783200,0.045140 -0.083430,-0.100500,-0.181500,0.963000,-0.242700,0.116900 0.618100,-0.167600,0.152600,-0.027390,0.905100,-0.424400 -0.010930,-0.271700,-0.848300,-0.000015,0.978700,-0.205100 -0.202300,-0.354400,0.308900,-0.996700,-0.049880,-0.064700 -0.025700,0.070450,0.306800,0.725900,0.424500,0.541200 0.175600,-0.385000,0.311400,-0.811700,-0.409200,-0.416700 -0.005471,-0.094980,-0.038970,-0.019840,-0.983100,0.181800 -0.492200,-0.164900,0.166000,0.031860,0.913200,-0.406200 0.049880,0.088420,0.460800,0.721000,-0.654500,0.227600 -0.095080,-0.139600,0.097550,0.962300,0.269900,-0.033870 0.054960,-0.073310,-0.263100,-0.710400,-0.663800,0.234000 -0.028610,-0.270300,-0.353000,-0.410900,-0.911500,0.019340 -0.038120,0.072300,0.300800,-0.098620,0.750300,-0.653700 -0.213300,0.125000,0.190100,0.032410,-0.966900,0.252900 0.673200,-0.160000,0.212800,0.022380,-0.958200,0.285300 0.672600,0.077810,-0.017130,-0.004042,0.967700,-0.252000 -0.962500,0.073090,-0.017180,0.000408,-0.999700,-0.023490 0.045310,-0.014820,-0.116000,-0.534300,-0.797600,0.279900 0.776500,-0.127000,0.314400,0.008682,-0.244400,0.969600 0.083060,-0.196600,-0.197700,0.958300,-0.283400,-0.037530 0.284400,-0.202700,0.105800,-0.020930,0.829000,-0.558900 -0.754700,0.102900,0.108100,0.000000,-0.954400,0.298400 0.059260,-0.140000,-0.415400,0.929600,0.329400,-0.165100 -0.650800,-0.191800,0.105800,0.030440,0.839300,-0.542800 -0.105300,-0.057340,0.179600,-0.997000,0.075440,-0.014850 -0.147700,-0.228700,-0.640300,-0.029890,0.975100,-0.219900 -0.063260,-0.186000,0.212000,-0.669800,-0.726400,0.154400 0.754800,-0.150700,0.184100,-0.017780,0.947300,-0.319800 -0.075080,-0.215100,-0.105400,-0.887000,-0.460500,0.032820 -0.202300,0.125700,0.104400,0.000000,0.913300,-0.407400 -0.004051,0.079890,0.601900,-0.070580,0.928500,0.364600 -0.109400,-0.267000,-0.826200,0.000000,0.979200,-0.202900 -0.257000,-0.279800,-0.848900,-0.019380,-0.978300,0.206100 0.013960,0.080270,0.597400,0.173600,0.931500,0.319500 -0.880000,0.138800,0.135700,0.000000,0.930200,-0.367000 -0.164100,0.126300,0.195100,0.000000,-0.967400,0.253400 0.345000,0.141700,0.143200,0.000002,0.935200,-0.354100 0.148100,0.138800,0.135700,-0.000038,0.930200,-0.367000 0.563700,0.167000,0.227900,0.020370,0.983900,-0.177700 -0.110600,-0.199600,0.200800,0.884400,-0.459200,0.083570 -0.185900,-0.328700,0.397800,0.352200,-0.926300,0.133400 0.180400,0.155500,0.301000,-0.133300,-0.685700,0.715500 0.071110,-0.141900,0.267700,-0.162000,0.961500,-0.222100 0.289900,-0.195000,0.135000,0.023040,-0.940100,0.340100 -0.062300,-0.146400,0.366700,-0.636000,-0.732400,0.242900 -0.043810,0.063130,0.380800,0.860800,-0.138200,-0.489800 0.189500,-0.379200,0.360100,0.972500,-0.231000,-0.029000 0.984400,0.074760,0.015340,0.000495,-0.991200,0.132500 -0.197500,0.133500,0.243700,-0.665600,-0.732400,0.143500 -0.005002,0.167000,0.227900,-0.000040,0.983100,-0.183100 0.159400,0.073210,-0.002236,-0.000004,-0.999000,0.045000 -0.079320,0.003027,0.552200,0.955400,0.067780,-0.287400 -0.191000,-0.316900,0.442700,0.741100,0.094830,0.664700 -0.005185,-0.151800,0.418600,-0.064850,-0.940500,0.333600 -0.011020,0.057680,0.108200,0.611900,-0.788100,0.066830 -0.016830,0.075050,0.190500,-0.257700,0.959500,-0.113500 0.109400,-0.248300,-0.699500,0.000000,-0.978500,0.206300 -0.054380,-0.220100,0.051460,-0.589800,-0.797600,0.126200 0.202300,-0.192700,0.147600,0.022330,-0.942900,0.332400 -0.059660,-0.220200,0.024140,-0.650700,-0.750100,0.117900 -0.174500,0.108200,0.125200,0.096190,-0.961400,0.257900 0.131200,0.163800,0.213100,-0.025000,0.971900,-0.234200 -0.596100,-0.128300,0.315200,-0.007868,0.077360,0.997000 0.809500,-0.167800,0.177300,0.024200,-0.950400,0.310000 -0.092470,-0.167000,-0.094370,-0.976800,-0.213100,-0.019890 -0.874900,-0.175400,0.140600,-0.031740,-0.943000,0.331400 -0.048810,-0.230200,-0.608300,-0.315900,-0.942900,0.105700 -0.198800,-0.407800,0.357000,-0.370000,-0.929000,-0.010460 0.159100,0.135300,0.229200,-0.000043,-0.966900,0.255300 -0.229500,0.077170,-0.013530,-0.024310,0.685600,-0.727600 0.196900,-0.246400,-0.690500,0.000000,-0.979000,0.203600 -0.076980,0.002718,0.048280,0.862500,-0.492500,0.116400 -0.086750,0.001216,0.103000,-0.911000,0.401300,-0.094390 0.021250,-0.202600,0.239300,0.255900,-0.945000,0.203800 -0.050770,0.008604,0.094740,0.165600,-0.106800,-0.980400 0.754700,-0.148800,0.244900,0.024140,-0.965400,0.259500 -0.010540,-0.116100,0.497000,-0.109900,-0.873700,0.473900 -0.168000,-0.139200,0.648700,-0.457100,0.251500,-0.853100 0.213300,0.080140,-0.002629,0.014910,0.974800,-0.222600 0.008591,-0.247800,-0.030670,-0.111900,0.985500,-0.127800 -0.541400,-0.123900,0.310000,0.026870,0.977700,0.208500 0.098960,-0.137900,0.284700,-0.007970,0.975500,-0.219800 0.005476,-0.280800,-0.889900,-0.015310,0.972900,-0.230800 -0.825800,-0.145200,0.186200,0.030750,0.932200,-0.360700 0.202500,0.075590,-0.010090,-0.044720,-0.070120,-0.996500 -0.831200,0.083100,0.052600,0.000000,-0.953100,0.302600 -0.398800,0.080340,0.043350,0.000000,-0.964000,0.265900 -0.054030,-0.206600,-0.552900,-0.695900,0.670900,-0.256200 0.012800,0.087440,0.480400,0.464500,0.210000,0.860300 -0.037810,0.061010,0.433400,0.941100,0.181200,0.285500 0.092040,0.009949,0.289200,-0.952300,-0.289600,0.096380 0.040000,0.075330,0.194700,0.610600,0.778700,-0.143900 -0.339100,-0.157700,0.196700,0.030590,0.938000,-0.345400 0.815100,-0.166200,0.145300,-0.023150,0.883600,-0.467700 0.016870,0.018570,0.287300,-0.000072,-0.978300,0.207100 -0.042280,-0.094890,0.513000,0.462900,0.779800,-0.421500 -0.026720,-0.202600,0.233800,-0.281200,-0.939600,0.195100 0.514500,-0.180800,0.132600,-0.028520,0.883400,-0.467800 0.064480,-0.069380,0.525500,-0.717900,0.582800,-0.380800 0.045390,0.078480,0.420100,0.687300,-0.725900,0.024490 -0.022290,-0.207900,-0.680700,-0.718900,0.594400,-0.360500 0.082410,-0.158700,-0.289100,0.984100,0.113100,-0.136800 -0.171400,0.111500,0.277800,-0.690700,-0.680800,0.243700 -0.049260,0.081370,0.327200,-0.147600,0.988500,-0.032820 0.142200,-0.230200,-0.613900,0.000030,-0.979000,0.203700 -0.103900,-0.218700,-0.559300,0.000000,-0.978500,0.206100 -0.126000,-0.131200,0.632800,0.597200,-0.488200,0.636400 -0.338800,-0.151000,0.281600,-0.032230,-0.969800,0.241800 -0.071650,-0.154800,-0.369500,-0.975200,0.191400,-0.111400 0.014300,-0.258400,-0.129200,-0.186600,0.979300,-0.077860 0.442900,-0.142600,0.299400,0.023600,-0.973900,0.225500 0.847700,-0.117900,0.299600,-0.036250,0.989900,-0.137200 0.031940,0.025720,0.642300,0.545500,0.150900,0.824400 -0.098410,-0.171100,0.162800,-0.877800,0.477300,-0.041900 -0.093380,-0.063040,-0.025850,0.968700,-0.227700,0.098980 0.044970,-0.259900,-0.307200,0.608400,-0.793600,0.005839 0.163600,0.119600,0.306900,-0.771000,0.617700,-0.155100 0.140400,0.094780,0.320000,-0.805100,0.327600,-0.494500 0.120600,0.069030,0.339000,0.740800,-0.671700,-0.004786 0.054000,-0.206000,-0.552200,0.642500,0.719200,-0.264600 -0.733300,-0.149600,0.182700,0.031440,0.929900,-0.366500 -0.568700,-0.170800,0.184900,-0.032580,-0.952100,0.304000 -0.081670,0.039460,0.480500,0.926600,-0.370500,-0.064880 0.189700,0.126700,0.222700,0.768100,-0.624200,0.143000 0.087300,-0.179800,0.023510,0.941800,-0.336000,0.006182 -0.191100,-0.189900,0.136300,0.030390,0.878200,-0.477300 -0.209000,-0.361900,0.355600,-0.968100,-0.243000,-0.060960 -0.129500,-0.096910,0.640800,-0.467600,0.259700,-0.844900 0.061630,-0.171900,0.250100,-0.881500,0.416900,-0.221700 0.050600,0.058220,0.289300,0.776200,-0.480100,-0.408800 -0.104900,-0.036570,0.261500,-0.995600,0.091840,-0.016400 -0.659100,-0.139200,0.220300,0.001490,0.958800,-0.284000 -0.268000,-0.160900,0.194500,0.032120,0.935800,-0.350900 -0.568500,-0.138800,0.300700,-0.031430,-0.974000,0.224600 0.662900,0.024560,0.123900,0.998900,0.014730,0.045470 -0.094720,-0.040190,0.059100,0.966000,-0.249500,0.067750 -0.081880,0.012310,0.124500,0.881500,-0.458300,0.113500 0.069550,-0.220200,-0.061340,0.785200,-0.614300,0.078470 -0.184700,-0.340000,0.298900,0.484900,0.623100,-0.613700 -0.084520,0.042590,0.332600,0.874500,-0.483800,0.033490 0.070550,-0.157800,-0.366400,-0.982300,-0.150300,0.111600 -0.038790,-0.161000,-0.533500,-0.763000,0.589800,-0.264300 0.035100,0.009909,-0.069380,0.462600,0.715800,-0.523100 -0.617800,-0.135200,0.309100,-0.026990,-0.950200,0.310500 0.025120,-0.112200,0.495000,-0.253000,0.839100,-0.481500 -0.814900,-0.125100,0.251300,0.031550,0.971300,-0.235700 -0.088810,0.033200,0.294500,-0.918100,0.392000,-0.058770 -0.186600,0.129900,0.272200,0.289800,-0.618100,-0.730700 -0.050020,-0.020080,-0.128600,-0.578100,0.777600,-0.247500 -0.054310,-0.247600,-0.278600,0.755300,0.653600,-0.047490 -0.049610,-0.233600,-0.042510,0.576100,0.812400,-0.090530 0.055610,-0.122800,-0.386200,-0.852700,-0.481100,0.203500 -0.093070,0.026570,0.322000,-0.935000,0.352500,-0.038100 -0.094270,-0.072430,0.636200,0.417300,-0.313400,0.853000 0.024940,0.052690,0.297800,0.682300,-0.529500,0.504100 -0.026890,0.034810,0.117700,0.007525,-0.978500,0.206300 0.060640,0.063520,0.257600,0.690300,0.710400,-0.136900 0.015830,-0.037860,-0.229700,0.191100,0.935800,-0.296300 -0.584800,-0.150900,0.250500,-0.032470,-0.964100,0.263500 -0.716300,-0.183500,0.132900,-0.031760,-0.939200,0.342000 -0.096020,-0.145100,-0.017370,0.978900,0.202900,0.022040 -0.010540,-0.057590,-0.292000,-0.151900,0.940800,-0.303100 -0.055130,0.041920,0.151800,-0.647700,-0.693000,0.316700 -0.147600,-0.143900,0.318300,-0.008899,-0.151300,0.988400 0.003383,-0.117300,-0.624400,0.999700,0.022090,-0.004241 -0.040060,0.063330,0.453000,-0.999900,-0.014100,0.003257 -0.035700,-0.214300,0.139800,0.406300,0.902200,-0.144700 0.069660,-0.052940,0.008378,-0.921000,0.220900,0.320800 0.049600,-0.054530,-0.032640,-0.740500,0.167800,0.650700 0.058120,0.072160,0.513800,0.672800,0.728600,0.128400 -0.153200,-0.211300,0.104300,0.024960,0.483600,-0.874900 0.053080,-0.247000,-0.219500,-0.704800,0.708900,-0.027000 0.064960,-0.225300,-0.353800,-0.935200,0.352400,0.035690 0.103300,-0.111600,0.092030,0.992300,-0.123500,0.005572 -0.065650,-0.038720,-0.139600,-0.747400,0.621800,-0.234200 0.075150,0.055420,0.465900,-0.844500,-0.529500,-0.080220 -0.038080,-0.242200,-0.658900,-0.469400,-0.878800,0.086190 0.015470,0.104900,0.382200,0.785800,0.613400,-0.079550 0.043750,-0.278700,-0.843700,0.000000,-0.978500,0.206200 0.164200,-0.138200,0.274600,-0.072930,0.982800,-0.169500 -0.061350,-0.033350,-0.025190,-0.868100,-0.074430,-0.490800 -0.503100,0.110700,0.134700,-0.000144,-0.965100,0.261800 0.081750,-0.194500,0.009843,0.891500,-0.450000,0.051800 -0.026410,-0.270300,-0.501800,0.492400,0.869900,0.029660 -0.205900,-0.287200,0.360100,-0.967900,0.248500,-0.038610 0.180800,-0.266100,0.323800,-0.129600,0.841900,-0.523800 -0.125700,-0.167900,0.244000,-0.032330,-0.962400,0.269700 -0.596000,-0.189500,0.127700,-0.032310,-0.937600,0.346200 -0.024600,-0.269200,-0.330800,0.365600,0.930500,-0.022610 -0.207400,-0.238600,-0.653300,-0.000092,-0.978400,0.206700 -0.251600,-0.188600,0.135300,0.040820,0.873100,-0.485700 -0.922800,0.144500,0.163600,-0.896000,0.153900,0.416600 -0.105200,-0.046400,0.228800,-0.996800,0.078350,-0.015560 0.064870,-0.163700,0.264400,-0.979300,0.184000,0.083860 0.038740,-0.248900,-0.739900,-0.000111,0.978700,-0.205500 0.585200,0.132100,0.216900,0.000000,-0.966700,0.255900 0.196900,-0.275600,-0.866600,0.000000,0.978500,-0.206200 -0.185500,-0.270800,-0.843800,0.005494,0.975700,-0.218900 -0.003023,-0.035280,-0.733700,-0.989200,0.146700,-0.003135 0.184200,0.116700,0.206300,0.360200,-0.919800,0.155600 -0.201600,-0.405700,0.369600,-0.687700,-0.722400,0.072430 -0.772500,-0.116300,0.308900,0.030240,0.991900,0.123600 -0.051540,0.073020,0.347200,-0.750900,-0.660400,0.001715 -0.950300,0.074240,0.011230,-0.000004,-0.993600,0.112700 0.743800,0.134000,0.123900,-0.020200,0.921200,-0.388700 -0.639800,-0.138000,0.294200,-0.032150,-0.973500,0.226600 -0.049210,0.172200,0.272500,0.000018,0.996700,-0.080660 -0.891200,-0.156600,0.195700,-0.031920,-0.953800,0.298700 0.782000,-0.152900,0.228000,0.023570,-0.961500,0.273600 -0.237800,-0.193600,0.149900,-0.030890,-0.943100,0.331100 0.001288,-0.341300,-0.626700,0.187000,0.785500,-0.589900 0.093150,-0.036290,0.046240,-0.956500,-0.281000,0.078850 0.074740,-0.212700,-0.115700,-0.883400,0.467800,-0.028300 0.350100,-0.150800,0.211700,-0.027050,0.968400,-0.247900 0.486800,-0.197200,0.105800,-0.020390,0.799600,-0.600200 0.426600,0.106000,0.064300,-0.010050,0.881900,-0.471300 0.153100,0.093660,0.038300,-0.000006,0.927200,-0.374500 0.716500,-0.120300,0.309500,-0.005951,0.986600,0.163300 -0.079590,-0.200200,-0.176000,0.944300,0.329000,0.002230 0.382900,-0.154300,0.198800,-0.013110,0.937400,-0.348000 0.760200,0.172600,0.283500,0.000000,0.999800,-0.018290 0.820300,0.134000,0.123900,-0.000065,0.924100,-0.382100 0.689100,0.089140,0.026890,-0.000005,0.941400,-0.337200 -0.551900,0.129600,0.207400,0.000000,-0.966800,0.255600 -0.003240,-0.106200,-0.854000,-1.000000,0.000000,0.000000 0.623400,0.097440,0.091620,0.000000,-0.945100,0.326800 0.547300,0.129600,0.207400,0.000000,-0.966800,0.255600 -0.634400,0.109300,0.129700,-0.000008,-0.964300,0.264600 -0.003240,-0.128100,-0.553300,-1.000000,0.000003,-0.000003 0.169500,-0.265200,-0.779900,0.000000,-0.977800,0.209500 -0.344100,0.130700,0.116000,0.000000,0.921300,-0.388800 -0.213300,-0.256600,-0.776900,-0.000036,0.978500,-0.206200 0.186000,-0.276400,-0.870400,0.000000,0.979300,-0.202400 0.252000,0.108100,0.125200,0.000000,-0.962500,0.271300 0.322700,0.141000,0.250400,0.000000,-0.967400,0.253200 0.120300,0.094710,0.083960,0.000004,-0.939100,0.343500 -0.185900,0.081570,0.047670,-0.000042,-0.958400,0.285500 0.820700,-0.173800,0.131000,-0.037060,0.886000,-0.462100 0.613000,0.129600,0.207400,0.000000,-0.966800,0.255600 -0.432000,0.114900,0.151500,0.000000,-0.971300,0.238000 -0.896900,0.086110,0.018110,0.000000,0.950700,-0.310000 0.514500,0.135300,0.229200,0.000000,-0.966900,0.255300 0.612500,0.151500,0.290100,0.000000,-0.966700,0.255800 0.535900,0.157200,0.187900,-0.000085,0.954600,-0.297800 0.202300,0.165100,0.218300,-0.015270,0.977900,-0.208300 0.090390,-0.150300,-0.170700,-0.993700,0.093070,0.061660 -0.672500,-0.165400,0.190700,-0.031700,-0.954100,0.297800 0.069760,-0.214700,-0.006692,0.762700,-0.643200,0.068110 0.051450,-0.189500,0.223700,-0.594300,0.791100,-0.145100 -0.027960,-0.261100,-0.208600,0.350300,0.933500,-0.076900 0.082760,-0.105700,0.398700,-0.887000,0.441200,-0.136700 -0.075070,0.009445,0.096180,0.621600,-0.231200,-0.748400 0.080140,-0.198800,-0.257900,0.968800,-0.238500,-0.067300 -0.046650,-0.002282,0.630800,-0.657500,0.162700,0.735700 0.031100,0.085310,0.290900,-0.399400,0.908500,0.122900 -0.088180,-0.176200,-0.059230,0.954400,0.298300,-0.011280 0.099200,-0.125000,-0.074520,0.998900,-0.016520,-0.042810 0.092980,-0.167600,-0.088390,0.973800,-0.226400,-0.021210 0.010790,-0.082840,0.554800,0.114500,-0.832300,0.542400 0.103900,-0.018740,0.370900,0.995800,0.091280,-0.003488 0.155000,0.110500,0.312600,-0.783200,0.558900,-0.272300 -0.661700,-0.137400,0.294000,-0.031930,-0.973000,0.228700 0.415900,-0.167300,0.164500,-0.019360,0.899000,-0.437600 -0.105500,0.027950,0.202600,0.747400,0.637200,-0.188200 -0.010930,-0.017920,0.105500,0.000009,0.111800,0.993700 0.003237,-0.062440,-0.679000,0.999800,-0.015270,0.015280 0.054700,-0.251000,-0.712500,-0.000030,-0.978500,0.206200 0.049230,-0.242500,-0.672200,-0.000640,-0.978500,0.206100 -0.054680,-0.313400,0.346600,0.000000,0.924100,-0.382200 -0.032800,0.143300,0.147400,-0.004814,0.941300,-0.337700 -0.010930,0.141000,0.250400,0.000000,-0.967400,0.253200 -0.098430,-0.240600,-0.663200,0.000000,-0.979000,0.203700 0.081580,-0.305100,0.407100,0.000000,0.738500,0.674300 0.000003,0.120800,0.093700,-0.000120,0.899500,-0.436900 -0.005456,-0.346900,0.312300,0.000000,-0.976300,0.216300 -0.098430,-0.225600,-0.591700,0.000000,-0.979100,0.203400 0.019620,-0.019380,0.105100,0.000000,-0.378000,-0.925800 -0.071080,0.104400,0.113000,0.000000,-0.956100,0.293000 -0.426400,-0.182600,0.134600,0.031080,0.877900,-0.477900 -0.000001,-0.285400,-0.913300,-0.005780,0.980100,-0.198300 0.092990,0.153300,0.175100,0.042340,0.948500,-0.313900 -0.552300,0.171500,0.261600,-0.000005,0.996600,-0.081800 0.306200,-0.147200,0.293700,0.023310,-0.972900,0.230100 0.002237,-0.067930,-0.728300,0.999500,-0.020240,0.025320 0.093380,-0.163900,-0.000854,0.959100,-0.279800,0.041970 0.918800,-0.146400,0.185500,-0.064520,0.932900,-0.354200 -0.530600,-0.167600,0.157500,0.042230,0.891800,-0.450400 -0.090180,-0.166000,-0.164900,-0.989200,-0.141600,-0.038550 -0.120100,-0.210400,-0.555100,0.016310,0.978200,-0.207100 0.880600,-0.134100,0.222400,-0.023680,0.956000,-0.292300 -0.524900,-0.169000,0.195000,-0.031680,-0.954400,0.296900 0.639900,-0.165900,0.155500,-0.017250,0.906600,-0.421600 -0.448300,-0.157200,0.244100,-0.031930,-0.963000,0.267500 -0.091730,-0.149700,0.157400,-0.983400,-0.176800,0.040180 -0.229800,-0.173000,0.168000,0.036290,0.905300,-0.423300 -0.743800,-0.155600,0.167600,0.031800,0.915600,-0.400900 0.025500,-0.272200,-0.378400,0.363700,-0.931200,0.023210 0.541400,-0.129000,0.278100,-0.043300,0.986200,-0.159900 0.787500,0.156500,0.188100,0.010010,0.952500,-0.304300 0.459300,-0.181200,0.162600,0.023180,-0.947700,0.318400 -0.623500,-0.168800,0.148000,0.030940,0.894600,-0.445700 0.103800,-0.163300,0.249700,0.023560,-0.964800,0.261800 0.267900,-0.175200,0.195300,0.022790,-0.954800,0.296200 -0.350000,0.108200,0.067750,-0.000003,0.891200,-0.453500 0.590600,-0.137700,0.305100,0.022490,-0.969800,0.242700 0.787500,0.079330,-0.006580,0.000143,0.987700,-0.156500 -0.973400,0.093660,0.038300,-0.000027,0.919500,-0.393100 -0.399200,0.091930,0.034610,-0.020370,0.930300,-0.366200 0.749200,0.086140,0.018220,-0.000105,0.950800,-0.310000 0.273400,0.145700,0.155100,-0.004982,0.937000,-0.349200 -0.875000,0.107900,0.067920,-0.010160,0.894300,-0.447500 0.188700,-0.363100,0.316400,0.997300,-0.024360,-0.068650 0.421100,0.120600,0.173300,0.000000,-0.967400,0.253400 0.142200,-0.305500,0.371500,0.000000,0.970100,-0.242500 -0.257000,0.172100,0.272500,0.005078,0.998200,-0.060430 0.475900,-0.138300,0.242400,-0.003150,0.961700,-0.274000 0.273400,0.150400,0.286300,0.000000,-0.966100,0.258200 -0.721400,0.161900,0.204700,-0.015280,0.973500,-0.228400 -0.760100,0.111800,0.075010,-0.000001,0.895600,-0.444900 -0.694500,0.091870,0.076320,0.000011,-0.935100,0.354500 -0.557800,0.111800,0.075010,0.000000,0.895600,-0.444900 0.924200,0.087100,0.063960,0.000000,-0.934900,0.354900 -0.754700,0.073010,-0.011900,0.000000,-1.000000,-0.000851 -0.672200,0.078420,0.035680,0.000000,-0.975300,0.220800 -0.694500,0.132100,0.216900,0.000015,-0.966700,0.255900 -0.003240,-0.133500,-0.788400,-1.000000,0.000000,0.000000 -0.497200,0.141700,0.143200,0.000013,0.935200,-0.354100 0.732800,0.097440,0.091620,0.000000,-0.945100,0.326800 0.924200,0.097440,0.091620,0.000000,-0.945100,0.326800 0.661700,0.116200,0.156700,0.000000,-0.968900,0.247400 0.295300,0.109300,0.129700,0.000082,-0.964300,0.264700 -0.836700,0.097440,0.091620,0.000000,-0.945100,0.326800 0.826200,0.127500,0.108600,-0.000007,0.899200,-0.437500 -0.207800,-0.252900,-0.758800,0.000000,0.977600,-0.210500 0.109400,-0.335300,0.309700,-0.005051,0.763800,-0.645500 -0.147700,-0.246100,-0.722100,0.000000,0.979200,-0.203000 0.218800,-0.264400,-0.776100,-0.000013,-0.978500,0.206300 -0.003240,-0.160900,-0.854000,-1.000000,0.000000,0.000000 0.246100,0.172000,0.294200,0.000000,0.995500,0.094710 -0.328100,0.123000,0.182400,0.000000,-0.966100,0.258200 0.328600,0.079330,0.039540,0.000000,-0.970200,0.242400 -0.402500,0.073830,0.007119,0.000000,-0.996200,0.087490 -0.224200,0.148000,0.277200,0.000001,-0.967400,0.253400 0.404700,0.144700,0.264500,0.000000,-0.966100,0.258300 -0.158600,-0.233800,-0.630700,-0.000006,-0.977900,0.208900 -0.421100,0.141000,0.250400,0.000000,-0.967400,0.253200 -0.350000,0.120600,0.173300,0.000000,-0.967400,0.253400 -0.300800,0.143600,0.260500,0.000000,-0.966200,0.257700 0.158600,-0.268000,-0.826000,0.000000,0.979200,-0.203000 -0.175000,-0.290200,-0.898300,0.000000,-0.979000,0.203700 -0.191600,-0.281200,0.370900,1.000000,0.000037,-0.005331 0.158600,-0.222200,-0.613300,0.000000,0.979300,-0.202600 0.750600,0.073240,-0.021740,-0.000229,-0.997500,-0.070980 -0.738300,0.076420,0.025960,0.000000,-0.983900,0.178800 -0.678100,0.141000,0.250400,0.000000,-0.967400,0.253200 -0.660400,0.074240,0.011230,0.000000,-0.993600,0.112700 0.760200,0.083760,0.010290,0.000000,0.964200,-0.265300 0.940600,0.101700,0.104200,0.002806,-0.950300,0.311200 0.093970,-0.088990,0.381700,0.943300,-0.318600,0.092880 -0.065670,-0.216400,-0.401700,-0.978600,-0.195200,-0.065260 -0.016400,-0.220600,-0.605600,0.000036,0.977600,-0.210400 -0.041870,0.016760,0.270000,-0.066120,-0.740200,-0.669200 0.596100,0.155600,0.184200,0.060380,0.938100,-0.341100 0.743900,-0.174800,0.132400,-0.031420,0.890200,-0.454500 -0.158600,-0.271000,-0.807200,0.000000,-0.977800,0.209600 -0.820300,0.114900,0.151500,0.000000,-0.971300,0.237900 -0.618000,0.117200,0.160600,0.000000,-0.967000,0.254700 0.383300,-0.137500,0.315200,0.028100,-0.403300,0.914600 -0.082030,-0.213000,-0.532000,0.000000,-0.978500,0.206100 -0.175000,-0.338900,0.348500,-0.000238,-0.976300,0.216400 0.071950,0.037530,0.167500,0.773400,0.613500,-0.159900 0.536400,0.080340,0.043350,0.000000,-0.964000,0.265900 0.016430,-0.221600,-0.605400,0.030390,0.977100,-0.210400 -0.027350,-0.220900,-0.605500,0.004561,0.966600,-0.256100 -0.070970,0.039430,0.176400,0.770500,-0.626600,0.117000 -0.021240,-0.256800,-0.704000,0.884600,-0.127400,0.448700 0.040500,0.007038,-0.053340,-0.642200,0.183600,0.744200 0.443000,-0.182000,0.133700,-0.042620,0.883800,-0.466000 0.056470,-0.226700,-0.465900,-0.972800,0.223700,0.060480 0.150500,-0.276700,0.293500,0.942200,-0.064920,-0.328700 -0.011340,-0.245600,-0.017020,0.141200,0.983100,-0.116300 0.913600,-0.137800,0.208900,-0.044750,0.939300,-0.340200 0.448400,-0.147700,0.277400,0.023550,-0.970400,0.240300 -0.072820,-0.194100,-0.345600,0.982200,0.171300,0.077540 -0.732800,0.080920,0.001396,0.020200,0.956300,-0.291800 -0.677900,-0.176000,0.131300,0.047860,0.863100,-0.502800 0.645300,0.170100,0.250900,0.004995,0.994100,-0.108100 0.101200,-0.095520,-0.022630,0.993800,0.090920,-0.064230 -0.103600,-0.046900,0.256500,0.999800,-0.017230,0.002705 -0.069870,-0.094880,-0.252700,0.906800,-0.388000,0.164900 0.097180,-0.135500,0.081080,-0.972200,0.232400,-0.027460 -0.382900,-0.202100,0.105200,0.028490,0.842400,-0.538100 -0.053450,-0.209600,0.104400,0.605400,0.789900,-0.097910 0.196000,-0.330400,0.338000,0.966600,0.013340,-0.255900 -0.048920,-0.252800,-0.227200,-0.624800,-0.779000,0.053160 -0.371800,-0.191700,0.121900,0.006696,0.868800,-0.495100 -0.131100,0.117000,0.086010,0.020690,0.905600,-0.423700 -0.519100,0.160800,0.201000,0.039020,0.960400,-0.276000 -0.268000,0.075430,-0.009979,0.045500,-0.138000,-0.989400 -0.058210,0.039780,0.113400,0.636700,-0.754500,0.159000 -0.891400,0.089140,0.026890,0.004493,0.949300,-0.314500 0.167600,0.164200,0.586500,0.489000,-0.630900,-0.602400 0.017430,-0.193400,-0.657500,0.513700,0.790400,-0.333700 -0.033240,0.034720,0.057600,-0.083080,0.113400,-0.990100 0.079230,0.053980,0.381800,-0.843500,-0.537100,0.008784 -0.059690,-0.269900,-0.840000,0.000000,0.978400,-0.206900 -0.683700,-0.138100,0.220400,0.031930,0.953900,-0.298400 0.065660,-0.291800,-0.939400,0.008798,0.976700,-0.214400 0.169500,0.075530,0.020700,0.000000,-0.988000,0.154200 -0.421100,0.145900,0.155000,-0.004993,0.943900,-0.330100 0.333600,0.155500,0.184200,-0.025510,0.960200,-0.278100 0.229700,0.151600,0.171300,0.015430,0.932700,-0.360300 0.198700,-0.329700,0.382200,0.965100,-0.013810,0.261700 0.377300,-0.186900,0.151700,0.023530,-0.945000,0.326200 -0.639800,-0.178300,0.155000,-0.031810,-0.944800,0.326200 -0.776500,-0.156100,0.209700,-0.031910,-0.956800,0.289000 0.093210,-0.052280,0.466600,0.943800,-0.225900,0.241400 -0.018650,-0.186800,-0.631300,0.532500,-0.783500,0.320200 0.142200,-0.272000,-0.848200,0.000000,0.990000,-0.141100 -0.552300,0.111700,0.138700,0.000000,-0.967000,0.254800 0.148800,-0.251400,0.384400,0.901600,0.266700,0.340500 -0.196700,-0.259700,0.336200,-0.100300,0.884200,-0.456100 0.147700,-0.346900,0.312300,0.000000,-0.976300,0.216300 0.084110,0.023830,0.523300,0.936600,0.290200,0.196600 -0.116400,0.065830,0.354300,-0.766400,-0.573500,0.289500 -0.382800,0.146000,0.155000,0.000000,0.939400,-0.342800 0.699900,-0.183600,0.138500,0.023110,-0.941300,0.336900 -0.020180,0.105700,0.500400,0.069060,-0.730700,-0.679100 0.754700,-0.170300,0.173600,0.023150,-0.950900,0.308500 0.694500,-0.175400,0.162500,0.023190,-0.947800,0.318100 0.196800,-0.158100,0.260800,0.023250,-0.967200,0.252800 -0.377300,0.139900,0.246500,0.000000,-0.966800,0.255700 0.689200,-0.126000,0.273100,0.002415,0.971700,-0.236000 0.158600,-0.277400,-0.875600,0.000000,0.979200,-0.202900 -0.114700,0.035760,0.221200,-0.737600,-0.652100,0.175200 -0.021040,-0.271300,-0.365500,0.304800,0.951700,-0.035990 0.021750,0.048700,0.098970,0.506800,0.133500,0.851600 0.067550,-0.221500,-0.329200,-0.941500,0.333600,0.047310 -0.191200,0.167900,0.236100,0.029390,0.978000,-0.206500 -0.524500,0.167700,0.231800,-0.014900,0.988700,-0.149200 -0.054680,-0.245300,-0.722300,-0.005065,0.978100,-0.208000 0.853300,-0.137300,0.214200,-0.023470,0.951500,-0.306700 -0.063340,-0.120100,0.435500,-0.646700,-0.696100,0.311800 -0.061990,-0.022240,-0.104300,-0.704100,0.671700,-0.230200 -0.104300,-0.096830,0.120200,-0.997000,-0.077730,0.001136 0.029600,-0.008374,-0.056860,-0.408800,0.181900,0.894300 0.093100,-0.134400,0.310500,0.235500,0.970600,0.050340 0.087070,0.039240,0.383700,-0.908100,-0.417700,0.029890 0.278900,0.114900,0.151500,0.000000,-0.971300,0.237900 0.317200,0.096090,0.087790,0.000000,-0.942000,0.335700 0.189300,0.131400,0.250100,0.753400,-0.644000,0.132600 -0.055090,-0.238100,-0.113700,0.644000,0.762000,-0.067820 -0.060140,-0.183500,-0.471500,-0.978600,0.154600,-0.135400 0.091490,-0.073770,-0.088270,0.966800,0.231300,-0.109000 0.093360,-0.092560,-0.106100,0.978100,0.165900,-0.125500 0.306300,-0.154100,0.204000,-0.033200,0.944700,-0.326200 0.131300,-0.246400,-0.690500,0.000000,-0.979000,0.203700 0.144700,-0.252100,0.368500,-0.672600,-0.081300,-0.735500 -0.053110,-0.245500,-0.396600,0.879000,0.475500,0.035430 0.000064,0.064720,0.130000,-0.034140,-0.986100,0.162700 -0.287600,0.073830,0.007119,0.000000,-0.996200,0.087490 -0.142200,-0.346900,0.312300,0.000000,-0.976300,0.216300 -0.094870,-0.050620,0.446900,-0.967500,-0.208900,0.142100 0.240600,-0.192200,0.146200,0.023070,-0.943500,0.330600 -0.229700,0.158200,0.191900,0.000856,0.947200,-0.320600 0.169500,0.158200,0.191900,0.005445,0.949200,-0.314600 0.443800,0.073210,-0.002235,0.000002,-0.999000,0.044820 0.075960,-0.072510,-0.184800,0.894900,0.419000,-0.154000 0.448400,0.165100,0.218300,-0.000043,0.971000,-0.239200 -0.776600,0.096090,0.087790,0.000001,-0.942000,0.335700 -0.918700,0.099080,0.096450,0.000000,-0.946300,0.323400 -0.034540,0.087440,0.494300,-0.044190,0.937900,0.344200 -0.127500,0.054140,0.227500,-0.679400,0.015330,-0.733600 0.235200,-0.275100,-0.826800,0.000000,-0.979100,0.203400 0.063390,-0.046430,-0.013440,-0.913300,0.083940,0.398500 -0.103900,-0.265200,-0.779900,0.000000,-0.977800,0.209500 0.700000,0.124000,0.186300,0.000000,-0.966800,0.255700 0.059820,-0.024570,-0.118700,0.661400,0.709800,-0.242400 -0.098610,-0.061500,0.018380,-0.976800,0.197700,-0.082820 0.032820,-0.258600,-0.786100,-0.000084,0.977600,-0.210400 0.759700,-0.140700,0.275600,0.023340,-0.969300,0.244800 0.180400,-0.182000,0.180600,0.023170,-0.950700,0.309400 -0.306200,-0.189400,0.130100,0.024840,0.857900,-0.513100 0.093070,-0.024900,0.487800,0.947900,-0.190800,0.255100 -0.082820,-0.112700,-0.224100,-0.966000,0.220300,-0.135700 0.371900,0.156800,0.188000,-0.009869,0.962400,-0.271400 -0.073970,-0.128900,-0.312300,-0.953400,0.266500,-0.141300 -0.880500,0.077840,-0.017070,0.000000,0.988800,-0.149100 -0.082360,0.084390,0.056260,0.037040,-0.956000,0.291100 0.207800,-0.259400,-0.790000,0.000000,0.978500,-0.206300 0.891800,-0.138200,0.273000,0.035180,-0.966700,0.253700 0.000011,0.150400,0.167500,0.020470,0.947400,-0.319300 -0.009803,-0.012280,-0.061910,0.157200,0.213400,0.964200 -0.169600,-0.152600,0.229600,0.031760,0.948700,-0.314600 -0.024610,0.051440,0.396400,0.455600,0.229500,-0.860100 0.070320,0.052020,0.247300,0.791200,0.608500,-0.061220 -0.458900,0.134300,0.225400,0.000000,-0.966800,0.255600 0.289800,-0.158700,0.250000,0.023330,-0.965100,0.260900 0.683600,0.166200,0.223500,-0.000006,0.973700,-0.227800 -0.075960,0.023030,0.552300,0.936100,-0.310900,-0.164300 -0.924100,-0.177000,0.131400,-0.031780,-0.940000,0.339700 0.421000,-0.194500,0.127500,0.023130,-0.937800,0.346300 0.018050,0.097720,0.509400,0.705100,-0.328600,0.628400 0.092100,-0.081580,0.404000,-0.937100,0.330600,-0.111800 0.040690,-0.193000,-0.575800,-0.930800,-0.289600,0.223100 -0.065090,-0.162100,0.243800,0.999400,-0.030730,0.013880 -0.049700,0.052410,0.365500,-0.999500,0.006250,0.029460 0.959900,0.106800,0.096250,0.888200,0.061110,0.455500 0.142200,-0.254000,-0.726700,0.000000,-0.978500,0.206300 -0.474500,0.074240,0.011230,0.000000,-0.993600,0.112700 -0.028030,-0.083460,0.544100,0.337700,0.782800,-0.522700 0.103900,-0.229100,-0.608600,-0.000013,-0.978500,0.206200 0.120600,-0.183600,0.146200,-0.156300,0.881400,-0.445800 0.143300,0.081370,0.257900,-0.212200,-0.381300,0.899700 -0.355500,0.164000,0.213100,0.000000,0.974900,-0.222600 -0.382700,-0.186300,0.157000,-0.031780,-0.946400,0.321400 -0.262400,-0.197900,0.135600,-0.032120,-0.940400,0.338600 0.863600,-0.123200,0.266700,-0.047550,0.985000,-0.165700 -0.088670,-0.110600,0.360400,-0.915800,-0.379800,0.130300 -0.010510,0.062350,0.495000,-0.073660,-0.932400,0.353900 -0.388300,0.167500,0.232500,-0.011800,0.983100,-0.182600 -0.267400,-0.154000,0.214200,0.023280,0.950500,-0.310000 -0.946100,0.088890,0.068650,0.000061,-0.933000,0.359800 0.181200,-0.407400,0.374200,-0.082390,-0.967200,0.240200 -0.044810,0.085150,0.464000,-0.462000,0.886100,0.037260 -0.213400,-0.187600,0.139200,0.030890,0.882000,-0.470200 0.799000,-0.172000,0.165000,0.022130,-0.947300,0.319500 -0.781500,-0.126000,0.313600,-0.036670,-0.311500,0.949500 0.031160,-0.148400,0.413400,0.312100,-0.898300,0.309200 0.005190,-0.213400,0.200900,0.073810,-0.976500,0.202300 -0.040710,-0.262000,-0.491200,-0.738800,-0.671700,-0.054170 0.037480,-0.045640,-0.222200,-0.459700,-0.845200,0.272700 0.052370,0.067070,0.234900,0.648900,0.752500,-0.112300 -0.005248,0.084500,0.536600,0.012670,-0.725400,0.688200 0.042620,0.048720,0.091720,0.708900,0.689500,-0.148300 0.022020,0.057960,0.190400,-0.956300,0.258200,-0.137100 -0.070510,-0.137900,-0.335600,0.961200,-0.234600,0.145300 0.224200,0.074760,0.015340,0.000000,-0.991200,0.132200 -0.087490,0.124000,0.100700,0.000010,0.910900,-0.412700 -0.062960,0.027790,0.099440,0.530800,-0.199300,0.823700 -0.475800,0.088890,0.068650,0.000000,-0.933000,0.360000 0.063610,-0.082960,0.001286,-0.417900,0.876400,-0.239300 -0.158300,-0.296600,-0.929600,-0.036030,-0.995300,-0.089710 0.060710,0.065500,0.332300,-0.091590,-0.988500,0.120100 0.008414,0.107900,0.371200,-0.167400,0.970900,-0.171100 0.793000,0.140100,0.140000,-0.000169,0.916800,-0.399500 0.083350,-0.030950,-0.034010,0.901200,0.405900,-0.152000 0.087160,-0.044800,-0.048230,0.931100,0.345100,-0.118200 0.046570,-0.250700,-0.165100,0.557600,-0.827800,0.062090 0.005481,0.149400,0.282300,0.000000,-0.966200,0.257800 0.475800,0.146700,0.272200,0.000000,-0.967400,0.253300 0.098850,-0.065430,0.005935,0.974900,0.197300,-0.103300 -0.084020,-0.046440,0.497000,0.942500,0.269200,-0.198100 -0.503100,-0.191900,0.129700,-0.031680,-0.939400,0.341300 -0.634400,-0.127900,0.314900,-0.007255,-0.084950,0.996400 -0.663900,0.045120,0.218500,0.689200,-0.097220,0.718000 -0.069900,-0.052970,0.535800,0.830300,0.412900,-0.374400 0.005143,-0.185500,0.315400,0.081660,-0.954200,0.287800 -0.026110,-0.260300,-0.164500,-0.304600,-0.949500,0.075640 0.360900,0.162100,0.304300,0.000000,-0.063810,0.998000 -0.131200,-0.152400,0.304600,-0.033520,-0.972900,0.228600 -0.273000,0.107000,0.121400,0.000000,-0.960000,0.279800 0.235600,-0.282400,-0.861100,0.000051,-0.978400,0.206600 -0.240700,-0.194700,0.124700,0.025360,0.871000,-0.490600 -0.075440,-0.216100,-0.177800,-0.907100,-0.420900,0.004066 0.224200,0.156700,0.188100,0.010180,0.946100,-0.323800 0.888300,0.073470,0.002268,0.000000,-0.997800,0.065690 0.189300,-0.222800,-0.579200,0.160500,-0.860300,0.483800 0.030660,-0.233000,-0.689300,0.819500,0.512800,-0.256100 -0.229700,-0.266100,-0.783900,0.000000,-0.977900,0.208800 0.046460,-0.011760,-0.044770,-0.607400,0.204500,0.767600 0.027320,-0.213500,-0.569000,-0.060780,0.976700,-0.205800 -0.045870,-0.254200,-0.436700,0.791000,0.611300,0.023870 -0.051780,0.066330,0.557200,0.656700,-0.666300,-0.353300 -0.136700,0.143300,0.147400,0.004800,0.939000,-0.343800 0.092800,0.040230,0.365400,0.927800,-0.344200,0.144200 0.048290,-0.090580,-0.328300,-0.669100,-0.695600,0.261700 0.093530,-0.167900,0.168600,0.132100,0.278200,0.951400 0.047270,-0.077070,-0.301600,0.608100,0.750500,-0.259000 -0.104400,-0.095380,0.092400,-0.998400,-0.055810,-0.010760 -0.080750,-0.123000,-0.257800,-0.966900,0.219100,-0.130800 -0.093430,-0.051270,0.642900,0.200200,-0.035530,0.979100 0.018720,0.119800,0.511000,0.633200,0.584100,0.507800 0.073840,0.070610,0.613000,0.479200,-0.420900,0.770200 -0.765600,0.073010,-0.011900,-0.000017,-1.000000,-0.000863 -0.067070,-0.168300,0.273800,-0.642100,-0.747800,0.169000 -0.587800,-0.193700,0.116900,-0.029880,-0.935900,0.350900 -0.240600,-0.266100,-0.783900,0.000000,-0.977900,0.208800 -0.096890,-0.177000,0.172500,0.939900,-0.281800,0.192900 -0.415600,-0.169300,0.206100,-0.032290,-0.956600,0.289800 -0.005252,-0.003216,0.649000,-0.107000,-0.335300,0.936000 0.074980,-0.187000,0.129700,0.774000,-0.620400,0.126600 -0.902000,-0.136100,0.266100,-0.163400,-0.942400,0.291800 0.036410,-0.247900,-0.093520,-0.428600,0.898600,-0.094230 0.099800,0.006844,0.392400,0.973900,0.224000,0.036460 0.027350,0.021140,0.299500,0.019140,-0.980400,0.196000 -0.667100,-0.169500,0.178700,-0.031300,-0.950900,0.308000 -0.092900,-0.054830,-0.003990,0.973200,-0.219900,0.067620 0.174200,0.180200,0.577300,0.417200,-0.563700,-0.712900 -0.021840,-0.227900,-0.640500,0.093690,0.985600,-0.140900 -0.086360,-0.166400,0.128200,-0.894400,-0.445300,-0.042210 0.053730,-0.130100,-0.410000,-0.845700,-0.489200,0.213000 -0.836700,0.083760,0.010290,0.000003,0.968800,-0.248000 -0.388300,0.130700,0.211800,0.000000,-0.966800,0.255400 0.902300,-0.147000,0.238800,0.023730,-0.963700,0.266100 -0.104800,-0.025720,0.311200,-0.994900,0.099590,-0.017980 -0.046450,-0.246100,-0.139400,0.559400,0.826800,-0.058490 0.091050,-0.061870,0.463500,0.933900,-0.299800,0.194700 -0.160400,-0.268300,0.304900,-0.781400,0.623900,0.010090 0.094210,0.023010,0.348500,0.946600,0.321600,-0.024090 0.068930,-0.131300,0.382000,-0.726600,0.654100,-0.210100 0.082070,-0.092490,0.444100,0.872200,-0.448200,0.195900 0.059060,0.088830,0.452800,0.548000,-0.618600,0.563100 0.027360,0.136800,0.131600,0.040630,0.925800,-0.375700 -0.907800,0.081570,0.047670,0.000000,-0.958400,0.285500 -0.065530,-0.120100,-0.332400,0.929700,-0.330300,0.163200 -0.027910,-0.227800,-0.683600,0.899600,0.134000,0.415700 -0.002125,-0.379900,-0.654500,-0.207200,-0.822800,0.529200 -0.054840,0.074990,0.370700,-0.119900,-0.977300,0.174500 -0.072280,-0.033170,-0.098750,-0.819800,0.540500,-0.189300 0.015310,0.046950,0.108700,-0.992400,-0.115100,-0.042880 0.037680,-0.058990,0.572800,-0.453400,0.720900,-0.524100 -0.727500,-0.166600,0.181200,-0.031560,-0.951000,0.307700 -0.003276,-0.100700,-0.569700,-1.000000,0.004435,-0.003870 0.086860,-0.164300,0.108600,-0.924600,0.376400,-0.058730 0.003438,-0.243000,-0.799400,0.990200,0.003044,-0.139900 -0.179200,-0.305500,0.335100,-0.052710,-0.627700,-0.776700 -0.190700,-0.367000,0.312200,0.985600,0.092710,0.141300 -0.105800,-0.111100,0.628900,0.505100,-0.351800,0.788100 0.022160,0.037770,0.104500,0.458000,0.874400,0.160100 0.020460,0.085960,0.368600,0.168400,-0.188600,-0.967500 -0.087060,-0.175100,-0.151000,0.979600,0.198700,0.031080 0.075830,-0.154500,-0.326000,-0.975700,-0.148600,0.160900 0.079440,-0.149500,-0.285800,-0.976500,-0.151200,0.153800 -0.093220,-0.158800,-0.052580,0.981600,0.190700,-0.010880 -0.070640,-0.209000,0.000583,0.812800,0.580900,-0.043060 0.001780,-0.165900,-0.901700,0.872500,-0.184300,-0.452500 0.843100,0.073760,-0.029220,-0.000130,-0.986400,-0.164300 -0.094080,0.014350,0.409300,0.969200,-0.236300,-0.069610 -0.018450,-0.276100,-0.448400,-0.312400,-0.949800,0.016740 0.027780,0.063180,0.499000,-0.000312,-0.978600,0.205900 -0.070860,-0.204500,-0.527800,0.013110,0.976800,-0.213600 0.088520,-0.181400,-0.121200,0.962200,-0.271700,0.018790 0.856100,-0.119600,0.312400,0.147000,0.398600,0.905300 0.240600,-0.203700,0.114700,0.023000,-0.934800,0.354400 -0.097550,-0.046190,0.048330,-0.969300,0.236200,-0.068450 0.080940,-0.180600,0.086770,-0.883500,0.463000,-0.070700 0.508600,0.166200,0.223500,0.000290,0.980800,-0.194900 0.041870,0.067180,0.342000,-0.833800,-0.519400,-0.187000 -0.070740,-0.111800,0.436700,-0.731900,-0.619700,0.283400 0.075520,-0.088300,0.470300,-0.803700,0.521800,-0.286100 0.924200,-0.178100,0.138500,0.023110,-0.941400,0.336400 0.175000,0.146700,0.272200,-0.032200,-0.975700,0.216700 -0.001221,0.028510,0.267900,0.066890,0.313800,0.947100 -0.097470,0.014440,0.332900,-0.956000,0.293100,-0.014540 -0.678000,-0.187400,0.125700,-0.031710,-0.938100,0.344800 0.038720,-0.215000,-0.541700,0.024710,-0.976600,0.213500 -0.732400,0.134300,0.225400,0.000000,-0.966800,0.255600 -0.178400,0.097860,0.144700,0.739700,0.668000,-0.081170 -0.028900,-0.061230,-0.287100,-0.380600,0.877300,-0.292300 0.072090,-0.081060,0.496000,0.789800,-0.511000,0.339300 -0.018710,-0.155900,0.401700,-0.196000,-0.925300,0.324800 0.052240,-0.251900,-0.389200,0.794400,-0.607100,-0.018040 0.050210,-0.250700,-0.400300,-0.812600,0.582600,0.017450 0.492600,-0.153700,0.192500,-0.031660,0.938800,-0.343000 0.087430,-0.171700,0.196800,0.086680,-0.308000,-0.947400 -0.020310,-0.054950,-0.050710,0.305200,0.190300,0.933100 -0.003240,-0.139000,-0.706400,-1.000000,0.000000,0.000000 0.071440,-0.169900,-0.389900,0.978200,0.136600,-0.156200 0.268000,-0.130300,0.310200,-0.029770,0.996000,0.084010 -0.003276,-0.128200,-0.586100,-1.000000,-0.003876,-0.000589 -0.333100,0.107000,0.121400,0.000000,-0.960000,0.279800 -0.705500,0.104400,0.113000,0.000000,-0.956100,0.293000 0.100000,-0.018770,0.452600,0.995100,-0.036190,0.092260 -0.094770,-0.302700,0.402000,0.001529,0.986000,0.167000 -0.024350,-0.253900,-0.089800,-0.280900,-0.952400,0.118900 -0.042960,0.089450,0.436500,-0.888200,0.459400,-0.005166 -0.005456,-0.293700,-0.915100,0.000000,-0.977900,0.209100 0.022210,-0.228600,0.081440,-0.215400,0.963800,-0.157200 -0.005680,-0.228600,0.097840,0.072930,0.984500,-0.159800 -0.052370,-0.251500,-0.261800,-0.692900,-0.720400,0.030740 0.026570,-0.061590,-0.285300,-0.340400,-0.894500,0.289700 0.201100,-0.327800,0.357200,0.989700,0.024570,-0.141300 -0.043980,0.053840,0.267200,0.721200,0.081790,0.687900 -0.894700,0.160900,0.216900,-0.891600,0.142200,0.429900 0.045260,-0.028640,-0.155500,-0.514800,-0.811100,0.277500 -0.054220,-0.124500,-0.395600,0.815400,-0.526700,0.240100 0.003237,-0.155400,-0.717300,1.000000,-0.000009,0.000004 -0.448400,-0.143100,0.299500,-0.030210,-0.974200,0.223700 -0.010710,0.094560,0.333400,-0.572900,0.785600,-0.233700 -0.793000,0.076270,-0.027010,0.002167,0.976300,-0.216500 -0.023530,0.067860,0.263000,0.200700,-0.539400,0.817800 0.003237,-0.067900,-0.788400,1.000000,0.000000,0.000000 -0.404200,0.127500,0.108600,0.005113,0.925400,-0.378900 0.039950,-0.254100,-0.542600,-0.869700,0.490000,0.058850 -0.037770,-0.171700,-0.551200,0.788300,-0.531700,0.309700 -0.088300,-0.156100,0.131500,0.921200,0.383100,-0.067550 0.601600,-0.150200,0.194800,-0.043280,0.934700,-0.352800 -0.010920,-0.224400,-0.623700,0.000006,0.978400,-0.206800 -0.035940,-0.080670,-0.333200,-0.484600,0.826800,-0.285600 -0.875000,0.085710,0.060270,-0.000026,-0.939300,0.343000 -0.011400,-0.254900,-0.726600,0.208200,-0.904800,0.371500 0.076570,-0.347700,0.308400,0.000000,-0.975700,0.219300 -0.000454,0.013430,0.097970,-0.011550,-0.136500,-0.990600 -0.080530,-0.191000,0.013760,0.899900,0.428500,-0.080940 -0.070780,-0.176600,0.193000,0.737100,0.440300,-0.512600 0.814800,-0.190500,0.112200,0.023260,-0.934600,0.354900 0.137100,-0.195300,0.144700,0.022810,-0.942900,0.332300 -0.079330,0.008634,0.561600,-0.970700,-0.012880,0.240100 -0.087500,-0.272800,-0.853500,-0.030470,0.978200,-0.205600 0.229700,-0.266000,-0.821100,0.005824,0.972700,-0.232000 0.051590,-0.146000,0.383000,-0.536200,0.802700,-0.261200 0.074770,0.037330,0.207500,-0.823900,-0.562200,0.071690 -0.032800,-0.287900,-0.925000,0.000000,0.979300,-0.202400 0.261000,-0.253900,-0.762700,0.203900,0.955600,-0.212500 0.700000,0.169800,0.245500,0.020440,0.992100,-0.124100 -0.050290,0.041660,0.067070,-0.763800,0.630700,0.137500 0.089180,0.003408,0.502400,-0.983400,-0.143400,-0.110800 -0.190500,0.073250,-0.001566,-0.002044,-0.998900,0.047420 0.011300,-0.180300,0.322600,-0.131000,0.949900,-0.283800 -0.080580,-0.198800,-0.236100,-0.962400,-0.270700,-0.024090 -0.205800,-0.287200,0.376300,-0.967800,0.247400,0.046590 -0.082020,-0.209400,-0.515100,-0.000257,-0.979000,0.204100 -0.672700,-0.129800,0.251100,0.031770,0.967000,-0.252900 0.079900,0.040630,0.513100,0.881300,0.416300,0.223700 -0.710900,0.153700,0.298100,0.000000,-0.924800,0.380500 0.278900,0.153700,0.298100,0.000000,-0.924800,0.380500 -0.071090,-0.209400,-0.515100,-0.016240,-0.982800,0.184200 -0.059700,0.067620,0.256500,-0.622800,0.775000,-0.107200 -0.070940,0.019830,0.568900,0.655700,-0.317400,-0.685000 0.110800,-0.196400,0.194300,0.939500,0.329000,-0.095200 0.940600,0.077430,0.031150,0.000003,-0.979400,0.201900 0.086640,-0.188500,-0.082970,0.940600,-0.338500,0.025340 0.240600,-0.268200,-0.831500,-0.029790,0.973800,-0.225500 -0.083290,-0.192100,-0.207400,-0.970600,-0.237400,-0.038680 -0.546900,0.096750,0.046050,-0.010160,0.915300,-0.402600 -0.076560,-0.310200,0.355100,0.000037,0.955000,-0.296500 0.716400,0.076420,0.025960,0.000000,-0.983900,0.178800 -0.175000,0.125000,0.190100,0.032930,-0.954300,0.297100 0.760200,0.096900,0.045980,0.020390,0.898100,-0.439300 -0.195500,-0.366000,0.292700,0.094730,-0.458500,-0.883600 0.066090,-0.302600,0.395500,0.000000,0.995500,-0.095240 -0.683500,-0.169000,0.178500,-0.032110,-0.950800,0.308200 0.077460,-0.046650,-0.101800,-0.889900,-0.421600,0.174200 -0.031700,-0.238300,0.015750,-0.337100,-0.930300,0.144700 -0.001706,0.037960,0.650500,-0.049210,0.433900,0.899600 -0.240600,0.108000,0.067840,-0.020310,0.897200,-0.441200 0.147700,-0.265300,-0.813200,0.000000,0.977600,-0.210500 -0.003240,-0.182700,-0.826700,-1.000000,0.000000,0.000000 -0.010890,-0.240500,-0.700200,0.137100,0.989800,-0.039070 -0.189900,-0.404100,0.354700,0.865200,-0.494900,-0.081030 -0.377300,0.136500,0.233600,0.000000,-0.966900,0.255200 0.091430,-0.171400,-0.126700,0.975300,-0.220400,-0.013170 -0.019340,-0.269600,-0.287000,0.283300,0.957100,-0.060790 -0.432000,0.151500,0.290100,0.000000,-0.966700,0.255800 0.752900,0.169500,0.301900,0.003813,0.700800,0.713400 0.014640,-0.004707,0.103500,0.033470,0.132200,0.990700 0.475800,0.088890,0.068650,0.000000,-0.933000,0.360000 -0.557800,0.154500,0.180100,0.010160,0.960100,-0.279600 0.115600,-0.163700,0.401700,0.927500,0.373900,-0.000528 0.062280,0.054350,0.199800,0.672200,0.730800,-0.119000 -0.011600,0.058320,0.633800,-0.211300,0.693300,0.689000 0.085660,-0.184100,-0.039150,-0.935300,0.353400,-0.017990 -0.563300,0.087450,0.022050,-0.000068,0.945300,-0.326200 -0.021870,-0.292100,-0.907300,-0.000013,-0.978500,0.206200 0.080590,-0.204500,-0.192300,0.935900,-0.351000,-0.028880 0.056220,-0.235100,-0.471100,0.950900,-0.305300,-0.050010 -0.377300,0.130700,0.211800,0.000000,-0.966800,0.255400 -0.694500,0.082430,0.005269,0.004445,0.959500,-0.281800 0.099760,-0.133000,0.395700,-0.280200,-0.033150,-0.959400 0.771200,-0.128200,0.254400,-0.004485,0.974100,-0.225900 0.306300,0.084580,0.014330,0.020410,0.953900,-0.299500 -0.005303,-0.297900,-0.954300,-0.021050,-0.006726,-0.999800 -0.530200,-0.144500,0.216200,0.033010,0.950800,-0.308000 0.776600,-0.150200,0.183900,-0.028180,0.935500,-0.352100 -0.809400,0.155600,0.184200,-0.000022,0.969300,-0.246000 0.175000,0.093350,0.038430,0.010140,0.932100,-0.362100 -0.273400,0.100700,0.053310,0.020220,0.895300,-0.444900 0.804000,-0.172100,0.135000,-0.027690,0.877400,-0.478900 -0.218700,0.081570,0.047670,0.000000,-0.958400,0.285500 -0.021170,-0.245900,-0.017650,-0.243800,-0.963100,0.113800 0.350000,0.136500,0.233600,0.000000,-0.966900,0.255200 -0.045900,-0.256300,-0.329500,0.686800,0.726900,0.003186 0.426600,-0.130000,0.283800,-0.033040,0.984100,-0.174400 0.442900,-0.197200,0.118700,0.023120,-0.937100,0.348300 0.050880,-0.250500,-0.246900,-0.665400,0.745500,-0.036930 0.045040,-0.094380,-0.354500,0.618700,0.738700,-0.267400 -0.010300,0.004823,-0.069490,0.028280,-0.666000,-0.745400 0.924200,0.100400,0.053460,-0.000001,0.892300,-0.451500 -0.350100,-0.153600,0.208200,0.015960,0.940700,-0.339000 -0.027330,-0.265200,-0.817300,0.000000,0.978500,-0.206200 0.574200,0.115100,0.082470,-0.015240,0.900200,-0.435200 0.046110,-0.255700,-0.410700,-0.751500,0.659700,0.007037 0.563300,0.091870,0.076320,-0.000007,-0.935000,0.354500 -0.135500,-0.112200,0.644200,0.446700,-0.257200,0.856900 -0.661600,-0.133600,0.238000,0.016870,0.969500,-0.244600 -0.151300,-0.254700,0.278100,-0.897400,0.429200,-0.102300 -0.740600,0.073660,-0.025160,0.007572,-0.970600,-0.240600 -0.601600,0.094710,0.083960,0.000000,-0.939200,0.343300 0.382800,0.097440,0.091620,0.000000,-0.945100,0.326800 0.055600,-0.167900,-0.481900,0.942400,0.278900,-0.184700 -0.875000,0.117000,0.086030,0.020330,0.905200,-0.424500 0.659800,-0.062220,0.203400,-0.846000,-0.049020,0.530900 -0.218700,0.092080,0.034540,0.000000,0.925400,-0.378900 0.278900,0.158100,0.191900,0.000073,0.947200,-0.320700 -0.749200,0.120600,0.093320,0.000000,0.907100,-0.420900 0.421100,0.109700,0.071550,-0.005188,0.899500,-0.437000 0.002737,-0.182700,-0.717300,0.998500,0.020390,0.050730 0.251600,-0.271700,-0.848300,0.005319,0.976400,-0.216000 0.027410,-0.094480,-0.038510,0.105000,-0.980800,-0.164300 0.109400,0.134900,0.127900,0.015240,0.925800,-0.377600 -0.563300,0.099080,0.096450,0.000000,-0.946300,0.323400 -0.913300,-0.184200,0.112900,-0.031520,-0.935000,0.353300 0.002594,-0.390100,-0.690100,0.989400,-0.142100,0.030080 -0.328100,0.083760,0.010290,0.005626,0.960900,-0.276700 -0.016390,0.145900,0.155100,0.020390,0.934400,-0.355500 -0.311600,-0.170800,0.212400,-0.032710,-0.958000,0.285000 0.650700,-0.149500,0.251900,0.023320,-0.965400,0.259700 0.333500,-0.150900,0.275500,0.023320,-0.968400,0.248300 0.078440,-0.112800,-0.257400,0.955200,0.267000,-0.127400 0.892700,0.159900,0.220600,0.882900,0.129400,0.451300 -0.059230,0.022700,0.033800,0.729000,0.433000,-0.530200 -0.268000,0.104300,0.060630,0.030580,0.886800,-0.461100 0.103900,-0.214100,-0.537200,0.000098,-0.978600,0.205800 0.017790,0.064560,0.482000,0.574900,0.809100,0.122000 -0.521400,-0.125800,0.313500,0.016340,0.761400,0.648100 0.251600,0.120000,0.093620,-0.000006,0.923700,-0.383100 0.306300,0.102400,0.057020,-0.000201,0.897400,-0.441300 -0.153100,0.117100,0.085960,0.000037,0.902400,-0.430900 0.475800,0.139900,0.246500,0.000000,-0.966800,0.255700 0.120300,0.137800,0.238700,0.000000,-0.966200,0.257900 0.634400,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.782000,0.145700,0.268300,0.000000,-0.966700,0.255700 0.038010,-0.195100,-0.593600,-0.930700,-0.327700,0.162500 -0.270500,-0.138500,0.271000,-0.004627,0.980400,-0.197100 -0.590600,0.100700,0.053310,-0.020350,0.898400,-0.438800 -0.088300,0.029760,0.431200,0.942300,-0.333600,-0.026490 0.109400,-0.312300,0.350700,-0.020200,0.934100,-0.356400 -0.377300,0.143300,0.147400,0.000000,0.936800,-0.350000 -0.344500,0.143300,0.147400,0.000000,0.936800,-0.350000 0.927400,0.134200,0.156600,0.900900,0.123000,0.416200 0.060150,-0.101500,-0.317600,-0.842500,-0.502500,0.194400 -0.952000,0.117700,0.110400,-0.892200,0.093220,0.441900 -0.081360,0.024770,0.182100,0.885900,-0.451300,0.107000 -0.218800,-0.140100,0.272600,0.019560,0.986300,-0.163700 -0.003240,-0.199200,-0.821200,-1.000000,0.000000,0.000000 -0.547000,-0.163900,0.164400,0.025260,0.917300,-0.397500 -0.224200,0.118200,0.164500,0.000000,-0.966800,0.255600 -0.639800,0.104000,0.060790,-0.015260,0.896300,-0.443200 0.049230,0.143600,0.260500,0.000000,-0.966200,0.257700 -0.010930,-0.239500,-0.657900,0.000000,-0.978400,0.206500 0.058690,0.102100,0.500900,0.336800,-0.840900,0.423600 0.918700,-0.184200,0.122200,0.023470,-0.938100,0.345500 -0.912800,0.141700,0.143200,0.000000,0.935200,-0.354100 -0.195700,-0.171900,0.653900,-0.426100,0.244600,-0.871000 0.065760,0.190800,0.277300,0.568500,0.172100,0.804500 -0.710900,0.117000,0.086040,-0.020370,0.899300,-0.436900 0.520000,0.105800,0.117500,0.000000,-0.957500,0.288300 0.279200,-0.184200,0.166600,0.023610,-0.947400,0.319200 -0.186500,0.118700,0.207300,0.995100,-0.077030,0.062660 -0.311700,0.080920,0.001386,-0.020130,0.963800,-0.266000 0.086790,-0.166400,0.130800,0.869200,-0.485800,-0.092210 -0.052960,-0.195400,0.207100,-0.554100,-0.814800,0.170200 -0.820300,0.132400,0.120200,0.000000,0.922900,-0.385000 0.738500,0.138600,0.135800,-0.040470,0.925100,-0.377600 -0.043010,-0.127400,0.451500,-0.442700,-0.819400,0.364100 -0.185500,-0.312800,0.338800,-0.185300,0.702600,-0.687000 0.153100,-0.348600,0.304400,-0.000004,-0.984200,0.176900 0.322700,0.149400,0.282300,0.000000,-0.966200,0.257800 0.962400,-0.183200,0.121900,0.023250,-0.937400,0.347600 0.076560,0.158400,0.191500,-0.015870,0.968400,-0.248700 0.087520,-0.211800,-0.563900,0.000000,0.978800,-0.204900 -0.072280,-0.201500,-0.502400,-0.249400,0.628300,0.736900 -0.568800,0.143100,0.147500,-0.010170,0.931900,-0.362700 0.028650,-0.144200,-0.515400,0.511200,0.795000,-0.326700 -0.086350,0.048340,0.373800,-0.619100,0.613900,0.489800 -0.782100,-0.135400,0.218300,0.035750,0.955500,-0.293000 -0.798500,-0.164700,0.144000,0.030970,0.892100,-0.450700 0.081450,-0.197800,-0.129400,-0.933400,0.358900,0.000551 0.481300,-0.134500,0.256200,-0.023200,0.972900,-0.230200 -0.028650,-0.039560,-0.215200,0.349200,-0.892100,0.286900 0.082090,-0.033230,-0.048670,0.903500,0.410500,-0.123300 -0.028620,0.002868,-0.066450,-0.069600,-0.932000,-0.355600 -0.082670,-0.052520,-0.082930,0.934100,-0.322000,0.154200 0.300800,0.150400,0.286300,0.000000,-0.966100,0.258200 0.273800,-0.143400,0.241600,-0.020290,0.964600,-0.262900 0.043100,-0.204100,0.177400,-0.504000,0.855100,-0.121400 0.090970,0.047920,0.359800,-0.332600,0.940300,-0.072390 0.148500,0.164700,0.579700,-0.404600,0.575400,0.710800 -0.524500,0.108100,0.125200,0.000000,-0.962500,0.271300 0.142200,-0.322200,0.328800,0.000000,0.862600,-0.505900 -0.453400,0.141400,0.143300,-0.005067,0.932900,-0.360100 -0.071220,-0.183300,0.185400,-0.753200,-0.644200,0.133300 0.082040,0.119300,0.168300,0.000000,-0.967400,0.253400 -0.663200,0.117800,0.215300,0.782300,0.000152,-0.622900 0.864000,-0.145300,0.248100,0.023330,-0.964300,0.263700 0.005621,-0.050290,-0.272300,0.068460,0.948000,-0.310700 -0.268000,-0.173500,0.163900,0.031230,0.908700,-0.416200 -0.768900,0.073830,0.007119,0.000000,-0.996200,0.087490 -0.890500,0.073250,-0.001572,0.000000,-0.998800,0.048080 0.103900,-0.244200,-0.680000,0.000119,-0.978000,0.208800 -0.069320,-0.197000,0.090440,0.769200,0.626400,-0.126700 -0.010920,-0.234800,-0.673000,-0.000791,0.978500,-0.206100 0.196900,0.087100,0.063960,0.000000,-0.934900,0.354900 -0.546900,0.084370,0.056500,0.000001,-0.946600,0.322400 0.115300,0.160600,0.201000,-0.004699,0.968200,-0.250000 -0.032400,-0.199500,-0.622300,0.881200,-0.390100,0.267100 -0.078890,-0.112700,-0.252000,-0.951300,0.275200,-0.138800 -0.109400,-0.233100,-0.662700,0.014830,0.982600,-0.185000 0.196900,-0.286000,-0.913200,0.029250,0.977300,-0.209900 0.963300,0.073210,-0.002275,-0.000011,-0.999000,0.044840 -0.000011,-0.258100,-0.109900,-0.008050,0.995600,-0.093650 0.023480,-0.090180,-0.378600,0.337300,0.883100,-0.326200 0.064770,0.061980,0.515800,-0.761700,-0.630100,-0.150700 -0.344500,0.138900,0.242700,0.000000,-0.966100,0.258100 0.585200,0.117200,0.160600,0.000000,-0.967000,0.254700 -0.049480,-0.176700,0.297500,-0.523300,-0.824700,0.214500 -0.655800,0.080340,0.043350,0.000002,-0.964000,0.265900 -0.831100,-0.179100,0.134400,-0.031820,-0.940500,0.338200 -0.606600,0.141500,0.143200,0.020590,0.930700,-0.365300 -0.103500,-0.013240,0.343600,-0.990100,0.139400,0.015700 -0.106100,-0.099700,0.627000,-0.460700,0.239100,-0.854700 -0.535900,0.155500,0.301300,0.000000,-0.764900,0.644100 0.054830,0.052150,0.154300,0.612100,0.777000,-0.147100 -0.109400,-0.230200,-0.613900,0.000006,-0.979000,0.203800 0.189200,-0.330400,0.437000,1.000000,0.002195,0.001736 0.036840,-0.189600,0.259500,-0.440700,0.865200,-0.239100 -0.039790,-0.177300,0.314100,-0.411600,-0.871900,0.265400 -0.514000,-0.161600,0.220700,-0.032050,-0.958100,0.284800 0.071460,-0.125800,-0.324600,0.940300,0.299200,-0.162600 -0.683600,0.082430,0.005268,0.000000,0.957800,-0.287500 -0.158200,-0.112700,0.653500,-0.252700,0.270000,0.929100 0.113600,-0.190300,0.154300,-0.788800,-0.611100,-0.065300 0.350100,-0.193600,0.117600,-0.032330,0.860300,-0.508800 -0.030970,-0.155300,0.386900,0.319600,0.895500,-0.309800 0.793100,-0.132800,0.305500,0.025520,-0.966800,0.254400 0.855100,0.073220,-0.021570,0.000000,-0.999000,-0.044590 -0.023420,0.092000,0.385500,-0.801500,0.524500,-0.287400 0.180500,-0.274800,-0.862700,0.000000,0.977600,-0.210600 -0.142200,-0.254500,-0.766500,0.000000,0.979300,-0.202400 -0.005210,-0.050640,0.611600,-0.084900,-0.818700,0.567900 0.716900,0.162000,0.208800,-0.010320,0.973400,-0.228800 0.002786,-0.057630,-0.619200,0.997700,0.047070,0.047870 -0.082430,-0.059850,-0.102600,0.926000,-0.350400,0.140700 0.142200,-0.240500,-0.700300,0.000000,0.978500,-0.206200 0.120600,-0.222000,0.217000,0.301700,-0.700100,-0.647100 0.380400,-0.166400,0.215200,0.022720,-0.957900,0.286100 -0.021900,0.033740,0.359300,-0.101200,-0.967700,0.230800 0.054730,-0.162500,-0.467800,-0.943000,-0.268400,0.196600 0.667700,0.078420,0.035680,0.000000,-0.975300,0.220800 0.191400,-0.266300,-0.821000,-0.060590,0.977400,-0.202300 -0.103900,-0.343300,0.301000,0.000142,0.730400,-0.683000 0.016770,0.058370,0.096510,0.648500,0.754900,0.097970 -0.688600,0.167000,0.227900,0.000000,0.983100,-0.183000 0.519500,0.155500,0.301300,0.000000,-0.764900,0.644100 0.186100,0.115300,0.082550,0.024960,0.887800,-0.459600 0.082100,0.023930,0.204700,-0.903700,-0.424900,0.052940 -0.164100,-0.263500,-0.809400,0.000000,0.977700,-0.209900 -0.147600,-0.292900,-0.911100,0.000017,-0.977800,0.209600 -0.203700,-0.352200,0.294900,-0.999800,-0.008344,-0.016660 -0.065620,-0.218000,-0.591000,-0.000089,0.975800,-0.218600 -0.098450,-0.221100,-0.605500,-0.010180,0.979000,-0.203600 -0.688900,-0.140600,0.277000,-0.032070,-0.969100,0.244700 -0.075330,-0.203100,0.019930,-0.822800,-0.562200,0.083630 -0.082550,-0.116600,-0.232800,-0.967000,0.220500,-0.127900 -0.049220,-0.285400,-0.913300,0.000000,0.977700,-0.209900 0.087510,-0.249100,-0.703300,0.000030,-0.977800,0.209600 -0.042630,0.066800,0.328500,0.216100,-0.772100,0.597600 0.104500,-0.070830,0.110700,0.996600,0.082010,0.010280 -0.037920,0.071040,0.433000,0.985300,0.022900,0.169500 0.131300,-0.240500,-0.700300,0.000000,0.978500,-0.206200 0.020110,-0.145100,-0.522600,-0.387500,-0.846800,0.364400 0.585200,-0.199300,0.100600,0.046650,0.294600,-0.954500 0.405200,0.167000,0.227900,0.000000,0.983100,-0.183100 -0.102300,-0.029190,0.266900,0.981500,-0.185800,0.046230 0.093060,-0.080210,-0.068530,-0.973900,-0.207200,0.092480 0.101300,-0.067400,0.359800,0.981000,-0.186100,0.054350 0.229700,-0.251000,-0.712500,0.000000,-0.978500,0.206300 0.037150,0.082900,0.223800,0.308500,0.932400,-0.188200 0.051120,-0.045700,-0.035800,0.737300,-0.165100,-0.655000 0.659000,-0.122600,0.168400,-0.995300,0.022670,0.094090 0.090230,0.044480,0.349300,0.326500,0.532700,-0.780800 0.174300,-0.399900,0.378000,-0.986600,-0.158000,0.041220 0.089040,0.009115,0.228700,-0.944500,-0.327400,0.028240 -0.026590,0.093440,0.403600,-0.261200,0.964100,-0.047740 -0.078220,0.052790,0.414800,0.853400,-0.520300,-0.031140 0.072460,-0.037110,-0.110300,0.816800,0.533800,-0.219100 -0.087750,-0.023710,0.018500,-0.924900,0.360700,-0.120400 -0.064720,-0.126800,0.417200,-0.655200,-0.701600,0.280300 -0.087490,-0.292000,-0.907300,0.000000,-0.978500,0.206300 -0.003240,-0.221000,-0.777500,-1.000000,-0.000552,0.000276 -0.169900,0.111400,0.265100,0.297700,0.546100,-0.783000 0.033810,-0.160000,-0.543000,0.664600,0.686800,-0.294300 -0.946100,-0.178400,0.110600,0.021330,0.854600,-0.518800 0.503200,-0.190800,0.115500,-0.021980,0.854200,-0.519500 0.030060,-0.214400,0.152600,-0.330700,0.927800,-0.172700 -0.059470,0.034770,0.081740,-0.639400,0.751400,-0.163100 -0.039590,-0.248700,-0.568800,0.927200,0.362900,0.092250 -0.092990,-0.276700,-0.870400,-0.060610,0.977500,-0.202300 -0.062930,-0.218300,-0.002660,0.699800,0.710600,-0.073250 0.047650,0.054920,0.136900,0.788600,0.609900,-0.078300 -0.322100,-0.155900,0.264400,-0.031740,-0.966900,0.253200 0.038280,-0.013970,0.105200,-0.000028,0.151500,0.988500 -0.125800,-0.280600,-0.885800,0.000000,0.977700,-0.209800 0.268400,0.160900,0.200900,-0.019780,0.968300,-0.249000 0.026820,-0.295200,-0.953100,0.045810,0.588700,-0.807100 0.059060,-0.063800,-0.224200,-0.732100,-0.637800,0.239400 0.040420,-0.012830,-0.051930,0.561700,-0.152800,-0.813100 0.015540,0.037070,0.120200,-0.907800,-0.411700,0.079530 0.014740,-0.276900,-0.427100,0.220500,-0.975300,0.015630 -0.075260,-0.216000,-0.150400,-0.896600,-0.442700,0.008984 -0.071190,0.063660,0.463800,-0.781100,0.623000,0.041690 0.017760,-0.073810,-0.329600,-0.266100,-0.907500,0.325000 0.875400,0.167100,0.228000,-0.007112,0.984400,-0.175600 0.070970,0.025290,0.093900,0.744300,0.659600,-0.104000 0.060880,-0.205800,0.092470,-0.671200,0.732000,-0.116400 -0.885800,-0.134400,0.275500,-0.033090,-0.969000,0.244900 -0.503100,0.144700,0.264500,0.000000,-0.966100,0.258300 0.032820,0.136500,0.233600,0.000000,-0.966900,0.255200 0.186800,0.073210,-0.002230,0.000161,-0.999000,0.045440 -0.859100,-0.177100,0.117900,0.020290,0.865700,-0.500100 -0.081630,-0.145500,-0.265900,0.987400,-0.116200,0.107300 -0.229800,-0.189300,0.135500,0.005374,0.880700,-0.473700 0.000426,-0.233000,0.085040,-0.001163,-0.986400,0.164400 -0.040380,0.083870,0.389300,0.149400,-0.894400,0.421600 0.014560,0.035680,0.098300,-0.731800,0.017680,0.681300 0.180500,-0.251000,-0.712500,0.000000,-0.978500,0.206200 0.016480,-0.166900,0.364000,-0.172300,0.935800,-0.307500 -0.015180,-0.275100,-0.670400,0.555900,0.830800,0.028060 0.005479,-0.340500,0.304100,-0.005155,0.730200,-0.683200 -0.066200,-0.226500,-0.113800,0.777300,0.626900,-0.052890 -0.399200,0.117200,0.160600,0.000000,-0.967000,0.254700 0.207800,0.117200,0.160600,-0.000428,-0.967000,0.254700 0.065680,-0.202500,-0.519800,0.164400,0.957000,-0.239000 -0.000228,-0.101900,-0.419200,0.017050,-0.942300,0.334400 -0.147200,-0.171300,0.229300,-0.030910,-0.961300,0.273700 0.016410,0.041880,0.263500,0.000000,-0.203100,-0.979200 -0.483900,-0.127700,0.292800,0.033700,0.986200,-0.162200 -0.038690,0.091630,0.461100,-0.808800,0.397000,0.433800 -0.009164,-0.022200,-0.062010,-0.131800,-0.205900,-0.969700 0.092760,-0.124700,0.215200,-0.957100,0.284800,-0.053340 0.623400,0.080920,0.001374,0.010240,0.958300,-0.285600 0.306200,-0.143100,0.310200,0.024220,-0.943500,0.330500 0.058410,-0.070610,-0.251200,0.714900,0.654000,-0.247400 -0.021300,-0.243900,-0.000489,-0.226900,-0.966900,0.116500 -0.116700,-0.294800,-0.941700,-0.215500,-0.175400,-0.960600 0.087150,0.011950,0.510700,-0.981600,-0.160600,-0.103100 0.191100,-0.369400,0.384400,0.972000,-0.219200,0.084830 0.121100,-0.214300,0.231400,0.789400,0.594300,0.153600 0.055780,-0.083680,-0.288100,-0.753100,-0.613900,0.236500 0.061910,0.070550,0.505400,0.706300,0.691900,0.149800 0.079600,0.029580,0.534700,0.906200,0.363600,0.215800 -0.028030,-0.214500,0.157300,0.335200,0.929800,-0.152000 0.180900,-0.253300,0.365600,-0.144400,0.989500,-0.005158 -0.055410,-0.182800,0.256800,-0.588100,-0.785200,0.194000 -0.136100,0.087100,0.324900,0.643000,0.269500,-0.716900 0.043640,0.073100,0.502200,0.633700,-0.771100,-0.062220 -0.278900,0.111700,0.138700,0.000000,-0.967000,0.254800 0.086670,-0.108900,-0.174700,-0.976100,-0.189500,0.106700 0.098900,-0.260500,-0.757200,0.000000,-0.978400,0.206700 -0.026700,-0.175100,0.337400,-0.274300,-0.918300,0.285500 0.070730,-0.211400,-0.367200,0.966700,-0.248800,-0.060750 -0.031590,-0.232300,0.039300,0.354300,0.923100,-0.149400 -0.039780,-0.052170,-0.243600,-0.510900,0.821900,-0.251800 0.175200,-0.387600,0.396100,-0.956900,0.261600,-0.126200 -0.203500,-0.335700,0.440000,-0.959000,-0.018370,0.282800 0.092170,-0.133000,-0.150300,-0.994200,-0.051560,0.094620 0.508900,-0.189500,0.135200,0.023030,-0.940500,0.339100 -0.262300,-0.281900,-0.871800,-0.907500,-0.236100,-0.347400 -0.054560,-0.014300,-0.092080,0.626500,-0.748500,0.217300 0.000003,-0.288000,-0.887800,0.000000,-0.977900,0.208900 -0.091080,-0.167300,-0.055620,0.956400,0.291500,-0.017670 -0.099410,0.006499,0.321900,-0.967800,0.249100,-0.035650 -0.054210,-0.247700,-0.293000,0.742300,0.669900,-0.011890 0.005402,-0.264700,-0.187300,-0.060080,0.994800,-0.082570 -0.058990,-0.198700,-0.482800,0.992100,-0.047230,0.116500 0.634400,0.100400,0.100400,0.000000,-0.948000,0.318100 -0.067760,0.066020,0.300000,-0.703100,0.705400,-0.090160 0.223500,-0.286400,-0.915800,0.152200,0.792300,-0.590900 -0.088630,-0.180400,-0.130600,-0.966500,-0.255500,-0.024380 0.042050,-0.139800,0.418200,-0.419500,0.852200,-0.312600 -0.087780,0.003272,0.525900,-0.974200,0.066580,0.215500 0.083100,-0.079020,0.459400,-0.899600,0.395100,-0.186200 -0.091460,-0.018530,0.496500,-0.974800,-0.143700,0.170800 -0.029460,-0.128800,0.461700,-0.298900,-0.881200,0.366200 0.120800,-0.258800,-0.749500,0.000000,-0.978600,0.205900 -0.041900,-0.080270,-0.313500,0.571400,-0.775200,0.269300 -0.136700,-0.278400,-0.875400,0.000000,0.979200,-0.203000 0.601600,-0.129500,0.267300,-0.041690,0.988700,-0.144100 -0.022650,-0.008611,-0.127600,0.280500,-0.908200,0.310500 0.056930,-0.239500,-0.121400,0.685100,-0.725700,0.063300 -0.421100,0.166100,0.303800,0.000000,0.306600,0.951800 0.028940,-0.221400,0.127000,0.309600,-0.937100,0.161200 -0.020150,0.069470,0.397800,0.523000,-0.175700,-0.834000 0.125800,-0.272900,-0.816400,0.000000,-0.978500,0.206200 -0.035610,-0.027860,-0.052070,-0.492300,-0.176000,-0.852500 0.122500,0.082850,0.012270,-0.469500,0.605100,-0.643000 0.915000,-0.139500,0.243400,0.889200,0.033860,0.456400 0.662800,-0.133600,0.185200,0.999800,0.017010,-0.013880 -0.218700,0.142300,0.255400,0.000183,-0.967400,0.253300 0.037190,-0.200300,0.222800,0.405700,-0.894900,0.185800 0.033210,0.025170,0.308600,-0.088610,0.969300,-0.229400 -0.028670,-0.051110,0.600200,-0.374600,-0.806400,0.457600 -0.030950,-0.028820,-0.179400,0.370700,-0.880800,0.294600 -0.014740,-0.275300,-0.735000,-0.797100,-0.589900,-0.129100 -0.060150,-0.226400,-0.595600,0.003711,-0.978600,0.205900 -0.524900,-0.138900,0.306700,-0.032800,-0.966700,0.253800 0.011740,0.073130,0.200000,0.997800,0.044320,0.048480 0.048680,-0.063620,-0.260600,0.623800,0.739000,-0.254400 0.037280,-0.263400,-0.471300,-0.655700,0.755000,0.008064 0.089700,0.034310,0.332800,0.923200,0.381000,-0.050120 0.021890,-0.230200,-0.613900,0.000286,-0.979000,0.203900 -0.009993,0.058150,0.377700,-0.946100,-0.057890,-0.318700 0.207900,-0.195000,0.140700,0.023110,-0.941800,0.335500 -0.096880,-0.125300,0.409400,0.897600,-0.431100,0.092350 0.018370,-0.095230,-0.397900,0.251300,0.922300,-0.293400 -0.322300,-0.156600,0.201200,0.035840,0.942700,-0.331700 -0.612500,0.112700,0.142600,0.000000,-0.970000,0.243000 -0.907800,0.114900,0.151500,0.000000,-0.971300,0.237900 -0.091730,-0.127900,0.266700,-0.935600,-0.344400,0.078160 -0.202300,-0.220100,-0.601500,-0.007189,0.976900,-0.213500 -0.010730,-0.277100,-0.617500,0.306300,0.951900,-0.006657 0.092980,0.096090,0.087790,0.000000,-0.942000,0.335700 -0.032550,-0.268800,-0.385600,-0.489900,-0.871700,0.010420 0.098140,-0.047940,0.073870,-0.977200,-0.203000,0.062020 -0.097700,0.020970,0.217300,-0.251300,-0.337500,0.907200 -0.084630,-0.083560,-0.138000,0.952600,-0.273600,0.132600 0.095440,0.013160,0.457900,0.957900,0.247600,0.145300 0.052430,-0.019380,0.105100,-0.000016,-0.378000,-0.925800 0.092970,-0.289400,-0.930000,0.005113,0.977000,-0.213300 0.089510,-0.134200,0.217900,-0.944700,0.321200,-0.066720 0.820700,-0.184400,0.128300,0.022740,-0.939100,0.342900 -0.095320,-0.079490,0.376600,0.960100,0.266700,-0.084000 -0.005288,-0.028280,0.634900,-0.070770,-0.598200,0.798200 0.660000,0.097420,0.211800,-0.740500,0.112500,-0.662600 -0.085630,0.019070,0.523700,-0.945900,0.252600,0.203700 0.142200,-0.281300,-0.893900,0.000000,0.978500,-0.206300 0.175000,-0.237500,-0.686100,0.000000,0.978500,-0.206300 0.055350,-0.243700,-0.435400,0.899800,-0.430600,-0.069540 0.119300,0.069050,0.348000,0.740700,-0.648100,0.176800 -0.081980,0.008537,0.105500,0.660700,-0.540100,0.521300 -0.694000,-0.180800,0.121600,0.017920,0.872700,-0.487900 -0.066410,0.029950,0.599500,-0.900200,0.212100,0.380300 -0.048410,-0.074610,-0.032650,-0.649400,-0.156800,-0.744100 0.065800,-0.193700,0.152200,0.705300,-0.699500,0.115200 0.019390,-0.227500,-0.722300,0.902300,0.376600,-0.209600 -0.016400,-0.227200,-0.599400,0.000000,-0.977800,0.209600 -0.019920,0.063460,0.409700,-0.908000,0.235500,-0.346500 -0.105100,-0.040340,0.354300,-0.997800,-0.047150,0.046850 -0.015350,-0.200800,-0.671800,0.498300,-0.809400,0.310700 0.658800,0.046930,0.212300,-0.999900,0.002477,-0.016070 -0.045890,0.051810,0.116900,-0.457500,0.857400,-0.235600 -0.070440,-0.188000,0.161000,-0.751400,-0.653000,0.094490 -0.010860,-0.249000,-0.703300,0.214200,-0.933800,0.286600 -0.481200,-0.189400,0.138600,-0.032350,-0.940600,0.337900 -0.583900,0.074240,0.011230,0.000000,-0.993600,0.112700 -0.142200,-0.217600,-0.554000,0.000000,-0.978400,0.206500 -0.057010,-0.053470,0.558400,0.646800,0.603600,-0.466200 -0.021400,-0.265000,-0.707800,-0.939800,-0.330500,-0.087290 -0.182100,0.127300,0.296200,-0.714200,-0.689300,0.121600 -0.093060,-0.151500,0.111800,-0.946500,-0.319800,0.042130 -0.087340,0.016820,0.209300,0.933300,-0.357500,0.034830 -0.018170,-0.167200,-0.588000,-0.416100,0.852100,-0.317600 -0.208100,-0.355200,0.391300,-0.971200,-0.175500,0.160900 -0.027330,-0.283300,-0.865700,-0.000028,-0.978400,0.206500 0.027250,-0.205700,-0.651300,-0.890700,-0.400300,0.215400 -0.191400,-0.272900,-0.816400,0.000000,-0.978500,0.206200 -0.180500,-0.264400,-0.813400,0.000000,0.977600,-0.210600 0.043320,-0.254400,-0.525800,0.873000,-0.483700,-0.062540 0.092970,-0.291400,-0.939400,0.006592,0.970000,-0.243100 -0.015850,-0.029360,-0.059430,-0.212200,-0.204700,-0.955600 0.076410,0.036450,0.192600,0.827600,0.552500,-0.099480 0.038210,0.062330,0.611600,0.240200,0.782400,0.574600 -0.103200,-0.054280,0.318700,0.996700,0.079040,-0.017950 0.071900,-0.193800,-0.361900,-0.989300,0.135300,0.054760 -0.131000,0.052870,0.184000,0.742000,0.638700,-0.203800 -0.261100,-0.261400,-0.762000,-0.107000,-0.972900,0.204800 0.002892,0.071010,0.354800,-0.019970,0.179800,0.983500 -0.099210,-0.130600,0.104700,-0.973900,-0.225500,0.026560 0.006035,-0.143100,-0.540400,0.743000,0.648400,-0.166000 -0.086950,-0.128200,-0.214200,-0.977700,0.149300,-0.147400 -0.087540,-0.173900,0.060140,-0.925000,-0.375900,0.055050 -0.042830,-0.202700,-0.578000,0.913200,-0.305500,0.269500 0.084540,0.106600,0.583800,0.428200,-0.610700,-0.666100 0.023730,-0.219300,-0.686700,-0.865100,-0.386800,0.319300 -0.169500,-0.283100,-0.897500,-0.000127,0.979300,-0.202400 0.847500,0.168300,0.276500,0.477300,0.336800,0.811600 0.072760,0.024230,0.582800,0.950500,0.155900,0.268700 0.065670,-0.110200,-0.324400,0.892400,0.411700,-0.185000 -0.172300,-0.283800,0.358900,-0.521100,0.588900,-0.617700 -0.169100,-0.281500,-0.857300,0.000000,-0.978500,0.206300 -0.076800,-0.026520,-0.048010,0.891300,-0.438600,0.114700 -0.516900,-0.133300,0.257900,0.003932,0.977500,-0.211100 0.065850,-0.212200,-0.433200,0.980300,-0.179500,-0.081810 -0.082860,-0.030600,0.523200,0.944900,0.226200,-0.236600 -0.874900,-0.171000,0.153100,-0.031440,-0.945700,0.323500 -0.127300,-0.121100,0.637400,0.447200,-0.265000,0.854300 0.290300,-0.144300,0.237400,-0.012200,0.964700,-0.263200 0.039130,-0.100600,-0.384200,0.563300,0.776700,-0.281800 0.193300,-0.335700,0.402800,0.969300,-0.035150,0.243500 -0.156600,-0.243800,0.376600,-0.894900,0.433200,-0.107400 0.076440,-0.212700,-0.233200,0.952300,-0.305100,0.001025 -0.103200,-0.091030,0.157200,0.996300,0.084100,0.018950 0.061650,0.075470,0.451000,0.688600,0.712700,0.133800 0.115000,-0.202900,0.212900,0.881200,0.470200,-0.048790 -0.059280,0.059710,0.206500,-0.625100,0.769900,-0.128400 0.005613,-0.277200,-0.482200,-0.093040,0.995700,-0.001577 0.076570,-0.349600,0.299700,0.000000,-0.990300,0.138800 -0.023980,-0.030550,-0.199900,-0.300100,0.903100,-0.307100 -0.061650,-0.232000,-0.366100,0.923700,0.381400,0.035750 0.049510,0.066370,0.285900,0.727400,-0.482800,-0.487700 0.098010,-0.031640,0.174800,-0.980400,-0.193600,0.037940 0.005587,-0.235700,0.054370,-0.067260,0.982500,-0.173800 -0.025110,0.078850,0.535800,-0.097340,-0.721900,0.685100 0.065950,-0.059830,-0.004312,-0.948900,0.082610,0.304600 -0.169500,-0.284400,-0.871000,0.000000,-0.979100,0.203600 -0.102900,-0.085520,0.189900,0.994900,0.098690,-0.018460 0.038740,-0.280700,-0.853400,0.000000,-0.978600,0.205900 -0.195400,-0.402100,0.330500,0.083860,-0.914200,-0.396600 0.087420,-0.286300,-0.880200,0.000027,-0.978500,0.206300 -0.086140,-0.119900,0.331100,0.911200,0.396900,-0.110100 -0.743600,-0.188800,0.116000,-0.031650,-0.935300,0.352500 -0.029210,-0.041370,-0.227200,-0.371900,0.876500,-0.305700 0.066690,-0.062640,0.530800,-0.785900,0.483600,-0.385300 0.034110,-0.244300,-0.055390,-0.387400,0.918700,-0.077160 -0.087000,-0.013810,0.067210,0.927700,-0.359200,0.102000 -0.044000,0.080330,0.267100,-0.722300,0.691100,-0.025310 0.028390,-0.258400,-0.678700,0.928400,-0.347900,-0.130400 0.179900,0.140400,0.259100,-0.664000,-0.740100,0.106500 -0.062110,-0.184500,0.224700,-0.663300,-0.732400,0.153900 0.262100,-0.264400,-0.813400,0.016540,0.978200,-0.207200 -0.256600,-0.282400,-0.861100,-0.003120,-0.978600,0.205600 0.533500,-0.193700,0.122100,0.023410,-0.937600,0.347000 0.028910,-0.254700,-0.108000,0.326900,-0.937900,0.116000 -0.765700,-0.185100,0.109900,0.045280,0.837400,-0.544700 -0.069860,0.009097,0.002585,-0.197700,0.906600,-0.372800 -0.032800,-0.348600,0.304400,0.000004,-0.984200,0.176800 0.289900,-0.186400,0.133000,-0.017470,0.867700,-0.496700 -0.061510,-0.239200,-0.207000,-0.775800,-0.630400,0.026340 -0.437600,-0.158300,0.186200,0.031860,0.930900,-0.364000 -0.732400,0.128600,0.203600,0.000000,-0.966800,0.255600 -0.010850,0.041570,0.343600,-0.983000,0.162600,-0.084740 -0.125800,0.153700,0.298100,0.000000,-0.924800,0.380500 0.716400,0.153700,0.298100,0.000000,-0.924800,0.380500 0.043740,0.076000,0.222700,0.875900,0.474200,-0.089060 -0.377300,-0.198000,0.124600,-0.031570,-0.938500,0.343800 -0.931500,-0.144300,0.215100,-0.893900,0.069490,0.442800 -0.039790,-0.116200,0.475500,0.437200,0.801100,-0.408700 -0.087050,0.031340,0.256300,-0.908600,0.411500,-0.071580 -0.077470,-0.181800,-0.339100,-0.993600,-0.073310,-0.086470 0.663100,0.014100,0.124800,0.999900,-0.002910,-0.013180 -0.103300,-0.040720,0.174100,-0.987700,0.153600,-0.030610 -0.084590,-0.107000,-0.202900,-0.963400,0.235200,-0.128500 0.011000,-0.255200,-0.093770,-0.147500,0.983300,-0.106100 0.005476,-0.298600,-0.938400,0.000000,-0.977800,0.209500 -0.039710,-0.261400,-0.366000,0.604700,0.796500,0.004058 0.662500,-0.100700,0.190500,0.999300,-0.012000,-0.034330 -0.562800,0.138800,0.135700,0.000005,0.930200,-0.367000 -0.022280,-0.056140,0.584100,0.155600,0.495500,-0.854600 -0.156000,0.071860,0.151400,0.840000,0.203700,-0.502800 -0.042050,-0.029080,-0.169600,-0.476100,0.834300,-0.278000 -0.399000,0.134100,0.124200,0.005148,0.919000,-0.394100 -0.084550,0.039900,0.278200,-0.889900,0.451200,-0.066500 -0.311600,-0.203900,0.114800,-0.031670,-0.934500,0.354600 0.175000,-0.271000,-0.807200,0.000000,-0.977800,0.209600 0.875200,-0.160400,0.195300,0.022540,-0.954600,0.297000 0.058040,-0.015200,-0.087160,-0.656600,-0.722100,0.217700 0.036390,-0.216300,0.127900,-0.404900,0.901800,-0.151300 0.123600,-0.197200,0.380400,-0.660400,-0.085600,-0.746000 0.847900,-0.128500,0.245500,0.003304,0.967600,-0.252500 -0.035700,-0.107700,-0.409800,-0.531300,0.796000,-0.289900 -0.081430,-0.091180,-0.192300,-0.939400,0.313600,-0.138400 0.130400,0.064580,0.233900,-0.553000,0.708700,-0.438100 -0.049210,-0.072270,-0.281600,-0.640200,0.720900,-0.265400 0.067670,-0.058310,-0.187200,0.814800,0.548100,-0.189100 0.030170,0.078100,0.379800,0.419400,-0.703200,-0.574100 0.016050,-0.276700,-0.438600,0.239400,-0.970800,0.013900 0.052510,-0.003955,-0.065350,-0.592500,-0.771900,0.230400 0.092680,-0.160600,0.153900,0.955400,0.295300,-0.007786 -0.885700,0.135400,0.229100,-0.118800,-0.940900,0.317300 -0.026060,-0.052170,-0.256400,0.340800,-0.892700,0.294700 0.026440,0.040890,0.086490,-0.924600,-0.272400,-0.266500 0.070980,0.051690,0.270600,-0.796600,-0.593300,0.116300 0.068680,0.035330,0.589200,0.908500,0.308700,0.281800 0.040640,-0.261000,-0.258100,0.522600,-0.851600,0.040520 -0.080400,-0.133800,-0.274200,-0.973000,0.170400,-0.155800 0.497700,-0.195100,0.108600,-0.021860,0.845100,-0.534100 0.044950,0.084040,0.582900,-0.574200,0.720700,0.388400 0.039320,0.021880,0.285500,-0.358600,0.906900,-0.221200 -0.088040,0.037910,0.414500,-0.917900,0.394600,0.040410 -0.035370,0.113500,0.503900,-0.685600,0.569200,0.453900 -0.091940,-0.124100,0.255600,0.945200,0.320000,-0.065370 -0.053210,-0.038700,0.579400,0.540500,0.243800,-0.805300 -0.023130,-0.070290,-0.313700,0.321800,-0.897000,0.303100 0.634300,-0.128800,0.266300,-0.021370,0.978500,-0.205400 0.010950,-0.228000,-0.603400,0.000000,-0.977900,0.209000 -0.053870,-0.242500,-0.169100,0.670400,0.741200,-0.032710 0.371800,-0.148200,0.283000,0.022290,-0.971100,0.237700 0.798400,-0.169300,0.173200,0.022710,-0.950000,0.311300 -0.032800,0.017730,0.278400,-0.001818,0.992100,0.125400 -0.001820,0.120500,0.475300,-0.045890,0.287300,0.956800 -0.012790,0.074710,0.405000,0.995200,0.093950,0.027240 -0.084840,-0.030800,-0.022440,-0.916900,0.377600,-0.129400 -0.104700,-0.022460,0.319200,-0.993600,0.111700,-0.017400 -0.169500,-0.209500,0.112600,-0.030480,-0.935000,0.353300 -0.046990,-0.086900,-0.328400,-0.642100,0.722600,-0.255900 0.088730,0.034500,0.321100,0.926700,0.369900,-0.066630 0.073190,-0.135900,0.360000,0.790100,-0.585700,0.181000 -0.054230,-0.248900,-0.739900,-0.005435,0.981300,-0.192300 -0.754800,-0.183300,0.113500,0.030200,0.842400,-0.538000 0.016360,0.081000,0.456200,0.364900,-0.399900,-0.840800 -0.022510,-0.271100,-0.382900,0.319200,0.947700,-0.004478 -0.540900,0.141500,0.143200,0.020290,0.930800,-0.364900 -0.005243,-0.026220,-0.197200,-0.085670,0.956600,-0.278600 0.076570,-0.201400,-0.514500,0.014860,0.981300,-0.191700 0.885900,0.109300,0.129700,0.000000,-0.964400,0.264600 -0.092960,-0.147800,0.099140,0.951900,0.300200,-0.061080 0.957500,0.079330,0.039540,-0.000004,-0.970200,0.242400 -0.160400,0.169500,0.301900,0.000000,0.702600,0.711600 0.054110,0.043520,0.136500,-0.248600,-0.906200,0.342100 -0.061250,-0.161600,0.319900,-0.630400,-0.744700,0.219100 0.025880,-0.273200,-0.487600,0.461100,-0.887000,-0.022630 0.054840,-0.186100,-0.510300,0.945100,0.227200,-0.234900 -0.202400,-0.278700,0.404400,-0.984500,-0.133100,-0.114600 -0.074520,0.057020,0.486200,-0.849600,0.525500,0.044920 -0.164100,-0.273100,0.367900,0.885800,-0.454700,0.092860 0.154800,0.100700,0.266600,-0.794400,0.606000,-0.042180 -0.061500,-0.072070,-0.012240,0.881600,0.095040,0.462400 0.757000,0.073470,0.002268,0.000000,-0.997800,0.065690 -0.152700,0.140200,0.139400,0.000000,0.932400,-0.361400 0.978900,0.073010,-0.011900,0.005198,-1.000000,-0.003644 0.191200,0.204800,0.568000,0.395100,-0.538100,-0.744500 -0.057910,-0.129300,0.425100,-0.573100,-0.755100,0.318400 -0.032850,-0.266100,-0.371000,0.507600,0.861500,-0.013860 0.124800,0.074490,0.333900,0.464800,-0.769900,-0.437300 0.163600,-0.305100,0.407100,-0.030020,0.740800,0.671100 -0.102300,-0.069700,0.635000,-0.469500,0.309800,-0.826800 0.016040,-0.106900,-0.433900,0.252300,0.910400,-0.327900 -0.896900,0.074760,0.015340,0.000000,-0.990900,0.134700 -0.035620,-0.184400,-0.590800,-0.849700,0.467700,-0.243500 0.660000,-0.033160,0.132700,-0.937300,-0.100600,-0.333700 -0.038880,-0.242200,-0.041360,-0.444100,-0.890100,0.102900 -0.000344,-0.042230,-0.647000,0.016740,0.967900,0.250700 0.048930,-0.175900,0.293500,0.544200,-0.808800,0.223000 -0.174900,-0.146200,0.316900,-0.024960,-0.633500,0.773400 0.023850,-0.085410,0.546700,0.274000,-0.799300,0.534800 0.066480,-0.095670,-0.276900,-0.882300,-0.429700,0.192000 -0.057210,-0.089080,-0.015900,-0.545900,-0.827400,-0.132000 0.662300,0.116300,0.226600,0.957100,-0.041850,0.286700 -0.079340,-0.074510,0.475600,0.879900,0.405600,-0.247500 -0.022670,-0.262000,-0.197600,0.284900,0.955300,-0.079420 0.070730,0.070290,0.300500,0.160300,0.972400,-0.169300 -0.164100,-0.329100,0.392500,0.000000,-0.976300,0.216400 -0.092960,-0.329100,0.392500,0.000000,-0.976300,0.216400 -0.071090,-0.221200,-0.605400,0.009959,0.980400,-0.196600 -0.026440,-0.140100,-0.502500,0.465600,-0.823300,0.324700 0.081170,-0.057760,-0.120300,0.905000,0.385400,-0.180000 -0.218600,-0.201700,0.129200,-0.032000,-0.938000,0.345100 0.062570,-0.040260,-0.021080,0.904200,-0.088530,-0.417900 0.153200,-0.262800,0.379500,0.944200,0.327700,0.032350 0.169500,0.123600,0.101000,0.010350,0.916400,-0.400200 -0.080020,-0.124500,0.360600,0.826700,0.529800,-0.189500 -0.860000,0.073420,-0.024510,0.000000,-0.997800,-0.066070 -0.432000,0.159700,0.196500,-0.010210,0.958900,-0.283500 -0.551900,0.140200,0.139400,0.010150,0.937300,-0.348400 -0.055380,-0.242700,-0.382100,0.869300,0.491100,0.055400 -0.754700,0.130700,0.211800,0.000000,-0.966800,0.255400 0.003237,-0.100700,-0.684500,1.000000,0.000000,0.000000 0.094790,0.023610,0.398200,0.938600,0.342800,0.039100 0.010870,-0.275300,-0.750700,-0.855600,0.505800,0.109900 0.574200,0.079500,-0.006578,0.016030,0.986900,-0.160500 -0.043180,-0.216100,0.105200,0.471200,0.871600,-0.135100 -0.677200,0.073250,-0.001572,0.000000,-0.998800,0.048080 -0.052540,-0.153900,-0.461200,0.907900,-0.363100,0.209600 0.503400,-0.164700,0.165400,0.000771,0.903700,-0.428300 -0.003240,-0.133500,-0.733700,-1.000000,0.000000,0.000000 -0.003240,-0.084310,-0.783000,-1.000000,0.000000,0.000000 -0.043740,-0.256600,-0.776900,0.000000,0.978500,-0.206200 0.033570,-0.169200,0.338500,-0.376200,0.892100,-0.250200 0.048290,-0.024270,-0.137200,-0.563000,-0.780000,0.273100 -0.003240,-0.128100,-0.536900,-1.000000,-0.000058,0.000847 -0.011660,-0.224000,-0.728900,0.590100,-0.725000,0.355300 0.091290,0.026510,0.425700,-0.946000,-0.323500,-0.021880 -0.022800,-0.200100,0.240800,0.229500,0.952600,-0.199600 -0.018840,0.078990,0.245300,0.979800,0.195800,-0.039670 -0.210600,-0.325100,0.392100,-0.971100,0.040160,0.235300 -0.096810,0.014610,0.210900,-0.789000,-0.518100,0.330000 0.098980,-0.122300,0.113900,-0.982000,0.182500,-0.047730 -0.065510,-0.187900,0.179100,0.704500,0.707700,-0.053350 -0.082810,-0.187500,0.006490,0.923400,0.378200,-0.066200 0.003070,-0.144500,-0.646200,0.999400,-0.008827,0.034850 -0.059340,-0.182300,0.233300,0.624800,0.765900,-0.152000 0.990500,0.083490,0.039310,0.862500,0.020980,0.505700 -0.033430,0.064920,0.316000,0.183100,-0.966600,0.179400 -0.054680,-0.271700,-0.848300,0.000000,0.978700,-0.205100 0.080800,-0.101600,0.420600,-0.856000,0.473800,-0.206900 0.003070,-0.177300,-0.804800,0.999200,-0.035460,-0.020280 -0.076110,-0.208000,-0.101100,0.897700,0.439300,-0.034380 -0.040920,-0.244600,-0.070470,-0.463300,-0.879900,0.105200 -0.083780,0.013980,0.146400,0.911800,-0.403800,0.074310 -0.079060,-0.186400,0.091740,-0.852400,-0.516800,0.079490 0.039190,-0.254400,-0.157100,0.458400,-0.885200,0.079030 -0.075490,-0.072840,-0.186200,-0.894500,0.409700,-0.178700 0.044610,-0.183900,0.274400,0.495700,-0.836100,0.235100 -0.360800,-0.156100,0.258800,-0.032030,-0.965300,0.259000 -0.645200,-0.139700,0.286400,-0.032130,-0.970400,0.239600 0.137300,-0.224100,0.380300,0.920600,0.385400,-0.062700 -0.071150,0.026940,0.100700,-0.762600,0.630800,-0.143500 0.667200,0.079330,-0.006582,-0.000018,0.987700,-0.156600 0.051350,-0.178600,0.267600,-0.584500,0.783100,-0.212500 -0.689000,-0.152200,0.233300,-0.031910,-0.961600,0.272500 0.061460,0.065040,0.532700,0.749600,0.645000,0.148600 0.104000,-0.142400,0.262400,-0.022740,0.964800,-0.262000 0.007298,0.093490,0.364700,0.040870,-0.274200,-0.960800 -0.951600,0.087160,0.022250,-0.015430,0.939100,-0.343400 0.043680,-0.300300,-0.946900,0.011960,-0.999800,0.016170 -0.057950,0.076990,0.343700,-0.571700,0.819800,-0.033670 0.475800,0.074760,0.015340,0.000000,-0.991200,0.132200 0.004949,-0.038580,0.625900,0.074330,-0.717000,0.693100 0.062290,0.101500,0.451900,0.484000,0.857100,-0.176200 -0.005642,-0.092570,0.536600,0.062770,0.853400,-0.517500 0.136700,-0.308000,0.363100,0.000000,0.961500,-0.274900 -0.148000,0.079060,0.249100,-0.743100,-0.657200,0.125500 -0.000048,-0.106200,0.512300,0.004359,0.878800,-0.477100 0.454000,-0.136400,0.251300,-0.025150,0.965600,-0.259000 0.036810,-0.254700,-0.580400,-0.898600,0.435000,0.057200 0.064210,-0.230600,-0.148400,-0.783200,0.620800,-0.033190 0.650800,0.073090,-0.016770,-0.001591,-0.997500,-0.071060 -0.042420,-0.182800,0.279900,0.458100,0.861100,-0.220600 0.175100,-0.198000,0.117400,-0.031960,0.858600,-0.511700 -0.188100,0.121900,0.228500,0.433700,-0.885500,0.166700 0.891400,0.092080,0.034540,0.000000,0.925400,-0.378900 -0.864200,-0.154600,0.160700,0.026100,0.916200,-0.399900 -0.053350,0.077410,0.299700,-0.527600,0.843000,-0.104400 -0.825800,0.073080,-0.006550,0.000000,-0.999700,0.023270 0.056050,-0.194400,0.195300,0.610400,-0.774200,0.167100 -0.197700,-0.193300,0.653400,0.373100,-0.200000,0.906000 -0.075510,0.019480,0.092450,-0.809800,0.573700,-0.123200 0.814800,-0.154700,0.219000,0.023050,-0.959300,0.281500 -0.080290,-0.204100,-0.186800,-0.937900,-0.346600,-0.016330 -0.820300,0.153100,0.175200,0.000000,0.949400,-0.314000 0.083170,0.016570,0.156100,0.897200,0.434800,-0.077860 -0.612500,0.079330,-0.006576,0.004056,0.988500,-0.150900 -0.453900,-0.185800,0.151400,-0.030960,-0.944300,0.327500 -0.196400,-0.307700,0.290000,-0.020480,0.351000,-0.936100 -0.062430,0.016360,0.096690,-0.021980,-0.368500,-0.929400 0.112300,0.134800,0.584000,-0.405300,0.588800,0.699300 0.404700,0.082440,0.005282,-0.010410,0.959400,-0.281700 -0.003240,-0.177300,-0.881400,-1.000000,-0.000000,-0.000000 0.002903,-0.111700,-0.673600,0.998500,-0.035520,0.040600 -0.003240,-0.193700,-0.832200,-1.000000,0.000000,0.000000 0.077030,-0.302600,0.395500,0.000000,0.995500,-0.095240 0.049180,0.030170,0.096130,0.040300,-0.160600,0.986200 0.032010,0.072760,0.600200,0.393300,0.834900,0.385000 0.189300,-0.335800,0.311300,0.987000,-0.011340,-0.160100 -0.057760,-0.172500,-0.476300,-0.963400,0.225300,-0.145000 0.793000,-0.129900,0.245600,-0.010860,0.967800,-0.251600 -0.344500,0.082430,0.005268,-0.000039,0.957800,-0.287500 -0.694500,0.088890,0.068650,-0.000007,-0.933000,0.360000 -0.025600,-0.023090,-0.057620,-0.376100,-0.193000,-0.906300 0.022390,-0.231600,-0.702200,-0.970300,0.050610,0.236500 -0.852900,-0.155600,0.203000,-0.032150,-0.956100,0.291300 0.164200,-0.149100,0.300000,0.024300,-0.974200,0.224300 -0.623400,-0.191900,0.118700,-0.031820,-0.937300,0.347200 0.087870,-0.017420,0.521400,0.972700,-0.114400,0.201700 -0.049890,0.076210,0.378400,-0.889100,-0.435400,0.140700 -0.088100,-0.127500,-0.206100,-0.982100,0.132600,-0.134100 -0.060220,-0.014390,-0.075650,0.659300,-0.721800,0.210500 0.032820,-0.299500,-0.942400,0.000821,-0.978400,0.206500 0.136700,0.090560,0.030720,0.000000,0.933300,-0.359100 0.306300,0.092080,0.034540,0.000000,0.925400,-0.378900 0.875100,-0.156800,0.162700,-0.022800,0.911400,-0.410900 -0.858500,-0.180000,0.129300,-0.032030,-0.938800,0.343100 -0.028200,-0.241700,-0.017840,0.347900,0.930600,-0.113700 -0.672700,0.090410,0.030800,-0.020330,0.944800,-0.327100 0.721900,-0.122900,0.287100,-0.034420,0.989000,-0.144000 -0.180600,-0.196000,0.126200,0.015020,0.876100,-0.481900 0.098120,-0.054360,0.052600,-0.977400,-0.201100,0.064960 0.076570,-0.318500,0.411200,0.000116,-0.140700,0.990100 -0.059970,-0.116600,0.450100,-0.613100,-0.721500,0.321900 -0.042970,-0.085090,0.530300,0.448300,0.782700,-0.431800 0.623400,0.086110,0.018120,-0.010270,0.952800,-0.303500 -0.058360,-0.154300,-0.433600,0.934700,-0.309500,0.174400 0.098480,-0.072650,0.289200,-0.992200,0.124300,-0.006043 0.659900,0.169500,0.301900,0.000000,0.726100,0.687600 0.421200,-0.184000,0.157100,0.023080,-0.945900,0.323700 -0.785400,0.074610,-0.029500,0.020790,-0.797000,-0.603600 -0.289800,0.086110,0.018110,0.000000,0.950700,-0.310000 -0.662300,-0.029780,0.197200,0.975600,-0.001166,-0.219700 -0.051180,-0.248600,-0.403900,0.874000,0.484600,0.035170 0.486700,-0.165900,0.208100,0.023180,-0.957300,0.288200 0.497800,-0.148200,0.208500,-0.007507,0.935200,-0.354100 0.836700,-0.177000,0.147800,0.023110,-0.943700,0.330000 0.043580,-0.176200,-0.546300,0.882900,0.415400,-0.219200 0.076220,0.031050,0.165000,0.808600,0.572400,-0.136300 -0.078300,0.051140,0.283400,-0.822800,0.563100,-0.077230 -0.049840,-0.249300,-0.217700,0.632200,0.771700,-0.069220 0.201700,0.229400,0.555500,0.338400,-0.484300,-0.806900 -0.350000,0.112700,0.142600,0.000000,-0.970000,0.243000 -0.131200,0.120600,0.093320,0.020340,0.909700,-0.414700 -0.568700,0.100700,0.053300,-0.000001,0.892500,-0.451000 0.088140,-0.112900,0.311000,-0.941400,0.334300,-0.045990 -0.073230,0.049470,0.228900,-0.772800,0.625700,-0.106100 -0.432200,-0.127900,0.300300,0.049470,0.987100,-0.152400 0.126200,-0.225800,0.247100,0.772500,0.621100,0.132200 -0.791100,0.164000,0.299800,-0.209100,0.155700,0.965400 0.524900,-0.200100,0.105600,0.022620,-0.938500,0.344500 0.182900,-0.402200,0.394200,0.178300,-0.921400,0.345300 0.059810,-0.041090,-0.156100,-0.711300,-0.661100,0.238500 -0.727300,-0.155000,0.219000,-0.031990,-0.959100,0.281400 -0.088420,-0.028940,0.507700,-0.977000,-0.164800,0.135200 -0.328100,0.102300,0.057090,0.015330,0.888000,-0.459600 0.028680,-0.059230,-0.275500,-0.375100,-0.878600,0.295500 -0.793000,0.093300,0.080160,0.000060,-0.936700,0.350100 0.660700,-0.104200,0.168900,-0.227600,0.353200,0.907400 0.240600,0.107900,0.067910,0.004901,0.894300,-0.447400 0.002737,-0.177300,-0.815800,0.998500,-0.050680,-0.020310 -0.003240,-0.067900,-0.651700,-1.000000,0.000000,0.000000 0.061580,0.074640,0.315600,0.332300,0.929700,-0.158700 0.694500,0.114800,0.082620,0.020390,0.884600,-0.465800 0.191700,0.227500,0.553100,0.094200,-0.276300,-0.956400 -0.612100,-0.139500,0.291700,-0.032130,-0.971300,0.235800 -0.000667,-0.313900,-0.558300,0.072830,-0.822900,0.563500 0.070910,-0.019590,-0.054830,-0.791800,-0.583000,0.182200 -0.005773,-0.144500,-0.547100,-0.835800,0.526300,-0.156400 -0.026420,-0.018000,-0.158700,-0.297400,0.906000,-0.301200 -0.093260,-0.158100,0.060910,-0.950800,-0.306800,0.042520 0.017180,-0.268800,-0.744200,0.899500,-0.422900,-0.109600 -0.481300,-0.166900,0.162300,0.031270,0.909000,-0.415600 0.043660,-0.210700,-0.585000,-0.882000,-0.443500,0.159400 -0.169500,-0.203100,0.129800,-0.031890,-0.939000,0.342400 0.300700,-0.178500,0.182400,0.023200,-0.950300,0.310400 0.355500,0.145600,0.155200,0.010020,0.937000,-0.349200 -0.975600,0.091570,0.067970,-0.891700,-0.048390,0.450000 -0.300900,-0.176400,0.155300,0.026050,0.897700,-0.439700 -0.486800,-0.177400,0.140400,0.031120,0.884700,-0.465100 -0.096970,-0.134400,-0.039410,0.991500,0.126500,0.029630 -0.011160,0.074280,0.212500,-0.998200,0.030970,0.050620 0.027310,-0.209700,-0.550900,-0.061910,0.976100,-0.208400 -0.601600,-0.157300,0.174800,0.033700,0.918300,-0.394300 0.459400,0.149400,0.282300,0.000000,-0.966200,0.257800 0.541400,0.151500,0.290100,0.000000,-0.966700,0.255800 0.360900,0.139900,0.246500,0.000000,-0.966800,0.255700 0.100100,-0.051520,0.278000,-1.000000,0.009045,0.003257 0.058390,-0.067910,-0.018470,-0.828900,0.119300,0.546500 -0.068700,-0.080100,-0.235600,-0.862600,0.467600,-0.192800 -0.012580,0.056150,0.478300,-0.721900,-0.684600,0.100300 -0.771000,-0.161400,0.193200,-0.032040,-0.953300,0.300300 -0.664700,0.125700,0.214700,-0.533100,-0.550500,-0.642500 0.667300,-0.165500,0.155300,-0.032690,0.906100,-0.421700 0.022460,0.041960,0.399000,0.149000,-0.952400,0.266000 -0.132500,-0.224500,0.239600,-0.860100,0.509500,-0.026930 0.106700,-0.155200,0.217000,-0.036450,0.951300,-0.306100 0.027360,0.063390,0.563100,-0.000029,-0.202400,-0.979300 -0.207800,0.118200,0.164500,-0.040970,-0.972200,0.230700 0.650800,0.118200,0.164500,0.000000,-0.966800,0.255600 0.081840,0.047800,0.312600,0.866800,0.489500,-0.095080 0.056760,-0.165900,-0.460800,-0.959900,-0.217200,0.177300 -0.278800,-0.184500,0.172800,-0.031920,-0.948600,0.315000 -0.052800,0.025020,0.162500,-0.965000,-0.126700,0.229500 -0.180400,-0.175400,0.211800,-0.031270,-0.958200,0.284400 -0.000114,-0.152700,0.410200,0.003482,0.944800,-0.327600 -0.159700,0.078920,0.154600,0.749100,0.640500,-0.168900 0.155300,0.097600,0.254700,0.177600,0.378300,-0.908500 -0.034750,-0.246500,-0.645300,-0.943000,-0.313900,-0.110700 -0.069860,-0.155700,-0.383600,-0.964200,0.205100,-0.168100 0.021880,-0.320500,0.332400,0.000000,0.854500,-0.519500 -0.035610,-0.267200,-0.464000,-0.618800,-0.785500,0.002816 -0.412600,-0.136000,0.316800,-0.042280,-0.294900,0.954600 -0.175000,0.132400,0.120200,0.000000,0.922900,-0.385000 0.014220,0.093760,0.496600,0.173000,-0.365900,-0.914400 0.057060,-0.241300,-0.427300,0.907900,-0.415700,-0.053460 -0.046100,-0.044260,-0.208200,-0.555000,0.788800,-0.264100 0.114700,-0.208800,0.224700,-0.322100,0.670600,0.668200 -0.902300,-0.148100,0.222800,-0.030550,-0.961000,0.274900 0.181000,-0.408100,0.360000,-0.118000,-0.992900,-0.012590 0.497600,-0.191800,0.129600,0.023100,-0.939500,0.341800 0.010350,-0.215000,-0.711900,-0.502200,-0.809000,0.305600 0.060120,0.005889,-0.034270,-0.011020,0.978700,0.204800 0.050130,-0.126500,-0.423000,0.798000,0.557900,-0.227700 -0.028710,-0.267800,-0.345400,0.425700,0.904600,-0.019920 -0.003240,-0.193700,-0.700900,-0.999900,0.003419,-0.009677 0.048300,-0.055170,0.566700,-0.558500,0.677300,-0.478900 -0.003136,-0.046020,-0.657100,-0.996800,0.067280,0.042190 -0.047920,0.017790,0.151800,0.746500,-0.657400,0.103000 -0.076480,-0.205500,-0.014000,-0.846900,-0.530000,0.043970 -0.098400,-0.147400,0.318200,-0.017830,-0.358600,0.933300 -0.020540,-0.349200,0.300200,-0.015010,-0.996300,0.084800 -0.009549,-0.275600,-0.524100,-0.145200,0.989400,-0.004827 0.094460,-0.072070,0.419400,0.939300,-0.296700,0.172200 0.585200,0.152500,0.294000,0.000000,-0.960800,0.277200 0.262500,0.150400,0.286300,0.000000,-0.966100,0.258200 0.094190,-0.154100,-0.126500,0.994100,-0.106600,-0.018350 0.027370,0.029090,0.337200,0.043440,-0.982000,0.183900 0.091890,-0.172200,-0.027840,0.952100,-0.305600,0.008104 -0.913300,0.077070,-0.022490,-0.000066,0.986100,-0.166000 0.088060,-0.137600,0.259400,0.835100,0.549700,-0.021480 0.046960,-0.251300,-0.176600,0.562600,-0.824200,0.065490 0.705700,-0.179600,0.126200,0.000746,0.833800,-0.552000 0.026230,-0.269800,-0.370000,-0.395100,0.918600,-0.006416 0.257000,-0.264400,-0.776100,0.007030,-0.978600,0.205500 -0.190400,-0.291700,-0.926400,-0.198400,-0.036300,-0.979400 0.030910,-0.019230,-0.150600,-0.370400,-0.874200,0.314000 -0.174900,0.117300,0.160600,0.388500,-0.890300,0.237400 0.005476,0.144700,0.264500,0.000000,-0.966100,0.258300 -0.095320,-0.111500,-0.088660,0.990500,-0.096910,0.097520 0.071660,-0.109600,-0.291800,0.925300,0.341300,-0.165400 0.032710,0.114700,0.512700,0.058470,0.958500,0.279000 0.092190,0.022410,0.444000,-0.951300,-0.303900,-0.052720 -0.464800,0.080920,0.001396,0.020140,0.956300,-0.291800 -0.007285,-0.009366,0.102800,-0.011440,-0.272500,-0.962100 -0.596200,-0.190900,0.110200,0.030080,0.847900,-0.529200 0.085030,-0.107500,0.376800,-0.903900,0.410700,-0.119200 0.050530,-0.204000,0.165500,0.553300,-0.821100,0.140200 0.065990,-0.125800,-0.354900,0.918700,0.353800,-0.175200 -0.009330,0.074750,0.284800,-0.530200,-0.269900,-0.803700 0.000004,-0.318500,0.411200,0.000084,-0.132700,0.991200 -0.061570,-0.194800,0.175500,-0.653000,-0.748600,0.114800 -0.147200,-0.282400,-0.861100,0.000000,-0.978400,0.206600 0.070290,0.035670,0.148900,0.796000,0.598600,-0.089810 -0.022090,0.113900,0.457400,-0.586600,0.235600,-0.774900 -0.054300,-0.243700,-0.440100,-0.899700,-0.433600,-0.049850 -0.031530,-0.065380,-0.295800,-0.413300,0.863900,-0.287800 0.136700,-0.314900,0.342900,0.000000,0.912000,-0.410200 -0.662100,0.101700,0.217800,0.999000,0.041620,-0.016770 0.131300,-0.234900,-0.635900,0.000030,-0.978500,0.206000 -0.284400,0.073080,-0.006359,0.013810,-0.999800,-0.010580 -0.623000,0.080340,0.043350,0.000000,-0.964000,0.265900 0.497700,-0.186700,0.122400,-0.027550,0.859900,-0.509700 0.053830,-0.024690,-0.126100,-0.624100,-0.737800,0.257000 -0.042590,-0.258800,-0.300300,0.584800,0.809400,-0.053160 -0.563300,0.078680,-0.011630,0.007529,0.961400,-0.274900 0.057930,-0.053780,-0.208000,0.693100,0.682100,-0.233100 0.042840,-0.216000,0.108400,-0.469500,0.871700,-0.140500 0.016060,0.096850,0.345000,0.910400,0.386700,0.147400 0.148000,0.091340,0.260900,-0.803000,0.595900,0.004710 -0.364200,0.073560,0.003419,-0.000000,-0.997800,0.066750 0.019930,-0.034940,-0.211000,-0.252100,-0.916900,0.309400 -0.585100,0.078680,-0.011800,0.000486,0.985900,-0.167000 0.043760,-0.347700,0.308400,0.000000,-0.975700,0.219300 0.060620,-0.248900,-0.739900,0.000013,0.978600,-0.205500 0.208300,-0.238600,-0.653300,0.000118,-0.978400,0.206700 0.101600,-0.090020,-0.006290,0.999300,0.036230,-0.013490 -0.235200,-0.266500,-0.821000,-0.036200,0.969200,-0.243500 -0.059220,-0.243300,-0.341700,-0.858000,-0.513200,-0.023340 0.101300,-0.062500,0.239800,-0.998600,0.028120,-0.044250 0.043480,-0.182200,-0.559200,0.891100,0.390200,-0.231600 -0.019630,-0.177300,0.329300,0.218600,0.920700,-0.323300 0.071080,0.046340,0.237500,-0.801300,-0.593700,0.074210 -0.103700,-0.023840,0.272500,-0.989100,0.144500,-0.029630 -0.098090,-0.090080,-0.028340,0.981100,-0.159000,0.110700 0.043760,-0.287100,-0.883800,0.000000,-0.977800,0.209500 0.038290,-0.253200,-0.722900,-0.001053,-0.979000,0.203900 -0.191400,-0.287100,-0.883800,0.000000,-0.977800,0.209400 0.092640,-0.092690,0.360300,-0.944700,0.315600,-0.089150 -0.004129,0.098760,0.332500,-0.174400,0.979000,-0.105700 -0.665800,-0.062400,0.195800,-0.993600,0.034320,-0.107300 0.038200,-0.208200,-0.547000,-0.257400,0.962800,-0.082810 -0.051420,-0.034120,0.613100,-0.921600,-0.045260,-0.385500 0.196900,-0.283700,-0.902700,0.025490,0.974400,-0.223600 -0.810700,0.073420,-0.024520,0.000579,-0.996300,-0.085830 0.076580,-0.278500,-0.880800,0.015290,0.984300,-0.175700 -0.071080,-0.256600,-0.776900,0.000000,0.978500,-0.206200 0.207800,-0.240500,-0.700300,0.000000,0.978500,-0.206200 -0.019560,-0.182400,0.312800,0.193300,0.935300,-0.296500 0.082160,0.011840,0.538200,-0.966800,-0.167700,-0.192900 -0.749200,0.078680,-0.011820,-0.000053,0.990100,-0.140400 0.585600,0.168400,0.235600,0.015690,0.987700,-0.155400 0.072290,-0.022120,-0.068000,0.810600,0.561400,-0.166900 0.032540,0.032060,0.057590,0.197700,0.151500,-0.968500 -0.039700,-0.262200,-0.398400,0.629900,0.776400,-0.020760 -0.044560,-0.259800,-0.392300,-0.685800,-0.727700,-0.010560 0.043850,-0.208700,0.162600,0.482400,-0.862800,0.151300 -0.382700,-0.202200,0.113000,-0.031260,-0.934300,0.355200 0.092980,-0.253000,-0.754700,0.000000,0.977800,-0.209800 0.732800,0.076870,-0.022150,-0.002177,0.969900,-0.243500 0.076660,0.172900,0.283500,0.097570,0.994600,0.036560 -0.005258,-0.040800,-0.243000,-0.079400,0.947700,-0.309200 0.028630,-0.110500,-0.423500,-0.422500,-0.857900,0.292400 0.014790,-0.067230,-0.312500,-0.206000,-0.931300,0.300400 -0.050770,-0.183200,0.268000,-0.534900,-0.819700,0.205200 0.179500,0.130300,0.272200,-0.795600,0.555700,-0.241300 0.145800,-0.294500,-0.936100,0.244800,-0.412100,-0.877600 -0.101500,-0.095220,0.037260,0.999400,-0.018350,0.028550 0.372000,-0.193200,0.117500,-0.022410,0.867000,-0.497800 -0.040220,-0.047240,0.595600,-0.555600,-0.771400,0.310300 -0.015830,0.073090,0.413800,-0.268400,0.051610,0.961900 0.037450,-0.017770,-0.137600,-0.431400,-0.856900,0.282100 -0.700000,-0.137400,0.288500,-0.030870,-0.972100,0.232400 0.075250,0.092050,0.591100,0.487900,-0.613900,-0.620600 0.008357,-0.215500,0.176900,-0.112600,0.980100,-0.163400 0.098460,0.170900,0.256200,0.034460,0.993900,-0.105100 -0.031500,-0.010830,-0.131200,-0.356000,0.879800,-0.315100 0.082010,-0.181800,0.064410,-0.897600,0.435900,-0.065970 0.087790,-0.112300,0.357000,0.921300,-0.383300,0.064840 0.098450,-0.234800,-0.673000,-0.000027,0.978600,-0.205600 0.060170,-0.234800,-0.673000,0.000000,0.978600,-0.205700 -0.074050,-0.194400,-0.329400,0.970400,0.222100,0.094880 -0.042870,-0.159400,-0.510600,0.815100,-0.515300,0.264900 -0.103300,-0.056890,0.360000,-0.991700,-0.114500,0.058180 -0.349900,-0.205900,0.106100,-0.031660,-0.940900,0.337300 -0.103800,-0.089810,0.053750,-0.999100,0.035230,-0.023320 0.107100,0.027040,0.194000,-0.654100,-0.020100,-0.756200 -0.059560,-0.236700,-0.173700,0.747600,0.664000,-0.014930 -0.092590,-0.072370,-0.056050,0.965700,-0.238300,0.103200 -0.076550,0.169800,0.245500,-0.000026,0.991600,-0.129200 -0.136700,-0.252100,-0.717800,0.000000,-0.979000,0.203700 0.158600,-0.252100,-0.717800,0.000000,-0.979000,0.203700 0.120300,-0.262300,-0.798700,0.000000,0.979200,-0.202900 -0.142200,-0.261400,-0.761800,0.000000,-0.978400,0.206500 -0.295200,-0.153500,0.277400,-0.032200,-0.969900,0.241300 -0.153100,0.172200,0.272500,0.000023,0.998700,-0.050280 0.432000,0.172600,0.283500,0.005060,1.000000,0.002137 -0.749200,0.172700,0.288900,0.000000,0.999800,0.021750 0.091010,-0.155300,-0.192200,0.996000,-0.077220,-0.045520 -0.003240,-0.166300,-0.859500,-1.000000,0.000000,0.000000 -0.003240,-0.199200,-0.739200,-1.000000,0.000000,0.000000 -0.003240,-0.139000,-0.783000,-1.000000,0.000000,0.000000 0.176800,-0.363200,0.370900,-1.000000,0.000000,0.000000 -0.066740,-0.226700,-0.152200,0.826500,0.562800,-0.008635 0.098110,0.006331,0.384900,-0.974300,-0.225100,0.004053 0.092600,-0.096120,0.370600,0.934900,-0.341000,0.098970 -0.103000,-0.084410,0.037390,-0.996000,0.077620,-0.044340 0.155600,0.157000,0.589900,-0.344600,0.576200,0.741100 -0.031600,-0.196100,0.255300,-0.332500,-0.915400,0.226800 -0.032630,-0.188700,-0.609800,-0.837800,0.504800,-0.207800 0.065640,-0.240600,-0.663200,0.000000,-0.979100,0.203600 0.092980,-0.240600,-0.663200,0.000000,-0.979000,0.203700 0.005501,-0.214300,-0.574300,0.060900,0.975900,-0.209500 -0.579700,0.116200,0.156700,0.000000,-0.968900,0.247400 -0.224200,0.114900,0.151500,0.000029,-0.971300,0.237900 0.131200,-0.219900,-0.601600,-0.020330,0.980000,-0.198100 0.102400,-0.008066,0.349100,0.987600,0.157100,-0.003242 -0.101000,-0.100700,0.020840,0.999200,-0.007129,0.038500 0.104100,-0.067930,0.146700,0.998100,0.062020,0.001611 -0.738300,0.073080,-0.006550,0.000000,-0.999700,0.023270 0.765700,-0.120900,0.289600,-0.007639,0.985600,-0.168800 -0.102600,-0.008005,0.365500,-0.989700,0.143100,0.007275 -0.054070,-0.177400,0.271800,0.581200,0.791100,-0.190700 -0.508600,0.076420,0.025960,0.000000,-0.983900,0.178800 0.136700,-0.246300,-0.727600,-0.004754,0.977100,-0.212900 -0.098070,-0.122600,-0.088420,-0.997500,0.016910,-0.068830 0.054680,-0.250000,-0.342500,0.741300,-0.670200,0.035310 -0.054680,0.120600,0.173300,0.000000,-0.967400,0.253400 -0.044960,0.061200,0.604800,-0.636600,0.646100,0.421100 -0.005698,0.074270,0.201200,0.617700,-0.786000,0.026210 -0.027330,0.171000,0.256200,-0.015150,0.995100,-0.098000 0.098260,-0.143600,0.042690,0.976700,-0.214300,-0.010900 0.448400,0.126300,0.195100,0.000000,-0.967400,0.253400 0.081450,-0.012430,0.538300,-0.935000,0.182100,-0.304400 -0.858600,0.171000,0.256200,-0.000178,0.995200,-0.097900 -0.027330,0.013440,0.100100,0.015240,0.191100,0.981500 0.101200,-0.061900,0.381700,0.974300,-0.212600,0.075020 -0.082020,0.120600,0.173300,0.000000,-0.967400,0.253400 -0.054020,-0.199000,0.170400,0.588200,0.799900,-0.118900 0.251600,-0.278700,-0.843700,0.000022,-0.978500,0.206100 -0.322600,0.163700,0.213200,-0.000011,0.978600,-0.206000 -0.114800,-0.267200,-0.789100,0.000000,-0.978500,0.206100 -0.568700,0.165100,0.218300,-0.000084,0.978100,-0.208300 0.136700,-0.271800,-0.811200,0.000000,-0.977900,0.209000 0.295300,0.075530,0.020700,0.000000,-0.988000,0.154200 0.073160,0.074740,0.606600,0.452100,-0.636400,-0.625000 0.586000,0.073210,-0.002235,-0.000003,-0.999000,0.044850 -0.218700,-0.268100,-0.831500,-0.000040,0.978400,-0.206800 -0.085700,-0.057610,-0.088180,-0.926900,0.350300,-0.135100 -0.607000,0.172400,0.294200,0.000000,0.991700,0.128500 -0.066300,-0.177200,-0.423500,-0.988600,0.119500,-0.092060 -0.044500,0.043750,0.387800,-0.834100,0.086020,0.544900 -0.071080,-0.345200,0.298600,0.000000,0.653800,-0.756700 0.058030,-0.137500,-0.406400,-0.904900,-0.380800,0.190200 0.109400,0.172300,0.283400,0.010100,0.999900,0.007263 -0.047950,0.068780,0.288900,0.999700,-0.015170,0.017450 0.683700,-0.136800,0.229700,-0.017490,0.957200,-0.289100 -0.191300,-0.346900,0.354600,0.988700,-0.147600,0.027160 -0.003240,-0.166300,-0.717300,-1.000000,0.000000,0.000000 -0.081640,-0.132300,0.320900,0.858600,0.485300,-0.165300 0.864200,-0.120900,0.278700,-0.038170,0.970200,-0.239300 -0.016410,-0.284300,-0.908100,-0.005158,0.980600,-0.195900 0.262500,0.164800,0.218400,-0.020300,0.973300,-0.228800 0.432000,0.148000,0.277200,0.000000,-0.967400,0.253400 -0.082030,-0.233800,-0.630700,-0.000006,-0.977900,0.208900 0.027350,-0.329100,0.392500,0.000000,-0.976300,0.216400 -0.065620,-0.334000,0.370500,0.000000,-0.976800,0.214000 -0.072430,-0.201000,0.060740,-0.790300,-0.605500,0.093760 0.040270,0.049060,0.624500,0.592300,0.538200,0.599600 0.069780,-0.219000,-0.088320,-0.812700,0.581000,-0.044570 0.061770,0.077740,0.604000,-0.511000,0.602400,0.613200 -0.173300,0.086500,0.149600,-0.741000,-0.654000,0.152400 0.663000,-0.117100,0.163400,0.998300,-0.001810,-0.058990 -0.426500,-0.143700,0.299700,-0.032910,-0.974100,0.223900 0.475800,0.136500,0.233600,0.000000,-0.966900,0.255200 0.024750,-0.243900,-0.006729,0.274700,-0.955200,0.110100 0.071100,0.132100,0.216900,0.000000,-0.966700,0.255900 0.202200,0.209100,0.571400,0.718400,-0.680500,-0.144200 -0.721900,0.116200,0.156700,0.000000,-0.968900,0.247400 0.101500,-0.052010,0.081240,0.980000,0.191300,-0.054910 0.091040,-0.133800,-0.181200,0.989000,0.101800,-0.107700 -0.705500,-0.188500,0.107900,0.029990,0.845200,-0.533600 0.078370,0.022110,0.134100,0.854000,0.516100,-0.065110 -0.010950,-0.091020,-0.384200,0.178300,-0.928000,0.327100 -0.075210,-0.171300,-0.340600,0.991300,-0.060050,0.116900 -0.063020,-0.229200,-0.106600,0.742500,0.665000,-0.080070 -0.072550,-0.060320,-0.160200,0.883300,-0.435200,0.174300 -0.093300,-0.146100,0.150900,-0.944000,-0.327900,0.036610 0.251500,-0.137900,0.317500,-0.011760,-0.122500,0.992400 0.096220,-0.083610,0.376200,0.955200,-0.284400,0.082470 0.694600,-0.135000,0.234600,-0.027940,0.961100,-0.274800 -0.034700,-0.134000,0.445200,-0.347700,-0.865400,0.360900 0.218800,-0.256800,-0.739800,0.000000,-0.978500,0.206000 0.251600,-0.256600,-0.776900,0.000036,0.978500,-0.206300 0.240600,-0.271800,-0.811200,-0.000034,-0.977900,0.209100 0.169500,-0.245300,-0.685200,0.000000,-0.978500,0.206200 0.158300,-0.291700,0.338900,-0.305100,0.702400,0.643100 -0.240500,-0.201000,0.128900,-0.031700,-0.938200,0.344700 -0.100100,-0.056750,0.091950,0.988300,-0.144900,0.047330 -0.011800,-0.229400,-0.746400,-0.732900,0.571200,-0.369600 0.147700,-0.332900,0.375700,0.000028,-0.976300,0.216500 0.054690,-0.220800,-0.553500,0.632700,-0.765900,0.114300 0.032510,-0.264400,-0.531300,-0.684100,0.728300,0.038850 -0.092960,-0.261400,-0.761800,0.000000,-0.978400,0.206500 -0.366400,0.146700,0.272200,0.000000,-0.967400,0.253300 0.071110,0.165600,0.218200,0.000024,0.973700,-0.227900 0.158600,0.081570,0.047670,-0.000002,-0.958400,0.285500 -0.410200,0.081570,0.047670,0.000000,-0.958400,0.285500 0.257000,0.081570,0.047670,0.000000,-0.958400,0.285500 -0.662100,0.057910,0.212300,0.998900,0.036740,-0.028790 -0.077330,-0.204100,-0.064660,0.893400,0.448700,-0.020780 -0.080570,-0.174700,0.128600,0.877900,0.474000,-0.068670 -0.202200,-0.373300,0.322800,-0.996900,-0.001366,-0.078380 -0.067750,-0.141200,0.366800,-0.698600,-0.678700,0.226600 -0.060790,-0.186800,-0.461200,0.982000,-0.120700,0.145000 0.075000,0.000851,0.027870,-0.782000,-0.599500,0.170300 0.224200,-0.164800,0.233800,0.023250,-0.962500,0.270200 -0.095900,-0.128100,-0.094110,0.998200,0.034910,0.049090 -0.051690,-0.172800,-0.508800,-0.926200,0.299100,-0.229400 0.683600,0.087450,0.022050,-0.000156,0.945300,-0.326200 0.096850,-0.117300,-0.104700,0.989200,0.099490,-0.107600 0.246100,0.109300,0.129700,-0.000033,-0.964300,0.264700 -0.109400,-0.240600,-0.663200,0.000000,-0.979000,0.203700 0.086680,-0.158400,-0.222600,-0.994200,0.070940,0.081230 0.127300,0.148500,0.581300,-0.401200,0.559300,0.725400 0.005477,0.102900,0.108100,0.000000,-0.954400,0.298400 0.036050,-0.267400,-0.416100,0.564200,-0.825600,0.007838 0.063030,-0.202000,0.103100,-0.688400,0.715800,-0.117200 -0.054680,0.102900,0.108100,0.000000,-0.954400,0.298400 0.010940,-0.088200,-0.006756,-0.000001,-0.978600,0.205700 -0.885900,0.110700,0.134700,0.000000,-0.965100,0.261700 0.033690,-0.090140,-0.364900,0.473000,0.828300,-0.300500 0.021880,-0.279800,-0.848900,0.000000,-0.978600,0.205900 -0.055940,0.042050,0.103600,-0.583600,0.792600,-0.176500 -0.042500,-0.248200,-0.133400,0.506600,0.860100,-0.059460 -0.001733,0.063790,0.628900,-0.013110,0.770400,0.637400 0.432000,-0.195700,0.123500,0.023060,-0.937800,0.346400 0.088700,-0.117000,-0.165100,-0.987600,-0.122500,0.097750 0.930200,-0.186900,0.114000,0.022760,-0.936000,0.351100 0.902400,0.119300,0.168300,0.000008,-0.967400,0.253300 -0.864100,0.083100,0.052600,-0.000081,-0.953100,0.302600 -0.065200,-0.215000,-0.541700,-0.044270,-0.982000,0.183500 0.054160,-0.143800,-0.449700,0.873600,0.425200,-0.236500 -0.415300,-0.197000,0.110800,0.030140,0.846800,-0.531100 0.295300,-0.140300,0.250900,-0.008578,0.974200,-0.225700 -0.126400,0.042000,0.179400,-0.249400,-0.808900,-0.532500 -0.885900,0.077070,-0.022490,0.000000,0.990800,-0.135500 0.793000,0.159400,0.196600,-0.000030,0.962000,-0.273100 0.086170,-0.023290,0.021380,-0.921100,-0.370300,0.120200 -0.240700,-0.207600,0.105400,0.000041,0.638500,-0.769600 0.410100,-0.184500,0.156300,0.023160,-0.945600,0.324400 -0.492100,-0.202000,0.103400,-0.034180,-0.975700,0.216600 -0.918600,-0.162900,0.172900,-0.031860,-0.949900,0.311000 0.251600,0.102900,0.108100,0.000000,-0.954400,0.298400 0.056770,-0.044070,-0.182700,0.671600,0.708000,-0.218400 -0.054680,0.143300,0.147400,-0.000007,0.943400,-0.331600 -0.661800,-0.189500,0.108600,0.030030,0.846500,-0.531600 0.010940,0.149000,0.163700,-0.000041,0.944500,-0.328400 0.918800,0.099080,0.096450,0.000000,-0.946300,0.323400 0.027330,-0.300500,-0.947300,0.028220,-0.996200,0.082180 -0.073770,-0.219600,-0.186900,-0.897600,-0.440800,-0.001068 -0.062670,-0.230700,-0.389000,-0.942800,-0.328100,-0.059430 0.039290,-0.057280,-0.261100,0.486600,0.828600,-0.276700 -0.029270,-0.226600,0.092970,-0.328100,-0.932500,0.151000 -0.863600,0.080340,0.043350,0.000003,-0.964000,0.265900 0.066230,-0.023190,-0.094910,0.741400,0.636300,-0.213300 0.005126,0.019610,0.653800,0.129400,-0.031380,0.991100 -0.077830,-0.166800,-0.334000,-0.987200,0.094020,-0.129200 0.459400,0.149100,0.163700,-0.004596,0.954200,-0.299100 -0.677700,0.127500,0.108600,0.010230,0.912800,-0.408200 -0.116200,0.037650,0.214200,-0.852000,0.431300,-0.296800 0.005450,-0.293900,-0.951200,0.018620,0.938900,-0.343800 -0.011760,0.096510,0.472800,-0.776000,-0.291800,0.559100 -0.864200,-0.130900,0.224200,0.025070,0.955300,-0.294500 -0.481400,-0.142000,0.229700,0.031450,0.959800,-0.278900 -0.119100,0.044170,0.231800,-0.459600,-0.725000,0.513000 0.081520,-0.175200,0.114600,-0.885600,0.457900,-0.077470 0.062690,-0.201800,0.124700,0.701300,-0.702000,0.124000 -0.374700,-0.203900,0.102400,0.060590,0.680700,-0.730000 0.853200,-0.129700,0.240000,-0.026380,0.973700,-0.226200 0.743800,0.158100,0.191900,-0.014750,0.947100,-0.320500 -0.077630,-0.030940,-0.065940,-0.870500,0.464800,-0.162000 0.252000,0.130100,0.116300,-0.015460,0.920500,-0.390400 0.833800,0.165000,0.284800,0.411500,0.198400,0.889500 0.096780,0.013690,0.436500,0.973200,0.228500,0.026130 -0.095930,-0.041330,0.043020,-0.963100,0.258400,-0.074900 0.782100,-0.136000,0.224000,-0.023780,0.956600,-0.290500 -0.049430,0.020040,0.273200,-0.947200,-0.241100,-0.211500 0.187800,0.110400,0.157300,0.680100,-0.717300,0.151400 0.066610,0.025710,0.084210,-0.723200,-0.678700,-0.127900 0.170000,0.134300,0.225400,0.021850,-0.964800,0.262100 0.060610,-0.041390,0.566800,-0.752900,0.511300,-0.414300 -0.087110,0.034050,0.420700,0.926900,-0.373400,-0.037750 -0.197700,0.106300,0.123400,-0.367700,-0.908100,0.200300 -0.061720,-0.195500,0.153800,0.651900,0.749600,-0.114100 -0.678100,0.158100,0.191900,0.004568,0.943100,-0.332400 0.662800,0.101600,0.217900,0.999900,0.007909,-0.006538 0.662000,-0.197500,0.103400,0.021650,-0.964400,0.263400 -0.147700,-0.236000,-0.641100,0.000000,-0.978600,0.205800 -0.002180,-0.350900,-0.641900,-0.104200,0.861100,-0.497700 -0.167700,-0.303300,0.404700,-0.004483,0.874400,0.485300 -0.094740,-0.128500,0.190600,0.951700,0.300700,-0.061760 0.068320,-0.094040,-0.264000,-0.892200,-0.416000,0.176100 -0.065120,0.068150,0.452900,0.702200,-0.711200,-0.033400 0.069990,-0.048290,0.002735,0.986900,0.161300,-0.002833 -0.317100,-0.138100,0.317400,-0.016390,-0.140300,0.990000 -0.662000,-0.084660,0.157200,0.993300,0.035800,0.110000 -0.388200,-0.142500,0.309900,-0.030760,-0.950200,0.310000 0.043040,-0.257500,-0.460400,-0.780300,0.625100,0.020170 -0.005156,-0.279200,-0.465800,-0.093230,-0.995400,0.020430 -0.535800,-0.198400,0.109300,-0.031700,-0.933700,0.356700 -0.985200,0.075540,-0.018390,-0.743800,0.149500,-0.651500 -0.049980,-0.046240,0.581000,-0.582200,-0.678100,0.448500 -0.074850,0.003304,0.578300,-0.981000,-0.089340,0.172500 0.086470,-0.104200,0.392600,0.947500,-0.313700,-0.061210 0.590600,-0.159000,0.222800,0.023380,-0.960800,0.276200 -0.508600,0.159400,0.196600,-0.004707,0.961100,-0.276300 0.061950,-0.230800,-0.405500,0.914300,-0.404500,-0.023290 -0.076050,-0.150700,-0.315800,0.982100,-0.145200,0.120300 0.251500,-0.254000,-0.726700,0.067230,-0.962400,0.263200 0.875200,-0.126300,0.305000,0.613900,-0.058000,0.787200 -0.078880,-0.134000,-0.285000,-0.979100,0.162300,-0.122700 0.071860,-0.171700,-0.367500,-0.992200,-0.091750,0.084340 0.091110,0.029780,0.327300,0.931400,0.360000,-0.054020 0.081120,0.052640,0.449000,0.872500,0.477700,0.102700 -0.085940,-0.116400,-0.192800,0.968200,-0.212800,0.131300 0.869600,-0.151500,0.174500,-0.035440,0.910500,-0.412100 0.000010,-0.248400,-0.030560,0.016400,0.990900,-0.133300 -0.090860,-0.024940,0.042990,-0.939300,0.330700,-0.091860 0.261400,-0.256900,-0.777300,0.141000,0.972500,-0.185300 -0.101100,-0.035730,0.141400,-0.979000,0.196700,-0.053670 0.005611,-0.030030,0.633700,0.099800,-0.627800,0.771900 -0.017020,-0.169600,0.355600,0.179800,0.938900,-0.293500 0.063020,-0.144400,0.299800,-1.000000,-0.005097,0.005878 -0.045690,0.085620,0.431000,-0.692900,0.720900,0.014220 -0.147600,-0.229100,-0.608600,-0.000030,-0.978500,0.206200 -0.066020,-0.233500,-0.226300,-0.838000,-0.545300,0.016920 0.000521,0.105700,0.366800,-0.101900,0.923600,-0.369500 -0.020180,0.102200,0.425600,-0.280000,0.516700,0.809100 -0.067780,-0.002581,-0.033170,-0.842000,0.417900,-0.341100 0.103100,-0.080340,0.093410,-0.999000,-0.041190,0.019270 -0.076640,-0.181900,0.123700,0.816400,0.572100,-0.079130 0.432300,-0.157900,0.186100,-0.008140,0.924100,-0.382000 0.195900,-0.346700,0.387200,0.969300,-0.153600,0.191900 -0.073080,-0.131900,0.376600,-0.762000,-0.613100,0.208400 0.073470,-0.210800,-0.279900,-0.954000,0.297800,0.034200 -0.250700,-0.249900,-0.707500,-0.085650,-0.973000,0.214300 -0.020000,-0.062600,0.579300,0.242000,0.808900,-0.535800 -0.038260,-0.087020,-0.011290,0.026510,0.983200,-0.180600 -0.048330,-0.251400,-0.429400,0.824500,0.563500,0.052680 0.160500,-0.308800,0.338600,-0.961000,0.220900,-0.166600 0.169500,0.092420,0.144400,-0.763400,0.631500,-0.135900 0.085670,-0.178400,-0.192600,-0.975200,0.214700,0.054220 0.007965,-0.116900,-0.466200,0.110700,0.923400,-0.367600 0.086320,-0.130700,0.261500,-0.928800,0.352400,-0.115000 -0.151900,0.065280,0.157700,-0.508000,-0.813800,-0.282200 0.081230,0.080200,0.606400,0.454500,-0.635400,-0.624200 -0.552200,-0.139900,0.228700,0.029970,0.947800,-0.317400 0.016420,-0.231300,-0.619000,0.000000,-0.979100,0.203400 0.089040,-0.171000,-0.192100,0.982700,-0.183300,-0.025320 0.087510,-0.263600,-0.772200,0.000000,-0.979100,0.203300 -0.085790,-0.176500,0.070030,-0.911400,-0.407000,0.061350 -0.062090,-0.230400,-0.399900,-0.939700,-0.337600,-0.054620 -0.185900,-0.233800,-0.630700,0.000018,-0.977900,0.208900 -0.004946,-0.373900,-0.651900,-0.970100,-0.212000,0.118400 0.032210,-0.264200,-0.541900,-0.688200,0.725000,0.028050 0.045060,0.031720,0.342800,0.881600,-0.441300,0.167500 0.094650,-0.170500,0.148300,0.887600,-0.128100,-0.442500 0.322700,0.171100,0.298600,-0.000105,0.948100,0.318000 0.093880,-0.094970,0.311000,-0.964600,0.262800,-0.021750 0.169800,-0.138800,0.270300,-0.023990,0.977600,-0.209000 -0.067260,-0.095440,-0.269600,0.913100,-0.363600,0.184300 0.382800,-0.169100,0.206000,0.023710,-0.956600,0.290400 -0.054490,-0.088970,-0.305300,0.734300,-0.627800,0.258100 0.177400,0.178600,0.583400,-0.268800,0.496500,0.825400 0.481300,-0.126700,0.295500,-0.053470,0.988300,-0.142800 0.033830,-0.241900,-0.635800,-0.976600,-0.197100,0.086600 -0.057690,-0.246400,-0.318100,-0.804400,-0.593700,-0.020060 -0.066940,-0.065750,-0.208200,-0.828000,0.524700,-0.197700 -0.141800,0.113700,0.078750,0.000094,0.898200,-0.439600 0.058840,-0.225700,-0.027920,-0.637600,0.759200,-0.131200 0.831500,-0.128100,0.249000,-0.015340,0.968400,-0.249000 0.012120,0.107800,0.365200,-0.284300,0.781100,-0.556000 -0.165600,-0.287100,0.309800,0.674300,-0.681400,-0.284800 -0.840400,0.073220,-0.020900,-0.000000,-0.999000,-0.043820 -0.076560,-0.321400,0.410500,0.000250,-0.391800,0.920000 -0.109400,-0.252100,-0.717800,0.000000,-0.979000,0.203700 0.005566,-0.189200,0.294900,-0.096240,0.968500,-0.229900 0.026750,-0.247100,-0.674600,-0.866600,-0.440200,0.234900 -0.939900,-0.186400,0.103000,-0.023140,-0.983100,0.181600 -0.069310,-0.223700,-0.237900,0.897000,0.441700,0.015880 -0.349800,-0.173600,0.158100,0.022320,0.914000,-0.405000 -0.084360,-0.145500,0.245400,0.811300,0.562500,-0.159300 0.112700,-0.170400,0.398000,-0.922100,-0.372300,0.105900 -0.104800,-0.088200,0.110000,-0.999000,-0.043440,-0.004711 -0.017270,-0.203000,-0.680700,-0.563700,0.751200,-0.343400 0.036990,0.074320,0.351400,-0.246200,-0.028970,0.968800 0.082990,-0.192900,-0.088410,-0.932900,0.360100,-0.006636 0.070920,-0.144400,0.338100,0.744000,-0.651000,0.150400 0.344500,0.080140,-0.002635,0.009205,0.974000,-0.226200 -0.019300,0.058220,0.111800,-0.632700,0.474300,0.612200 -0.067990,-0.214000,0.010560,-0.751400,-0.652700,0.097060 -0.082150,-0.170700,0.134600,0.928100,0.366200,-0.067470 -0.043660,0.088310,0.447300,-0.890300,0.454300,0.031480 -0.787400,-0.150900,0.226200,-0.032760,-0.960100,0.277700 -0.825800,0.084900,0.014220,-0.015700,0.963500,-0.267100 0.080880,-0.048560,-0.087090,-0.911600,-0.386600,0.139800 -0.047770,0.044340,0.086660,-0.523000,0.835900,-0.166600 -0.847800,-0.155100,0.160900,0.041930,0.906800,-0.419500 0.026350,-0.270100,-0.504100,-0.499700,0.866000,0.019220 -0.087880,-0.154500,0.154100,0.926800,0.373400,-0.039990 0.001618,-0.397000,-0.711200,0.692600,-0.721200,-0.010550 0.278900,0.154600,0.180000,0.014870,0.961600,-0.273900 -0.267900,-0.156300,0.270000,-0.032850,-0.967200,0.251900 0.081300,-0.093090,0.437200,-0.872700,0.443900,-0.203300 -0.077260,-0.081940,-0.197300,-0.915400,0.369300,-0.160300 0.262500,0.155500,0.184200,-0.020480,0.956500,-0.290900 0.443000,0.130600,0.116300,-0.005482,0.933400,-0.358900 0.366400,0.152500,0.294000,0.000000,-0.960800,0.277200 -0.443100,-0.169800,0.159700,0.069050,0.898500,-0.433600 0.115700,0.144900,0.577600,-0.430000,0.606100,0.669200 -0.056910,-0.190000,0.219200,-0.606700,-0.778300,0.161500 0.041760,-0.061380,-0.268600,0.505900,0.818200,-0.273200 -0.103100,-0.050760,0.179400,0.987100,-0.153900,0.044410 0.072060,-0.051760,-0.140100,-0.854500,-0.483000,0.191400 -0.061370,-0.034230,-0.133100,0.733100,-0.648200,0.206000 -0.189600,-0.331000,0.403200,0.812600,-0.566300,0.137800 0.060170,-0.013180,0.103600,-0.000029,-0.202800,-0.979200 0.169600,0.182600,0.572700,0.411500,-0.555400,-0.722600 0.065290,0.063790,0.612100,0.588600,-0.756900,-0.284200 -0.036880,-0.256700,-0.176200,-0.450100,-0.890300,0.068530 -0.508700,-0.152000,0.196600,0.037190,0.934400,-0.354200 -0.056420,-0.159100,0.332600,0.600300,0.760200,-0.248400 -0.628800,-0.194600,0.111100,-0.031660,-0.933600,0.356900 -0.071230,-0.138700,0.353900,0.745100,0.641000,-0.184300 0.525100,-0.190600,0.115300,-0.011600,0.861300,-0.507900 -0.831400,-0.142700,0.192100,0.032330,0.937200,-0.347300 0.207900,-0.161800,0.189700,-0.023140,0.925500,-0.377900 0.056120,-0.244100,-0.225000,-0.724100,0.688600,-0.039500 -0.133800,0.051150,0.172200,0.730200,0.450100,-0.514100 0.025220,-0.263100,-0.684100,0.880200,-0.451100,-0.147400 0.213400,-0.204000,0.106800,-0.000340,0.823600,-0.567200 -0.091970,0.030680,0.349200,-0.988000,0.154600,-0.005944 0.202400,-0.150900,0.222500,-0.023500,0.959700,-0.280000 0.601900,-0.179200,0.131000,-0.038050,0.875100,-0.482500 0.027360,-0.085140,0.007644,-0.000012,-0.977800,0.209600 0.193300,0.127200,0.206400,0.461900,-0.856600,0.229900 0.721900,-0.151200,0.184600,-0.020510,0.925300,-0.378800 0.437500,0.132100,0.216900,0.000000,-0.966700,0.255900 0.033960,-0.259400,-0.597200,-0.881900,0.470600,0.027530 0.020710,-0.072530,-0.323500,-0.282600,-0.912300,0.296300 -0.678100,0.123800,0.100800,0.010210,0.908000,-0.418800 -0.164600,-0.277600,0.301100,-0.931200,0.324400,-0.166400 0.036760,-0.263900,-0.449400,-0.630800,0.775200,0.034220 0.284400,0.090400,0.072520,0.000000,-0.932400,0.361500 0.014660,-0.275700,-0.580400,-0.327900,0.944200,-0.029670 -0.541300,-0.167300,0.198800,-0.032050,-0.953800,0.298700 0.382800,0.135400,0.127700,0.025460,0.923000,-0.384000 0.520000,0.168400,0.235600,-0.000094,0.987700,-0.156400 0.650800,0.084580,0.014340,-0.000023,0.958100,-0.286500 -0.109400,-0.332900,0.375700,0.000000,-0.976300,0.216400 0.196900,0.116500,0.086230,0.005249,0.887000,-0.461700 0.119200,-0.221600,0.237600,-0.973300,-0.156800,0.167600 0.344600,-0.169000,0.164300,-0.038050,0.926400,-0.374500 0.902500,-0.137800,0.268100,0.663700,-0.496600,0.559400 0.003759,0.092090,0.306900,-0.011440,0.717200,0.696800 -0.196900,0.156800,0.188000,0.000000,0.954700,-0.297700 -0.371900,0.151700,0.171300,-0.000042,0.946800,-0.322000 -0.454000,-0.144100,0.226100,0.037180,0.957900,-0.284800 -0.142200,-0.276700,-0.834500,0.000000,-0.977800,0.209500 -0.142200,-0.288000,-0.887800,0.000000,-0.977900,0.208900 -0.207800,0.093300,0.080160,0.000000,-0.937200,0.348800 -0.705500,0.081250,0.001321,-0.005059,0.964000,-0.266000 -0.858600,0.083760,0.010290,0.000053,0.954100,-0.299500 -0.262500,0.098690,0.049660,0.005128,0.909000,-0.416800 0.864100,0.095190,0.042250,-0.020350,0.910300,-0.413500 -0.803900,-0.170200,0.162600,-0.031830,-0.947800,0.317400 -0.929600,-0.175500,0.135200,-0.031680,-0.942000,0.334100 -0.590200,0.141400,0.143300,-0.005067,0.932900,-0.360100 -0.431600,0.140200,0.139400,-0.015280,0.939600,-0.342000 -0.765400,-0.189400,0.103700,0.038690,0.816100,-0.576600 0.541400,0.137100,0.131500,0.000000,0.927800,-0.373000 0.058770,-0.086550,-0.294700,0.774800,0.592500,-0.220700 -0.557800,-0.189700,0.114300,0.019480,0.857200,-0.514700 -0.311300,0.105800,0.117500,0.000000,-0.957500,0.288300 0.131400,-0.166400,0.235900,0.024370,-0.962100,0.271600 -0.530400,-0.178300,0.165900,-0.031890,-0.946500,0.321200 0.052190,-0.230800,-0.028000,-0.568400,0.815000,-0.112300 -0.557800,0.092080,0.034540,-0.000003,0.925400,-0.378900 0.749200,0.081080,0.001335,-0.000040,0.960300,-0.279000 -0.667300,-0.183100,0.118800,0.030330,0.859800,-0.509800 -0.032800,-0.203700,-0.497500,0.000003,-0.094320,0.995500 0.579800,-0.185600,0.121100,-0.027220,0.868800,-0.494400 -0.628900,0.111800,0.075010,-0.005053,0.892500,-0.451100 0.126200,0.135300,0.229200,0.000000,-0.966900,0.255300 -0.634500,-0.120700,0.305500,0.035980,0.997500,-0.060680 -0.076560,0.109300,0.129700,0.000000,-0.964400,0.264600 0.092150,-0.152900,0.086710,-0.949200,0.311600,-0.043330 -0.131500,-0.103400,0.640000,-0.466000,0.252700,-0.847900 0.070020,-0.203100,0.048590,-0.770100,0.630800,-0.095190 -0.097280,-0.124700,0.156300,0.969600,0.243200,-0.025810 -0.885500,0.108100,0.125200,0.000000,-0.962500,0.271300 -0.188800,-0.264900,0.343600,0.999800,0.014770,0.014680 0.448900,0.141300,0.143300,-0.020840,0.945100,-0.326100 0.071940,-0.214500,-0.290900,-0.948700,0.314800,0.027750 0.065630,0.143200,0.147400,-0.020880,0.947700,-0.318600 -0.087490,0.115400,0.082310,0.000015,0.900200,-0.435400 0.087440,-0.094890,0.421300,0.910600,-0.000602,0.413300 -0.650800,-0.168100,0.147500,0.031740,0.894300,-0.446400 0.042720,-0.258100,-0.449500,-0.761200,0.647700,0.031700 -0.618000,0.077430,0.031150,0.000000,-0.979400,0.201900 0.180900,0.078420,0.035680,0.000000,-0.975300,0.220800 0.098580,-0.141200,0.053950,0.971300,-0.235300,0.034500 -0.008138,0.067180,0.401100,0.526600,0.334900,0.781400 -0.639800,0.087450,0.022050,0.000000,0.945300,-0.326200 0.552800,0.161900,0.204700,-0.015250,0.973400,-0.228400 -0.902300,0.111700,0.138700,0.000000,-0.967000,0.254800 -0.268000,0.117200,0.160600,0.000000,-0.967000,0.254700 -0.333600,0.117200,0.160600,0.000000,-0.967000,0.254700 0.278900,0.111700,0.138700,0.000000,-0.967000,0.254800 -0.366400,0.152500,0.294000,0.000000,-0.960800,0.277200 0.765600,0.118200,0.164500,0.000000,-0.966800,0.255600 0.891500,-0.163200,0.147900,-0.007115,0.896100,-0.443700 0.661800,-0.167300,0.151700,-0.022450,0.907700,-0.419000 -0.372000,-0.178400,0.146300,0.020790,0.894100,-0.447300 0.098450,0.136800,0.131600,0.035960,0.923300,-0.382500 0.080340,-0.198200,-0.001018,0.887000,-0.460100,0.039910 -0.765500,-0.160300,0.197100,-0.031940,-0.954600,0.296200 -0.809400,0.138900,0.242700,0.000000,-0.966100,0.258200 -0.131200,0.096930,0.046030,0.010200,0.901200,-0.433200 0.018190,-0.273800,-0.563700,-0.424200,0.905300,-0.023270 -0.115300,-0.198900,0.193400,-0.902900,0.412000,-0.122300 0.052450,-0.252100,-0.372700,0.777300,-0.628800,-0.018390 -0.142200,-0.242600,-0.705300,0.000000,0.977800,-0.209800 0.076560,0.162000,0.204800,-0.010110,0.958500,-0.284900 0.002529,-0.313800,-0.564300,0.991200,-0.101000,0.085420 0.869600,-0.165500,0.144400,-0.042810,0.898000,-0.437800 -0.140500,0.073490,0.002284,0.025470,-0.998600,0.045340 0.207800,-0.191200,0.151300,0.022440,-0.943800,0.329800 0.300800,0.148800,0.163800,0.030510,0.931500,-0.362600 0.426500,-0.193000,0.131200,0.023090,-0.939100,0.342700 -0.018580,-0.122400,0.482900,-0.195400,-0.871800,0.449200 0.224200,0.150400,0.286300,0.000000,-0.966100,0.258200 -0.514100,0.080930,0.001400,-0.009979,0.962100,-0.272500 -0.054680,0.124000,0.186300,0.000000,-0.966800,0.255700 0.804000,-0.139700,0.211300,-0.013150,0.953600,-0.300700 0.699900,-0.161900,0.204100,0.023420,-0.955500,0.293900 0.907800,0.090400,0.030780,0.020350,0.935500,-0.352600 0.064290,-0.224900,-0.077310,-0.744900,0.664200,-0.063150 -0.229700,-0.258800,-0.786000,-0.035940,0.983700,-0.176100 -0.623500,-0.162300,0.162800,0.027680,0.914400,-0.403900 -0.760200,0.104400,0.060450,-0.000051,0.886900,-0.461900 -0.099380,-0.079070,-0.011490,-0.985900,0.152100,-0.069600 0.071050,-0.220300,-0.143100,-0.868500,0.495400,-0.015360 0.098430,-0.286900,-0.917100,-0.005201,0.980400,-0.196700 -0.672700,-0.139700,0.216800,0.052150,0.953300,-0.297400 0.503200,-0.149500,0.204600,-0.033270,0.951900,-0.304600 -0.935200,0.098410,0.049830,-0.010250,0.908900,-0.416800 0.743700,0.084930,0.014320,-0.005093,0.956000,-0.293300 -0.043740,0.146700,0.272200,0.000000,-0.967400,0.253300 0.083460,-0.196400,-0.061140,0.911000,-0.412000,0.020700 -0.126700,0.074460,0.332400,-0.101900,-0.718100,-0.688400 -0.629000,-0.121000,0.309600,0.024590,0.986500,0.162100 -0.218300,0.078420,0.035680,0.000000,-0.975300,0.220800 0.782000,0.088730,0.068240,0.000030,-0.933100,0.359500 -0.185900,-0.243300,-0.676000,0.000090,-0.977800,0.209400 0.000008,-0.292100,-0.907300,0.000000,-0.978500,0.206200 0.224200,-0.276400,-0.870400,0.004385,0.980500,-0.196400 -0.000004,0.005471,-0.094620,0.004546,-0.960400,0.278500 0.671500,0.074400,-0.022880,-0.128100,-0.485000,-0.865100 -0.705000,0.140200,0.139400,0.000000,0.932400,-0.361400 -0.590200,0.138800,0.135700,-0.010280,0.946200,-0.323500 0.147600,-0.181500,0.184600,0.023840,-0.952100,0.304900 -0.029290,-0.188200,0.289600,-0.312900,-0.917500,0.245600 0.530500,0.097050,0.045910,0.000044,0.904200,-0.427200 0.514100,0.097050,0.045910,-0.000003,0.904200,-0.427100 -0.207400,0.167600,0.231800,-0.009724,0.986500,-0.163300 0.842100,-0.171300,0.164200,0.023220,-0.947400,0.319100 -0.246200,-0.196700,0.121300,0.025300,0.856100,-0.516100 -0.164100,0.102900,0.108100,0.000000,-0.954400,0.298400 -0.054680,-0.264400,-0.813400,0.000000,0.977600,-0.210600 0.049230,-0.276700,-0.834500,0.000000,-0.977800,0.209500 -0.749200,0.104200,0.060510,0.020580,0.870300,-0.492100 0.131300,0.102400,0.057020,0.020250,0.881600,-0.471500 -0.665900,-0.111500,0.194700,-0.977500,-0.013270,0.210500 -0.000052,-0.048040,-0.259200,0.004623,-0.950700,0.310100 0.022330,0.019390,0.291200,-0.000536,-0.978300,0.207200 0.721900,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.076640,-0.011460,0.551400,0.882600,0.260300,-0.391400 0.091040,-0.106500,0.401000,0.807900,0.191400,-0.557400 0.120700,-0.166600,0.236200,0.023800,-0.962100,0.271800 0.026560,-0.270600,-0.443900,-0.438000,0.898900,-0.003667 -0.005458,-0.349600,0.299700,-0.000629,-0.990700,0.136200 -0.590600,0.130700,0.211800,0.000000,-0.966800,0.255400 0.530400,-0.198600,0.109400,0.023030,-0.934000,0.356600 0.749200,-0.194600,0.105600,0.023270,-0.937100,0.348400 0.229800,-0.193700,0.142700,0.024040,-0.942500,0.333500 0.585600,0.130700,0.116000,0.000160,0.921200,-0.389000 0.503500,-0.139200,0.307400,0.024380,-0.966700,0.254800 -0.093220,-0.154100,0.033770,0.966400,0.256400,-0.019810 0.197300,0.130500,0.116100,-0.040870,0.922000,-0.385100 0.727400,0.166100,0.303800,0.000050,0.308700,0.951100 -0.032830,-0.200100,-0.505400,-0.056100,0.978800,-0.197200 0.437400,-0.161800,0.226200,0.023240,-0.959900,0.279300 -0.563300,0.110700,0.134700,-0.000027,-0.965100,0.261700 0.202400,0.116200,0.156700,0.073810,-0.968000,0.239900 0.257000,0.116200,0.156700,0.000000,-0.968900,0.247400 0.487200,0.134300,0.225400,0.000000,-0.966800,0.255600 -0.793000,0.145700,0.268300,0.000008,-0.966700,0.255700 -0.393900,-0.149600,0.215500,0.047800,0.935200,-0.351000 -0.125800,-0.271000,-0.807200,0.000000,-0.977800,0.209600 0.196900,-0.238300,-0.689900,-0.000060,0.979300,-0.202400 0.218800,-0.253700,-0.762700,0.000060,0.978500,-0.206200 -0.043740,0.143300,0.147400,-0.000241,0.949700,-0.313200 -0.962400,-0.183400,0.110700,-0.033550,-0.939000,0.342200 0.612500,-0.166200,0.197200,0.023270,-0.954700,0.296800 0.328100,0.100400,0.100400,0.000000,-0.948000,0.318100 0.094360,0.019920,0.381900,-0.956300,-0.291900,0.016540 -0.043960,-0.258900,-0.270800,-0.587400,-0.808300,0.039970 0.073110,0.080210,0.601200,0.453900,-0.619300,-0.640600 0.366400,-0.153800,0.261200,0.023280,-0.967900,0.250200 0.563500,-0.140000,0.228700,-0.000512,0.955000,-0.296500 0.096100,-0.007489,0.464400,-0.985500,-0.090180,-0.144100 -0.027340,-0.337800,0.306700,0.000000,0.766200,-0.642700 0.924200,0.075100,-0.030770,-0.000002,0.912700,-0.408600 0.043770,-0.254500,-0.766500,0.000000,0.979300,-0.202400 -0.016400,0.166200,0.223500,0.000011,0.980900,-0.194700 -0.519500,0.134000,0.123900,-0.030470,0.931400,-0.362800 -0.060130,0.062840,0.229100,-0.633800,0.765400,-0.111400 0.525100,-0.128000,0.285800,-0.013500,0.982400,-0.186500 -0.265500,-0.262300,-0.799200,-0.614700,0.783300,-0.093210 -0.169100,0.107000,0.121400,-0.000489,-0.960000,0.280100 -0.978900,0.073080,-0.006549,-0.009732,-0.999700,0.021270 0.064610,-0.144800,0.352200,-0.686900,0.703700,-0.181700 -0.040110,-0.096280,-0.362700,0.569500,-0.767500,0.294500 0.569000,-0.155400,0.183300,-0.008782,0.922500,-0.386000 0.191900,-0.280700,-0.853400,0.000000,-0.978600,0.205900 -0.213300,-0.292000,-0.907300,-0.000041,-0.978500,0.206200 0.049230,-0.275100,-0.826800,0.000000,-0.979100,0.203300 0.082040,-0.271000,-0.807200,0.000000,-0.977800,0.209600 0.038290,-0.281300,-0.893900,-0.000060,0.978500,-0.206300 0.066080,-0.236900,-0.645600,0.000028,-0.978600,0.205900 -0.552200,-0.155400,0.183600,0.026580,0.934600,-0.354700 0.158600,0.166200,0.223500,0.005191,0.982200,-0.187700 0.098450,-0.346900,0.312300,0.000000,-0.976300,0.216300 -0.662000,-0.013170,0.206500,0.990300,-0.001851,0.139100 -0.322600,-0.195100,0.119200,0.053710,0.841500,-0.537600 -0.103800,-0.072470,0.219000,0.998700,0.047630,-0.019000 -0.049140,0.045860,0.098070,-0.526300,0.831000,-0.180300 -0.038260,-0.253800,-0.762600,0.020530,0.979700,-0.199200 0.180500,-0.200100,0.113700,-0.026660,0.830300,-0.556700 0.035950,-0.242200,-0.044340,-0.398900,0.908300,-0.126200 -0.032750,-0.300400,-0.947000,-0.016120,-0.997400,0.069740 -0.097970,-0.269900,-0.840000,0.000000,0.978400,-0.206900 0.962300,-0.185700,0.105500,-0.004770,0.806800,-0.590800 -0.086310,0.041830,0.316400,-0.896400,0.440400,-0.050860 0.869600,-0.124000,0.261800,-0.022140,0.975700,-0.217800 -0.748800,0.129600,0.207400,0.000000,-0.966800,0.255600 0.240500,-0.206500,0.107300,0.022570,-0.941000,0.337700 0.003195,-0.242400,-0.864600,0.990700,-0.128300,-0.045750 0.008592,-0.139400,-0.517200,-0.179500,-0.906100,0.383000 0.929400,-0.156300,0.204200,0.107400,-0.926500,0.360500 -0.019720,-0.001269,-0.108400,0.235700,-0.923900,0.301400 -0.158100,-0.270800,-0.843800,0.000000,0.969900,-0.243600 0.126200,-0.259600,-0.753300,0.000000,-0.978500,0.206300 -0.147700,-0.244300,-0.713100,0.000000,0.978500,-0.206200 -0.196900,-0.266000,-0.821100,0.000000,0.979300,-0.202300 -0.136300,-0.237700,-0.649400,-0.000060,-0.978500,0.206400 -0.082650,-0.087380,-0.175400,-0.945900,0.295300,-0.134300 0.054090,-0.242700,-0.170800,-0.664200,0.746600,-0.038510 0.038640,-0.264200,-0.301800,0.520200,-0.853800,0.018320 0.874700,-0.132200,0.299300,0.050640,-0.946800,0.317900 -0.026770,-0.238500,-0.649200,0.175800,-0.803000,0.569500 -0.147500,-0.212100,0.107600,-0.031130,-0.969200,0.244300 -0.142000,-0.166600,0.246900,-0.032370,-0.964000,0.264000 -0.088860,-0.165000,0.098180,-0.930600,-0.362100,0.053440 0.003038,-0.269700,-0.244600,-0.029930,0.996500,-0.077840 -0.667300,-0.131500,0.246100,0.022330,0.965000,-0.261400 0.328600,0.128900,0.112300,-0.025500,0.935600,-0.352200 -0.869600,-0.174600,0.121200,0.045680,0.853800,-0.518600 0.662700,-0.056890,0.200800,0.999900,0.010720,-0.006685 0.073720,-0.219400,-0.126800,0.863400,-0.504100,0.018190 -0.081500,-0.196700,-0.123100,0.935100,0.354200,0.007092 -0.005445,-0.343200,0.301300,0.040270,0.710400,-0.702700 0.010430,-0.264400,-0.756500,-0.780600,-0.522800,0.342700 0.057260,-0.201500,0.152000,0.624300,-0.769300,0.135700 -0.021980,0.077850,0.407200,-0.885800,-0.176900,-0.429000 -0.771000,-0.162300,0.151700,0.041820,0.905000,-0.423300 0.153100,-0.342800,0.301000,0.000022,0.730500,-0.682900 -0.098070,-0.009214,0.423200,0.979100,-0.180000,-0.095020 -0.054220,-0.291800,-0.943900,0.004003,0.967700,-0.252200 -0.103600,-0.059250,0.169000,0.999500,-0.030870,0.000221 -0.189100,-0.379500,0.310900,0.993500,-0.078830,-0.081530 0.037120,-0.167200,0.348400,0.388400,-0.886400,0.251800 -0.311600,0.078840,-0.010390,-0.085950,0.968700,-0.232900 -0.072870,0.008886,0.588500,-0.956600,-0.047270,0.287600 0.625800,0.073470,0.002268,0.000000,-0.997800,0.065690 0.094320,0.019920,0.392800,-0.957400,-0.287900,-0.022510 0.149800,-0.255200,0.371200,0.913900,0.354100,-0.198400 -0.125900,-0.161200,0.268900,-0.031580,-0.967900,0.249400 0.104400,-0.087770,0.120000,0.998800,-0.045760,0.015750 -0.094860,0.012860,0.267200,-0.949300,0.309700,-0.053230 0.045030,-0.037020,-0.181400,-0.550300,-0.793200,0.261000 -0.809000,-0.138800,0.205200,0.025580,0.944700,-0.326900 -0.053580,0.056260,0.158400,-0.705700,0.707300,-0.042280 0.178700,-0.262800,0.331000,-0.383900,0.789200,-0.479400 -0.083690,-0.172100,-0.230700,0.988100,0.145800,0.049960 0.039140,-0.265100,-0.410700,0.606900,-0.794800,0.007696 -0.026940,-0.207500,-0.655100,0.888900,-0.412300,0.199500 0.033080,0.081410,0.213200,0.002468,0.982000,-0.188900 -0.097200,0.002948,0.431000,-0.985400,0.162700,0.050860 -0.546400,-0.198100,0.109100,-0.031180,-0.934000,0.356000 0.623400,-0.128300,0.315200,0.015050,0.100300,0.994800 -0.008098,0.092240,0.303900,-0.729600,0.680100,0.071530 0.793100,-0.166000,0.184100,0.022530,-0.952200,0.304600 0.040290,0.068720,0.491100,0.974000,-0.216800,-0.065860 0.072900,-0.192500,0.113900,0.787100,-0.608200,0.102800 -0.189600,0.136700,0.248100,0.843600,-0.035980,0.535800 0.081070,-0.177200,-0.301700,0.992700,-0.104000,-0.060270 -0.213300,-0.139600,0.317900,-0.017120,0.088150,0.996000 0.557700,-0.134200,0.250000,-0.013650,0.968600,-0.248100 -0.046240,0.035440,0.332800,0.894400,0.432800,-0.112800 -0.081180,-0.074620,0.469400,0.889800,0.392000,-0.233700 -0.071440,-0.137800,-0.329200,0.964600,-0.197900,0.174200 -0.063140,0.069910,0.458800,0.669900,-0.742400,-0.006921 0.062520,-0.223600,-0.045020,-0.726600,0.683600,-0.068480 -0.092590,-0.089600,-0.104800,-0.976900,0.182700,-0.110700 0.706800,0.073410,-0.021740,0.003645,-0.992400,-0.122800 -0.070680,-0.073370,0.010060,-0.992600,-0.032900,-0.117300 0.026480,0.073200,0.182700,-0.541900,0.823200,-0.169400 0.068750,-0.202100,0.064860,-0.755500,0.647300,-0.101000 0.015120,-0.275700,-0.656800,-0.499600,0.866200,0.008430 0.024710,-0.009886,-0.060770,0.362300,-0.195700,-0.911300 -0.032210,-0.162700,-0.546100,0.674700,-0.689700,0.263000 0.011170,-0.225900,-0.627800,0.064340,0.975700,-0.209600 -0.820300,-0.119100,0.313500,0.009751,0.328500,0.944500 0.098710,-0.042050,0.128500,-0.982200,-0.187100,0.016850 0.095150,-0.018140,0.179400,-0.969200,-0.241400,0.048110 -0.077540,0.043670,0.250600,0.837200,-0.538700,0.094500 -0.808800,-0.150300,0.226000,-0.031860,-0.960300,0.277000 0.659800,-0.105900,0.197600,-0.829800,-0.054450,0.555400 0.659000,0.019520,0.124600,-0.994400,0.010810,0.105000 0.092940,-0.133400,-0.164900,0.991400,0.085400,-0.099010 -0.579600,-0.131900,0.314900,-0.013610,-0.346700,0.937900 0.344600,-0.195700,0.114400,-0.056650,0.852200,-0.520100 -0.155600,0.109600,0.324600,0.640300,0.762100,0.096450 -0.656000,-0.194800,0.108000,-0.031760,-0.935600,0.351600 -0.623500,-0.128300,0.265700,0.044600,0.975300,-0.216300 0.048860,-0.253700,-0.318100,-0.701300,0.712800,0.006140 0.034270,-0.205900,0.191000,-0.392100,0.902400,-0.178500 -0.014470,-0.276900,-0.535600,-0.354300,-0.935000,-0.015710 0.098380,-0.124200,0.152500,0.971400,-0.222800,0.082770 0.084290,-0.167300,0.125000,-0.915900,0.390400,-0.092830 0.009133,-0.190400,-0.661800,0.558300,0.776000,-0.293500 -0.133500,-0.131700,0.632700,-0.367000,0.121300,-0.922300 0.016430,-0.083750,0.552000,0.171800,-0.827100,0.535200 0.061760,-0.178900,0.244700,0.698400,-0.692000,0.182600 -0.079070,-0.175300,0.168300,-0.800000,-0.589800,0.110400 0.377300,0.155500,0.301300,0.000000,-0.764900,0.644100 0.068640,-0.225500,-0.323500,0.942200,-0.330300,-0.055710 0.005484,-0.086000,0.003684,0.000005,-0.977900,0.209000 -0.016070,-0.112800,-0.450500,-0.290600,0.904300,-0.312700 0.094560,-0.025840,0.076050,0.943500,0.316700,-0.097230 -0.016920,-0.100100,-0.406300,0.253800,-0.915800,0.311200 0.081480,-0.007213,0.023120,0.859700,0.493900,-0.130300 -0.661900,0.024570,0.124000,0.987500,0.033920,0.154100 0.115400,-0.160700,0.199300,-0.015180,0.940600,-0.339200 0.092910,-0.144500,-0.170500,0.996900,-0.039010,-0.067840 0.022640,-0.272600,-0.482200,-0.408100,0.912900,0.008512 0.078130,-0.175900,0.163000,0.693600,-0.698000,0.178400 0.023450,-0.270800,-0.662500,0.775000,-0.629200,-0.059420 -0.038170,0.029210,0.332800,0.222100,0.957400,-0.184500 -0.092760,-0.023080,0.070000,-0.945700,0.313500,-0.086040 -0.045990,-0.230300,-0.585600,-0.812500,-0.580400,-0.054620 -0.010230,-0.234100,-0.751500,0.591800,-0.699200,0.401100 0.060730,0.064020,0.275600,-0.705500,-0.708500,0.019610 0.027340,-0.013970,0.105200,-0.010020,0.157200,0.987500 -0.043090,-0.124900,-0.431000,0.714700,-0.648200,0.262800 -0.097020,-0.069360,0.387800,0.965300,0.246900,-0.084650 -0.109100,-0.138500,0.301500,0.043490,0.986000,-0.161000 -0.005692,-0.032240,-0.209700,0.082660,-0.949500,0.302700 -0.032730,0.062940,0.307900,0.162000,-0.943300,0.289800 0.738200,-0.188700,0.121900,0.023010,-0.937200,0.348100 -0.191000,-0.389800,0.350500,0.990100,0.137300,0.028960 -0.094730,-0.112100,0.267100,0.954400,0.291900,-0.061890 -0.071800,-0.044250,-0.131500,-0.827500,0.527100,-0.193700 0.048660,-0.246600,-0.482900,-0.899800,0.431800,0.062590 0.067410,-0.225300,-0.088660,0.756500,-0.653700,0.018980 0.005743,-0.265600,-0.176100,0.063600,-0.994300,0.085540 -0.148800,-0.143800,0.641800,0.402700,-0.237500,0.884000 -0.036410,0.019610,0.273700,0.095790,0.805900,0.584300 -0.093080,-0.104400,0.416000,-0.829900,0.556100,0.045280 -0.103000,-0.078970,0.638000,0.418800,-0.300600,0.856900 -0.082740,-0.145800,-0.272000,-0.980700,0.129000,-0.147200 0.443000,-0.194000,0.113400,-0.032620,0.864700,-0.501200 0.847800,-0.177300,0.123600,0.001871,0.855600,-0.517600 0.027620,0.090800,0.415300,0.739800,-0.248700,-0.625200 -0.165000,-0.127500,0.653500,0.352300,-0.205200,0.913100 0.082940,0.046590,0.423800,-0.893000,-0.449800,-0.013430 0.028160,-0.251300,-0.093560,-0.329400,0.937200,-0.114300 -0.085660,0.040610,0.441900,-0.914400,0.402100,0.047260 -0.041560,-0.091520,-0.346200,0.589100,-0.763600,0.264400 0.022710,-0.265200,-0.230300,-0.274700,0.959000,-0.070310 0.080000,-0.161000,-0.312600,0.994200,0.075460,-0.076410 -0.191400,-0.296200,0.436900,0.688000,0.338400,0.642000 -0.100200,-0.090140,0.261600,0.983700,0.175600,-0.039120 0.082300,-0.077790,0.473600,0.883200,-0.382400,0.271400 0.115200,-0.146700,0.313700,0.021110,-0.911700,0.410400 -0.071280,-0.165900,0.270000,-0.492900,-0.850900,0.181600 -0.061230,-0.059720,-0.203800,0.759300,-0.611400,0.222600 0.101900,-0.100900,-0.011800,0.998700,0.050440,-0.010420 -0.073830,-0.058240,0.519400,0.858100,0.422200,-0.292200 0.016850,-0.220300,-0.717800,0.752800,0.591100,-0.289600 -0.041190,-0.262400,-0.453000,-0.703100,-0.711100,-0.006571 -0.003526,-0.325500,-0.601700,-0.784200,0.515300,-0.345600 0.006946,0.000058,-0.066980,0.095900,-0.374900,-0.922100 0.011100,-0.163300,0.377200,-0.112700,0.939000,-0.325000 0.804100,-0.192500,0.101600,0.005237,0.702700,-0.711500 -0.070320,-0.116000,-0.297200,0.921700,-0.342300,0.182600 0.022950,-0.211200,0.185700,-0.252200,0.953400,-0.165800 -0.036350,-0.263900,-0.385500,0.575500,0.817700,-0.013520 0.029010,0.083370,0.375700,0.612100,-0.300500,-0.731500 0.750700,0.074200,0.010740,0.000000,-0.994200,0.107900 -0.044140,0.037290,0.146900,0.752600,-0.643100,0.141600 0.079060,-0.200300,-0.050070,-0.897900,0.439000,-0.031870 -0.005749,-0.277800,-0.591500,0.142600,0.989400,-0.026930 0.003192,-0.085370,-0.570500,0.992700,0.098970,0.069230 -0.218500,-0.224600,-0.623700,-0.077450,0.982000,-0.172000 -0.086310,-0.113300,0.354200,0.915500,0.389400,-0.101200 0.181000,-0.390000,0.414300,-0.154600,-0.709300,0.687800 -0.075810,-0.207600,-0.243500,0.946100,0.323600,0.016550 -0.076380,-0.070180,-0.165600,0.900500,-0.402700,0.164000 0.132600,0.054880,0.174400,-0.766200,0.610100,-0.202000 0.086400,-0.139100,-0.230600,0.980400,0.131300,-0.146500 0.010450,-0.040080,-0.238800,0.132700,0.940100,-0.314100 0.051280,0.200200,0.256700,-0.990200,-0.024630,-0.137200 -0.202200,-0.204200,0.112200,0.055460,0.831300,-0.553100 -0.010880,-0.064260,0.583600,-0.121100,-0.865100,0.486800 -0.180500,0.075410,-0.010830,-0.118500,-0.071540,-0.990400 0.047060,-0.247400,-0.520300,0.920800,-0.382700,-0.075390 0.035970,-0.263500,-0.312600,-0.504500,0.863300,-0.011950 -0.051730,-0.093040,-0.324200,0.712500,-0.660600,0.236400 -0.018190,-0.088970,-0.379900,-0.261400,0.913500,-0.311800 -0.101400,-0.029210,0.239600,0.983700,-0.177400,0.028950 -0.034150,-0.187200,0.278100,0.394600,0.887300,-0.238700 0.072150,-0.140500,0.348600,0.777400,-0.612800,0.141900 0.104300,-0.072880,0.088020,0.994100,0.098880,-0.045330 0.130100,-0.214300,0.392200,-0.900400,-0.360800,0.243200 -0.086110,0.011340,0.163300,0.910700,-0.403800,0.086850 0.022210,0.007093,-0.077190,-0.251700,-0.960400,0.119500 -0.055440,-0.243500,-0.212300,0.715000,0.694700,-0.078280 0.052070,-0.244400,-0.444200,-0.896300,0.438800,0.064170 0.464800,-0.201100,0.107000,0.022900,-0.938300,0.344900 -0.039940,-0.153400,-0.514200,-0.749400,0.600000,-0.280000 0.048490,-0.199400,0.185000,-0.557800,0.816000,-0.151800 0.019400,-0.254500,-0.083340,0.225100,-0.967600,0.113900 -0.060300,-0.103600,-0.331200,-0.834300,0.507700,-0.215100 -0.082110,0.034540,0.502000,0.936200,-0.344900,-0.067000 -0.095210,-0.176200,0.162900,0.797900,-0.596500,0.087550 0.101700,-0.095490,0.135900,-0.996400,0.079790,-0.029510 -0.034330,-0.254400,-0.607400,0.918900,0.386700,0.078700 -0.069420,0.003432,0.017590,0.597200,-0.753300,0.275300 0.096830,-0.057810,0.415300,-0.972100,0.192500,-0.134100 -0.036560,-0.256000,-0.165200,-0.430500,-0.900100,0.067970 0.091130,-0.051070,0.474400,0.938600,-0.221900,0.264200 -0.031630,-0.193600,-0.623100,-0.812000,0.511400,-0.281300 -0.628600,-0.149600,0.249800,-0.030960,-0.965400,0.259000 0.096380,-0.118300,0.400100,0.787800,0.456300,-0.413700 0.120400,-0.174600,0.164300,-0.027800,0.916600,-0.398700 0.032490,-0.003142,-0.056510,-0.434100,0.149800,0.888300 -0.262500,0.077610,-0.009069,-0.001182,0.705600,-0.708600 -0.030580,-0.263800,-0.254500,0.415500,0.908100,-0.052660 0.008842,-0.270100,-0.258300,-0.128900,0.989800,-0.060790 0.014010,-0.188600,0.292000,-0.178600,0.951000,-0.252500 0.002736,-0.073390,-0.679000,0.997700,-0.030410,0.060790 -0.036070,-0.024970,-0.160500,0.427000,-0.856000,0.291300 0.154900,-0.285400,0.306900,0.922300,-0.033300,-0.385000 -0.097350,-0.127300,0.403800,0.912800,-0.405100,0.051550 -0.099580,-0.002176,0.332600,0.984700,-0.173500,0.014640 0.019130,-0.242600,-0.000537,-0.212200,0.967400,-0.138100 0.869500,-0.160000,0.197000,0.022380,-0.954700,0.296800 0.073210,-0.150400,-0.350600,0.982600,0.147700,-0.112700 0.075170,-0.215600,-0.252200,0.935400,-0.351600,-0.037780 0.034320,-0.140000,0.432500,0.336800,-0.868000,0.365000 0.034340,-0.052440,-0.247400,-0.449000,-0.844400,0.292200 -0.053220,-0.083330,0.520900,0.574000,0.711400,-0.405500 0.074280,0.016840,0.088140,-0.750000,-0.658900,-0.058030 -0.073180,-0.162300,0.279200,-0.460300,-0.849300,0.258500 -0.083160,-0.032770,-0.039080,-0.907300,0.395100,-0.144000 0.097690,-0.032080,0.442300,-0.991100,0.103000,-0.084880 -0.057660,-0.241500,-0.394600,-0.891200,-0.451200,-0.047260 -0.003164,-0.252200,-0.848100,-0.981300,-0.179100,-0.070740 -0.470300,0.073080,-0.006520,-0.001744,-0.999900,0.013760 0.188500,-0.286000,0.321100,0.995200,-0.071070,0.066730 -0.000123,0.123300,0.449400,-0.067770,0.904400,-0.421300 -0.041820,0.040750,0.058600,0.123800,0.404700,-0.906000 0.038590,-0.264800,-0.465700,0.661000,-0.750200,-0.014250 -0.083550,-0.063740,0.476400,0.925800,0.312100,-0.213400 -0.030680,-0.264300,-0.270600,0.423800,0.904600,-0.045220 -0.094960,-0.145000,0.059260,0.963400,0.266300,-0.032270 0.012090,-0.215600,-0.717500,0.580100,0.724900,-0.371400 -0.005106,-0.142500,-0.526300,0.096780,-0.930200,0.354000 -0.022700,-0.202400,0.229500,0.259900,0.943600,-0.205100 -0.005509,-0.051470,0.586800,0.036730,0.070650,-0.996800 0.075750,-0.210400,-0.050300,0.855800,-0.515800,0.040620 -0.068750,0.055510,0.234400,-0.725300,0.678600,-0.116000 0.093370,0.021550,0.455300,0.941800,0.302600,0.146500 0.019510,-0.210500,0.193500,-0.227500,0.952300,-0.203400 0.016450,0.074970,0.370500,0.141000,-0.252300,-0.957300 -0.142300,-0.205300,0.113600,0.030140,0.858400,-0.512100 0.039090,0.033100,0.339500,-0.373400,0.895600,-0.241900 0.005582,-0.012780,-0.149600,-0.071850,-0.948000,0.310100 0.014040,-0.270500,-0.244300,0.183100,-0.981600,0.053620 0.057060,0.070200,0.607600,-0.502500,0.629800,0.592300 -0.031610,-0.205500,0.212400,-0.325400,-0.925300,0.194600 -0.973200,0.077090,-0.022120,-0.042540,0.985800,-0.162500 0.289800,-0.197000,0.129500,0.022820,-0.939100,0.342900 -0.016020,0.057520,0.225500,0.028030,-0.978500,0.204600 -0.010760,0.053600,0.190200,0.952000,-0.306100,0.002956 0.047270,-0.022950,-0.142800,0.522100,0.807200,-0.275300 0.008534,-0.258300,-0.118300,-0.114700,0.988800,-0.095130 -0.160200,-0.276200,0.310200,0.897200,-0.433500,0.084890 -0.038130,-0.240900,-0.616400,0.973200,0.206900,0.099970 0.059610,0.074190,0.456300,-0.623500,-0.779300,-0.063060 -0.062800,-0.066000,-0.214800,0.784200,-0.575200,0.232800 0.056500,-0.160400,-0.455300,-0.946000,-0.254400,0.200900 -0.039730,0.104400,0.463600,-0.933900,0.352200,-0.061810 0.005543,0.133500,0.496600,0.039950,0.985900,-0.162300 -0.084920,-0.135000,0.288900,0.804900,0.576900,-0.139100 0.101600,-0.062250,0.146700,-0.996500,-0.083170,0.002654 0.268000,0.073110,-0.005619,-0.001021,-0.998100,-0.062290 -0.123300,-0.181900,0.397700,0.862000,-0.476100,0.174000 -0.091220,-0.089170,0.403500,-0.950400,-0.293500,0.102600 -0.017560,-0.074020,-0.330000,0.259800,-0.914200,0.311100 -0.045720,-0.199800,0.208100,-0.484900,-0.856400,0.177400 0.021030,-0.217700,0.162600,0.230900,-0.960000,0.158400 -0.133400,0.067610,0.245700,0.815100,0.574700,0.073590 0.064350,-0.161200,-0.427300,0.970400,0.214200,-0.111800 -0.716500,-0.137400,0.219000,0.032470,0.953700,-0.299000 -0.042820,-0.253700,-0.212500,0.545700,0.834500,-0.076010 0.002645,-0.062510,-0.613400,0.999800,-0.013090,0.011750 -0.086260,0.038870,0.349000,0.910700,-0.413000,0.005569 -0.022400,-0.183700,0.306600,0.204200,0.947200,-0.247300 0.100500,0.121300,0.588500,-0.390700,0.593300,0.703800 -0.136600,0.052260,0.182800,-0.739400,-0.647500,0.184600 -0.913100,-0.149100,0.218100,-0.031780,-0.959600,0.279400 -0.042240,-0.138900,0.419900,0.432300,0.844800,-0.315200 0.059160,-0.243200,-0.350800,0.863300,-0.504100,-0.025550 -0.132600,-0.227100,0.230300,-0.938700,0.284600,-0.194300 0.070550,-0.193600,-0.405600,0.990900,-0.093890,-0.096000 0.000247,-0.094900,-0.038610,-0.000209,-0.978700,0.205300 -0.104800,-0.066600,0.290200,-0.994600,-0.101200,0.024440 -0.036020,0.055600,0.434000,0.780100,0.582100,0.229400 -0.097430,-0.129400,-0.045400,0.992900,0.114500,0.030760 0.056770,-0.006574,-0.062480,-0.629900,-0.743000,0.226000 -0.018520,0.094320,0.387300,0.132300,0.136300,0.981800 0.738300,0.141600,0.143500,-0.021000,0.932500,-0.360600 -0.000114,-0.235900,0.054400,0.006084,0.986000,-0.166800 -0.005823,-0.263400,-0.175600,0.087470,0.992100,-0.089400 -0.038730,-0.201400,-0.497900,-0.010220,0.157500,0.987500 0.252000,-0.269900,-0.840000,-0.000021,0.978400,-0.206700 -0.070260,-0.073130,0.615100,-0.227500,-0.084950,-0.970100 -0.074750,-0.127100,-0.291400,0.951600,-0.263600,0.158200 0.092240,-0.098130,-0.106300,-0.986600,-0.137500,0.087260 -0.015710,-0.273300,-0.301800,-0.218300,-0.975400,0.030350 -0.138200,-0.127200,0.641500,0.425000,-0.258900,0.867400 -0.097530,-0.138900,-0.082920,-0.992800,-0.109600,-0.047680 0.016780,-0.055140,-0.274900,-0.207700,-0.933100,0.293500 0.054990,-0.230800,-0.476900,-0.966200,0.252500,0.052350 0.042040,-0.231900,-0.591400,-0.937200,-0.075590,0.340600 0.662800,0.091010,0.213800,0.998600,-0.002909,-0.053300 0.172700,-0.355600,0.296100,-0.898100,-0.401800,-0.178800 0.037330,0.059240,0.458500,-0.681100,0.716900,-0.149000 0.011060,-0.271900,-0.296200,-0.131100,0.990600,-0.039520 0.081530,-0.171500,0.133200,-0.889000,0.447100,-0.099050 0.042780,-0.235100,0.004608,0.467700,-0.875800,0.119400 -0.054310,-0.242600,-0.185000,0.680400,0.731600,-0.042950 0.039400,-0.166400,-0.534100,-0.814200,-0.522500,0.253100 -0.062920,-0.205000,-0.444200,0.988700,0.120300,0.089750 -0.102700,-0.089890,0.091980,0.999300,0.035990,0.006768 -0.050380,-0.046590,-0.205400,-0.607200,0.753300,-0.252500 0.070910,-0.162600,-0.369300,-0.989100,-0.119700,0.085940 -0.093480,-0.011220,0.125200,-0.945500,0.316400,-0.077350 -0.066560,-0.060190,0.539200,-0.757100,-0.493300,0.428300 0.098450,-0.345700,0.298400,-0.005535,0.664200,-0.747500 0.072640,-0.106900,0.437600,-0.772300,0.583400,-0.251200 -0.007862,-0.279700,-0.724600,0.513500,0.858000,0.011000 0.046240,-0.206300,0.168300,0.505700,-0.849800,0.148600 -0.058450,-0.208900,0.085110,0.613500,0.778600,-0.132000 -0.180500,-0.182700,0.151000,0.046580,0.894500,-0.444700 -0.716400,-0.149900,0.183700,0.034900,0.931500,-0.362000 0.388700,0.160900,0.200900,-0.000117,0.954200,-0.299200 -0.013470,-0.274900,-0.418300,0.246100,0.969200,-0.000688 0.481400,-0.172100,0.151200,-0.023420,0.897800,-0.439900 -0.082830,0.016080,0.130700,-0.881000,0.461300,-0.105300 -0.010770,-0.186700,0.310300,-0.109900,-0.953400,0.281000 0.015900,-0.242300,-0.717300,-0.647000,0.745900,-0.157900 0.071660,-0.195900,-0.391700,0.986600,-0.124700,-0.104800 -0.009634,-0.274000,-0.757900,0.867000,0.483300,0.121800 0.088680,0.035380,0.380000,-0.910000,-0.411100,0.054590 0.076490,-0.088120,-0.217900,0.915900,0.357300,-0.183100 -0.202000,-0.362600,0.420500,-0.962500,0.079090,-0.259600 0.662500,0.041450,0.204800,0.895800,0.050740,-0.441600 -0.005127,0.075910,0.207400,0.691400,-0.693200,0.203600 -0.097810,-0.130800,0.090320,0.975800,0.216900,-0.027570 0.044920,0.036080,0.321800,-0.984700,0.170500,-0.036170 0.071060,-0.218300,-0.326300,0.947000,-0.320900,-0.011300 0.099040,-0.136500,0.075510,0.979900,-0.199500,0.002090 0.103800,-0.057010,0.190500,0.997600,0.068080,-0.013600 0.164200,-0.302900,0.330800,0.918500,0.076680,-0.387900 0.040190,-0.048220,-0.044650,0.581300,-0.175700,-0.794500 0.085090,-0.111000,-0.192700,-0.971900,-0.209600,0.107200 0.082520,-0.119000,0.370300,0.856000,-0.494600,0.150500 -0.049710,0.041470,0.299900,-1.000000,0.000000,0.000000 -0.100600,-0.112000,0.103000,0.990100,0.139800,-0.009725 0.064670,0.068200,0.352700,-0.397700,-0.908900,0.125800 0.099100,-0.117100,-0.039250,-0.998700,0.021990,0.045490 -0.020920,0.001870,-0.104000,-0.260100,0.921500,-0.288600 -0.027330,0.068000,0.521700,-0.000211,-0.977800,0.209600 -0.199700,-0.285200,0.431700,-0.390000,0.530700,0.752500 -0.066080,-0.078740,-0.243800,-0.846700,0.495900,-0.192800 0.101700,-0.129100,0.399100,0.904800,0.370200,-0.210400 -0.078160,-0.204300,-0.108400,0.904300,0.425300,-0.035200 0.122500,-0.223000,0.244100,-0.509600,0.535300,0.673700 -0.005349,-0.269000,-0.214300,-0.081760,-0.992600,0.089560 0.164100,-0.136500,0.284000,-0.053780,0.978500,-0.199000 0.060360,0.075010,0.418300,-0.623200,-0.782100,0.004505 -0.101300,-0.089660,0.037250,0.997900,-0.053310,0.036650 -0.032750,0.057860,0.462300,0.236900,0.947400,-0.215100 0.046200,-0.224700,0.043120,-0.509800,0.848700,-0.140900 0.804300,0.162400,0.208700,-0.045040,0.974900,-0.217900 -0.322600,-0.140700,0.316400,-0.038670,-0.529000,0.847800 -0.136800,-0.211800,0.104600,0.043750,0.492200,-0.869400 -0.377300,0.171900,0.267100,-0.015170,0.997700,-0.066560 -0.040420,0.067470,0.561500,0.123500,-0.558300,-0.820400 0.088940,-0.012800,0.086460,-0.937500,-0.341400,0.066750 -0.000267,-0.025240,-0.060580,-0.001770,0.204200,0.978900 0.076540,0.106100,0.064190,-0.008744,0.879200,-0.476400 -0.311600,-0.145500,0.308700,-0.033370,-0.968200,0.248100 0.086570,-0.164100,0.114100,-0.923100,0.378700,-0.066100 -0.090200,-0.150300,-0.165200,0.992000,0.108700,0.064730 0.486800,-0.138300,0.242200,-0.023060,0.965100,-0.261000 0.196900,-0.266000,-0.821100,-0.031700,0.978800,-0.202500 0.099270,-0.018630,0.305300,-0.990800,-0.117800,0.066600 0.131300,0.140100,0.139700,-0.026650,0.927400,-0.373200 -0.623400,-0.170700,0.179400,-0.032510,-0.951000,0.307400 -0.328000,-0.206200,0.107200,-0.033750,-0.940500,0.338100 -0.711000,-0.188300,0.107800,0.030140,0.845200,-0.533600 -0.809300,-0.139800,0.264500,-0.032090,-0.967100,0.252500 0.109400,0.171500,0.261600,0.010070,0.996200,-0.086850 -0.339100,-0.146800,0.229500,0.032230,0.958800,-0.282300 -0.158700,-0.171400,0.177300,0.031420,0.921100,-0.388000 -0.711000,-0.156500,0.168000,0.046710,0.915400,-0.399800 0.262500,0.116800,0.086110,0.010090,0.890200,-0.455400 -0.010100,-0.278600,-0.575200,-0.249100,-0.968100,0.027470 0.782100,-0.165200,0.149900,-0.012710,0.895100,-0.445600 -0.809400,0.157900,0.192000,0.010210,0.945100,-0.326700 0.661700,-0.155200,0.230100,0.023280,-0.961600,0.273400 -0.339100,-0.136200,0.273000,0.032050,0.971900,-0.233400 0.160700,-0.288100,0.359100,0.598100,0.315800,-0.736600 -0.596100,-0.143400,0.277800,-0.032170,-0.970700,0.237900 0.639800,-0.147400,0.260800,0.023320,-0.967800,0.250600 0.098720,-0.029680,0.272500,-0.993400,-0.112700,0.021790 -0.100200,-0.024170,0.414900,0.995300,0.012700,-0.096140 0.078900,-0.208800,-0.181400,0.915300,-0.402500,0.014150 0.057730,-0.246000,-0.241300,0.729900,-0.682200,0.043510 0.503100,0.170900,0.256300,-0.020130,0.995900,-0.087720 -0.388200,-0.139200,0.315900,-0.021990,-0.615400,0.787900 -0.541300,-0.183500,0.149400,-0.031710,-0.942600,0.332300 -0.732700,-0.126800,0.314100,-0.016330,-0.292000,0.956300 0.809300,-0.190600,0.112300,0.023650,-0.934500,0.355200 0.415600,-0.181800,0.164000,0.022380,-0.946900,0.320700 -0.524900,-0.147300,0.271800,-0.031780,-0.969100,0.244500 0.743800,-0.183100,0.118800,-0.032110,0.873500,-0.485800 0.421100,0.105900,0.064380,0.025280,0.865100,-0.500900 0.102400,-0.029680,0.376500,-0.999900,-0.010230,-0.011530 -0.278900,0.108200,0.067750,0.000066,0.891200,-0.453600 0.013730,-0.275100,-0.553200,-0.311500,0.949900,-0.024590 -0.074400,-0.211600,-0.230700,0.936200,0.351200,0.014040 0.003197,-0.133400,-0.531400,0.959300,0.263000,-0.102800 -0.689100,-0.129400,0.250900,0.025180,0.977400,-0.209900 -0.453900,0.159400,0.196700,-0.015390,0.962900,-0.269500 -0.847700,-0.181200,0.111500,0.030510,0.851700,-0.523100 0.749200,-0.170400,0.173600,0.023120,-0.950900,0.308500 -0.771000,-0.146500,0.244200,-0.032270,-0.963600,0.265300 0.164100,-0.286600,-0.917100,0.005043,0.969700,-0.244300 0.174900,-0.182100,0.180600,0.023270,-0.950700,0.309300 -0.213300,-0.140100,0.272700,0.012450,0.985000,-0.172300 0.360900,0.123700,0.100900,0.010250,0.916300,-0.400300 0.437500,0.112700,0.142500,-0.000234,-0.969900,0.243400 0.563300,0.172500,0.288900,0.035690,0.999300,0.011310 0.032890,-0.266200,-0.372800,-0.490200,0.871400,-0.018710 0.033120,-0.269300,-0.449400,0.551500,-0.834100,-0.004839 0.081290,0.050340,0.400100,-0.869600,-0.493600,-0.011110 -0.056880,-0.244300,-0.305900,0.804700,0.593700,0.001942 -0.448400,0.079340,-0.006553,-0.004651,0.988900,-0.148400 0.002903,-0.051540,-0.711900,0.998000,-0.060740,0.015210 0.014380,-0.275600,-0.487200,-0.269100,0.963100,0.010770 0.623400,0.143600,0.260500,0.000000,-0.966200,0.257700 -0.317200,0.143600,0.260500,0.000000,-0.966200,0.257700 -0.003240,-0.111700,-0.673600,-1.000000,0.000000,0.000000 -0.705000,0.107000,0.121400,0.000000,-0.960000,0.279800 0.651200,0.078420,0.035680,0.000000,-0.975300,0.220800 0.176800,-0.368700,0.327200,-0.999600,0.020830,0.020970 0.837600,0.073760,-0.029220,-0.005113,-0.985800,-0.168100 0.003237,-0.144500,-0.826700,1.000000,0.000000,0.000000 -0.738300,0.126300,0.195100,0.000000,-0.967400,0.253400 -0.683100,0.105800,0.117500,0.000000,-0.957500,0.288300 -0.891400,0.156800,0.188000,-0.000021,0.966100,-0.258200 0.492300,-0.191100,0.115700,-0.032030,0.857600,-0.513400 0.896900,0.092080,0.034540,0.000000,0.925400,-0.378900 -0.925600,0.073420,-0.024510,0.000000,-0.997800,-0.066070 0.371900,0.142300,0.255400,0.000000,-0.967400,0.253300 -0.003240,-0.171800,-0.772000,-1.000000,0.000000,0.000000 0.875000,0.076420,0.025960,0.000000,-0.983900,0.178800 -0.896400,0.079330,0.039540,0.000000,-0.970200,0.242400 -0.003239,-0.242900,-0.804800,-0.999800,0.007262,-0.016530 -0.003240,-0.171800,-0.662600,-1.000000,0.000001,-0.000001 -0.158600,0.122300,0.096990,-0.005066,0.906100,-0.423000 -0.158600,-0.219800,-0.564500,0.000000,-0.978600,0.206000 -0.251600,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.003240,-0.139000,-0.799400,-1.000000,0.000000,0.000000 0.180500,-0.276400,-0.870400,0.000000,0.979300,-0.202400 -0.003240,-0.193700,-0.815800,-1.000000,0.000000,0.000000 0.142600,-0.237700,-0.649400,0.000000,-0.978500,0.206300 -0.114800,-0.265200,-0.817300,0.000000,0.978500,-0.206200 -0.003240,-0.193700,-0.722800,-1.000000,0.000000,0.000000 0.213300,0.117200,0.160600,-0.000031,-0.967000,0.254800 0.662500,-0.106200,0.190500,0.998700,0.008044,-0.049520 0.175000,-0.268000,-0.826000,0.000001,0.979200,-0.203100 -0.136700,-0.234900,-0.635900,0.000000,-0.978500,0.206100 -0.191400,0.143300,0.147400,0.000000,0.936800,-0.350000 -0.003240,-0.171800,-0.865000,-1.000000,0.000000,0.000000 -0.246100,0.169500,0.245600,-0.020190,0.994400,-0.104000 -0.235100,0.096090,0.087790,0.000000,-0.942000,0.335700 0.229700,0.124000,0.186300,0.000000,-0.966800,0.255700 -0.207800,-0.267000,-0.826200,-0.000060,0.979200,-0.202900 0.109400,0.165900,0.223500,0.005520,0.982000,-0.188700 0.003237,-0.117100,-0.542300,1.000000,0.004705,0.004867 0.103900,-0.272000,-0.848200,-0.020470,0.989000,-0.146200 -0.109400,-0.343300,0.301000,0.000091,0.730400,-0.683000 -0.366400,0.083760,0.010290,-0.000023,0.964200,-0.265300 -0.486700,0.097440,0.091620,0.000000,-0.945100,0.326800 -0.246100,0.087100,0.063960,0.000068,-0.935100,0.354300 -0.437500,0.114900,0.151500,-0.000029,-0.971300,0.237900 -0.492200,0.090400,0.072520,0.000000,-0.932400,0.361500 0.191400,-0.290200,-0.898300,-0.000030,-0.979000,0.203700 -0.432000,0.093660,0.038300,0.000000,0.919500,-0.393100 -0.003240,-0.155400,-0.668100,-1.000000,0.000000,0.000000 -0.246100,0.139900,0.246500,0.000000,-0.966800,0.255700 0.333600,0.153700,0.298100,0.000000,-0.924800,0.380500 0.240600,0.172000,0.294200,0.015710,0.995400,0.094640 0.464800,0.158000,0.191900,0.000106,0.941100,-0.338000 0.755100,0.135300,0.229200,0.000000,-0.966900,0.255300 -0.787500,0.145700,0.268300,-0.000008,-0.966700,0.255700 -0.525000,0.114900,0.151500,0.000000,-0.971300,0.237900 0.568800,0.091870,0.076320,-0.000094,-0.935000,0.354600 -0.667200,0.144700,0.264500,0.000000,-0.966100,0.258300 0.003237,-0.051500,-0.673600,1.000000,-0.000005,0.000017 0.519500,0.172000,0.294200,0.000043,0.995500,0.094660 -0.590600,0.097440,0.091620,0.000000,-0.945100,0.326800 -0.009522,-0.280100,-0.740700,-0.680700,-0.728500,-0.076870 0.029190,-0.000865,0.102400,0.035540,0.249100,0.967800 -0.091070,-0.078280,0.425300,-0.934100,-0.306400,0.183300 0.057770,0.104800,0.505600,0.503700,-0.672800,0.541900 0.092110,-0.021500,0.088220,-0.947500,-0.315000,0.055910 0.092650,-0.167400,-0.099350,0.973600,-0.225100,-0.037740 -0.021880,-0.207100,-0.541800,-0.030550,0.978200,-0.205600 0.062180,-0.167500,0.267300,-0.892100,0.423200,-0.158600 -0.021870,0.146000,0.155000,-0.000077,0.939400,-0.342800 0.005691,-0.083050,0.552800,-0.081930,0.840600,-0.535400 -0.031630,-0.258300,-0.165800,-0.402500,-0.912300,0.075000 0.080980,0.000833,0.066130,-0.882600,-0.454100,0.122000 0.048230,0.052390,0.272500,0.999700,-0.011150,-0.019450 0.027350,0.136500,0.233600,0.000000,-0.966900,0.255200 0.027350,-0.207200,-0.504700,-0.000021,-0.978300,0.207300 0.003070,-0.051500,-0.788400,0.999800,0.020440,0.005067 -0.049210,-0.283300,-0.865700,0.000000,-0.978500,0.206500 0.016410,-0.328000,0.397700,0.000000,-0.976200,0.216900 0.658800,0.096150,0.217800,-1.000000,0.002941,-0.009362 0.087510,-0.240600,-0.663200,0.000000,-0.979000,0.203700 -0.054680,0.132400,0.120200,0.000000,0.922900,-0.385000 0.054690,0.130700,0.211800,0.000000,-0.966800,0.255400 -0.003240,-0.067900,-0.679100,-1.000000,0.000000,0.000000 0.054700,0.166100,0.303900,0.000000,0.308600,0.951200 -0.076550,0.150400,0.167400,0.000148,0.945400,-0.325900 0.038290,-0.087100,-0.001554,0.000012,-0.978500,0.206100 0.076570,-0.324100,0.408800,-0.000351,-0.715300,0.698800 -0.103800,-0.084340,0.064700,-0.997900,0.057300,-0.030960 0.109100,0.124900,0.590600,-0.418100,0.576000,0.702400 -0.007831,-0.073330,0.570100,-0.109900,-0.834400,0.540000 -0.096130,-0.154800,-0.017330,-0.973700,-0.228000,-0.004556 0.049220,-0.023600,0.581400,0.001960,-0.207600,-0.978200 0.087960,0.141700,0.143200,-0.000052,0.942000,-0.335700 0.043700,-0.294900,-0.950200,0.018620,0.680300,-0.732700 -0.061920,-0.113200,0.453900,-0.641000,-0.701500,0.311500 0.100700,-0.122400,-0.044560,0.995200,-0.086990,-0.044110 -0.076310,-0.202900,-0.028740,0.866900,0.497400,-0.033110 0.058310,-0.230400,-0.071820,-0.671900,0.736600,-0.076890 -0.024250,-0.266100,-0.662700,0.838000,0.543900,0.042670 -0.020040,-0.032780,0.583400,-0.000009,-0.210300,-0.977600 -0.098400,-0.140500,0.051890,-0.974000,-0.225300,0.022120 0.021960,0.037320,0.110200,0.514500,0.841600,-0.164400 0.010770,-0.280000,-0.684200,0.439400,-0.898200,0.009010 -0.005004,-0.083350,0.006158,0.005563,0.983300,-0.181900 -0.038270,0.047780,0.566400,0.000000,-0.209700,-0.977800 0.069490,-0.193500,-0.416400,0.992600,-0.069000,-0.099470 -0.102100,-0.106800,0.628500,0.525200,-0.331600,0.783700 -0.021450,0.034880,0.117700,0.037320,-0.976600,0.211700 0.098260,-0.125900,0.415600,-0.268300,-0.352800,0.896400 -0.039130,0.075950,0.207300,-0.784400,0.605400,-0.134800 0.078680,-0.208100,-0.099480,0.897900,-0.439000,0.032330 0.098800,-0.154500,0.283900,0.024350,-0.971400,0.236100 -0.048610,0.041440,0.294400,0.999500,-0.030640,0.000054 0.016430,-0.219600,-0.596200,0.030470,0.978100,-0.206100 -0.075120,-0.115000,0.408000,0.785700,0.580700,-0.213100 0.935200,0.076090,-0.027520,0.000004,0.972800,-0.231700 -0.051130,-0.034050,-0.035470,0.731800,0.119600,0.671000 -0.025870,0.065040,0.306400,0.548400,-0.417100,0.724700 -0.092860,-0.124000,0.270300,-0.940100,-0.332400,0.075400 -0.074510,-0.197600,0.064420,-0.811000,-0.578100,0.089580 -0.096670,-0.138800,-0.099280,-0.992700,-0.108600,-0.051720 -0.059020,-0.171100,0.282300,0.633900,0.749100,-0.192500 -0.022080,-0.244100,-0.022680,0.244900,0.963400,-0.109300 -0.075730,-0.182800,0.150100,-0.809200,-0.581900,0.081580 0.040050,-0.254500,-0.537200,-0.855300,0.515800,0.049100 0.853200,-0.151100,0.228300,0.023210,-0.961000,0.275500 -0.503100,0.074760,0.015340,0.000000,-0.990900,0.134700 -0.831100,-0.156100,0.203800,-0.032270,-0.955500,0.293200 0.034250,-0.255100,-0.159200,-0.404900,0.913400,-0.042460 0.154900,0.165300,0.583000,-0.366300,0.594100,0.716100 0.098450,-0.218700,-0.559300,0.000000,-0.978500,0.206100 0.131300,-0.273900,-0.858800,0.000000,0.977800,-0.209700 0.175000,-0.240500,-0.700300,0.000000,0.978500,-0.206200 0.026450,-0.240400,0.015060,0.295500,-0.944300,0.144700 0.038970,-0.265200,-0.432500,0.628400,-0.777700,-0.014870 -0.169600,-0.253600,-0.758400,-0.056860,0.988400,-0.141100 -0.047580,-0.247000,-0.127600,-0.560200,-0.826200,0.058830 0.205200,0.217900,0.568200,-0.015270,0.467700,0.883700 -0.689300,-0.132200,0.241200,0.032770,0.954800,-0.295600 -0.052910,-0.130900,0.430000,-0.529000,-0.777900,0.339000 0.003237,-0.242900,-0.804800,0.999600,-0.028320,-0.001254 -0.672500,-0.162600,0.199800,-0.032110,-0.954000,0.298000 -0.628800,-0.191700,0.118600,-0.031840,-0.937200,0.347400 0.187100,-0.332100,0.443300,0.706900,-0.028430,0.706800 -0.361000,-0.156100,0.200400,0.005865,0.956000,-0.293500 -0.891300,-0.155500,0.156400,0.032030,0.905400,-0.423400 0.005790,-0.278900,-0.646200,-0.174500,0.984400,-0.023030 -0.131100,-0.173900,0.222300,-0.031840,-0.958500,0.283400 0.267900,-0.148000,0.293900,0.023330,-0.972600,0.231300 0.623600,-0.166000,0.156100,-0.012020,0.909200,-0.416200 -0.191500,-0.157000,0.212800,0.031890,0.953800,-0.298800 0.869500,0.084750,0.014320,-0.020420,0.955900,-0.292800 0.541300,-0.200600,0.103000,0.023560,-0.971000,0.237800 -0.891400,-0.174900,0.140400,-0.030690,-0.942600,0.332400 0.333800,-0.144600,0.301700,0.024790,-0.974100,0.224700 -0.842100,-0.153400,0.211700,-0.031240,-0.958300,0.283900 -0.306100,-0.151900,0.282500,-0.032320,-0.969800,0.241600 0.003383,-0.117200,-0.618700,0.999800,0.016080,0.012610 0.052160,-0.251800,-0.394600,0.800300,-0.598600,-0.034450 -0.060080,-0.243500,-0.292600,-0.824300,-0.566000,0.011020 0.033030,-0.266600,-0.400100,-0.529400,0.848200,-0.013810 -0.136700,-0.208300,0.118700,-0.024840,-0.937800,0.346300 -0.049200,0.172700,0.288900,0.000000,0.999800,0.021750 0.765600,-0.153300,0.228100,0.022350,-0.961500,0.273800 0.760100,-0.148700,0.244900,0.023250,-0.965400,0.259800 -0.191300,-0.346800,0.360000,0.996600,-0.073670,0.037660 -0.105400,-0.084010,0.146800,-0.998200,-0.058750,-0.011360 -0.051310,-0.227800,0.016910,-0.557800,-0.819600,0.131100 0.093780,0.027750,0.385500,0.942000,0.335200,0.018370 -0.552300,0.096760,0.046060,0.010110,0.909800,-0.414900 0.448400,0.109300,0.129700,-0.000033,-0.964300,0.264700 -0.535900,0.097440,0.091620,0.000000,-0.945100,0.326800 0.185900,-0.265200,-0.779900,0.000000,-0.977800,0.209500 0.003237,-0.232000,-0.821200,1.000000,0.000000,0.000000 0.656300,0.107900,0.067930,-0.005030,0.914700,-0.404000 0.656300,0.116200,0.156700,0.000000,-0.968900,0.247400 -0.715900,0.161900,0.204700,-0.000023,0.968600,-0.248700 -0.776600,0.099080,0.096450,0.000000,-0.946300,0.323400 -0.895900,0.073250,-0.001572,0.000000,-0.998800,0.048080 0.814900,0.081080,0.001335,-0.000150,0.960300,-0.279000 0.176800,-0.363200,0.409200,-1.000000,0.001933,-0.006063 0.459800,0.133300,0.221500,0.000000,-0.966700,0.255800 0.322700,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.793000,0.142300,0.255400,0.000000,-0.967400,0.253400 0.003237,-0.095250,-0.750100,1.000000,0.000000,0.000000 0.377400,0.172400,0.294200,0.000017,0.995500,0.094630 -0.776600,0.141000,0.250400,0.000000,-0.967400,0.253200 0.869500,0.138900,0.242700,0.000339,-0.965900,0.258800 -0.628400,0.080340,0.043350,0.000000,-0.964000,0.265900 -0.585100,0.172700,0.288900,0.000000,0.999800,0.021750 -0.743700,0.076420,0.025960,0.000000,-0.983900,0.178800 -0.322600,0.123000,0.182400,0.000000,-0.966100,0.258200 -0.880500,0.124000,0.186300,0.000000,-0.966800,0.255700 -0.109400,-0.284300,-0.908100,-0.000009,0.978500,-0.206200 0.224200,-0.251000,-0.712500,-0.000030,-0.978500,0.206200 0.853100,0.113700,0.146500,-0.000034,-0.971800,0.236000 -0.601600,0.172400,0.294200,0.000000,0.991700,0.128500 -0.169500,-0.290200,-0.898300,0.000000,-0.979000,0.203700 0.169500,-0.251000,-0.712500,0.000000,-0.978500,0.206200 -0.164100,-0.287100,-0.883800,0.000000,-0.977800,0.209400 0.002903,-0.177300,-0.870500,0.998400,-0.055900,0.005126 -0.010700,0.083220,0.589100,-0.136800,0.961500,0.238500 -0.013500,-0.016000,-0.060640,0.141300,0.214500,0.966400 0.049630,0.095880,0.426100,-0.159600,0.957500,-0.240400 0.049820,-0.254200,-0.252500,0.648100,-0.761200,0.024980 -0.147700,-0.251000,-0.749500,-0.030450,0.989000,-0.144900 0.344600,-0.129800,0.300100,-0.018750,0.989500,-0.143400 -0.162600,0.081410,0.150800,0.749800,0.641800,-0.160800 -0.018680,0.060130,0.261800,0.011970,0.169100,0.985500 0.041920,0.074160,0.442000,0.971900,-0.233200,0.032750 -0.033840,-0.195000,-0.617800,-0.885800,0.408500,-0.220300 -0.038210,-0.188200,-0.588000,-0.897400,0.387800,-0.210400 0.053510,0.057110,0.199400,-0.071960,-0.995200,0.066210 -0.102600,-0.062220,0.359900,-0.987500,-0.144500,0.063040 0.355500,-0.129900,0.294700,-0.048740,0.983900,-0.171800 0.021250,-0.132700,0.459100,0.212700,-0.901200,0.377700 -0.958400,-0.163200,0.163500,-0.742900,-0.489000,0.457100 -0.040480,-0.255400,-0.530600,0.833200,0.547200,0.079350 0.093700,-0.065180,-0.046080,0.957900,0.257600,-0.127200 0.093050,-0.003567,0.226900,-0.962700,-0.270000,0.017580 0.042540,-0.149000,0.397600,0.429900,-0.856400,0.286000 0.074210,-0.185500,0.124600,-0.809600,0.576600,-0.109400 -0.042080,-0.251100,-0.137900,-0.497500,-0.865300,0.061620 -0.021540,0.086390,0.254800,0.751800,0.647000,-0.127200 -0.950400,0.123400,0.112500,-0.893700,0.133100,0.428400 -0.056560,-0.103300,-0.335400,0.810500,-0.549200,0.203700 0.109400,-0.272800,-0.853500,-0.000060,0.984500,-0.175600 -0.027330,0.008114,0.100700,0.005213,0.146400,0.989200 0.147200,-0.261800,0.372600,-0.929200,-0.365300,0.055590 0.010660,-0.235700,0.064380,0.126400,-0.979000,0.160200 -0.085490,-0.133800,-0.230400,-0.984500,0.129600,-0.117900 0.092960,-0.139600,0.318000,0.000181,0.124900,0.992200 -0.048160,0.057750,0.310800,0.943900,-0.330200,-0.005709 -0.085110,-0.090510,-0.164700,-0.954000,0.269700,-0.130700 0.160500,-0.134500,0.316200,-0.013600,0.744300,0.667700 -0.092960,0.169800,0.245500,-0.000021,0.991600,-0.129200 0.005867,-0.263300,-0.767000,-0.304000,-0.948400,0.090210 -0.118400,0.068900,0.337200,0.719100,0.158300,-0.676600 0.014000,0.064770,0.128900,0.529500,0.840900,-0.112000 -0.541300,-0.151200,0.196100,0.016410,0.942400,-0.334200 -0.069480,0.051140,0.212900,-0.731800,0.671200,-0.118300 -0.284400,-0.170600,0.169700,0.002446,0.913800,-0.406100 0.079260,0.023350,0.152500,0.860500,0.491800,-0.133100 -0.612500,0.073080,-0.006550,0.000005,-0.999700,0.023280 0.120400,-0.189500,0.396200,-0.891800,-0.393300,0.223700 -0.054690,0.013390,0.099770,-0.030530,0.206400,0.978000 0.176700,-0.374200,0.327100,-0.996300,0.062400,0.059930 -0.754700,0.170500,0.250900,0.000000,0.993600,-0.113100 -0.273400,0.171000,0.256200,0.000023,0.995200,-0.097950 -0.261300,-0.262500,-0.767200,-0.152600,-0.967800,0.200000 0.027350,-0.328000,0.397700,0.000000,-0.976200,0.216900 -0.005441,-0.256800,-0.739800,0.060030,-0.980300,0.188000 0.202300,-0.267200,-0.789100,0.000000,-0.978500,0.206100 -0.125800,-0.244200,-0.680000,0.000000,-0.977900,0.208900 0.028860,0.082840,0.223700,-0.320300,0.928900,-0.185600 0.244600,-0.131700,0.313600,-0.018820,0.940200,0.340000 -0.023790,-0.039270,-0.227000,-0.287600,0.906600,-0.308700 0.174100,-0.265100,0.343600,-1.000000,-0.009440,-0.001969 0.119500,0.147300,0.571600,0.395100,-0.535900,-0.746100 0.514000,-0.140000,0.302900,0.024350,-0.973600,0.226700 -0.535900,0.172700,0.288900,0.000000,0.999800,0.021750 -0.382800,0.172400,0.294200,0.000000,0.991700,0.128500 0.089940,-0.028870,0.037120,-0.942800,-0.321000,0.090130 -0.073660,-0.194200,-0.334800,0.975500,0.205900,0.077350 0.068260,0.049650,0.210600,0.754900,0.651400,-0.075780 0.771400,-0.186900,0.124800,0.023740,-0.938700,0.343900 0.432300,0.129000,0.112500,0.006381,0.912300,-0.409400 -0.125800,0.116800,0.086110,0.015740,0.911100,-0.412000 0.063810,0.169400,0.301900,-0.005269,0.717700,0.696300 0.328500,-0.154600,0.262000,0.022730,-0.967500,0.251800 0.377700,-0.150100,0.274600,0.023780,-0.969200,0.245200 -0.453700,0.172600,0.283400,-0.000073,0.999800,-0.018220 0.050300,-0.051020,-0.220400,0.593300,0.764000,-0.253400 0.003383,-0.122600,-0.624400,0.999800,-0.011110,-0.014500 -0.052810,-0.252200,-0.340500,-0.767800,-0.640700,-0.007251 -0.038280,-0.085930,-0.006107,-0.000368,0.978700,-0.205400 -0.136700,-0.277400,-0.870200,0.000000,0.979300,-0.202500 0.328100,-0.163900,0.228000,0.023570,-0.961300,0.274700 -0.021860,0.148000,0.277200,0.000000,-0.967400,0.253400 -0.013030,-0.072710,-0.336100,-0.198000,0.932300,-0.302500 -0.021860,0.019880,0.268400,-0.000053,-0.362800,-0.931900 0.081530,-0.001287,0.551100,0.948300,-0.136900,0.286400 -0.831200,0.078680,-0.011820,-0.000006,0.990100,-0.140300 0.099570,-0.185900,0.169400,-0.676300,-0.708700,-0.200800 0.042500,-0.150900,0.392000,0.419800,-0.860700,0.287900 0.016030,-0.215500,-0.709300,0.689200,0.653800,-0.312200 -0.913400,-0.179800,0.110000,0.030190,0.850500,-0.525100 -0.056250,-0.136900,-0.411900,0.918600,-0.346700,0.189500 -0.787500,0.142300,0.255400,-0.000030,-0.967400,0.253300 -0.064500,-0.105200,0.466200,-0.674500,-0.671000,0.308000 0.295400,-0.130300,0.300200,-0.023180,0.988200,-0.151300 -0.138100,-0.243100,0.255800,0.880400,-0.457900,0.123200 0.079550,-0.200500,-0.198000,-0.948000,0.316200,0.034700 0.076660,0.037210,0.202600,0.820900,0.564400,-0.087480 0.140700,0.092430,0.335600,0.779700,-0.487100,0.393600 0.095530,-0.068670,-0.038910,0.967700,0.233300,-0.095790 0.084380,0.112200,0.578500,0.439200,-0.602000,-0.666900 0.015670,-0.195800,0.271600,0.188000,-0.950900,0.245900 -0.226900,-0.149700,0.233100,-0.004441,0.964900,-0.262400 -0.612500,-0.142900,0.277600,-0.030530,-0.970600,0.238900 0.095710,-0.012650,0.261500,-0.977900,-0.208300,0.015700 -0.163000,-0.259100,0.367200,-0.857400,0.469100,-0.211600 -0.103000,-0.095480,0.632600,0.466000,-0.257300,0.846600 0.082960,-0.044760,-0.062190,-0.923200,-0.361200,0.131600 0.235200,-0.274000,-0.821700,-0.000018,-0.979000,0.203700 -0.185900,-0.225600,-0.591700,0.000025,-0.979100,0.203300 -0.168200,-0.280900,0.316500,-0.876900,0.475100,-0.072740 -0.039870,0.058120,0.452900,-0.994900,-0.098860,0.017550 -0.050710,-0.235600,-0.067130,0.601000,0.793300,-0.097210 -0.015670,-0.016820,-0.163900,-0.176100,0.937000,-0.301900 0.714600,0.169500,0.301900,0.000137,0.726000,0.687700 0.787900,-0.132800,0.305800,0.024990,-0.966000,0.257500 -0.820500,-0.151300,0.221200,-0.033250,-0.958600,0.282700 -0.664500,-0.120700,0.160000,-0.803800,-0.133000,-0.579800 -0.084450,-0.177900,-0.203500,0.977400,0.191000,0.091160 0.067940,-0.019580,0.574100,-0.836600,0.195200,-0.511900 -0.782100,-0.130500,0.234900,0.031970,0.963500,-0.265900 -0.100300,-0.129300,0.396600,0.112500,0.147600,-0.982600 0.377300,-0.185200,0.156600,0.023240,-0.945500,0.324700 -0.052510,0.020780,0.157200,-0.936900,-0.324100,0.130800 0.133500,0.082730,0.332500,0.716400,-0.695700,0.053020 -0.092600,-0.147500,0.106900,0.955700,0.292300,-0.035410 0.193000,-0.223200,-0.582800,0.444100,-0.831000,0.335100 -0.033220,-0.266300,-0.442100,0.590700,0.806900,-0.003284 0.102000,-0.062160,0.305400,0.994100,-0.105400,-0.023980 -0.099810,-0.074180,0.004870,-0.984800,0.157400,-0.073890 -0.061430,-0.109300,-0.339800,-0.864300,0.461000,-0.201300 0.038290,0.148000,0.277200,0.000000,-0.967400,0.253400 -0.289800,0.120600,0.173300,0.000000,-0.967400,0.253400 -0.013980,0.052350,0.638500,-0.274800,0.625600,0.730100 0.103000,-0.057150,0.108500,0.990900,0.134800,-0.005724 0.721900,0.081570,0.047670,0.000000,-0.958400,0.285500 -0.891400,0.081570,0.047670,0.000000,-0.958400,0.285500 0.092620,-0.054220,-0.010430,-0.958800,-0.265200,0.102100 0.091690,-0.160800,-0.159500,0.986600,-0.153800,-0.055070 0.084690,-0.140000,0.245500,-0.852900,0.507600,-0.121900 0.700000,-0.134900,0.234500,-0.023340,0.957600,-0.287100 0.694500,-0.173800,0.167400,0.023240,-0.948000,0.317300 -0.864000,-0.157700,0.194900,-0.032160,-0.954300,0.297000 0.639900,0.074830,-0.021520,-0.044410,-0.081160,-0.995700 0.645000,-0.146000,0.265800,0.023520,-0.967600,0.251400 0.059970,0.041040,0.121500,0.665300,0.738800,-0.107400 -0.399200,0.113700,0.146500,0.000000,-0.971900,0.235600 -0.891400,0.113700,0.146500,0.000000,-0.971900,0.235600 0.508600,0.171100,0.298600,0.015340,0.947300,0.320000 -0.038150,-0.080070,-0.328100,-0.500600,0.816800,-0.286700 -0.013540,0.011190,-0.065920,0.187500,0.196100,0.962500 0.028770,-0.264000,-0.646300,0.907300,-0.414200,-0.072760 -0.062580,-0.188000,-0.449700,0.986600,-0.086910,0.137800 0.037620,-0.072730,-0.301600,-0.499700,-0.819200,0.281200 0.820400,-0.137000,0.218900,-0.023240,0.949300,-0.313400 -0.131100,0.085490,0.340000,0.684200,0.729300,0.005747 0.404700,0.104400,0.113000,0.000000,-0.956100,0.293000 -0.015870,-0.141400,0.440700,-0.167900,-0.907200,0.385600 -0.022910,-0.143600,0.426400,0.241900,0.891300,-0.383400 -0.109200,-0.166500,0.194500,0.048340,0.934300,-0.353200 0.090860,-0.102000,0.338300,-0.940600,0.337500,-0.036590 -0.047850,-0.005453,0.099890,0.136700,-0.451500,-0.881700 -0.052750,-0.246300,-0.176300,-0.642100,-0.765200,0.046610 -0.437500,0.099080,0.096450,0.000000,-0.946300,0.323400 -0.273400,0.097440,0.091620,0.000000,-0.945100,0.326800 0.099260,-0.138600,0.042630,0.977200,-0.211600,-0.018180 0.590500,-0.157600,0.227700,0.023360,-0.961100,0.275200 0.574200,-0.164300,0.206300,0.022940,-0.957400,0.287800 0.017700,0.029740,0.359200,0.714000,-0.684200,0.148600 0.087890,-0.178300,-0.049860,-0.950900,0.309200,-0.011780 -0.051310,0.075400,0.523600,-0.576500,0.799800,0.167200 0.662400,-0.109100,0.169800,0.889900,0.106000,0.443700 -0.027330,0.019880,0.268400,-0.000045,-0.362800,-0.931900 -0.006665,-0.282100,-0.533200,-0.837900,-0.545800,0.007045 0.140900,0.064730,0.174100,-0.736100,0.669700,-0.098810 -0.004975,0.089380,0.293500,-0.318700,0.945000,-0.073430 0.091110,-0.102400,0.327300,-0.945100,0.324800,-0.034780 -0.021420,0.069330,0.304400,0.175900,0.189000,0.966100 0.100000,-0.007536,0.403800,-0.986800,-0.149700,-0.061920 0.031910,-0.254400,-0.142900,-0.363300,0.927100,-0.091800 0.091950,0.035680,0.349700,0.989700,-0.024160,-0.141000 -0.062270,-0.194200,-0.470700,-0.979500,0.126000,-0.157100 -0.053180,0.042890,0.097900,-0.590800,0.794300,-0.141500 0.006705,-0.235500,-0.773100,0.826900,0.516400,-0.222700 -0.912100,0.125300,0.186100,-0.588800,-0.621500,0.516700 -0.069340,-0.223600,-0.242900,0.899900,0.435800,0.013910 -0.059250,0.061760,0.218400,-0.622600,0.771400,-0.131200 -0.095980,-0.107000,0.272700,0.960600,0.270700,-0.063300 0.050110,0.079430,0.504400,0.497800,0.855100,0.145100 0.080710,0.044570,0.471400,-0.899100,-0.428800,-0.088060 0.404700,-0.140500,0.240000,-0.024700,0.964600,-0.262700 -0.306200,-0.160100,0.250700,-0.032770,-0.965100,0.259800 0.072980,-0.100200,-0.252800,-0.926600,-0.341600,0.157000 -0.010040,-0.278800,-0.536800,-0.571200,-0.820700,0.015200 0.017480,0.085730,0.468700,0.849100,-0.311100,0.427000 -0.037790,0.082640,0.504800,0.848100,0.472900,0.239100 -0.680800,-0.177800,0.127700,0.069550,0.860300,-0.505000 0.056910,0.065720,0.554700,0.724700,0.675800,0.134300 -0.052790,-0.172500,-0.503600,-0.928500,0.300500,-0.218100 0.016470,0.063490,0.489600,0.082530,0.995900,0.036700 0.003027,-0.215400,-0.886200,0.988600,-0.046270,-0.143400 -0.015820,-0.088070,0.545500,-0.150300,-0.827700,0.540600 -0.037400,-0.080080,-0.321800,0.524300,-0.806800,0.272400 0.010640,0.045310,0.464900,0.079530,-0.995200,-0.057830 -0.202100,-0.284500,0.333700,-0.979800,0.123700,-0.157000 0.011320,0.096630,0.435600,0.246100,0.199900,0.948400 0.070930,-0.039580,0.552400,0.859600,-0.382300,0.339000 0.856800,-0.116400,0.308700,-0.016800,0.987700,0.155200 0.043490,0.047390,0.387700,0.999200,-0.028220,0.028910 -0.046210,-0.200600,0.202800,-0.488800,-0.854200,0.177200 0.069650,0.183600,0.266900,0.997000,0.065750,0.039620 -0.662200,-0.122500,0.287500,0.014560,0.988100,-0.153400 0.618100,-0.129000,0.266800,-0.005142,0.975100,-0.221800 0.073300,0.058770,0.462800,-0.821100,-0.565100,-0.079530 -0.073760,-0.134200,-0.323200,-0.955600,0.247300,-0.160500 0.015860,-0.061780,-0.301300,0.224800,0.931200,-0.287100 -0.202500,-0.270200,0.380600,-0.996900,-0.078210,-0.007329 -0.093890,-0.048950,0.638600,-0.593800,0.531900,-0.603700 -0.388000,-0.162000,0.234100,-0.032070,-0.960900,0.275200 -0.083250,0.026920,0.212400,0.899800,-0.431100,0.066240 -0.067580,-0.071570,0.621200,0.559100,-0.337500,0.757300 -0.036910,-0.006149,0.577700,-0.000057,-0.207400,-0.978300 0.145400,0.172500,0.572500,-0.409400,0.565900,0.715600 -0.055950,-0.166700,0.317100,-0.578800,-0.780000,0.238000 -0.000005,0.101800,0.435500,-0.037350,0.104700,0.993800 -0.075230,-0.017590,-0.028620,0.834000,-0.528400,0.159100 0.034460,0.084890,0.294400,0.171800,0.981100,0.088620 0.001696,0.078350,0.605800,0.004136,0.901500,0.432800 -0.191400,-0.259700,0.340500,0.629500,0.715000,-0.304200 0.098020,-0.081070,-0.013440,-0.986300,-0.148700,0.071440 0.097530,-0.078940,0.376300,0.968500,-0.237900,0.073030 0.032120,-0.227400,0.070540,-0.344600,0.926900,-0.149000 -0.067910,-0.118500,-0.328500,-0.923100,0.346000,-0.167600 0.036200,0.113700,0.515900,0.071040,0.828100,0.556100 -0.102400,-0.090280,0.190600,0.992900,0.116800,-0.023490 0.092920,0.083170,0.052530,-0.022940,-0.958000,0.285900 0.075070,0.002706,0.023410,0.853200,0.518400,-0.056610 0.059470,-0.172600,0.264800,-0.717700,0.631600,-0.293200 0.059080,-0.241300,-0.236000,-0.773100,0.633900,-0.023170 -0.198000,-0.295200,0.437900,-0.195800,0.454200,0.869100 -0.944300,0.073220,-0.020900,0.000003,-0.999000,-0.043800 -0.187500,0.117000,0.211700,0.532600,-0.821800,0.202400 -0.012110,-0.150500,-0.543500,0.249700,-0.898900,0.360100 0.059530,0.041090,0.131300,-0.559400,-0.819000,0.127400 -0.033920,-0.115600,-0.434800,-0.523900,0.798400,-0.296600 0.057000,-0.241700,-0.160200,0.701800,-0.710700,0.048750 -0.804000,-0.141800,0.197000,0.032320,0.940800,-0.337500 0.787500,0.132100,0.216900,-0.000059,-0.966700,0.255900 -0.015260,-0.115600,0.496800,-0.157300,-0.866500,0.473800 0.710900,0.088790,0.068390,-0.000094,-0.933000,0.359800 -0.024730,0.076100,0.412800,-0.686200,-0.223900,-0.692100 0.086370,0.025260,0.508600,0.950600,0.286200,0.120300 0.010500,-0.265700,-0.203700,-0.128500,0.986400,-0.102100 -0.045650,0.053160,0.122700,-0.555800,0.791300,-0.254700 -0.409700,0.105800,0.117500,0.000000,-0.957500,0.288300 -0.026880,-0.291000,-0.940000,-0.000066,0.978200,-0.207500 0.058660,-0.165000,0.295000,-0.715400,0.677100,-0.172500 0.098900,-0.072770,0.343900,-0.981200,0.192000,-0.018390 0.070900,-0.047290,-0.134100,-0.834000,-0.512700,0.203900 -0.050730,-0.039440,-0.035050,0.719200,0.137600,0.681000 -0.076160,-0.027380,-0.063230,-0.848700,0.497800,-0.178500 0.013080,-0.138500,-0.518300,0.408200,0.823700,-0.393500 0.056990,-0.060110,-0.220500,-0.706800,-0.666300,0.237800 -0.036650,-0.263700,-0.429300,0.621500,0.783400,0.004229 -0.665800,0.019630,0.206800,-0.993300,0.039800,-0.108700 0.022910,-0.198100,-0.657900,0.697800,0.653900,-0.292400 0.064310,-0.225300,-0.050490,0.715400,-0.693100,0.088440 0.844500,0.164900,0.279200,0.474900,0.209400,0.854800 -0.056800,-0.178900,0.268300,-0.600300,-0.776900,0.190200 0.098080,-0.118900,0.144100,-0.979100,0.197700,-0.047790 -0.098580,-0.074460,-0.011670,-0.980700,0.180200,-0.076150 0.008897,-0.177000,-0.618600,-0.218300,-0.929800,0.296500 0.122700,-0.184800,0.400800,0.675000,0.088640,0.732400 -0.035120,-0.060060,-0.045580,-0.472000,-0.181500,-0.862700 0.082870,0.012780,0.533700,-0.966400,-0.177000,-0.186200 -0.076380,-0.208200,-0.106600,0.898700,0.436400,-0.044120 0.131700,0.162800,0.208600,-0.035520,0.973800,-0.224400 -0.211200,-0.290800,-0.920900,-0.256300,-0.056270,-0.964900 -0.042270,-0.008629,-0.109600,-0.486800,0.823800,-0.290700 -0.068930,-0.073820,0.015010,0.909100,0.416100,0.020830 0.037020,-0.051240,-0.046140,0.494400,-0.165900,-0.853300 0.063610,0.066910,0.498800,-0.721600,-0.685900,-0.094160 -0.082110,-0.029380,-0.036130,-0.898300,0.415100,-0.144100 -0.081850,-0.164600,0.183600,0.879700,0.466800,-0.090940 -0.021880,-0.236000,-0.641100,-0.002714,-0.978500,0.206000 0.044370,0.083510,0.353800,-0.552400,0.817400,-0.163700 -0.089800,0.031340,0.370900,0.930800,-0.364400,0.028160 0.027620,-0.252300,-0.684400,-0.989200,-0.014520,0.145600 0.057370,-0.048150,0.564000,-0.702200,0.562600,-0.436400 0.064200,-0.092110,-0.278700,-0.851600,-0.480700,0.209300 -0.082020,0.125700,0.104400,0.000000,0.913300,-0.407400 0.045160,0.042380,0.114000,0.835000,-0.526900,0.158600 -0.201900,0.127500,0.108600,0.000000,0.915700,-0.401800 -0.573800,0.127500,0.108600,0.005426,0.910200,-0.414200 0.164100,0.159700,0.196500,0.010150,0.949800,-0.312600 0.858700,-0.156900,0.163400,-0.025460,0.920100,-0.390900 0.151700,0.102500,0.321200,0.768500,-0.630900,0.106800 0.591100,0.130700,0.116000,0.004952,0.916100,-0.400900 -0.025780,-0.272500,-0.411100,-0.398300,-0.917100,0.016700 0.153600,0.127500,0.108600,0.015390,0.898700,-0.438200 -0.820400,-0.123800,0.256300,0.031070,0.980600,-0.193700 -0.070990,-0.052010,-0.156100,-0.828000,0.526400,-0.193300 0.000022,-0.012820,-0.064770,-0.000565,-0.199600,-0.979900 0.019610,0.122800,0.507700,0.724800,0.436100,0.533500 0.089280,0.039050,0.342500,0.834600,0.441100,-0.329800 0.158600,-0.299000,0.330900,-0.898300,-0.436600,0.049510 -0.154500,-0.116200,0.652300,0.366900,-0.253200,0.895100 0.164500,-0.349600,0.299900,-0.236300,-0.964900,0.114500 0.104100,-0.143500,0.258000,-0.029980,0.971200,-0.236400 -0.090210,-0.126900,0.288600,-0.928800,-0.360300,0.087140 -0.158600,-0.173300,0.221200,-0.031940,-0.958000,0.284900 0.188800,-0.303600,0.435500,0.986300,0.069310,0.149500 -0.075990,0.028890,0.157200,0.824300,-0.556000,0.106400 0.094630,-0.149600,-0.126700,0.993300,-0.113700,-0.019360 0.563400,-0.159000,0.175600,-0.023050,0.922500,-0.385300 0.514500,0.138400,0.135800,-0.000026,0.930400,-0.366600 -0.075120,-0.026510,-0.055740,0.863600,-0.470600,0.180900 -0.075430,0.038770,0.185100,-0.796300,0.593600,-0.115800 0.658900,0.123200,0.218800,-0.945400,-0.314100,-0.087360 -0.061980,-0.004810,0.102900,-0.000454,0.210000,0.977700 -0.021870,0.166200,0.223500,-0.000012,0.980900,-0.194700 -0.418100,-0.128000,0.312700,0.012290,0.889200,0.457300 0.196900,0.166200,0.223500,-0.005430,0.976200,-0.216800 -0.047590,-0.159500,0.358500,-0.498700,-0.826600,0.260900 0.063190,0.055390,0.235900,-0.713900,-0.694000,0.093410 0.107100,-0.202900,-0.517400,0.202500,0.954400,0.219500 0.011480,0.076040,0.203400,0.968200,0.250300,-0.003108 0.006562,0.101800,0.343300,-0.201200,0.969100,-0.142500 -0.089380,-0.172300,-0.061070,0.951200,0.308400,-0.006033 0.066540,-0.167600,0.266300,0.718000,-0.671700,0.182600 -0.056510,0.022550,0.097630,0.028560,0.189600,0.981500 -0.033790,-0.036390,-0.198500,0.424600,-0.859700,0.283900 -0.086030,-0.133100,0.321100,-0.939000,-0.060380,0.338600 0.056340,-0.098610,-0.325100,-0.798700,-0.559700,0.220800 -0.025610,-0.273200,-0.498500,-0.466200,-0.884300,-0.025170 0.028940,-0.046400,-0.236600,-0.377500,-0.874700,0.304000 -0.096820,-0.068890,0.393200,0.961600,0.253700,-0.104600 0.034200,-0.016920,0.104400,0.000000,-0.228700,-0.973500 0.070020,-0.210200,-0.378600,0.965300,-0.240900,-0.100500 -0.892800,0.073420,-0.024510,0.000000,-0.997800,-0.066490 0.198800,0.073610,-0.008625,-0.005841,-0.876400,-0.481600 0.088750,0.057850,0.277400,0.995600,-0.067650,0.064560 0.042970,-0.118600,0.474300,0.410500,-0.835200,0.366000 -0.112900,0.065740,0.342600,0.756600,0.597400,-0.265800 0.075320,0.027570,0.547600,-0.942700,-0.297000,-0.151700 0.056310,0.065080,0.544800,-0.707900,-0.692200,-0.140300 0.000325,-0.258400,-0.114300,-0.019180,0.994700,-0.100600 0.096420,-0.139900,0.070260,-0.970100,0.241000,-0.029780 0.184300,-0.274000,0.314100,0.232700,0.724600,-0.648700 0.025680,0.046740,0.098480,-0.632900,0.039220,0.773300 0.071460,-0.166500,-0.367300,-0.993600,-0.088530,0.070060 0.090490,-0.134600,0.201600,-0.946700,0.315600,-0.064790 -0.076980,-0.140500,-0.310400,-0.974400,0.186200,-0.125800 0.226900,-0.199700,0.126300,0.022650,-0.937800,0.346300 0.295400,-0.184700,0.135900,-0.007674,0.868300,-0.496000 0.114100,0.078130,0.020000,-0.634700,-0.530100,-0.562300 0.973400,0.077070,-0.022460,0.003463,0.989300,-0.146100 0.202100,-0.294600,-0.919400,0.039700,-0.999100,0.017030 0.673500,0.073210,-0.002235,0.000000,-0.999000,0.044880 -0.202000,0.104100,0.113300,-0.099660,-0.963800,0.247500 0.196700,-0.307200,0.361900,0.970900,0.232600,-0.056390 0.042300,-0.229400,0.042360,0.460700,-0.876100,0.141900 -0.087400,-0.164500,-0.195800,0.993200,0.104000,0.052360 0.014950,-0.187300,-0.645700,0.427600,0.841900,-0.329100 -0.085410,-0.061710,0.479800,-0.922100,-0.315200,0.224400 -0.016040,-0.056320,-0.284700,-0.197400,0.929000,-0.313100 -0.030620,-0.171600,0.337300,0.321800,0.900200,-0.293500 -0.067730,-0.177500,0.196000,0.878000,0.279000,-0.388900 0.034630,-0.084040,-0.346100,0.470800,0.831500,-0.295100 -0.048500,-0.238100,-0.548900,-0.950900,-0.296600,-0.088120 0.188800,-0.276800,0.317100,0.903700,0.323400,-0.280500 0.082720,-0.009026,0.535900,-0.957100,0.117900,-0.264600 0.085810,0.038670,0.339900,-0.908300,-0.416800,0.035220 0.008584,0.088310,0.481000,0.059080,0.229500,0.971500 0.220600,0.075910,-0.012870,-0.152600,0.001260,-0.988300 0.099030,-0.091000,0.264100,0.980700,-0.181800,0.071960 0.759800,-0.139600,0.279800,0.022930,-0.970400,0.240400 0.175400,0.134500,0.225300,-0.118000,-0.922500,0.367500 -0.574300,-0.168100,0.153000,0.031510,0.908400,-0.416900 0.064660,-0.011930,0.599700,0.853800,-0.299700,0.425800 -0.098460,-0.077090,0.001619,0.990500,-0.122300,0.061980 0.133300,-0.212500,0.394500,0.716200,0.132100,0.685200 -0.159700,0.094190,0.258300,-0.773600,-0.631300,0.055640 -0.061070,0.071950,0.453400,0.671000,-0.740700,-0.033480 -0.005781,-0.264000,-0.181900,0.098780,0.989400,-0.106400 0.190100,0.124300,0.206300,0.767800,-0.630600,0.113200 0.063030,-0.160800,0.223300,-1.000000,-0.001423,-0.003543 -0.054060,-0.247600,-0.282900,0.747000,0.664500,0.020670 -0.663000,0.101400,0.213600,0.880300,0.162100,-0.445800 0.026870,-0.217900,-0.675300,-0.909200,-0.347400,0.229400 -0.662200,-0.067910,0.195900,0.998500,0.015810,-0.052070 -0.066220,-0.183200,0.193100,0.821400,0.483200,-0.303000 -0.032770,0.102200,0.492100,0.205300,-0.934600,0.290300 -0.082030,-0.104200,-0.200900,0.959500,-0.255800,0.117700 -0.047430,-0.234700,-0.017660,-0.529700,-0.843000,0.093740 0.145100,-0.261800,0.293200,0.920400,0.389900,-0.030300 -0.042800,-0.210200,0.143100,0.473000,0.871700,-0.128100 -0.103600,-0.027090,0.344100,0.992400,-0.120300,-0.025230 -0.029130,-0.030600,-0.194400,-0.345200,0.892500,-0.290200 0.131200,-0.167600,0.231800,0.024120,-0.961000,0.275600 -0.360800,-0.163100,0.233300,-0.031850,-0.961300,0.273500 0.366400,0.153700,0.298100,0.000000,-0.924800,0.380500 0.175200,0.184200,0.578400,-0.392900,0.526200,0.754200 -0.093400,-0.093890,0.356400,0.953800,0.284500,-0.096190 0.858300,0.171200,0.261300,0.060450,0.997600,-0.034900 0.661700,-0.100300,0.167500,0.318800,0.352000,0.880000 0.109300,0.088680,0.068110,0.000045,-0.933100,0.359500 0.741900,0.169400,0.301900,-0.005033,0.707600,0.706600 -0.016880,0.000201,-0.105600,0.201200,-0.935500,0.290400 -0.129200,-0.229600,0.229800,0.771800,-0.629200,-0.092430 0.006801,0.096780,0.436100,0.049650,0.164900,0.985100 0.492300,-0.143000,0.224700,-0.011320,0.959900,-0.280100 -0.721800,-0.139000,0.279100,-0.032740,-0.970500,0.239000 0.032500,-0.105500,-0.402800,-0.488700,-0.825200,0.283100 -0.047590,0.021580,0.269700,-0.719200,-0.255800,-0.645900 -0.043900,-0.249700,-0.168400,0.542100,0.838300,-0.057370 0.246300,-0.199200,0.126300,0.024080,-0.938500,0.344500 0.054960,0.089220,0.453800,-0.204100,-0.708000,0.676100 0.112100,-0.199900,0.196300,0.950700,0.257900,-0.172300 0.031740,0.080010,0.299600,0.025140,-0.947000,0.320200 -0.507300,0.074240,0.011230,0.000000,-0.993600,0.112700 -0.067720,-0.184400,0.187500,0.770900,0.604700,-0.200000 0.662600,0.101200,0.213700,0.976100,0.053440,-0.210900 0.558100,-0.140100,0.228500,-0.013340,0.962400,-0.271300 -0.563300,0.076830,-0.015420,0.019040,0.824300,-0.565900 0.306300,-0.163400,0.180500,-0.007778,0.910700,-0.413000 0.639900,-0.155500,0.178600,-0.037890,0.932700,-0.358700 0.069730,0.045080,0.213900,-0.779000,-0.621700,0.081330 -0.093940,-0.120000,0.274100,-0.945000,-0.318900,0.072790 0.022010,-0.190300,0.278100,-0.266700,0.927800,-0.260900 -0.042170,-0.198900,0.211200,0.462100,0.864100,-0.199600 0.992200,0.084830,0.035720,0.903100,0.061650,0.425000 -0.029400,-0.101400,0.516200,-0.293600,-0.847900,0.441300 0.257000,0.096910,0.045990,-0.020350,0.892300,-0.450900 0.202500,-0.161900,0.189900,-0.017920,0.928300,-0.371400 0.218800,0.151600,0.171300,0.025460,0.930100,-0.366500 -0.185900,-0.227500,-0.635400,0.032490,0.978600,-0.203200 0.042200,-0.205600,0.171700,-0.473900,0.866800,-0.155300 0.229700,0.152800,0.175300,0.010350,0.947400,-0.320000 0.055870,0.028280,0.059300,-0.471500,-0.816400,0.333500 0.175000,0.083070,0.052530,0.000051,-0.953100,0.302600 0.154300,0.159800,0.587100,-0.361300,0.580800,0.729500 -0.161800,-0.214700,-0.550500,-0.628300,-0.002892,0.778000 -0.032810,0.100400,0.100400,0.000005,-0.948100,0.317900 -0.546900,0.082430,0.005271,-0.000625,0.957800,-0.287500 0.088320,-0.147100,0.195700,0.933500,-0.352900,0.063510 0.176900,-0.378000,0.301900,-0.646700,-0.499900,-0.576100 -0.661700,0.090280,0.072210,-0.000140,-0.932400,0.361400 0.047740,-0.257700,-0.318100,0.661600,-0.749900,0.000017 -0.661700,0.120500,0.093410,0.000016,0.907200,-0.420800 -0.115300,0.039860,0.217600,-0.154200,0.899900,-0.407900 0.033050,0.083530,0.223600,-0.010640,0.981300,-0.192000 -0.322700,0.087450,0.022050,-0.014860,0.945200,-0.326200 -0.080980,-0.048730,-0.083000,0.902300,-0.390600,0.182500 -0.503100,0.143600,0.260500,0.000000,-0.966200,0.257700 -0.317200,0.144700,0.264500,0.000000,-0.966100,0.258300 0.240900,-0.159600,0.193300,-0.022770,0.935400,-0.352800 -0.085180,0.010080,0.146400,0.908300,-0.408200,0.091980 0.246100,0.167300,0.232300,-0.034890,0.993000,-0.113200 -0.519500,0.080920,0.001399,0.010060,0.958400,-0.285400 -0.060150,0.150400,0.286300,0.000000,-0.966100,0.258200 -0.732800,0.111700,0.138700,0.000000,-0.967000,0.254800 0.125700,-0.147700,0.309800,0.023270,-0.963700,0.265900 -0.080090,-0.200600,-0.121200,0.916700,0.399400,0.007540 0.289800,-0.173400,0.157800,0.002198,0.894200,-0.447600 0.393700,-0.175500,0.184500,0.023220,-0.952400,0.304100 0.117100,-0.213800,0.230600,-0.879300,0.125300,0.459600 -0.056100,0.069400,0.251100,-0.562700,0.817700,-0.121300 -0.259800,-0.284100,-0.874200,-0.501900,-0.864000,-0.039330 -0.093510,-0.091980,0.377700,-0.938600,-0.325600,0.114000 -0.864100,0.084370,0.056500,0.000022,-0.946600,0.322400 -0.114800,-0.336800,0.357700,0.000000,-0.975600,0.219600 -0.120300,-0.287100,-0.883800,0.000000,-0.977800,0.209400 -0.004709,0.004826,-0.103200,-0.066940,0.953500,-0.293800 -0.705500,0.111800,0.075010,-0.020390,0.892300,-0.450900 -0.530600,-0.154500,0.187800,0.031610,0.932300,-0.360300 -0.639800,0.124000,0.100700,-0.010160,0.913600,-0.406500 -0.103900,0.108000,0.067840,-0.020310,0.897200,-0.441200 0.508900,-0.173200,0.183000,0.023870,-0.951000,0.308200 -0.355000,0.107000,0.121400,0.000000,-0.960000,0.279800 -0.530500,0.101700,0.104200,0.000000,-0.951500,0.307600 0.339100,0.101700,0.104200,0.000000,-0.951500,0.307600 0.749400,-0.134000,0.233500,-0.026630,0.969900,-0.242100 -0.453900,0.104400,0.060560,0.000030,0.905300,-0.424700 0.068960,-0.223800,-0.143100,-0.838400,0.544600,-0.022620 0.924000,0.143100,0.147400,0.051240,0.936200,-0.347700 -0.087810,-0.063720,-0.071930,0.946500,-0.294000,0.132900 0.864100,0.107900,0.067920,-0.004949,0.906200,-0.422900 -0.885900,0.094710,0.083960,-0.000026,-0.939200,0.343400 0.158600,0.109700,0.071570,-0.010260,0.887100,-0.461400 -0.432000,0.111800,0.075010,0.010010,0.873300,-0.487200 -0.028450,-0.173300,0.334200,0.276300,0.920200,-0.277300 0.083170,-0.106400,0.393500,-0.893200,0.431100,-0.127900 0.109400,0.106000,0.064290,0.015100,0.888400,-0.458900 0.095250,0.023880,0.381900,0.948400,0.317000,-0.001653 0.082030,0.108000,0.067840,0.020190,0.884400,-0.466200 -0.136900,-0.166700,0.247000,-0.031460,-0.964100,0.263800 -0.071280,-0.221800,-0.106500,-0.832600,-0.550900,0.057030 -0.453900,0.093300,0.080160,-0.000281,-0.937000,0.349400 -0.366400,0.139900,0.246500,0.000000,-0.966800,0.255700 0.076570,0.139900,0.246500,0.000000,-0.966800,0.255700 -0.207700,-0.166000,0.240900,-0.031790,-0.962800,0.268400 0.051260,-0.134700,0.424600,0.518300,-0.791700,0.323400 -0.086390,0.041610,0.414500,-0.910400,0.411700,0.040410 0.421000,-0.193100,0.131300,0.023090,-0.939100,0.342800 -0.295200,-0.199700,0.127400,-0.031680,-0.937400,0.346700 0.918700,-0.185600,0.118400,0.022610,-0.937000,0.348700 0.079770,0.050940,0.311100,0.845000,0.527100,-0.090070 0.035250,-0.227400,0.075170,0.381100,-0.913200,0.144100 0.071510,-0.106300,0.442500,-0.763700,0.592400,-0.256600 0.036270,-0.107700,-0.409400,0.554700,0.783200,-0.281000 -0.203000,-0.355300,0.292400,-0.914100,-0.123200,-0.386400 0.814800,0.172500,0.283400,0.012880,0.999700,0.023000 0.569200,-0.157000,0.179600,-0.028570,0.923400,-0.382900 -0.005006,0.130700,0.116000,0.000015,0.921300,-0.388800 0.760600,0.129100,0.112300,0.000025,0.918000,-0.396500 -0.798400,0.134000,0.123900,0.000000,0.924100,-0.382100 -0.218900,-0.195200,0.125200,0.030330,0.864400,-0.501800 -0.169500,-0.162200,0.259500,-0.032380,-0.965300,0.259000 -0.410100,0.146700,0.272200,0.000000,-0.967400,0.253300 -0.486700,0.115400,0.082310,0.000000,0.900300,-0.435300 0.486200,-0.140500,0.304000,0.023710,-0.973800,0.226200 -0.289400,0.162900,0.208600,0.000000,0.972000,-0.235200 -0.618000,0.116200,0.156700,0.000000,-0.968900,0.247400 0.087960,0.134300,0.225400,0.000000,-0.966800,0.255600 0.071100,0.124000,0.186300,0.000000,-0.966800,0.255700 0.672700,-0.163600,0.158900,-0.037750,0.906600,-0.420300 0.007298,-0.044170,-0.055710,-0.091960,0.250900,0.963600 0.049730,-0.193100,0.223200,0.551400,-0.816300,0.172000 -0.142100,-0.188200,0.175300,-0.032430,-0.949500,0.312200 0.546900,0.150400,0.167500,0.000025,0.945400,-0.326000 -0.021870,0.144700,0.151200,0.015240,0.937900,-0.346500 0.809400,0.100400,0.100400,0.000000,-0.948000,0.318100 0.284400,0.156800,0.188000,0.015220,0.948200,-0.317300 -0.596300,0.075160,-0.019170,0.049660,-0.094870,-0.994300 -0.072860,-0.216200,-0.153600,0.892700,0.450500,-0.008333 -0.008990,0.091740,0.455200,-0.731200,-0.272000,-0.625500 0.016870,-0.341000,0.338800,0.000000,-0.976300,0.216300 -0.005461,-0.292100,-0.907300,0.000000,-0.978500,0.206200 0.290500,0.073130,-0.010150,-0.043640,-0.992800,-0.111600 -0.068880,0.039220,0.146700,-0.729900,0.670800,-0.131800 -0.733300,-0.151100,0.179000,0.032310,0.926100,-0.376000 0.180400,-0.180800,0.184400,0.023230,-0.952100,0.305000 0.262600,-0.201100,0.109100,-0.023360,0.871300,-0.490300 -0.103900,-0.211000,-0.522800,-0.000072,-0.977800,0.209500 -0.191400,-0.265200,-0.817300,0.000000,0.978500,-0.206200 -0.021870,0.052660,0.449000,0.000276,-0.978400,0.206500 0.142200,-0.254800,-0.730600,0.000000,-0.977800,0.209400 -0.131700,-0.203300,0.117100,0.043090,0.858600,-0.510800 -0.012380,-0.277700,-0.737100,-0.739900,-0.661300,-0.123400 0.716900,0.161300,0.204900,-0.015310,0.985900,-0.166800 0.520000,0.167700,0.231700,-0.000025,0.985400,-0.170100 -0.836800,-0.142600,0.191800,0.031580,0.937400,-0.346800 0.399200,0.119300,0.168300,0.000000,-0.967400,0.253400 -0.628900,0.118200,0.164500,0.000000,-0.966800,0.255600 0.082490,0.107000,0.121400,0.000000,-0.960000,0.279800 0.585600,0.108100,0.125200,0.000000,-0.962500,0.271300 -0.415800,-0.143000,0.235600,0.043280,0.948100,-0.315100 -0.072300,-0.070940,-0.197300,-0.878900,0.442800,-0.177200 -0.273400,0.110000,0.071390,0.009988,0.899500,-0.436800 -0.026000,0.089580,0.403000,0.350000,-0.936000,0.037040 0.067890,-0.229200,-0.148600,0.803500,-0.594600,0.030160 0.558300,0.080340,0.043350,0.000012,-0.964000,0.265900 -0.825300,0.079330,0.039540,0.000000,-0.970200,0.242400 -0.140700,0.076530,0.252500,0.841200,0.369900,0.394400 0.070810,-0.204700,0.053470,0.763400,-0.635400,0.115700 -0.061140,0.037160,0.113200,0.670800,-0.725500,0.153700 -0.105600,-0.057210,0.201500,-0.998300,0.057180,-0.011220 0.015700,-0.276800,-0.564200,0.307800,-0.951100,0.026100 -0.322700,0.145700,0.268300,0.000000,-0.966700,0.255700 -0.328000,-0.161600,0.242300,-0.032290,-0.962400,0.269800 -0.218700,0.138900,0.242700,0.000023,-0.966100,0.258100 0.847700,0.125000,0.190100,-0.000009,-0.967400,0.253200 0.005473,0.145700,0.268300,0.000000,-0.966700,0.255700 0.415600,0.145700,0.268300,0.000000,-0.966700,0.255700 0.037050,0.077200,0.196500,0.301200,0.936600,-0.178900 0.062790,-0.042990,-0.158700,0.750100,0.627400,-0.209100 -0.128000,0.044450,0.191800,-0.759600,-0.628900,0.165800 0.011730,-0.268500,-0.241300,-0.160800,0.983200,-0.086650 0.084550,-0.050610,-0.066910,-0.929800,-0.345900,0.125700 0.061250,-0.226200,-0.031160,0.690800,-0.721000,0.054460 0.475800,0.073080,-0.006521,-0.000087,-0.999800,0.021110 -0.048760,-0.089130,-0.011220,-0.000496,-0.978700,0.205500 -0.317000,-0.199200,0.113000,0.024900,0.856500,-0.515500 -0.072370,0.058240,0.469500,0.837300,-0.544000,-0.054900 0.098440,-0.265300,-0.813200,0.000000,0.977600,-0.210500 -0.090580,-0.302600,0.396700,0.001064,1.000000,0.000608 0.136700,-0.316600,0.339400,0.000000,0.900800,-0.434200 -0.929300,-0.149700,0.213400,-0.238300,-0.880200,0.410500 -0.893100,0.163200,0.219600,-0.835800,0.280500,0.472000 -0.037980,0.040130,0.058690,-0.125400,0.193100,-0.973100 0.005466,-0.343200,0.301300,-0.020520,0.728000,-0.685300 0.122400,-0.192500,0.381000,-0.479300,0.022250,-0.877300 -0.120400,-0.155200,0.226900,0.023220,0.962200,-0.271500 -0.098420,-0.275100,-0.826800,0.000000,-0.979100,0.203300 0.016420,-0.222400,-0.609200,0.030390,0.978100,-0.206000 -0.015940,-0.227000,-0.636000,-0.000160,0.978600,-0.205800 -0.024720,-0.268000,-0.620800,0.758200,0.650400,0.045930 0.213500,0.113500,0.078900,-0.009935,0.901200,-0.433400 -0.052800,-0.212900,0.102500,-0.574500,-0.807400,0.134500 -0.028560,-0.034170,-0.198800,0.343700,-0.894500,0.285900 0.125700,-0.224900,0.243100,0.880600,0.470300,-0.057290 0.005590,-0.109100,-0.439400,-0.091270,-0.944600,0.315200 -0.777100,-0.116700,0.302000,0.044760,0.989100,-0.140000 -0.042620,-0.083660,-0.321500,0.588700,-0.759200,0.277400 0.048800,-0.204700,-0.563400,0.919100,0.330900,-0.214100 -0.075720,-0.081120,-0.192600,0.912700,-0.376600,0.158400 -0.098300,-0.057230,0.414000,-0.969000,-0.177400,0.172100 0.010940,0.122100,0.097070,-0.000148,0.917700,-0.397200 0.045340,-0.022970,-0.139200,-0.510400,-0.812700,0.281200 -0.021930,-0.209300,-0.677200,0.752500,-0.565900,0.337000 0.080040,-0.159400,0.196300,-0.705900,0.648200,-0.285700 -0.094600,-0.174900,0.153100,0.583700,-0.787400,-0.198300 0.023660,-0.023770,0.633700,0.326400,-0.535900,0.778600 0.714600,-0.121300,0.312600,-0.007660,0.786800,0.617200 0.020780,-0.029020,-0.058170,0.297800,-0.194500,-0.934600 -0.021590,-0.274200,-0.598900,-0.540000,-0.841700,0.001464 -0.031210,-0.139400,0.431100,0.299000,0.877600,-0.374600 -0.082600,0.043750,0.469200,-0.909700,0.411600,0.054900 0.045010,-0.260000,-0.323600,0.618200,-0.786000,0.004068 0.840800,0.167000,0.280500,0.466600,0.255500,0.846700 0.045100,-0.148700,0.394700,0.452900,-0.845200,0.283700 -0.289800,-0.166300,0.230400,-0.033070,-0.960900,0.275100 0.067330,-0.217500,-0.006607,0.732100,-0.676300,0.081940 0.924300,-0.170200,0.133100,-0.027550,0.853400,-0.520500 -0.015630,-0.203300,-0.677400,0.496100,-0.784400,0.372400 -0.137000,-0.209700,-0.532200,-0.540300,0.001176,0.841500 0.064670,-0.040150,0.566200,0.750300,-0.511300,0.419100 -0.917200,0.150500,0.169100,-0.416300,0.903100,-0.105600 0.055400,-0.157000,-0.465500,0.916800,0.341200,-0.207600 0.005993,-0.023820,-0.062090,0.101000,-0.206500,-0.973200 0.087990,-0.039080,0.499600,0.966900,-0.189300,0.170800 0.124500,0.082480,0.009197,-0.386200,0.752900,-0.532900 -0.022150,0.084670,0.242000,0.679800,0.715500,-0.161100 0.045350,0.047060,0.093540,0.573900,0.798900,-0.180000 0.092040,-0.084930,0.392900,-0.939000,0.330100,-0.096530 -0.081490,-0.092180,-0.181600,0.941300,-0.307600,0.139100 -0.060120,0.018540,0.098500,0.110500,0.122700,0.986300 -0.104400,-0.064660,0.313900,-0.992200,-0.121400,0.027880 0.066280,-0.041350,0.555900,-0.819300,0.436100,-0.372300 0.053770,-0.123800,0.440400,-0.535200,0.777200,-0.331000 -0.662300,-0.106200,0.190500,0.996900,0.000548,-0.079080 -0.093560,-0.173200,0.147500,0.072890,-0.952700,-0.295100 -0.092080,-0.089030,0.397400,-0.930100,-0.346400,0.122500 -0.083730,-0.166800,0.130600,0.930800,0.356000,-0.083070 -0.070500,-0.010700,0.573400,0.727800,0.074660,-0.681700 -0.141100,0.075330,0.241800,0.539800,0.645900,-0.539900 -0.098610,0.046500,0.358100,-0.735100,-0.665100,0.131400 0.156600,-0.293100,0.336100,-0.972000,-0.113800,0.205600 -0.086640,-0.007207,0.086530,0.915400,-0.386600,0.112200 0.085260,-0.044570,-0.045240,-0.927500,-0.350900,0.128900 -0.071980,-0.055290,0.534100,-0.835500,-0.396100,0.381000 -0.175000,-0.140600,0.318000,0.003301,0.262900,0.964800 0.020680,0.082580,0.459100,0.546500,-0.799600,-0.249000 0.013830,0.117200,0.424500,0.712600,0.663500,-0.228000 0.023230,-0.187200,-0.633300,0.597600,0.733000,-0.325000 -0.028170,-0.267000,-0.301600,0.388700,0.920900,-0.027880 0.181300,-0.367300,0.434300,-0.017170,-0.523300,0.852000 0.088360,-0.005386,0.090410,0.921900,0.383900,-0.051910 0.116900,0.153500,0.570800,-0.462900,0.642200,0.611000 0.077560,0.038190,0.527000,0.911300,0.365300,0.189700 -0.083370,0.083470,0.053060,0.179400,-0.979300,0.093590 -0.042260,-0.252600,-0.160200,-0.517800,-0.853200,0.062660 -0.087630,-0.158900,0.129600,0.910400,0.400800,-0.102600 0.033010,0.046630,0.063620,-0.184800,0.921000,-0.343000 -0.098420,-0.014420,0.220500,0.970600,-0.231900,0.064700 0.084610,-0.074420,-0.137200,0.921300,0.356400,-0.155500 0.143200,0.095260,0.334600,0.803400,-0.357200,0.476400 0.097420,-0.080590,0.283900,-0.985700,0.164300,-0.036920 0.019030,0.048750,0.301500,0.808600,-0.471500,0.351900 -0.091820,0.003264,0.474800,0.973900,-0.193800,-0.118300 0.853100,0.076090,-0.027520,0.013560,0.972700,-0.231600 -0.056880,-0.140800,-0.426700,-0.901100,0.387100,-0.195400 -0.076310,-0.132700,0.350300,0.785500,0.590200,-0.186000 0.087000,0.060240,0.284000,0.858600,-0.221000,0.462600 -0.086330,0.038920,0.343500,0.909900,-0.414600,-0.009540 0.011730,-0.074240,-0.334900,-0.177900,-0.926600,0.331300 -0.071050,-0.219800,-0.239200,0.920000,0.391800,0.010710 0.057430,0.096610,0.423600,-0.044150,0.981500,-0.186500 -0.092690,-0.085770,0.401900,-0.934400,-0.334200,0.123600 -0.082790,-0.074370,-0.147900,-0.945700,0.295000,-0.136500 0.026330,-0.259800,-0.689600,0.896500,-0.423500,-0.130200 0.265400,-0.260300,-0.777800,0.991800,0.061130,0.112200 0.159400,-0.284200,0.359700,0.252800,0.465100,-0.848400 0.242500,-0.133000,0.316100,-0.007929,0.689000,0.724700 0.156800,0.080800,0.162100,-0.684400,0.725900,-0.068170 -0.828700,-0.144500,0.187600,0.031890,0.933900,-0.356000 -0.087970,0.009124,0.149600,-0.919700,0.386100,-0.071270 0.092380,-0.136200,-0.149600,-0.996000,-0.028520,0.084160 -0.036430,0.060390,0.480000,-0.556200,-0.691600,0.460700 0.079240,-0.022880,-0.023280,-0.880700,-0.448500,0.152300 -0.082150,-0.111600,-0.227100,-0.961000,0.240000,-0.137700 0.064960,0.013280,0.014060,-0.538700,0.756000,-0.371800 0.194100,-0.156000,0.268900,0.022670,-0.967700,0.251100 0.203600,0.220000,0.566300,-0.289300,0.526900,0.799200 0.117600,0.110100,0.601900,0.491700,-0.653800,-0.575100 -0.039320,-0.216500,0.114800,0.422600,0.895200,-0.141700 0.828600,-0.165700,0.145700,-0.022170,0.887700,-0.459900 -0.076270,-0.186800,0.093270,0.826300,0.553600,-0.103600 -0.092450,-0.052660,-0.022880,-0.952900,0.283600,-0.107100 -0.066790,-0.226800,-0.146700,0.814300,0.580400,0.005765 0.039570,-0.092620,0.520000,-0.403500,0.799100,-0.445600 0.057150,-0.162000,0.311300,-0.684400,0.708200,-0.173500 0.044300,-0.259300,-0.274300,0.581800,-0.812600,0.034690 -0.168400,-0.150500,0.649200,0.431900,-0.208300,0.877500 -0.045520,-0.243400,-0.081530,-0.515400,-0.850600,0.103900 0.097980,-0.058720,0.406600,-0.969500,0.211100,-0.124300 -0.037300,-0.118100,0.475100,0.380600,0.854800,-0.352700 0.025820,-0.083380,0.545300,-0.269000,0.799400,-0.537200 0.022600,-0.028540,-0.188300,-0.258000,-0.924300,0.281400 0.047550,-0.199400,0.188000,-0.558600,0.812500,-0.166500 0.036250,-0.187100,-0.586100,-0.863300,-0.451500,0.225600 0.054520,-0.241600,-0.162100,-0.690600,0.721400,-0.051320 -0.007867,0.003677,-0.106500,-0.099080,0.948300,-0.301400 -0.033240,-0.199700,-0.619300,0.908400,-0.355000,0.221100 -0.035010,-0.164400,-0.543100,0.719200,-0.636400,0.278600 -0.663900,0.044650,0.107300,-0.632700,-0.329500,-0.700800 -0.131800,0.050040,0.192500,-0.694800,-0.198600,0.691300 0.011380,0.092740,0.496000,0.181100,-0.273600,-0.944600 0.082130,0.032320,0.238900,0.898100,0.437300,-0.047410 0.011530,-0.106800,-0.430200,-0.196000,-0.919900,0.339600 0.019150,0.074930,0.389500,0.521100,-0.500500,0.691300 0.059640,-0.057720,-0.205200,-0.727300,-0.647800,0.226700 -0.036960,-0.083470,-0.332600,0.503800,-0.814900,0.286400 0.014450,0.061010,0.107400,0.292800,0.942600,-0.160200 0.146000,-0.249400,0.369000,0.608100,0.449200,-0.654500 -0.157400,-0.273800,0.295000,0.892500,-0.439100,0.102900 0.098210,-0.120700,0.399800,0.873400,0.467100,-0.138100 0.049220,-0.081130,0.020250,-0.000024,0.999100,-0.043090 -0.080630,-0.167400,0.179400,0.866200,0.495900,-0.061460 -0.082170,0.038950,0.472100,0.922300,-0.385800,-0.023530 0.929700,0.076090,-0.027520,-0.000001,0.972800,-0.231700 -0.083220,-0.178500,0.065810,0.902100,0.425200,-0.073740 -0.022570,0.115500,0.459900,-0.669700,0.733100,-0.118700 -0.039710,-0.096440,0.512900,0.401700,0.812700,-0.422100 0.055900,-0.199700,0.168000,0.607500,-0.781400,0.142300 -0.051780,-0.244300,-0.438600,0.892100,0.449400,0.046920 0.930000,0.141300,0.148600,0.811200,0.504400,0.295900 -0.081740,0.052940,0.371000,-0.660800,0.748800,-0.052350 -0.076560,-0.318500,0.411200,0.000086,-0.124800,0.992200 -0.082650,0.000638,0.077980,0.914100,-0.399400,0.069860 -0.153200,-0.209200,0.106400,0.029740,0.777400,-0.628300 -0.050400,-0.072410,-0.278900,-0.652000,0.713200,-0.257300 -0.032420,-0.137500,-0.486100,0.562900,-0.754900,0.336500 0.659600,-0.038350,0.147700,-0.927600,0.178700,0.328200 0.070960,-0.195400,0.110800,0.759700,-0.641200,0.108000 -0.082040,-0.200500,-0.123400,-0.929300,-0.369400,0.004686 0.118300,0.136100,0.579600,0.425100,-0.556600,-0.713700 -0.070140,0.051010,0.233800,0.753600,-0.649600,0.100500 0.025380,0.115000,0.453800,0.369200,0.875000,-0.313200 0.011910,-0.236100,0.048990,-0.144500,0.973400,-0.177700 0.000726,-0.268100,-0.493400,0.711000,0.637400,0.297000 -0.002490,-0.346200,-0.666900,-0.887200,0.362000,0.286100 -0.088770,-0.165700,0.061190,0.957900,0.284100,-0.041790 0.065400,-0.029520,-0.116200,0.722400,0.649200,-0.237900 0.026690,-0.231200,-0.662600,-0.657100,0.739700,-0.145000 -0.042300,-0.141600,0.419000,-0.416900,-0.851200,0.318800 0.162300,-0.136400,0.317300,-0.012910,0.360800,0.932500 -0.099460,-0.131500,0.088120,-0.976900,-0.211900,0.026130 0.095940,-0.028890,0.135700,-0.971300,-0.236500,0.027050 -0.003559,-0.300100,-0.953900,-0.027330,-0.668100,-0.743500 0.054550,-0.094880,-0.329600,0.743100,0.628900,-0.228800 -0.026630,-0.270500,-0.491400,0.472200,0.880400,0.042990 -0.066700,-0.177900,-0.420800,-0.975000,0.170100,-0.142900 -0.098040,-0.128400,0.406300,0.900100,-0.427300,0.084990 -0.196500,-0.345700,0.443500,0.051990,-0.243700,0.968500 0.667200,-0.197400,0.103300,0.018110,-0.960900,0.276200 -0.080190,-0.088390,-0.182000,0.931600,-0.331200,0.149800 -0.063670,-0.037950,-0.014970,0.877400,0.210700,0.430900 0.710900,-0.130900,0.313500,0.013400,-0.540400,0.841300 -0.098210,-0.090900,-0.025710,0.995200,-0.071340,0.067130 -0.058290,-0.031960,-0.142800,-0.669100,0.702200,-0.243300 -0.042540,0.086340,0.463000,-0.596200,0.791200,0.136500 -0.758800,0.074630,-0.027320,0.039930,-0.353500,-0.934600 0.147900,-0.253700,0.385600,0.225400,-0.146100,0.963200 0.079090,-0.195000,0.010180,-0.879900,0.470600,-0.065420 -0.040010,-0.251400,-0.159300,0.494700,0.866600,-0.064760 0.010540,-0.072690,-0.337500,0.138500,0.938900,-0.315100 0.082050,-0.022560,-0.018430,0.887000,0.435700,-0.153000 -0.061020,-0.136500,-0.399900,-0.913200,0.354300,-0.201400 -0.046390,-0.250600,-0.168800,-0.565000,-0.823200,0.056510 -0.188700,0.139200,0.247800,0.390500,-0.611900,0.687800 0.042720,-0.214600,0.117100,-0.472000,0.872000,-0.129500 0.079200,-0.003998,0.021430,0.847300,0.515500,-0.127800 -0.076980,-0.171600,0.187100,0.773400,0.586100,-0.241700 -0.087000,-0.078490,-0.126000,-0.950300,0.279900,-0.136600 0.099560,-0.121100,0.140900,0.974900,-0.219600,0.036900 0.082290,-0.126300,-0.253300,0.976700,0.181000,-0.115300 0.010950,-0.206400,-0.500600,0.000000,-0.972000,0.235000 0.043000,-0.193200,0.232200,-0.475900,0.862100,-0.173900 -0.093430,-0.146100,0.148300,-0.944400,-0.326500,0.039330 -0.054650,-0.027130,0.623100,-0.839300,0.171000,-0.516100 0.082650,-0.097370,0.430400,0.826600,-0.470700,0.308500 -0.075210,-0.028860,-0.061350,0.863600,-0.470000,0.182600 0.070520,-0.047760,-0.136600,-0.825000,-0.525500,0.208100 -0.135900,-0.133900,0.638200,0.458900,-0.255600,0.850900 0.076380,-0.208800,-0.104600,-0.899500,0.436200,-0.024580 0.088820,0.012870,0.512400,0.980200,0.154000,0.124400 -0.046190,0.052500,0.376700,0.960300,0.040760,-0.275900 0.100500,-0.056290,0.403400,0.968900,-0.226500,0.099270 -0.023560,-0.253800,-0.087380,-0.281800,-0.951400,0.124100 0.093660,-0.086800,0.392500,0.940300,-0.326700,0.095570 0.025710,-0.029000,-0.186600,-0.316400,-0.907200,0.277100 -0.847900,0.166200,0.277100,-0.533900,0.221400,0.816100 -0.149600,-0.140700,0.638500,-0.445800,0.220800,-0.867500 -0.071490,-0.211300,0.000196,-0.790300,-0.608800,0.069260 0.074960,-0.212800,-0.143100,-0.899900,0.436100,-0.003681 -0.075120,-0.137000,0.341900,0.798700,0.576500,-0.172300 -0.013930,-0.259600,-0.117000,-0.163300,-0.982800,0.086270 -0.029160,0.106700,0.509000,-0.302200,-0.553600,0.776000 -0.032630,-0.265100,-0.571400,-0.757300,-0.651700,-0.040940 -0.005103,-0.099130,0.529400,-0.056520,-0.875300,0.480300 0.987900,0.092800,0.037270,0.210900,0.949700,-0.231400 0.036900,-0.264200,-0.411100,-0.588700,0.808300,-0.009093 0.021720,-0.198500,0.256000,0.259100,-0.933700,0.247000 0.002539,-0.183300,0.323400,0.053710,-0.956100,0.288200 -0.063840,-0.196000,0.152700,-0.680000,-0.725500,0.105900 0.101600,0.027430,0.217400,-0.778900,0.623100,-0.071420 -0.596100,-0.198300,0.103400,-0.039690,-0.979000,0.200100 -0.084970,0.012910,0.136000,-0.899900,0.425700,-0.094410 -0.034580,-0.172000,0.338700,-0.360000,-0.889600,0.281200 0.050550,-0.242400,-0.482400,-0.918200,0.390800,0.063830 -0.059330,-0.160600,0.320900,0.627800,0.743300,-0.230900 -0.098890,-0.122100,0.104000,0.988800,0.149100,-0.004425 -0.087190,-0.085360,0.431500,-0.911200,-0.361500,0.197600 0.081550,-0.023420,-0.023440,0.889100,0.446900,-0.099170 -0.038280,-0.203700,-0.497500,-0.015170,-0.061620,0.998000 0.158800,-0.286700,0.359100,-0.098970,0.116600,-0.988200 0.067300,-0.221800,-0.082740,-0.781200,0.621900,-0.054420 0.051440,-0.250000,-0.372500,-0.790900,0.611600,0.020170 -0.002895,-0.344500,-0.603300,-0.629600,-0.626800,0.459000 -0.080840,-0.116100,-0.231300,0.945300,-0.280200,0.166800 0.044790,-0.154100,0.371600,-0.466700,0.838400,-0.281400 -0.173700,0.121800,0.299300,0.042740,-0.701900,-0.711000 -0.022680,-0.213300,0.174600,0.238700,0.960900,-0.140000 -0.053530,-0.089020,0.510000,0.572500,0.712700,-0.405300 -0.009554,-0.019710,0.105500,0.000000,-0.281900,0.959500 0.045940,-0.256400,-0.317700,-0.658100,0.753000,0.001035 -0.063770,-0.216400,-0.400500,0.972700,0.222100,0.067240 0.099720,-0.111900,0.135800,-0.987200,0.152900,-0.044790 -0.070440,-0.074440,0.021150,-0.813500,-0.030350,0.580700 0.042610,-0.141600,0.419400,0.412300,-0.855100,0.314400 -0.065250,-0.080340,-0.242500,0.867400,-0.455000,0.201300 0.202400,0.077590,-0.009147,-0.017670,0.727600,-0.685800 -0.081880,-0.154100,-0.271400,0.990300,-0.095020,0.101500 -0.077080,-0.016920,-0.027660,-0.847000,0.504400,-0.168000 -0.085840,0.003427,0.524900,0.973300,-0.070370,-0.218500 -0.010270,-0.147100,-0.541400,-0.413000,0.850100,-0.326800 -0.169300,-0.128200,0.654600,0.157400,-0.062930,0.985500 -0.076910,-0.205500,-0.021940,-0.850900,-0.522900,0.049720 0.101100,-0.122100,0.113800,0.979100,-0.196700,0.051250 0.102800,-0.067820,0.245100,0.994800,-0.080550,0.062430 -0.020840,0.107800,0.419900,-0.356400,0.925500,-0.128300 -0.089890,-0.063400,-0.071690,-0.949700,0.293000,-0.110400 -0.093330,-0.145900,0.153000,-0.943800,-0.328300,0.038600 -0.103400,-0.089820,0.037370,-0.998000,0.051900,-0.036160 0.056430,-0.244300,-0.236000,-0.736200,0.676100,-0.029730 0.070040,0.009931,0.004690,0.212600,0.924100,-0.317600 -0.077270,-0.059310,0.514100,-0.877300,-0.407200,0.254000 -0.021880,0.053370,0.444000,-0.076690,0.980700,-0.179800 -0.083230,0.002411,0.075690,-0.897100,0.427600,-0.111300 0.099510,-0.124700,0.415700,0.743400,0.026610,0.668300 0.164900,-0.217200,-0.553300,0.237400,-0.884200,0.402400 -0.001490,-0.267900,-0.492800,-0.061280,0.923300,0.379100 ================================================ FILE: visualization/bed_0001.txt ================================================ -0.542300,-0.123700,0.526500,-0.992000,-0.126300,0.000012 0.569300,-0.228200,-0.783900,0.938000,-0.003276,-0.346800 0.570000,0.357500,0.734500,0.373500,0.478900,0.794500 -0.571500,-0.177900,-0.635000,-1.000000,0.000000,0.000000 0.236800,-0.186000,0.058510,0.000000,-1.000000,0.000000 0.572400,-0.395500,0.701100,0.724000,-0.689800,-0.002073 -0.109900,0.363600,0.719600,0.000000,0.955700,-0.294500 0.025390,-0.003331,-0.525100,0.000000,1.000000,0.000000 -0.389000,-0.003331,-0.068360,0.000000,1.000000,0.000000 -0.033820,-0.380900,0.715800,0.000000,0.005438,1.000000 0.528500,-0.010460,-0.322100,0.913900,0.405900,0.000014 0.236800,0.125600,0.447500,0.013190,0.999900,0.002134 -0.575500,0.302400,0.740500,-0.838000,0.036570,0.544500 -0.203000,0.113600,0.321500,-0.006586,0.984500,-0.175300 0.550500,-0.152600,0.346800,0.219300,0.975700,0.000009 -0.177600,-0.228700,-0.797100,0.000000,-0.013670,-0.999900 -0.219900,-0.025700,0.715800,0.000000,0.000059,1.000000 -0.059190,-0.186000,-0.186800,0.000000,-1.000000,0.000000 0.490600,-0.017260,0.715800,0.000000,-0.005638,1.000000 0.025390,-0.186000,0.396800,0.000000,-1.000000,0.000000 -0.571400,-0.235100,0.160000,-0.986900,-0.161200,0.000000 0.194500,-0.203300,-0.797100,0.000000,0.000000,-1.000000 -0.321400,-0.003331,-0.423600,0.000000,1.000000,0.000000 -0.397500,-0.398600,0.709100,0.000000,-0.969400,0.245500 -0.558200,-0.240300,-0.271300,-0.011660,-0.999900,0.000000 0.564600,-0.239900,-0.059180,0.140000,-0.990200,0.000000 0.152200,-0.084910,0.715800,0.000000,0.000000,1.000000 0.228400,0.295600,0.742500,0.000000,0.074530,0.997200 -0.194500,-0.186000,0.143100,0.000000,-1.000000,0.000000 0.296000,-0.186000,-0.474300,0.000000,-1.000000,0.000000 0.211500,-0.003331,-0.203700,0.000000,1.000000,0.000000 -0.496600,0.050500,0.270500,-0.986600,0.002881,-0.163300 0.270700,-0.398600,0.709100,0.000000,-0.969400,0.245500 0.473600,-0.003331,0.100800,0.000000,1.000000,0.000000 -0.346800,-0.003331,-0.719600,0.000000,1.000000,-0.000043 -0.262200,-0.186000,0.447600,0.000000,-1.000000,0.000000 0.380600,-0.003331,-0.694200,0.000000,1.000000,0.000000 0.008471,-0.003331,0.041590,0.000000,1.000000,0.000000 0.304500,-0.186000,0.489900,0.000000,-1.000000,0.000000 -0.033970,0.102900,0.551900,0.884600,0.466300,0.004006 -0.406000,0.116600,0.540400,0.000000,0.988600,0.150800 0.570500,-0.211800,-0.508200,1.000000,0.000000,0.000000 -0.169100,-0.186000,-0.542000,0.000000,-1.000000,0.000000 0.489800,0.077250,0.467300,0.951400,0.308000,0.000000 0.177600,-0.003331,0.236100,0.000000,1.000000,0.000000 -0.312900,-0.186000,-0.237500,0.000000,-1.000000,0.000000 -0.566100,0.040120,0.718300,0.027130,-0.246300,0.968800 -0.329800,0.244800,0.744300,0.000000,0.007220,1.000000 -0.452700,-0.383100,-0.708400,0.844000,0.162600,-0.511100 -0.076110,-0.007427,-0.753200,0.000000,0.545900,-0.837800 0.372200,-0.186000,-0.237500,0.000000,-1.000000,0.000000 -0.522100,-0.002890,-0.279800,-0.209900,0.977700,0.000000 0.084590,-0.186000,-0.372800,0.000000,-1.000000,0.000000 -0.109900,-0.003331,-0.330500,0.000000,1.000000,0.000000 0.541600,-0.203300,0.582900,-1.000000,0.000000,0.000000 -0.093020,-0.186000,0.616700,0.000000,-1.000000,0.000000 0.346800,-0.186000,0.261500,0.000000,-1.000000,0.000000 -0.522200,-0.185400,-0.051440,-0.328500,-0.944500,0.000000 -0.321400,-0.003331,0.143100,0.000000,1.000000,0.000000 0.439800,-0.003331,-0.119100,0.000000,1.000000,0.000000 -0.169100,-0.003331,-0.093730,0.000000,1.000000,0.000000 -0.380600,-0.177900,0.715800,0.000000,0.000000,1.000000 -0.439800,-0.186000,-0.457400,0.000000,-1.000000,0.000000 0.025390,-0.186000,0.176900,0.000000,-1.000000,0.000000 0.016930,-0.186000,-0.668900,0.000000,-1.000000,0.000000 0.287600,0.085510,0.729200,-0.000078,-0.246200,0.969200 0.363700,-0.203300,0.715800,0.000000,0.000000,1.000000 0.042300,0.185700,0.742800,0.000000,-0.088280,0.996100 0.445800,-0.376900,-0.692600,-0.841800,-0.451900,0.295300 -0.380600,-0.186000,0.270000,0.000000,-1.000000,0.000000 0.135300,-0.003332,-0.728000,0.000000,0.999800,0.019670 0.564600,-0.239900,0.152300,0.140000,-0.990200,0.000000 0.019100,0.083180,0.346100,-0.913300,0.407300,0.000000 -0.389000,-0.203300,-0.797100,0.000000,0.000000,-1.000000 -0.570500,-0.265600,0.714900,-0.810800,-0.002218,0.585300 -0.507400,-0.003332,-0.533500,0.019630,0.999800,0.000000 0.570500,-0.211800,-0.296700,1.000000,0.000000,0.000000 0.448300,0.202300,0.678400,0.000000,0.112600,-0.993600 0.203000,-0.003331,-0.423600,0.000000,1.000000,0.000000 0.507500,-0.003332,-0.525100,-0.019460,0.999800,0.000000 0.406700,0.104000,0.284300,0.000000,0.761400,-0.648300 0.135300,-0.186000,-0.144500,0.000000,-1.000000,0.000000 -0.245300,-0.186000,-0.051440,0.000000,-1.000000,0.000000 0.016930,-0.003331,-0.169800,0.000000,1.000000,0.000000 -0.545000,-0.239200,0.363000,0.546100,-0.837700,-0.000073 0.219900,-0.003331,-0.000695,0.000000,1.000000,0.000000 -0.168400,0.164400,0.675100,0.000000,0.060440,-0.998200 -0.536700,-0.035470,0.066970,-0.969400,0.245300,0.000000 -0.535900,-0.041380,-0.763300,-0.551300,0.241800,-0.798500 0.338300,-0.186000,-0.660400,0.000000,-1.000000,0.000000 -0.019720,-0.004591,0.713900,0.000000,0.695000,0.719000 -0.194500,-0.003331,-0.584300,0.000000,1.000000,0.000000 -0.135300,-0.003331,0.176900,0.000000,1.000000,0.000000 -0.211400,-0.330200,0.677900,0.000000,0.000000,-1.000000 0.126900,-0.271000,0.715800,0.000000,0.000059,1.000000 -0.008443,-0.186000,-0.009150,0.000000,-1.000000,0.000000 -0.296000,-0.003331,-0.237500,0.000000,1.000000,0.000000 -0.389000,0.074310,0.724400,0.000047,0.220400,-0.975400 0.118400,-0.186000,0.557500,0.000000,-1.000000,0.000000 -0.177600,-0.186000,-0.355900,0.000000,-1.000000,0.000000 0.152200,0.082300,0.612900,0.006501,0.386800,0.922100 0.389100,-0.186000,-0.059900,0.000000,-1.000000,0.000000 0.542800,-0.077020,-0.685800,0.996000,0.089470,-0.000003 -0.389000,-0.186000,0.092340,0.000000,-1.000000,0.000000 0.067690,0.363600,0.719600,0.000000,0.955700,-0.294500 -0.355200,-0.186000,-0.626600,0.000000,-1.000000,0.000000 -0.126900,-0.186000,0.303800,0.000000,-1.000000,0.000000 0.397500,0.364000,0.726500,0.000000,0.993600,0.112600 0.346800,-0.003331,-0.305200,0.000000,1.000000,0.000000 -0.558800,-0.231500,-0.794800,-0.436300,-0.024870,-0.899400 0.186100,-0.186000,0.312200,0.000000,-1.000000,0.000000 0.253700,-0.003331,-0.584300,0.000000,1.000000,0.000000 -0.488800,0.008110,0.439100,-0.976400,0.216000,0.006446 0.126900,-0.186000,-0.533500,0.000000,-1.000000,0.000000 -0.253700,0.123000,0.481100,-0.013220,0.998200,0.058530 0.526100,-0.005332,0.267100,0.740400,0.672100,-0.000009 0.448300,-0.186000,-0.406700,0.000000,-1.000000,0.000000 0.542400,-0.117700,-0.169800,0.994400,-0.105200,0.009384 0.304500,-0.003331,0.134600,0.000000,1.000000,0.000000 -0.397500,-0.186000,0.549100,0.000000,-1.000000,0.000000 0.084590,-0.003331,-0.313600,0.000000,1.000000,0.000000 -0.538600,-0.043310,-0.119100,-0.977300,0.212100,0.000000 -0.499000,0.177800,0.678100,0.000000,-0.081230,0.996700 -0.380600,0.118000,0.352300,0.000459,0.994100,-0.108400 0.329200,0.110800,0.580200,0.000000,0.982900,0.183900 0.422900,-0.355500,0.677900,0.000000,0.000000,-1.000000 0.414400,-0.186400,-0.797100,0.000000,0.000000,-1.000000 0.488000,-0.235400,-0.643000,-0.691800,0.179100,0.699500 0.363700,-0.003331,-0.465900,0.000000,1.000000,0.000000 0.422900,-0.186000,0.117700,0.000000,-1.000000,0.000000 0.541200,-0.063740,0.503900,0.991200,0.132100,0.000000 0.573300,0.118100,0.709700,-0.998800,0.022200,-0.042690 0.544100,-0.093450,-0.017610,0.999900,-0.016240,0.000000 0.025390,-0.003331,0.193800,0.000000,1.000000,0.000000 -0.544100,-0.093450,0.253000,-1.000000,0.004023,-0.000001 -0.245300,-0.186000,0.625200,0.000000,-1.000000,0.000000 -0.422900,0.364100,0.726300,0.000000,0.995600,0.094150 -0.050730,-0.186000,-0.440500,0.000000,-1.000000,0.000000 0.228400,-0.186000,-0.330500,0.000000,-1.000000,0.000000 -0.564700,-0.108300,0.715800,-0.000094,0.000000,1.000000 -0.228300,-0.076590,-0.769100,0.000000,0.074970,-0.997200 -0.355200,-0.003331,-0.567400,-0.000094,1.000000,0.000081 0.304500,-0.059530,0.715800,0.000000,0.000000,1.000000 0.160700,0.114700,0.321300,0.000000,0.983500,-0.181000 -0.473600,0.006138,0.607600,0.006315,0.155400,0.987800 -0.569800,-0.156300,-0.389800,-0.814500,0.580200,0.000137 -0.287500,0.074270,0.613500,-0.000055,0.321500,0.946900 0.422900,-0.186000,0.405300,0.000000,-1.000000,0.000000 -0.287500,-0.186000,-0.449000,0.000000,-1.000000,0.000000 -0.033810,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.109900,0.124200,0.430700,0.000000,0.999900,-0.014120 -0.219900,-0.003331,0.041590,0.000000,1.000000,0.000000 0.532800,-0.254100,0.715800,0.000000,0.000000,1.000000 0.000013,-0.003331,0.464500,0.000001,1.000000,-0.000000 0.084600,0.125400,0.464400,0.000000,0.999400,0.033810 -0.135300,0.026430,0.613700,0.000074,-0.323500,0.946200 0.253700,-0.068310,-0.768400,0.000000,0.109300,-0.994000 -0.254400,0.362400,0.732000,0.000000,0.852800,0.522300 -0.372100,-0.186000,-0.110600,0.000000,-1.000000,0.000000 -0.126900,-0.186000,0.481400,0.000000,-1.000000,0.000000 0.253700,-0.186000,0.633600,0.000000,-1.000000,0.000000 -0.565400,-0.240100,-0.499700,-0.115100,-0.993400,0.000000 -0.549700,-0.398600,0.685300,-0.000468,-0.969000,-0.246900 -0.422900,-0.186000,0.413700,0.000000,-1.000000,0.000000 -0.262200,0.001350,0.268100,0.000024,0.652500,-0.757800 0.372200,-0.003331,0.007763,0.000000,1.000000,0.000000 0.485300,0.088140,0.604300,0.851200,0.506400,0.138000 -0.228300,-0.186000,-0.677300,0.000000,-1.000000,0.000000 -0.016910,-0.245600,0.715800,0.000000,0.000000,1.000000 0.169200,-0.186000,0.176900,0.000000,-1.000000,0.000000 0.321400,0.000288,0.275300,0.000000,0.643400,-0.765600 0.169200,-0.186000,-0.660400,0.000000,-1.000000,0.000000 -0.465200,-0.003331,-0.406700,0.000000,1.000000,0.000000 0.101500,-0.398600,0.685300,0.000000,-0.969200,-0.246500 0.564600,-0.239900,0.456700,0.140000,-0.990200,0.000000 -0.431300,-0.186000,-0.296700,0.000000,-1.000000,0.000000 0.118400,-0.003331,-0.085270,0.000000,1.000000,0.000000 -0.143800,-0.003331,-0.457400,0.000000,1.000000,0.000000 -0.135300,-0.186000,0.024680,0.000000,-1.000000,0.000000 -0.456700,-0.251400,-0.677800,0.691700,-0.079400,0.717800 0.363700,0.124800,0.405400,0.000000,0.998500,-0.054830 -0.422900,-0.051100,0.716200,0.003294,-0.006577,1.000000 0.422900,-0.186000,-0.542000,0.000000,-1.000000,0.000000 0.152300,0.210600,0.679400,0.000000,0.122800,-0.992400 0.542400,-0.117600,0.109300,0.993100,-0.117200,0.000000 0.543700,-0.085270,-0.432000,0.998300,0.058280,0.000000 0.262200,-0.186000,-0.169800,0.000000,-1.000000,0.000000 0.101500,-0.186000,0.058510,0.000000,-1.000000,0.000000 0.414400,-0.186000,0.574400,0.000000,-1.000000,0.000000 0.304500,0.202300,0.678400,0.000000,0.112600,-0.993600 -0.084560,0.073800,0.266200,0.000000,0.280800,-0.959800 -0.050730,0.254200,0.688500,0.000000,-0.199200,0.979900 0.093050,0.067540,0.724900,0.000000,-0.219200,0.975700 -0.542300,-0.123700,-0.217800,-0.992000,-0.126400,-0.000012 0.126900,-0.003331,-0.601200,0.000000,1.000000,0.000000 0.000019,-0.110200,-0.769200,0.000000,-0.067990,-0.997700 0.372200,-0.003331,0.625200,0.000000,1.000000,-0.004161 -0.431300,-0.003331,-0.186800,0.000000,1.000000,0.000000 0.304500,-0.003331,-0.119100,0.000000,1.000000,0.000000 -0.135300,-0.118700,0.715800,-0.000000,-0.000059,1.000000 -0.076110,-0.003331,-0.626600,0.000000,1.000000,0.000000 0.575100,-0.109600,0.708400,0.977400,-0.000008,0.211400 0.414400,0.092510,0.728200,0.000000,0.183700,-0.983000 0.022550,0.000493,0.591300,-0.757200,0.653100,-0.004609 -0.101500,-0.186000,-0.702700,0.000000,-1.000000,0.000000 -0.543000,-0.117700,0.379900,-0.995600,-0.093450,0.000000 0.572300,0.235300,0.744800,0.096220,0.003504,0.995400 -0.076110,0.109800,0.733300,-0.010370,-0.156700,0.987600 -0.211400,-0.186000,-0.169800,0.000000,-1.000000,0.000000 -0.456700,-0.287900,0.677900,0.000000,0.000000,-1.000000 -0.389000,-0.003331,0.253000,0.000000,1.000000,0.003590 -0.571400,-0.235100,0.481400,-0.986900,-0.161200,0.000000 0.059220,-0.186000,-0.254400,0.000000,-1.000000,0.000000 -0.456700,-0.002667,-0.668900,0.000000,1.000000,0.000002 0.482100,-0.186000,0.253000,0.000000,-1.000000,0.000000 -0.174800,0.264800,0.743600,-0.013110,-0.004563,0.999900 0.253700,-0.279400,0.716200,-0.003299,0.006576,1.000000 0.287600,0.113200,0.313200,-0.000080,0.976900,-0.213600 0.456700,-0.076590,-0.769100,0.000000,0.074970,-0.997200 -0.542400,-0.122700,-0.505300,-0.992000,-0.126100,0.000105 -0.406000,-0.003331,0.058510,0.000000,1.000000,0.000000 -0.558500,-0.152700,0.058950,-0.033310,0.999400,0.000489 0.194500,-0.186000,0.430700,0.000000,-1.000000,0.000000 0.253700,-0.003398,0.616900,0.001105,0.965600,0.260100 0.169200,-0.003331,0.117700,0.000000,1.000000,0.000000 -0.262200,0.085590,0.728900,0.000000,-0.201500,0.979500 0.304500,-0.240200,-0.772500,0.000000,-0.993700,0.112400 0.568700,-0.238800,-0.177600,0.678800,-0.734400,0.000000 -0.025360,-0.186000,-0.558900,0.000000,-1.000000,0.000000 0.067680,-0.186000,0.286900,0.000000,-1.000000,0.000000 0.521700,-0.002964,-0.203700,0.222500,0.974900,-0.000000 -0.542600,-0.194900,0.625200,1.000000,0.000000,0.000000 0.008463,-0.118700,0.715800,0.000000,0.000000,1.000000 0.543000,-0.109800,-0.558900,0.994300,-0.106200,0.000022 -0.545000,-0.239200,-0.152900,0.547400,-0.836900,0.000000 0.076120,-0.211800,-0.768300,-0.009882,-0.019740,0.999800 -0.469500,0.122100,0.432300,-0.608000,0.793800,-0.013000 0.531200,-0.016890,0.398900,0.935500,0.353300,-0.000003 -0.008445,-0.003331,-0.415100,0.000000,1.000000,0.000000 -0.169100,-0.228700,0.715800,0.000000,0.000000,1.000000 -0.473600,-0.186000,0.202300,0.000000,-1.000000,0.000000 -0.101500,-0.003331,-0.000695,0.000000,1.000000,0.000000 0.169200,-0.186000,-0.034520,0.000000,-1.000000,0.000000 -0.346800,-0.296400,0.715800,0.000000,0.000000,1.000000 -0.465200,-0.003331,0.168500,0.000000,1.000000,0.000000 0.539800,-0.051290,0.616700,0.990000,0.141200,0.000000 0.008473,-0.186000,0.532100,0.000000,-1.000000,0.000000 -0.270600,-0.186000,0.058510,0.000000,-1.000000,0.000000 -0.186100,-0.003331,-0.212100,0.000000,1.000000,0.000000 0.499000,-0.186000,0.024680,0.000000,-1.000000,0.000000 -0.245300,-0.186000,0.337600,0.000000,-1.000000,0.000000 -0.337600,0.158700,0.674800,0.000000,0.054900,-0.998500 -0.355200,-0.101800,-0.769700,0.000000,-0.032130,-0.999500 0.287600,-0.186000,0.371400,0.000000,-1.000000,0.000000 0.279100,-0.186000,-0.051440,0.000000,-1.000000,0.000000 -0.439800,0.253200,0.744200,0.000000,0.045070,0.999000 -0.219900,-0.003332,-0.322100,-0.016370,0.999800,0.013110 -0.084560,-0.186000,0.185400,0.000000,-1.000000,0.000000 0.414400,-0.003331,0.193800,0.000000,1.000000,0.000000 0.389100,-0.003331,-0.584300,0.000000,1.000000,0.000000 0.084590,-0.182700,0.662300,0.000000,-0.693700,0.720300 -0.296000,-0.186000,0.185400,0.000000,-1.000000,0.000000 0.338300,-0.186000,-0.372800,0.000000,-1.000000,0.000000 -0.042270,-0.186000,-0.296700,0.000000,-1.000000,0.000000 -0.135300,-0.186000,-0.085270,0.000000,-1.000000,0.000000 -0.287500,-0.003331,-0.110600,0.000000,1.000000,0.000000 0.544400,-0.239000,-0.403800,-0.514100,-0.857700,0.000000 0.482100,-0.003331,-0.017610,0.000000,1.000000,0.000000 -0.329800,-0.014110,0.674600,0.001168,0.911700,-0.410800 0.465200,-0.186000,-0.296700,0.000000,-1.000000,0.000000 0.042300,-0.003331,-0.668900,0.000000,1.000000,0.000000 0.431400,-0.003331,-0.381300,0.000000,1.000000,0.000000 0.118400,-0.101800,-0.769700,0.000000,-0.032130,-0.999500 0.439800,-0.127200,0.715800,0.000000,0.000000,1.000000 -0.482100,-0.186000,-0.575800,0.000000,-1.000000,0.000000 -0.279100,-0.194800,-0.797100,0.000000,0.000000,-1.000000 -0.422900,-0.186000,-0.009150,0.000000,-1.000000,0.000000 -0.228300,-0.003331,-0.685800,0.000000,1.000000,0.000000 0.033850,-0.186000,-0.110600,0.000000,-1.000000,0.000000 -0.543500,-0.077010,-0.601200,-0.997700,0.067840,-0.000003 -0.076110,-0.003331,-0.220600,0.000000,1.000000,0.000000 0.482100,-0.186000,-0.110600,0.000000,-1.000000,0.000000 0.383400,0.256300,0.742200,0.000000,-0.041560,-0.999100 0.084590,0.066240,0.265700,-0.000001,0.179700,-0.983700 -0.262200,-0.135700,0.715800,0.000000,0.000059,1.000000 -0.465200,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 0.118400,-0.003331,0.024680,0.000000,1.000000,0.000000 0.270700,-0.186000,-0.575800,0.000000,-1.000000,0.000000 0.485200,0.088630,0.351700,0.888000,0.459800,0.000000 -0.490500,-0.194900,0.715800,0.000000,0.000000,1.000000 0.194500,0.040400,0.716100,0.000000,0.238500,-0.971100 0.543000,-0.109800,-0.296700,0.996400,-0.085270,0.000000 -0.304500,0.094890,0.276400,-0.003365,0.570100,-0.821600 0.236800,-0.003331,-0.685800,0.000000,1.000000,0.000000 -0.008474,-0.002667,-0.059890,-0.022830,0.999600,0.016290 0.543700,-0.101600,0.236100,0.998700,-0.051380,0.000000 -0.183200,0.109300,0.576700,0.000000,0.983300,0.182000 -0.135300,-0.398600,0.685300,0.000000,-0.969200,-0.246500 -0.558200,-0.240300,0.261500,-0.011660,-0.999900,0.000000 0.389100,-0.003331,-0.212100,0.000000,1.000000,0.000000 0.177600,-0.186000,-0.237500,0.000000,-1.000000,0.000000 -0.355200,-0.186000,-0.364400,0.000000,-1.000000,0.000000 0.093050,-0.003331,-0.423600,0.000000,1.000000,0.000000 0.219900,-0.003331,-0.305200,0.000000,1.000000,0.000000 -0.490500,-0.003331,-0.017610,0.000000,1.000000,0.000000 0.355200,-0.068310,-0.768400,0.000000,0.109300,-0.994000 0.338300,-0.186000,0.058510,0.000000,-1.000000,0.000000 0.228400,0.185800,0.743000,-0.006564,-0.075150,0.997200 -0.542300,-0.123700,0.154400,-0.992000,-0.126400,0.000000 0.473600,0.304400,0.699400,0.000000,-0.237900,0.971300 0.490600,-0.186000,0.498300,0.000000,-1.000000,0.000000 -0.016730,-0.003399,0.312200,0.270900,0.962600,-0.000016 -0.571600,0.197500,0.742900,-0.322800,-0.047040,0.945300 0.126900,-0.002730,0.657000,0.000000,0.986200,0.165700 0.439800,-0.254100,0.677900,0.000000,0.000000,-1.000000 -0.312900,-0.003331,0.007763,0.000000,1.000000,0.000000 -0.236800,-0.003331,-0.491200,0.000000,1.000000,0.000000 -0.118400,-0.002590,0.709000,-0.013200,0.989500,0.143700 0.482100,-0.003331,-0.660400,0.000000,1.000000,0.000000 -0.355200,0.124200,0.447500,0.000000,0.999900,0.011460 -0.380600,-0.003331,-0.288300,0.000000,1.000000,0.000000 -0.076100,-0.186000,0.396800,0.000000,-1.000000,0.000000 0.296000,-0.186000,0.176900,0.000000,-1.000000,0.000000 -0.245300,0.225600,0.683700,-0.000008,-0.112100,0.993700 -0.296000,-0.380900,0.677900,0.000000,-0.013730,-0.999900 -0.526400,-0.005258,0.346100,-0.742100,0.670300,0.000000 -0.542200,-0.063640,0.616700,-0.991300,0.131900,0.000000 0.525800,-0.006032,-0.750900,0.508500,0.636200,-0.580300 0.570500,-0.194800,-0.609700,1.000000,0.000000,0.000000 0.076130,0.270500,0.691600,0.000000,-0.171400,0.985200 0.186100,-0.338600,0.677900,0.000000,0.000000,-1.000000 0.550000,-0.240100,0.303800,-0.092980,-0.995700,0.000000 0.214200,0.117900,0.541500,-0.009668,0.990800,0.134800 0.011290,0.078810,0.674500,0.000000,-0.054110,-0.998500 -0.531200,-0.016900,0.532800,-0.944000,0.330000,0.000000 0.042300,-0.186000,-0.465900,0.000000,-1.000000,0.000000 -0.033820,-0.186000,0.083880,0.000000,-1.000000,0.000000 -0.203000,-0.186000,0.244600,0.000000,-1.000000,0.000000 0.301000,0.358600,0.735100,0.000000,0.374100,0.927400 0.177600,-0.003331,-0.516600,0.000000,1.000000,0.000000 0.534500,-0.028650,-0.094430,0.969200,0.246300,-0.000010 0.406000,0.120800,0.522900,0.000000,0.992500,0.122300 0.338300,-0.304800,0.677900,0.000000,0.000000,-1.000000 -0.116700,-0.154100,-0.792200,0.003127,0.921600,-0.388100 -0.470800,0.078810,0.674500,0.000000,-0.054110,-0.998500 -0.542300,-0.123500,-0.708300,-0.992000,-0.126300,0.000091 0.066960,0.111200,0.580300,-0.000026,0.978100,0.208300 -0.355200,-0.186000,-0.516600,0.000000,-1.000000,0.000000 0.414100,-0.238600,-0.717200,-0.676100,-0.296400,0.674600 -0.473600,-0.186000,0.329200,0.000000,-1.000000,0.000000 -0.544000,-0.085270,-0.322100,-0.999300,0.038670,0.000000 -0.287600,0.120700,0.372000,0.000000,0.992400,-0.122900 -0.126900,-0.186000,-0.254400,0.000000,-1.000000,0.000000 0.211500,-0.186000,0.523700,0.000000,-1.000000,0.000000 0.538400,-0.172600,-0.714000,-0.625800,-0.780000,0.000000 -0.439800,-0.186000,0.633600,0.000000,-1.000000,0.000000 -0.422900,-0.003331,-0.491200,0.000000,1.000000,0.000000 -0.541300,-0.057830,-0.415100,-0.986800,0.161700,-0.002021 -0.225500,0.000886,0.610500,-0.005808,0.665000,0.746800 -0.491400,0.079380,0.549100,-0.933700,0.358200,0.000000 -0.016900,0.328900,0.739000,0.000000,0.117100,0.993100 -0.033820,-0.186000,0.312200,0.000000,-1.000000,0.000000 -0.016900,-0.003331,-0.322100,0.000000,1.000000,0.000000 0.568700,-0.238800,0.059230,0.678800,-0.734400,0.000000 0.507500,-0.172400,0.670500,0.000000,-0.896200,0.443700 -0.076120,-0.003332,-0.127500,-0.016370,0.999800,0.013110 -0.228300,-0.003331,0.143100,0.000000,1.000000,0.000000 -0.169100,-0.186000,-0.449000,0.000000,-1.000000,0.000000 0.483900,0.013330,0.549100,0.951400,-0.308000,0.000002 -0.490500,-0.186000,0.481400,0.000000,-1.000000,0.000000 -0.024390,0.087480,0.427800,0.886000,0.463600,0.000008 -0.186100,0.073600,0.676700,0.000036,0.055600,0.998500 -0.169100,-0.186000,0.388400,0.000000,-1.000000,0.000000 -0.194500,-0.186000,0.549100,0.000000,-1.000000,0.000000 -0.042280,-0.003331,0.117700,0.000000,1.000000,0.000000 0.484900,-0.296300,-0.714300,0.833700,0.001033,-0.552300 -0.558200,-0.240300,0.033140,-0.011660,-0.999900,0.000000 0.253700,-0.186000,-0.719600,0.000000,-1.000000,0.000000 -0.312900,-0.186000,-0.711100,0.000000,-1.000000,0.000000 -0.109900,-0.003331,-0.542000,0.000000,1.000000,0.000000 -0.296000,-0.186000,0.532100,0.000000,-1.000000,0.000000 0.016930,-0.012830,-0.755400,-0.000000,0.350500,-0.936600 -0.473600,-0.186000,-0.169800,0.000000,-1.000000,0.000000 -0.542200,-0.063640,0.456000,-0.991300,0.131900,0.000000 0.219900,-0.169500,0.715800,0.000000,0.000000,1.000000 -0.157900,0.021170,0.268400,0.000011,-0.369900,-0.929100 0.526100,-0.005332,0.174100,0.740300,0.672300,0.000010 0.363700,0.168400,0.739100,0.000000,0.091840,-0.995800 0.499000,0.160700,0.740200,0.013150,-0.099500,0.995000 0.211500,0.118000,0.673600,0.000000,0.003522,-1.000000 -0.431300,0.152400,0.739100,0.000000,-0.092980,0.995700 0.356300,0.025050,0.715800,-0.107900,-0.124700,0.986300 -0.101500,-0.287900,0.715800,0.000000,0.000000,1.000000 -0.236800,-0.186000,-0.288300,0.000000,-1.000000,0.000000 -0.473600,-0.239100,-0.768600,0.003056,-0.677600,0.735400 -0.025370,0.169200,0.677800,-0.003302,-0.082430,0.996600 -0.346800,0.322700,0.704000,0.000000,-0.292500,0.956300 0.317700,-0.152700,-0.782900,-0.001089,0.997400,-0.072470 -0.448200,-0.026280,-0.759800,0.000000,0.292300,-0.956300 -0.507400,0.276400,0.690500,0.000000,0.205400,-0.978700 0.490600,-0.186000,-0.212100,0.000000,-1.000000,0.000000 -0.126900,-0.003331,0.083880,0.000000,1.000000,0.000000 -0.380600,0.074270,0.613500,-0.000073,0.339400,0.940600 0.059220,-0.321700,0.677900,0.000000,0.000000,-1.000000 0.076130,0.143200,0.674100,-0.000014,0.034030,-0.999400 0.507500,-0.338600,0.715800,-0.000000,-0.000059,1.000000 0.160700,0.336500,0.705800,0.000000,0.282900,-0.959200 0.465200,-0.003331,0.633600,0.000000,1.000000,0.000037 -0.270600,-0.254100,0.715800,0.000000,0.000000,1.000000 0.186100,-0.186000,-0.406700,0.000000,-1.000000,0.000000 -0.544000,-0.085270,-0.042980,-0.999300,0.038670,0.000000 0.093050,-0.003331,-0.212100,0.000000,1.000000,0.000000 -0.304500,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.126900,-0.186000,-0.618100,0.000000,-1.000000,0.000000 0.543300,-0.109800,0.422200,0.996400,-0.085300,0.000000 -0.573600,0.126500,0.692900,0.989800,-0.006698,0.142500 0.572300,0.036580,0.680200,0.713300,-0.050710,-0.699000 -0.550200,-0.240200,-0.381300,0.085960,-0.996300,0.000000 0.565400,-0.153000,-0.076580,0.273300,0.961900,-0.012940 0.152300,0.129200,0.736500,-0.000241,-0.172400,0.985000 -0.473600,-0.186000,0.109300,0.000000,-1.000000,0.000000 0.287600,-0.003331,-0.406700,0.000000,1.000000,0.000000 0.110000,-0.186000,0.413700,0.000000,-1.000000,0.000000 0.558100,-0.152600,-0.380600,0.000538,1.000000,0.000000 0.570500,-0.186400,0.219200,0.999800,0.019700,0.000000 0.515900,-0.003004,-0.406700,-0.025750,0.999700,0.000000 -0.109200,0.209500,0.743700,0.000000,-0.062670,0.998000 -0.470600,0.116000,0.346900,-0.555600,0.828800,-0.066220 -0.389000,0.085060,0.270600,0.000009,0.450100,-0.893000 -0.067660,0.116300,0.337900,0.000000,0.988700,-0.150000 0.084590,-0.003331,0.109300,0.000000,1.000000,0.000000 0.262200,-0.186000,0.270000,0.000000,-1.000000,0.000000 0.203000,-0.003331,-0.093730,0.000000,1.000000,0.000000 -0.338300,-0.186000,-0.000693,0.000000,-1.000000,0.000000 0.439800,-0.003331,-0.296700,0.000000,1.000000,0.000000 -0.507400,0.363600,0.719600,0.000000,0.950500,-0.310900 -0.571400,-0.235100,-0.711100,-0.986900,-0.161200,0.000000 -0.160700,-0.004389,-0.749900,0.000000,0.886900,-0.461900 -0.482100,-0.186000,-0.364400,0.000000,-1.000000,0.000000 0.008473,-0.186000,0.616700,0.000000,-1.000000,0.000000 -0.406000,0.210600,0.679400,0.000000,0.122800,-0.992400 -0.236800,-0.186000,-0.592700,0.000000,-1.000000,0.000000 0.000015,-0.186000,-0.372800,0.000000,-1.000000,0.000000 -0.389000,-0.186000,0.176900,0.000000,-1.000000,0.000000 -0.329800,-0.186000,0.337600,0.000000,-1.000000,0.000000 0.279100,-0.186000,-0.262900,0.000000,-1.000000,0.000000 -0.211400,-0.003331,-0.406700,0.000000,1.000000,0.000000 -0.203000,0.123700,0.413800,0.000000,0.999200,-0.039650 -0.118400,0.120100,0.514300,-0.000355,0.993900,0.110400 -0.219900,0.169000,0.741200,-0.009840,-0.070990,0.997400 0.084600,0.122900,0.380200,0.000000,0.995700,-0.092560 0.422900,-0.186000,0.312200,0.000000,-1.000000,0.000000 0.329900,-0.186000,-0.119100,0.000000,-1.000000,0.000000 0.355300,-0.398700,0.701300,0.000000,-1.000000,0.005671 -0.571500,-0.169500,0.219200,-1.000000,0.003699,-0.000000 -0.538600,-0.043310,-0.677300,-0.977300,0.212100,0.000000 -0.363700,-0.186000,0.472900,0.000000,-1.000000,0.000000 0.245300,0.034680,0.266400,0.000000,-0.209700,-0.977800 0.076120,-0.051080,0.715800,0.000000,0.000000,1.000000 0.499000,-0.186000,-0.474300,0.000000,-1.000000,0.000000 0.499000,-0.186400,-0.797100,0.000000,0.000000,-1.000000 0.346800,0.101300,0.673700,0.000000,-0.018670,-0.999800 0.499000,0.079480,0.727600,0.000000,-0.239700,0.970900 -0.067650,-0.003331,0.244600,0.000000,1.000000,0.000000 -0.571400,-0.161400,-0.288300,-0.992800,0.120000,-0.004046 0.542800,-0.085250,-0.767000,0.869300,0.039670,-0.492600 0.194500,-0.237100,0.677900,0.000000,0.000000,-1.000000 0.152300,0.262200,0.741900,0.000000,-0.041020,-0.999200 -0.522100,-0.002890,-0.186800,-0.209900,0.977700,0.000000 -0.565400,-0.240100,-0.584300,-0.115100,-0.993400,0.000000 0.329900,-0.186000,0.608300,0.000000,-1.000000,0.000000 -0.152200,-0.003331,-0.660400,0.000000,1.000000,0.000000 -0.448200,-0.186000,-0.085270,0.000000,-1.000000,0.000000 -0.565400,-0.153000,-0.110700,-0.255700,0.966700,-0.013280 0.329900,0.123400,0.498000,0.000000,0.996400,0.084750 -0.380600,-0.186000,-0.195200,0.000000,-1.000000,0.000000 0.059220,-0.186000,-0.601200,0.000000,-1.000000,0.000000 -0.448300,-0.127200,0.715800,0.000000,0.000000,1.000000 0.262200,-0.003331,0.066970,0.000000,1.000000,0.000000 -0.245300,-0.003331,-0.034530,0.000000,1.000000,0.000000 -0.526700,-0.182200,-0.454600,-0.778100,-0.628100,0.000000 -0.107100,0.101300,0.598900,0.000040,0.690800,0.723000 -0.482100,-0.003332,0.692800,0.000000,0.996600,-0.082410 0.295200,0.252500,0.742300,0.000113,-0.022400,-0.999700 -0.526400,-0.005258,0.219200,-0.742100,0.670300,0.000000 -0.439800,-0.186000,-0.719600,0.000000,-1.000000,0.000000 -0.473600,-0.355600,0.715800,0.000000,0.000000,1.000000 0.023080,0.013050,0.382700,-0.945900,-0.324500,0.000000 0.408100,0.076180,0.615200,-0.000014,0.375300,0.926900 -0.572400,-0.187200,0.707100,-0.987400,-0.038160,0.153300 0.473700,0.236500,0.744600,0.000023,0.017380,0.999800 0.491900,0.065400,0.267000,0.737900,0.111300,-0.665700 0.540700,-0.057900,0.323500,0.990800,0.135600,0.000000 -0.558200,-0.152700,0.448300,-0.032730,0.999500,-0.000056 -0.211400,-0.152400,-0.779000,0.000683,0.967100,-0.254200 0.558200,-0.240300,-0.677300,0.012580,-0.999900,-0.000474 -0.569600,-0.156000,-0.777200,-0.794100,0.606700,-0.036400 0.021970,0.089220,0.499000,-0.885100,0.465400,0.000000 -0.050740,0.019510,0.610700,0.000002,-0.407800,0.913100 -0.473600,-0.003331,-0.102200,0.000000,1.000000,0.000000 -0.169100,-0.186000,0.642100,0.000000,-1.000000,0.000000 -0.312900,-0.186400,0.677900,0.000000,0.004847,-1.000000 0.152300,-0.003331,-0.262900,0.000000,1.000000,0.000000 -0.084580,-0.178000,0.716200,-0.006549,-0.016420,0.999800 -0.380600,-0.003331,-0.372800,0.000000,1.000000,0.000000 -0.067650,-0.003331,-0.474300,0.000000,1.000000,0.000000 -0.321400,-0.084930,0.716200,0.003294,-0.006577,1.000000 0.219900,-0.186000,-0.102200,0.000000,-1.000000,0.000000 0.084590,-0.186000,-0.017610,0.000000,-1.000000,0.000000 0.389100,-0.186000,-0.313600,0.000000,-1.000000,0.000000 0.507500,-0.186000,0.422200,0.000000,-1.000000,0.000000 0.186100,-0.186000,-0.584300,0.000000,-1.000000,0.000000 0.236800,-0.003331,0.185400,0.000000,1.000000,0.000000 0.329900,-0.003331,-0.635000,0.000000,1.000000,0.000000 -0.456700,-0.003331,-0.322100,0.000000,1.000000,0.000000 0.448300,-0.002714,-0.744200,0.000000,0.994700,-0.103300 0.570500,-0.178000,0.515200,0.999800,-0.019680,0.000000 0.532800,-0.022760,-0.604700,0.961600,0.274500,0.000000 -0.279100,-0.018850,-0.757500,0.000001,0.313400,-0.949600 -0.380600,-0.003394,0.616900,0.000692,0.961600,0.274500 0.229100,0.234300,0.682700,0.000000,0.155100,-0.987900 0.525100,0.240200,0.683700,0.000010,0.162600,-0.986700 -0.507500,0.127600,0.736200,0.000000,-0.169700,0.985500 0.000011,-0.185900,-0.744200,0.001502,-0.990700,-0.135700 0.394700,0.023220,0.270000,0.000000,-0.377600,-0.926000 -0.261500,0.147800,0.676500,0.000000,-0.016100,0.999900 0.569800,-0.156300,0.020930,0.831700,0.555300,-0.000134 -0.050730,-0.186000,0.472900,0.000000,-1.000000,0.000000 0.363700,-0.003331,0.083880,0.000000,1.000000,0.000000 -0.431300,-0.186000,-0.643500,0.000000,-1.000000,0.000000 -0.304500,-0.003331,-0.313600,0.000000,1.000000,0.000000 0.346800,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.101500,-0.003331,-0.499700,0.000000,1.000000,0.000000 0.439800,-0.003331,-0.474300,0.000000,1.000000,0.000000 -0.109900,0.066800,0.677100,-0.002760,0.070060,0.997500 -0.186100,0.330500,0.706100,0.000000,-0.271600,0.962400 -0.495900,-0.321700,-0.694300,-0.999800,0.000044,0.019090 -0.152200,0.115600,0.734300,0.000000,-0.133700,0.991000 -0.526400,-0.005258,-0.355900,-0.742100,0.670300,0.000000 -0.329800,0.116600,0.540400,0.000000,0.988600,0.150800 0.499000,-0.186000,0.100800,0.000000,-1.000000,0.000000 0.287600,-0.003331,-0.203700,0.000000,1.000000,0.000000 0.152300,-0.186000,-0.330500,0.000000,-1.000000,0.000000 0.169200,-0.186000,0.100800,0.000000,-1.000000,0.000000 0.414400,-0.186000,0.650500,0.000000,-0.999700,0.024610 0.380600,-0.059530,0.715800,0.000000,0.000000,1.000000 0.542400,-0.117600,0.557500,0.993100,-0.117200,0.000000 0.507500,-0.186000,0.176900,0.000000,-1.000000,0.000000 -0.550300,-0.152500,0.313000,-0.219700,0.975600,0.000000 0.152300,-0.186000,0.625200,0.000000,-1.000000,0.000000 0.236800,-0.093370,0.715800,0.000000,0.000000,1.000000 0.406000,-0.186000,0.024680,0.000000,-1.000000,0.000000 -0.084560,-0.186000,-0.508200,0.000000,-1.000000,0.000000 -0.050730,-0.186000,-0.635000,0.000000,-1.000000,0.000000 0.101500,-0.186000,-0.694200,0.000000,-1.000000,0.000000 -0.109900,-0.186000,-0.389700,0.000000,-1.000000,0.000000 -0.312900,-0.186000,-0.161400,0.000000,-1.000000,0.000000 -0.262200,0.278700,0.743300,0.000000,0.047980,0.998800 0.236800,0.121700,0.372000,-0.000031,0.994500,-0.104800 0.084590,-0.186000,0.489900,0.000000,-1.000000,0.000000 0.431400,-0.186000,-0.635000,0.000000,-1.000000,0.000000 -0.152200,-0.076590,-0.769100,0.000000,0.074970,-0.997200 0.439800,0.125700,0.439100,0.000000,1.000000,-0.004263 0.241800,0.070740,0.616800,-0.000001,0.234800,0.972100 -0.507400,-0.186000,-0.685800,0.000000,-1.000000,0.000000 0.346800,0.303100,0.696600,0.000000,0.239200,-0.971000 0.016930,0.262200,0.741900,0.000003,-0.040920,-0.999200 0.304500,-0.228700,0.677900,0.000000,0.000000,-1.000000 0.135300,-0.194900,0.715800,0.000000,0.000000,1.000000 0.490700,-0.003403,0.337600,0.265600,0.964100,0.000000 0.101500,-0.003331,0.244600,0.000000,1.000000,0.000000 0.542600,-0.069680,-0.229100,0.992400,0.123000,0.000020 -0.507400,-0.186000,-0.237500,0.000000,-1.000000,0.000000 -0.093020,0.295500,0.742200,-0.000015,0.074860,0.997200 0.575000,-0.312500,0.701200,1.000000,0.000000,-0.005351 0.575100,-0.183100,0.707300,0.979900,-0.000015,0.199500 -0.515900,-0.186000,0.557500,-0.040710,-0.999200,0.000000 0.014430,0.045420,0.266700,-0.749100,-0.082270,-0.657300 -0.025630,0.005887,0.532100,0.991700,0.128500,-0.000218 -0.329800,0.115600,0.734300,0.000000,-0.133700,0.991000 0.067660,-0.228700,0.716200,-0.006588,-0.016390,0.999800 0.033840,-0.003331,-0.254400,0.000000,1.000000,0.000000 0.321400,-0.002999,-0.736500,0.000000,0.999300,0.038300 0.143800,-0.186000,0.253000,0.000000,-1.000000,0.000000 -0.253700,-0.003331,-0.178300,0.000000,1.000000,0.000000 0.160700,-0.003331,-0.347500,0.000000,1.000000,0.000000 0.380600,-0.186000,0.176900,0.000000,-1.000000,0.000000 -0.287500,-0.186000,0.278400,0.000000,-1.000000,0.000000 -0.465200,-0.003331,-0.592700,0.000000,1.000000,0.000000 0.143800,0.122600,0.506300,0.000000,0.995300,0.097020 0.565900,-0.026150,0.715800,0.188700,0.015330,0.981900 -0.245300,-0.186000,-0.381300,0.000000,-1.000000,0.000000 0.245300,-0.186000,-0.643500,0.000000,-1.000000,0.000000 -0.363700,-0.003331,-0.161400,0.000000,1.000000,0.000000 -0.473600,-0.003331,0.083880,0.000000,1.000000,0.000000 -0.067650,-0.186000,0.549100,0.000000,-1.000000,0.000000 0.569800,-0.156300,0.629900,0.831700,0.555200,-0.000143 0.539800,-0.135400,-0.643500,0.999700,-0.023380,0.000039 0.473600,0.134900,0.673800,0.000000,0.024070,-0.999700 -0.568900,-0.036530,0.715800,-0.083220,-0.002348,0.996500 0.482500,0.005949,0.472900,0.997600,0.068850,0.000000 -0.253700,0.035890,0.677700,0.000000,-0.139600,-0.990200 -0.321400,-0.003331,0.227700,0.000000,1.000000,0.000000 0.287600,-0.144100,0.715800,0.000000,0.000000,1.000000 0.338300,-0.186000,0.422200,0.000000,-1.000000,0.000000 -0.406000,-0.254100,0.715800,0.000000,0.000000,1.000000 0.118400,-0.186000,0.337600,0.000000,-1.000000,0.000000 0.570800,-0.228700,0.371400,0.998600,-0.051760,-0.006556 0.025390,0.115600,0.734300,0.000000,-0.133500,0.991100 -0.337600,0.067250,0.675100,0.000000,-0.058490,-0.998300 0.422900,0.032290,0.679000,0.000000,-0.260400,0.965500 -0.041820,-0.162100,-0.797100,-0.000438,0.114500,-0.993400 0.569600,-0.155400,-0.451100,0.807100,0.590400,0.000000 -0.534800,-0.028540,0.152200,-0.962700,0.270500,0.000000 0.414400,0.120100,0.355400,0.000000,0.991000,-0.134100 -0.509700,-0.240200,-0.628900,0.069530,-0.995200,0.069580 0.111700,0.201200,0.743400,0.000000,-0.023510,0.999700 -0.571500,-0.203300,-0.212100,-1.000000,0.000000,0.000000 -0.304500,0.005693,0.607300,0.005030,0.157000,0.987600 -0.236800,-0.389600,0.715900,0.000000,-0.131100,0.991400 0.025390,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.565400,-0.240100,-0.085270,-0.115100,-0.993400,0.000000 0.490600,-0.186000,-0.592700,0.000000,-1.000000,0.000000 -0.414400,0.126500,0.675700,0.000000,-0.014070,0.999900 0.248400,-0.156700,-0.794400,0.004278,0.696600,-0.717500 0.536100,-0.035640,0.100800,0.969400,0.245400,-0.000000 -0.152200,0.095390,0.276800,0.000000,0.570300,-0.821500 0.304500,-0.009748,0.664700,0.000000,0.660100,0.751100 0.372200,0.219600,0.682900,0.000094,-0.105100,0.994500 -0.100800,0.141900,0.676300,0.000000,-0.027740,0.999600 -0.101500,-0.186000,0.117700,0.000000,-1.000000,0.000000 0.016930,-0.186000,-0.178300,0.000000,-1.000000,0.000000 0.101500,-0.186000,0.160000,0.000000,-1.000000,0.000000 0.363700,-0.186000,-0.457400,0.000000,-1.000000,0.000000 0.033850,-0.186000,0.100800,0.000000,-1.000000,0.000000 0.363700,-0.127200,0.715800,0.000000,0.000000,1.000000 -0.296000,-0.003331,0.075420,0.000000,1.000000,0.000000 0.279100,0.134900,0.675800,0.000000,0.003258,1.000000 0.355200,-0.003331,-0.389700,0.000000,1.000000,0.000000 0.465200,-0.186000,-0.042980,0.000000,-1.000000,0.000000 0.397500,-0.186000,0.506800,0.000000,-1.000000,0.000000 -0.346800,-0.186000,0.405300,0.000000,-1.000000,0.000000 0.228400,-0.186000,-0.491200,0.000000,-1.000000,0.000000 0.169200,-0.395500,0.713900,0.000000,-0.605500,0.795800 -0.565900,0.239700,0.683800,-0.219000,0.238500,-0.946100 0.398200,0.147700,0.676200,0.000000,-0.046320,0.998900 0.456700,-0.186000,-0.702700,0.000000,-1.000000,0.000000 -0.135300,0.118300,0.351900,0.000000,0.990800,-0.135000 0.321400,0.042990,0.618500,0.000392,-0.124200,0.992300 0.465200,-0.239200,-0.768700,0.125100,-0.798300,0.589200 -0.549700,-0.330200,0.677900,0.000000,0.000000,-1.000000 -0.541300,-0.057820,-0.237500,-0.986800,0.161800,0.000000 -0.169100,-0.186000,-0.736500,0.000000,-1.000000,-0.001680 -0.363700,0.185300,0.740400,0.000000,0.069350,-0.997600 -0.528800,-0.010380,-0.618100,-0.924700,0.380600,0.000000 0.431400,0.177400,0.741900,0.000000,-0.098580,0.995100 0.571100,-0.169500,-0.203700,0.999800,-0.017990,0.006615 -0.067650,-0.186000,-0.119100,0.000000,-1.000000,0.000000 0.177600,-0.003331,-0.651900,0.000000,1.000000,0.000000 0.245300,-0.003331,-0.508200,0.000000,1.000000,0.000000 0.380600,-0.186000,-0.169800,0.000000,-1.000000,0.000000 -0.296000,-0.186000,-0.330500,0.000000,-1.000000,0.000000 -0.203000,-0.186000,0.075430,0.000000,-1.000000,0.000000 0.296000,-0.003331,-0.051440,0.000000,1.000000,0.000000 -0.067650,-0.101800,-0.769700,0.000000,-0.032130,-0.999500 -0.008443,-0.186000,0.236100,0.000000,-1.000000,0.000000 0.422900,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.245300,-0.025700,0.715800,0.000000,0.000059,1.000000 0.050760,-0.003331,-0.110600,0.000000,1.000000,0.000000 -0.059200,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.329800,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 -0.203000,-0.186000,0.481400,0.000000,-1.000000,0.000000 0.279100,-0.003331,-0.339000,0.000000,1.000000,0.000000 -0.143800,-0.186000,-0.178300,0.000000,-1.000000,0.000000 -0.076100,-0.186000,0.253000,0.000000,-1.000000,0.000000 0.177600,0.125200,0.413800,0.000000,0.999100,-0.042380 0.456700,-0.003331,-0.592700,0.000000,1.000000,0.000000 -0.406000,-0.186000,0.337600,0.000000,-1.000000,0.000000 0.169200,0.073820,0.267500,0.000000,0.259100,-0.965900 -0.262200,0.115200,0.548500,0.013220,0.987600,0.156700 -0.482100,-0.177900,-0.797100,0.000000,0.000000,-1.000000 0.194500,-0.003003,0.650500,0.000000,0.999200,-0.040260 -0.355200,-0.003331,-0.491200,0.000038,1.000000,-0.000025 -0.456700,-0.003331,-0.254400,0.000000,1.000000,0.000000 0.439800,-0.194900,0.715800,0.000000,0.000000,1.000000 0.346800,-0.186000,0.329200,0.000000,-1.000000,0.000000 0.169200,-0.186000,0.033140,0.000000,-1.000000,0.000000 -0.542300,-0.203300,0.100800,1.000000,0.000000,0.000000 0.033850,0.218900,0.680500,0.000000,0.132500,-0.991200 -0.287500,0.169000,0.740800,0.000000,-0.090760,0.995900 0.346800,-0.003331,0.193800,0.000000,1.000000,0.000000 -0.389000,-0.003331,0.143100,0.000000,1.000000,0.000000 0.531200,-0.016900,0.026790,0.944300,0.329200,0.000007 0.544000,-0.085260,0.050050,0.999300,0.038050,0.000000 -0.544000,-0.085270,0.320700,-0.999300,0.038670,0.000000 -0.093020,-0.220200,-0.768300,0.000000,0.019560,0.999800 0.076130,0.113200,0.313200,0.000000,0.981100,-0.193600 0.227700,0.362100,0.732200,0.000000,0.850100,0.526600 0.524400,0.295600,0.742500,0.000000,0.074690,0.997200 0.456700,-0.003331,-0.220600,0.000000,1.000000,0.000000 -0.093020,-0.347100,0.677900,0.000000,0.000000,-1.000000 -0.499000,0.194200,0.743000,0.000000,-0.057370,0.998400 0.570300,-0.235000,0.634300,0.981100,-0.193100,-0.009140 -0.406000,0.276400,0.690500,0.000000,0.205400,-0.978700 0.296000,0.185800,0.742800,-0.000019,-0.068620,0.997600 -0.043580,0.122700,0.481100,0.163400,0.984900,0.057480 0.013870,0.066040,0.582900,-0.986900,0.161600,0.000000 -0.401300,-0.239000,-0.731800,0.289500,-0.912200,0.289800 0.143800,0.101100,0.676100,0.000000,0.015100,0.999900 0.471600,0.115500,0.531800,0.909600,0.407400,0.081420 0.118400,-0.169500,-0.797100,-0.000065,0.003434,-1.000000 0.044400,-0.153700,-0.792400,0.002460,0.922100,-0.386900 0.219900,-0.004389,-0.749900,0.000000,0.886900,-0.461900 -0.135300,-0.002999,-0.254500,0.039310,0.998800,-0.029450 0.576000,0.184400,0.702700,1.000000,-0.000869,-0.009940 -0.411600,0.032490,0.678400,0.000000,-0.343300,-0.939200 -0.431300,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.287600,-0.186000,0.557500,0.000000,-1.000000,0.000000 -0.033820,-0.003331,-0.575800,0.000000,1.000000,0.000000 0.042300,-0.003331,-0.364400,0.000000,1.000000,0.000000 -0.453900,0.101300,0.598900,-0.000038,0.690700,0.723100 0.346800,-0.186000,-0.009150,0.000000,-1.000000,0.000000 -0.093020,-0.186000,-0.034520,0.000000,-1.000000,0.000000 -0.262200,-0.186000,-0.119100,0.000000,-1.000000,0.000000 -0.304500,-0.186000,-0.584300,0.000000,-1.000000,0.000000 0.338300,-0.186000,0.126200,0.000000,-1.000000,0.000000 -0.389000,-0.330200,0.677900,0.000000,0.000000,-1.000000 0.135300,-0.003331,-0.161400,0.000000,1.000000,0.000000 0.544100,-0.093450,-0.102200,0.999900,-0.016460,0.000000 -0.541500,-0.129500,0.613900,-0.987600,-0.157000,0.000000 0.541700,-0.235100,-0.237500,-0.964900,-0.262500,0.000000 0.406000,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 0.135300,-0.240200,-0.772500,0.000000,-0.993700,0.112400 -0.496300,0.042330,0.379900,-0.994200,-0.107100,0.000000 0.152200,-0.017260,0.715800,0.000000,-0.005638,1.000000 -0.084560,-0.237100,0.677900,0.000000,0.000000,-1.000000 -0.118400,0.237800,0.685300,0.000000,-0.167000,0.986000 0.473700,0.364000,0.726500,0.000000,0.993600,0.112600 0.076140,-0.052010,-0.766000,0.000000,0.178000,-0.984000 -0.312900,0.218900,0.680500,0.000000,0.132500,-0.991200 0.160700,-0.186000,-0.744100,-0.000014,-0.991200,-0.132100 0.543500,-0.076980,0.160000,0.996000,0.089770,0.000000 0.465200,-0.003331,0.244600,0.000000,1.000000,0.000000 -0.033810,0.058340,0.720800,-0.000049,0.233800,-0.972300 0.034240,0.035030,0.716400,-0.002467,-0.303100,0.953000 0.355200,0.116200,0.329500,0.000000,0.986200,-0.165300 0.499000,0.035460,0.679200,0.000000,0.019930,0.999800 -0.550200,-0.240200,0.549100,0.084240,-0.996400,0.000000 -0.489000,0.084810,0.481400,-0.895400,0.445200,0.000118 0.236800,-0.186000,0.210700,0.000000,-1.000000,0.000000 -0.101500,-0.186000,-0.322100,0.000000,-1.000000,0.000000 -0.042280,-0.313300,0.715800,0.000000,0.000000,1.000000 -0.380600,-0.003331,-0.000695,0.000000,1.000000,0.000000 -0.304500,-0.186000,0.599800,0.000000,-1.000000,0.000000 -0.296000,-0.003331,-0.516600,0.000000,1.000000,0.000000 0.363700,-0.003331,-0.144500,0.000000,1.000000,0.000000 -0.499000,-0.186000,0.270000,0.000000,-1.000000,0.000000 -0.372100,-0.186000,-0.262900,0.000000,-1.000000,0.000000 0.406000,-0.186000,0.236100,0.000000,-1.000000,0.000000 -0.296000,-0.186000,0.117700,0.000000,-1.000000,0.000000 -0.160700,-0.003331,-0.026070,0.000000,1.000000,0.000000 -0.194500,-0.186000,-0.000693,0.000000,-1.000000,0.000000 -0.482100,-0.186000,0.016220,0.000000,-1.000000,0.000000 0.050760,-0.003331,-0.584300,0.000000,1.000000,0.000000 0.126900,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.203000,-0.003331,0.202300,0.000000,1.000000,0.000000 -0.507400,-0.186000,-0.305200,0.000000,-1.000000,0.000000 0.194500,-0.003331,0.058510,0.000000,1.000000,0.000000 0.570800,-0.169500,0.083880,0.999300,-0.036680,-0.000001 0.482100,-0.186000,0.566000,0.000000,-1.000000,0.000000 -0.033810,-0.186400,0.677900,0.000000,0.004847,-1.000000 0.346800,-0.186000,-0.736500,0.000000,-1.000000,-0.001680 0.570500,-0.178000,0.430600,0.999800,-0.019680,0.000000 -0.544100,-0.093450,-0.161400,-1.000000,0.004023,0.000000 -0.338300,-0.245600,0.677900,0.000000,0.000000,-1.000000 -0.507500,-0.279400,0.715800,0.000000,0.000000,1.000000 -0.160700,-0.321700,0.715800,0.000000,0.000000,1.000000 0.414400,-0.304800,0.715800,-0.000000,-0.000059,1.000000 -0.532800,0.253200,0.744200,0.000000,0.045070,0.999000 0.228400,0.095350,0.277400,-0.000006,0.548300,-0.836300 0.571100,-0.161500,0.277900,0.997300,0.072950,-0.003076 0.534000,-0.172000,-0.542000,0.397100,-0.917800,0.000000 0.575600,0.300000,0.705100,0.969200,0.064130,-0.237800 -0.571500,-0.194800,-0.009147,-1.000000,0.000000,0.000000 0.304500,0.072810,0.267200,-0.001389,0.256100,-0.966600 -0.540400,-0.135500,-0.567400,-0.998900,-0.047420,-0.000002 0.245300,0.032290,0.679000,0.000000,-0.260400,0.965500 0.135300,-0.338600,0.715800,0.000000,0.000000,1.000000 0.414400,0.282400,0.693800,0.000000,-0.249200,0.968400 0.456700,-0.398600,0.709100,0.000000,-0.969400,0.245500 0.270700,0.303000,0.696600,0.000013,0.237800,-0.971300 -0.219900,0.074270,0.613500,0.000010,0.321400,0.946900 0.564600,-0.239900,-0.566600,0.140000,-0.990200,0.000004 -0.024410,0.215200,0.744300,-0.002095,-0.061110,0.998100 -0.533100,-0.022670,-0.059200,-0.953700,0.300700,0.000000 0.253700,-0.347100,0.677900,0.000000,0.000000,-1.000000 -0.177600,-0.003003,0.650500,0.000000,0.999200,-0.040260 0.042300,-0.003003,0.650500,0.000000,0.999200,-0.040260 0.526400,-0.182100,-0.161400,0.795300,-0.606300,0.000000 -0.507400,0.059820,0.722800,0.000000,-0.230400,0.973100 0.380600,-0.012830,-0.755400,0.000000,0.350500,-0.936600 0.110000,0.321300,0.737800,0.000000,-0.108400,-0.994100 0.211500,-0.186000,0.371400,0.000000,-1.000000,0.000000 -0.346800,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.473600,0.304500,0.739400,0.000000,-0.086030,-0.996300 -0.397500,-0.003331,-0.651900,0.000000,1.000000,0.000000 -0.245300,-0.186000,-0.736500,0.000000,-1.000000,-0.001680 -0.186100,-0.169500,0.715800,0.000000,0.000000,1.000000 0.321400,-0.186000,-0.186800,0.000000,-1.000000,0.000000 0.093040,-0.110300,0.715800,0.000000,0.000000,1.000000 0.431400,-0.003331,0.024680,0.000000,1.000000,0.000000 0.355200,-0.203300,-0.797100,0.000000,0.000000,-1.000000 -0.422900,-0.186000,-0.381300,0.000000,-1.000000,0.000000 0.296000,-0.186000,-0.322100,0.000000,-1.000000,0.000000 0.076130,-0.186000,-0.195200,0.000000,-1.000000,0.000000 0.084590,-0.003331,0.176900,0.000000,1.000000,0.000000 -0.245300,-0.003331,-0.626600,0.000000,1.000000,0.000000 0.304500,-0.003331,-0.482800,0.000000,1.000000,0.000000 -0.135300,-0.003331,-0.601200,0.000000,1.000000,0.000000 -0.456700,-0.186000,0.574400,0.000000,-1.000000,0.000000 -0.270600,-0.313300,0.677900,0.000000,0.000000,-1.000000 0.118400,-0.186000,-0.271300,0.000000,-1.000000,0.000000 -0.296000,-0.084990,-0.769600,0.000000,0.039120,-0.999200 0.194500,-0.084990,-0.769600,0.000000,0.039120,-0.999200 0.296000,0.123600,0.388600,0.000000,0.996800,-0.080380 0.118400,-0.003331,-0.668900,0.000000,1.000000,0.000000 -0.571500,-0.186400,0.379900,-1.000000,0.000000,0.000000 -0.544000,-0.101700,0.016220,-0.999500,-0.031770,0.000028 0.490800,0.029270,0.396800,0.956500,-0.291600,0.000000 0.219900,0.109700,0.733700,0.000021,-0.145100,0.989400 -0.281900,-0.004593,0.713900,0.000000,0.713300,0.700800 0.532800,0.151600,0.674400,0.000006,0.047690,-0.998900 0.533100,-0.022670,0.554000,0.953700,0.300900,0.000000 0.338300,-0.003331,-0.550400,0.000000,1.000000,0.000000 -0.236800,-0.220200,0.677900,0.000000,0.000000,-1.000000 -0.169100,-0.059530,0.715800,0.000000,0.000000,1.000000 -0.008445,-0.003331,-0.635000,0.000000,1.000000,0.000000 -0.203000,-0.186000,-0.237500,0.000000,-1.000000,0.000000 0.270700,-0.186000,0.439100,0.000000,-1.000000,0.000000 0.490600,-0.287900,0.677900,0.000000,0.000000,-1.000000 0.422900,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.126900,-0.003331,-0.186800,0.000038,1.000000,-0.000025 -0.109900,-0.003331,-0.406700,0.000000,1.000000,0.000000 0.042300,-0.003331,-0.457400,0.000000,1.000000,0.000000 -0.253700,-0.186000,-0.499700,0.000000,-1.000000,0.000000 -0.507400,-0.186000,0.379900,0.000000,-1.000000,0.000000 -0.431300,0.042220,0.263200,0.000000,-0.108900,-0.994000 -0.533100,-0.022670,-0.482100,-0.953700,0.300700,0.000000 0.541400,-0.122600,-0.499700,0.995200,-0.098320,0.000008 0.236800,-0.235300,-0.767900,0.000000,-0.064210,0.997900 -0.541300,-0.057820,0.388400,-0.986800,0.161800,0.000000 0.281900,0.117600,0.543100,-0.003330,0.984500,0.175100 0.338300,-0.172400,0.670500,0.000000,-0.896200,0.443700 -0.571500,-0.169500,0.574400,-1.000000,0.004715,0.000000 0.499000,-0.126800,-0.767500,0.000000,-0.138900,-0.990300 -0.335900,-0.154300,-0.792200,-0.028030,0.929800,-0.367000 0.087410,0.000763,0.610700,0.000000,0.671900,0.740600 0.499000,-0.003331,-0.136000,0.000035,1.000000,0.000000 0.031690,0.104300,0.413700,-0.899200,0.437500,-0.000009 0.541700,-0.235100,0.532100,-0.964900,-0.262400,0.000000 0.431300,-0.025700,0.715800,0.000000,0.000059,1.000000 0.570500,-0.228600,-0.000694,0.999500,-0.032650,0.000000 -0.329800,-0.186000,0.236100,0.000000,-1.000000,0.000000 0.143800,-0.186000,0.481400,0.000000,-1.000000,0.000000 -0.329800,-0.186000,-0.059900,0.000000,-1.000000,0.000000 0.482100,-0.084910,0.715800,0.000000,0.000000,1.000000 0.321400,-0.003331,0.041590,0.000000,1.000000,0.000000 -0.059190,-0.003331,-0.364400,0.000000,1.000000,0.000000 0.042300,-0.186000,-0.330500,0.000000,-1.000000,0.000000 -0.321400,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.422900,-0.186000,-0.119100,0.000000,-1.000000,0.000000 -0.414400,-0.003331,-0.558900,0.000000,1.000000,0.000000 -0.380600,-0.186000,-0.711100,0.000000,-1.000000,0.000000 -0.456700,-0.003331,0.227700,0.000000,1.000000,0.000000 -0.296000,-0.186000,-0.643500,0.000000,-1.000000,0.000000 0.110000,-0.186000,-0.635000,0.000000,-1.000000,0.000000 -0.033820,-0.003331,0.185400,0.000000,1.000000,0.000000 0.033850,-0.186000,0.337600,0.000000,-1.000000,0.000000 -0.186100,-0.003331,0.092340,0.000000,1.000000,0.000000 0.050760,-0.186000,-0.542000,0.000000,-1.000000,0.000000 -0.084560,-0.003331,-0.685800,0.000000,1.000000,0.000000 0.245300,-0.186000,-0.415100,0.000000,-1.000000,0.000000 -0.228300,-0.003331,-0.102200,0.000000,1.000000,0.000000 -0.540900,-0.143700,-0.339000,-0.967400,0.253100,0.000000 -0.414400,-0.003331,-0.711100,0.000000,1.000000,0.000000 0.548300,-0.153300,-0.788100,-0.028400,0.972200,-0.232500 0.093040,0.135800,0.737700,-0.000010,-0.115100,0.993400 -0.304500,0.282500,0.691800,0.000000,0.218400,-0.975900 -0.033820,0.151600,0.737300,0.000000,0.113500,-0.993500 -0.544500,-0.240200,0.667700,0.603400,-0.720800,-0.341000 -0.406000,0.123000,0.481200,0.000000,0.998100,0.061830 -0.550200,-0.240200,0.422200,0.085960,-0.996300,0.000000 -0.542900,-0.069660,0.557500,-0.995200,0.098320,0.000000 0.538400,-0.172600,-0.265700,-0.625800,-0.780000,0.000000 -0.126900,-0.186000,0.549100,0.000000,-1.000000,0.000000 0.177600,-0.002834,0.176900,0.029370,0.999400,-0.019560 0.439800,-0.186000,-0.474300,0.000000,-1.000000,0.000000 -0.329800,-0.186000,0.058510,0.000000,-1.000000,0.000000 -0.236800,-0.186000,0.185400,0.000000,-1.000000,0.000000 -0.169100,-0.186000,-0.677300,0.000000,-1.000000,0.000000 -0.025360,-0.003331,-0.254400,0.000000,1.000000,0.000000 0.550000,-0.240100,0.244600,-0.092980,-0.995700,0.000000 -0.346800,-0.355600,0.715800,0.000000,0.000000,1.000000 0.539500,-0.051350,-0.550400,0.987000,0.160500,0.000004 0.397500,-0.240300,-0.778800,0.000000,-1.000000,-0.000534 -0.529200,-0.176800,-0.525100,-0.788200,-0.615400,0.000000 0.522300,-0.185400,-0.415100,0.346300,-0.938100,0.000000 0.515900,-0.135700,0.715800,0.000000,0.000000,1.000000 -0.036670,0.087080,0.608500,0.014610,0.456800,0.889400 0.491600,-0.238000,-0.712300,0.694000,-0.121700,-0.709600 -0.028720,0.089840,0.274700,0.423300,0.629800,-0.651300 -0.571500,-0.220200,-0.432000,-1.000000,-0.000178,0.000000 0.287600,-0.003331,0.227700,0.000000,1.000000,0.000000 -0.422900,0.122800,0.397000,0.000000,0.997900,-0.064720 -0.367700,0.016570,0.713100,-0.451100,-0.023360,0.892200 0.050760,0.312300,0.741100,0.000018,0.096930,0.995300 -0.059180,0.317000,0.700300,0.000000,0.264800,-0.964300 -0.109900,-0.059530,0.715800,0.000000,0.000000,1.000000 0.169200,0.194200,0.743400,0.000000,-0.059440,0.998200 -0.571400,-0.235100,-0.643500,-0.986900,-0.161200,0.000000 -0.380600,0.295500,0.742200,0.000000,0.074740,0.997200 -0.534700,-0.172100,-0.155800,-0.395200,-0.918600,0.000000 -0.543600,-0.109800,-0.449000,-0.998000,-0.062630,0.000013 -0.431300,0.109500,0.301400,0.000000,0.977500,-0.211100 0.177600,0.262400,0.690000,0.000000,-0.188600,0.982000 0.025390,-0.220200,0.677900,0.000000,0.000000,-1.000000 0.526000,-0.182000,-0.026070,0.795300,-0.606300,0.000000 -0.143800,0.051820,0.721200,-0.000016,-0.247500,0.968900 0.219900,0.177700,0.678400,0.000000,-0.100800,0.994900 -0.055300,0.087630,0.676300,0.028690,0.013910,0.999500 0.541600,-0.228700,-0.110600,-1.000000,-0.007436,0.000000 -0.143800,-0.279400,0.677900,0.000000,0.000000,-1.000000 0.016920,-0.347100,0.715800,0.000000,0.000000,1.000000 -0.414400,-0.211800,0.677900,0.000000,0.000000,-1.000000 -0.541300,-0.057820,0.202300,-0.986800,0.161800,0.000000 -0.143800,0.288400,0.693100,0.000000,0.228900,-0.973500 -0.540100,-0.051220,-0.550400,-0.983400,0.181700,0.000003 -0.496100,0.058550,0.608200,-0.987700,0.094850,0.124000 0.095150,0.076250,0.615400,0.003046,0.343000,0.939300 0.532800,-0.022770,-0.477900,0.961600,0.274500,0.000037 0.507500,-0.186000,0.363000,0.000000,-1.000000,0.000000 0.321400,-0.003331,-0.254400,0.000000,1.000000,0.000000 0.439800,-0.186000,-0.237500,0.000000,-1.000000,0.000000 0.490600,-0.186000,-0.347500,0.000000,-1.000000,0.000000 0.372200,-0.186000,-0.584300,0.000000,-1.000000,0.000000 0.507500,-0.380900,0.677900,0.000000,-0.013730,-0.999900 -0.430600,0.042000,0.617100,0.000000,-0.112400,0.993700 -0.236800,-0.084910,0.715800,-0.000000,-0.000059,1.000000 0.067640,-0.003000,0.050080,-0.042580,0.998400,0.036010 -0.372100,-0.032060,-0.761500,0.000000,0.265400,-0.964100 0.177600,-0.186000,-0.465900,0.000000,-1.000000,0.000000 -0.126900,-0.186000,0.227700,0.000000,-1.000000,0.000000 0.143800,-0.003331,-0.449000,0.000000,1.000000,0.000000 0.177600,-0.003331,-0.042980,0.000000,1.000000,0.000000 -0.448200,0.052310,0.719300,0.000000,0.245400,-0.969400 -0.543000,-0.117300,-0.651900,-0.995600,-0.093250,-0.000006 -0.507400,-0.003332,-0.702700,0.019760,0.999800,-0.000096 -0.431300,-0.186000,0.244600,0.000000,-1.000000,0.000000 0.363700,-0.254100,0.677900,0.000000,0.000000,-1.000000 -0.033820,-0.186000,-0.694200,0.000000,-1.000000,0.000000 -0.431300,-0.186000,-0.220600,0.000000,-1.000000,0.000000 0.186100,-0.186000,0.574400,0.000000,-1.000000,0.000000 -0.186100,-0.003331,-0.516600,0.000000,1.000000,0.000000 0.228400,-0.003331,-0.364400,0.000000,1.000000,0.000000 -0.143800,-0.186000,0.168500,0.000000,-1.000000,0.000000 -0.160700,-0.003331,-0.381300,0.000000,1.000000,0.000000 -0.008445,-0.003331,-0.694200,0.000000,1.000000,0.000000 0.000015,-0.186000,-0.609600,0.000000,-1.000000,0.000000 0.287600,-0.186000,0.033140,0.000000,-1.000000,0.000000 -0.397500,-0.186000,-0.059900,0.000000,-1.000000,0.000000 -0.084560,-0.003331,-0.279800,0.000000,1.000000,0.000000 0.468900,0.110500,0.302100,0.379900,0.905000,-0.191500 0.203000,0.106100,0.595800,0.000000,0.826400,0.563100 -0.087370,-0.004913,0.661800,0.000000,0.740000,0.672600 0.540900,-0.143700,0.481400,0.961900,0.273500,0.000000 -0.515900,-0.003000,-0.432000,0.030230,0.999500,0.000000 0.298800,0.032250,0.714700,-0.003908,-0.281900,-0.959400 0.076120,0.244800,0.744300,-0.009909,0.017240,0.999800 -0.203000,0.085650,0.728900,-0.000007,-0.201400,0.979500 0.372100,-0.347100,0.715800,-0.003242,-0.013120,0.999900 0.152300,0.019290,0.612000,0.000000,-0.407300,0.913300 -0.245300,0.317000,0.700300,0.000000,0.264800,-0.964300 0.532800,-0.022760,-0.697800,0.961600,0.274500,-0.000003 -0.515900,-0.143400,-0.767400,-0.000021,0.337400,-0.941400 0.515900,0.092860,0.675900,0.000000,0.020190,0.999800 0.174800,-0.172700,0.674700,0.000000,-0.794600,-0.607200 0.515900,-0.186000,-0.643500,0.046330,-0.998900,-0.001749 -0.491200,0.021580,0.526500,-0.931000,-0.365000,0.000013 0.338300,0.108800,0.731200,0.000000,0.170500,-0.985400 -0.522100,-0.002889,0.633600,-0.209900,0.977700,0.002215 -0.566300,0.353100,0.719300,0.820200,-0.507700,-0.263800 -0.121200,-0.172700,0.674700,0.000000,-0.794600,-0.607200 0.036670,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 0.321400,0.254200,0.688100,-0.000008,-0.199200,0.980000 -0.542700,-0.178100,0.498300,0.969000,-0.247100,0.000000 0.507500,-0.003332,-0.271300,-0.019460,0.999800,0.000000 0.546000,-0.085120,0.668100,0.906200,0.028360,-0.421900 -0.277000,0.094040,0.676200,-0.000030,0.023380,0.999700 -0.457900,0.119200,0.521500,-0.007507,0.991400,0.131000 -0.571500,-0.211800,-0.339000,-1.000000,0.000000,0.000000 0.543600,-0.149400,0.154400,0.673400,0.739300,0.000000 -0.543500,-0.058220,0.671900,-0.771800,0.320300,-0.549300 0.304500,-0.355600,0.715800,0.000000,0.000000,1.000000 -0.177600,-0.380900,0.715800,0.000000,0.005438,1.000000 -0.490500,-0.237100,0.677900,0.000000,0.000000,-1.000000 -0.541300,0.066810,0.677100,-0.000002,0.062740,0.998000 -0.472900,0.234300,0.682700,0.000000,0.155100,-0.987900 -0.312900,0.042220,0.263200,0.000000,-0.108900,-0.994000 0.526300,-0.005567,0.655300,0.750000,0.659700,0.048880 -0.542900,-0.069660,0.109300,-0.995200,0.098320,0.000000 -0.109900,0.152400,0.739400,0.000000,-0.112900,0.993600 -0.253700,0.109500,0.301400,-0.009979,0.980300,-0.197400 -0.304500,0.052310,0.719300,-0.000000,0.245400,-0.969400 -0.571500,-0.169500,0.160000,-1.000000,0.003700,0.000000 -0.571500,-0.169500,-0.482800,-1.000000,0.003700,0.000000 0.093050,0.194600,0.680000,-0.000012,-0.102000,0.994800 0.482100,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.059220,0.120800,0.522900,-0.000026,0.992500,0.122300 0.568700,-0.238800,-0.355200,0.678800,-0.734400,0.000000 -0.262200,-0.240200,-0.772500,0.000000,-0.993700,0.112400 0.389100,0.312300,0.740900,-0.013180,0.103500,0.994500 0.541500,-0.063690,-0.164200,0.987200,0.159500,-0.000021 0.219900,-0.389600,0.678200,0.000000,-0.160800,-0.987000 0.338300,-0.186000,-0.279800,0.000000,-1.000000,0.000000 0.372200,-0.186000,0.379900,0.000000,-1.000000,0.000000 0.186100,-0.186000,-0.525100,0.000000,-1.000000,0.000000 0.042300,-0.186000,0.456000,0.000000,-1.000000,0.000000 -0.169100,-0.186000,-0.127600,0.000000,-1.000000,0.000000 0.093050,0.042060,0.677100,0.000000,-0.093690,-0.995600 -0.380600,-0.186000,0.033140,0.000000,-1.000000,0.000000 -0.067650,-0.003331,-0.042980,0.000000,1.000000,0.000000 -0.439800,-0.186000,0.050050,0.000000,-1.000000,0.000000 -0.448200,-0.003331,0.016220,0.000000,1.000000,0.000000 0.296000,-0.186000,0.092340,0.000000,-1.000000,0.000000 -0.363700,-0.003331,0.092340,0.000000,1.000000,0.000000 -0.076100,-0.186000,0.050050,0.000000,-1.000000,0.000000 0.262200,-0.003331,-0.152900,0.000000,1.000000,0.000000 0.439800,-0.003331,0.143100,0.000000,1.000000,0.000000 0.228400,-0.186000,-0.212100,0.000000,-1.000000,0.000000 0.245300,-0.003331,-0.246000,0.000000,1.000000,0.000000 0.203000,-0.186000,0.253000,0.000000,-1.000000,0.000000 -0.279100,-0.003331,0.176900,0.000000,1.000000,0.000000 0.363700,-0.186000,0.549100,0.000000,-1.000000,0.000000 -0.431300,-0.186000,0.506800,0.000000,-1.000000,0.000000 -0.473600,-0.186000,-0.499700,0.000000,-1.000000,0.000000 0.570800,-0.186400,-0.127600,1.000000,0.000059,0.000000 -0.016900,-0.186000,0.143100,0.000000,-1.000000,0.000000 -0.160700,-0.003331,0.041590,0.000000,1.000000,0.000000 0.008473,-0.186000,-0.508200,0.000000,-1.000000,0.000000 -0.355200,-0.127200,0.715800,0.000000,0.000000,1.000000 -0.355200,-0.186000,0.134600,0.000000,-1.000000,0.000000 -0.542300,-0.211800,0.202300,0.999800,-0.019630,0.000003 0.321400,0.125700,0.439100,0.000000,1.000000,-0.004263 -0.523600,-0.172100,0.670400,-0.137600,-0.929400,0.342600 -0.126900,-0.186000,0.422200,0.000000,-1.000000,0.000000 -0.228400,-0.287900,0.715800,0.000000,0.000000,1.000000 -0.067650,0.122800,0.397000,0.000000,0.997900,-0.064720 0.267900,0.081290,0.676300,0.000000,0.082390,0.996600 -0.015500,0.050460,0.320700,0.999700,-0.023670,-0.000009 0.431400,0.101300,0.673700,0.000000,-0.018670,-0.999800 -0.160700,0.193800,0.741000,0.000000,0.058820,-0.998300 0.143800,0.122100,0.371900,0.000000,0.994500,-0.104800 -0.050730,0.262200,0.741900,0.000000,-0.041020,-0.999200 -0.143800,0.109600,0.675900,0.000000,0.008621,1.000000 0.549800,0.059750,0.723200,-0.009879,-0.250500,0.968100 0.389100,0.112300,0.573200,0.000000,0.980300,0.197300 0.456000,-0.181900,-0.763400,0.000000,-0.912600,0.408800 -0.571500,-0.228600,0.312200,-1.000000,-0.005917,0.000000 0.160700,-0.134700,-0.766300,0.000000,-0.009845,-1.000000 -0.439800,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.346800,-0.003331,-0.068360,0.000000,1.000000,0.000000 0.439800,-0.186000,0.168500,0.000000,-1.000000,0.000000 0.465200,-0.186000,-0.161400,0.000000,-1.000000,0.000000 0.431400,-0.186000,-0.355900,0.000000,-1.000000,0.000000 -0.389000,-0.186000,-0.474300,0.000000,-1.000000,0.000000 -0.279100,-0.186000,0.396800,0.000000,-1.000000,0.000000 -0.245300,-0.003331,-0.567400,0.000000,1.000000,0.000000 0.160700,-0.287900,0.677900,0.000000,0.000000,-1.000000 0.542800,-0.077040,-0.601200,0.996000,0.089340,-0.000001 0.016930,-0.186000,0.050050,0.000000,-1.000000,0.000000 0.008473,-0.186000,-0.059900,0.000000,-1.000000,0.000000 0.084580,-0.355600,0.715800,0.000000,0.000000,1.000000 0.093050,-0.186000,-0.482800,0.000000,-1.000000,0.000000 0.152300,-0.186000,-0.085270,0.000000,-1.000000,0.000000 0.008475,-0.304800,0.677900,0.000000,0.000000,-1.000000 -0.253700,-0.186000,0.007765,0.000000,-1.000000,0.000000 -0.042270,-0.186000,0.599800,0.000000,-1.000000,0.000000 0.050760,-0.186000,-0.711100,0.000000,-1.000000,0.000000 -0.228300,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.236800,-0.003331,-0.229100,0.000000,1.000000,0.000000 -0.406000,-0.003331,0.202300,0.000000,1.000000,0.000000 0.067680,-0.186000,0.574400,0.000000,-1.000000,0.000000 -0.372100,-0.068010,0.716200,0.003294,-0.006577,1.000000 0.059220,-0.003331,-0.719600,0.000000,1.000000,-0.000043 -0.059190,-0.186000,-0.246000,0.000000,-1.000000,0.000000 0.008471,-0.003331,0.143100,0.000000,1.000000,0.000000 -0.422900,-0.186000,-0.152900,0.000000,-1.000000,0.000000 -0.152200,-0.186000,0.100800,0.000000,-1.000000,0.000000 -0.118400,-0.186000,-0.558900,0.000000,-1.000000,0.000000 0.203000,-0.186000,-0.152900,0.000000,-1.000000,0.000000 -0.160700,-0.186000,-0.305200,0.000000,-1.000000,0.000000 0.279100,-0.186000,-0.372800,0.000000,-1.000000,0.000000 -0.304500,0.123800,0.430700,0.013110,0.999700,-0.020690 -0.482100,-0.398600,0.685300,0.000000,-0.969200,-0.246500 0.270700,-0.018850,-0.757500,0.000000,0.313400,-0.949600 0.380600,0.125600,0.456000,0.000000,0.999800,0.021250 0.253700,0.123200,0.498000,-0.003313,0.995800,0.091390 0.023080,0.013050,0.509600,-0.945800,-0.324600,-0.000005 -0.414400,0.202600,0.743500,0.000015,-0.044180,0.999000 -0.526400,-0.005258,0.024680,-0.742100,0.670300,0.000000 -0.542700,-0.194800,-0.753300,0.979700,0.000000,0.200200 0.445600,-0.321700,-0.689700,-0.907800,0.000000,0.419400 -0.084550,-0.395500,0.713900,0.000000,-0.605500,0.795800 -0.571400,-0.161400,-0.685800,-0.993100,0.117500,0.003959 -0.194500,0.211400,0.681900,0.000000,-0.120000,0.992800 0.524400,-0.194900,0.715800,0.000000,0.000000,1.000000 -0.304500,0.355400,0.717100,-0.001199,-0.902400,0.430900 0.135300,0.112600,0.573200,0.000000,0.980300,0.197400 0.538300,-0.043410,-0.381300,0.977300,0.211900,0.000000 0.144500,0.158700,0.674800,-0.000002,0.054900,-0.998500 0.279100,0.106100,0.595800,-0.001034,0.827700,0.561200 -0.525800,-0.235900,-0.678800,-0.468400,0.217700,-0.856300 0.575100,-0.262500,0.685100,0.978300,-0.000008,-0.207200 -0.539300,-0.093390,-0.769600,-0.262100,0.007881,-0.965000 0.433500,0.271700,0.743900,-0.000048,0.018320,0.999800 -0.363700,0.245900,0.686700,0.000000,-0.207600,0.978200 0.101500,-0.245600,0.677900,0.000000,0.000000,-1.000000 -0.431300,-0.313300,0.715800,0.000000,0.000000,1.000000 -0.194500,-0.254100,0.677900,0.000000,0.000000,-1.000000 0.025380,0.282400,0.693800,0.000000,-0.249000,0.968500 0.126900,0.282500,0.691800,0.000000,0.218400,-0.975900 0.243800,0.243800,0.742300,0.000000,0.004082,-1.000000 -0.194500,0.276400,0.692500,0.000000,-0.204900,0.978800 0.540700,-0.057900,0.264300,0.990800,0.135600,0.000000 0.452300,-0.254200,-0.682200,-0.561100,-0.095790,0.822200 -0.507500,0.126500,0.675700,0.000000,-0.014070,0.999900 0.245300,-0.211800,0.677900,0.000000,0.000000,-1.000000 -0.515900,-0.003000,0.270000,0.030230,0.999500,0.000000 0.465200,0.121600,0.735300,0.000000,-0.127000,0.991900 0.541600,-0.220200,-0.465900,-1.000000,0.000000,0.000000 -0.566700,-0.144100,0.677600,-0.348700,0.217700,-0.911600 -0.422900,-0.240300,-0.778800,0.000000,-1.000000,-0.000534 -0.396300,-0.153300,-0.786100,-0.000922,0.987700,-0.156100 0.211500,0.322800,0.701900,-0.000012,0.268800,-0.963200 -0.211400,-0.012830,-0.755400,0.000000,0.350500,-0.936600 0.521700,-0.002964,-0.051440,0.222500,0.974900,-0.000000 0.543500,-0.076980,0.371400,0.996000,0.089770,0.000000 -0.245300,-0.338600,0.715800,0.000000,0.000000,1.000000 -0.262200,-0.002833,-0.398200,-0.029370,0.999400,0.019580 0.287600,-0.003331,-0.677300,0.000000,1.000000,0.000000 0.279100,-0.194900,0.715800,0.000000,0.000000,1.000000 0.143800,-0.144100,0.715800,0.000000,0.000000,1.000000 0.338300,-0.186000,0.210700,0.000000,-1.000000,0.000000 -0.279100,-0.203300,0.715800,0.000000,0.000000,1.000000 0.245300,-0.003331,0.134600,0.000000,1.000000,0.000000 0.186100,-0.003331,-0.567400,0.000000,1.000000,0.000000 0.059220,-0.186000,0.236100,0.000000,-1.000000,0.000000 0.321400,-0.186000,-0.592700,0.000000,-1.000000,0.000000 0.270700,-0.186000,-0.110600,0.000000,-1.000000,0.000000 -0.571500,-0.177900,0.270000,-1.000000,0.000000,0.000000 -0.312900,-0.003331,-0.169800,0.000000,1.000000,0.000000 0.287600,-0.186000,-0.525100,0.000000,-1.000000,0.000000 -0.389000,-0.003331,-0.423600,0.000000,1.000000,0.000000 -0.194500,-0.186000,0.329200,0.000000,-1.000000,0.000000 0.126900,0.099990,0.280800,-0.000001,0.623400,-0.781900 0.406000,-0.060050,-0.767300,0.000000,0.144300,-0.989500 -0.050730,0.035890,0.677700,0.000000,-0.139600,-0.990200 -0.016900,-0.003331,0.236100,0.000000,1.000000,0.000000 0.084590,-0.186000,0.109300,0.000000,-1.000000,0.000000 -0.135300,-0.186000,-0.499700,0.000000,-1.000000,0.000000 -0.571400,-0.161400,0.109200,-0.993100,0.117400,0.003971 0.025380,-0.059530,0.715800,0.000000,0.000000,1.000000 0.067670,-0.003331,-0.161400,0.000000,1.000000,0.000000 -0.380600,-0.186000,-0.313600,0.000000,-1.000000,0.000000 -0.304500,-0.186000,0.481400,0.000000,-1.000000,0.000000 -0.439800,-0.186400,0.715800,0.000000,0.000000,1.000000 -0.482100,-0.003331,-0.152900,0.000000,1.000000,0.000000 -0.177600,-0.186000,-0.626600,0.000000,-1.000000,0.000000 0.219900,-0.186000,-0.026070,0.000000,-1.000000,0.000000 -0.473600,-0.059540,0.715800,-0.003252,-0.003258,1.000000 0.397500,-0.186000,-0.728100,0.000000,-1.000000,0.000000 0.339000,0.164400,0.675100,0.000000,0.060440,-0.998200 -0.571500,-0.203300,-0.127600,-1.000000,0.000000,0.000000 -0.016350,0.036830,0.405300,0.984800,-0.173700,0.000000 0.380600,-0.014110,0.674600,0.014830,0.890800,-0.454100 -0.372100,-0.177400,0.665300,0.000000,-0.627000,0.779000 0.524400,0.328900,0.703600,0.000000,0.273000,-0.962000 0.459500,0.032270,0.714800,0.000000,-0.211200,-0.977400 -0.439800,-0.009748,0.664700,0.000000,0.660100,0.751100 0.143800,0.079480,0.727900,0.000000,-0.213600,0.976900 -0.008439,-0.002815,0.656900,0.001898,0.985700,0.168500 0.521800,-0.185300,-0.076810,0.358400,-0.933500,0.009843 -0.448200,0.101700,0.732000,0.000000,-0.174800,0.984600 0.524400,0.218200,0.742000,0.000052,0.029200,-0.999600 0.515900,-0.235300,-0.767600,0.011520,-0.095690,0.995300 -0.388300,0.124300,0.733700,0.000000,0.150500,-0.988600 -0.312900,0.296000,0.740100,0.000000,-0.075530,-0.997100 -0.219900,0.032710,0.715500,0.000000,-0.454100,0.890900 -0.543000,-0.117700,0.092350,-0.995600,-0.093430,-0.000006 0.253700,-0.186000,0.489900,0.000000,-1.000000,0.000000 -0.107100,0.021160,0.268400,-0.000032,-0.369900,-0.929100 -0.160700,-0.003331,-0.330500,0.000000,1.000000,0.000000 0.482100,-0.186000,0.303800,0.000000,-1.000000,0.000000 -0.531200,-0.016900,0.583600,-0.944000,0.330000,0.000000 -0.126900,-0.003331,-0.127600,0.000000,1.000000,0.000000 -0.522200,-0.185400,-0.102200,-0.328500,-0.944500,0.000000 -0.491500,0.078980,0.312200,-0.933700,0.358000,-0.000042 0.016940,0.363600,0.719600,0.000000,0.955700,-0.294500 0.439800,-0.003331,-0.694200,0.000000,1.000000,0.000000 0.541500,-0.063690,0.453200,0.987200,0.159700,0.000000 -0.025360,-0.003331,-0.203700,0.000000,1.000000,0.000000 -0.296000,-0.186000,-0.381300,0.000000,-1.000000,0.000000 -0.465200,-0.003331,-0.457400,0.000000,1.000000,0.000000 0.084590,-0.003331,-0.262900,0.000000,1.000000,0.000000 -0.076100,-0.186000,0.346100,0.000000,-1.000000,0.000000 -0.542300,-0.123700,0.205100,-0.992000,-0.126400,0.000000 0.406000,-0.398700,0.701300,0.000000,-1.000000,0.005671 0.219900,-0.355600,0.715800,0.000000,0.000000,1.000000 -0.262200,0.228100,0.744200,0.000000,0.008479,1.000000 0.544400,-0.239000,0.103600,-0.514100,-0.857700,0.000000 -0.542600,-0.235300,-0.017610,0.975700,-0.219300,0.000000 -0.253700,0.124200,0.430700,-0.013160,0.999800,-0.017370 -0.550500,-0.152500,0.008480,-0.219700,0.975600,-0.000008 0.143800,0.125600,0.456000,0.000000,0.999800,0.021250 0.138200,0.012490,0.275200,0.000000,-0.352800,-0.935700 0.543600,-0.149400,-0.327700,0.673700,0.739000,0.000000 -0.152200,0.312900,0.738700,0.000000,-0.097940,-0.995200 0.279100,-0.186600,-0.768400,0.000000,-0.354700,0.935000 0.558200,-0.240300,-0.626600,0.026550,-0.999600,0.000000 0.143800,-0.037940,-0.763000,0.000000,0.235500,-0.971900 -0.531200,-0.016900,0.431400,-0.944000,0.330000,0.000000 0.469600,0.121400,0.385700,0.637800,0.768800,-0.046900 -0.439800,0.169200,0.677800,0.000000,-0.088990,0.996000 0.389100,0.075340,0.676700,0.000000,0.105300,0.994400 0.484500,-0.377700,-0.723700,0.546400,0.470100,-0.693100 0.541600,-0.194800,0.134600,-1.000000,0.000000,0.000000 -0.084570,0.202300,0.678400,0.000000,0.112600,-0.993600 -0.030430,0.096940,0.377100,0.841600,0.540200,0.000000 0.485200,0.088630,0.419400,0.888000,0.459800,0.000000 0.163500,0.032490,0.678400,0.000000,-0.343300,-0.939200 0.025390,-0.060050,-0.767300,0.000000,0.144300,-0.989500 -0.355900,0.362400,0.732000,0.000000,0.852800,0.522300 -0.542300,-0.123700,-0.073990,-0.992000,-0.126400,0.000012 0.541000,-0.057880,-0.327700,0.988100,0.153300,0.009651 0.389100,-0.003331,0.126200,0.000000,1.000000,0.000000 0.236800,-0.003332,0.236100,0.016370,0.999800,-0.013100 0.110000,-0.003331,-0.355900,0.000000,1.000000,0.000000 0.296000,-0.304800,0.716200,-0.006587,-0.016390,0.999800 -0.338300,-0.003331,-0.119100,0.000000,1.000000,0.000000 0.253700,-0.186000,0.151500,0.000000,-1.000000,0.000000 -0.448200,-0.186000,0.160000,0.000000,-1.000000,0.000000 -0.515900,-0.152600,0.715800,0.000000,0.000000,1.000000 -0.346800,-0.003331,0.185400,0.000000,1.000000,0.000000 0.126900,-0.003331,0.202300,0.000000,1.000000,0.000000 -0.236800,-0.186000,0.117700,0.000000,-1.000000,0.000000 -0.465200,-0.186000,-0.415100,0.000000,-1.000000,0.000000 -0.194500,-0.186000,0.599800,0.000000,-1.000000,0.000000 0.160700,-0.186000,0.532100,0.000000,-1.000000,0.000000 0.321400,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.346800,-0.003331,-0.618100,0.000000,1.000000,0.000000 0.439800,-0.186000,0.481400,0.000000,-1.000000,0.000000 0.228400,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.025380,-0.271000,0.715800,0.000000,0.000000,1.000000 -0.016900,-0.347100,0.677900,0.000000,0.000000,-1.000000 0.000015,-0.186000,-0.440500,0.000000,-1.000000,0.000000 -0.033830,-0.152600,0.715800,-0.000000,-0.000059,1.000000 -0.059190,-0.003331,-0.533500,0.000000,1.000000,0.000000 0.380600,-0.186000,0.092340,0.000000,-1.000000,0.000000 0.059220,-0.186000,-0.059900,0.000000,-1.000000,0.000000 -0.067650,-0.003331,0.075420,0.000000,1.000000,0.000000 0.194500,0.125000,0.472800,0.000000,0.998900,0.046910 -0.507400,-0.355500,0.677900,0.000000,0.000000,-1.000000 -0.262200,-0.003331,-0.288300,0.000000,1.000000,0.000000 -0.507400,-0.186000,0.058510,0.000000,-1.000000,0.000000 -0.042270,-0.186000,-0.347500,0.000000,-1.000000,0.000000 -0.571500,-0.169500,-0.051430,-1.000000,0.003699,-0.000000 0.211500,-0.186000,-0.694200,0.000000,-1.000000,0.000000 -0.211400,0.304500,0.739400,0.000000,-0.086030,-0.996300 -0.231200,-0.004913,0.661800,0.000000,0.740000,0.672600 0.571000,-0.161000,-0.508200,0.996700,0.081650,0.000000 -0.573100,-0.356200,0.712500,-0.986300,0.026570,0.162600 0.346800,0.337200,0.738300,0.000000,0.149000,0.988800 0.322100,0.058880,0.675600,0.000000,-0.069940,-0.997600 -0.050740,-0.042620,0.715800,0.000000,0.000000,1.000000 0.493300,0.042630,0.320700,0.991500,-0.130000,-0.009859 0.016930,-0.172400,0.670500,0.000000,-0.896200,0.443700 -0.490100,-0.265300,-0.711000,-0.735400,0.000907,-0.677600 -0.571500,-0.169500,-0.584300,-1.000000,0.003700,0.000000 0.211500,0.025900,0.614700,0.000000,-0.350200,0.936700 -0.558200,0.101700,0.732300,0.029420,-0.177700,0.983600 -0.439800,-0.076590,-0.769100,0.000000,0.074970,-0.997200 -0.211400,-0.177400,0.665300,0.000000,-0.627000,0.779000 -0.211400,0.095390,0.276800,0.000000,0.570300,-0.821500 0.507500,0.194700,0.679700,0.000000,-0.102100,0.994800 0.270700,0.144100,0.738800,-0.000003,-0.122900,0.992400 -0.279100,-0.003331,-0.711100,0.000000,1.000000,0.000000 0.473600,0.042810,0.618400,0.000221,-0.125000,0.992200 0.540900,-0.129300,-0.736500,0.992200,-0.124500,0.003317 -0.346700,-0.398700,0.692800,0.000000,-1.000000,-0.006052 -0.464500,0.343400,0.707900,0.000000,0.295900,-0.955200 0.507500,-0.003332,0.219200,-0.019460,0.999800,0.000000 -0.389700,0.082500,0.676300,-0.000259,0.023960,0.999700 -0.329800,-0.330200,0.677900,0.000000,0.000000,-1.000000 0.465200,-0.304800,0.715800,0.000000,0.000000,1.000000 -0.109900,-0.220200,0.715800,0.000000,0.000000,1.000000 0.570000,-0.234900,-0.735800,0.985000,-0.172500,0.003849 0.507500,-0.052010,-0.766000,0.000000,0.178000,-0.984000 -0.414400,0.323000,0.702000,0.000000,0.268800,-0.963200 -0.494100,-0.387300,-0.683700,-0.871700,-0.451900,0.189500 -0.542600,-0.235300,-0.542000,0.975700,-0.219300,0.000000 0.571100,-0.161500,-0.669300,0.997300,0.073020,-0.003079 0.062030,0.078810,0.674500,0.000000,-0.054110,-0.998500 -0.176900,0.050380,0.617600,0.000000,-0.002265,1.000000 0.197800,-0.153700,-0.790400,0.019370,0.938700,-0.344100 -0.540600,-0.010720,0.679000,0.000342,0.276700,-0.960900 -0.161400,0.362400,0.732000,0.000560,0.843400,0.537300 -0.228300,-0.186000,0.413700,0.000000,-1.000000,0.000000 -0.203000,-0.003331,-0.059900,0.000000,1.000000,0.000000 0.084590,-0.003331,-0.635000,0.000000,1.000000,0.000000 0.571000,-0.161000,-0.575800,0.996700,0.081550,0.000522 0.253700,-0.003331,-0.440500,0.000000,1.000000,0.000000 0.152300,-0.186000,0.371400,0.000000,-1.000000,0.000000 0.211500,-0.186000,-0.271300,0.000000,-1.000000,0.000000 0.363700,-0.186000,0.472900,0.000000,-1.000000,0.000000 0.456700,-0.186000,0.346100,0.000000,-1.000000,0.000000 -0.397500,-0.186000,-0.567400,0.000000,-1.000000,0.000000 0.287600,-0.003331,-0.288300,0.000000,1.000000,0.000000 -0.343900,0.101300,0.598900,0.000004,0.690700,0.723100 -0.067640,0.185300,0.740400,0.000000,0.069350,-0.997600 0.540700,-0.057900,-0.057080,0.986800,0.161900,0.000000 -0.042270,-0.186000,-0.042980,0.000000,-1.000000,0.000000 -0.067650,-0.186000,-0.736500,0.000000,-1.000000,-0.001680 0.067680,-0.186000,0.371400,0.000000,-1.000000,0.000000 0.528800,-0.176600,0.261500,0.779200,-0.626800,0.000000 0.499000,-0.002999,0.599800,0.025720,0.999200,-0.029460 0.541300,-0.347100,0.677900,0.000000,0.000000,-1.000000 -0.397500,-0.003331,-0.220600,0.000000,1.000000,0.000000 -0.279100,-0.186000,-0.203700,0.000000,-1.000000,0.000000 0.406000,-0.161000,0.715800,0.000000,0.000000,1.000000 0.110000,-0.186000,0.219200,0.000000,-1.000000,0.000000 0.541600,-0.186400,0.050060,-1.000000,0.004909,0.000000 0.456700,0.261200,0.687400,0.000000,0.189500,-0.981900 -0.186100,-0.110200,-0.769200,0.000000,-0.067990,-0.997700 -0.543000,-0.117700,-0.398200,-0.995600,-0.093450,0.000000 -0.118400,-0.003332,-0.728000,0.000000,0.999800,0.019670 0.541700,-0.235100,0.193800,-0.964900,-0.262400,0.000000 0.036000,0.105900,0.288600,-0.264600,0.912100,-0.313000 -0.203000,0.118000,0.673600,0.000000,0.003522,-1.000000 0.363700,-0.149300,-0.771500,-0.000010,0.719100,-0.694900 -0.200900,0.117600,0.533400,0.000000,0.986200,0.165800 0.526300,-0.182100,0.532100,0.777800,-0.628500,0.000000 -0.459500,-0.172700,0.674700,0.000000,-0.794600,-0.607100 -0.541300,0.160700,0.740000,-0.000069,-0.102800,0.994700 -0.126800,0.262200,0.741900,0.000000,-0.041020,-0.999200 0.570800,-0.194900,-0.034520,1.000000,0.000000,0.000000 0.528800,-0.176600,0.312200,0.779200,-0.626800,0.000000 -0.431300,-0.194900,-0.768300,0.000000,0.005809,1.000000 -0.499000,-0.012830,-0.755400,0.000916,0.347800,-0.937600 0.025480,0.000911,0.278300,-0.460000,0.765600,-0.449700 0.570800,-0.186400,-0.339000,0.999800,-0.019710,-0.000009 -0.135300,-0.194900,-0.768300,-0.009940,-0.013470,0.999900 -0.543600,-0.109800,-0.262900,-0.997900,-0.065100,0.000011 -0.287500,-0.002730,0.657000,0.000000,0.986200,0.165700 -0.042260,0.363600,0.719600,0.000000,0.955700,-0.294500 0.456700,0.320700,0.740200,0.000000,0.126700,0.991900 -0.203000,0.007963,0.271100,-0.000025,0.183600,-0.983000 -0.219900,-0.220200,-0.768300,0.000000,0.019560,0.999800 -0.543600,-0.109800,0.464500,-0.997900,-0.065100,0.000013 0.482100,-0.003331,-0.322100,0.000000,1.000000,0.000000 -0.202300,0.215300,0.744200,0.000000,-0.063170,0.998000 -0.526700,-0.182200,-0.378500,-0.778100,-0.628100,0.000000 -0.245300,0.117900,0.351900,0.009711,0.986600,-0.162600 -0.177600,0.120700,0.372000,-0.000012,0.994700,-0.102700 -0.253000,0.136300,0.735400,0.000000,0.133800,-0.991000 -0.449800,-0.330200,-0.694500,0.999900,0.000000,0.012680 0.570900,0.253700,0.699500,-0.919400,-0.056990,0.389100 0.304500,0.312300,0.741100,0.000015,0.077080,0.997000 -0.532800,0.321300,0.737800,0.000000,-0.108400,-0.994100 0.540600,-0.143600,-0.229100,0.964200,0.265300,0.000000 0.200200,0.023220,0.270000,0.000000,-0.377600,-0.926000 0.076130,0.316600,0.702200,0.000000,-0.293100,0.956100 -0.543500,-0.077000,-0.711100,-0.997700,0.068470,-0.000006 -0.569800,-0.239000,0.078250,-0.636600,-0.771200,0.000000 0.558400,-0.152700,0.583600,0.032770,0.999500,-0.000000 0.050050,0.065040,0.617900,0.000001,0.150700,0.988600 -0.491300,0.021820,0.332000,-0.931100,-0.364800,-0.000770 -0.526400,-0.005258,0.100800,-0.742100,0.670300,0.000000 -0.536700,-0.035470,-0.009146,-0.969400,0.245300,0.000000 -0.350300,-0.181800,-0.757600,-0.000018,-0.985900,-0.167500 -0.016500,0.063380,0.495500,0.985700,0.168700,-0.000253 0.570500,-0.203300,-0.389700,1.000000,0.000000,0.000000 -0.448200,-0.347100,0.677900,0.000000,0.000000,-1.000000 -0.076100,-0.296300,0.677900,0.000000,0.000000,-1.000000 -0.050730,0.042220,0.263200,0.000000,-0.108900,-0.994000 0.544400,-0.239000,0.408100,-0.514100,-0.857700,0.000000 -0.143800,-0.220200,0.677900,0.000000,0.000000,-1.000000 0.372200,0.073510,0.726200,0.000000,-0.216400,0.976300 0.329900,-0.110200,-0.769200,0.000000,-0.067990,-0.997700 0.546400,-0.148000,0.674300,0.376400,0.538000,-0.754200 0.541300,0.135800,0.737700,-0.000032,-0.155200,0.987900 -0.558200,0.311000,0.698700,-0.004438,0.253200,-0.967400 -0.543500,-0.077030,-0.499700,-0.997700,0.067220,0.000037 -0.076140,0.039410,0.715900,-0.000029,0.236700,-0.971600 -0.135300,0.113600,0.556600,-0.000038,0.984500,0.175400 0.515900,-0.003004,0.075430,-0.025750,0.999700,0.000000 0.539800,-0.135400,0.066960,0.999800,-0.020650,0.000000 0.471800,0.117200,0.481300,0.961200,0.275900,0.006655 0.025390,-0.194900,0.716200,0.006580,0.016360,0.999800 0.228400,-0.279400,0.677900,0.000000,0.000000,-1.000000 -0.124000,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 -0.540600,0.158700,0.674800,0.000000,0.054900,-0.998500 0.033840,0.160800,0.676900,0.000000,-0.061390,0.998100 -0.143800,0.035890,0.677700,0.000000,-0.139600,-0.990200 0.539800,-0.135400,-0.042990,0.999800,-0.020650,0.000000 0.304500,-0.254100,0.715800,0.000000,0.000000,1.000000 -0.186100,-0.186000,-0.085270,0.000000,-1.000000,0.000000 0.542300,-0.069710,0.549100,0.989100,0.147500,0.000000 -0.383700,0.250000,0.742300,0.000000,0.004143,-1.000000 -0.499000,-0.003331,-0.651900,-0.000044,1.000000,0.000000 0.270700,-0.003331,-0.626600,0.000000,1.000000,0.000000 -0.338300,-0.003331,-0.271300,0.000000,1.000000,0.000000 -0.186100,-0.186000,-0.406700,0.000000,-1.000000,0.000000 -0.465200,-0.186000,0.430700,0.000000,-1.000000,0.000000 0.482100,-0.177900,0.715800,0.000000,0.000000,1.000000 -0.363700,-0.237100,0.715800,0.000000,0.000000,1.000000 -0.465200,-0.237100,0.715800,0.000000,0.000000,1.000000 0.363700,-0.279400,0.715800,0.000000,0.000000,1.000000 0.524400,-0.067990,0.715800,0.000000,0.000000,1.000000 0.016930,-0.186000,0.295300,0.000000,-1.000000,0.000000 -0.025360,-0.186000,0.193800,0.000000,-1.000000,0.000000 -0.084560,-0.186000,0.506800,0.000000,-1.000000,0.000000 -0.203000,-0.127200,0.716200,0.003294,-0.006577,1.000000 -0.422900,-0.003000,-0.609600,-0.042580,0.998400,0.036010 0.499000,-0.003331,-0.449000,0.000035,1.000000,0.000000 0.093040,-0.177900,0.715800,0.000000,0.000000,1.000000 0.406000,-0.003331,-0.254400,0.000000,1.000000,0.000000 0.279100,-0.186000,0.227700,0.000000,-1.000000,0.000000 -0.389000,-0.186000,-0.660400,0.000000,-1.000000,0.000000 0.287600,-0.186000,-0.660400,0.000000,-1.000000,0.000000 0.143800,-0.228700,0.677900,0.000000,0.000000,-1.000000 0.135300,-0.186000,-0.220600,0.000000,-1.000000,0.000000 0.507500,-0.245600,0.677900,0.000000,0.000000,-1.000000 0.228400,-0.186000,0.591300,0.000000,-1.000000,0.000000 -0.414400,-0.003331,-0.144500,0.000000,1.000000,0.000000 -0.262200,-0.003331,0.219200,0.000000,1.000000,0.000000 -0.346800,-0.003331,-0.203700,0.000000,1.000000,0.000000 -0.152200,-0.003331,0.134600,0.000000,1.000000,0.000000 -0.253700,-0.186000,0.227700,0.000000,-1.000000,0.000000 0.372200,-0.186000,-0.102200,0.000000,-1.000000,0.000000 -0.262200,-0.003331,-0.339000,0.000000,1.000000,0.000000 -0.312900,-0.186000,-0.533500,0.000000,-1.000000,0.000000 -0.524400,-0.237100,0.715800,0.000000,0.000000,1.000000 -0.406000,-0.186000,0.456000,0.000000,-1.000000,0.000000 0.380600,-0.186000,-0.415100,0.000000,-1.000000,0.000000 0.152300,-0.186000,-0.618100,0.000000,-1.000000,0.000000 0.380600,-0.186000,0.295300,0.000000,-1.000000,0.000000 0.499000,-0.186000,0.608300,0.000000,-1.000000,0.000000 -0.372100,-0.287900,0.677900,0.000000,0.000000,-1.000000 0.482100,-0.003331,-0.178300,0.000000,1.000000,0.000000 -0.152200,-0.003331,-0.558900,0.000000,1.000000,0.000000 0.397500,-0.003331,-0.102200,0.000000,1.000000,0.000000 -0.270600,-0.003331,0.126200,0.000000,1.000000,0.000000 -0.008443,-0.186000,0.354500,0.000000,-1.000000,0.000000 -0.008445,-0.003331,-0.000695,0.000000,1.000000,0.000000 -0.152200,-0.186000,-0.042980,0.000000,-1.000000,0.000000 0.093050,-0.003331,-0.567400,0.000000,1.000000,0.000000 -0.059200,-0.228700,0.715800,0.000000,0.000000,1.000000 0.422900,-0.186000,-0.017610,0.000000,-1.000000,0.000000 -0.033820,-0.186000,0.033140,0.000000,-1.000000,0.000000 0.025390,-0.194800,-0.797100,0.000000,0.000000,-1.000000 -0.228300,0.108400,0.582700,0.000000,0.985800,0.167800 0.372200,-0.003331,-0.347500,0.000000,1.000000,0.000000 0.211500,-0.186000,0.472900,0.000000,-1.000000,0.000000 -0.484900,0.259100,0.743600,0.000000,0.063630,0.998000 0.076840,-0.010530,0.679100,0.000000,0.635300,-0.772300 0.126900,0.363600,0.719600,0.000000,0.955700,-0.294500 0.473600,-0.003331,0.041590,0.000000,1.000000,0.000000 0.338300,0.100000,0.280800,0.000000,0.623400,-0.781900 -0.008452,0.237800,0.685300,0.000000,-0.167000,0.986000 -0.490500,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.389000,-0.186000,-0.415100,0.000000,-1.000000,0.000000 0.543600,-0.149400,-0.116300,0.673400,0.739300,0.000009 -0.507400,-0.228700,-0.797100,0.000000,-0.013670,-0.999900 -0.395400,0.108500,0.583800,0.000000,0.975100,0.221900 0.448300,-0.134700,-0.766300,0.000000,-0.009842,-1.000000 -0.206500,0.358900,0.734900,0.000001,0.354000,0.935300 -0.542600,-0.235300,-0.229100,0.975700,-0.219300,0.000000 0.543700,-0.101600,0.599800,0.998800,-0.047990,0.003292 -0.076110,-0.182700,0.662300,0.000000,-0.693700,0.720300 0.414400,0.328900,0.703600,0.000000,0.273000,-0.962000 0.270700,-0.262500,0.677900,0.000000,0.000000,-1.000000 -0.270600,-0.172400,0.670500,0.000000,-0.896200,0.443700 0.406700,0.136300,0.735400,0.000000,0.133800,-0.991000 -0.571500,-0.228600,0.633600,-1.000000,-0.005917,0.000000 0.042780,0.120900,0.363700,-0.073050,0.991700,-0.106200 0.381300,0.209500,0.744000,0.000000,-0.036420,0.999300 -0.329100,0.042000,0.617100,0.000000,-0.112400,0.993700 -0.135300,0.123400,0.472800,0.000000,0.998800,0.049440 0.083890,-0.149300,-0.771500,0.000000,0.781500,-0.623900 0.422900,0.228100,0.744700,-0.003006,-0.006197,1.000000 -0.439800,-0.009562,0.715900,-0.000002,0.153600,0.988100 0.422900,-0.237100,0.715800,0.000000,0.000000,1.000000 -0.329800,-0.169500,0.715800,0.000000,0.000000,1.000000 -0.507400,-0.003332,-0.229100,0.019630,0.999800,0.000000 -0.389000,0.169200,0.677800,-0.000007,-0.089000,0.996000 0.279200,0.239500,0.685300,0.000166,-0.141600,0.989900 -0.152200,-0.143100,-0.767400,0.000000,0.347100,-0.937800 0.406000,-0.220200,0.677900,0.000000,0.000000,-1.000000 -0.025360,-0.026280,-0.759800,0.000000,0.292300,-0.956300 0.541700,-0.123600,0.379900,0.992000,-0.126500,0.000000 0.000016,0.035890,0.677700,0.000000,-0.139600,-0.990200 -0.538600,-0.043310,-0.178300,-0.977300,0.212100,0.000000 -0.093030,0.288600,0.695300,0.000000,-0.232900,0.972500 -0.513100,0.032490,0.678400,0.000000,-0.343300,-0.939200 0.465200,-0.355600,0.716200,0.003294,-0.006577,1.000000 0.253700,0.058340,0.720800,0.000000,0.231800,-0.972800 0.014520,0.034880,0.447600,-0.978300,-0.207200,0.000000 0.363700,-0.003331,0.253000,0.000000,1.000000,0.000000 0.126900,0.040390,0.716100,0.000236,0.237500,-0.971400 -0.355200,0.106500,0.289200,-0.000443,0.932200,-0.362000 0.194500,0.119200,0.349300,0.000014,0.989800,-0.142700 -0.542600,-0.203300,-0.491200,1.000000,0.000000,0.000000 -0.542600,-0.203300,-0.592700,1.000000,0.000000,0.000000 0.482500,0.005949,0.295300,0.997600,0.069550,-0.004841 -0.101500,0.074350,0.724400,0.000000,0.220400,-0.975400 -0.076110,0.108200,0.295500,0.000000,0.970600,-0.240700 -0.496800,0.050460,0.447600,-1.000000,-0.002337,0.000000 0.564600,-0.239900,0.575100,0.137600,-0.990500,0.000000 0.541600,-0.211800,0.481400,-1.000000,0.000000,0.000000 0.540900,-0.129400,0.202300,0.987600,-0.156900,0.000000 -0.529200,-0.176800,0.227700,-0.788200,-0.615400,0.000000 0.570500,-0.203300,-0.246000,1.000000,0.000059,0.000000 -0.573700,0.244900,0.726500,0.974200,-0.054620,-0.219100 -0.473600,0.007959,0.271100,-0.000029,0.182900,-0.983100 0.346800,0.034680,0.266400,0.000000,-0.209700,-0.977800 -0.397500,-0.014110,0.674600,-0.004805,0.909400,-0.415900 0.549700,-0.042650,0.677400,0.241200,0.038830,-0.969700 -0.321400,-0.025700,0.715800,0.000000,0.000059,1.000000 0.253700,-0.014110,0.674600,0.000000,0.913900,-0.405900 0.389100,0.066230,0.265700,0.000096,0.175500,-0.984500 -0.355200,0.058660,0.263100,0.000000,0.104400,-0.994500 -0.522100,-0.002890,-0.575800,-0.209900,0.977700,0.000000 -0.422900,-0.364000,0.715800,0.000000,0.000000,1.000000 -0.160700,-0.009562,0.715900,0.000000,0.153500,0.988200 0.431400,0.006229,0.608200,0.000000,0.108500,0.994100 0.570500,-0.194800,0.650500,1.000000,0.000000,0.000415 -0.544100,-0.093450,-0.542000,-1.000000,0.003961,0.000000 0.076140,0.018040,0.272300,0.000000,-0.442300,-0.896900 -0.529200,-0.176800,-0.643500,-0.788200,-0.615400,0.000000 -0.431300,0.296000,0.740100,0.000000,-0.075530,-0.997100 -0.287500,-0.003331,-0.474300,-0.000094,1.000000,0.000081 0.186100,-0.003331,-0.474300,0.000000,1.000000,0.000000 -0.329800,-0.186000,0.286900,0.000000,-1.000000,0.000000 -0.431300,-0.003331,0.134600,0.000000,1.000000,0.000000 -0.304500,-0.127200,0.715800,0.000020,0.000020,1.000000 -0.406000,-0.135700,0.715800,0.000000,0.000000,1.000000 0.482100,-0.186000,-0.254400,0.000000,-1.000000,0.000000 -0.515900,-0.186000,-0.195200,-0.040710,-0.999200,0.000000 -0.321400,-0.186000,-0.119100,0.000000,-1.000000,0.000000 0.186100,-0.186000,-0.195200,0.000000,-1.000000,0.000000 0.211400,-0.211800,0.715800,0.000000,0.000000,1.000000 -0.245300,-0.186000,-0.246000,0.000000,-1.000000,0.000000 -0.279100,-0.228700,0.677900,0.000000,0.000000,-1.000000 -0.194500,-0.003331,-0.651900,0.000000,1.000000,0.000000 0.473600,-0.186000,0.210700,0.000000,-1.000000,0.000000 0.397500,-0.003331,-0.305200,0.000000,1.000000,0.000000 0.346800,-0.186000,-0.322100,0.000000,-1.000000,0.000000 0.118400,-0.186000,-0.575800,0.000000,-1.000000,0.000000 -0.118400,-0.003331,-0.499700,0.000000,1.000000,0.000000 -0.524400,-0.186400,-0.797100,0.000000,0.000000,-1.000000 0.465200,-0.003331,-0.516600,0.000000,1.000000,0.000000 -0.380600,-0.186000,-0.017610,0.000000,-1.000000,0.000000 -0.042270,-0.186000,-0.398200,0.000000,-1.000000,0.000000 0.321400,-0.186000,-0.059900,0.000000,-1.000000,0.000000 -0.270600,-0.003331,0.016220,0.000000,1.000000,0.000000 -0.456700,-0.186000,-0.042980,0.000000,-1.000000,0.000000 0.473600,-0.003331,-0.059900,0.000000,1.000000,0.000000 0.126900,-0.003331,-0.042980,0.000000,1.000000,0.000000 0.025390,-0.003331,-0.313600,0.000000,1.000000,0.000000 0.008471,-0.003331,-0.119100,0.000000,1.000000,0.000000 0.570800,-0.194900,-0.085270,0.999800,-0.019630,0.000003 -0.109900,-0.084990,-0.769600,0.000000,0.039120,-0.999200 -0.515900,-0.003000,-0.110600,0.030230,0.999500,0.000000 0.228400,-0.003331,-0.643500,0.000000,1.000000,0.000000 0.245300,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.372200,-0.186000,0.616700,0.000000,-1.000000,0.000000 -0.571500,-0.177900,-0.440500,-1.000000,0.000000,0.000000 0.482100,-0.003331,0.151500,0.000000,1.000000,0.000000 -0.253700,-0.372500,0.677900,0.000000,0.000000,-1.000000 0.515900,-0.186000,0.219200,0.052520,-0.998600,0.000000 -0.194500,-0.186000,0.193800,0.000000,-1.000000,0.000000 -0.304500,-0.186000,-0.279800,0.000000,-1.000000,0.000000 -0.473600,-0.186000,-0.651900,0.000000,-1.000000,0.000000 0.296000,-0.003331,-0.542000,0.000000,1.000000,0.000000 0.532900,-0.304800,0.677900,0.000000,0.000000,-1.000000 -0.203000,-0.003331,-0.364400,-0.000069,1.000000,0.000059 0.110000,-0.186000,0.295300,0.000000,-1.000000,0.000000 0.406000,-0.003331,-0.152900,0.000000,1.000000,0.000000 -0.355200,-0.003331,-0.660400,0.000000,1.000000,0.000000 0.101500,-0.330200,0.677900,0.000000,0.000000,-1.000000 0.570800,-0.203300,0.295300,0.999800,0.019570,0.000000 0.016930,-0.186000,-0.246000,0.000000,-1.000000,0.000000 0.000015,-0.186000,-0.322100,0.000000,-1.000000,0.000000 -0.135300,-0.355500,0.677900,0.000000,0.000000,-1.000000 -0.346700,0.066230,0.722600,0.000017,0.222500,-0.974900 -0.160700,0.245900,0.687000,0.009908,-0.207700,0.978200 0.135300,-0.003331,-0.220600,0.000000,1.000000,0.000000 -0.543500,-0.076990,-0.085270,-0.997600,0.068910,0.000000 -0.059910,0.119200,0.521600,0.000027,0.992400,0.122800 -0.329800,0.109600,0.675600,-0.000001,0.008630,1.000000 0.541300,-0.194800,-0.797100,0.005322,0.000173,-1.000000 -0.507400,-0.003332,0.176900,0.019630,0.999800,0.000000 0.415100,0.044830,0.719400,0.000000,-0.228500,0.973500 0.431300,0.114200,0.565100,-0.009853,0.980700,0.195000 -0.482100,-0.052010,-0.766000,0.000000,0.178000,-0.984000 -0.025350,0.126400,0.673600,0.000000,0.014140,-0.999900 -0.312900,0.032290,0.679000,-0.000449,-0.353900,0.935300 0.262200,0.337200,0.738300,0.000000,0.149000,0.988800 0.203000,0.151600,0.737300,0.000000,0.113500,-0.993500 0.363700,0.050520,0.619300,0.000001,-0.040010,0.999200 -0.465200,0.079690,0.268300,0.000015,0.363100,-0.931700 0.093060,0.125500,0.422200,0.000000,0.999600,-0.029350 -0.480100,-0.287900,-0.673100,-0.249500,0.000064,0.968400 -0.465200,0.134900,0.673800,0.000000,0.024070,-0.999700 0.177600,-0.235300,-0.767900,0.000001,-0.064180,0.997900 -0.540100,-0.051220,-0.372800,-0.982600,0.185800,0.000000 0.518100,-0.184100,-0.749900,0.111500,-0.943000,-0.313700 -0.474500,0.110700,0.389200,-0.947700,0.318900,-0.007653 -0.571500,-0.203300,0.050060,-1.000000,0.000000,0.000000 0.431400,-0.014110,0.674600,0.000000,0.907600,-0.419800 -0.135300,-0.002730,0.657000,0.000000,0.986200,0.165700 -0.571500,-0.228600,-0.753400,-1.000000,-0.005894,0.000023 0.016730,-0.003405,0.549100,-0.262100,0.965000,0.000000 -0.446800,-0.152800,-0.786300,-0.006684,0.993200,-0.116000 -0.542200,-0.063640,0.515200,-0.991300,0.131900,0.000000 0.042720,0.124800,0.472800,-0.196900,0.979400,0.045120 0.033840,0.118100,0.675900,-0.000040,-0.003469,1.000000 0.101500,0.279000,0.741200,0.000000,-0.053050,-0.998600 -0.135300,0.058660,0.263100,0.000000,0.104400,-0.994500 0.211500,0.058350,0.678100,0.000000,0.035370,0.999400 -0.540100,-0.051220,0.346100,-0.982600,0.185800,0.000000 0.539500,-0.051350,-0.651900,0.986800,0.161900,0.000043 -0.569800,-0.156300,-0.728100,-0.814200,0.580600,0.000120 -0.253700,0.276400,0.690500,0.000000,0.205400,-0.978700 0.124100,-0.172700,0.674700,0.000000,-0.794600,-0.607200 0.478700,-0.347100,-0.681500,0.500300,0.015820,0.865700 0.570500,-0.186400,0.363000,1.000000,0.000000,0.000000 -0.538700,-0.172600,-0.262900,0.621500,-0.783400,0.000000 0.463100,0.073060,0.674800,0.000000,-0.054750,-0.998500 0.067670,-0.093390,-0.769800,0.000000,0.004040,-1.000000 0.135300,-0.002999,0.143100,-0.042620,0.998700,0.026200 0.372200,-0.186000,-0.685800,0.000000,-1.000000,0.000000 -0.109900,-0.186000,-0.203700,0.000000,-1.000000,0.000000 0.279100,-0.003331,0.168500,0.000000,1.000000,0.000000 -0.270600,-0.186000,0.574400,0.000000,-1.000000,0.000000 -0.169100,-0.186000,0.270000,0.000000,-1.000000,0.000000 0.473600,-0.186000,0.388400,0.000000,-1.000000,0.000000 0.177600,-0.321700,0.715800,0.000000,0.000000,1.000000 0.313000,-0.372500,0.677900,0.000000,0.000000,-1.000000 -0.456700,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.033820,-0.186000,0.388400,0.000000,-1.000000,0.000000 -0.093020,-0.186000,0.456000,0.000000,-1.000000,0.000000 -0.228400,-0.237100,0.715800,0.000000,0.000000,1.000000 -0.406000,-0.093370,0.715800,0.000000,0.000000,1.000000 -0.126900,-0.003331,-0.085270,0.000000,1.000000,0.000000 0.084580,-0.271000,0.715800,0.000000,0.000000,1.000000 0.152300,-0.003331,-0.110600,0.000000,1.000000,0.000000 0.194500,0.228100,0.744600,0.000000,-0.011280,0.999900 -0.042280,-0.003331,-0.152900,-0.000007,1.000000,0.000003 -0.279100,-0.093370,0.716300,0.003286,0.013080,0.999900 -0.538600,-0.043310,-0.322100,-0.977300,0.212100,0.000000 0.050760,-0.186000,-0.643500,0.000000,-1.000000,0.000000 0.473600,-0.186000,0.066970,0.000000,-1.000000,0.000000 -0.473600,-0.186000,-0.119100,0.000000,-1.000000,0.000000 -0.033820,-0.186000,-0.144500,0.000000,-1.000000,0.000000 0.143800,-0.186000,0.066970,0.000000,-1.000000,0.000000 -0.245300,-0.003331,0.075420,0.000000,1.000000,0.000000 -0.033820,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.186100,-0.003331,0.007763,0.000000,1.000000,0.000000 0.312900,-0.003331,-0.372800,0.000000,1.000000,0.000000 0.296000,-0.003394,0.616900,0.001089,0.970200,0.242500 -0.355200,-0.186000,0.549100,0.000000,-1.000000,0.000000 0.152300,-0.003331,-0.305200,0.000000,1.000000,0.000000 -0.465200,-0.003331,-0.499700,0.000000,1.000000,0.000000 -0.109900,-0.186000,-0.432000,0.000000,-1.000000,0.000000 0.203000,-0.003331,-0.246000,0.000000,1.000000,0.000000 0.152300,-0.186000,0.413700,0.000000,-1.000000,0.000000 -0.033810,-0.228700,0.677900,0.000000,0.000000,-1.000000 0.118400,-0.186000,-0.744100,0.000014,-0.991200,-0.132200 0.262200,-0.003331,-0.110600,0.000000,1.000000,0.000000 0.536100,-0.035640,0.143100,0.969400,0.245400,0.000001 0.490600,-0.330200,0.677900,0.000000,0.000000,-1.000000 0.380600,-0.003331,-0.651900,0.000000,1.000000,0.000000 0.346800,-0.003331,0.126200,0.000000,1.000000,0.000000 -0.414400,-0.003331,-0.322100,0.000000,1.000000,0.000000 0.346800,-0.240200,-0.772500,-0.006889,-0.993500,0.113700 -0.236800,-0.186000,-0.550400,0.000000,-1.000000,0.000000 -0.008445,-0.003331,-0.457400,0.000000,1.000000,0.000000 0.013870,0.066040,0.540600,-0.986900,0.161600,0.000000 0.177600,-0.003331,-0.694200,0.000000,1.000000,0.000000 0.363700,-0.003331,-0.254400,0.000000,1.000000,0.000000 -0.380600,0.122800,0.397000,0.000000,0.997900,-0.064720 -0.422900,-0.003395,0.616900,0.000000,0.961100,0.276100 -0.025360,-0.003331,0.066970,0.000000,1.000000,0.000000 0.025390,-0.186000,0.574400,0.000000,-1.000000,0.000000 0.050750,-0.110300,0.715800,0.000000,0.000000,1.000000 0.008471,-0.003331,-0.584300,0.000000,1.000000,0.000000 0.076130,-0.186000,0.024680,0.000000,-1.000000,0.000000 -0.522200,-0.185400,-0.009155,-0.328500,-0.944500,0.000000 -0.389100,-0.025700,0.715800,-0.000020,0.000039,1.000000 -0.321400,-0.186000,-0.491200,0.000000,-1.000000,0.000000 -0.355200,-0.003331,-0.339000,0.000000,1.000000,0.000000 0.321400,-0.186000,-0.702700,0.000000,-1.000000,0.000000 0.389100,-0.186000,0.430700,0.000000,-1.000000,0.000000 0.448300,-0.321700,0.677900,0.000000,0.000000,-1.000000 -0.380600,-0.003331,-0.119100,0.000000,1.000000,0.000000 0.414400,-0.186000,-0.195200,0.000000,-1.000000,0.000000 -0.203000,-0.347100,0.715800,0.000000,0.000000,1.000000 0.262200,-0.304800,0.677900,0.000000,0.000000,-1.000000 0.304500,-0.186000,-0.229100,0.000000,-1.000000,0.000000 -0.076080,-0.003333,-0.178300,0.029510,0.999400,-0.019670 0.456700,-0.262500,0.715800,0.000000,0.000000,1.000000 0.482100,-0.003331,-0.558900,0.000000,1.000000,0.000000 0.414400,-0.186000,-0.440500,0.000000,-1.000000,0.000000 0.448300,-0.186000,0.540600,0.000000,-1.000000,0.000000 0.389100,-0.186000,-0.491200,0.000000,-1.000000,0.000000 -0.380600,-0.003331,-0.533500,0.000092,1.000000,-0.000080 -0.236800,-0.169500,0.715800,0.000000,0.000000,1.000000 -0.160700,-0.186000,0.506800,0.000000,-1.000000,0.000000 -0.338300,-0.186000,-0.203700,0.000000,-1.000000,0.000000 0.219900,-0.003331,-0.542000,0.000000,1.000000,0.000000 0.059220,-0.003331,-0.499700,0.000000,1.000000,0.000000 0.304500,-0.017260,0.715800,0.000000,-0.005638,1.000000 0.414400,-0.084910,0.715800,0.000000,0.000000,1.000000 -0.109900,-0.186000,0.075430,0.000000,-1.000000,0.000000 -0.524400,0.231700,0.684300,0.000000,-0.133400,0.991100 -0.025360,-0.186000,0.439100,0.000000,-1.000000,0.000000 0.025390,-0.186000,-0.575800,0.000000,-1.000000,0.000000 -0.169100,-0.186000,0.050050,0.000000,-1.000000,0.000000 -0.101500,-0.003331,-0.449000,0.000000,1.000000,0.000000 -0.067650,-0.003331,-0.406700,0.000000,1.000000,0.000000 0.211500,-0.186000,0.024680,0.000000,-1.000000,0.000000 0.008471,-0.003331,0.346100,0.004435,1.000000,0.000000 0.448300,-0.186000,-0.085270,0.000000,-1.000000,0.000000 -0.135300,0.122800,0.397000,0.000000,0.997900,-0.064720 0.219900,-0.254100,0.716000,0.009797,0.019670,0.999800 0.482100,-0.186000,-0.432000,0.000000,-1.000000,0.000000 0.389100,-0.330200,0.677900,0.000000,0.000000,-1.000000 -0.203000,-0.186000,-0.711100,0.000000,-1.000000,0.000000 -0.152200,-0.186000,-0.584300,0.000000,-1.000000,0.000000 -0.571500,-0.169500,-0.186800,-1.000000,0.003699,-0.000000 0.321400,-0.003331,-0.432000,0.000000,1.000000,0.000000 0.312900,-0.110300,0.715800,0.000000,0.000000,1.000000 0.143800,-0.186000,-0.491200,0.000000,-1.000000,0.000000 0.228400,-0.186000,0.295300,0.000000,-1.000000,0.000000 -0.482100,-0.321700,0.677900,0.000000,0.000000,-1.000000 0.543700,-0.085270,-0.381300,0.998300,0.058280,0.000000 -0.542600,-0.194900,-0.711100,1.000000,0.000000,0.000000 0.414400,-0.186000,-0.584300,0.000000,-1.000000,0.000000 -0.236800,-0.003331,-0.449000,0.000000,1.000000,0.000000 -0.389000,-0.076590,-0.769100,0.000000,0.074970,-0.997200 -0.473600,0.152400,0.739100,0.000000,-0.092980,0.995700 0.101500,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.542600,-0.228700,-0.313600,1.000000,0.000929,0.000000 0.570500,-0.186400,0.557500,1.000000,0.000059,0.000000 -0.043580,0.124000,0.439100,0.196600,0.980500,-0.002929 0.532800,0.288600,0.695200,0.000000,-0.254800,0.967000 -0.304500,-0.211800,-0.768300,0.000000,-0.000059,1.000000 0.531200,-0.016890,-0.159300,0.944300,0.329200,0.000010 0.270700,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.067640,-0.203300,-0.797100,0.000000,0.000000,-1.000000 0.095870,0.118000,0.543100,0.000000,0.988200,0.153400 -0.228300,0.084580,0.674200,0.000000,-0.043020,-0.999100 0.490800,0.029270,0.439100,0.956500,-0.291600,0.000000 -0.502500,-0.181800,-0.757600,-0.000231,-0.985900,-0.167500 0.321400,-0.043990,-0.764400,0.000000,0.206100,-0.978500 0.262200,-0.003331,-0.719600,0.000000,1.000000,-0.000043 -0.507400,0.317000,0.700300,0.000000,0.264800,-0.964300 0.287600,0.034680,0.266400,0.000000,-0.209700,-0.977800 0.541300,-0.364000,0.716000,0.009795,0.019670,0.999800 0.473600,-0.186000,0.650500,0.000000,-0.999700,0.024610 -0.448200,0.123000,0.481200,-0.000001,0.998100,0.061830 0.025390,-0.002666,0.701200,0.000000,0.999400,-0.035500 0.570500,-0.194800,-0.694200,1.000000,0.000000,0.000000 0.191700,-0.004593,0.713900,0.000000,0.712500,0.701700 0.414400,-0.287900,0.677900,0.000000,0.000000,-1.000000 -0.194500,-0.380900,0.677900,0.000000,-0.013730,-0.999900 0.540700,-0.057900,0.408100,0.990800,0.135600,0.000000 0.380900,0.034640,0.683900,0.371700,0.347900,0.860700 0.008470,-0.228600,-0.768000,0.000000,0.026500,0.999600 -0.389000,0.337900,0.735900,0.000000,-0.123700,-0.992300 -0.152200,0.202300,0.678400,0.000000,0.112600,-0.993600 -0.515900,-0.398600,0.709100,0.000000,-0.969400,0.245500 0.194600,-0.043990,-0.764400,0.000000,0.206100,-0.978500 0.568600,-0.005962,0.679500,0.345000,0.435100,-0.831700 0.380600,-0.017260,0.715800,0.000541,-0.006870,1.000000 -0.539100,-0.172500,0.134600,0.602600,-0.798100,0.000000 0.199500,0.070740,0.616800,0.000000,0.234800,0.972100 -0.540400,-0.135500,0.244600,-0.999000,-0.044810,0.000000 -0.540400,-0.135500,-0.296700,-0.999000,-0.044890,0.000000 -0.543000,-0.117700,0.574400,-0.995600,-0.093450,0.000000 0.346800,0.296000,0.740100,0.000000,-0.075530,-0.997100 -0.439800,-0.398700,0.701300,0.000000,-1.000000,0.005671 0.499000,-0.003331,-0.618100,0.000035,1.000000,0.000000 0.038780,-0.181800,-0.757600,-0.000018,-0.985700,-0.168700 0.499000,-0.003331,-0.711100,0.000035,1.000000,0.000000 0.321400,0.218200,0.742000,0.000000,0.029000,-0.999600 0.526100,-0.005331,-0.561700,0.740300,0.672300,0.000000 -0.025630,0.005887,0.430700,0.991700,0.128400,-0.000130 0.203000,0.111500,0.305200,0.000000,0.977900,-0.209300 -0.544000,-0.085270,-0.203700,-0.999300,0.038670,0.000000 0.067680,-0.186000,0.625200,0.000000,-1.000000,0.000000 0.473600,0.279000,0.741200,0.000000,-0.053050,-0.998600 0.313000,-0.395500,0.713900,0.000000,-0.605500,0.795800 0.234000,-0.172700,0.674700,0.000000,-0.794600,-0.607200 0.536100,-0.035640,-0.009148,0.969400,0.245400,0.000000 0.570200,-0.235000,0.499000,0.979000,-0.203700,-0.009053 0.544100,-0.093450,0.303800,0.999900,-0.016240,0.000000 -0.372100,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.000009,0.080480,0.725800,0.000000,0.214300,-0.976800 0.518700,0.032240,0.714700,-0.000077,-0.300000,-0.953900 0.541700,-0.235100,-0.279800,-0.964900,-0.262400,0.000000 -0.571500,-0.186400,0.320700,-1.000000,0.000000,0.000000 0.541600,-0.203300,-0.212100,-1.000000,0.000000,0.000000 -0.571500,-0.203300,0.134600,-1.000000,0.000000,0.000000 0.499000,-0.003331,0.515200,-0.004249,1.000000,0.000000 0.177600,0.114200,0.565100,0.000000,0.982700,0.185200 -0.358000,0.015860,0.270800,0.000032,-0.197700,-0.980300 0.507500,-0.186000,-0.288300,0.000000,-1.000000,0.000000 -0.017430,0.032090,0.591300,0.967500,-0.252900,-0.003458 -0.109900,-0.364000,0.715800,0.000000,0.000000,1.000000 0.110700,0.246100,0.684700,0.000000,0.168100,-0.985800 0.465100,-0.330200,-0.724100,-0.035830,0.000002,-0.999400 0.380600,0.261200,0.687400,0.000000,0.189500,-0.981900 -0.027190,0.009512,0.273000,0.694900,-0.013670,-0.719000 0.042300,0.079480,0.727900,0.000000,-0.213600,0.976900 0.543600,-0.149400,-0.420800,0.673700,0.739000,0.000000 0.456700,-0.211800,-0.797100,0.000000,0.000000,-1.000000 -0.305200,0.111000,0.571900,0.000008,0.980200,0.197900 -0.355200,0.194600,0.680000,-0.006580,-0.098710,0.995100 0.542100,-0.116500,-0.457400,0.992900,-0.118600,0.000059 -0.550200,-0.240200,0.126200,0.085960,-0.996300,0.000000 -0.515900,-0.003000,0.498300,0.030230,0.999500,0.000000 0.188900,0.351600,0.731900,0.000000,-0.675300,-0.737500 0.565800,0.101900,0.673700,0.057620,-0.000934,-0.998300 -0.456700,-0.003332,-0.728000,0.000000,0.999800,0.019670 0.459600,0.028760,0.268000,0.000000,-0.296600,-0.955000 -0.534800,-0.028540,0.473600,-0.962700,0.270500,0.000000 0.194500,0.079480,0.727900,0.000000,-0.213600,0.976900 -0.160700,0.113600,0.321500,0.000000,0.983900,-0.178700 0.507500,0.345400,0.736600,-0.013150,0.157500,0.987400 0.538400,-0.172600,-0.595600,-0.625800,-0.780000,0.000000 -0.086070,0.243800,0.742300,0.000000,0.004082,-1.000000 -0.101500,-0.126800,-0.767500,0.000000,-0.138900,-0.990300 -0.465200,0.304600,0.699100,0.000000,-0.215400,0.976500 0.526400,-0.182100,-0.364400,0.795300,-0.606300,0.000000 -0.363700,-0.002730,0.657000,0.000000,0.986200,0.165700 0.160700,-0.014110,0.674600,0.000000,0.913900,-0.405900 -0.465200,-0.279400,0.715800,0.000000,0.000000,1.000000 -0.312900,-0.002714,-0.744200,0.000000,0.994700,-0.103300 -0.304500,-0.372500,0.715800,0.000000,0.000000,1.000000 -0.152200,-0.271000,0.715800,0.000000,0.000000,1.000000 -0.565400,-0.153000,-0.542000,-0.276200,0.961000,0.013120 -0.540400,-0.135500,-0.169900,-0.999000,-0.044890,0.000000 0.045120,0.032490,0.678400,0.000000,-0.343300,-0.939200 -0.571500,-0.194800,-0.262900,-1.000000,0.000000,0.000000 -0.571500,-0.220200,0.227700,-1.000000,-0.000178,0.000000 -0.262200,0.040400,0.716100,0.000000,0.238400,-0.971200 0.541600,-0.220200,0.346100,-1.000000,0.000000,0.000000 -0.541300,-0.076450,0.715800,0.000000,0.000000,1.000000 0.494200,0.050480,0.557500,0.999800,-0.018900,0.000003 0.406000,0.036860,0.617600,0.000000,-0.190600,0.981700 -0.571500,-0.194800,-0.398200,-1.000000,0.000000,0.000000 -0.569800,-0.156300,0.405300,-0.814200,0.580500,0.000120 -0.471500,-0.233900,-0.725900,-0.064510,0.995800,-0.064470 0.499000,0.269300,0.689000,0.000000,0.196800,-0.980500 -0.542600,-0.228700,-0.457400,1.000000,0.000929,0.000000 0.423600,0.240200,0.683700,0.000000,0.162600,-0.986700 -0.109900,-0.003395,0.616900,0.000021,0.961100,0.276300 0.078960,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 0.572300,0.159700,0.740600,0.153300,-0.094650,0.983600 -0.287500,0.177200,0.676000,0.000000,0.082220,-0.996600 0.550500,-0.152600,0.541300,0.219400,0.975600,0.000000 0.017960,0.023640,0.309400,-0.928700,-0.370800,0.000000 0.000015,0.328900,0.703600,0.000000,0.273000,-0.962000 -0.346800,0.120700,0.372000,0.000018,0.992400,-0.122800 -0.544100,-0.093450,0.642100,-1.000000,0.004024,0.000000 0.569600,-0.155400,-0.281900,0.822600,0.568600,0.000000 -0.193800,-0.004250,0.686100,0.000000,0.973200,-0.230100 0.524400,-0.398600,0.709100,-0.000103,-0.969700,0.244500 -0.068350,-0.149300,-0.771500,-0.000009,0.781500,-0.623900 -0.397500,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 0.369300,0.087970,0.610100,-0.005877,0.433800,0.901000 0.533100,-0.022670,0.308700,0.953700,0.300900,0.000011 -0.262200,0.013790,0.608400,0.008913,-0.252400,0.967600 0.565200,-0.152600,-0.169100,0.229600,0.973300,0.000009 0.012620,0.050470,0.379900,-0.999800,-0.019000,0.000000 0.042310,0.336500,0.707800,0.000011,-0.259900,0.965600 0.534400,-0.172100,0.616700,0.389800,-0.920900,0.000000 -0.422800,0.119000,0.358300,0.013300,0.990100,-0.139700 -0.211400,0.035890,0.677700,0.000000,-0.139600,-0.990200 -0.017490,0.031770,0.472900,0.966300,-0.257400,0.000440 0.539800,-0.135400,0.007758,0.999800,-0.020650,0.000000 -0.507400,-0.003332,0.058510,0.019630,0.999800,0.000000 -0.507400,-0.287900,0.677900,0.000000,0.000000,-1.000000 0.363700,-0.211800,0.677900,0.000000,0.000000,-1.000000 -0.507400,-0.003332,0.379900,0.023430,0.999700,0.000000 -0.573300,0.160400,0.718100,0.991900,0.001353,-0.127200 0.228400,0.288500,0.695600,0.000000,-0.276000,0.961100 0.000023,-0.398500,0.709000,-0.002016,-0.968100,0.250600 0.534900,-0.028530,0.489100,0.962700,0.270500,0.000000 -0.355200,-0.364000,0.677900,0.000000,0.000000,-1.000000 0.397500,0.186300,0.678800,0.000000,-0.091560,0.995800 -0.282600,-0.181800,-0.757600,-0.000018,-0.985900,-0.167500 -0.059190,0.329700,0.736800,-0.000002,-0.114800,-0.993400 0.304500,-0.185600,0.657300,0.000000,-0.961700,0.274100 0.270700,0.090070,0.274300,0.000184,0.494200,-0.869400 0.534900,-0.028530,0.362300,0.962700,0.270500,-0.000010 0.312900,0.336500,0.705800,0.000023,0.282900,-0.959100 -0.532800,-0.017280,0.716200,-0.000149,-0.015440,0.999900 -0.212300,0.252500,0.742300,0.000000,-0.022450,-0.999700 -0.460800,-0.365800,-0.674900,0.479100,-0.085320,0.873600 0.143800,-0.211800,-0.797100,0.000000,0.000000,-1.000000 0.575000,-0.067280,0.692800,1.000000,0.000046,0.002708 0.542100,-0.117100,-0.609700,0.993000,-0.117900,0.000062 0.448200,0.082140,0.612600,-0.016370,0.410200,0.911800 0.515900,-0.186000,-0.685800,0.053600,-0.998600,0.000000 -0.526700,-0.182200,0.306600,-0.778100,-0.628200,0.000000 0.571300,-0.169500,-0.761900,0.999600,-0.013810,0.022850 0.448300,0.117500,0.337500,0.000024,0.987800,-0.155800 -0.059200,0.151400,0.674400,-0.000019,0.047550,-0.998900 -0.287500,0.328900,0.739000,0.000000,0.117100,0.993100 0.076140,-0.395500,0.713900,0.000000,-0.605500,0.795800 0.329900,-0.203300,-0.768300,0.009851,0.019660,0.999800 0.570800,-0.211800,0.109300,0.999800,-0.019630,0.000000 0.245300,-0.194800,-0.797100,0.000000,0.000000,-1.000000 0.527200,0.256300,0.742200,-0.000057,-0.041420,-0.999100 -0.372100,0.135000,0.675800,0.000000,-0.042420,0.999100 0.522300,-0.185400,-0.508200,0.346300,-0.938100,0.000000 0.389100,-0.178100,0.678000,0.000000,-0.230600,-0.973000 0.490600,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 0.469000,0.112100,0.570400,0.455600,0.881800,0.121900 -0.468600,0.111000,0.308900,-0.126200,0.957100,-0.260800 0.541600,-0.186400,0.405300,-1.000000,0.004909,0.000000 -0.448300,0.262400,0.690000,-0.003278,-0.171800,0.985100 0.490600,-0.018850,-0.757500,0.000000,0.313400,-0.949600 -0.270600,0.079690,0.268300,0.000000,0.363200,-0.931700 0.422900,-0.026280,-0.759800,0.000000,0.292300,-0.956300 0.194500,0.218900,0.680500,0.000000,0.132500,-0.991200 0.544500,-0.241000,0.670900,-0.535100,-0.636200,-0.555800 -0.286800,0.246100,0.684700,0.000000,0.168100,-0.985800 -0.304500,-0.149000,-0.771600,-0.000079,0.782300,-0.622900 0.135300,-0.186000,-0.364400,0.000000,-1.000000,0.000000 0.059220,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.093020,-0.003331,-0.592700,0.000000,1.000000,0.000000 0.025390,-0.186000,0.489900,0.000000,-1.000000,0.000000 -0.448200,-0.186000,-0.347500,0.000000,-1.000000,0.000000 -0.253700,-0.186000,-0.626600,0.000000,-1.000000,0.000000 -0.160700,-0.313300,0.677900,0.000000,0.000000,-1.000000 0.194500,-0.186000,-0.313600,0.000000,-1.000000,0.000000 0.118400,-0.186000,-0.313600,0.000000,-1.000000,0.000000 0.355200,-0.003331,-0.601200,0.000000,1.000000,0.000000 0.346800,-0.186000,0.506800,0.000000,-1.000000,0.000000 0.169200,-0.372500,0.677900,0.000000,0.000000,-1.000000 -0.372100,-0.186000,0.354500,0.000000,-1.000000,0.000000 -0.465200,-0.186000,-0.313600,0.000000,-1.000000,0.000000 -0.431300,-0.003331,-0.423600,0.000000,1.000000,0.000000 0.397500,-0.003331,0.227700,0.000000,1.000000,0.000000 0.490600,-0.245600,0.715800,0.000000,0.000000,1.000000 -0.448200,-0.186000,-0.609600,0.000000,-1.000000,0.000000 -0.571500,-0.186400,-0.093720,-1.000000,0.000000,0.000000 -0.093020,-0.186000,-0.271300,0.000000,-1.000000,0.000000 -0.015400,0.043590,0.532100,0.997000,-0.078000,-0.000863 -0.448200,0.042060,0.677100,0.000000,-0.093690,-0.995600 0.110000,-0.186000,-0.178300,0.000000,-1.000000,0.000000 0.406000,-0.003331,0.092340,0.000000,1.000000,0.000000 -0.541300,-0.296400,0.715800,0.000000,0.000000,1.000000 -0.571500,-0.203300,-0.169800,-1.000000,0.000000,0.000000 0.473600,-0.186000,0.151500,0.000000,-1.000000,0.000000 0.389100,-0.372500,0.677900,0.000000,0.000000,-1.000000 -0.346800,0.151600,0.737300,0.000000,0.113500,-0.993500 -0.008452,-0.076450,0.715800,0.000000,0.000000,1.000000 -0.109900,0.100200,0.280500,0.000000,0.653100,-0.757200 -0.490500,-0.003331,-0.068360,0.000000,1.000000,0.000000 -0.084560,-0.003331,0.041590,0.000000,1.000000,0.000000 0.389100,-0.003331,-0.026070,0.000000,1.000000,0.000000 0.304500,-0.186000,-0.000693,0.000000,-1.000000,0.000000 0.076130,-0.186000,0.439100,0.000000,-1.000000,0.000000 -0.093030,-0.127200,0.715800,-0.000020,-0.000020,1.000000 0.050760,-0.186000,-0.389700,0.000000,-1.000000,0.000000 0.482100,-0.186000,-0.009150,0.000000,-1.000000,0.000000 -0.219900,-0.186000,0.041600,0.000000,-1.000000,0.000000 -0.067650,-0.186000,0.295300,0.000000,-1.000000,0.000000 -0.033820,-0.186000,-0.102200,0.000000,-1.000000,0.000000 0.389100,-0.003331,0.041590,0.000000,1.000000,0.000000 -0.118400,-0.161100,0.716300,-0.003282,-0.013090,0.999900 -0.084560,-0.186000,-0.668900,0.000000,-1.000000,0.000000 0.067680,-0.262500,0.677900,0.000000,0.000000,-1.000000 0.448300,-0.067990,0.715800,0.000000,0.000000,1.000000 -0.016900,-0.186000,0.489900,0.000000,-1.000000,0.000000 0.050760,-0.186000,0.540600,0.000000,-1.000000,0.000000 -0.050730,-0.003331,-0.440500,0.000000,1.000000,0.000000 0.253700,-0.186000,-0.009150,0.000000,-1.000000,0.000000 -0.287600,-0.042620,0.715800,0.000000,0.000000,1.000000 0.016730,-0.003405,0.430600,-0.262100,0.965000,0.000000 -0.355200,-0.003331,-0.034530,0.000000,1.000000,0.000000 -0.033810,-0.380900,0.677900,0.000000,-0.013730,-0.999900 0.414400,-0.186000,0.075430,0.000000,-1.000000,0.000000 -0.406000,-0.003331,-0.034530,0.000000,1.000000,0.000000 -0.084560,-0.186000,-0.152900,0.000000,-1.000000,0.000000 0.262200,-0.003331,-0.034530,0.000000,1.000000,0.000000 -0.482100,0.032710,0.715500,0.000000,-0.454100,0.890900 0.110000,-0.237200,0.716200,0.000021,-0.009843,1.000000 0.515900,-0.003004,0.134600,-0.025750,0.999700,0.000000 -0.542300,-0.228700,0.608300,1.000000,0.000993,0.000000 -0.414400,-0.003331,-0.254400,0.000000,1.000000,0.000000 0.219900,-0.186000,0.176900,0.000000,-1.000000,0.000000 0.431400,-0.003331,0.261500,0.000000,1.000000,0.004823 0.279100,-0.186000,-0.440500,0.000000,-1.000000,0.000000 0.262200,-0.186000,-0.305200,0.000000,-1.000000,0.000000 0.270700,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.143800,-0.186000,0.337600,0.000000,-1.000000,0.000000 -0.329800,-0.186000,-0.313600,0.000000,-1.000000,0.000000 -0.312900,-0.186000,-0.415100,0.000000,-1.000000,0.000000 0.152300,-0.186000,0.295300,0.000000,-1.000000,0.000000 0.152300,-0.186000,-0.178300,0.000000,-1.000000,0.000000 -0.372100,-0.228700,0.677900,0.000000,0.000000,-1.000000 -0.160700,-0.186000,0.582900,0.000000,-1.000000,0.000000 0.456700,-0.186000,0.422200,0.000000,-1.000000,0.000000 -0.406000,-0.186000,0.616700,0.000000,-1.000000,0.000000 0.135300,-0.186000,0.143100,0.000000,-1.000000,0.000000 0.101500,-0.321700,0.715800,0.000000,0.000000,1.000000 0.245300,-0.003331,-0.398200,0.000000,1.000000,0.000000 -0.186100,-0.186000,0.447600,0.000000,-1.000000,0.000000 -0.186100,-0.003331,0.236100,0.000000,1.000000,0.000000 0.084600,-0.186400,-0.797100,0.000000,0.000000,-1.000000 -0.177600,-0.203300,0.677900,0.000000,0.000000,-1.000000 0.422900,-0.186000,-0.271300,0.000000,-1.000000,0.000000 0.380600,-0.245600,0.715800,0.000000,0.000000,1.000000 0.363700,-0.003331,0.160000,0.000000,1.000000,0.000000 0.439800,-0.003331,-0.186800,0.000000,1.000000,0.000000 -0.186100,-0.203300,-0.768300,0.000000,0.000059,1.000000 0.160700,-0.287900,0.715800,0.000000,0.000000,1.000000 -0.262200,-0.304800,0.715800,0.000000,0.000000,1.000000 -0.490500,-0.003331,-0.339000,0.000000,1.000000,0.000000 -0.219900,-0.003331,-0.161400,0.000000,1.000000,0.000000 0.228400,-0.003331,-0.136000,0.000000,1.000000,0.000000 -0.542300,-0.194900,0.168500,0.999800,0.019570,0.000000 -0.473600,-0.186000,-0.254400,0.000000,-1.000000,0.000000 0.160700,-0.186000,0.219200,0.000000,-1.000000,0.000000 0.321400,-0.003331,-0.186800,0.000000,1.000000,0.000000 0.406000,-0.186000,-0.668900,0.000000,-1.000000,0.000000 0.211500,-0.186000,-0.626600,0.000000,-1.000000,0.000000 0.304500,-0.186000,-0.626600,0.000000,-1.000000,0.000000 0.507500,0.115600,0.734700,0.000000,-0.133000,0.991100 -0.033820,-0.084990,-0.769600,0.000000,0.039120,-0.999200 0.540900,-0.129400,0.625200,0.993800,-0.111100,0.003203 -0.304500,0.202600,0.743500,0.000000,-0.044100,0.999000 0.186100,0.279000,0.741200,0.000000,-0.053050,-0.998600 -0.245200,0.321300,0.737800,0.000000,-0.108400,-0.994100 -0.329800,-0.068310,-0.768400,0.000000,0.109300,-0.994000 -0.219900,0.123800,0.464400,0.000000,0.999300,0.036370 0.439800,0.122600,0.506300,0.000000,0.995300,0.097020 0.482100,0.194200,0.743400,0.000000,-0.057540,0.998300 0.499000,-0.003331,0.413700,-0.004249,1.000000,0.000000 -0.296000,0.126500,0.675700,-0.003336,0.002413,1.000000 -0.202300,0.136300,0.735400,0.000000,0.133800,-0.991000 0.312900,0.135800,0.737400,-0.000003,-0.155000,0.987900 -0.109900,0.328900,0.739000,0.000000,0.117100,0.993100 -0.571500,-0.177900,0.642100,-1.000000,0.000000,0.000000 0.236800,-0.101800,-0.769700,0.000000,-0.032130,-0.999500 -0.480300,-0.347100,-0.717100,-0.281900,-0.000022,-0.959400 -0.386900,-0.184200,-0.749700,0.000000,-0.954500,-0.298300 0.541600,-0.194800,0.447600,-1.000000,0.000000,0.000000 -0.544000,-0.085270,0.176900,-0.999300,0.038670,0.000000 -0.093720,-0.181900,-0.763100,0.000038,-0.906300,0.422700 0.076120,0.231700,0.684300,0.000000,-0.133200,0.991100 0.016790,0.077610,0.303800,-0.941700,0.336500,0.000000 -0.109900,-0.203300,-0.797100,0.000000,0.000000,-1.000000 -0.565400,-0.153000,-0.220600,-0.279300,0.960100,0.013250 0.470500,-0.154300,-0.789100,0.011510,0.941900,-0.335600 0.110000,0.100500,0.729700,0.000000,0.177800,-0.984100 0.543700,-0.085270,-0.195200,0.999300,0.038090,0.000000 0.118400,0.042430,0.265000,0.000000,-0.122400,-0.992500 0.153900,-0.156900,-0.795500,-0.001862,0.503900,-0.863700 0.571100,-0.161500,0.464000,0.997300,0.073020,-0.003079 0.050760,-0.126800,-0.767500,0.000000,-0.138900,-0.990300 -0.042280,0.202300,0.678400,0.000000,0.112600,-0.993600 -0.550300,-0.152500,-0.457400,-0.219700,0.975600,0.000000 -0.448200,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 -0.166300,0.092710,0.605300,-0.000326,0.509000,0.860800 0.431400,-0.240300,-0.753400,0.000138,-1.000000,-0.000099 -0.543000,-0.117700,-0.110600,-0.995600,-0.093420,-0.000027 0.544100,-0.093450,0.193800,0.999900,-0.016240,0.000000 0.538300,-0.043410,-0.508200,0.977300,0.212000,0.000000 0.570500,-0.186400,0.608300,1.000000,0.000059,0.000000 0.526400,-0.182100,-0.119100,0.795300,-0.606300,0.000000 -0.050730,-0.002730,0.657000,0.000000,0.986200,0.165700 -0.528800,-0.010380,-0.144500,-0.924700,0.380600,0.000000 -0.406000,0.034990,0.714900,0.000000,0.166700,-0.986000 -0.329800,0.328900,0.739000,0.000000,0.117100,0.993100 0.558300,-0.152700,0.228400,0.032230,0.999500,-0.000001 -0.486200,0.089790,0.439100,-0.861000,0.508600,-0.000714 -0.542300,-0.203300,0.354500,0.999800,0.019570,0.000000 0.567100,0.199600,0.735200,-0.695900,0.016250,-0.718000 0.329700,-0.003058,0.692800,-0.247100,0.965700,-0.080350 0.449300,-0.265300,-0.717300,-0.697600,0.002107,-0.716500 -0.448200,0.113900,0.556700,-0.000157,0.984500,0.175300 -0.542300,-0.220200,0.498300,1.000000,0.006580,-0.003356 0.118400,-0.002999,0.692800,-0.000003,0.994600,-0.104100 0.538400,-0.172600,-0.460200,-0.625800,-0.780000,0.000000 0.067680,0.031230,0.616500,0.000050,-0.284200,0.958800 0.439100,0.352600,0.736100,0.000000,0.128700,0.991700 0.387500,-0.237000,-0.743700,-0.701200,-0.074800,0.709000 -0.414400,-0.177400,0.665300,0.000000,-0.627000,0.779000 0.541600,-0.203300,-0.000691,-1.000000,0.000000,0.000000 -0.568900,-0.222600,0.715800,-0.000768,0.000010,1.000000 -0.245300,-0.032280,-0.761600,0.000127,0.264600,-0.964400 -0.543000,-0.117700,0.303800,-0.995600,-0.093420,0.000000 0.177600,0.143200,0.674100,0.000000,0.035620,-0.999400 0.118400,0.317000,0.700300,0.000000,0.264800,-0.964300 0.538300,-0.043410,-0.127600,0.977300,0.211900,0.000000 0.542400,-0.117600,-0.364400,0.995600,-0.093280,0.000000 0.167100,0.073060,0.674800,0.000000,-0.054750,-0.998500 -0.507400,-0.186000,-0.136000,0.000000,-1.000000,0.000000 0.541700,-0.220000,-0.601200,-0.982500,0.186300,-0.001257 -0.268600,0.108200,0.583700,0.000485,0.972200,0.234300 0.490600,0.029300,0.354500,0.961900,-0.273400,-0.006635 0.169200,0.321300,0.737800,0.000000,-0.108400,-0.994100 -0.569800,-0.156300,-0.152900,-0.814500,0.580200,0.000137 -0.312900,0.117500,0.346000,0.000000,0.993400,-0.114400 0.016920,0.160000,0.738200,0.000000,0.103400,-0.994600 -0.243500,-0.157100,-0.795400,0.012430,0.502100,-0.864700 -0.033970,0.102900,0.340400,0.902800,0.430000,-0.002888 0.534900,-0.028530,0.446900,0.962700,0.270600,0.000010 -0.236800,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.571000,-0.393900,0.714300,-0.250700,-0.279900,0.926700 -0.571500,-0.186400,0.447600,-1.000000,0.000000,0.000000 -0.531900,-0.239500,-0.600300,0.258200,-0.930900,0.258300 -0.101500,0.322700,0.704000,0.000000,-0.292500,0.956300 0.569800,-0.156300,-0.706400,0.831600,0.555300,-0.000134 0.570100,0.291800,0.739900,0.721400,0.076790,0.688200 0.211500,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.481200,-0.239500,-0.651000,0.258400,-0.930600,0.259300 0.169200,0.296600,0.697800,0.000000,-0.231900,0.972700 0.499700,-0.010360,0.679100,-0.000003,0.611800,-0.791000 -0.533100,-0.022670,-0.718900,-0.953700,0.300700,0.000000 -0.143800,0.322700,0.704000,0.000000,-0.292500,0.956300 0.524400,-0.203300,0.677900,-0.047650,0.000000,-0.998900 0.008474,0.186200,0.679300,0.013140,-0.107800,0.994100 0.566700,-0.279400,0.715700,0.157900,0.000048,0.987400 -0.571700,-0.092460,0.684300,-0.948500,-0.008919,-0.316700 0.242500,0.102600,0.600200,0.000081,0.702700,0.711500 0.084590,-0.186000,-0.660400,0.000000,-1.000000,0.000000 -0.389000,-0.002667,-0.584300,0.022820,0.999600,-0.016280 0.355200,-0.003331,-0.719600,0.000000,1.000000,-0.000043 0.143800,-0.186000,-0.685800,0.000000,-1.000000,0.000000 -0.321400,-0.186000,0.430700,0.000000,-1.000000,0.000000 0.380600,-0.003331,-0.415100,0.000000,1.000000,0.000000 0.465200,-0.186000,-0.499700,0.000000,-1.000000,0.000000 -0.279100,-0.003331,-0.203700,0.000000,1.000000,0.000000 0.321400,-0.003331,0.100800,0.000000,1.000000,0.000000 0.118400,-0.186000,0.456000,0.000000,-1.000000,0.000000 -0.355200,-0.186000,-0.169800,0.000000,-1.000000,0.000000 -0.499000,-0.186000,0.176900,0.000000,-1.000000,0.000000 0.186100,-0.003331,-0.178300,0.000000,1.000000,0.000000 0.203000,-0.186000,-0.355900,0.000000,-1.000000,0.000000 0.346800,-0.186000,-0.618100,0.000000,-1.000000,0.000000 0.194500,-0.144100,0.715800,0.000000,0.000000,1.000000 -0.456700,-0.186000,0.270000,0.000000,-1.000000,0.000000 -0.338300,-0.186000,0.498300,0.000000,-1.000000,0.000000 0.448300,-0.380900,0.677900,0.000000,-0.013730,-0.999900 -0.203000,-0.262500,0.715800,0.000000,0.000000,1.000000 0.456700,-0.186000,-0.558900,0.000000,-1.000000,0.000000 0.329900,-0.330200,0.715800,-0.000010,-0.019660,0.999800 -0.397500,-0.186000,-0.355900,0.000000,-1.000000,0.000000 -0.321400,-0.003331,-0.592700,0.000000,1.000000,0.000000 0.126900,-0.304800,0.677900,0.000000,0.000000,-1.000000 0.439800,-0.003331,0.219200,0.000000,1.000000,0.000000 0.541600,-0.228700,0.608300,-1.000000,-0.007436,0.000000 -0.329800,-0.003331,-0.542000,-0.000007,1.000000,0.000003 -0.253700,-0.003331,-0.076810,0.000000,1.000000,0.000000 -0.118400,-0.321700,0.677900,0.000000,0.000000,-1.000000 -0.126900,-0.003331,0.024680,0.000000,1.000000,0.000000 0.000013,-0.003331,-0.279800,0.000000,1.000000,0.000000 -0.059190,-0.003331,-0.660400,0.000000,1.000000,0.000000 0.499000,-0.003331,-0.085270,0.000035,1.000000,0.000000 0.042300,-0.186000,-0.220600,0.000000,-1.000000,0.000000 -0.236800,-0.186000,-0.093730,0.000000,-1.000000,0.000000 0.033850,-0.347100,0.677900,0.000000,0.000000,-1.000000 0.093050,-0.186000,-0.550400,0.000000,-1.000000,0.000000 0.321400,0.126500,0.676000,0.000000,0.006820,1.000000 -0.406000,-0.186000,-0.246000,0.000000,-1.000000,0.000000 -0.270600,-0.186000,-0.711100,0.000000,-1.000000,0.000000 -0.101500,-0.186000,0.574400,0.000000,-1.000000,0.000000 0.262200,-0.186000,0.346100,0.000000,-1.000000,0.000000 -0.211400,-0.194900,0.715800,0.000000,0.000000,1.000000 0.313000,-0.279400,0.677900,0.000000,0.000000,-1.000000 -0.169100,-0.003331,-0.482800,0.000000,1.000000,0.000000 -0.228300,-0.186000,-0.212100,0.000000,-1.000000,0.000000 0.194500,-0.003331,-0.330500,0.000000,1.000000,0.000000 -0.152200,-0.003331,-0.161400,0.000000,1.000000,0.000000 0.194500,-0.186000,0.202300,0.000000,-1.000000,0.000000 0.456700,-0.186000,-0.660400,0.000000,-1.000000,0.000000 0.456700,-0.186000,-0.609600,0.000000,-1.000000,0.000000 0.253800,0.113700,0.565000,0.026310,0.981100,0.191700 0.059220,-0.003331,-0.229100,0.000000,1.000000,0.000000 -0.059190,-0.186000,-0.533500,0.000000,-1.000000,0.000000 -0.059190,-0.186000,0.210700,0.000000,-1.000000,0.000000 0.059220,-0.003331,-0.288300,0.000000,1.000000,0.000000 0.016930,-0.003331,-0.389700,0.000000,1.000000,0.000000 0.399500,-0.152700,-0.777000,0.000050,0.960500,-0.278400 -0.574600,-0.292900,0.692100,-0.999100,-0.005722,-0.042180 0.490500,-0.380900,0.715800,-0.009841,-0.014000,0.999900 0.211500,-0.003331,-0.711100,0.000000,1.000000,0.000000 -0.542900,-0.069660,0.058510,-0.995200,0.098320,0.000000 -0.287500,-0.186000,0.642100,0.000000,-1.000000,0.000000 -0.564900,0.040180,0.680100,-0.674500,-0.092800,-0.732400 -0.380600,0.120900,0.506200,0.000000,0.995000,0.099400 0.380600,0.123400,0.498000,0.000000,0.996400,0.084750 0.565400,-0.153000,-0.610100,0.258200,0.966000,0.013310 0.211500,0.124200,0.397000,0.013130,0.997200,-0.073910 0.118400,0.160700,0.740500,-0.013170,-0.086320,0.996200 -0.571400,-0.161400,0.354500,-0.992800,0.119900,-0.004059 -0.079630,0.109800,0.577900,0.000016,0.977900,0.209100 -0.491400,0.079380,0.388400,-0.933700,0.358200,-0.000011 0.246000,0.153600,0.676500,-0.000001,-0.032220,0.999500 -0.186100,0.042220,0.263200,0.000000,-0.108900,-0.994000 -0.515900,-0.003000,0.312200,0.030230,0.999500,0.000000 -0.093020,0.122400,0.489500,0.000000,0.997200,0.074200 0.110000,0.075340,0.677000,0.000000,0.082120,0.996600 0.570500,-0.203300,-0.178300,0.999800,-0.019680,0.000000 -0.134600,0.153500,0.676500,-0.010280,-0.057930,0.998300 -0.304500,0.317000,0.700300,0.000000,0.264800,-0.964300 0.565400,-0.153000,-0.025830,0.273300,0.961900,-0.012940 0.363700,0.121100,0.363600,0.000000,0.993000,-0.117800 0.524300,-0.234100,-0.635000,-0.086100,0.996100,-0.019500 -0.515900,-0.003000,-0.389700,0.030230,0.999500,0.000000 0.014520,0.034880,0.557500,-0.978300,-0.207200,-0.000009 -0.194500,0.020320,0.611100,0.000188,-0.405200,0.914200 0.228400,0.115900,0.329500,-0.000001,0.989400,-0.145400 0.498400,-0.241200,-0.677700,0.282800,-0.955000,0.089220 -0.496800,0.050460,0.506800,-1.000000,-0.002337,0.000000 -0.025360,-0.134700,-0.766300,0.000000,-0.009845,-1.000000 -0.422900,0.066810,0.677100,-0.000028,0.062630,0.998000 0.287600,0.169200,0.677500,0.000000,-0.108500,0.994100 -0.539100,-0.172500,-0.609700,0.602600,-0.798100,0.000000 0.126900,0.058300,0.618700,0.000000,0.092950,0.995700 -0.565500,-0.152600,0.507200,-0.232400,0.972600,0.003640 0.372200,0.110200,0.299100,0.000000,0.976100,-0.217400 0.570500,-0.211800,-0.643500,1.000000,0.000000,0.000000 -0.118400,-0.186000,0.642100,0.000000,-1.000000,0.000000 -0.151700,-0.162200,-0.797100,0.002544,0.116000,-0.993200 0.493600,0.042590,0.472900,0.992800,-0.119500,0.000002 -0.389000,0.160700,0.740000,0.000000,-0.102800,0.994700 0.186100,-0.186000,-0.719600,0.000000,-1.000000,0.000000 -0.539100,-0.172500,0.083880,0.601500,-0.798900,0.000000 0.528500,-0.010460,-0.237500,0.913900,0.405900,-0.000004 0.279100,0.042060,0.677100,0.000000,-0.093690,-0.995600 0.541600,-0.194800,0.176900,-1.000000,0.000000,0.000000 0.539500,-0.051350,-0.423600,0.982600,0.185900,-0.000000 -0.539100,-0.172500,-0.677300,0.602600,-0.798100,0.000000 0.059220,0.185600,0.676800,0.000000,0.090400,-0.995900 0.025070,0.094530,0.380600,-0.839600,0.543200,0.000000 0.482100,0.218900,0.680500,0.000000,0.132500,-0.991200 0.542400,-0.117600,-0.076800,0.993100,-0.117200,-0.000023 0.499000,0.160800,0.676600,0.000000,-0.061380,0.998100 0.544100,-0.093450,-0.144500,0.999900,-0.016460,0.000000 0.439800,-0.172400,0.670500,0.000000,-0.896200,0.443700 -0.363700,-0.149000,-0.771600,0.000099,0.782300,-0.623000 -0.261500,-0.010530,0.679100,0.000000,0.635300,-0.772300 -0.321400,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 0.332000,0.076180,0.615200,-0.003019,0.344500,0.938800 -0.542400,-0.178200,-0.347500,0.966300,-0.257600,-0.000593 0.397500,0.109600,0.675800,0.013160,-0.007874,0.999900 -0.304500,-0.304800,0.677900,0.000000,0.000000,-1.000000 -0.270600,-0.364000,0.715800,0.000000,0.000000,1.000000 0.253700,-0.152600,0.715800,0.000000,0.000000,1.000000 -0.542600,-0.211800,-0.626600,1.000000,-0.004002,0.000000 0.211500,-0.186000,-0.457400,0.000000,-1.000000,0.000000 -0.135300,-0.186000,0.134600,0.000000,-1.000000,0.000000 0.270700,-0.186000,-0.203700,0.000000,-1.000000,0.000000 0.118400,-0.003331,-0.296700,0.000000,1.000000,0.000000 0.543700,-0.101700,-0.651900,0.998700,-0.051570,0.000002 -0.211400,-0.186000,-0.372800,0.000000,-1.000000,0.000000 -0.245300,-0.003331,-0.525100,0.000000,1.000000,0.000000 0.414400,-0.186000,0.346100,0.000000,-1.000000,0.000000 -0.203000,-0.003331,-0.550400,0.000000,1.000000,0.000000 0.084590,-0.186000,-0.229100,0.000000,-1.000000,0.000000 0.025390,-0.003331,-0.203700,0.000000,1.000000,0.000000 0.135300,-0.186000,-0.042980,0.000000,-1.000000,0.000000 -0.211400,-0.186000,-0.059900,0.000000,-1.000000,0.000000 0.245300,0.330400,0.706400,0.000117,-0.252800,0.967500 0.059220,-0.380900,0.677900,0.000000,-0.013730,-0.999900 0.253800,0.031530,0.616400,0.014900,-0.278800,0.960200 -0.321400,-0.003166,-0.465900,-0.036090,0.999100,0.022970 -0.304500,-0.262500,0.715800,0.000000,0.000000,1.000000 -0.143800,-0.003331,-0.415100,0.000000,1.000000,0.000000 -0.541300,-0.296300,0.677900,0.000000,0.000000,-1.000000 -0.363700,-0.186000,0.227700,0.000000,-1.000000,0.000000 -0.312900,-0.338600,0.715800,0.000000,0.000000,1.000000 -0.465200,-0.203300,-0.768300,0.000000,0.000000,1.000000 0.126900,-0.372500,0.715800,0.000000,0.000000,1.000000 -0.465200,-0.003331,-0.195200,0.000000,1.000000,0.000000 0.490600,-0.186000,-0.711100,0.000000,-1.000000,0.000000 0.194500,-0.003331,-0.127600,0.000000,1.000000,0.000000 -0.236800,-0.003331,0.244600,0.000000,1.000000,0.000000 0.059230,-0.002834,0.016200,0.029370,0.999400,-0.019560 -0.534800,-0.028540,-0.524400,-0.962700,0.270500,0.000000 0.296000,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 0.219900,0.058560,0.264700,0.000000,0.081620,-0.996700 0.439800,0.095350,0.277400,-0.000010,0.548300,-0.836300 0.067670,-0.007427,-0.753200,0.000000,0.545900,-0.837800 0.093050,-0.003331,-0.711100,0.000000,1.000000,0.000000 0.431400,-0.003331,-0.017610,0.000000,1.000000,0.000000 -0.279100,-0.003331,-0.017610,0.000000,1.000000,0.000000 -0.050730,-0.003331,-0.313600,0.000000,1.000000,0.000000 0.338300,-0.003331,-0.034530,0.000000,1.000000,0.000000 0.084590,-0.003331,-0.119100,0.000000,1.000000,0.000000 -0.076110,-0.003331,0.126200,0.000000,1.000000,0.000000 0.093050,-0.186000,-0.440500,0.000000,-1.000000,0.000000 -0.406000,-0.186000,-0.093730,0.000000,-1.000000,0.000000 -0.059190,-0.338600,0.677900,0.000000,0.000000,-1.000000 -0.101500,-0.186000,-0.068350,0.000000,-1.000000,0.000000 -0.482100,0.093650,0.730500,0.000000,-0.188200,0.982100 -0.101500,-0.186000,-0.000693,0.000000,-1.000000,0.000000 -0.118400,-0.003331,0.117700,0.000000,1.000000,0.000000 0.067680,-0.186000,0.168500,0.000000,-1.000000,0.000000 -0.076110,-0.003331,-0.076810,0.000000,1.000000,0.000000 -0.033820,-0.003331,-0.034530,0.000000,1.000000,0.000000 0.118400,-0.003331,-0.254400,0.000000,1.000000,0.000000 0.084580,-0.017260,0.715800,0.000000,-0.005638,1.000000 0.110000,-0.003331,-0.009153,0.000000,1.000000,0.000000 -0.059190,-0.228600,-0.768000,0.000000,0.026500,0.999600 0.231200,0.087030,0.676000,0.000000,0.006745,1.000000 -0.321400,-0.186000,0.092340,0.000000,-1.000000,0.000000 -0.076100,-0.186000,-0.355900,0.000000,-1.000000,0.000000 -0.050750,-0.186400,0.716200,-0.006587,-0.016390,0.999800 0.431400,-0.003331,-0.085270,0.000000,1.000000,0.000000 0.338300,0.066240,0.722600,0.000000,0.222400,-0.975000 -0.296000,-0.003331,-0.389700,0.000000,1.000000,0.000000 -0.169100,-0.003331,-0.246000,0.000070,1.000000,-0.000061 -0.101500,-0.003331,-0.246000,0.000000,1.000000,0.000000 0.143800,-0.228700,0.716000,0.009797,0.019670,0.999800 -0.355200,-0.186000,-0.668900,0.000000,-1.000000,0.000000 0.355200,-0.003331,-0.499700,0.000000,1.000000,0.000000 0.448300,-0.003331,-0.262900,0.000000,1.000000,0.000000 -0.448200,-0.003331,-0.288300,0.000000,1.000000,0.000000 0.355200,-0.186000,0.582900,0.000000,-1.000000,0.000000 -0.397500,-0.304800,0.715800,0.000000,0.000000,1.000000 0.313000,-0.186000,0.253000,0.000000,-1.000000,0.000000 0.177600,-0.003331,-0.212100,0.000000,1.000000,0.000000 -0.499000,-0.186000,0.422200,0.000000,-1.000000,0.000000 -0.118400,-0.186000,-0.355900,0.000000,-1.000000,0.000000 -0.126900,-0.003331,-0.694200,0.000000,1.000000,0.000000 -0.177600,-0.186000,-0.482800,0.000000,-1.000000,0.000000 0.397500,-0.211800,0.715800,0.000000,0.000000,1.000000 0.482100,-0.127200,0.715800,0.000000,0.000000,1.000000 0.152300,-0.003331,-0.482800,0.000000,1.000000,0.000000 -0.203000,-0.186000,-0.558900,0.000000,-1.000000,0.000000 0.422900,-0.186000,0.616700,0.000000,-1.000000,0.000000 -0.389000,-0.186000,-0.525100,0.000000,-1.000000,0.000000 0.456700,-0.003331,-0.635000,0.000000,1.000000,0.000000 -0.355200,-0.003331,-0.415100,0.000000,1.000000,0.000000 -0.473600,-0.186000,-0.728100,0.000000,-1.000000,0.000000 0.380600,-0.186000,-0.542000,0.000000,-1.000000,0.000000 -0.262200,-0.003331,-0.144500,0.000000,1.000000,0.000000 0.219900,-0.003331,-0.482800,0.000000,1.000000,0.000000 0.346800,-0.186000,0.160000,0.000000,-1.000000,0.000000 0.135300,-0.262500,0.677900,0.000000,0.000000,-1.000000 -0.126900,-0.186000,-0.296700,0.000000,-1.000000,0.000000 0.329900,-0.003331,-0.220600,0.000000,1.000000,0.000000 -0.126900,-0.003331,-0.372800,0.000000,1.000000,0.000000 0.448300,-0.186000,-0.203700,0.000000,-1.000000,0.000000 -0.312900,-0.003331,0.109300,0.000000,1.000000,0.000000 0.262200,-0.186000,0.599800,0.000000,-1.000000,0.000000 -0.126900,-0.330200,0.715800,0.000000,0.000000,1.000000 -0.524400,-0.186400,0.715800,0.000000,0.000000,1.000000 0.219900,-0.186000,-0.575800,0.000000,-1.000000,0.000000 0.338300,-0.003331,-0.339000,0.000000,1.000000,0.000000 -0.473600,-0.186000,0.388400,0.000000,-1.000000,0.000000 0.076130,-0.003331,0.210700,0.000000,1.000000,0.000000 0.050760,-0.003331,-0.423600,0.000000,1.000000,0.000000 0.084590,-0.186000,-0.516600,0.000000,-1.000000,0.000000 0.270700,-0.067990,0.715800,0.000000,0.000000,1.000000 0.160700,-0.003331,0.050050,0.000000,1.000000,0.000000 -0.439800,-0.003331,0.066970,0.000000,1.000000,0.000000 0.380600,-0.003331,-0.059900,0.000000,1.000000,0.000000 0.025390,-0.186000,0.261500,0.000000,-1.000000,0.000000 0.465200,-0.186000,0.033140,0.000000,-1.000000,0.000000 -0.084560,-0.380900,0.677900,0.000000,-0.013730,-0.999900 -0.355200,-0.186000,0.083880,0.000000,-1.000000,0.000000 -0.571500,-0.203300,-0.059890,-1.000000,0.000000,0.000000 0.101500,-0.144100,0.715800,0.000000,0.000000,1.000000 0.118400,-0.076450,0.715800,0.000000,0.000000,1.000000 -0.025370,-0.279400,0.715800,0.000000,0.000000,1.000000 -0.008443,-0.186000,0.109300,0.000000,-1.000000,0.000000 -0.329800,-0.003331,0.066970,0.000000,1.000000,0.000000 -0.296000,-0.186000,-0.068350,0.000000,-1.000000,0.000000 0.033850,-0.186000,-0.296700,0.000000,-1.000000,0.000000 0.093050,-0.364000,0.677900,0.000000,0.000000,-1.000000 0.042300,-0.186000,0.134600,0.000000,-1.000000,0.000000 -0.532800,0.202600,0.743500,-0.000024,-0.044110,0.999000 0.570500,-0.220200,-0.136000,1.000000,-0.000178,0.000000 0.414400,0.125400,0.464400,0.000000,0.999400,0.033810 0.329900,-0.186000,0.557500,0.000000,-1.000000,0.000000 -0.422900,-0.186000,-0.499700,0.000000,-1.000000,0.000000 -0.406000,-0.245600,0.677900,0.000000,0.000000,-1.000000 -0.262200,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.279100,-0.186000,-0.254400,0.000000,-1.000000,0.000000 0.422900,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 -0.346800,-0.186000,-0.550400,0.000000,-1.000000,0.000000 0.431400,-0.186000,0.447600,0.000000,-1.000000,0.000000 0.160700,-0.186000,0.337600,0.000000,-1.000000,0.000000 0.448300,-0.186000,0.244600,0.000000,-1.000000,0.000000 -0.203000,-0.186000,-0.296700,0.000000,-1.000000,0.000000 -0.355200,-0.186000,0.439100,0.000000,-1.000000,0.000000 0.329900,-0.338600,0.677900,0.000000,0.000000,-1.000000 -0.312900,-0.003331,-0.677300,0.000000,1.000000,0.000000 -0.253700,-0.186000,-0.347500,0.000000,-1.000000,0.000000 0.465200,-0.186000,0.117700,0.000000,-1.000000,0.000000 0.143800,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.211400,-0.186000,-0.635000,0.000000,-1.000000,0.000000 -0.270600,-0.186000,-0.296700,0.000000,-1.000000,0.000000 0.211500,-0.003331,0.126200,0.000000,1.000000,0.000000 -0.549700,-0.330200,0.715800,0.000000,0.000000,1.000000 -0.448200,-0.220200,0.677900,0.000000,0.000000,-1.000000 -0.030430,0.096940,0.461700,0.841700,0.539900,-0.000037 -0.338300,0.210800,0.741800,0.000000,0.038880,-0.999200 0.219900,0.122600,0.506300,0.000000,0.995300,0.097020 -0.501800,-0.004913,0.661800,0.000174,0.739900,0.672700 -0.025360,-0.186600,-0.768000,0.000144,-0.354400,0.935100 0.126900,0.113200,0.313200,0.000000,0.981100,-0.193600 -0.414400,0.124200,0.430700,0.000000,0.999900,-0.014120 -0.279100,0.116300,0.337900,-0.000021,0.988700,-0.150000 0.541600,-0.203300,-0.051440,-1.000000,0.000000,0.000000 -0.544000,-0.085270,-0.127600,-0.999300,0.038670,0.000000 0.543800,-0.093440,0.633600,1.000000,0.004072,0.000038 -0.542300,-0.211800,0.244600,1.000000,0.000000,0.000000 -0.544000,-0.101700,0.498300,-0.999500,-0.031740,0.000007 0.228300,-0.003075,0.269800,-0.038700,0.974600,-0.220400 0.093040,0.032640,0.715400,0.000000,-0.525200,0.851000 0.549700,0.093620,0.730800,-0.009913,-0.188100,0.982100 -0.529200,-0.176800,0.033130,-0.788200,-0.615400,0.000000 0.532900,-0.228700,-0.797100,0.000021,-0.013660,-0.999900 0.059220,0.143300,0.736300,0.000000,0.122300,-0.992500 -0.312900,-0.003391,0.261300,0.000000,0.955000,-0.296700 -0.279100,0.123000,0.405500,-0.000011,0.999500,-0.032590 -0.253700,0.081370,0.610900,0.000000,0.381200,0.924500 0.025070,0.094530,0.566700,-0.839600,0.543200,0.000002 -0.152200,-0.003331,0.244600,0.000000,1.000000,0.000000 0.532900,0.042060,0.677100,0.000000,-0.093690,-0.995600 -0.465200,-0.003332,0.642100,0.000000,0.999800,-0.019490 0.296000,0.101300,0.673700,0.000000,-0.018670,-0.999800 -0.542600,-0.211800,-0.406700,1.000000,0.000000,0.000000 0.245300,0.124600,0.405400,-0.013190,0.998200,-0.058110 -0.245300,0.120100,0.514500,-0.006569,0.993500,0.113700 0.110000,-0.068310,-0.768400,0.000000,0.109300,-0.994000 0.507500,-0.093390,-0.769800,0.000000,0.004040,-1.000000 -0.542600,-0.211800,-0.195200,1.000000,0.000059,0.000000 0.541600,-0.203300,-0.313600,-1.000000,0.000000,0.000000 0.414400,0.114700,0.321300,0.000000,0.983500,-0.181000 0.465200,0.086480,0.727100,0.000000,0.197700,-0.980300 0.570500,-0.186400,0.151500,0.999800,0.019700,0.000000 0.363700,0.363600,0.719600,0.000000,0.955700,-0.294500 -0.542600,-0.228700,-0.051440,1.000000,0.000929,0.000000 0.212200,-0.010530,0.679100,0.000000,0.633400,-0.773800 -0.321400,-0.203300,-0.797100,0.000000,0.000000,-1.000000 0.253700,0.210800,0.741800,0.000000,0.038880,-0.999200 -0.160700,0.228100,0.744200,0.000000,0.008479,1.000000 0.236800,-0.032060,-0.761500,0.000000,0.265400,-0.964100 -0.177600,0.058370,0.720800,-0.000012,0.231800,-0.972800 -0.571500,-0.228600,-0.677300,-1.000000,-0.005917,0.000000 -0.541300,0.270500,0.691300,-0.003922,-0.151700,0.988400 -0.542600,-0.235300,-0.110600,0.975700,-0.219300,0.000000 0.126900,0.035890,0.677700,0.000000,-0.139600,-0.990200 0.380600,0.296700,0.697500,0.006597,-0.235300,0.971900 -0.431300,0.085060,0.270600,0.000000,0.450200,-0.892900 -0.160700,-0.235300,-0.767900,0.000000,-0.064160,0.997900 -0.338300,0.276400,0.690500,0.000000,0.205400,-0.978700 -0.414400,-0.032060,-0.761500,0.000000,0.265400,-0.964100 -0.499000,-0.194800,0.677900,0.000000,0.000000,-1.000000 -0.076110,0.118100,0.675900,0.000000,-0.003486,1.000000 -0.473600,-0.084990,-0.769600,0.000000,0.039120,-0.999200 -0.279100,-0.052010,-0.766000,-0.000018,0.177600,-0.984100 -0.569800,-0.156300,-0.322100,-0.814500,0.580200,0.000137 -0.270600,0.034310,0.264500,0.000000,-0.205600,-0.978600 -0.499000,-0.186000,-0.398200,0.000000,-1.000000,0.000000 0.575700,0.218600,0.702800,0.998500,0.025850,-0.047570 -0.543900,-0.149400,0.176900,-0.682600,0.730800,0.000000 0.465300,-0.296400,-0.677900,-0.028400,0.000000,0.999600 -0.169100,0.160700,0.740300,0.000000,-0.102900,0.994700 -0.526400,-0.005258,-0.313600,-0.742100,0.670300,0.000000 -0.270600,0.342600,0.709400,-0.000022,-0.273600,0.961800 -0.541300,-0.057820,0.016220,-0.986800,0.161800,0.000000 -0.339400,0.016620,0.693700,0.989600,0.068760,-0.126500 0.219900,-0.355500,0.677900,0.000000,0.000000,-1.000000 -0.534800,-0.028540,-0.253700,-0.962700,0.270500,0.000000 -0.312900,-0.032060,-0.761500,-0.000000,0.265400,-0.964100 0.482100,0.101300,0.673700,0.000000,-0.018670,-0.999800 0.413700,-0.181900,-0.763400,0.000000,-0.912600,0.408800 0.570000,-0.234900,-0.093020,0.985100,-0.172000,0.000000 0.544400,-0.239000,-0.708300,-0.514100,-0.857700,0.000000 0.456700,0.035460,0.679200,0.000000,0.019930,0.999800 -0.084560,0.253100,0.685900,0.000000,0.178400,-0.984000 0.288300,-0.162000,-0.797000,0.000427,0.214300,-0.976800 0.449700,-0.299200,-0.717700,-0.697300,-0.001428,-0.716800 -0.033820,-0.186000,-0.728100,0.000000,-1.000000,0.000000 0.329900,-0.003331,-0.668900,0.000000,1.000000,0.000000 -0.422900,0.074350,0.724400,0.000000,0.220400,-0.975400 -0.152200,-0.003331,-0.516600,0.000000,1.000000,0.000000 0.186100,-0.084910,0.715800,0.000000,0.000000,1.000000 0.008473,-0.186000,-0.474300,0.000000,-1.000000,0.000000 -0.540100,-0.051220,0.312200,-0.982600,0.185800,0.000000 0.397500,-0.186000,-0.355900,0.000000,-1.000000,0.000000 0.084590,-0.186000,-0.406700,0.000000,-1.000000,0.000000 0.287600,-0.186000,0.405300,0.000000,-1.000000,0.000000 -0.236800,-0.254100,0.677900,0.000000,0.000000,-1.000000 0.507500,-0.003332,-0.491200,-0.019460,0.999800,0.000000 -0.465200,-0.003331,0.134600,0.000000,1.000000,0.000000 -0.203000,-0.186000,0.388400,0.000000,-1.000000,0.000000 0.482100,-0.211800,0.715800,0.000000,0.000000,1.000000 0.482100,-0.186000,0.532100,0.000000,-1.000000,0.000000 0.186100,-0.186000,0.608300,0.000000,-1.000000,0.000000 0.110000,0.244800,0.744600,0.000000,0.027170,0.999600 -0.084570,0.035460,0.679200,0.000000,-0.016200,0.999900 -0.169100,-0.003331,-0.127600,0.000000,1.000000,0.000000 -0.439800,0.227200,0.681700,0.000000,0.143200,-0.989700 -0.431300,0.329700,0.736800,0.000000,-0.114800,-0.993400 0.296000,-0.186000,0.126200,0.000000,-1.000000,0.000000 0.126900,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.346800,-0.007427,-0.753200,0.000000,0.545900,-0.837800 0.059220,0.125500,0.422200,0.000000,0.999600,-0.029350 0.380600,-0.093370,0.715800,0.000000,0.000000,1.000000 -0.008445,0.115600,0.734300,-0.003239,-0.124200,0.992200 0.431400,-0.003331,0.058510,0.000000,1.000000,0.000000 -0.025360,-0.003331,-0.533500,0.000000,1.000000,0.000000 -0.016900,-0.186000,-0.178300,0.000000,-1.000000,0.000000 -0.270600,-0.003331,0.050050,0.000000,1.000000,0.000000 -0.490500,-0.003331,0.016220,0.000000,1.000000,0.000000 -0.016900,0.262200,0.741900,0.000000,-0.041020,-0.999200 -0.543000,-0.117700,0.058520,-0.995600,-0.093420,-0.000027 0.482100,-0.051080,0.715800,0.000000,0.000000,1.000000 0.544000,-0.085260,0.083880,0.999300,0.038050,0.000000 0.067670,-0.003331,0.244600,0.000000,1.000000,0.000000 -0.543500,-0.077030,-0.457400,-0.997800,0.067020,-0.000002 0.067680,-0.186000,0.058510,0.000000,-1.000000,0.000000 -0.016570,0.063690,0.461700,0.985700,0.168800,-0.000284 -0.338300,0.005889,0.607400,0.004792,0.157200,0.987600 0.526300,-0.182100,0.498300,0.777800,-0.628500,0.000000 -0.565400,-0.153000,-0.254400,-0.279300,0.960100,0.013250 -0.126900,-0.186000,-0.651900,0.000000,-1.000000,0.000000 -0.515900,-0.186000,-0.575800,-0.040710,-0.999200,0.000000 0.541300,-0.380900,0.677900,0.000000,-0.013730,-0.999900 0.389100,-0.003331,-0.618100,0.000000,1.000000,0.000000 -0.304500,-0.186000,0.566000,0.000000,-1.000000,0.000000 -0.439800,-0.186000,-0.119100,0.000000,-1.000000,0.000000 0.118400,-0.186000,0.591300,0.000000,-1.000000,0.000000 0.169200,-0.186000,0.143100,0.000000,-1.000000,0.000000 -0.397500,-0.003331,0.092340,0.000000,1.000000,0.000000 0.016930,-0.186000,-0.702700,0.000000,-1.000000,0.000000 -0.355200,-0.186000,-0.482800,0.000000,-1.000000,0.000000 0.228400,-0.186000,-0.178300,0.000000,-1.000000,0.000000 -0.321400,-0.186000,-0.457400,0.000000,-1.000000,0.000000 -0.143800,-0.186000,-0.212100,0.000000,-1.000000,0.000000 -0.490500,-0.186000,0.515200,0.000000,-1.000000,0.000000 0.542800,-0.077020,-0.719600,0.996000,0.089530,-0.000004 0.380600,-0.186000,0.346100,0.000000,-1.000000,0.000000 0.287600,-0.003331,-0.440500,0.000000,1.000000,0.000000 0.431400,-0.003331,-0.347500,0.000000,1.000000,0.000000 0.101500,-0.003331,-0.465900,0.000000,1.000000,0.000000 -0.194500,-0.003331,-0.026070,0.000000,1.000000,0.000000 0.570500,-0.186400,0.329200,1.000000,0.000000,0.000000 0.372200,-0.186000,-0.136000,0.000000,-1.000000,0.000000 -0.135300,-0.186000,-0.465900,0.000000,-1.000000,0.000000 -0.439800,-0.186000,0.202300,0.000000,-1.000000,0.000000 -0.439800,-0.186000,-0.254400,0.000000,-1.000000,0.000000 0.262200,-0.003331,-0.542000,0.000000,1.000000,0.000000 0.532800,-0.287900,0.715800,0.000000,0.000000,1.000000 -0.279100,-0.186000,-0.415100,0.000000,-1.000000,0.000000 -0.008445,-0.003332,-0.728000,0.000000,0.999800,0.019670 -0.543000,-0.117700,0.346100,-0.995600,-0.093420,0.000000 -0.380600,-0.003331,-0.254400,0.000000,1.000000,0.000000 -0.439800,-0.186000,0.329200,0.000000,-1.000000,0.000000 0.422900,-0.186000,-0.702700,0.000000,-1.000000,0.000000 -0.473600,-0.186000,0.050050,0.000000,-1.000000,0.000000 0.380600,-0.287900,0.677900,0.000000,0.000000,-1.000000 -0.473600,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.355200,-0.186000,-0.059900,0.000000,-1.000000,0.000000 0.110000,-0.186000,0.261500,0.000000,-1.000000,0.000000 -0.397500,-0.186000,0.506800,0.000000,-1.000000,0.000000 -0.287500,-0.186000,0.312200,0.000000,-1.000000,0.000000 0.101500,-0.003331,-0.161400,0.000000,1.000000,0.000000 0.008471,-0.003331,0.109300,0.000000,1.000000,0.000000 -0.219900,-0.003331,0.007763,0.000000,1.000000,0.000000 0.143800,-0.003331,0.236100,0.000000,1.000000,0.000000 -0.211400,-0.186000,-0.136000,0.000000,-1.000000,0.000000 -0.542900,-0.069660,0.143100,-0.995200,0.098320,0.000000 -0.093020,-0.186000,-0.237500,0.000000,-1.000000,0.000000 0.186100,-0.355600,0.715800,0.000000,0.000000,1.000000 0.338300,-0.186000,-0.246000,0.000000,-1.000000,0.000000 0.321400,0.113200,0.313200,-0.003303,0.980400,-0.197000 0.287600,0.125700,0.439100,0.000000,1.000000,-0.004263 0.012620,0.050470,0.506800,-0.999800,-0.018960,-0.000004 -0.093020,0.074270,0.613500,0.000022,0.321400,0.946900 -0.109900,-0.003331,-0.626600,0.000000,1.000000,0.000000 0.543800,-0.093440,-0.482800,1.000000,0.003905,0.000000 0.457400,0.164400,0.675100,0.000000,0.060440,-0.998200 0.169200,0.160700,0.740400,-0.000029,-0.082960,0.996600 0.431400,0.134900,0.673800,0.000000,0.024070,-0.999700 0.110700,0.141900,0.676300,0.000002,-0.027740,0.999600 -0.477100,0.358900,0.734900,0.000000,0.354000,0.935200 -0.542600,-0.211800,-0.279800,1.000000,0.000000,0.000000 0.558400,-0.152700,0.380600,0.032770,0.999500,-0.000000 -0.569800,-0.239000,-0.175500,-0.636600,-0.771200,0.000000 0.253700,0.261200,0.687400,0.000000,0.189500,-0.981900 -0.571500,-0.211800,-0.516600,-1.000000,0.000000,0.000000 0.177600,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.507400,-0.003332,0.464500,0.023430,0.999700,0.000000 -0.488900,0.008259,0.405300,-0.977100,0.212700,-0.000000 -0.228300,0.151600,0.674400,0.000000,0.047750,-0.998900 0.570500,-0.203300,-0.465900,1.000000,0.000000,0.000000 0.541600,-0.211800,-0.525100,-1.000000,0.000000,0.000000 -0.571400,-0.235100,0.447600,-0.986900,-0.161200,0.000000 -0.565200,-0.152600,0.609000,-0.227600,0.973800,0.000000 0.542400,-0.117600,-0.203700,0.995600,-0.093280,0.000000 -0.050740,0.086480,0.727100,0.000000,0.197700,-0.980300 -0.533100,-0.022670,-0.211400,-0.953700,0.300700,0.000000 -0.507400,-0.003332,-0.491200,0.019630,0.999800,0.000000 -0.571500,-0.194800,-0.685800,-1.000000,0.000000,0.000000 -0.312900,0.144100,0.738500,0.000000,-0.103100,0.994700 -0.227600,0.042000,0.617100,0.000000,-0.112400,0.993700 -0.228300,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 0.042300,0.254200,0.688500,0.000000,-0.199200,0.979900 0.050760,0.279000,0.741200,0.000000,-0.053050,-0.998600 0.507500,-0.003332,0.379900,-0.019450,0.999800,0.000000 -0.014090,0.032270,0.714800,-0.000022,-0.225600,-0.974200 -0.296000,0.066800,0.677100,-0.000015,0.062990,0.998000 -0.414400,0.007962,0.271100,-0.000066,0.183700,-0.983000 0.160700,0.052310,0.719300,0.000000,0.245400,-0.969400 0.550300,-0.152600,0.304500,0.218700,0.975800,0.002246 -0.538700,-0.172600,-0.220600,0.621500,-0.783400,0.000000 -0.550300,-0.152500,0.642100,-0.222300,0.975000,0.000000 -0.574000,0.067350,0.701300,0.999900,0.008746,0.011630 -0.515900,-0.003000,0.143100,0.030230,0.999500,0.000000 -0.135300,-0.186000,-0.736500,0.000000,-1.000000,-0.001680 0.262200,0.211400,0.681900,0.000000,-0.120000,0.992800 -0.203000,-0.186000,-0.744100,0.000014,-0.991300,-0.132000 0.532800,-0.022770,-0.291800,0.961600,0.274500,-0.000035 -0.466600,-0.313300,-0.717300,0.234000,0.000000,-0.972200 -0.571500,-0.203300,0.489900,-1.000000,0.000000,0.000000 0.541300,0.363600,0.719600,0.000046,0.955700,-0.294400 0.566700,0.032490,0.716000,0.101500,-0.720800,0.685700 -0.542600,-0.194900,0.540600,1.000000,0.000000,0.000000 -0.372100,-0.221700,-0.766000,0.067720,0.287100,0.955500 -0.211400,0.311000,0.698700,0.000000,0.253000,-0.967500 0.569600,-0.155400,-0.349600,0.807100,0.590400,0.000163 0.110000,-0.228700,-0.797100,0.000000,-0.013670,-0.999900 -0.542200,-0.063640,-0.296700,-0.991300,0.131900,0.000000 -0.534800,-0.028540,-0.439800,-0.962700,0.270500,0.000000 -0.522100,-0.002890,-0.009152,-0.209900,0.977700,0.000000 0.482100,0.093940,0.509600,0.842200,0.539100,0.000000 0.538400,-0.172600,0.081060,-0.628900,-0.777500,-0.000485 0.312900,0.304500,0.699400,-0.000028,-0.192800,0.981200 -0.549700,0.067620,0.724600,0.020460,-0.219000,0.975500 0.033850,0.079680,0.269300,-0.000549,0.342700,-0.939400 -0.524400,0.100500,0.729700,0.000000,0.177800,-0.984100 -0.160700,-0.172400,0.670500,0.000000,-0.896200,0.443700 0.101500,-0.032060,-0.761500,0.000000,0.265400,-0.964100 -0.406000,0.113600,0.321500,-0.000009,0.983900,-0.178600 0.363700,0.143200,0.674100,0.000000,0.035620,-0.999400 -0.499000,0.211500,0.681600,0.000000,-0.120000,0.992800 0.465200,-0.003001,0.701300,0.000000,0.999900,-0.014950 0.570000,-0.234900,-0.253700,0.985100,-0.172000,0.000000 -0.534700,-0.172100,-0.316500,-0.405200,-0.914200,0.000000 -0.278200,-0.162300,-0.797100,-0.001781,0.137000,-0.990600 -0.431400,-0.240300,-0.719600,0.002766,-1.000000,0.002875 -0.329800,0.074260,0.613500,-0.000062,0.336700,0.941600 0.499000,-0.186000,-0.178300,0.000000,-1.000000,0.000000 0.570500,-0.220200,0.193800,0.999800,-0.019900,0.000000 0.526100,-0.005332,-0.003510,0.740300,0.672300,0.000010 0.541700,-0.123600,0.506800,0.992000,-0.126500,0.000000 -0.568100,-0.004253,0.713300,-0.004031,0.755500,0.655200 -0.534800,-0.028540,-0.592000,-0.962700,0.270500,0.000000 -0.236800,0.194600,0.680000,0.000000,-0.102000,0.994800 0.490600,-0.186000,-0.068350,0.000000,-1.000000,0.000000 0.565900,0.067970,0.675900,0.252300,-0.053120,-0.966200 0.271400,0.349300,0.709800,0.000000,0.304500,-0.952500 -0.202300,0.246100,0.684700,0.000000,0.168100,-0.985800 0.086710,-0.184200,-0.749700,0.000000,-0.954500,-0.298300 0.549800,0.219600,0.682600,-0.026340,-0.161600,0.986500 -0.372100,0.276400,0.692500,0.000000,-0.204900,0.978800 0.521700,-0.002964,0.346100,0.222500,0.974900,0.000000 -0.550400,-0.152500,-0.415100,-0.219100,0.975700,-0.001055 0.566000,0.330200,0.710000,-0.619400,-0.199400,0.759300 0.355200,0.228100,0.744600,0.000057,-0.012950,0.999900 -0.228300,0.342600,0.709400,0.000000,-0.299500,0.954100 -0.544000,-0.085270,-0.651900,-0.999300,0.038700,0.000001 -0.027600,0.092670,0.306600,0.850600,0.525600,0.013520 0.439800,0.124200,0.397000,0.000000,0.997700,-0.067360 -0.494900,-0.355600,-0.687800,-0.961800,-0.000450,0.273800 -0.084560,0.014040,0.608200,0.001332,-0.253200,0.967400 0.152300,-0.398600,0.685300,0.000000,-0.969200,-0.246500 -0.022920,0.000737,0.594200,0.726300,0.687400,-0.008922 0.397500,0.006229,0.608200,0.000000,0.108500,0.994100 -0.245300,-0.186600,-0.768400,-0.000041,-0.354200,0.935200 -0.543500,-0.076990,-0.262900,-0.997600,0.068910,0.000000 -0.135300,-0.389600,0.715900,0.000000,-0.131100,0.991400 0.312900,0.279000,0.741200,0.000000,-0.053050,-0.998600 -0.542300,-0.203400,-0.026070,0.999800,-0.019630,0.000000 0.541700,-0.178100,-0.660400,-0.974400,-0.224700,0.000000 -0.169100,-0.398600,0.685300,0.000000,-0.969200,-0.246500 -0.507500,-0.093390,-0.769800,0.000000,0.004040,-1.000000 -0.528800,-0.010380,-0.660400,-0.924700,0.380600,0.000000 -0.571000,-0.048820,0.684700,-0.885100,0.091400,-0.456300 0.456700,0.330400,0.706100,-0.009709,-0.271900,0.962300 0.211500,-0.194800,0.677900,0.000000,0.000000,-1.000000 -0.019120,0.074830,0.396800,0.945100,0.326800,0.000000 0.041600,0.352600,0.736100,0.000000,0.104000,0.994600 -0.321400,0.085980,0.727000,-0.000087,0.198400,-0.980100 0.487800,0.082930,0.388400,0.916300,0.400600,0.000000 0.343200,0.264800,0.743800,-0.000145,0.010580,0.999900 0.570000,-0.234900,-0.465200,0.985100,-0.172000,0.000000 -0.296000,-0.240300,-0.778900,0.000000,-1.000000,0.004348 0.570800,-0.194900,0.041600,1.000000,0.000000,0.000000 0.541500,-0.063690,-0.088090,0.987200,0.159700,0.000000 -0.571500,-0.220200,0.193800,-1.000000,-0.000178,0.000000 -0.541500,-0.129500,0.123400,-0.987600,-0.157000,0.000000 0.229100,0.038840,0.717800,0.000000,-0.255800,0.966700 -0.540900,-0.143700,0.405300,-0.969600,0.244500,0.000000 0.363700,-0.211800,-0.768000,0.000297,0.019160,0.999800 0.558200,0.185600,0.676800,0.004603,0.090430,-0.995900 -0.571500,-0.169500,0.481400,-1.000000,0.004285,0.000116 -0.228300,0.117100,0.732600,0.000000,0.159900,-0.987100 -0.138100,0.104500,0.595000,0.000000,0.850000,0.526800 -0.536700,-0.035470,0.557500,-0.969400,0.245300,0.000000 0.540600,-0.143600,-0.279800,0.964200,0.265300,0.000000 -0.042280,0.121500,0.734900,0.000000,-0.154000,0.988100 0.558300,-0.152700,0.126900,0.032230,0.999500,-0.000001 -0.534800,-0.028540,0.397500,-0.962700,0.270500,0.000000 0.068390,0.104000,0.284300,0.000301,0.761300,-0.648400 0.570500,-0.228700,0.337600,0.998500,-0.055300,0.000000 -0.396800,0.240200,0.683700,0.000000,0.162600,-0.986700 -0.408800,0.086710,0.608100,-0.000073,0.436000,0.899900 0.169200,-0.203300,0.677900,0.000000,0.000000,-1.000000 0.149400,0.118600,0.536800,0.000057,0.989500,0.144800 0.456700,0.151600,0.737300,0.000000,0.113500,-0.993500 -0.542700,-0.178100,0.582900,0.969000,-0.247100,0.000000 0.069410,0.201200,0.743400,0.000000,-0.023510,0.999700 -0.093020,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.534700,-0.172100,-0.730900,-0.394000,-0.919100,-0.000056 -0.380600,0.035890,0.677700,0.007543,-0.283200,-0.959000 0.575200,-0.161000,0.685300,0.996700,-0.003786,-0.081630 -0.499000,-0.220200,-0.768300,0.000000,0.019560,0.999800 0.029520,0.214100,0.744200,0.000000,-0.059500,0.998200 -0.143800,0.086480,0.727100,0.000000,0.197700,-0.980300 0.210700,0.260100,0.744000,-0.000103,0.032070,0.999500 0.541300,0.321300,0.737800,0.000006,-0.108400,-0.994100 -0.305200,0.119200,0.521600,0.000000,0.992400,0.122800 0.531200,-0.016890,-0.429900,0.944300,0.329200,0.000000 -0.490200,-0.253300,-0.677300,-0.692600,-0.283100,0.663400 -0.389000,-0.007427,-0.753200,0.000000,0.545900,-0.837800 -0.515900,0.279000,0.741200,0.000000,-0.053050,-0.998600 0.539800,-0.135400,-0.144500,0.999800,-0.020840,0.000000 -0.558000,0.092840,0.675800,0.170700,0.058170,0.983600 0.558100,-0.152600,-0.541300,0.000538,1.000000,0.000000 0.050760,0.034680,0.266400,0.000000,-0.209700,-0.977800 -0.542600,-0.203300,-0.533500,1.000000,0.000000,0.000000 -0.542600,-0.235300,0.320700,0.975600,-0.219600,0.000000 0.279100,0.278800,0.743400,-0.009556,0.060840,0.998100 -0.569800,-0.239000,-0.031700,-0.636600,-0.771200,0.000000 0.355200,-0.037940,-0.763000,0.000000,0.235500,-0.971900 0.423600,0.170200,0.675500,0.000000,0.072190,-0.997400 0.480200,-0.377900,-0.681800,0.169400,-0.592900,0.787300 -0.346800,0.270500,0.743600,0.000000,0.012980,0.999900 -0.540100,-0.051220,-0.728100,-0.982700,0.185200,0.000043 0.067650,0.051190,0.719000,-0.000066,0.245800,-0.969300 -0.033810,0.336500,0.707800,0.000000,-0.260000,0.965600 0.160700,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.253700,0.119600,0.531100,0.013180,0.991300,0.130700 -0.571400,-0.235100,-0.465900,-0.986900,-0.161200,0.000000 -0.050730,-0.002999,-0.736500,0.000000,0.999300,0.038300 -0.563000,-0.201200,-0.792200,-0.605400,0.001565,-0.795900 0.490600,0.304500,0.739400,0.000000,-0.086030,-0.996300 0.416500,0.108600,0.591400,0.000005,0.941400,0.337300 -0.542300,-0.211800,0.413700,0.999800,0.019570,0.000000 0.538400,-0.172600,0.368600,-0.635400,-0.772200,0.000000 0.528900,-0.176700,-0.203700,0.800100,-0.599800,0.000000 0.076140,0.118400,0.343400,0.000000,0.989100,-0.147100 0.126900,0.118400,0.343400,0.000000,0.989100,-0.147100 -0.358700,0.118500,0.527500,0.000000,0.991100,0.133200 -0.110000,0.045710,0.717600,0.000013,0.254200,-0.967100 -0.169100,0.304600,0.699100,0.000000,-0.215500,0.976500 -0.296000,0.270500,0.741600,0.000000,-0.042090,-0.999100 0.152200,-0.007427,-0.753200,0.000000,0.545900,-0.837800 0.166400,0.023220,0.270000,0.000000,-0.377600,-0.926000 0.521700,-0.002964,-0.677300,0.222500,0.974900,0.000008 0.528500,-0.010460,0.625200,0.914000,0.405600,-0.000138 0.570500,-0.177900,-0.000694,1.000000,-0.000000,0.000000 0.492800,0.065850,0.439100,0.986000,0.166400,0.012930 0.439800,-0.338600,0.716300,0.003285,0.013080,0.999900 -0.245300,-0.003331,0.168500,0.000000,1.000000,0.000000 0.465200,-0.237100,0.677900,0.000000,0.000000,-1.000000 -0.169100,-0.003331,0.210700,0.000000,1.000000,0.000000 -0.186100,-0.186000,-0.516600,0.000000,-1.000000,0.000000 0.296000,-0.186000,-0.169800,0.000000,-1.000000,0.000000 0.414400,-0.003331,-0.406700,0.000000,1.000000,0.000000 0.558200,-0.237100,0.715800,0.005013,0.000000,1.000000 -0.245300,-0.186000,-0.457400,0.000000,-1.000000,0.000000 -0.153000,0.080460,0.676400,-0.000162,0.023750,0.999700 0.014520,0.034880,0.337600,-0.978300,-0.207200,0.000000 -0.253700,0.176900,0.739800,0.000000,0.079860,-0.996800 0.431400,-0.186000,0.050050,0.000000,-1.000000,0.000000 0.000018,-0.211800,-0.797100,0.000000,0.000000,-1.000000 0.110000,-0.003331,-0.398200,0.000000,1.000000,0.000000 -0.448200,0.109600,0.675600,0.000000,0.008563,1.000000 -0.101500,-0.003332,-0.161400,-0.016370,0.999800,0.013110 0.245300,-0.186000,-0.085270,0.000000,-1.000000,0.000000 -0.059190,-0.003331,-0.246000,0.000000,1.000000,0.000000 -0.042270,-0.186000,0.236100,0.000000,-1.000000,0.000000 -0.109900,-0.186000,0.041600,0.000000,-1.000000,0.000000 -0.067640,-0.262500,0.677900,0.000000,0.000000,-1.000000 0.033840,-0.003331,-0.558900,0.000000,1.000000,0.000000 0.491300,0.044830,0.719400,0.000002,-0.228500,0.973500 0.000017,-0.372500,0.677900,0.000000,0.000000,-1.000000 0.016930,-0.186000,-0.415100,0.000000,-1.000000,0.000000 0.540700,-0.057920,0.577200,0.994000,0.109400,0.000000 -0.296000,-0.186000,0.041600,0.000000,-1.000000,0.000000 -0.025360,-0.186000,-0.271300,0.000000,-1.000000,0.000000 -0.372100,-0.186000,-0.076810,0.000000,-1.000000,0.000000 -0.414400,-0.186000,0.033140,0.000000,-1.000000,0.000000 0.076130,-0.186000,-0.279800,0.000000,-1.000000,0.000000 -0.033820,-0.186000,-0.609600,0.000000,-1.000000,0.000000 -0.059190,-0.186000,0.422200,0.000000,-1.000000,0.000000 0.160700,0.106100,0.595800,0.000000,0.826400,0.563100 0.236800,-0.304800,0.715800,0.000000,0.000059,1.000000 -0.329800,0.123800,0.464400,0.000000,0.999300,0.036370 0.490600,-0.003003,0.650500,0.000032,0.999400,-0.034730 0.571100,-0.169500,-0.313600,0.999900,-0.014710,0.000000 0.253700,0.066240,0.265700,0.000000,0.179700,-0.983700 0.566700,-0.364000,0.678000,0.156600,0.000000,-0.987700 0.270700,-0.186000,-0.685800,0.000000,-1.000000,0.000000 -0.194500,-0.186000,-0.601200,0.000000,-1.000000,0.000000 -0.279100,-0.186000,-0.601200,0.000000,-1.000000,0.000000 -0.380600,-0.186000,-0.381300,0.000000,-1.000000,0.000000 0.245300,-0.186000,0.540600,0.000000,-1.000000,0.000000 -0.346800,-0.003331,0.244600,0.000000,1.000000,0.000000 0.152300,-0.347100,0.677900,0.000000,0.000000,-1.000000 -0.380600,-0.003331,-0.474300,0.000000,1.000000,0.000000 -0.321400,-0.186000,0.388400,0.000000,-1.000000,0.000000 0.439800,-0.186000,-0.313600,0.000000,-1.000000,0.000000 -0.143800,-0.186000,0.456000,0.000000,-1.000000,0.000000 -0.414400,-0.003331,-0.449000,0.000000,1.000000,0.000000 0.203000,-0.296300,0.677900,0.000000,0.000000,-1.000000 -0.329800,-0.186000,-0.389700,0.000000,-1.000000,0.000000 0.329900,-0.186000,0.303800,0.000000,-1.000000,0.000000 -0.279100,-0.186000,0.244600,0.000000,-1.000000,0.000000 0.321400,-0.186000,0.447600,0.000000,-1.000000,0.000000 0.338300,-0.186400,0.715800,0.000000,0.000000,1.000000 -0.177600,-0.287900,0.677900,0.000000,0.000000,-1.000000 0.490600,-0.186000,0.447600,0.000000,-1.000000,0.000000 0.482100,-0.003331,-0.237500,0.000000,1.000000,0.000000 0.465200,-0.003331,-0.711100,0.000000,1.000000,0.000000 0.570500,-0.220200,-0.203700,1.000000,-0.000178,0.000000 -0.262200,-0.186000,0.363000,0.000000,-1.000000,0.000000 -0.245300,-0.186000,-0.144500,0.000000,-1.000000,0.000000 0.262200,-0.003331,-0.220600,0.000000,1.000000,0.000000 -0.177600,-0.186000,0.219200,0.000000,-1.000000,0.000000 0.177600,-0.177900,-0.797100,0.000000,0.000000,-1.000000 -0.397500,-0.203300,0.715800,0.000000,0.000000,1.000000 -0.177600,-0.287900,0.715800,0.000000,0.000000,1.000000 -0.287600,-0.152600,0.715800,0.000000,0.000000,1.000000 0.456700,-0.152600,0.715800,0.000000,0.000000,1.000000 0.160700,-0.186000,-0.381300,0.000000,-1.000000,0.000000 -0.109900,-0.186000,0.151500,0.000000,-1.000000,0.000000 -0.355200,-0.186000,-0.237500,0.000000,-1.000000,0.000000 0.160700,-0.186000,-0.262900,0.000000,-1.000000,0.000000 0.570800,-0.169500,-0.102200,0.999900,-0.016450,-0.000001 -0.571500,-0.177900,-0.237500,-1.000000,0.000000,0.000000 -0.296000,-0.003331,0.202300,0.000000,1.000000,0.000000 -0.169100,-0.364000,0.677900,0.000000,0.000000,-1.000000 -0.571500,-0.186400,0.185400,-1.000000,0.000000,0.000000 0.118400,-0.186000,0.185400,0.000000,-1.000000,0.000000 -0.515900,-0.220200,0.677900,-0.000118,0.000000,-1.000000 0.177600,-0.034160,0.715800,0.000000,0.000000,1.000000 -0.279100,-0.186000,0.143100,0.000000,-1.000000,0.000000 0.186100,-0.003331,0.143100,0.000000,1.000000,0.000000 -0.253700,-0.186000,0.160000,0.000000,-1.000000,0.000000 -0.101500,-0.186000,0.286900,0.000000,-1.000000,0.000000 -0.499000,-0.186000,0.582900,0.000000,-1.000000,0.000000 -0.355200,-0.186000,0.320700,0.000000,-1.000000,0.000000 -0.397500,-0.347100,0.715800,0.000000,0.000000,1.000000 -0.321400,-0.003331,-0.220600,0.000000,1.000000,0.000000 -0.194500,-0.186000,-0.660400,0.000000,-1.000000,0.000000 0.465200,-0.186000,0.278400,0.000000,-1.000000,0.000000 0.490600,-0.186000,-0.144500,0.000000,-1.000000,0.000000 -0.456700,-0.186000,-0.558900,0.000000,-1.000000,0.000000 -0.482100,-0.003331,-0.381300,0.000000,1.000000,0.000000 -0.312900,-0.186000,-0.355900,0.000000,-1.000000,0.000000 -0.321400,-0.186000,0.202300,0.000000,-1.000000,0.000000 0.541600,-0.203300,0.379900,-1.000000,0.000000,0.000000 -0.439800,-0.003331,-0.127600,0.000000,1.000000,0.000000 0.321400,-0.228700,0.715800,0.000000,0.000000,1.000000 -0.135300,-0.186000,-0.533500,0.000000,-1.000000,0.000000 -0.397500,-0.186000,-0.136000,0.000000,-1.000000,0.000000 0.321400,-0.186000,-0.339000,0.000000,-1.000000,0.000000 0.507500,-0.186000,0.286900,0.000000,-1.000000,0.000000 -0.321400,-0.003331,-0.339000,0.000000,1.000000,0.000000 -0.431300,-0.321700,0.677900,0.000000,0.000000,-1.000000 0.000011,0.109600,0.675900,0.000000,0.008555,1.000000 0.135300,0.287500,0.740700,0.000000,-0.064970,-0.997900 0.016930,-0.186000,-0.026070,0.000000,-1.000000,0.000000 -0.194500,-0.186000,-0.034520,0.000000,-1.000000,0.000000 0.033840,-0.003331,-0.702700,0.000000,1.000000,0.000000 -0.076110,-0.003331,-0.330500,0.000000,1.000000,0.000000 -0.456700,-0.186000,0.075430,0.000000,-1.000000,0.000000 0.033850,-0.186000,-0.076810,0.000000,-1.000000,0.000000 0.000015,-0.186000,0.413700,0.000000,-1.000000,0.000000 -0.016900,-0.186000,0.633600,0.000000,-1.000000,0.000000 0.321400,-0.186000,0.024680,0.000000,-1.000000,0.000000 0.042300,-0.003331,-0.144500,0.000000,1.000000,0.000000 0.279100,-0.186000,0.066970,0.000000,-1.000000,0.000000 0.312900,-0.003331,-0.076810,0.000000,1.000000,0.000000 -0.084570,-0.245600,0.715800,0.000000,0.000000,1.000000 -0.076100,-0.186000,-0.423600,0.000000,-1.000000,0.000000 0.313000,-0.186000,-0.093730,0.000000,-1.000000,0.000000 -0.059190,-0.003331,0.168500,0.000000,1.000000,0.000000 0.355200,-0.003003,0.650500,0.000000,0.999200,-0.040260 0.570500,-0.194800,-0.533500,1.000000,0.000000,0.000000 -0.287500,-0.003331,-0.271300,0.000000,1.000000,0.000000 -0.245300,-0.296300,0.677900,0.000000,0.000000,-1.000000 0.570800,-0.220300,0.270000,0.999800,-0.019850,0.000000 -0.490500,-0.254100,0.715800,0.000000,0.000000,1.000000 0.313000,-0.186000,-0.144500,0.000000,-1.000000,0.000000 0.304500,0.120800,0.522900,0.000000,0.992500,0.122300 -0.025370,-0.101800,0.715800,0.000000,0.000000,1.000000 -0.008430,-0.003332,-0.093740,0.016370,0.999800,-0.013100 0.152300,-0.003331,0.092340,0.000000,1.000000,0.000000 0.422900,-0.003331,0.117700,0.000000,1.000000,0.000000 -0.109900,-0.003331,0.058510,0.000000,1.000000,0.000000 -0.524400,-0.101800,0.715800,0.000000,0.000000,1.000000 -0.084560,-0.186000,0.092340,0.000000,-1.000000,0.000000 0.118400,0.125700,0.439100,0.000000,1.000000,-0.004263 -0.109900,-0.003331,-0.296700,0.000000,1.000000,0.000000 0.203000,0.125700,0.430600,0.000000,0.999900,-0.016780 0.067670,-0.003331,-0.085270,0.000000,1.000000,0.000000 0.253700,0.118100,0.675900,0.000000,-0.003423,1.000000 0.487800,0.082930,0.574400,0.926900,0.375400,0.000000 -0.236800,0.123300,0.405400,0.000000,0.998600,-0.052350 -0.093020,-0.186000,0.371400,0.000000,-1.000000,0.000000 0.059220,-0.186000,-0.491200,0.000000,-1.000000,0.000000 0.456700,-0.003331,-0.034530,0.000000,1.000000,0.000000 -0.465200,-0.003331,-0.034530,0.000000,1.000000,0.000000 -0.059200,-0.003331,-0.102200,-0.006475,1.000000,0.003224 0.253700,-0.003331,-0.068360,0.000000,1.000000,0.000000 -0.025360,0.092910,0.673900,0.000000,-0.028780,-0.999600 -0.008445,-0.003331,-0.229100,0.000000,1.000000,0.000000 -0.422900,-0.003331,-0.000695,0.000000,1.000000,0.000000 0.177600,0.125700,0.447500,0.000000,1.000000,0.008749 0.042300,-0.003331,0.168500,0.000000,1.000000,0.000000 -0.363700,-0.003331,-0.085270,0.000000,1.000000,0.000000 -0.042270,-0.186000,0.168500,0.000000,-1.000000,0.000000 -0.126900,-0.186000,-0.026070,0.000000,-1.000000,0.000000 -0.542300,-0.220200,0.642100,0.999800,0.019660,-0.000002 0.570800,-0.186400,-0.271300,0.999800,-0.019720,0.000000 0.515900,-0.228700,0.715800,0.000000,0.000000,1.000000 -0.456700,-0.186000,0.608300,0.000000,-1.000000,0.000000 -0.219900,-0.186000,-0.525100,0.000000,-1.000000,0.000000 -0.397500,-0.003331,-0.508200,0.000000,1.000000,0.000000 0.558200,-0.287900,0.677900,0.004838,0.000000,-1.000000 -0.279100,-0.186000,0.210700,0.000000,-1.000000,0.000000 -0.203000,-0.003331,0.126200,0.000000,1.000000,0.000000 -0.245300,-0.211800,0.715800,0.000000,0.000000,1.000000 -0.186100,-0.003331,-0.423600,0.000000,1.000000,0.000000 0.177600,-0.003331,-0.279800,0.000000,1.000000,0.000000 -0.177600,-0.186000,0.354500,0.000000,-1.000000,0.000000 -0.397500,-0.186000,-0.288300,0.000000,-1.000000,0.000000 0.372200,-0.003331,-0.288300,0.000000,1.000000,0.000000 0.312900,-0.003331,-0.305200,0.000000,1.000000,0.000000 -0.329800,-0.186000,0.464500,0.000000,-1.000000,0.000000 0.482100,-0.003331,-0.474300,0.000000,1.000000,0.000000 -0.363700,-0.003331,0.160000,0.000000,1.000000,0.000000 0.329900,-0.003331,-0.584300,0.000000,1.000000,0.000000 -0.160700,-0.254100,0.677900,0.000000,0.000000,-1.000000 0.228400,-0.003331,-0.601200,0.000000,1.000000,0.000000 -0.482100,-0.186000,-0.220600,0.000000,-1.000000,0.000000 -0.482100,-0.186000,-0.288300,0.000000,-1.000000,0.000000 -0.507400,-0.186000,-0.347500,0.000000,-1.000000,0.000000 -0.177600,-0.003331,-0.626600,0.000000,1.000000,0.000000 0.296000,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.016730,-0.003395,0.489900,0.255200,0.966900,-0.001520 -0.571500,-0.194800,0.100800,-1.000000,0.000000,0.000000 0.312900,-0.084990,-0.769600,0.000000,0.039120,-0.999200 0.095150,0.108600,0.591400,0.000000,0.931300,0.364200 -0.542300,-0.203400,0.041590,0.999800,-0.019630,0.000000 -0.498300,0.058880,0.675600,0.000000,-0.069940,-0.997600 0.169200,-0.101800,-0.769700,0.000000,-0.032130,-0.999500 0.573300,0.143400,0.692900,-0.989900,0.000165,0.141600 0.296000,0.270500,0.691400,0.013410,-0.178900,0.983800 -0.363700,0.320600,0.739900,0.000000,0.107000,0.994300 0.076130,0.295600,0.742500,0.000000,0.074710,0.997200 0.262200,-0.211800,-0.768000,0.000000,-0.000059,1.000000 0.406000,0.287200,0.743100,0.000001,0.064220,0.997900 0.313000,0.121100,0.363600,-0.000099,0.990500,-0.137800 0.270700,-0.093390,-0.769800,0.000000,0.004040,-1.000000 0.355200,0.121800,0.514600,0.000000,0.994000,0.109300 -0.543500,-0.076990,0.278400,-0.997600,0.068910,0.000000 -0.329800,0.035860,0.717000,0.061470,-0.368600,0.927500 -0.549700,0.228100,0.744200,0.006857,0.006441,1.000000 0.084590,0.345400,0.736800,0.000000,0.119200,0.992900 -0.566000,0.135000,0.732700,0.538000,0.120600,-0.834300 0.059220,-0.178100,0.678000,0.000000,-0.230700,-0.973000 -0.017500,0.068760,0.594100,0.970700,0.239700,-0.015500 -0.540900,-0.143700,-0.051440,-0.967400,0.253100,0.000000 0.541600,-0.186400,-0.567400,-1.000000,0.004909,0.000000 0.016930,-0.014110,0.674600,0.000000,0.914100,-0.405500 0.558200,-0.321700,0.677900,0.004838,0.000000,-1.000000 -0.496400,0.058590,0.354500,-0.994700,0.102700,0.000000 0.569400,-0.156100,-0.130400,0.811200,0.584500,0.016550 0.000013,0.287100,0.743100,0.000000,0.064520,0.997900 0.541600,-0.228700,0.075430,-1.000000,-0.007436,0.000000 -0.571500,-0.194800,-0.719600,-1.000000,0.000000,0.000000 -0.571500,-0.211800,-0.288300,-1.000000,0.000000,0.000000 0.541600,-0.203300,-0.643500,-1.000000,0.000000,0.000000 -0.542600,-0.186400,0.270000,1.000000,0.004731,0.000000 -0.569800,-0.239000,0.340400,-0.636600,-0.771200,0.000000 -0.571500,-0.203300,-0.482800,-1.000000,0.000000,0.000000 -0.542600,-0.203300,-0.161400,0.999800,-0.019670,0.000000 0.270700,-0.009562,0.715900,0.000000,0.153500,0.988200 0.507500,-0.003332,0.557500,-0.019450,0.999800,0.000000 0.541600,-0.186400,0.236100,-1.000000,0.004909,0.000000 0.541600,-0.186400,0.337600,-1.000000,0.004909,0.000000 -0.549700,-0.169500,0.715800,0.000000,0.000000,1.000000 -0.495100,0.034500,0.422200,-0.979500,-0.201200,0.000000 0.570300,-0.235000,0.541300,0.979200,-0.203100,0.000000 -0.571400,-0.235100,-0.220600,-0.986900,-0.161200,0.000000 0.338300,0.152400,0.739400,0.000000,-0.092960,0.995700 0.329900,-0.398600,0.685300,0.000000,-0.969200,-0.246500 -0.422900,-0.194800,-0.797100,0.000000,0.000000,-1.000000 -0.473600,-0.395500,0.713900,0.000000,-0.605500,0.795800 -0.186100,0.320600,0.739900,0.000000,0.107000,0.994300 0.572100,0.075530,0.710900,-0.931600,0.085890,-0.353100 0.373100,-0.161900,-0.797000,-0.001118,0.209100,-0.977900 -0.544000,-0.101700,0.549100,-0.999500,-0.031730,-0.000019 -0.544000,-0.101700,-0.584300,-0.999500,-0.031730,0.000028 -0.472900,0.042000,0.617100,-0.000064,-0.112400,0.993700 0.414400,0.050490,0.264400,0.000000,-0.018600,-0.999800 -0.016680,0.036890,0.278400,0.989100,-0.147400,-0.003788 -0.544000,-0.085270,0.083880,-0.999300,0.038670,0.000000 -0.543600,-0.109800,-0.339000,-0.997900,-0.065060,-0.000007 -0.117700,0.124300,0.733700,0.000000,0.150500,-0.988600 0.338300,0.194000,0.677600,0.000000,0.100600,-0.994900 0.253700,0.168400,0.739100,0.000000,0.091840,-0.995800 0.543700,-0.149300,-0.759100,0.672200,0.738000,-0.059050 -0.542400,-0.122900,-0.539200,-0.992000,-0.126100,0.000103 -0.397500,0.106500,0.289200,0.000000,0.929200,-0.369500 0.541300,-0.042620,0.715800,0.000000,0.000000,1.000000 -0.565400,-0.240100,0.396800,-0.115100,-0.993400,0.000000 -0.544100,-0.093450,0.591300,-1.000000,0.004024,0.000000 -0.569900,0.284600,0.692300,-0.237300,0.342500,-0.909100 -0.571500,-0.228600,-0.364400,-1.000000,-0.005917,0.000000 -0.092310,0.170200,0.675500,0.000000,0.072190,-0.997400 0.541600,-0.220200,0.430700,-1.000000,0.000000,0.000000 -0.169100,0.134900,0.675800,0.000000,-0.018770,0.999800 -0.550200,-0.240200,0.202300,0.085960,-0.996300,0.000000 0.490600,-0.220200,-0.768000,0.000000,0.039300,0.999200 0.152300,-0.003332,0.642100,0.000000,0.999800,-0.019490 0.544400,-0.239000,-0.488400,-0.514100,-0.857700,0.000000 0.541700,-0.235100,-0.440500,-0.964900,-0.262400,0.000000 0.526100,-0.005331,-0.629400,0.740200,0.672300,0.000000 -0.101500,-0.025700,0.715800,0.000000,0.000059,1.000000 0.211500,-0.220300,-0.768000,0.000039,-0.000138,1.000000 0.431400,0.115600,0.734700,0.000000,-0.133000,0.991100 -0.024650,-0.006088,0.681200,0.000000,0.744800,-0.667300 -0.186100,-0.143100,-0.767400,0.000000,0.347100,-0.937800 -0.135300,0.001350,0.268100,0.000000,0.652500,-0.757800 -0.050740,0.228100,0.744200,0.000000,0.008479,1.000000 -0.406000,-0.002758,0.709000,0.000000,0.992100,0.125200 -0.059190,0.225600,0.683700,0.000000,-0.112100,0.993700 -0.507400,-0.003332,0.608300,0.020030,0.999800,-0.000187 0.110000,0.019290,0.612000,0.000000,-0.407300,0.913300 0.018970,0.082510,0.606500,-0.900200,0.421400,0.110100 -0.489800,0.221900,0.744500,0.000360,0.000795,1.000000 -0.569800,-0.239000,-0.310800,-0.636600,-0.771200,0.000000 0.538400,-0.172600,-0.231900,-0.625800,-0.780000,0.000000 0.540900,-0.129400,0.244600,0.987600,-0.156900,0.000000 -0.542300,-0.203300,0.134600,1.000000,-0.000000,0.000000 0.050760,-0.037940,-0.763000,0.000000,0.235500,-0.971900 -0.022910,0.000741,0.340400,0.736600,0.676400,0.001409 0.570000,-0.234900,-0.600500,0.985100,-0.172000,0.000000 0.169200,0.093610,0.730800,0.000000,-0.208000,0.978100 -0.534700,-0.172100,0.199500,-0.394000,-0.919100,0.000000 0.498300,0.259000,0.744200,-0.012680,0.035850,0.999300 0.406000,0.194200,0.743400,0.000000,-0.057540,0.998300 -0.420000,-0.395500,0.680300,0.000000,-0.619500,-0.785000 -0.015170,0.050430,0.371500,1.000000,-0.002554,0.000000 0.406000,0.337900,0.735900,0.000000,-0.123700,-0.992300 -0.118400,-0.012830,-0.755400,0.000000,0.350500,-0.936600 0.539500,-0.051350,0.236100,0.986700,0.162300,-0.010150 -0.003464,0.235100,0.742300,0.000000,0.004442,-1.000000 0.219900,0.112600,0.573200,-0.000003,0.980300,0.197400 0.411600,-0.004593,0.713900,-0.000001,0.712500,0.701700 -0.571500,-0.203300,-0.592700,-1.000000,0.000000,0.000000 -0.531200,-0.016900,0.186100,-0.944000,0.330000,0.000000 -0.304500,0.109200,0.301500,0.000000,0.982900,-0.184000 0.570800,-0.228700,0.413700,0.998500,-0.055150,0.000000 0.482100,0.093940,0.323500,0.842200,0.539200,-0.000001 -0.059210,0.288600,0.695300,-0.007674,-0.240000,0.970700 -0.544000,-0.085270,0.210700,-0.999300,0.038670,0.000000 -0.571500,-0.194800,-0.753400,-1.000000,0.000000,0.000000 -0.177600,0.101100,0.676100,0.000001,0.015710,0.999900 0.012620,0.050470,0.295300,-0.999800,-0.019000,0.000000 0.570500,-0.211800,-0.567400,1.000000,0.000000,0.000000 -0.541600,-0.128500,-0.477200,-0.988300,-0.152300,0.000149 -0.346800,0.085060,0.270600,-0.000005,0.450200,-0.892900 -0.245300,-0.186400,-0.797100,0.000000,0.000000,-1.000000 0.482100,-0.186400,0.677900,0.000000,0.004847,-1.000000 0.000020,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.565200,-0.152600,-0.253700,0.229600,0.973300,0.000000 -0.569800,-0.156300,-0.508200,-0.814200,0.580600,0.000120 0.017390,-0.162100,-0.797100,0.001083,0.115300,-0.993300 -0.522100,-0.002888,-0.736500,-0.244900,0.969500,0.003834 -0.371400,-0.162300,-0.797100,0.006498,0.124500,-0.992200 -0.572700,-0.235100,0.668300,-0.982600,-0.161100,-0.092910 0.550000,-0.240100,-0.034520,-0.092980,-0.995700,0.000000 -0.470400,0.108300,0.573900,-0.475400,0.851900,0.219700 -0.567500,0.152700,0.682500,0.728900,-0.126000,0.673000 0.067670,-0.239100,-0.768600,0.000000,-0.677000,0.736000 0.530500,-0.233400,-0.676000,-0.213600,0.885600,-0.412400 0.526000,-0.182000,0.016220,0.795300,-0.606300,0.000000 -0.544000,-0.101700,0.117700,-0.999500,-0.031770,0.000028 0.543000,-0.109800,-0.525100,0.994300,-0.106300,0.000022 0.544400,-0.239000,0.374300,-0.514100,-0.857700,0.000000 -0.550300,-0.152500,-0.660400,-0.219700,0.975600,0.000000 -0.016730,-0.003399,0.557500,0.270800,0.962600,0.000000 0.465200,-0.233400,-0.702700,-0.013070,0.999900,0.006555 0.380600,-0.395500,0.713900,0.000000,-0.605500,0.795800 -0.109200,-0.010530,0.679100,0.000000,0.635300,-0.772300 -0.569800,-0.156300,0.033130,-0.818400,0.574700,-0.002397 -0.530000,0.351600,0.731900,0.000000,-0.675300,-0.737500 -0.015160,-0.153700,-0.792200,-0.002349,0.925200,-0.379500 -0.571200,-0.380100,0.686000,-0.938000,-0.158800,-0.308100 -0.534800,-0.028540,-0.389000,-0.962700,0.270500,0.000000 0.491300,0.349300,0.709800,0.000000,0.304500,-0.952500 0.534500,-0.028650,-0.534200,0.969200,0.246400,0.000007 0.153000,0.107100,0.289200,-0.000035,0.878900,-0.476900 -0.476400,0.086980,0.608300,0.007617,0.443000,0.896500 -0.219900,-0.044360,-0.764500,-0.000057,0.205400,-0.978700 0.194500,-0.185600,0.657300,0.000000,-0.961700,0.274100 -0.532800,0.296700,0.697500,0.000000,-0.232000,0.972700 0.279100,-0.372500,0.715800,0.000000,0.000000,1.000000 -0.465200,-0.186000,0.650500,0.000000,-0.999700,0.024610 -0.380600,0.342600,0.709400,0.000000,-0.274000,0.961700 0.033850,0.058320,0.678100,0.000000,0.054980,0.998500 0.490600,-0.186000,-0.744100,0.000009,-0.991200,-0.132200 0.321400,0.050490,0.264400,0.000000,-0.018600,-0.999800 -0.414400,-0.186000,-0.744100,-0.000014,-0.991200,-0.132100 -0.569800,-0.156300,0.185400,-0.814200,0.580500,0.000120 0.540700,-0.057900,-0.200900,0.986800,0.161900,0.000000 -0.135300,0.348400,0.711600,-0.000051,-0.535900,0.844300 -0.422900,0.107200,0.589500,0.000000,0.942700,0.333600 -0.550500,-0.152500,-0.194500,-0.219700,0.975600,0.000000 -0.558200,-0.262500,0.677900,-0.004983,0.002665,-1.000000 0.025390,0.329700,0.736800,0.000019,-0.114800,-0.993400 0.439800,-0.240300,-0.787200,0.000069,-0.999900,-0.010440 0.101500,0.295300,0.694800,0.000000,0.232500,-0.972600 0.541700,-0.123600,-0.017600,0.992000,-0.126500,0.000000 -0.439800,0.288600,0.695200,0.000037,-0.254700,0.967000 -0.101500,-0.186000,-0.736500,0.000000,-1.000000,-0.001680 -0.242400,0.021160,0.268400,-0.000032,-0.369900,-0.929100 -0.312900,-0.169500,-0.797100,-0.000203,0.004476,-1.000000 0.355900,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.116300,0.094000,0.676200,0.000039,0.025980,0.999700 0.540900,-0.129400,0.134600,0.987600,-0.156900,0.000000 0.329900,0.040390,0.716100,0.010600,0.224600,-0.974400 -0.486200,0.089790,0.363000,-0.860500,0.509500,-0.000092 -0.542300,-0.194900,0.007764,1.000000,-0.000000,0.000000 0.009174,0.147700,0.676200,0.000000,-0.045890,0.998900 -0.526700,-0.182200,0.475800,-0.778100,-0.628200,0.000000 -0.382200,0.000496,0.692800,-0.654300,0.748600,-0.107600 -0.540900,-0.143700,0.033140,-0.967400,0.253100,-0.000031 -0.544100,-0.149400,-0.084560,-0.677400,0.735700,0.000000 -0.118400,0.210600,0.679400,0.000000,0.122800,-0.992400 -0.543900,-0.149400,0.591400,-0.682700,0.730700,0.000000 -0.542400,-0.178200,-0.432000,0.963200,-0.268800,0.000000 0.000015,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.053550,0.104500,0.595000,0.004356,0.849300,0.527900 -0.017330,0.032570,0.557500,0.967400,-0.253100,0.000425 0.526100,-0.005331,-0.079630,0.740300,0.672300,-0.000009 0.499000,-0.003331,0.261500,0.000035,1.000000,0.000000 -0.346700,0.041710,0.680900,0.047730,0.444400,0.894600 0.541600,-0.194800,-0.093730,-1.000000,0.000000,0.000000 -0.574400,-0.328800,0.690400,-0.999500,0.000517,-0.031960 -0.533100,-0.022670,0.321400,-0.953700,0.300700,0.000000 0.543700,-0.085270,-0.330500,0.998300,0.058280,-0.000003 -0.329800,-0.228600,-0.768000,0.000000,0.026500,0.999600 -0.067650,0.135800,0.737400,0.000000,-0.135000,0.990800 -0.304500,0.092910,0.673900,0.000000,-0.028780,-0.999600 0.575000,-0.235800,0.692100,1.000000,-0.000663,0.004996 0.355200,0.042040,0.677100,-0.002315,-0.102800,-0.994700 0.537100,-0.173900,0.672400,-0.529700,-0.703800,-0.473300 -0.543900,-0.149400,-0.525100,-0.682600,0.730800,0.000000 -0.541300,-0.057820,-0.042980,-0.986800,0.161800,0.000000 0.211500,0.337200,0.738300,0.000000,0.149000,0.988800 0.464500,0.125300,0.456000,0.206400,0.978200,0.022400 -0.186100,0.103600,0.283900,0.000000,0.809300,-0.587400 -0.558200,-0.152700,0.380600,-0.032730,0.999500,-0.000056 -0.529200,-0.176800,0.109200,-0.788200,-0.615400,0.000000 0.541600,-0.211800,-0.406700,-1.000000,0.000000,0.000000 -0.406000,-0.228700,-0.797100,0.000000,-0.013670,-0.999900 0.194500,0.177300,0.741900,0.000000,-0.118100,0.993000 0.355200,0.075340,0.676700,0.000000,0.105300,0.994400 0.236800,0.321300,0.737800,0.000000,-0.108400,-0.994100 0.312900,-0.018850,-0.757500,0.000000,0.313400,-0.949600 0.540600,-0.143600,-0.355900,0.964200,0.265300,0.000000 -0.270600,0.304500,0.739400,0.000000,-0.086030,-0.996300 0.541600,-0.203300,-0.169800,-1.000000,0.000000,0.000000 -0.397500,-0.211700,-0.768300,0.000000,0.123200,0.992400 -0.448200,-0.177900,-0.797100,0.000000,0.000000,-1.000000 0.436100,-0.152700,-0.782900,0.001134,0.997400,-0.072380 -0.543500,-0.076990,-0.381300,-0.997600,0.068910,0.000000 -0.084560,-0.032060,-0.761500,0.000000,0.265400,-0.964100 -0.542400,-0.178100,-0.119100,0.974500,-0.224400,0.000000 -0.532800,-0.240300,-0.643500,0.000000,-1.000000,0.000000 0.346800,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.438200,0.226000,0.742200,0.000000,0.014140,-0.999900 0.346800,-0.014100,0.674600,-0.010510,0.824500,-0.565800 -0.528800,-0.010380,-0.034520,-0.924700,0.380600,0.000000 -0.569800,-0.239000,-0.412300,-0.636600,-0.771200,0.000000 0.397500,0.232300,0.684400,0.000284,-0.133500,0.991100 0.315800,0.032490,0.678400,0.000639,-0.344800,-0.938700 -0.067630,-0.398700,0.692800,0.000000,-1.000000,-0.006052 -0.482100,-0.017260,0.716200,0.006575,0.011470,0.999900 -0.203000,-0.003331,0.625200,0.000000,1.000000,-0.003787 -0.287500,0.244800,0.744300,0.000000,0.007220,1.000000 0.571100,-0.169500,-0.474300,0.999500,-0.031030,-0.006546 -0.066930,0.355400,0.711700,0.000000,0.396300,-0.918100 0.515900,-0.186000,0.134600,0.052520,-0.998600,0.000000 0.564600,-0.239900,0.211500,0.140000,-0.990200,0.000000 -0.413700,0.153600,0.676500,0.000000,-0.029420,0.999600 0.439700,-0.241200,-0.727600,-0.217800,-0.951100,-0.219000 0.571100,-0.161500,0.658500,0.995900,0.067340,-0.060410 -0.477400,-0.385600,-0.719300,-0.053100,0.229400,-0.971900 0.237500,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.075400,-0.004251,0.686100,0.000000,0.966500,-0.256600 -0.126800,0.303900,0.741500,0.000000,0.084850,0.996400 0.566700,-0.084910,0.715700,0.177600,0.000000,0.984100 -0.549700,0.336500,0.705800,-0.000061,0.282800,-0.959200 0.178300,0.170200,0.675500,0.000000,0.072190,-0.997400 0.465200,0.000288,0.275300,-0.002197,0.642900,-0.766000 -0.152200,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 -0.499200,-0.003391,0.337600,-0.302100,0.953300,0.000000 -0.245300,-0.178100,0.678000,0.000000,-0.230600,-0.973000 0.389100,0.051900,0.720900,0.000050,-0.245600,0.969400 -0.541300,0.185600,0.676800,0.000000,0.090400,-0.995900 -0.019250,0.041720,0.616400,0.400200,-0.205700,0.893100 -0.414400,-0.002730,0.657000,0.000000,0.986200,0.165700 0.448300,-0.002730,0.657000,0.000000,0.986200,0.165700 0.363700,0.322700,0.704000,0.000000,-0.292500,0.956300 0.256600,0.032270,0.714800,0.000000,-0.211200,-0.977400 -0.262200,-0.002714,-0.744200,0.000000,0.994700,-0.103300 -0.143800,-0.003166,-0.229000,-0.036090,0.999100,0.022980 0.000006,-0.372500,0.715800,0.000000,0.000000,1.000000 0.135300,-0.143400,-0.767400,0.000000,0.337500,-0.941300 0.329900,0.282400,0.693800,0.000000,-0.275000,0.961400 0.084590,0.169200,0.677800,0.000000,-0.088930,0.996000 0.487800,0.082930,0.286900,0.916300,0.400600,0.000171 -0.499200,-0.003391,0.532100,-0.302100,0.953300,0.000000 0.550300,-0.152600,-0.203700,0.221500,0.975200,0.000000 0.499000,0.126600,0.675800,0.013120,0.000172,0.999900 -0.109900,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.253700,-0.003332,-0.423600,0.016370,0.999800,-0.013100 -0.228400,-0.135700,0.715800,-0.009878,-0.019660,0.999800 0.143800,-0.003332,0.168500,-0.016370,0.999800,0.013110 -0.542100,-0.211800,0.379900,0.999900,0.013030,0.003304 -0.236800,-0.186000,-0.702700,0.000000,-1.000000,0.000000 0.287600,-0.003331,-0.161400,0.000000,1.000000,0.000000 -0.499000,-0.186000,-0.491200,0.000000,-1.000000,0.000000 -0.456700,-0.003331,-0.161400,0.000000,1.000000,0.000000 0.245300,-0.186000,0.447600,0.000000,-1.000000,0.000000 0.211500,-0.321700,0.677900,0.000000,0.000000,-1.000000 0.228400,-0.186000,0.261500,0.000000,-1.000000,0.000000 0.211500,-0.003331,-0.449000,0.000000,1.000000,0.000000 -0.372100,-0.313300,0.715800,0.000000,0.000000,1.000000 0.439800,-0.186000,0.286900,0.000000,-1.000000,0.000000 0.253700,-0.186000,-0.279800,0.000000,-1.000000,0.000000 0.448300,-0.186000,-0.127600,0.000000,-1.000000,0.000000 0.152300,-0.186000,-0.516600,0.000000,-1.000000,0.000000 0.372200,-0.003331,0.202300,0.000000,1.000000,0.000000 -0.177600,-0.003331,-0.457400,0.000000,1.000000,0.000000 0.363700,-0.186000,0.219200,0.000000,-1.000000,0.000000 -0.304500,-0.220200,0.677900,0.000000,0.000000,-1.000000 0.203000,-0.186000,0.405300,0.000000,-1.000000,0.000000 -0.279100,-0.003331,0.100800,0.000000,1.000000,0.000000 -0.143800,-0.186000,-0.364400,0.000000,-1.000000,0.000000 0.422900,-0.186000,-0.398200,0.000000,-1.000000,0.000000 0.422900,-0.186000,0.532100,0.000000,-1.000000,0.000000 -0.329800,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.236800,-0.003331,-0.279800,0.000000,1.000000,0.000000 0.219900,-0.186000,-0.237500,0.000000,-1.000000,0.000000 0.169200,-0.186000,0.261500,0.000000,-1.000000,0.000000 0.186100,-0.186000,0.379900,0.000000,-1.000000,0.000000 0.186100,-0.186000,0.481400,0.000000,-1.000000,0.000000 -0.253700,-0.003331,-0.677300,0.000000,1.000000,0.000000 -0.160700,-0.003331,0.160000,0.000000,1.000000,0.000000 -0.515900,-0.380900,0.677900,0.000000,-0.013730,-0.999900 -0.338300,-0.003331,-0.685800,0.000000,1.000000,0.000000 -0.211400,-0.003331,-0.186800,0.000000,1.000000,0.000000 -0.194500,-0.186000,-0.212100,0.000000,-1.000000,0.000000 -0.571500,-0.220200,-0.254400,-1.000000,-0.000178,0.000000 0.507500,-0.003332,-0.161400,-0.019460,0.999800,0.000000 -0.414400,-0.186000,-0.178300,0.000000,-1.000000,0.000000 -0.203000,-0.186000,0.117700,0.000000,-1.000000,0.000000 -0.490500,-0.003331,-0.677300,0.000070,1.000000,-0.000061 0.465200,-0.279400,0.677900,0.000000,0.000000,-1.000000 0.304500,-0.003331,-0.567400,0.000000,1.000000,0.000000 0.329900,-0.186000,-0.457400,0.000000,-1.000000,0.000000 0.219900,-0.186000,0.320700,0.000000,-1.000000,0.000000 0.414400,0.125700,0.430600,0.000000,0.999900,-0.016780 0.431300,-0.271000,0.715800,0.000000,0.000000,1.000000 -0.118400,-0.003331,-0.567400,0.000000,1.000000,0.000000 -0.118400,-0.186000,0.506800,0.000000,-1.000000,0.000000 -0.542600,-0.203300,-0.254400,1.000000,0.000059,0.000000 -0.355200,-0.161000,0.715800,0.000000,0.000000,1.000000 0.397500,-0.186000,0.320700,0.000000,-1.000000,0.000000 -0.397500,-0.186000,0.422200,0.000000,-1.000000,0.000000 0.397500,-0.186000,0.396800,0.000000,-1.000000,0.000000 0.304500,-0.347100,0.677900,0.000000,0.000000,-1.000000 -0.076110,-0.279400,0.715800,0.000000,0.000000,1.000000 0.570500,-0.220200,0.083880,0.999800,-0.019890,-0.000015 0.033840,-0.003331,-0.643500,0.000000,1.000000,0.000000 0.059220,-0.287900,0.677900,0.000000,0.000000,-1.000000 -0.160700,-0.003331,0.100800,0.000000,1.000000,0.000000 -0.448300,-0.042640,0.716200,0.003294,-0.006577,1.000000 0.059220,-0.186000,0.396800,0.000000,-1.000000,0.000000 -0.025370,-0.220200,0.715800,0.000020,0.000020,1.000000 -0.135300,-0.003331,-0.034530,0.000000,1.000000,0.000000 0.016930,-0.186000,0.151500,0.000000,-1.000000,0.000000 -0.296000,-0.003331,-0.059900,0.000000,1.000000,0.000000 -0.431300,-0.186000,-0.051440,0.000000,-1.000000,0.000000 0.507500,-0.042620,0.715800,0.000000,0.000000,1.000000 -0.363700,-0.034160,0.715800,-0.000020,-0.000020,1.000000 -0.076100,-0.186000,-0.482800,0.000000,-1.000000,0.000000 0.329900,-0.067990,0.715800,0.000000,0.000000,1.000000 -0.507400,0.329700,0.736800,0.000000,-0.114800,-0.993400 0.000013,-0.003331,0.168500,0.000000,1.000000,0.000000 -0.355200,-0.003331,0.007763,0.000000,1.000000,0.000000 0.245300,-0.003331,0.007763,0.000000,1.000000,0.000000 0.541600,-0.228700,0.007767,-1.000000,-0.007436,0.000000 0.346800,-0.003331,0.016220,0.000000,1.000000,0.000000 -0.515900,-0.003000,-0.076810,0.030230,0.999500,0.000000 -0.279100,-0.186000,0.016220,0.000000,-1.000000,0.000000 -0.270600,-0.067990,0.715800,-0.000020,-0.000020,1.000000 -0.067650,-0.186000,-0.381300,0.000000,-1.000000,0.000000 -0.025360,-0.254100,0.677900,0.000000,0.000000,-1.000000 0.186100,-0.003331,-0.068360,0.000000,1.000000,0.000000 -0.016900,-0.003331,0.126200,0.000000,1.000000,0.000000 0.270700,-0.003331,0.041590,0.000000,1.000000,0.000000 0.236800,-0.051080,0.715800,0.000000,0.000000,1.000000 -0.211400,-0.003331,0.066970,0.000000,1.000000,0.000000 -0.211400,0.186200,0.679200,0.000000,-0.091670,0.995800 -0.346800,0.093650,0.730500,0.000000,-0.188200,0.982100 0.084590,-0.003331,-0.347500,0.000000,1.000000,0.000000 0.059210,-0.084910,0.715800,0.000000,0.000000,1.000000 0.000015,-0.186000,0.202300,0.000000,-1.000000,0.000000 0.008475,-0.338600,0.677900,0.000000,0.000000,-1.000000 -0.549700,0.295500,0.742200,0.016470,0.071420,0.997300 0.000015,-0.186000,0.582900,0.000000,-1.000000,0.000000 -0.456700,-0.003331,-0.009153,0.000000,1.000000,0.000000 -0.329800,-0.186000,0.024680,0.000000,-1.000000,0.000000 -0.389000,0.194200,0.743000,0.000000,-0.057380,0.998400 0.143800,-0.093390,-0.769800,0.000000,0.004040,-1.000000 -0.059200,-0.144100,0.715800,-0.000000,-0.000059,1.000000 0.228400,-0.186000,-0.051440,0.000000,-1.000000,0.000000 -0.465200,-0.186000,-0.017610,0.000000,-1.000000,0.000000 0.042290,-0.355600,0.715800,0.000000,0.000000,1.000000 -0.076100,-0.186000,0.481400,0.000000,-1.000000,0.000000 0.346800,-0.186000,0.083880,0.000000,-1.000000,0.000000 -0.236800,-0.002999,-0.389800,0.039310,0.998800,-0.029460 0.570500,-0.186400,-0.719600,1.000000,0.000059,0.000000 0.355200,-0.186000,-0.711100,0.000000,-1.000000,0.000000 -0.270600,-0.003331,-0.508200,0.000000,1.000000,0.000000 -0.160700,-0.186000,-0.508200,0.000000,-1.000000,0.000000 -0.482100,-0.003331,-0.246000,0.000000,1.000000,0.000000 0.321400,-0.003331,0.185400,0.000000,1.000000,0.000000 -0.482100,-0.003331,0.236100,0.000000,1.000000,0.000000 0.431400,-0.211800,0.677900,0.000000,0.000000,-1.000000 -0.448200,-0.186000,0.117700,0.000000,-1.000000,0.000000 -0.101500,-0.186000,-0.643500,0.000000,-1.000000,0.000000 -0.101500,-0.186000,-0.178300,0.000000,-1.000000,0.000000 0.126900,-0.338600,0.677900,0.000000,0.000000,-1.000000 0.152300,-0.313300,0.677900,0.000000,0.000000,-1.000000 0.203000,-0.186000,0.286900,0.000000,-1.000000,0.000000 -0.245300,-0.003331,-0.203700,0.000000,1.000000,0.000000 -0.346800,-0.003331,-0.364400,0.000000,1.000000,0.000000 0.312900,-0.003331,-0.457400,0.000000,1.000000,0.000000 0.431400,-0.003331,0.168500,0.000000,1.000000,0.000000 -0.101500,-0.186000,0.236100,0.000000,-1.000000,0.000000 0.211500,-0.003331,-0.575800,0.000000,1.000000,0.000000 -0.219900,-0.186000,0.633600,0.000000,-1.000000,0.000000 -0.515900,0.101100,0.675700,0.000000,0.015120,0.999900 0.541600,-0.203300,0.616700,-1.000000,0.000000,0.000000 0.262200,-0.186000,0.202300,0.000000,-1.000000,0.000000 0.380600,-0.003332,-0.728000,0.000000,0.999800,0.019670 -0.228300,-0.003331,-0.136000,0.000000,1.000000,0.000000 0.219900,-0.228700,0.677900,0.000000,0.000000,-1.000000 -0.262200,-0.177900,0.715800,0.000000,0.000000,1.000000 -0.439800,-0.194800,0.677900,0.000000,0.000000,-1.000000 -0.456700,-0.152600,0.715800,0.000000,0.000000,1.000000 0.541600,-0.220200,0.126200,-1.000000,0.000000,0.000000 -0.236800,-0.186000,0.456000,0.000000,-1.000000,0.000000 0.465200,-0.186000,0.176900,0.000000,-1.000000,0.000000 0.160700,-0.203300,0.715800,0.000000,0.000000,1.000000 0.169200,-0.003331,0.261500,0.000000,1.000000,0.004824 0.152200,-0.313300,0.715800,0.000000,0.000000,1.000000 0.355200,-0.186000,0.185400,0.000000,-1.000000,0.000000 0.253700,-0.003331,0.160000,0.000000,1.000000,0.000000 -0.287500,-0.003331,0.151500,0.000000,1.000000,0.000000 -0.414400,-0.186000,0.312200,0.000000,-1.000000,0.000000 -0.406000,-0.003331,-0.279800,0.000000,1.000000,0.000000 -0.135300,-0.003331,-0.635000,0.000000,1.000000,0.000000 0.186100,-0.186000,-0.635000,0.000000,-1.000000,0.000000 -0.169100,-0.186000,0.481400,0.000000,-1.000000,0.000000 0.406000,-0.186000,0.286900,0.000000,-1.000000,0.000000 0.397500,-0.186000,-0.262900,0.000000,-1.000000,0.000000 -0.414400,-0.186000,-0.449000,0.000000,-1.000000,0.000000 0.456700,-0.355500,0.677900,0.000000,0.000000,-1.000000 -0.312900,-0.003331,-0.262900,0.000000,1.000000,0.000000 0.414400,-0.186000,-0.229100,0.000000,-1.000000,0.000000 -0.431300,-0.186000,0.278400,0.000000,-1.000000,0.000000 0.355200,-0.186000,-0.558900,0.000000,-1.000000,0.000000 0.389100,-0.262500,0.677900,0.000000,0.000000,-1.000000 0.211500,-0.003331,-0.508200,0.000000,1.000000,0.000000 0.448300,-0.186000,-0.728100,0.000000,-1.000000,0.000000 0.372200,-0.186000,-0.516600,0.000000,-1.000000,0.000000 0.296000,-0.186000,0.582900,0.000000,-1.000000,0.000000 0.042300,-0.186000,0.066970,0.000000,-1.000000,0.000000 -0.033820,-0.003331,0.041590,0.000000,1.000000,0.000000 0.093010,-0.003000,0.083910,-0.042580,0.998400,0.036010 0.321400,0.092910,0.673900,0.000000,-0.028780,-0.999600 0.540700,-0.057900,-0.023250,0.986800,0.161900,0.000000 0.321400,0.086480,0.727100,0.000000,0.197700,-0.980300 0.540700,-0.057900,0.129000,0.986800,0.161900,0.000000 -0.050730,-0.186000,-0.017610,0.000000,-1.000000,0.000000 0.093050,-0.186000,0.083880,0.000000,-1.000000,0.000000 0.093050,-0.186000,-0.584300,0.000000,-1.000000,0.000000 -0.118400,-0.228600,-0.768000,0.000000,0.026500,0.999600 -0.169100,-0.003331,0.066970,0.000000,1.000000,0.000000 0.177600,-0.186000,-0.059900,0.000000,-1.000000,0.000000 0.465200,-0.003331,0.066970,0.000000,1.000000,0.000000 0.110000,0.122100,0.371900,0.000000,0.994500,-0.104800 -0.008452,-0.161000,0.715800,-0.000000,-0.000059,1.000000 -0.355200,-0.060050,-0.767300,0.000000,0.144300,-0.989500 -0.008443,-0.186000,0.303800,0.000000,-1.000000,0.000000 -0.008443,-0.186000,-0.152900,0.000000,-1.000000,0.000000 0.000017,-0.211800,0.677900,0.000000,0.000000,-1.000000 0.016930,-0.186000,0.227700,0.000000,-1.000000,0.000000 -0.016900,-0.186000,-0.465900,0.000000,-1.000000,0.000000 -0.008443,-0.186000,-0.711100,0.000000,-1.000000,0.000000 0.279800,-0.010530,0.679100,-0.000051,0.633400,-0.773800 -0.414400,-0.003331,-0.059900,0.000000,1.000000,0.000000 -0.067650,-0.186000,0.608300,0.000000,-1.000000,0.000000 0.025390,-0.003331,-0.432000,0.000000,1.000000,0.000000 0.059220,-0.003331,0.117700,0.000000,1.000000,0.000000 0.050760,-0.186000,-0.186800,0.000000,-1.000000,0.000000 -0.143800,-0.186000,0.075430,0.000000,-1.000000,0.000000 -0.050730,-0.003331,-0.212100,0.000000,1.000000,0.000000 -0.042270,-0.186000,0.498300,0.000000,-1.000000,0.000000 -0.389000,-0.186000,0.058510,0.000000,-1.000000,0.000000 -0.253700,-0.186000,-0.026070,0.000000,-1.000000,0.000000 -0.287500,-0.003331,0.253000,0.000000,1.000000,0.003590 -0.380600,-0.186000,0.117700,0.000000,-1.000000,0.000000 0.372200,-0.186000,0.117700,0.000000,-1.000000,0.000000 0.118400,-0.003331,-0.432000,0.000000,1.000000,0.000000 0.543700,-0.101600,0.447600,0.998700,-0.051380,0.000000 -0.448200,-0.003331,-0.618100,0.000038,1.000000,-0.000025 0.203000,-0.003331,0.625200,0.000000,1.000000,-0.004161 0.465200,-0.186000,-0.584300,0.000000,-1.000000,0.000000 0.177600,-0.186000,-0.550400,0.000000,-1.000000,0.000000 0.321400,-0.186000,0.633600,0.000000,-1.000000,0.000000 -0.397500,-0.355500,0.677900,0.000000,0.000000,-1.000000 0.389100,-0.186000,-0.203700,0.000000,-1.000000,0.000000 0.329900,-0.003331,-0.406700,0.000000,1.000000,0.000000 -0.431300,-0.003331,0.193800,0.000000,1.000000,0.000000 -0.431300,-0.245600,0.715800,0.000000,0.000000,1.000000 -0.152200,-0.186000,0.532100,0.000000,-1.000000,0.000000 -0.203000,-0.186000,0.574400,0.000000,-1.000000,0.000000 -0.439800,-0.186000,0.532100,0.000000,-1.000000,0.000000 0.236800,-0.186000,-0.618100,0.000000,-1.000000,0.000000 0.355200,-0.254100,0.715800,0.000000,0.000000,1.000000 0.346800,-0.355600,0.715800,0.000000,0.000000,1.000000 -0.422900,-0.186000,0.168500,0.000000,-1.000000,0.000000 0.570800,-0.194900,-0.152900,0.999800,-0.019630,0.000000 0.287600,-0.220200,0.715800,0.000000,0.000000,1.000000 0.110000,-0.271000,0.677900,0.000000,0.000000,-1.000000 0.355200,-0.003331,-0.169800,0.000000,1.000000,0.000000 0.236800,-0.186000,0.379900,0.000000,-1.000000,0.000000 0.313000,-0.186000,-0.288300,0.000000,-1.000000,0.000000 0.143800,-0.186000,-0.305200,0.000000,-1.000000,0.000000 -0.329800,-0.135700,0.715800,0.000000,0.000000,1.000000 0.355200,-0.003331,-0.212100,0.000000,1.000000,0.000000 -0.169100,-0.355600,0.715800,0.000000,0.000000,1.000000 0.152300,-0.003331,0.193800,0.000008,1.000000,-0.000004 0.169200,-0.245600,0.677900,0.000000,0.000000,-1.000000 0.355200,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.143800,-0.186000,0.633600,0.000000,-1.000000,0.000000 0.253700,-0.186000,-0.499700,0.000000,-1.000000,0.000000 0.126900,-0.003331,-0.694200,0.000000,1.000000,0.000000 0.279100,-0.186000,-0.085270,0.000000,-1.000000,0.000000 -0.544100,-0.093450,-0.296700,-1.000000,0.003981,0.000019 -0.544100,-0.093450,-0.229100,-1.000000,0.004002,-0.000019 -0.538600,-0.043310,0.633600,-0.977300,0.212000,0.000000 0.050760,-0.003331,0.625200,-0.000001,1.000000,-0.004161 0.414400,-0.186000,-0.051440,0.000000,-1.000000,0.000000 -0.093020,-0.186000,0.532100,0.000000,-1.000000,0.000000 0.456700,-0.003331,-0.093730,0.000000,1.000000,0.000000 -0.245300,-0.059530,0.715800,0.000000,0.000000,1.000000 0.000013,-0.003331,0.371400,0.000001,1.000000,0.000000 0.397500,-0.003331,-0.000695,0.000000,1.000000,0.000000 0.016930,-0.186000,-0.533500,0.000000,-1.000000,0.000000 -0.016900,-0.003331,-0.668900,0.000000,1.000000,0.000000 0.203000,0.092850,0.676200,0.000000,-0.003474,1.000000 0.101500,0.114700,0.321300,0.000000,0.983500,-0.181000 -0.025370,-0.355600,0.715800,0.000000,0.000000,1.000000 -0.084560,-0.003331,-0.651900,0.000000,1.000000,0.000000 -0.143800,0.120900,0.506200,0.000000,0.995000,0.099400 -0.448900,0.362400,0.732000,0.000000,0.852800,0.522300 0.543700,-0.101700,-0.584300,0.998700,-0.051520,0.000002 -0.507400,0.244800,0.744300,0.000000,0.007220,1.000000 -0.355300,-0.002833,-0.525100,-0.029370,0.999400,0.019580 0.490600,-0.003331,0.126200,0.000000,1.000000,0.000000 0.570800,-0.178000,-0.381300,0.999200,-0.039390,0.000000 0.313000,-0.186000,-0.406700,0.000000,-1.000000,0.000000 -0.406000,-0.186000,0.253000,0.000000,-1.000000,0.000000 -0.287500,-0.186000,-0.229100,0.000000,-1.000000,0.000000 -0.304500,-0.177900,0.715800,0.000000,0.000000,1.000000 -0.160700,-0.186000,-0.152900,0.000000,-1.000000,0.000000 0.313000,-0.186000,0.202300,0.000000,-1.000000,0.000000 0.236800,-0.186000,-0.465900,0.000000,-1.000000,0.000000 0.245300,-0.177900,0.715800,0.000000,0.000000,1.000000 0.287600,-0.003331,-0.364400,0.000000,1.000000,0.000000 0.152300,-0.003331,-0.372800,0.000000,1.000000,0.000000 -0.169100,-0.186000,0.176900,0.000000,-1.000000,0.000000 -0.490500,-0.003331,-0.449000,0.000000,1.000000,0.000000 -0.186100,-0.203300,0.715800,0.000000,0.000000,1.000000 0.169200,0.236500,0.744600,0.000000,-0.002930,1.000000 -0.490500,-0.126800,-0.767500,0.000000,-0.138900,-0.990300 0.245300,0.185600,0.676800,0.000000,0.090400,-0.995900 0.321400,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.012890,0.058470,0.354500,-0.996800,0.079560,0.000000 0.203000,-0.003331,0.261500,0.000007,1.000000,0.004820 0.545800,0.234600,0.742300,0.000308,0.003954,-1.000000 -0.008446,0.211400,0.681900,0.000000,-0.120000,0.992800 -0.571400,-0.161400,-0.026080,-0.993100,0.117500,0.003959 0.313000,0.177200,0.676000,0.000000,0.082220,-0.996600 -0.219900,0.269300,0.689000,0.000000,0.196800,-0.980500 -0.550200,-0.240200,0.007769,0.085960,-0.996300,0.000000 -0.550300,-0.152500,0.473700,-0.219700,0.975600,-0.000018 0.550400,-0.152600,0.101500,0.219100,0.975700,0.000000 0.406000,0.124000,0.489600,0.000000,0.997400,0.071740 -0.262200,0.123900,0.455900,-0.013170,0.999700,0.020600 0.538400,-0.172600,0.427800,-0.635400,-0.772200,0.000000 0.543800,-0.093440,-0.406700,1.000000,0.003905,0.000000 0.448300,-0.101800,-0.769700,0.000000,-0.032130,-0.999500 -0.194500,-0.084990,-0.769600,0.000000,0.039120,-0.999200 -0.542600,-0.203300,-0.381300,1.000000,0.000000,0.000000 0.550400,-0.152600,-0.728000,0.219100,0.975700,0.000000 -0.025370,0.303900,0.741800,0.000000,0.104500,0.994500 0.422900,-0.002999,-0.736500,0.000000,0.999300,0.038300 0.449500,-0.373800,-0.718700,-0.734000,-0.000678,-0.679200 0.489200,-0.262500,-0.702400,0.997000,0.003988,-0.076790 -0.515900,-0.240200,-0.772500,0.000000,-0.993700,0.112400 0.118400,-0.220200,-0.768300,0.000000,-0.000120,1.000000 -0.488900,0.016340,0.588500,-0.984800,-0.173400,0.000009 0.377000,0.007268,0.706400,0.877100,0.314700,0.362700 -0.228300,0.058310,0.677700,0.000004,0.074530,0.997200 -0.346700,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 0.312900,0.227200,0.681700,0.000000,0.143200,-0.989700 0.558300,-0.152700,0.059230,0.032230,0.999500,-0.000001 0.358100,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 0.549800,0.269300,0.689000,-0.000070,0.196800,-0.980400 -0.304500,-0.060050,-0.767300,0.000001,0.144300,-0.989500 0.397500,-0.084990,-0.769600,0.000000,0.039120,-0.999200 0.473600,-0.002999,-0.736500,0.000000,0.999300,0.038300 0.016730,-0.003405,0.489900,-0.262100,0.965000,0.000000 -0.016910,0.262400,0.690000,0.000000,-0.188600,0.982000 -0.321400,0.169000,0.740800,0.000000,-0.090760,0.995900 0.256600,0.012490,0.275200,-0.000984,-0.354700,-0.935000 -0.540400,-0.135500,0.439100,-0.999000,-0.044820,0.000000 0.558400,-0.152700,0.499000,0.032770,0.999500,-0.000000 0.540900,-0.143700,0.566000,0.961900,0.273500,0.000000 -0.287600,0.211500,0.681600,-0.000022,-0.100100,0.995000 -0.329100,0.349300,0.709800,0.000000,0.304500,-0.952500 0.093050,0.336500,0.705800,0.000000,0.282900,-0.959200 0.532800,-0.022760,-0.190300,0.961600,0.274500,-0.000004 0.515900,0.059750,0.723200,0.000003,-0.250400,0.968100 -0.571100,0.213900,0.684800,-0.788200,0.103500,-0.606700 -0.544000,-0.085270,-0.745000,-0.999300,0.038670,0.000001 -0.126800,-0.177900,-0.797100,0.000000,0.000000,-1.000000 -0.542300,-0.186400,-0.085270,1.000000,0.004775,0.000000 -0.008432,0.364000,0.726500,0.000000,0.993600,0.112600 0.194600,0.116800,0.734500,0.000258,-0.109400,0.994000 0.439800,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.059210,0.303900,0.741800,-0.009885,0.104600,0.994500 0.431400,0.348600,0.711300,0.000000,-0.517200,0.855900 -0.439800,0.143200,0.674100,0.000000,0.035620,-0.999400 -0.084560,0.007962,0.271100,0.000066,0.183600,-0.983000 -0.542700,-0.178100,-0.584300,0.969000,-0.247100,0.000000 -0.465200,0.121500,0.734900,0.000000,-0.154000,0.988100 -0.543000,-0.070380,-0.575800,-0.995200,0.098310,0.000025 0.492800,0.065010,0.614200,0.976700,0.173600,0.126400 -0.228400,0.079870,0.725700,0.000085,0.214000,-0.976800 0.382700,-0.184300,-0.749700,0.000000,-0.954500,-0.298300 -0.542700,-0.178100,0.058510,0.974400,-0.225000,0.000000 0.369300,0.005346,0.277100,0.000000,-0.004515,-1.000000 -0.355200,-0.003331,0.625200,-0.000014,1.000000,-0.003659 0.143800,0.312300,0.741100,0.000000,0.096950,0.995300 -0.338300,-0.389600,0.715900,0.000000,-0.131100,0.991400 0.543500,-0.076980,0.430700,0.996000,0.089770,0.000000 0.515900,-0.186000,-0.389700,0.041760,-0.999100,0.000000 -0.481400,0.158700,0.674800,0.000000,0.054900,-0.998500 0.541700,-0.235100,0.050050,-0.964900,-0.262400,0.000000 -0.540100,-0.051220,0.413700,-0.982600,0.185800,0.000000 0.524400,0.066810,0.677100,0.000000,0.062720,0.998000 -0.287600,0.032710,0.715500,0.000000,-0.454100,0.890900 0.177600,0.110200,0.299100,0.000000,0.976100,-0.217400 0.279100,0.052310,0.719300,0.000000,0.245400,-0.969400 -0.550300,-0.152500,-0.711100,-0.219700,0.975600,0.000000 -0.515900,-0.003000,-0.254400,0.030230,0.999500,0.000000 -0.024720,0.013180,0.456000,0.959200,-0.282600,0.006222 0.346800,0.111500,0.305200,0.000000,0.977900,-0.209300 0.482500,0.005949,0.363000,0.997600,0.068840,0.000000 0.219900,0.073510,0.726400,-0.013110,-0.220600,0.975300 -0.279100,0.270400,0.691600,0.000000,-0.170900,0.985300 -0.542200,-0.063640,0.582900,-0.991300,0.131900,0.000000 -0.279100,0.108200,0.295500,0.000012,0.976600,-0.214900 0.542400,-0.117600,0.354500,0.993100,-0.117200,0.000000 0.439800,0.288400,0.693100,0.000000,0.228900,-0.973500 -0.483000,0.094910,0.413700,-0.825400,0.564600,-0.000037 -0.076110,0.080480,0.725800,0.000000,0.214300,-0.976800 -0.025370,0.092510,0.728200,0.000000,0.183700,-0.983000 -0.499000,0.168400,0.739100,0.000000,0.091840,-0.995800 -0.033830,0.231700,0.684300,0.000000,-0.133200,0.991100 -0.372100,0.316700,0.701900,0.000000,-0.267800,0.963500 0.473700,-0.037940,-0.763000,0.000000,0.235500,-0.971900 0.262200,-0.043990,-0.764400,0.000000,0.206100,-0.978500 -0.203000,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.541700,-0.123600,0.160000,0.992000,-0.126500,0.000000 -0.489100,0.084700,0.523700,-0.895300,0.445400,-0.000008 0.521700,-0.002964,0.050050,0.222500,0.974900,0.000000 -0.533100,-0.022670,0.507500,-0.953700,0.300700,0.000000 0.439800,0.058370,0.619000,0.000000,0.070390,0.997500 -0.059190,-0.194800,0.677900,0.000000,0.000000,-1.000000 -0.540100,-0.051220,-0.085270,-0.982600,0.185800,0.000000 0.521800,-0.185300,0.472900,0.352700,-0.935700,0.000000 -0.489100,0.084700,0.574400,-0.895300,0.445400,0.000007 -0.534800,-0.028540,0.016920,-0.962700,0.270500,0.000000 -0.205800,0.104500,0.595000,-0.000016,0.850000,0.526800 -0.550300,-0.152500,-0.584300,-0.219700,0.975600,0.000000 -0.422900,0.176900,0.739800,0.000000,0.079860,-0.996800 -0.101500,0.176900,0.739800,0.000000,0.079860,-0.996800 0.541500,-0.063690,0.097980,0.987200,0.159700,0.000000 0.532900,0.193800,0.741000,0.000000,0.058820,-0.998300 -0.059180,0.177200,0.676000,-0.000011,0.082230,-0.996600 0.543300,-0.109800,-0.042980,0.996400,-0.085300,0.000000 0.215600,0.208200,0.744000,0.000000,-0.064440,0.997900 -0.545000,-0.239200,-0.567400,0.547700,-0.836700,-0.000245 -0.534300,-0.172100,-0.401000,-0.402700,-0.915300,0.000000 0.568700,-0.238800,0.600500,0.653000,-0.757400,-0.000026 0.541300,0.109600,0.675600,-0.000001,0.008564,1.000000 0.499000,0.237800,0.685000,0.000006,-0.144300,0.989500 0.270700,0.312900,0.738700,0.000000,-0.097940,-0.995200 -0.543000,-0.117700,0.650600,-0.995600,-0.093420,0.000593 -0.544100,-0.093450,0.371400,-1.000000,0.004023,0.000000 0.570000,-0.234900,0.033850,0.985100,-0.172000,0.000000 -0.414400,-0.233800,-0.753300,-0.009379,0.960900,0.276800 -0.279100,0.032290,0.679000,0.000000,-0.354700,0.935000 0.507500,-0.186000,-0.102200,0.000000,-1.000000,0.000000 -0.084560,0.218200,0.742000,0.000000,0.029000,-0.999600 -0.439800,0.336500,0.707800,0.000000,-0.259900,0.965600 0.544100,-0.093450,-0.068360,0.999900,-0.016240,0.000000 0.338300,-0.009696,0.716000,-0.049570,0.104900,0.993200 -0.169100,0.032290,0.679000,0.000000,-0.260400,0.965500 -0.465200,-0.380900,0.677900,0.000000,-0.013730,-0.999900 0.431400,-0.398600,0.685300,0.000000,-0.969200,-0.246500 0.118400,-0.380900,0.677900,0.000000,-0.013730,-0.999900 -0.544100,-0.149400,-0.363700,-0.677400,0.735700,0.000000 -0.396800,0.221100,0.744400,0.000316,0.000352,1.000000 -0.465200,0.228800,0.744300,0.000294,0.010790,0.999900 0.489500,-0.364200,-0.702600,0.992100,0.125200,0.003741 0.355200,0.262500,0.689700,0.000000,-0.188100,0.982100 0.135300,0.134900,0.673800,0.000000,0.024070,-0.999700 -0.219900,0.227200,0.681700,0.000000,0.143200,-0.989700 0.372200,0.337900,0.735900,0.000000,-0.123700,-0.992300 0.515900,0.320700,0.740200,0.000000,0.107000,0.994300 0.565400,-0.153000,0.430200,0.278200,0.960400,-0.013070 -0.540600,-0.143400,-0.761000,-0.956800,0.176600,-0.231100 0.380600,0.287500,0.740700,0.000000,-0.064970,-0.997900 0.570500,-0.194800,0.270000,0.999800,0.019620,0.000000 -0.526400,-0.005258,-0.550400,-0.742100,0.670300,0.000000 0.540900,-0.143700,0.599800,0.961900,0.273500,0.000000 0.338300,0.336700,0.707900,0.000386,-0.260800,0.965400 -0.152200,-0.026280,-0.759800,0.000024,0.289600,-0.957100 0.228400,0.262400,0.690000,0.000000,-0.208200,0.978100 0.050760,0.282500,0.691800,0.000000,0.218400,-0.975900 0.524400,0.092510,0.728200,0.000000,0.183700,-0.983000 -0.474100,0.110200,0.548800,-0.803300,0.595600,0.004224 0.219900,0.203000,0.680900,0.000000,-0.113900,0.993500 0.565000,-0.240000,-0.761800,0.113400,-0.993500,0.013480 -0.270600,-0.003331,0.625200,0.000020,1.000000,-0.003974 0.110000,-0.186000,0.109300,0.000000,-1.000000,0.000000 0.084590,-0.186000,0.413700,0.000000,-1.000000,0.000000 -0.296000,-0.003332,0.692800,0.000000,0.996600,-0.082410 0.203000,-0.003331,0.176900,-0.000007,1.000000,0.000003 0.025370,-0.220300,0.716000,-0.009814,-0.019710,0.999800 -0.126800,-0.143300,-0.767400,0.005261,0.339200,-0.940700 0.524400,0.160700,0.740000,0.000000,-0.102800,0.994700 0.177600,-0.002999,0.202300,-0.039330,0.998800,0.029500 -0.490000,-0.290700,-0.711000,-0.735300,0.000020,-0.677700 0.540900,-0.129400,0.650600,0.994800,-0.101700,0.000517 0.262200,-0.003331,-0.694200,0.000000,1.000000,0.000000 -0.355200,-0.186000,-0.601200,0.000000,-1.000000,0.000000 0.570500,-0.211800,-0.668900,1.000000,0.000000,0.000000 0.253700,-0.003331,-0.339000,0.000000,1.000000,0.000000 -0.160700,-0.203300,-0.768300,0.000000,0.000059,1.000000 0.279100,-0.254100,0.715800,-0.000020,-0.000020,1.000000 -0.448200,0.006143,0.607600,0.000000,0.159400,0.987200 -0.542600,-0.228700,-0.482800,1.000000,0.000929,0.000000 -0.507400,-0.313300,0.677900,0.000000,0.000000,-1.000000 0.541600,-0.220200,0.320700,-1.000000,0.000000,0.000000 -0.439800,-0.003331,0.168500,0.000000,1.000000,0.000000 -0.543600,-0.109800,-0.423600,-0.998000,-0.063410,0.000288 0.499000,-0.186000,0.650500,0.000000,-0.999700,0.024610 0.000015,-0.186000,-0.296700,0.000000,-1.000000,0.000000 -0.499000,0.304500,0.739400,0.000000,-0.086030,-0.996300 -0.262200,-0.279400,0.715800,0.000000,0.000000,1.000000 -0.355200,0.295500,0.742200,0.000000,0.074740,0.997200 0.304500,-0.186000,-0.262900,0.000000,-1.000000,0.000000 -0.473600,-0.012830,-0.755400,0.000000,0.350500,-0.936600 0.380600,-0.003331,-0.389700,0.000000,1.000000,0.000000 0.279100,-0.240200,-0.772500,0.000000,-0.993700,0.112400 -0.025360,-0.003331,-0.178300,0.000000,1.000000,0.000000 0.338300,-0.003331,-0.465900,0.000000,1.000000,0.000000 -0.499000,-0.186000,-0.169800,0.000000,-1.000000,0.000000 -0.480100,-0.313300,-0.673100,-0.280700,0.000874,0.959800 -0.482100,-0.186000,-0.339000,0.000000,-1.000000,0.000000 -0.448300,-0.364000,0.715800,0.000000,0.000000,1.000000 0.381300,0.130300,0.734600,0.000000,0.143600,-0.989600 0.465200,-0.186000,-0.322100,0.000000,-1.000000,0.000000 -0.211400,-0.186000,-0.398200,0.000000,-1.000000,0.000000 -0.050730,-0.186000,-0.465900,0.000000,-1.000000,0.000000 0.279100,-0.169500,0.715800,0.000000,0.000000,1.000000 0.021970,0.089220,0.473600,-0.885100,0.465400,0.000000 -0.152200,-0.296400,0.715800,0.000000,0.000000,1.000000 0.287600,-0.003331,0.066970,0.000000,1.000000,0.000000 0.439800,0.086480,0.727100,0.000000,0.197700,-0.980300 -0.380600,-0.003331,-0.398200,0.000000,1.000000,0.000000 -0.177600,-0.186000,-0.381300,0.000000,-1.000000,0.000000 -0.534800,-0.028540,-0.279100,-0.962700,0.270500,0.000000 -0.287500,-0.186000,-0.355900,0.000000,-1.000000,0.000000 0.228400,-0.003331,0.625200,-0.000005,1.000000,-0.004150 0.203000,0.288500,0.695600,0.000000,-0.276000,0.961100 -0.524400,-0.127200,0.715800,0.000000,0.000000,1.000000 -0.118400,-0.186000,0.337600,0.000000,-1.000000,0.000000 -0.093030,-0.101800,0.715800,0.000000,0.000000,1.000000 -0.262200,-0.003331,-0.119100,0.000000,1.000000,0.000000 -0.016900,-0.003331,0.100800,0.000000,1.000000,0.000000 -0.109900,0.026420,0.613700,0.000024,-0.324900,0.945700 0.169200,0.122600,0.506300,0.000000,0.995300,0.097020 -0.456700,-0.003331,0.202300,0.000000,1.000000,0.000000 0.245300,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.160700,0.058660,0.263100,0.000000,0.104400,-0.994500 -0.109900,-0.003331,0.176900,0.000000,1.000000,0.000000 -0.067650,-0.003331,0.219200,0.000000,1.000000,0.000000 0.059220,-0.186000,0.210700,0.000000,-1.000000,0.000000 0.304500,-0.203300,0.677900,0.000000,0.000000,-1.000000 -0.563000,-0.175800,-0.792200,-0.602800,-0.001296,-0.797900 0.269200,0.243800,0.742300,-0.000050,0.004002,-1.000000 -0.177600,-0.003331,-0.550400,0.000000,1.000000,0.000000 0.262200,-0.003331,0.236100,0.000000,1.000000,0.000000 0.203000,0.262400,0.690000,0.003322,-0.195200,0.980800 0.186100,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.406000,-0.228700,0.715800,0.000000,0.000000,1.000000 0.570500,-0.220200,-0.533500,1.000000,-0.000178,0.000000 -0.109900,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.270700,-0.186000,-0.229100,0.000000,-1.000000,0.000000 -0.558200,-0.240300,0.236100,-0.011660,-0.999900,0.000000 -0.177600,-0.003331,0.126200,0.000000,1.000000,0.000000 0.570500,-0.186400,-0.508200,1.000000,0.000059,0.000000 -0.160700,-0.003331,0.185400,0.000000,1.000000,0.000000 0.482100,-0.003331,-0.262900,0.000000,1.000000,0.000000 0.152200,0.262400,0.690000,0.000000,-0.188600,0.982000 0.126900,0.210600,0.679400,0.000000,0.122800,-0.992400 -0.219900,-0.186000,0.329200,0.000000,-1.000000,0.000000 -0.109900,-0.389600,0.715900,0.000000,-0.131100,0.991400 0.152300,0.363600,0.719600,0.000000,0.955700,-0.294500 -0.321400,-0.186000,0.176900,0.000000,-1.000000,0.000000 -0.236800,-0.330200,0.677900,0.000000,0.000000,-1.000000 -0.135300,0.228100,0.744200,0.000000,0.008478,1.000000 0.110000,-0.186000,-0.152900,0.000000,-1.000000,0.000000 -0.571500,-0.177900,0.050060,-1.000000,0.000000,0.000000 -0.482100,-0.203300,-0.797100,0.000000,0.000000,-1.000000 -0.473600,-0.186000,0.176900,0.000000,-1.000000,0.000000 -0.346800,-0.003331,0.219200,0.000000,1.000000,0.000000 -0.330500,0.362400,0.732000,0.000000,0.852800,0.522300 0.439800,-0.186400,-0.797100,0.000000,0.000000,-1.000000 -0.363700,-0.262500,0.715800,0.000000,0.000000,1.000000 0.437700,0.073060,0.674800,0.000000,-0.054750,-0.998500 0.490600,-0.304800,0.715800,0.000000,0.000000,1.000000 0.539500,-0.051350,-0.677300,0.986700,0.162300,0.000004 0.296000,0.218200,0.742000,0.000000,0.029000,-0.999600 0.543700,-0.101700,-0.677300,0.998700,-0.051560,0.000000 0.110000,-0.003331,-0.330500,0.000000,1.000000,0.000000 -0.409100,0.250000,0.742300,0.000000,0.004143,-1.000000 0.543700,-0.085270,-0.457400,0.998300,0.058380,-0.000042 0.014520,0.034880,0.582900,-0.978300,-0.207200,0.000000 -0.025360,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.270700,-0.186000,-0.601200,0.000000,-1.000000,0.000000 0.000015,-0.186000,-0.635000,0.000000,-1.000000,0.000000 -0.414400,-0.003331,-0.347500,0.000000,1.000000,0.000000 -0.431300,-0.287900,0.677900,0.000000,0.000000,-1.000000 0.093050,-0.003331,-0.542000,0.000000,1.000000,0.000000 -0.346700,-0.177400,0.665300,0.000000,-0.627000,0.779000 0.439800,-0.304800,0.715800,0.000000,0.000000,1.000000 -0.042270,-0.186000,0.574400,0.000000,-1.000000,0.000000 0.507500,-0.186000,0.388400,0.000000,-1.000000,0.000000 -0.126900,-0.186000,0.278400,0.000000,-1.000000,0.000000 -0.338300,-0.032060,-0.761500,0.000000,0.265400,-0.964100 0.253700,-0.186000,-0.254400,0.000000,-1.000000,0.000000 0.228400,-0.186000,0.616700,0.000000,-1.000000,0.000000 0.008473,-0.186000,0.642100,0.000000,-1.000000,0.000000 0.431400,-0.003331,-0.322100,0.000000,1.000000,0.000000 -0.538600,-0.043310,-0.651900,-0.977300,0.212100,0.000000 0.406000,-0.003331,-0.279800,0.000000,1.000000,0.000000 -0.414400,-0.003331,-0.533500,0.000000,1.000000,0.000000 0.389100,0.168400,0.739100,0.000000,0.091840,-0.995800 0.372200,-0.186000,0.642100,0.000000,-1.000000,0.000000 -0.477100,-0.181800,-0.757600,0.000018,-0.985900,-0.167500 0.304500,-0.186000,-0.119100,0.000000,-1.000000,0.000000 -0.355200,-0.186000,-0.313600,0.000000,-1.000000,0.000000 0.355200,-0.003331,-0.525100,0.000000,1.000000,0.000000 -0.363700,-0.186000,0.498300,0.000000,-1.000000,0.000000 0.279100,-0.003331,-0.313600,0.000000,1.000000,0.000000 -0.542100,-0.203300,0.075410,0.999900,-0.013090,-0.003281 0.507500,-0.186000,-0.042980,0.000000,-1.000000,0.000000 -0.565400,-0.240100,-0.059890,-0.115100,-0.993400,0.000000 -0.016900,-0.003331,-0.152900,0.000000,1.000000,0.000000 -0.059200,-0.380900,0.715800,0.000000,0.005438,1.000000 -0.093030,0.122800,0.397000,0.000000,0.997900,-0.064720 -0.042280,-0.003331,0.236100,0.000000,1.000000,0.000000 -0.126900,-0.186000,-0.000693,0.000000,-1.000000,0.000000 -0.008443,-0.186000,0.388400,0.000000,-1.000000,0.000000 0.025400,-0.398600,0.709100,0.000000,-0.969400,0.245500 0.000006,-0.279400,0.715800,0.000000,0.000000,1.000000 -0.025360,-0.186000,-0.372800,0.000000,-1.000000,0.000000 0.000015,-0.186000,-0.558900,0.000000,-1.000000,0.000000 0.033850,-0.304800,0.677900,0.000000,0.000000,-1.000000 0.050760,-0.194800,0.715800,0.009871,0.019620,0.999800 0.482100,-0.003331,0.007763,0.000000,1.000000,0.000000 0.346800,-0.003331,-0.009153,0.000000,1.000000,0.000000 0.076130,-0.186000,0.540600,0.000000,-1.000000,0.000000 0.050760,0.113200,0.313200,-0.005159,0.981500,-0.191200 -0.135300,-0.003331,-0.059900,0.000000,1.000000,0.000000 0.236800,-0.186000,0.033140,0.000000,-1.000000,0.000000 -0.059190,-0.186000,0.083880,0.000000,-1.000000,0.000000 0.194500,-0.003331,0.033140,0.000000,1.000000,0.000000 -0.067650,-0.003331,-0.592700,0.000000,1.000000,0.000000 0.346800,-0.003331,-0.093730,0.000000,1.000000,0.000000 -0.363700,-0.003331,0.066970,0.000000,1.000000,0.000000 0.059220,0.066240,0.265700,0.000000,0.179700,-0.983700 -0.008450,0.160000,0.738200,0.000000,0.103400,-0.994600 0.042300,-0.186000,0.295300,0.000000,-1.000000,0.000000 0.270700,-0.042620,0.715800,0.000000,0.000000,1.000000 -0.084560,-0.003331,-0.364400,0.000000,1.000000,0.000000 -0.571500,-0.203300,-0.034520,-1.000000,0.000000,0.000000 -0.507400,-0.186000,0.083880,0.000000,-1.000000,0.000000 -0.321400,-0.186000,-0.093730,0.000000,-1.000000,0.000000 0.526100,-0.005332,-0.105000,0.740300,0.672300,0.000010 -0.068350,-0.181900,-0.763100,0.000000,-0.906200,0.422800 -0.544000,-0.101700,-0.009149,-0.999500,-0.031730,-0.000008 0.008479,-0.186600,-0.768100,0.006234,-0.335100,0.942200 -0.372100,-0.093370,0.715800,-0.003253,-0.003258,1.000000 0.050760,-0.220200,-0.768300,0.000000,0.019650,0.999800 0.570800,-0.194900,-0.059910,1.000000,-0.009823,0.000040 -0.568900,-0.061890,0.715800,-0.020390,0.001705,0.999800 0.076140,-0.398600,0.685300,0.000000,-0.969200,-0.246500 0.101500,-0.395500,0.713900,0.000000,-0.605500,0.795800 0.338300,0.115400,0.557000,0.000000,0.985400,0.170200 -0.109900,-0.237100,0.677900,0.000000,0.000000,-1.000000 -0.203000,0.124200,0.439100,0.000000,1.000000,-0.001662 -0.118400,-0.186400,0.715800,0.000000,0.000059,1.000000 -0.329800,0.124200,0.430700,0.000000,0.999900,-0.014120 -0.135300,-0.003331,-0.279800,-0.000007,1.000000,0.000003 -0.186100,-0.228600,-0.768000,0.000000,0.026500,0.999600 -0.034180,0.102700,0.577200,0.824400,0.564800,0.038660 0.541400,-0.063720,0.478600,0.989700,0.142900,0.013020 -0.364400,0.082300,0.676300,-0.000276,0.024050,0.999700 -0.109900,0.124100,0.456000,0.000000,0.999700,0.023930 -0.211400,-0.003331,-0.432000,0.000000,1.000000,0.000000 0.186100,-0.186000,-0.609600,0.000000,-1.000000,0.000000 -0.033820,-0.186000,-0.584300,0.000000,-1.000000,0.000000 -0.321400,-0.003331,-0.567400,0.000000,1.000000,0.000000 0.414400,-0.186000,-0.313600,0.000000,-1.000000,0.000000 -0.304500,-0.186000,-0.609600,0.000000,-1.000000,0.000000 -0.532800,0.127600,0.736200,0.000000,-0.169700,0.985500 0.414400,-0.003331,-0.212100,0.000000,1.000000,0.000000 0.542400,-0.117600,0.532200,0.993100,-0.117200,0.000000 -0.565400,-0.240100,-0.609600,-0.115000,-0.993400,-0.000001 0.526100,-0.005331,0.241800,0.740300,0.672300,-0.000009 0.059220,-0.003331,-0.254400,0.000000,1.000000,0.000000 -0.473600,-0.186000,0.354500,0.000000,-1.000000,0.000000 0.194500,0.073820,0.267500,0.000000,0.259100,-0.965900 -0.355200,-0.186000,-0.389700,0.000000,-1.000000,0.000000 0.186100,-0.003331,-0.449000,0.000000,1.000000,0.000000 -0.542300,-0.123700,0.179700,-0.992000,-0.126300,0.000012 -0.372100,-0.003331,-0.203700,0.000000,1.000000,0.000000 -0.448200,-0.186000,-0.152900,0.000000,-1.000000,0.000000 0.397500,-0.186000,-0.102200,0.000000,-1.000000,0.000000 -0.304500,-0.186000,0.337600,0.000000,-1.000000,0.000000 0.177600,-0.003331,0.092340,0.000000,1.000000,0.000000 -0.152200,-0.003331,-0.694200,0.000000,1.000000,0.000000 -0.312900,0.120700,0.372000,0.000000,0.992400,-0.122900 -0.389000,-0.186000,-0.449000,0.000000,-1.000000,0.000000 0.169200,0.125000,0.472800,0.000000,0.998900,0.046900 -0.448200,-0.186000,-0.372800,0.000000,-1.000000,0.000000 0.084590,-0.186000,-0.347500,0.000000,-1.000000,0.000000 -0.008443,-0.186000,0.329200,0.000000,-1.000000,0.000000 0.194500,-0.372500,0.677900,0.000000,0.000000,-1.000000 -0.329800,-0.186000,0.312200,0.000000,-1.000000,0.000000 -0.534800,-0.028540,0.126900,-0.962700,0.270500,0.000000 -0.355200,-0.003331,-0.465900,0.000000,1.000000,0.000000 0.236800,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.431300,-0.338600,0.715800,0.000000,0.000000,1.000000 0.507500,-0.186000,-0.313600,0.000000,-1.000000,0.000000 0.570500,-0.186400,0.126200,0.999800,0.019700,0.000000 -0.186100,-0.003331,-0.186800,0.000000,1.000000,0.000000 0.490600,-0.186000,0.472900,0.000000,-1.000000,0.000000 -0.169100,-0.186000,0.075430,0.000000,-1.000000,0.000000 -0.186100,-0.177400,0.665300,0.000000,-0.627000,0.779000 -0.338300,-0.003331,-0.246000,0.000000,1.000000,0.000000 0.253700,-0.186000,-0.051440,0.000000,-1.000000,0.000000 0.329900,-0.003331,-0.609700,0.000000,1.000000,0.000000 0.236800,-0.003331,-0.711100,0.000000,1.000000,0.000000 -0.312900,-0.186000,-0.685800,0.000000,-1.000000,0.000000 -0.482100,-0.355500,0.677900,0.000000,0.000000,-1.000000 0.084590,-0.003331,-0.609700,0.000000,1.000000,0.000000 -0.203000,-0.186000,-0.685800,0.000000,-1.000000,0.000000 -0.482100,-0.228700,-0.797100,0.000000,-0.013670,-0.999900 0.488900,0.024020,0.278800,0.932800,-0.334400,-0.134700 0.126900,0.066240,0.265700,-0.000019,0.179700,-0.983700 -0.186100,0.117100,0.732600,0.000000,0.159900,-0.987100 0.086380,-0.156500,-0.795600,-0.001801,0.495400,-0.868700 0.203700,0.141900,0.676000,0.000095,-0.028170,0.999600 0.472900,0.110500,0.416600,0.968600,0.248500,-0.000289 -0.203000,0.348400,0.711600,0.000000,-0.535800,0.844400 -0.228300,0.126400,0.673600,0.000000,0.014140,-0.999900 -0.279100,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 0.253700,-0.003332,0.642100,0.000000,0.999800,-0.019490 0.262200,-0.185600,0.657300,0.000000,-0.961700,0.274100 -0.540100,-0.051220,0.041600,-0.982600,0.185800,0.000000 -0.570300,-0.300200,0.715800,-0.845500,-0.007289,0.533900 -0.066980,-0.162100,-0.797100,-0.004312,0.130700,-0.991400 -0.554900,0.265200,0.743600,0.034980,0.005661,0.999400 -0.203000,0.122300,0.388700,0.000012,0.995300,-0.097320 -0.565700,-0.009627,0.679200,-0.222800,0.311600,-0.923700 0.539800,-0.135400,-0.542000,0.999700,-0.025150,0.000038 0.229100,0.349300,0.709800,0.000000,0.304500,-0.952500 -0.084560,0.227200,0.681700,0.000000,0.143200,-0.989700 0.448300,0.227200,0.681700,0.000000,0.143200,-0.989700 0.448400,-0.279400,-0.685400,-0.752900,0.000000,0.658100 -0.250900,0.256300,0.742200,0.000155,-0.041420,-0.999100 0.372200,0.194700,0.679700,0.009909,-0.121700,0.992500 0.565800,0.127000,0.673900,0.105500,0.001324,-0.994400 0.076120,0.085630,0.728900,0.000000,-0.201500,0.979500 0.009181,0.136300,0.735400,0.000000,0.133800,-0.991000 0.534500,-0.028650,-0.221300,0.969200,0.246300,-0.000001 -0.279100,-0.194800,0.677900,0.000000,0.000000,-1.000000 -0.329800,0.134900,0.673800,0.000000,0.024070,-0.999700 -0.093020,0.270500,0.743900,0.000002,0.012960,0.999900 -0.024640,0.013310,0.506800,0.961600,-0.274400,-0.002773 -0.540100,-0.051220,-0.262900,-0.982600,0.185800,0.000000 0.565900,0.318400,0.734200,-0.639000,-0.056520,-0.767200 -0.050730,0.100200,0.280500,0.001937,0.651600,-0.758500 0.534500,-0.028650,-0.661100,0.969200,0.246400,0.000000 0.475300,0.104100,0.368600,0.896100,0.443900,-0.000007 0.414400,0.122900,0.380200,0.000000,0.995700,-0.092560 -0.383400,0.096540,0.602600,0.000070,0.570000,0.821700 0.526400,-0.182100,-0.440500,0.795300,-0.606300,0.000000 0.566700,-0.051080,0.715700,0.177700,0.000068,0.984100 -0.157900,0.032270,0.714800,0.000003,-0.224200,-0.974500 0.538400,-0.172600,-0.494100,-0.625800,-0.780000,0.000000 -0.465200,0.337200,0.737900,0.000000,0.148900,0.988900 -0.296000,0.073800,0.266200,0.000000,0.280800,-0.959800 0.570500,-0.228700,0.312200,0.998500,-0.055300,0.000000 0.126900,0.345300,0.736500,0.009593,0.130500,0.991400 0.541500,-0.063690,-0.113500,0.987200,0.159700,0.000000 0.541600,-0.228700,-0.381300,-1.000000,-0.007436,0.000000 0.534900,-0.028530,0.269200,0.962700,0.270600,-0.000023 0.411300,0.250000,0.742300,0.000000,0.004143,-1.000000 -0.304500,-0.186600,-0.768400,0.000000,-0.354200,0.935200 0.448300,-0.221000,-0.767200,0.047370,0.344800,0.937500 -0.437000,-0.228300,-0.762200,-0.016730,0.725200,0.688300 0.219900,-0.211800,-0.797100,0.000000,0.000000,-1.000000 0.110000,0.120800,0.522900,0.000000,0.992500,0.122300 0.143800,0.152300,0.739600,0.013110,-0.109600,0.993900 -0.571400,-0.235100,-0.525100,-0.986900,-0.161200,0.000000 -0.565400,-0.240100,-0.119100,-0.115100,-0.993400,0.000000 -0.542600,-0.235300,-0.508200,0.975700,-0.219300,0.000000 0.127600,0.130300,0.734600,0.000005,0.143600,-0.989600 0.541600,-0.211800,0.523700,-1.000000,0.000000,0.000000 0.482500,0.005949,0.396800,0.997600,0.068840,0.000000 -0.543000,-0.117700,-0.152900,-0.995600,-0.093450,0.000000 -0.262200,0.074230,0.676700,-0.000009,0.055550,0.998500 -0.019120,0.074830,0.371400,0.945100,0.326800,0.000000 0.543600,-0.149400,-0.014780,0.673400,0.739200,0.000000 0.253800,0.363600,0.719600,0.000000,0.955700,-0.294500 0.287600,0.019290,0.612000,0.000159,-0.411600,0.911400 -0.543900,-0.149400,0.202300,-0.682600,0.730800,0.000000 -0.488100,-0.154500,-0.792200,-0.000999,0.917100,-0.398700 0.448300,0.124600,0.481300,-0.000001,0.998200,0.059350 0.541700,-0.235100,0.160000,-0.964900,-0.262500,0.000000 0.543600,-0.149400,0.188200,0.673400,0.739200,0.000000 0.534400,-0.172100,0.126200,0.389800,-0.920900,0.000000 -0.041570,0.067250,0.675100,0.000000,-0.058490,-0.998300 0.050760,0.143200,0.674100,-0.000017,0.034280,-0.999400 0.572300,-0.033450,0.680300,0.654300,0.004066,-0.756200 -0.492000,-0.235900,-0.712600,-0.709400,0.029640,-0.704200 0.033950,0.110600,0.498300,-0.966300,0.257300,0.000983 -0.355200,-0.203300,-0.768300,-0.000079,-0.000197,1.000000 0.186100,-0.186000,-0.744100,0.000014,-0.991200,-0.132200 0.570800,-0.211800,0.506800,0.999800,0.016310,0.006571 -0.558200,-0.240300,0.295300,-0.011660,-0.999900,0.000000 0.541500,-0.063690,0.038770,0.987200,0.159700,0.000000 0.459600,0.256300,0.742200,0.000000,-0.041560,-0.999100 -0.439100,0.124300,0.733700,0.000000,0.150500,-0.988600 -0.076110,0.058320,0.678100,-0.000006,0.074530,0.997200 -0.460800,-0.341400,-0.674900,0.457600,0.000000,0.889200 0.135300,-0.185600,0.657300,0.000000,-0.961700,0.274100 0.406000,0.049840,0.678400,-0.000050,0.045480,0.999000 0.558200,-0.002835,0.701300,-0.007082,1.000000,0.005575 0.570000,-0.234900,-0.651200,0.985100,-0.172000,0.000000 -0.536700,-0.035470,-0.034520,-0.969400,0.245300,0.000000 -0.183200,0.351600,0.731900,0.000000,-0.667200,-0.744900 -0.541500,-0.129500,-0.248800,-0.987600,-0.157000,0.000000 0.194500,0.194600,0.680000,0.000000,-0.102000,0.994800 -0.355200,0.228100,0.744200,0.000000,0.008479,1.000000 0.482800,0.058880,0.675600,0.000000,-0.069940,-0.997600 0.302400,0.073060,0.674800,0.000000,-0.054750,-0.998500 -0.522100,-0.002890,0.566000,-0.209900,0.977700,0.000000 0.168500,0.065040,0.617900,0.000000,0.150700,0.988600 -0.490500,0.092860,0.675900,0.000000,0.020190,0.999800 -0.039170,0.111800,0.318500,0.536000,0.836900,-0.110500 -0.380600,0.051890,0.720900,0.000000,-0.247500,0.968900 0.338300,-0.389600,0.715900,0.000000,-0.131100,0.991400 0.414400,-0.172400,0.670500,0.000000,-0.896200,0.443700 0.558200,-0.240300,-0.220600,0.011620,-0.999900,0.000000 0.431400,0.329700,0.736800,0.000000,-0.114800,-0.993400 -0.482100,0.288400,0.693100,0.000000,0.228900,-0.973500 -0.126900,0.304600,0.699100,0.000000,-0.215400,0.976500 -0.017470,0.069470,0.281200,0.967000,0.254700,-0.005711 -0.542300,-0.123700,0.484200,-0.992000,-0.126300,0.000000 0.143800,0.085350,0.271700,-0.000024,0.431200,-0.902300 -0.413700,0.136300,0.735400,0.000000,0.133800,-0.991000 -0.228300,0.270500,0.741600,0.000000,-0.042090,-0.999100 -0.126900,0.034310,0.264500,0.000000,-0.205600,-0.978600 0.558200,-0.321700,0.715800,0.004896,0.000000,1.000000 0.016930,-0.037940,-0.763000,0.000000,0.235500,-0.971900 0.541700,-0.063730,-0.756300,0.992100,0.122900,0.025300 0.465100,0.100000,0.280800,0.012870,0.620300,-0.784300 0.253700,-0.186000,-0.127600,0.000000,-1.000000,0.000000 0.473600,-0.186000,-0.229100,0.000000,-1.000000,0.000000 0.211500,-0.254100,0.677900,0.000000,0.000000,-1.000000 -0.329800,-0.186000,-0.567400,0.000000,-1.000000,0.000000 0.431400,0.295600,0.742500,0.000000,0.074690,0.997200 0.118400,-0.009563,0.715900,0.000000,0.151700,0.988400 -0.008452,-0.025700,0.715800,0.000000,0.000059,1.000000 -0.050730,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.109900,-0.003331,-0.102200,0.000000,1.000000,0.000000 0.050760,0.101100,0.676100,0.003325,0.008457,1.000000 -0.042270,-0.186000,-0.169800,0.000000,-1.000000,0.000000 0.016930,-0.186000,-0.127600,0.000000,-1.000000,0.000000 0.270700,-0.003331,-0.085270,0.000000,1.000000,0.000000 -0.186100,-0.042620,0.715800,0.000000,0.000000,1.000000 0.211500,-0.003331,0.075420,0.000000,1.000000,0.000000 0.414400,-0.003331,0.041590,0.000000,1.000000,0.000000 -0.076100,-0.186000,0.227700,0.000000,-1.000000,0.000000 0.570500,-0.178000,-0.558900,0.999800,-0.019680,0.000000 -0.363700,0.058310,0.677700,0.000050,0.074310,0.997200 -0.473600,-0.186000,0.253000,0.000000,-1.000000,0.000000 -0.414400,-0.003331,-0.668900,0.000000,1.000000,0.000000 0.253700,-0.003331,-0.609700,0.000000,1.000000,0.000000 -0.524400,-0.338600,0.677900,0.000000,0.000000,-1.000000 -0.177600,-0.003331,-0.668900,0.000000,1.000000,0.000000 0.397500,-0.003331,-0.668900,0.000000,1.000000,0.000000 -0.422900,-0.118700,0.715800,0.000000,0.000000,1.000000 -0.126900,-0.003331,-0.525100,0.000000,1.000000,0.000000 -0.542600,-0.211800,-0.728100,1.000000,0.000000,0.000000 -0.126900,-0.186000,-0.415100,0.000000,-1.000000,0.000000 0.389100,-0.364000,0.715800,0.000020,0.000020,1.000000 0.313000,-0.186000,0.109300,0.000000,-1.000000,0.000000 -0.571500,-0.194800,-0.355900,-1.000000,0.000000,0.000000 0.228400,-0.003331,-0.432000,0.000000,1.000000,0.000000 -0.456700,-0.338600,0.715800,0.000000,0.000000,1.000000 -0.439800,-0.003331,-0.508200,0.000000,1.000000,0.000000 -0.245300,-0.186000,-0.415100,0.000000,-1.000000,0.000000 0.313000,-0.186000,-0.491200,0.000000,-1.000000,0.000000 -0.203000,-0.003331,-0.229100,0.000000,1.000000,0.000000 0.126900,-0.194800,-0.797100,0.000000,0.000000,-1.000000 -0.406000,-0.003331,0.236100,0.000000,1.000000,0.000000 -0.219900,-0.003331,-0.567400,0.000000,1.000000,0.000000 0.372200,-0.355500,0.677900,0.000000,0.000000,-1.000000 0.515900,-0.186000,0.591300,0.052520,-0.998600,0.000000 -0.414400,-0.186000,0.532100,0.000000,-1.000000,0.000000 -0.304500,0.194000,0.677600,0.000000,0.100600,-0.994900 -0.084560,-0.003331,0.016220,0.000000,1.000000,0.000000 -0.253700,0.114800,0.329700,0.013190,0.986500,-0.163400 0.093050,-0.186000,0.244600,0.000000,-1.000000,0.000000 0.040170,0.118500,0.537200,-0.146200,0.964000,0.222200 0.067670,0.125700,0.447500,0.000000,1.000000,0.008749 0.253700,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.008445,-0.003331,0.024680,0.000000,1.000000,0.000000 0.084580,-0.245600,0.715800,-0.000011,-0.019660,0.999800 -0.565400,-0.153000,0.143800,-0.250900,0.967900,-0.013170 0.406000,-0.003331,-0.068360,0.000000,1.000000,0.000000 -0.093020,-0.186000,-0.406700,0.000000,-1.000000,0.000000 -0.016900,-0.186000,0.540600,0.000000,-1.000000,0.000000 0.076130,-0.003331,-0.406700,0.000000,1.000000,0.000000 0.186100,-0.186000,0.083880,0.000000,-1.000000,0.000000 0.287600,-0.084910,0.715800,0.000000,0.000000,1.000000 0.296000,-0.003331,-0.093730,0.000000,1.000000,0.000000 0.067670,-0.003331,-0.364400,0.000000,1.000000,0.000000 0.033850,-0.186000,-0.685800,0.000000,-1.000000,0.000000 0.033850,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.016910,-0.135700,0.715800,0.000000,0.000000,1.000000 0.363700,-0.076450,0.715800,0.000000,0.000000,1.000000 -0.287500,-0.186000,0.075430,0.000000,-1.000000,0.000000 -0.025360,-0.186000,-0.026070,0.000000,-1.000000,0.000000 0.067680,-0.186000,-0.626600,0.000000,-1.000000,0.000000 0.008471,-0.003331,-0.508200,0.000000,1.000000,0.000000 0.524400,0.126400,0.673600,0.000000,0.014140,-0.999900 0.025390,-0.186000,-0.491200,0.000000,-1.000000,0.000000 -0.372100,-0.003331,0.024680,0.000000,1.000000,0.000000 0.008471,-0.003331,-0.474300,0.000000,1.000000,0.000000 0.448300,-0.003331,-0.000695,0.000000,1.000000,0.000000 -0.270600,-0.186000,-0.009150,0.000000,-1.000000,0.000000 0.389100,-0.186000,0.007765,0.000000,-1.000000,0.000000 0.000015,-0.186000,-0.685800,0.000000,-1.000000,0.000000 0.000015,-0.186000,-0.398200,0.000000,-1.000000,0.000000 0.541600,-0.211800,0.024680,-1.000000,0.000000,0.000000 0.000013,-0.003331,0.219200,0.000000,1.000000,0.000000 0.211500,-0.101800,-0.769700,0.000000,-0.032130,-0.999500 -0.042280,-0.003331,-0.347500,0.000000,1.000000,0.000000 -0.143800,-0.003331,0.066970,0.000000,1.000000,0.000000 0.042300,-0.003331,-0.330500,0.000000,1.000000,0.000000 -0.042280,-0.003331,-0.643500,0.000000,1.000000,0.000000 0.245300,-0.003331,0.083880,0.000000,1.000000,0.000000 0.059220,-0.186000,0.422200,0.000000,-1.000000,0.000000 -0.262200,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.515900,-0.003004,-0.601200,-0.025750,0.999700,0.000000 -0.542300,-0.186400,-0.178300,1.000000,0.004775,0.000000 0.570500,-0.203300,-0.322100,1.000000,0.000059,0.000000 0.219900,0.125400,0.464400,0.000000,0.999400,0.033810 -0.169200,-0.152600,0.716000,-0.009814,-0.019710,0.999800 0.570600,-0.203300,0.379900,0.999800,0.019670,0.009792 0.304500,0.125600,0.456000,0.000000,0.999800,0.021250 -0.571500,-0.203300,-0.237500,-1.000000,0.000000,0.000000 0.389100,-0.003331,-0.237500,0.000000,1.000000,0.000000 0.456700,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.465200,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.338300,-0.186000,-0.136000,0.000000,-1.000000,0.000000 0.414400,-0.186000,-0.372800,0.000000,-1.000000,0.000000 0.422900,-0.003331,-0.457400,0.000000,1.000000,0.000000 0.499000,-0.186000,0.202300,0.000000,-1.000000,0.000000 0.101500,-0.003331,-0.685800,0.000000,1.000000,0.000000 -0.219900,-0.186000,-0.575800,0.000000,-1.000000,0.000000 0.304500,-0.003331,-0.694200,0.000000,1.000000,0.000000 0.465200,-0.186000,-0.186800,0.000000,-1.000000,0.000000 0.160700,-0.003331,-0.195200,0.000000,1.000000,0.000000 0.570800,-0.211800,0.354500,1.000000,-0.000000,-0.000000 0.338300,-0.186000,-0.415100,0.000000,-1.000000,0.000000 -0.152200,-0.372500,0.715800,0.000000,0.000000,1.000000 -0.126900,-0.003331,-0.440500,0.000000,1.000000,0.000000 -0.542600,-0.211800,-0.330500,1.000000,0.000000,0.000000 0.126900,-0.003331,-0.372800,0.000000,1.000000,0.000000 -0.439800,-0.186000,0.396800,0.000000,-1.000000,0.000000 -0.389000,-0.186000,0.371400,0.000000,-1.000000,0.000000 -0.211400,-0.186000,0.176900,0.000000,-1.000000,0.000000 0.363700,-0.003331,-0.322100,0.000000,1.000000,0.000000 0.236800,-0.372500,0.715800,0.000000,0.000000,1.000000 0.406000,-0.003331,-0.567400,0.000000,1.000000,0.000000 0.110000,-0.186000,-0.516600,0.000000,-1.000000,0.000000 0.439800,-0.186000,-0.381300,0.000000,-1.000000,0.000000 -0.329800,-0.003331,-0.660400,0.000000,1.000000,0.000000 -0.542600,-0.186400,-0.474300,0.999900,-0.014440,0.000001 -0.152200,-0.186000,-0.660400,0.000000,-1.000000,0.000000 -0.279100,-0.003331,-0.305200,0.000000,1.000000,0.000000 -0.355200,-0.304800,0.677900,0.000000,0.000000,-1.000000 0.397500,-0.203300,-0.797100,0.000000,0.000000,-1.000000 0.169200,-0.186000,-0.212100,0.000000,-1.000000,0.000000 0.507500,-0.003332,0.109300,-0.019460,0.999800,0.000000 -0.312900,-0.186000,0.506800,0.000000,-1.000000,0.000000 0.397500,-0.003331,0.176900,0.000000,1.000000,0.000000 0.465200,-0.003331,0.134600,0.000000,1.000000,0.000000 -0.262200,-0.003331,-0.542000,0.000000,1.000000,0.000000 0.287600,-0.186000,-0.558900,0.000000,-1.000000,0.000000 -0.571500,-0.203300,0.337600,-1.000000,0.000000,0.000000 -0.152200,-0.186000,-0.719600,0.000000,-1.000000,0.000000 0.397500,-0.186000,0.633600,0.000000,-1.000000,0.000000 0.473600,-0.279400,0.715800,0.000000,0.000000,1.000000 -0.279100,-0.186000,0.430700,0.000000,-1.000000,0.000000 -0.414400,-0.003331,0.151500,0.000000,1.000000,0.000000 0.177600,-0.186000,0.236100,0.000000,-1.000000,0.000000 -0.456700,-0.186000,-0.635000,0.000000,-1.000000,0.000000 -0.152200,-0.380900,0.677900,0.000000,-0.013730,-0.999900 -0.439800,-0.186000,-0.398200,0.000000,-1.000000,0.000000 -0.296000,-0.003331,-0.152900,0.000000,1.000000,0.000000 -0.380600,-0.186000,0.456000,0.000000,-1.000000,0.000000 0.110000,-0.003331,-0.618100,0.000000,1.000000,0.000000 0.245300,-0.186000,0.185400,0.000000,-1.000000,0.000000 0.177600,-0.186000,0.354500,0.000000,-1.000000,0.000000 0.482100,-0.186000,-0.567400,0.000000,-1.000000,0.000000 0.389100,-0.203300,0.677900,0.000000,0.000000,-1.000000 0.524400,-0.321700,0.715800,0.000000,0.000000,1.000000 -0.571500,-0.186400,-0.144500,-1.000000,0.000000,0.000000 -0.571500,-0.203300,-0.448900,-1.000000,0.000000,0.000000 0.570500,-0.203300,0.625200,1.000000,-0.000059,0.000000 -0.571500,-0.220200,-0.195200,-1.000000,-0.000178,0.000000 0.465200,-0.186000,0.582900,0.000000,-1.000000,0.000000 0.287600,-0.003331,0.117700,0.000000,1.000000,0.000000 0.135300,-0.186000,0.354500,0.000000,-1.000000,0.000000 0.118400,-0.186000,-0.381300,0.000000,-1.000000,0.000000 0.152300,-0.186000,0.126200,0.000000,-1.000000,0.000000 0.456700,-0.211800,0.715800,0.000000,0.000000,1.000000 0.270700,-0.003331,-0.178300,0.000000,1.000000,0.000000 0.507500,-0.262500,0.715800,0.000000,0.000000,1.000000 -0.253700,-0.186000,0.100800,0.000000,-1.000000,0.000000 0.203000,-0.186000,-0.212100,0.000000,-1.000000,0.000000 0.219900,-0.186000,0.236100,0.000000,-1.000000,0.000000 -0.499000,-0.003331,0.253000,0.000555,1.000000,0.001576 -0.542300,-0.194900,0.219200,0.999800,0.019630,-0.000021 0.135300,-0.186000,0.168500,0.000000,-1.000000,0.000000 -0.304500,-0.003333,-0.440500,-0.029540,0.999400,0.019680 -0.490500,-0.271000,0.677900,0.000000,0.000000,-1.000000 -0.448200,-0.186000,-0.279800,0.000000,-1.000000,0.000000 -0.507400,-0.186000,0.532100,0.000000,-1.000000,0.000000 -0.177600,-0.330200,0.677900,0.000000,0.000000,-1.000000 -0.508900,-0.235900,-0.695700,-0.696300,0.187100,-0.692900 -0.203000,-0.152600,0.715800,-0.003252,-0.003257,1.000000 -0.186100,-0.245600,0.715800,0.000000,0.000000,1.000000 -0.431300,-0.003331,-0.271300,0.000000,1.000000,0.000000 0.321400,-0.034160,0.715800,0.000000,0.000000,1.000000 0.304500,-0.003331,0.168500,0.000000,1.000000,0.000000 -0.507400,-0.186000,0.498300,0.000000,-1.000000,0.000000 0.160700,-0.003331,-0.626600,0.000000,1.000000,0.000000 0.431300,-0.101800,0.715800,0.000000,0.000000,1.000000 -0.093030,-0.347100,0.715800,0.000000,0.000000,1.000000 -0.453900,0.021160,0.268400,0.000034,-0.370000,-0.929100 0.084600,-0.110200,-0.769200,0.000000,-0.067990,-0.997700 0.101500,0.124200,0.397000,0.000000,0.997700,-0.067360 -0.186100,0.177400,0.741500,0.000000,-0.078700,0.996900 -0.515900,0.254200,0.688500,0.000000,-0.199100,0.980000 0.076140,0.124800,0.405400,0.000000,0.998500,-0.054830 0.211500,-0.068310,-0.768400,0.000000,0.109300,-0.994000 -0.439800,0.123700,0.413800,0.000000,0.999200,-0.039650 -0.571500,-0.211800,-0.381300,-1.000000,0.000000,0.000000 -0.135300,0.185600,0.676800,0.000000,0.090400,-0.995900 -0.286900,0.221000,0.744400,0.000000,0.000389,1.000000 0.465200,-0.203300,-0.768300,-0.000020,-0.000079,1.000000 0.169200,0.227200,0.681700,0.000000,0.143200,-0.989700 0.262200,0.122200,0.735000,-0.000030,-0.153900,0.988100 0.262200,0.079500,0.727600,0.006453,-0.218100,0.975900 0.381300,0.164400,0.675100,0.000000,0.060440,-0.998200 0.542600,-0.069690,-0.406700,0.995200,0.098170,0.000000 -0.549700,0.337900,0.735900,-0.013300,-0.125300,-0.992000 0.346800,-0.186600,-0.768400,0.000000,-0.354200,0.935200 0.126900,0.228100,0.744600,0.000000,-0.011470,0.999900 0.160700,0.126400,0.673600,0.000000,0.014140,-0.999900 -0.456700,0.169000,0.740800,0.000000,-0.090760,0.995900 0.346800,-0.126800,-0.767500,0.000000,-0.138900,-0.990300 0.540900,-0.058470,-0.446200,0.988600,0.149800,-0.015360 0.482900,-0.282300,-0.685300,0.710900,0.000000,0.703300 -0.269900,0.058780,0.617100,0.000000,0.107200,0.994200 -0.422900,-0.060050,-0.767300,0.000000,0.144300,-0.989500 -0.456700,-0.060050,-0.767300,0.000000,0.144300,-0.989500 -0.571400,-0.161400,0.253000,-0.992800,0.119900,-0.004059 0.515900,-0.143400,-0.767400,-0.000019,0.335800,-0.941900 -0.033810,0.278700,0.743600,0.000000,0.048050,0.998800 0.462700,-0.246800,-0.728100,0.001318,-0.678900,-0.734200 0.575500,0.279100,0.716200,0.999900,0.014710,0.005649 -0.219900,0.058340,0.720800,0.000000,0.231800,-0.972800 -0.406000,0.108800,0.731200,0.000000,0.170500,-0.985400 -0.189500,0.235100,0.742300,0.000000,0.004442,-1.000000 0.558200,-0.240300,0.270000,0.011620,-0.999900,0.000000 0.406000,0.115400,0.557000,-0.009953,0.983600,0.180300 0.470100,0.070810,0.617100,0.000093,0.235400,0.971900 -0.543500,-0.076990,0.236100,-0.997600,0.068910,0.000000 0.571100,-0.161500,0.548600,0.997300,0.073020,-0.003079 0.550500,-0.152600,0.456700,0.219400,0.975600,0.000000 -0.544000,-0.101700,-0.059900,-0.999500,-0.031740,-0.000038 0.253700,-0.004389,-0.749900,0.000000,0.886900,-0.461900 -0.253700,-0.185600,0.657300,0.000000,-0.961700,0.274100 -0.279100,0.101700,0.732000,0.000000,-0.174800,0.984600 -0.534700,-0.172100,0.554700,-0.394000,-0.919100,0.000000 0.389800,0.349300,0.709800,0.000000,0.304500,-0.952500 0.305200,0.153600,0.676500,0.000000,-0.032220,0.999500 0.543000,-0.109800,-0.423600,0.996400,-0.085270,0.000016 0.541200,-0.064280,-0.620900,0.991300,0.131700,0.000097 0.465200,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 -0.543600,-0.109800,0.236100,-0.997900,-0.065090,0.000000 0.363700,0.312300,0.741100,0.009889,0.077080,0.997000 -0.016900,-0.004390,-0.749900,0.001352,0.886400,-0.463000 0.540600,-0.143600,-0.093730,0.964200,0.265200,0.000000 -0.186100,0.081370,0.610900,-0.000169,0.387500,0.921900 0.262200,0.058350,0.678100,0.000000,0.035370,0.999400 0.569300,-0.177200,-0.784000,0.936000,-0.000130,-0.351900 -0.203000,-0.126800,-0.767500,0.000000,-0.139100,-0.990300 0.539500,-0.051350,-0.305200,0.986500,0.163600,0.000004 -0.229100,0.352600,0.735700,0.000000,0.115800,0.993300 -0.038360,0.114800,0.529800,0.874200,0.473200,0.109200 0.059220,0.337200,0.737900,-0.000018,0.148900,0.988800 0.575700,0.236000,0.721600,0.999800,0.018200,0.002712 0.172000,0.032270,0.714800,0.000000,-0.211200,-0.977400 -0.464500,-0.010530,0.679100,0.000521,0.638600,-0.769500 0.468000,0.000762,0.610700,-0.003069,0.673200,0.739400 0.507500,-0.003332,0.160000,-0.019460,0.999800,0.000000 -0.515900,-0.002758,0.709000,0.000092,0.992300,0.123800 0.541700,-0.235100,-0.059900,-0.964900,-0.262400,0.000000 -0.566700,-0.347100,0.678000,-0.295600,-0.001396,-0.955300 0.067660,0.121500,0.735300,0.000000,-0.181100,0.983500 -0.152200,0.270500,0.741600,0.000000,-0.042090,-0.999100 -0.488900,0.008259,0.371500,-0.977100,0.212700,-0.000067 -0.312900,0.345400,0.736500,0.000000,0.140600,0.990100 0.406000,0.067560,0.724900,0.000000,-0.219200,0.975700 -0.102200,0.110900,0.571900,-0.013140,0.979200,0.202700 -0.571400,-0.235100,0.134600,-0.986900,-0.161200,0.000000 0.144500,0.067250,0.675100,0.000000,-0.058490,-0.998300 -0.550900,-0.096180,0.674400,-0.626600,-0.003241,-0.779300 -0.338300,-0.009623,0.715900,0.013780,0.132300,0.991100 0.539500,-0.051350,0.160000,0.986500,0.163600,0.000000 -0.400300,0.355000,0.724800,0.000000,-0.968800,-0.247900 0.531200,-0.016890,-0.582200,0.944300,0.329200,0.000000 -0.534800,-0.028540,0.346800,-0.962700,0.270500,0.000000 -0.540100,-0.051220,0.126200,-0.982600,0.185800,0.000000 0.541600,-0.211800,0.160000,-1.000000,0.000000,0.000000 0.507500,-0.002758,0.709000,0.000000,0.992100,0.125300 0.411600,0.081270,0.675900,0.000000,0.053960,0.998500 0.033840,0.084580,0.674200,0.000000,-0.043030,-0.999100 -0.569800,-0.156300,-0.643500,-0.814200,0.580600,0.000120 -0.542200,-0.063640,-0.212100,-0.991300,0.131900,0.000000 -0.542200,-0.063680,-0.753500,-0.991500,0.129700,-0.008561 -0.335500,0.021170,0.268400,-0.000012,-0.369900,-0.929100 0.484800,0.000598,0.450400,0.750500,0.660800,0.000000 -0.176700,-0.153200,-0.786100,0.012680,0.989600,-0.143200 0.318300,0.250000,0.742300,0.000000,0.004143,-1.000000 0.344000,0.005346,0.277100,0.000000,-0.004509,-1.000000 0.541300,-0.398700,0.692800,0.000000,-1.000000,-0.006052 0.541200,-0.235000,-0.583500,-0.971500,-0.140600,0.190900 0.524400,0.210600,0.679400,0.000000,0.122800,-0.992400 -0.284700,0.101300,0.598900,0.000162,0.690800,0.723000 0.448300,0.036860,0.617600,0.000000,-0.190600,0.981700 -0.454300,-0.386000,-0.684200,-0.443100,-0.846900,-0.293800 0.321400,-0.186400,0.677900,0.000000,0.004847,-1.000000 0.538400,-0.172600,0.182600,-0.635400,-0.772200,0.000000 0.313000,0.106300,0.596100,0.000033,0.842800,0.538200 -0.109900,-0.002730,0.657000,0.000000,0.986200,0.165700 0.541600,-0.186400,-0.347500,-1.000000,0.004909,0.000000 0.541600,-0.194800,-0.601200,-1.000000,0.000000,0.000000 -0.507400,-0.240300,-0.651900,0.000625,-1.000000,0.000626 -0.499000,-0.003331,-0.186800,-0.000044,1.000000,0.000000 -0.542400,-0.178100,-0.059900,0.973500,-0.228400,0.006444 0.321400,-0.003003,0.650500,0.000000,0.999200,-0.040260 0.542600,-0.069660,0.066970,0.989100,0.147600,0.000000 0.491700,0.071800,0.368600,0.970000,0.243000,0.000000 -0.542300,-0.123700,0.264300,-0.992000,-0.126300,0.000000 0.558400,-0.101800,0.678000,0.216500,-0.002874,-0.976300 0.013870,0.066030,0.278400,-0.986700,0.162700,-0.004547 0.532800,-0.016950,0.674200,0.397900,0.563200,-0.724200 0.544400,-0.239000,0.509600,-0.514100,-0.857700,0.000000 0.389100,0.098120,0.604300,-0.006456,0.600800,0.799400 0.143800,0.042710,0.618700,0.000000,-0.101100,0.994900 -0.092310,0.343400,0.707900,0.000000,0.295900,-0.955200 0.532800,-0.022770,-0.054970,0.961600,0.274500,0.000033 0.565400,-0.153000,-0.745400,0.258300,0.966000,0.013240 0.550400,-0.152600,-0.059180,0.219100,0.975700,0.000000 0.570500,-0.220200,-0.271300,1.000000,-0.000178,0.000000 -0.101500,0.058660,0.263100,0.000000,0.104400,-0.994500 0.025390,-0.002999,-0.736500,-0.000013,0.999300,0.038290 -0.397500,-0.186400,0.677900,0.000000,0.004847,-1.000000 -0.558200,-0.240300,-0.330500,-0.011660,-0.999900,0.000000 -0.542900,-0.070040,-0.668900,-0.995200,0.098290,0.000017 0.473600,0.079690,0.269300,0.008351,0.341300,-0.939900 -0.219200,-0.006088,0.681200,0.000000,0.745800,-0.666100 -0.473600,0.211500,0.681600,0.000000,-0.120000,0.992800 -0.253700,0.169200,0.677800,0.000000,-0.089100,0.996000 0.186100,0.035460,0.679200,0.000000,0.019930,0.999800 0.321400,0.364000,0.726500,0.000000,0.993600,0.112600 -0.515900,-0.186000,-0.474300,-0.040710,-0.999200,0.000000 -0.515900,-0.186000,0.286900,-0.040710,-0.999200,0.000000 0.544400,-0.239000,0.222000,-0.514100,-0.857700,0.000000 -0.303800,0.058780,0.617100,0.000000,0.107200,0.994200 -0.067650,0.033910,0.615700,-0.000003,-0.212700,0.977100 -0.219900,-0.003332,0.642100,0.000000,0.999800,-0.019490 0.397500,-0.221700,-0.765700,0.001610,0.385100,0.922900 0.135300,0.100500,0.729700,0.000000,0.177800,-0.984100 0.014360,0.035360,0.523700,-0.979300,-0.202200,-0.000918 -0.571400,-0.161400,0.007756,-0.993100,0.117500,0.003959 0.516600,0.349300,0.709800,0.000012,0.304500,-0.952500 0.499000,0.328900,0.703600,0.000000,0.273000,-0.962000 -0.152200,0.108200,0.295500,0.000000,0.970600,-0.240700 -0.550200,-0.240200,-0.186800,0.085960,-0.996300,0.000000 -0.143100,0.136300,0.735400,0.000000,0.133800,-0.991000 -0.566900,0.083820,0.721500,0.728300,0.216100,-0.650300 -0.515900,-0.003000,0.422200,0.030230,0.999500,0.000000 0.516600,0.136300,0.735400,0.000000,0.133800,-0.991000 -0.389000,-0.002730,0.657000,0.000000,0.986200,0.165700 0.389100,-0.002730,0.657000,0.000000,0.986200,0.165700 -0.490500,0.032290,0.679000,0.000000,-0.354700,0.935000 0.287600,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 -0.149400,-0.014460,0.670200,0.000000,0.913800,0.406300 -0.168400,0.355400,0.711700,0.000000,0.396300,-0.918100 -0.575300,0.301000,0.709500,-0.977100,0.091040,-0.192400 0.076130,0.295300,0.694800,0.000000,0.232500,-0.972600 0.279100,-0.002714,-0.744200,0.000000,0.994700,-0.103300 -0.281900,0.015860,0.270800,0.000000,-0.197700,-0.980300 0.570800,-0.169500,-0.533500,0.999400,-0.034320,0.000000 -0.507400,-0.003332,-0.618100,0.019620,0.999800,0.000000 -0.529200,-0.176800,0.625200,-0.788200,-0.615400,0.000000 -0.515900,-0.003000,-0.677300,0.030230,0.999500,0.000000 0.152200,-0.380900,0.715800,0.000000,0.005438,1.000000 0.571100,-0.161500,0.345600,0.997300,0.073020,-0.003079 0.431400,0.059750,0.723200,0.000000,-0.250400,0.968100 -0.076110,0.120900,0.506200,0.000000,0.995000,0.099400 -0.194500,-0.395500,0.713900,0.000000,-0.605500,0.795800 -0.135300,0.066770,0.677100,0.000085,0.086370,0.996300 0.422900,-0.143400,-0.767400,0.000000,0.335800,-0.941900 0.422900,0.151600,0.737300,0.000000,0.113500,-0.993500 -0.236800,0.151600,0.737300,0.000000,0.113500,-0.993500 0.543500,-0.076980,0.253000,0.996000,0.089770,0.000000 -0.397500,0.050430,0.676300,0.000000,-0.084610,-0.996400 0.008471,-0.003331,0.574400,0.004435,1.000000,0.000000 0.186800,0.349300,0.709800,0.000000,0.304500,-0.952500 -0.253700,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.456700,-0.052010,-0.766000,0.000000,0.178000,-0.984000 0.570800,-0.169500,0.591300,0.999300,-0.036580,-0.000001 0.528800,-0.176600,0.447600,0.779200,-0.626800,0.000000 -0.543900,-0.149400,-0.550400,-0.682600,0.730800,0.000000 0.296000,0.337200,0.738300,0.000000,0.149000,0.988800 0.482100,0.135800,0.737700,0.003346,-0.171800,0.985100 0.524400,-0.037930,-0.763000,0.005046,0.237000,-0.971500 -0.042270,0.066880,0.615800,0.000080,0.206400,0.978500 0.135300,0.303100,0.696600,0.000000,0.239200,-0.971000 0.093050,0.355200,0.717700,0.000000,-0.895500,0.445000 -0.543900,-0.149400,0.227700,-0.682600,0.730800,0.000000 0.466200,-0.242000,-0.670000,-0.229100,-0.783900,0.577000 -0.389000,-0.240300,-0.778800,0.000020,-1.000000,-0.000515 -0.542200,-0.063640,0.650500,-0.991300,0.131800,0.000139 0.126900,0.066240,0.722600,0.000028,0.222600,-0.974900 -0.456700,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.414400,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.531200,-0.016890,0.111400,0.944300,0.329200,0.000001 -0.558200,-0.240300,0.464500,-0.011660,-0.999900,0.000000 -0.558200,-0.240300,-0.660400,-0.015750,-0.999900,0.000002 0.544400,-0.239000,0.137400,-0.514100,-0.857700,0.000000 0.241800,0.265700,0.743800,-0.000212,0.008771,1.000000 -0.287600,0.019340,0.611000,0.000130,-0.393200,0.919500 -0.270600,0.066220,0.722600,0.000033,0.222900,-0.974800 -0.490500,0.073570,0.725900,0.000000,-0.242700,0.970100 0.507500,0.288600,0.695200,0.000000,-0.254800,0.967000 0.532800,-0.022770,-0.503200,0.961600,0.274500,0.000028 0.565200,-0.152600,-0.422900,0.227800,0.973700,0.000000 0.570500,-0.177900,0.024680,1.000000,0.000000,0.000000 0.538600,-0.043330,0.303800,0.981500,0.191700,0.000000 -0.542300,-0.228700,0.439100,0.999800,-0.021040,0.000000 -0.194500,0.049820,0.678200,-0.003384,0.071920,0.997400 -0.533100,-0.022670,-0.126900,-0.953700,0.300700,0.000000 -0.533100,-0.022670,-0.642800,-0.953700,0.300700,0.000000 0.570500,-0.220200,-0.076810,1.000000,-0.000158,0.000020 0.550400,-0.152600,-0.152900,0.221700,0.975100,-0.000022 0.465300,-0.330200,-0.677900,-0.028400,0.000000,0.999600 0.507500,-0.003332,0.185400,-0.019460,0.999800,0.000000 0.526100,-0.005332,0.207900,0.740400,0.672200,-0.000001 0.541700,-0.123600,0.472900,0.992000,-0.126500,0.000000 0.572300,-0.084890,0.680200,0.648400,-0.000010,-0.761300 -0.489000,0.016460,0.284000,-0.984200,-0.177300,-0.001855 -0.550500,-0.152500,-0.287500,-0.219700,0.975600,-0.000000 -0.138100,0.087140,0.608200,-0.000728,0.438000,0.899000 -0.124000,0.352300,0.731800,0.029240,-0.666700,-0.744700 0.389100,0.050520,0.619300,0.000000,-0.040010,0.999200 -0.101500,0.109700,0.673600,0.000000,-0.008652,-1.000000 0.151600,-0.181900,-0.763400,0.000000,-0.913100,0.407700 -0.540400,-0.135500,0.464500,-0.999000,-0.044820,0.000000 0.486700,0.018780,0.489900,0.903200,-0.429200,0.000105 0.493600,0.042600,0.379900,0.992800,-0.119500,-0.009825 -0.542200,-0.063640,-0.127600,-0.991300,0.131900,0.000000 0.109300,0.362100,0.732200,0.000000,0.860400,0.509500 -0.540600,0.246100,0.684700,0.000025,0.168100,-0.985800 -0.571600,0.335200,0.708300,-0.733900,0.112200,-0.670000 0.024700,-0.152700,-0.779000,-0.000019,0.975600,-0.219700 -0.465200,0.058660,0.263100,0.000000,0.104400,-0.994500 -0.473600,0.051890,0.720900,0.000000,-0.247500,0.968900 -0.042310,0.039080,0.715800,-0.000054,0.236100,-0.971700 0.110000,0.269300,0.689000,0.000000,0.196800,-0.980500 -0.543500,-0.076990,0.532100,-0.997600,0.068910,0.000000 0.521800,-0.185200,0.041590,0.371800,-0.928300,0.000000 -0.523500,-0.013140,-0.755400,-0.035820,0.345400,-0.937800 -0.265700,0.118500,0.527500,-0.000006,0.994400,0.105400 -0.465200,-0.233300,-0.685800,-0.000640,1.000000,-0.001979 -0.570400,0.112000,0.677300,-0.781100,0.024520,-0.624000 -0.397500,0.006143,0.607600,0.000191,0.159300,0.987200 -0.549700,-0.271000,0.715800,0.000000,0.000000,1.000000 0.466300,0.108400,0.591400,0.112600,0.935700,0.334400 -0.253700,0.296700,0.697500,0.000000,-0.232100,0.972700 -0.321400,-0.003390,0.616900,0.001134,0.968100,0.250700 -0.025900,0.006096,0.295300,0.989100,0.147300,-0.003375 -0.017540,0.031530,0.447600,0.965900,-0.258700,0.000449 -0.549700,0.225700,0.683400,0.009326,-0.134800,0.990800 0.135300,0.177700,0.678400,0.000014,-0.081270,0.996700 -0.338300,-0.149000,-0.771600,-0.000018,0.782900,-0.622200 0.103900,0.221100,0.744500,0.000000,-0.024110,0.999700 -0.540400,-0.135500,-0.592700,-0.998900,-0.047120,0.000040 -0.076100,0.276400,0.690500,0.000000,0.205400,-0.978700 -0.222700,-0.004593,0.713900,0.000000,0.713300,0.700800 0.355300,0.232600,0.684400,0.000222,-0.133400,0.991100 -0.565400,-0.240100,-0.736500,-0.115100,-0.993400,0.000000 0.431400,-0.002999,0.692800,0.006574,0.998600,-0.052910 0.389100,0.086480,0.727100,0.000000,0.197700,-0.980300 -0.067640,0.058340,0.720800,-0.000009,0.233300,-0.972400 -0.203000,0.337900,0.735900,0.000000,-0.123700,-0.992300 -0.422900,0.066490,0.264400,0.000000,0.200500,-0.979700 -0.062000,-0.172700,0.674700,0.000000,-0.794600,-0.607200 0.160700,-0.182700,0.662300,0.000000,-0.693700,0.720300 -0.002797,0.344300,0.735000,-0.001077,-0.271200,-0.962500 0.539800,-0.135400,-0.516600,0.999700,-0.025590,0.000037 -0.096550,0.358700,0.735400,0.000000,0.374300,0.927300 -0.540900,-0.143700,-0.694200,-0.969700,0.244500,-0.000001 0.101500,0.227200,0.681700,0.000000,0.143200,-0.989700 -0.008450,-0.003331,0.439100,-0.004035,1.000000,0.000001 0.534000,-0.172000,-0.009153,0.370100,-0.929000,-0.000065 0.528500,-0.010450,-0.525100,0.913900,0.406000,0.000003 0.474400,0.215300,0.744300,0.000000,-0.062790,0.998000 -0.460700,-0.354900,-0.715000,0.491400,-0.001917,-0.870900 -0.287500,0.364100,0.726300,0.000000,0.995600,0.094150 0.498300,-0.181900,-0.763400,0.001036,-0.912400,0.409300 -0.346800,0.295300,0.694800,0.000000,0.232500,-0.972600 -0.315700,-0.004913,0.661800,0.000000,0.740000,0.672600 -0.494900,-0.271000,-0.687800,-0.962200,0.000378,0.272200 0.228400,0.310600,0.698600,-0.000097,0.252600,-0.967600 0.042300,0.100500,0.729700,0.000000,0.177800,-0.984100 -0.177600,0.135800,0.737400,0.000000,-0.135000,0.990800 -0.084560,0.310600,0.700600,0.000000,-0.226500,0.974000 -0.540100,-0.051220,0.439100,-0.982600,0.185800,0.000000 -0.543500,-0.076990,-0.423600,-0.997600,0.068990,-0.000069 -0.405200,0.343400,0.707900,0.000000,0.295900,-0.955200 0.024640,0.005741,0.529300,-0.999100,0.042150,0.000000 0.397500,0.211400,0.681900,0.000000,-0.120000,0.992800 -0.543500,-0.076990,0.396800,-0.997600,0.068910,0.000000 -0.431300,0.039890,0.717700,0.000000,-0.256100,0.966600 -0.211400,0.288600,0.695300,0.000000,-0.232900,0.972500 0.296700,0.349300,0.709800,0.000000,0.304500,-0.952500 -0.312900,0.336500,0.705800,0.000000,0.282900,-0.959200 -0.329900,0.095750,0.277100,0.000658,0.573600,-0.819100 0.242500,0.343800,0.735100,0.000000,-0.276100,-0.961100 0.575000,0.059600,0.692900,1.000000,-0.003334,-0.001904 -0.534700,-0.172100,0.013400,-0.394000,-0.919100,0.000000 -0.524400,0.328900,0.703600,0.000000,0.273000,-0.962000 -0.431300,0.310600,0.700600,0.000000,-0.226500,0.974000 0.538400,-0.172600,0.030320,-0.625800,-0.780000,0.000000 -0.287600,0.304600,0.699100,0.000000,-0.215400,0.976500 -0.279100,-0.228600,-0.768000,0.000000,0.026500,0.999600 -0.507400,-0.182700,0.662300,-0.000030,-0.693700,0.720300 0.126900,-0.398600,0.685300,0.000000,-0.969200,-0.246500 -0.024640,0.355400,0.711700,0.000000,0.396300,-0.918100 0.458800,-0.355500,-0.723000,-0.282100,0.011990,-0.959300 0.543600,-0.149400,-0.395400,0.673700,0.739000,0.000000 0.050770,-0.398600,0.685300,0.000000,-0.969200,-0.246500 -0.480900,-0.371700,-0.674300,-0.370100,-0.024660,0.928700 0.110000,0.079480,0.727900,0.000000,-0.213600,0.976900 0.487800,0.081270,0.675900,0.000040,0.053900,0.998500 -0.531200,-0.016900,-0.406000,-0.944000,0.330000,0.000000 0.575500,0.255700,0.741600,0.931800,0.069340,0.356200 -0.147300,-0.181800,-0.757300,-0.000016,-0.985600,-0.169300 -0.490500,0.115600,0.734300,0.000000,-0.133700,0.991000 -0.397500,-0.043990,-0.764400,0.000000,0.206100,-0.978500 -0.522200,-0.185400,-0.262900,-0.328500,-0.944500,0.000000 0.568700,-0.238800,-0.025350,0.678800,-0.734400,0.000000 0.043010,0.130300,0.734600,0.000000,0.143600,-0.989600 0.304500,0.074350,0.724400,0.000000,0.220400,-0.975400 -0.490500,0.279000,0.741200,0.000000,-0.053050,-0.998600 -0.067650,0.090240,0.273600,0.000001,0.514600,-0.857400 0.538400,-0.172600,-0.426400,-0.625800,-0.780000,0.000000 0.160700,-0.026280,-0.759800,0.000000,0.292300,-0.956300 0.194500,-0.240300,-0.778900,0.000000,-1.000000,0.004348 -0.389000,0.288400,0.693100,0.000000,0.228900,-0.973500 -0.025350,-0.398600,0.709100,0.000038,-0.969400,0.245500 0.127600,0.234300,0.682700,0.000000,0.155100,-0.987900 -0.269900,0.234300,0.682700,0.000000,0.155100,-0.987900 -0.540900,-0.143700,0.329200,-0.969600,0.244500,0.000000 0.279100,0.330400,0.706400,0.000141,-0.251800,0.967800 0.245300,0.050520,0.619300,0.000000,0.001796,1.000000 0.512500,0.235100,0.742300,0.000003,0.004441,-1.000000 0.541300,-0.123600,-0.127600,0.995100,-0.098450,0.000000 0.355200,0.177200,0.676000,0.000000,0.082220,-0.996600 0.431300,0.032640,0.715400,0.000000,-0.606700,0.794900 -0.532100,0.355400,0.711700,0.000000,0.396300,-0.918100 -0.575700,0.213100,0.730000,-0.999200,0.039250,-0.004051 0.541200,-0.063740,0.597000,0.991200,0.132100,0.000000 -0.033810,-0.185600,0.657300,0.000000,-0.961700,0.274100 0.542600,-0.069660,-0.144500,0.989000,0.147600,-0.000018 -0.236800,0.001350,0.268100,0.000000,0.652500,-0.757800 -0.016280,0.063960,0.301000,0.985700,0.168700,0.000000 0.058520,-0.181900,-0.763400,0.000000,-0.907600,0.419900 0.558200,-0.118700,0.715800,0.005013,0.000000,1.000000 -0.262200,0.103400,0.283700,-0.005789,0.807800,-0.589400 -0.541500,-0.129500,0.546200,-0.987600,-0.157000,0.000000 -0.488900,0.016340,0.546200,-0.984800,-0.173400,0.000000 -0.028840,0.235100,0.742300,0.000000,0.004442,-1.000000 0.575300,0.051060,0.716900,0.950000,-0.105800,0.293900 -0.542900,-0.069660,0.303800,-0.995200,0.098320,0.000000 0.087410,0.093310,0.607200,-0.004129,0.515400,0.856900 0.544200,-0.149300,0.653800,0.666300,0.745500,-0.017390 0.549700,0.342500,0.709700,-0.062290,-0.206200,0.976500 0.541300,0.115600,0.734700,-0.000003,-0.133000,0.991100 0.409700,-0.156400,-0.794300,0.003170,0.686600,-0.727000 -0.372100,0.001350,0.268100,0.000000,0.652500,-0.757800 0.532900,0.074350,0.724400,0.000000,0.220400,-0.975400 0.219900,0.228100,0.744600,0.000000,-0.011280,0.999900 0.532900,0.310600,0.700900,0.000000,-0.226100,0.974100 -0.016920,0.151000,0.674400,-0.000065,0.047360,-0.998900 -0.363700,0.253200,0.744200,0.000000,0.045070,0.999000 -0.576000,0.261300,0.714700,-1.000000,0.001072,-0.001993 0.194500,0.059800,0.722800,0.000020,-0.250400,0.968100 -0.569800,-0.239000,-0.564500,-0.636600,-0.771200,0.000000 0.287600,0.288500,0.695600,0.000000,-0.276000,0.961100 0.534000,-0.172000,-0.694200,0.370000,-0.929000,0.000000 0.020250,0.018530,0.286900,-0.899100,-0.437700,-0.006875 -0.019260,0.026000,0.388400,0.943500,-0.331400,0.000000 0.515900,-0.186000,-0.457400,0.041760,-0.999100,0.000000 0.544400,-0.239000,-0.260100,-0.514100,-0.857700,0.000000 0.569800,-0.156300,0.308500,0.831400,0.555600,-0.000060 -0.565200,-0.152600,0.583600,-0.227600,0.973800,0.000000 0.131000,0.208300,0.743700,-0.006634,-0.058610,0.998300 0.550400,-0.152600,0.008483,0.219100,0.975700,0.000000 -0.219900,0.112100,0.564700,0.000000,0.977900,0.209200 0.229100,-0.162000,-0.797000,0.001154,0.214800,-0.976700 -0.523700,0.147800,0.676500,-0.000001,-0.016250,0.999900 -0.498300,0.147800,0.676500,0.000000,-0.016250,0.999900 -0.143100,0.209500,0.743700,0.000000,-0.062670,0.998000 -0.067640,0.112000,0.313400,0.000000,0.981600,-0.191100 -0.569800,-0.239000,0.179700,-0.636600,-0.771200,0.000000 0.172000,0.256300,0.742200,0.000000,-0.041560,-0.999100 0.406000,-0.233400,-0.736600,0.030080,0.999100,-0.030190 0.059220,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.542600,-0.228700,-0.169900,1.000000,0.000929,0.000000 -0.017470,0.069470,0.433500,0.968200,0.249800,0.013180 0.540900,-0.143700,0.506800,0.961900,0.273500,0.000000 -0.329800,0.177200,0.676000,0.000000,0.082220,-0.996600 0.543500,-0.076980,0.329200,0.996000,0.089770,0.000000 0.515900,-0.186000,-0.009150,0.053600,-0.998600,0.000000 0.090220,0.259100,0.743600,-0.000042,0.034930,0.999400 -0.422900,-0.014110,0.674600,-0.000039,0.914100,-0.405500 0.493300,0.042740,0.614600,0.980300,-0.139600,0.139700 -0.565900,0.265000,0.693800,0.610600,-0.099010,0.785700 0.382400,0.000789,0.688200,0.657400,0.710800,-0.250200 -0.070470,0.259100,0.743600,0.000000,0.034840,0.999400 -0.539100,-0.172500,0.244600,0.602600,-0.798100,0.000000 -0.545000,-0.239200,-0.068350,0.547400,-0.836900,0.000000 0.203000,0.042430,0.265000,0.000000,-0.122400,-0.992500 0.573100,0.173200,0.681900,0.868400,0.035240,-0.494600 0.491100,0.030040,0.557500,0.956800,-0.290900,-0.000296 -0.448300,-0.233600,-0.711200,-0.018440,0.999700,-0.018000 -0.417200,0.343800,0.735100,0.000000,-0.276100,-0.961100 0.570900,0.202800,0.691500,-0.915500,-0.019070,0.401800 0.541600,-0.186400,-0.474300,-1.000000,0.004909,0.000000 -0.439800,0.100200,0.280500,0.000000,0.653100,-0.757200 -0.135300,0.270400,0.691600,0.003773,-0.190100,0.981800 0.033950,0.110600,0.388400,-0.967600,0.252600,-0.000688 0.267400,-0.153800,-0.789100,-0.012450,0.952500,-0.304200 0.028320,0.099040,0.338300,-0.827100,0.562000,0.000002 -0.093020,0.090240,0.273600,0.000000,0.514600,-0.857400 -0.210700,0.067250,0.675100,0.000000,-0.058490,-0.998300 0.332000,-0.184300,-0.749700,0.000000,-0.954500,-0.298300 -0.451100,0.081270,0.675900,0.000000,0.053760,0.998600 -0.540400,-0.135500,0.371400,-0.999000,-0.044820,0.000000 -0.346700,0.360300,0.714500,0.000000,0.693600,-0.720400 -0.349600,0.343800,0.735100,0.000000,-0.276100,-0.961100 -0.380600,-0.186600,-0.768400,0.000000,-0.354200,0.935200 0.542400,-0.117600,0.058520,0.993100,-0.117200,0.000000 -0.526700,-0.182200,-0.133200,-0.778100,-0.628200,0.000000 0.313000,0.018040,0.272300,0.000000,-0.442300,-0.896900 0.050760,-0.018850,-0.757500,0.000000,0.313400,-0.949600 -0.543000,-0.117700,-0.178300,-0.995600,-0.093450,0.000004 0.016220,0.352600,0.736100,0.000000,0.104000,0.994600 -0.529200,-0.176800,-0.237500,-0.789000,-0.614400,0.000000 -0.304500,0.254200,0.688500,0.000000,-0.199100,0.980000 -0.371400,0.035760,0.709800,-0.236500,0.845100,-0.479400 -0.456700,0.034990,0.714900,0.000000,0.166700,-0.986000 -0.565400,-0.240100,0.650600,-0.115200,-0.993300,0.000550 0.549800,0.303900,0.741800,-0.003307,0.081680,0.996700 0.571100,-0.161500,0.413300,0.997300,0.073020,-0.003079 -0.352400,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 -0.415100,-0.181900,-0.763400,0.000000,-0.912600,0.408800 0.380600,-0.240300,-0.761900,-0.008229,-0.999900,0.008294 -0.093020,-0.002714,-0.744200,0.000000,0.994700,-0.103300 -0.490600,-0.233600,-0.677300,-0.009825,1.000000,0.000049 0.524400,-0.186600,-0.768400,-0.077850,-0.306400,0.948700 0.521700,-0.002964,-0.254400,0.222500,0.974900,0.000000 -0.397500,0.320600,0.739900,0.000000,0.107000,0.994300 0.236800,-0.012830,-0.755400,0.000000,0.350500,-0.936600 -0.540400,-0.135500,0.642100,-0.999000,-0.044820,0.000000 0.550300,-0.152600,-0.448900,0.221500,0.975200,0.000000 -0.465200,0.287100,0.742800,0.000000,0.064450,0.997900 0.212200,0.104000,0.284300,-0.000004,0.761400,-0.648200 -0.431300,0.032290,0.679000,0.000000,-0.354700,0.935000 0.473600,0.176900,0.739800,0.000000,0.079860,-0.996800 -0.473800,-0.246800,-0.668800,0.079910,-0.555200,0.827900 0.526100,-0.005332,0.563200,0.740500,0.672000,0.000000 0.459600,0.351600,0.731900,0.000000,-0.675300,-0.737500 0.186100,0.090080,0.274300,0.000000,0.494400,-0.869200 -0.177600,0.202300,0.678400,0.000000,0.112600,-0.993600 -0.570800,-0.211800,-0.777800,-0.988000,0.000000,-0.154600 0.550000,-0.240100,-0.076810,-0.092980,-0.995700,0.000000 0.550000,-0.240100,-0.296700,-0.092980,-0.995700,0.000000 0.131800,-0.181800,-0.757600,0.000018,-0.985900,-0.167500 0.008466,0.320600,0.739900,0.000000,0.107200,0.994200 0.296700,-0.003918,0.686100,-0.000043,0.966700,-0.256000 0.414400,0.304500,0.739400,0.000000,-0.086030,-0.996300 -0.474800,0.111100,0.516500,-0.936000,0.331800,0.117300 -0.490500,-0.014110,0.674600,-0.001448,0.915000,-0.403400 -0.540100,-0.051220,-0.575800,-0.983300,0.182100,0.000041 -0.542300,-0.235300,0.532100,0.968600,-0.248500,0.000000 -0.363700,0.227200,0.681700,0.000000,0.143200,-0.989700 0.037430,0.120100,0.514800,-0.560600,0.825400,0.066390 0.541300,-0.064590,-0.536400,0.991300,0.131500,0.000163 -0.194500,0.295500,0.742200,0.000000,0.074740,0.997200 0.348700,0.007285,0.714800,-0.310400,0.197900,0.929800 -0.244600,-0.004250,0.686100,0.000000,0.973200,-0.230100 0.522700,-0.182000,0.662400,0.107000,-0.727300,0.677900 0.033840,0.253200,0.744200,0.000000,0.045070,0.999000 -0.270600,0.185800,0.742500,0.000000,-0.088110,0.996100 -0.262200,0.360300,0.714500,0.000000,0.693600,-0.720400 -0.327000,0.091600,0.605600,0.000176,0.480300,0.877100 0.262200,0.322400,0.701800,-0.000007,0.268700,-0.963200 -0.536700,-0.035470,-0.745000,-0.968900,0.247200,-0.003356 0.228400,0.041470,0.678800,0.000000,0.057180,0.998400 0.118400,0.085340,0.271700,-0.000032,0.431200,-0.902300 0.570800,-0.169500,-0.068350,0.999900,-0.016450,-0.000001 0.544400,-0.239000,0.348900,-0.514100,-0.857700,0.000000 0.568700,-0.238800,0.397500,0.677000,-0.735900,0.000000 0.526300,-0.182100,0.286900,0.777800,-0.628500,0.000000 -0.493200,-0.385500,-0.708400,-0.834400,0.282800,-0.473200 0.372900,0.240200,0.683700,0.000000,0.162600,-0.986700 0.143800,0.348400,0.711600,0.010200,-0.526300,0.850300 -0.329800,0.279000,0.741200,0.000000,-0.053050,-0.998600 0.464500,0.123100,0.498000,0.156000,0.984600,0.078950 -0.141000,0.109300,0.576700,-0.006462,0.983000,0.183500 0.084590,0.101100,0.676100,0.000000,0.015100,0.999900 0.067680,0.270500,0.743900,0.000000,0.012830,0.999900 0.473600,0.051900,0.720900,0.000000,-0.246000,0.969300 0.380600,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.522200,-0.185400,-0.161400,-0.328500,-0.944500,0.000000 -0.499000,0.348600,0.711300,0.000000,-0.517200,0.855900 -0.448200,0.186300,0.678800,0.000017,-0.071990,0.997400 0.397500,-0.002667,0.701200,-0.003484,0.999900,-0.014820 0.355200,0.348700,0.711300,-0.001311,-0.518100,0.855300 0.177600,-0.389600,0.678200,0.000000,-0.160800,-0.987000 0.166300,-0.004592,0.713900,0.003788,0.708500,0.705700 -0.015170,0.050430,0.447600,0.999800,0.018600,-0.000409 -0.543600,-0.109800,-0.474300,-0.998000,-0.062850,-0.000033 0.526400,-0.182100,-0.584300,0.795300,-0.606300,0.000000 -0.304500,0.049840,0.678400,-0.000000,0.085030,0.996400 -0.191700,0.000887,0.610500,0.000944,0.663000,0.748600 0.236800,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.515900,-0.003000,-0.212100,0.030230,0.999500,0.000000 0.473600,-0.389600,0.715900,0.000002,-0.131200,0.991400 0.355200,-0.380900,0.715800,0.000000,0.005438,1.000000 0.211400,-0.237100,0.715800,-0.000000,-0.000059,1.000000 0.143800,-0.002833,0.126100,0.039200,0.998800,-0.029430 0.355200,-0.186000,0.371400,0.000000,-1.000000,0.000000 -0.448200,-0.003331,-0.203700,0.000000,1.000000,0.000000 0.135300,-0.186000,-0.626600,0.000000,-1.000000,0.000000 -0.287500,-0.186000,0.472900,0.000000,-1.000000,0.000000 -0.571500,-0.186400,0.253000,-1.000000,0.000000,0.000000 0.135300,-0.186000,0.379900,0.000000,-1.000000,0.000000 -0.515900,-0.186000,-0.330500,-0.040710,-0.999200,0.000000 0.355200,-0.186000,0.625200,0.000000,-1.000000,0.000000 -0.571500,-0.211800,-0.711100,-1.000000,0.000000,0.000000 0.570500,-0.211800,-0.601200,1.000000,0.000000,0.000000 0.570500,-0.211800,-0.702700,1.000000,0.000000,0.000000 -0.186100,-0.003331,-0.119100,0.000000,1.000000,0.000000 0.135300,-0.003331,-0.119100,0.000000,1.000000,0.000000 0.524400,-0.118700,0.715800,0.000000,0.000000,1.000000 -0.109900,-0.321700,0.715800,0.000000,0.000000,1.000000 0.414400,-0.186000,0.439100,0.000000,-1.000000,0.000000 0.135300,-0.186000,0.303800,0.000000,-1.000000,0.000000 0.313000,-0.186000,-0.212100,0.000000,-1.000000,0.000000 0.473600,-0.186000,-0.449000,0.000000,-1.000000,0.000000 0.355200,-0.237100,0.677900,0.000000,0.000000,-1.000000 -0.186100,-0.355500,0.677900,0.000000,0.000000,-1.000000 0.279100,-0.003331,0.210700,0.000000,1.000000,0.000000 0.431400,-0.186000,0.329200,0.000000,-1.000000,0.000000 -0.126800,-0.372500,0.677900,0.000000,0.000000,-1.000000 -0.571500,-0.211800,0.472900,-1.000000,0.000000,0.000000 -0.329800,-0.003331,0.176900,0.000000,1.000000,0.000000 -0.542600,-0.211800,-0.508200,1.000000,0.000000,0.000000 -0.338300,-0.186000,-0.406700,0.000000,-1.000000,0.000000 -0.321400,-0.355600,0.715800,0.000000,0.000000,1.000000 -0.245300,-0.186000,0.422200,0.000000,-1.000000,0.000000 0.355200,-0.186000,0.532100,0.000000,-1.000000,0.000000 -0.389000,-0.186000,-0.550400,0.000000,-1.000000,0.000000 -0.203000,-0.186000,0.532100,0.000000,-1.000000,0.000000 0.515900,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 0.169200,0.092850,0.676200,0.000000,-0.003474,1.000000 0.448300,0.355400,0.717100,0.000000,-0.902600,0.430500 -0.084570,0.151600,0.674400,-0.000024,0.047690,-0.998900 -0.093020,-0.003331,-0.432000,0.000000,1.000000,0.000000 -0.270600,-0.034160,0.715800,0.000000,0.000000,1.000000 -0.448200,-0.186000,-0.009150,0.000000,-1.000000,0.000000 -0.076100,-0.186000,-0.651900,0.000000,-1.000000,0.000000 -0.093040,-0.161000,0.716200,-0.003299,0.006576,1.000000 0.101500,-0.194900,0.715800,-0.000020,-0.000020,1.000000 0.448300,-0.034160,0.715800,0.000000,0.000000,1.000000 0.473600,-0.186000,-0.076810,0.000000,-1.000000,0.000000 -0.228300,-0.186000,-0.042980,0.000000,-1.000000,0.000000 0.016930,-0.003331,-0.449000,0.000000,1.000000,0.000000 -0.228300,-0.003331,-0.026070,0.000000,1.000000,0.000000 0.490600,-0.186000,0.058510,0.000000,-1.000000,0.000000 -0.262200,0.329700,0.736800,0.000000,-0.114800,-0.993400 -0.042270,-0.186000,0.371400,0.000000,-1.000000,0.000000 -0.346700,0.118000,0.673600,0.000000,0.003522,-1.000000 -0.422900,0.177800,0.678400,0.000000,-0.061740,0.998100 0.515900,-0.003004,-0.288300,-0.025750,0.999700,0.000000 -0.462900,-0.157000,-0.795400,-0.023450,0.537300,-0.843100 0.515900,-0.186000,-0.271300,0.041760,-0.999100,0.000000 -0.515900,-0.296400,0.715800,0.000000,0.000000,1.000000 0.355200,-0.186000,-0.110600,0.000000,-1.000000,0.000000 -0.448200,-0.003331,-0.449000,0.000000,1.000000,0.000000 0.499000,-0.186000,-0.229100,0.000000,-1.000000,0.000000 0.253700,-0.254100,0.677900,0.000000,0.000000,-1.000000 -0.389000,-0.186000,-0.728100,0.000000,-1.000000,0.000000 -0.431300,-0.135700,0.715800,0.000000,0.000000,1.000000 0.211500,-0.186000,0.210700,0.000000,-1.000000,0.000000 0.253700,-0.194900,0.715800,0.000000,0.000000,1.000000 0.211500,-0.186000,0.439100,0.000000,-1.000000,0.000000 0.135300,-0.003331,-0.491200,0.000000,1.000000,0.000000 0.253700,-0.186000,-0.694200,0.000000,-1.000000,0.000000 -0.406000,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.186100,-0.186000,0.278400,0.000000,-1.000000,0.000000 -0.507400,-0.186000,0.253000,0.000000,-1.000000,0.000000 -0.186100,-0.186000,-0.457400,0.000000,-1.000000,0.000000 -0.406000,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.541600,-0.194800,-0.415100,-1.000000,0.000000,0.000000 0.431400,-0.186000,0.566000,0.000000,-1.000000,0.000000 0.313000,-0.186000,0.591300,0.000000,-1.000000,0.000000 0.431400,-0.186000,0.642100,0.000000,-1.000000,0.000000 0.186100,-0.003331,-0.110600,0.000000,1.000000,0.000000 0.355200,-0.186000,0.312200,0.000000,-1.000000,0.000000 -0.228300,-0.186000,-0.152900,0.000000,-1.000000,0.000000 -0.389000,-0.186000,0.329200,0.000000,-1.000000,0.000000 0.372200,0.185300,0.740400,0.000000,0.069350,-0.997600 -0.084560,-0.186000,-0.186800,0.000000,-1.000000,0.000000 -0.448200,-0.126800,-0.767500,0.000000,-0.139100,-0.990300 -0.389000,0.218900,0.680500,0.000000,0.132500,-0.991200 -0.151500,0.141900,0.676300,0.000000,-0.027690,0.999600 0.408800,0.093340,0.607200,-0.000688,0.484200,0.874900 -0.405900,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.456700,-0.186000,-0.102200,0.000000,-1.000000,0.000000 0.472900,0.110500,0.509600,0.962200,0.272300,0.001224 -0.346800,0.211500,0.681600,0.000015,-0.100100,0.995000 0.203000,0.169200,0.677500,-0.000065,-0.109400,0.994000 -0.262200,-0.003331,-0.093730,0.000000,1.000000,0.000000 -0.059200,-0.304800,0.715800,0.000000,0.000000,1.000000 0.482100,-0.003331,-0.042980,0.000000,1.000000,0.000000 0.363700,-0.186000,-0.042980,0.000000,-1.000000,0.000000 -0.042270,-0.186000,-0.237500,0.000000,-1.000000,0.000000 0.076130,-0.186000,-0.474300,0.000000,-1.000000,0.000000 -0.499000,-0.003331,-0.034530,-0.000044,1.000000,0.000000 -0.571500,-0.211800,-0.076810,-1.000000,0.000000,0.000000 0.541600,-0.203300,-0.076810,-1.000000,0.000000,0.000000 -0.084560,-0.211800,-0.797100,0.000000,0.000000,-1.000000 0.067680,-0.177900,-0.797100,0.000000,0.000000,-1.000000 -0.571500,-0.194800,0.033140,-1.000000,0.000000,0.000000 -0.177600,-0.076450,0.715800,0.000000,0.000000,1.000000 -0.397500,-0.003331,0.041590,0.000000,1.000000,0.000000 -0.431300,-0.186000,0.066970,0.000000,-1.000000,0.000000 0.541600,-0.211800,-0.017610,-1.000000,0.000000,0.000000 0.372200,-0.060050,-0.767300,0.000000,0.144300,-0.989500 -0.016900,-0.203300,0.677900,0.000000,0.000000,-1.000000 -0.489600,-0.330200,-0.678600,-0.705200,0.000928,0.709000 -0.542300,-0.186400,-0.009152,0.999700,0.024580,0.000000 0.008473,-0.186000,0.100800,0.000000,-1.000000,0.000000 -0.372100,-0.003331,-0.017610,0.000000,1.000000,0.000000 -0.101500,-0.003331,0.033140,0.000000,1.000000,0.000000 0.016930,-0.186000,-0.618100,0.000000,-1.000000,0.000000 -0.414400,0.304500,0.739400,0.000000,-0.086030,-0.996300 -0.482100,0.176900,0.739800,0.000000,0.079860,-0.996800 0.219900,-0.002667,0.244600,-0.009750,0.999900,0.009771 -0.473600,-0.002667,-0.685800,-0.022830,0.999600,0.016290 -0.363700,-0.002667,-0.550500,0.022820,0.999600,-0.016280 -0.016900,-0.003331,-0.288300,0.000000,1.000000,0.000000 0.245300,0.287100,0.743100,0.000000,0.044330,0.999000 0.110000,-0.169500,0.715800,0.000000,0.000000,1.000000 0.067680,-0.186000,-0.668900,0.000000,-1.000000,0.000000 -0.304500,-0.186000,-0.051440,0.000000,-1.000000,0.000000 -0.363700,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.456700,-0.003331,0.083880,0.000000,1.000000,0.000000 0.262200,-0.186000,-0.068350,0.000000,-1.000000,0.000000 0.287600,-0.186000,-0.068350,0.000000,-1.000000,0.000000 0.456700,-0.186000,-0.026070,0.000000,-1.000000,0.000000 -0.304500,-0.003331,0.058510,0.000000,1.000000,0.000000 -0.219900,-0.186000,-0.076810,0.000000,-1.000000,0.000000 0.067670,-0.262500,0.715800,0.000000,0.000000,1.000000 -0.033820,-0.186000,-0.643500,0.000000,-1.000000,0.000000 0.321400,-0.003331,-0.059900,0.000000,1.000000,0.000000 -0.050730,-0.186000,0.320700,0.000000,-1.000000,0.000000 -0.076100,-0.186000,-0.542000,0.000000,-1.000000,0.000000 0.118400,0.270500,0.741600,0.000000,-0.042090,-0.999100 0.269500,0.110500,0.580100,-0.009288,0.981200,0.192500 -0.473600,-0.002999,-0.736500,-0.000013,0.999300,0.038290 0.118400,-0.003331,0.134600,-0.006475,1.000000,0.003224 -0.499000,-0.003331,-0.119100,-0.000044,1.000000,0.000000 -0.542600,-0.186400,0.185400,0.999700,0.024640,0.000000 0.245300,0.125400,0.464400,0.000036,0.999400,0.033790 0.236800,-0.245600,0.715800,-0.000000,-0.000059,1.000000 0.524400,-0.355500,0.715800,0.009871,0.019620,0.999800 0.549800,-0.347100,0.715800,-0.000020,-0.000020,1.000000 0.270700,-0.003331,0.625200,-0.000017,1.000000,-0.003915 0.025370,0.051520,0.719100,-0.000040,0.245800,-0.969300 0.507500,-0.003332,-0.000695,-0.019460,0.999800,0.000000 -0.397500,0.135000,0.675800,0.000000,-0.042420,0.999100 -0.507400,-0.186000,-0.558900,0.000000,-1.000000,0.000000 0.389100,-0.398700,0.692800,0.000000,-1.000000,-0.006052 0.439800,-0.186000,-0.694200,0.000000,-1.000000,0.000000 0.228400,-0.186000,-0.702700,0.000000,-1.000000,0.000000 0.448300,-0.003331,-0.136000,0.000000,1.000000,0.000000 0.169200,-0.186000,0.202300,0.000000,-1.000000,0.000000 -0.253700,-0.372500,0.715800,0.000000,0.000000,1.000000 0.245300,-0.296300,0.677900,0.000000,0.000000,-1.000000 -0.287600,-0.271000,0.715800,0.000000,0.000000,1.000000 0.177600,-0.152600,0.715800,0.000000,0.000000,1.000000 -0.372100,-0.003331,-0.355900,0.000000,1.000000,0.000000 0.456700,0.125700,0.430600,0.014120,0.999700,-0.018460 0.541600,-0.203300,-0.457400,-1.000000,0.000000,0.000000 0.135300,-0.003331,-0.465900,0.000000,1.000000,0.000000 0.270700,-0.186000,0.286900,0.000000,-1.000000,0.000000 -0.296000,-0.003331,-0.195200,0.000000,1.000000,0.000000 -0.542300,-0.220300,0.227700,0.999800,-0.016450,-0.006512 -0.456700,-0.186000,-0.432000,0.000000,-1.000000,0.000000 0.507500,-0.186400,0.715800,0.000000,0.000000,1.000000 -0.448200,-0.186000,0.591300,0.000000,-1.000000,0.000000 -0.363700,-0.003331,-0.381300,0.000000,1.000000,0.000000 -0.473600,-0.186000,-0.381300,0.000000,-1.000000,0.000000 0.465200,-0.186000,-0.643500,0.000000,-1.000000,0.000000 -0.363700,-0.003331,-0.432000,0.000000,1.000000,0.000000 0.304500,-0.186000,-0.457400,0.000000,-1.000000,0.000000 0.448300,-0.287900,0.715800,0.000000,0.000000,1.000000 0.515900,-0.186000,-0.482800,0.041760,-0.999100,0.000000 -0.296000,-0.186000,0.295300,0.000000,-1.000000,0.000000 -0.482100,-0.186000,0.126200,0.000000,-1.000000,0.000000 0.338300,-0.003331,0.210700,0.000000,1.000000,0.000000 -0.465200,-0.186000,-0.229100,0.000000,-1.000000,0.000000 -0.287500,-0.003331,0.219200,0.000000,1.000000,0.000000 -0.542600,-0.186400,-0.389800,0.999900,-0.014440,0.000000 -0.542600,-0.186400,-0.694200,1.000000,0.004786,0.000000 -0.186100,-0.186000,-0.719600,0.000000,-1.000000,0.000000 -0.321400,-0.186000,-0.195200,0.000000,-1.000000,0.000000 -0.355200,-0.003331,-0.279800,0.000000,1.000000,0.000000 0.482100,-0.347100,0.716200,0.006533,0.016390,0.999800 0.253700,-0.186000,-0.322100,0.000000,-1.000000,0.000000 0.287600,-0.186000,-0.389700,0.000000,-1.000000,0.000000 0.262200,-0.186000,0.506800,0.000000,-1.000000,0.000000 0.355200,-0.186000,-0.271300,0.000000,-1.000000,0.000000 -0.363700,-0.186000,0.566000,0.000000,-1.000000,0.000000 -0.228300,-0.186000,-0.389700,0.000000,-1.000000,0.000000 -0.571500,-0.169500,0.439100,-1.000000,0.003699,-0.000000 0.439800,-0.186000,-0.279800,0.000000,-1.000000,0.000000 -0.414400,-0.186000,0.498300,0.000000,-1.000000,0.000000 0.363700,-0.186000,0.396800,0.000000,-1.000000,0.000000 0.177600,-0.355500,0.677900,0.000000,0.000000,-1.000000 -0.482100,-0.003331,0.160000,0.000000,1.000000,0.000000 0.312900,-0.003331,-0.237500,0.000000,1.000000,0.000000 -0.143800,-0.186000,0.286900,0.000000,-1.000000,0.000000 0.135300,-0.211800,0.677900,0.000000,0.000000,-1.000000 0.110000,-0.364000,0.715800,0.000000,0.000000,1.000000 -0.389000,-0.186000,0.489900,0.000000,-1.000000,0.000000 -0.253700,-0.152600,0.715800,0.000000,0.000000,1.000000 -0.279100,-0.186000,0.591300,0.000000,-1.000000,0.000000 0.253700,-0.186000,0.363000,0.000000,-1.000000,0.000000 0.296000,-0.186000,-0.279800,0.000000,-1.000000,0.000000 0.490600,-0.003331,0.168500,0.000000,1.000000,0.000000 -0.118400,-0.003331,-0.313600,0.000000,1.000000,0.000000 0.101500,-0.186000,0.126200,0.000000,-1.000000,0.000000 0.118400,-0.186000,-0.415100,0.000000,-1.000000,0.000000 -0.126900,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.355200,-0.003331,-0.127600,0.000000,1.000000,0.000000 -0.456700,-0.003331,-0.119100,0.000000,1.000000,0.000000 -0.135300,-0.186000,0.109300,0.000000,-1.000000,0.000000 0.287600,-0.186000,-0.127600,0.000000,-1.000000,0.000000 0.135300,-0.186000,0.464500,0.000000,-1.000000,0.000000 0.397500,-0.003331,0.202300,0.000000,1.000000,0.000000 -0.211400,-0.186000,0.346100,0.000000,-1.000000,0.000000 -0.236800,-0.186000,-0.474300,0.000000,-1.000000,0.000000 -0.262200,-0.177900,-0.797100,0.000000,0.000000,-1.000000 -0.541300,-0.177900,-0.797100,-0.003547,-0.000201,-1.000000 -0.372100,-0.186000,-0.178300,0.000000,-1.000000,0.000000 -0.571500,-0.211800,-0.152900,-1.000000,0.000000,0.000000 -0.194500,-0.186000,-0.542000,0.000000,-1.000000,0.000000 -0.346800,-0.003331,0.151500,0.000000,1.000000,0.000000 0.541600,-0.211800,0.566000,-1.000000,0.000000,0.000000 -0.542600,-0.211800,-0.550400,1.000000,0.000000,0.000000 0.143800,-0.186000,0.278400,0.000000,-1.000000,0.000000 -0.152200,-0.220200,0.715800,0.000000,0.000000,1.000000 -0.169100,-0.186000,-0.398200,0.000000,-1.000000,0.000000 -0.228300,-0.186000,0.100800,0.000000,-1.000000,0.000000 -0.414400,-0.186000,-0.212100,0.000000,-1.000000,0.000000 -0.414400,-0.003331,-0.212100,0.000000,1.000000,0.000000 -0.389100,-0.245600,0.715800,0.000000,0.000000,1.000000 0.203000,-0.186400,-0.797100,0.000000,0.000000,-1.000000 -0.228300,-0.186000,-0.719600,0.000000,-1.000000,0.000000 0.152300,-0.186000,0.185400,0.000000,-1.000000,0.000000 0.490600,-0.254100,0.677900,0.000000,0.000000,-1.000000 0.236800,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.160700,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.372100,-0.211800,-0.797100,0.000000,0.000000,-1.000000 -0.465200,-0.135700,0.715800,0.000000,0.000000,1.000000 -0.203000,-0.186000,0.210700,0.000000,-1.000000,0.000000 -0.135300,-0.003331,0.143100,0.000000,1.000000,0.000000 0.541600,-0.220200,-0.220600,-1.000000,0.000000,0.000000 -0.456700,-0.177900,0.715800,0.000000,0.000000,1.000000 -0.194500,-0.186000,0.227700,0.000000,-1.000000,0.000000 -0.439800,-0.003331,0.219200,0.000000,1.000000,0.000000 -0.236800,-0.186000,-0.229100,0.000000,-1.000000,0.000000 -0.490500,-0.003341,0.616800,-0.063210,0.989900,0.127100 0.279100,-0.127200,0.715800,0.000000,0.000000,1.000000 -0.329800,-0.003331,-0.702700,0.000000,1.000000,0.000000 0.160700,-0.262500,0.677900,0.000000,0.000000,-1.000000 -0.236800,-0.003331,-0.186800,0.000000,1.000000,0.000000 0.406000,-0.321700,0.677900,0.000000,0.000000,-1.000000 0.245300,-0.186000,-0.186800,0.000000,-1.000000,0.000000 0.490600,-0.186000,0.549100,0.000000,-1.000000,0.000000 0.143800,-0.003331,-0.178300,0.000000,1.000000,0.000000 0.499000,-0.186000,0.270000,0.000000,-1.000000,0.000000 -0.253700,-0.186000,-0.279800,0.000000,-1.000000,0.000000 -0.253700,-0.186000,0.464500,0.000000,-1.000000,0.000000 0.236800,-0.186000,-0.271300,0.000000,-1.000000,0.000000 0.211500,-0.003331,-0.262900,0.000000,1.000000,0.000000 0.152300,-0.186000,-0.651900,0.000000,-1.000000,0.000000 0.177600,-0.186000,0.540600,0.000000,-1.000000,0.000000 -0.439800,-0.296400,0.715800,0.000000,0.000000,1.000000 0.414400,-0.186000,-0.719600,0.000000,-1.000000,0.000000 -0.380600,-0.186000,0.540600,0.000000,-1.000000,0.000000 -0.296000,-0.186000,0.405300,0.000000,-1.000000,0.000000 -0.177600,-0.186000,0.540600,0.000000,-1.000000,0.000000 -0.135300,-0.186000,-0.575800,0.000000,-1.000000,0.000000 0.473600,-0.186000,-0.618100,0.000000,-1.000000,0.000000 -0.143800,-0.186000,-0.609600,0.000000,-1.000000,0.000000 0.338300,-0.003331,-0.262900,0.000000,1.000000,0.000000 -0.482100,-0.003331,-0.601200,0.000000,1.000000,0.000000 0.262200,-0.186000,-0.542000,0.000000,-1.000000,0.000000 0.406000,-0.186000,-0.406700,0.000000,-1.000000,0.000000 0.194500,-0.003331,-0.525100,0.000000,1.000000,0.000000 -0.118400,-0.186000,-0.220600,0.000000,-1.000000,0.000000 0.228400,-0.186400,0.715800,0.000000,0.000000,1.000000 -0.431300,-0.186000,-0.102200,0.000000,-1.000000,0.000000 0.228400,-0.003331,0.143100,0.000000,1.000000,0.000000 0.372200,-0.186000,-0.322100,0.000000,-1.000000,0.000000 -0.507400,-0.186000,0.472900,0.000000,-1.000000,0.000000 -0.448200,-0.003331,-0.178300,0.000000,1.000000,0.000000 0.236800,-0.186000,-0.508200,0.000000,-1.000000,0.000000 -0.465200,-0.003331,-0.271300,0.000000,1.000000,0.000000 0.389100,-0.186000,-0.525100,0.000000,-1.000000,0.000000 -0.507400,-0.003332,-0.330500,0.019630,0.999800,0.000000 0.093050,-0.186000,0.016220,0.000000,-1.000000,0.000000 -0.025360,-0.003331,-0.017610,0.000000,1.000000,0.000000 0.033840,-0.076450,0.715800,0.000000,0.000000,1.000000 -0.016900,-0.003331,0.050050,0.000000,1.000000,0.000000 0.000005,-0.093370,0.715800,0.000000,0.000000,1.000000 0.059920,0.343400,0.707900,0.000000,0.295900,-0.955200 -0.042280,-0.003331,0.075420,0.000000,1.000000,0.000000 0.033840,0.168400,0.739100,0.000000,0.091840,-0.995800 0.177600,-0.101800,0.715800,0.000000,0.000000,1.000000 -0.050730,-0.186000,0.041600,0.000000,-1.000000,0.000000 0.067680,-0.186000,-0.076810,0.000000,-1.000000,0.000000 -0.093020,-0.186000,0.303800,0.000000,-1.000000,0.000000 -0.101500,-0.186000,-0.254400,0.000000,-1.000000,0.000000 0.304500,0.134900,0.673800,0.000000,0.024070,-0.999700 -0.542600,-0.211800,-0.000696,0.999800,-0.019670,0.000000 0.549800,-0.076450,0.715800,0.000000,0.000000,1.000000 0.253700,-0.186000,-0.102200,0.000000,-1.000000,0.000000 -0.270700,-0.110300,0.716300,-0.003281,-0.013090,0.999900 -0.093020,-0.194800,-0.797100,0.000000,0.000000,-1.000000 -0.033820,-0.186000,0.456000,0.000000,-1.000000,0.000000 0.465200,-0.093370,0.715800,0.000000,0.000000,1.000000 0.169200,-0.186000,-0.093730,0.000000,-1.000000,0.000000 0.076130,-0.186000,0.506800,0.000000,-1.000000,0.000000 -0.059190,-0.003331,-0.296700,0.000000,1.000000,0.000000 -0.219900,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.329900,-0.003331,0.024680,0.000000,1.000000,0.000000 0.050760,-0.186000,0.472900,0.000000,-1.000000,0.000000 0.186100,-0.186000,-0.042980,0.000000,-1.000000,0.000000 0.033840,-0.003331,-0.127600,0.000000,1.000000,0.000000 0.033840,-0.003331,-0.347500,0.000000,1.000000,0.000000 0.110000,-0.003331,-0.051440,0.000000,1.000000,0.000000 -0.296000,-0.084910,0.716300,0.003287,0.013080,0.999900 0.448300,-0.186000,-0.051440,0.000000,-1.000000,0.000000 -0.287500,-0.003331,0.024680,0.000000,1.000000,0.000000 0.059220,-0.003331,-0.567400,0.000000,1.000000,0.000000 -0.050730,-0.186000,0.193800,0.000000,-1.000000,0.000000 0.050760,-0.186000,0.379900,0.000000,-1.000000,0.000000 0.219900,-0.084910,0.715800,0.000000,0.000000,1.000000 -0.380600,-0.003331,-0.093730,0.000000,1.000000,0.000000 -0.363700,-0.186000,0.041600,0.000000,-1.000000,0.000000 -0.397500,-0.186000,0.041600,0.000000,-1.000000,0.000000 -0.380600,-0.003331,0.083880,0.000000,1.000000,0.000000 -0.025360,-0.186000,0.160000,0.000000,-1.000000,0.000000 0.076130,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.346800,-0.003331,0.092340,0.000000,1.000000,0.000000 0.482100,-0.186000,0.041600,0.000000,-1.000000,0.000000 0.363700,-0.003331,0.024680,0.000000,1.000000,0.000000 -0.067650,-0.003331,-0.347500,0.000000,1.000000,0.000000 -0.338300,-0.003331,-0.026070,0.000000,1.000000,0.000000 0.482100,-0.003331,0.058510,0.000000,1.000000,0.000000 0.296000,-0.186000,0.058510,0.000000,-1.000000,0.000000 0.050760,-0.186000,0.117700,0.000000,-1.000000,0.000000 0.067680,-0.186000,0.253000,0.000000,-1.000000,0.000000 0.253700,-0.084910,0.715800,0.000000,0.000000,1.000000 0.050760,-0.003331,0.185400,0.000000,1.000000,0.000000 0.160700,-0.186000,0.058510,0.000000,-1.000000,0.000000 -0.304500,-0.003331,-0.042980,0.000000,1.000000,0.000000 -0.515900,0.203100,0.680600,0.000000,-0.114000,0.993500 0.000015,-0.186000,0.371400,0.000000,-1.000000,0.000000 -0.008445,-0.003331,-0.262900,0.000000,1.000000,0.000000 0.008473,-0.186000,0.185400,0.000000,-1.000000,0.000000 0.008473,-0.186000,-0.719600,0.000000,-1.000000,0.000000 -0.008443,-0.186000,-0.195200,0.000000,-1.000000,0.000000 -0.473600,-0.003331,0.007763,0.000000,1.000000,0.000000 0.499000,-0.003331,0.083880,0.000035,1.000000,0.000000 0.093050,0.125700,0.447500,0.000000,1.000000,0.008749 -0.016900,-0.003331,-0.440500,0.000000,1.000000,0.000000 -0.042270,-0.186000,-0.567400,0.000000,-1.000000,0.000000 -0.067650,-0.186000,-0.406700,0.000000,-1.000000,0.000000 -0.025360,-0.364000,0.677900,0.000000,0.000000,-1.000000 -0.050730,-0.003331,0.100800,0.000000,1.000000,0.000000 0.570800,-0.186400,0.075430,0.999800,0.019670,-0.000002 -0.236800,-0.003331,0.033140,0.000000,1.000000,0.000000 0.042300,-0.186000,0.354500,0.000000,-1.000000,0.000000 0.355200,-0.003331,-0.042980,0.000000,1.000000,0.000000 0.076130,-0.186000,0.270000,0.000000,-1.000000,0.000000 -0.312900,-0.186000,0.050050,0.000000,-1.000000,0.000000 0.287600,-0.051080,0.715800,0.000000,0.000000,1.000000 -0.338300,-0.186000,0.075430,0.000000,-1.000000,0.000000 0.541600,-0.186400,-0.059890,-1.000000,0.004909,0.000000 0.101500,-0.186000,-0.423600,0.000000,-1.000000,0.000000 0.101500,-0.186000,-0.457400,0.000000,-1.000000,0.000000 0.093050,-0.003331,-0.516600,0.000000,1.000000,0.000000 0.093050,-0.262500,0.677900,0.000000,0.000000,-1.000000 -0.490500,-0.186000,0.075430,0.000000,-1.000000,0.000000 0.093050,-0.313300,0.677900,0.000000,0.000000,-1.000000 0.439800,0.160000,0.738200,0.000000,0.103400,-0.994600 0.008472,-0.002999,0.692800,0.000000,0.994600,-0.104100 0.539800,-0.135400,-0.212100,0.999000,-0.044040,0.000000 0.033840,-0.003331,0.633600,0.000000,1.000000,0.000036 -0.076100,-0.186000,0.523700,0.000000,-1.000000,0.000000 0.067680,-0.186000,-0.550400,0.000000,-1.000000,0.000000 0.042300,-0.186000,-0.609600,0.000000,-1.000000,0.000000 0.406000,-0.186000,0.058510,0.000000,-1.000000,0.000000 -0.228300,-0.186000,0.024680,0.000000,-1.000000,0.000000 -0.296000,-0.025700,0.715800,0.000000,0.000059,1.000000 0.287600,-0.003331,-0.068360,0.000000,1.000000,0.000000 -0.059190,-0.186000,0.176900,0.000000,-1.000000,0.000000 0.067670,-0.003331,0.168500,0.000000,1.000000,0.000000 -0.482100,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.042300,-0.003331,-0.237500,0.000000,1.000000,0.000000 -0.152200,-0.186000,0.058510,0.000000,-1.000000,0.000000 0.042300,-0.003332,-0.728000,0.000000,0.999800,0.019670 0.076130,-0.003331,-0.702700,0.000000,1.000000,0.000000 0.067680,-0.186000,-0.702700,0.000000,-1.000000,0.000000 -0.177600,0.090240,0.273600,0.000000,0.514600,-0.857400 0.008471,-0.003331,0.185400,0.000000,1.000000,0.000000 -0.473600,-0.186000,-0.000693,0.000000,-1.000000,0.000000 0.025380,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.025360,-0.186000,0.117700,0.000000,-1.000000,0.000000 -0.109900,-0.003331,-0.017610,0.000000,1.000000,0.000000 -0.431300,-0.186000,0.007765,0.000000,-1.000000,0.000000 0.025390,-0.330200,0.677900,0.000000,0.000000,-1.000000 -0.067650,-0.003331,-0.195200,0.000000,1.000000,0.000000 -0.262200,-0.003331,-0.000695,0.000000,1.000000,0.000000 -0.050740,-0.161000,0.716000,0.009796,0.019670,0.999800 0.406000,-0.186000,-0.068350,0.000000,-1.000000,0.000000 0.076130,-0.003331,-0.575800,0.000000,1.000000,0.000000 0.067670,-0.003331,-0.592700,0.000000,1.000000,0.000000 -0.050730,-0.003331,0.193800,0.000000,1.000000,0.000000 -0.135300,-0.003331,0.041590,0.000000,1.000000,0.000000 0.033850,-0.186000,-0.195200,0.000000,-1.000000,0.000000 0.050760,-0.003331,-0.169800,0.000000,1.000000,0.000000 -0.084560,-0.186000,-0.389700,0.000000,-1.000000,0.000000 -0.270600,-0.003331,-0.034530,0.000000,1.000000,0.000000 0.270700,-0.186000,0.083880,0.000000,-1.000000,0.000000 0.033840,-0.003331,-0.161400,0.000000,1.000000,0.000000 0.101500,-0.003331,-0.305200,0.000000,1.000000,0.000000 -0.093020,-0.186000,0.066970,0.000000,-1.000000,0.000000 -0.109900,-0.186000,-0.042980,0.000000,-1.000000,0.000000 -0.549100,0.141900,0.676200,-0.017930,-0.044680,0.998800 0.536100,-0.035640,-0.618100,0.969400,0.245400,0.000000 0.194500,0.124800,0.405400,0.000000,0.998500,-0.054830 -0.558300,-0.127200,0.678000,-0.162800,-0.027700,-0.986300 -0.499000,-0.003331,0.151500,-0.000044,1.000000,0.000000 0.515900,-0.003004,-0.127600,-0.025750,0.999700,0.000000 0.515900,-0.003003,-0.702700,-0.027860,0.999600,0.000639 0.570800,-0.203300,0.143100,1.000000,0.000000,0.000000 0.211500,0.125700,0.447500,0.000000,1.000000,0.008749 -0.312900,0.124100,0.456000,0.009887,0.999700,0.023930 0.136000,-0.004251,0.686100,-0.010100,0.966300,-0.257000 0.270700,-0.271000,0.716000,0.009795,0.019670,0.999800 -0.329800,-0.003331,-0.449000,0.000000,1.000000,0.000000 0.169200,-0.003000,0.160000,0.042520,0.998400,-0.036010 -0.558200,0.312300,0.740900,0.024840,0.092940,0.995400 0.439800,-0.347100,0.677900,0.000000,0.000000,-1.000000 0.515900,-0.186000,0.193800,0.052520,-0.998600,0.000000 -0.346800,-0.186000,-0.254400,0.000000,-1.000000,0.000000 0.203000,-0.347100,0.677900,0.000000,0.000000,-1.000000 0.507500,-0.186000,-0.660400,0.000000,-1.000000,0.000000 0.524400,-0.355500,0.677900,0.000000,0.000000,-1.000000 -0.397500,-0.003333,-0.567300,-0.029540,0.999400,0.019680 -0.177600,-0.186000,0.515200,0.000000,-1.000000,0.000000 -0.414400,-0.271000,0.715800,0.000000,0.000000,1.000000 0.101500,-0.186000,0.582900,0.000000,-1.000000,0.000000 0.304500,-0.186000,-0.533500,0.000000,-1.000000,0.000000 -0.414400,-0.186000,0.557500,0.000000,-1.000000,0.000000 0.329900,-0.186000,-0.525100,0.000000,-1.000000,0.000000 0.262200,-0.186000,-0.651900,0.000000,-1.000000,0.000000 0.338300,-0.186000,0.523700,0.000000,-1.000000,0.000000 0.448300,-0.233400,-0.694300,0.030410,0.999100,-0.030410 0.160700,-0.003331,-0.508200,0.000000,1.000000,0.000000 -0.372100,-0.186000,-0.533500,0.000000,-1.000000,0.000000 -0.541300,-0.347100,0.715800,0.000000,0.000000,1.000000 -0.169100,-0.186000,-0.592700,0.000000,-1.000000,0.000000 0.363700,-0.186000,0.515200,0.000000,-1.000000,0.000000 0.406000,-0.186000,0.413700,0.000000,-1.000000,0.000000 0.439800,-0.186000,-0.550400,0.000000,-1.000000,0.000000 -0.346800,-0.228700,0.715800,0.000000,0.000000,1.000000 -0.571500,-0.169500,0.659000,-0.997100,0.004343,-0.075490 -0.160700,-0.186000,0.405300,0.000000,-1.000000,0.000000 -0.160700,-0.245600,0.715800,0.000000,0.000000,1.000000 -0.482100,-0.211800,-0.768300,0.000000,-0.000059,1.000000 0.135300,-0.186000,0.582900,0.000000,-1.000000,0.000000 -0.507500,-0.228700,0.715800,0.000000,0.000000,1.000000 -0.211400,-0.186000,0.557500,0.000000,-1.000000,0.000000 0.431400,-0.186000,-0.136000,0.000000,-1.000000,0.000000 -0.473600,-0.003331,0.210700,0.000000,1.000000,0.000000 -0.211400,-0.003331,0.185400,0.000000,1.000000,0.000000 0.515900,-0.194800,-0.797100,0.000000,0.000000,-1.000000 0.541600,-0.220200,-0.508200,-1.000000,0.000000,0.000000 -0.397500,-0.220200,0.677900,0.000000,0.000000,-1.000000 -0.143800,-0.003331,-0.136000,0.000000,1.000000,0.000000 0.126900,-0.237100,0.677900,0.000000,0.000000,-1.000000 -0.160700,-0.186000,-0.558900,0.000000,-1.000000,0.000000 -0.380600,-0.186000,-0.127600,0.000000,-1.000000,0.000000 -0.236800,-0.211800,-0.768300,0.000000,-0.000059,1.000000 -0.571500,-0.211800,0.176900,-1.000000,0.000000,0.000000 -0.542600,-0.220200,-0.525100,1.000000,-0.000059,0.000000 -0.211400,-0.186000,0.261500,0.000000,-1.000000,0.000000 0.186100,-0.003331,0.109300,0.000000,1.000000,0.000000 0.118400,-0.347100,0.715800,0.000000,0.000000,1.000000 0.110000,-0.186000,-0.296700,0.000000,-1.000000,0.000000 0.414400,-0.003331,-0.110600,0.000000,1.000000,0.000000 0.465200,-0.186000,-0.102200,0.000000,-1.000000,0.000000 -0.380600,-0.186000,-0.508200,0.000000,-1.000000,0.000000 -0.194500,-0.003331,-0.499700,0.000000,1.000000,0.000000 0.439800,-0.186000,-0.339000,0.000000,-1.000000,0.000000 0.313000,-0.186000,-0.719600,0.000000,-1.000000,0.000000 0.245300,-0.003331,-0.355900,0.000000,1.000000,0.000000 -0.473600,-0.186000,0.447600,0.000000,-1.000000,0.000000 0.346800,-0.262500,0.677900,0.000000,0.000000,-1.000000 0.296000,-0.003331,-0.423600,0.000000,1.000000,0.000000 -0.346800,-0.186000,0.303800,0.000000,-1.000000,0.000000 -0.363700,-0.003331,-0.186800,0.000000,1.000000,0.000000 0.253700,-0.003331,-0.381300,0.000000,1.000000,0.000000 0.279100,-0.186000,-0.702700,0.000000,-1.000000,0.000000 0.194500,-0.186000,0.506800,0.000000,-1.000000,0.000000 0.473600,-0.186000,-0.482800,0.000000,-1.000000,0.000000 0.380600,-0.186000,-0.567400,0.000000,-1.000000,0.000000 -0.312900,-0.186000,0.320700,0.000000,-1.000000,0.000000 0.431400,-0.186000,-0.491200,0.000000,-1.000000,0.000000 0.329900,-0.186000,-0.677300,0.000000,-1.000000,0.000000 -0.571500,-0.220200,-0.694200,-1.000000,-0.000178,0.000000 0.570500,-0.178000,0.625200,0.999800,-0.019680,0.000000 -0.143800,-0.003331,-0.575800,0.000000,1.000000,0.000000 -0.448200,-0.186000,-0.736500,0.000000,-1.000000,-0.001680 0.456700,-0.003331,-0.279800,0.000000,1.000000,0.000000 0.380600,-0.194900,0.715800,0.000000,0.000000,1.000000 -0.473600,-0.296300,0.677900,0.000000,0.000000,-1.000000 -0.287500,-0.003332,-0.728000,0.000000,0.999800,0.019670 -0.439800,-0.003331,-0.305200,0.000000,1.000000,0.000000 0.507500,-0.296300,0.677900,0.000000,0.000000,-1.000000 0.397500,-0.313200,0.715800,0.009871,0.019620,0.999800 0.321400,-0.186000,-0.161400,0.000000,-1.000000,0.000000 0.296000,-0.186000,0.540600,0.000000,-1.000000,0.000000 -0.253700,-0.186000,-0.398200,0.000000,-1.000000,0.000000 0.422900,-0.262500,0.677900,0.000000,0.000000,-1.000000 0.126900,-0.186000,-0.237500,0.000000,-1.000000,0.000000 -0.355200,-0.003331,0.202300,0.000000,1.000000,0.000000 0.236800,-0.186000,0.278400,0.000000,-1.000000,0.000000 -0.186100,-0.186000,0.160000,0.000000,-1.000000,0.000000 0.456700,-0.186000,-0.423600,0.000000,-1.000000,0.000000 -0.482100,-0.186000,0.464500,0.000000,-1.000000,0.000000 0.160700,-0.003331,-0.322100,0.000000,1.000000,0.000000 -0.571500,-0.228600,0.244600,-1.000000,-0.005917,0.000000 0.346800,-0.003331,-0.372800,0.000000,1.000000,0.000000 0.296000,-0.186000,0.422200,0.000000,-1.000000,0.000000 -0.245300,-0.003331,-0.296700,0.000000,1.000000,0.000000 0.203000,-0.186000,0.566000,0.000000,-1.000000,0.000000 0.152200,-0.161000,0.715800,0.000000,0.000000,1.000000 -0.152200,-0.003331,-0.491200,0.000000,1.000000,0.000000 -0.372100,-0.186000,-0.491200,0.000000,-1.000000,0.000000 0.499000,-0.186000,0.244600,0.000000,-1.000000,0.000000 -0.439800,-0.186000,0.176900,0.000000,-1.000000,0.000000 0.329900,-0.186000,0.244600,0.000000,-1.000000,0.000000 0.126900,-0.186000,-0.482800,0.000000,-1.000000,0.000000 -0.473600,-0.003331,-0.330500,0.000000,1.000000,0.000000 -0.541300,-0.152600,0.715800,0.000000,0.000000,1.000000 -0.279100,-0.186000,0.456000,0.000000,-1.000000,0.000000 -0.372100,-0.186000,0.168500,0.000000,-1.000000,0.000000 -0.262200,-0.003331,-0.212100,0.000000,1.000000,0.000000 -0.169100,-0.003331,0.253000,0.000000,1.000000,0.003590 -0.279100,-0.186000,0.371400,0.000000,-1.000000,0.000000 -0.363700,-0.245600,0.677900,0.000000,0.000000,-1.000000 -0.473600,-0.220200,0.715800,0.000000,0.000000,1.000000 -0.152200,-0.186000,-0.474300,0.000000,-1.000000,0.000000 -0.380600,-0.186400,-0.797100,0.000000,0.000000,-1.000000 0.186100,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 0.482100,-0.186000,-0.169800,0.000000,-1.000000,0.000000 -0.219900,0.124200,0.430700,0.000000,0.999900,-0.014120 -0.571500,-0.220200,-0.491200,-1.000000,-0.000178,0.000000 -0.177600,-0.186000,-0.313600,0.000000,-1.000000,0.000000 0.177600,-0.228700,0.677900,0.000000,0.000000,-1.000000 0.439800,-0.186000,0.354500,0.000000,-1.000000,0.000000 -0.270600,-0.186000,0.270000,0.000000,-1.000000,0.000000 -0.346800,-0.177900,0.715800,0.000000,0.000000,1.000000 -0.118400,-0.186000,-0.330500,0.000000,-1.000000,0.000000 -0.473600,-0.003331,-0.169800,0.000000,1.000000,0.000000 0.177600,-0.003331,-0.355900,0.000000,1.000000,0.000000 0.499000,-0.186000,-0.262900,0.000000,-1.000000,0.000000 -0.542300,-0.194900,0.117700,0.999800,0.019570,0.000000 0.160700,-0.003331,0.227700,0.000000,1.000000,0.000000 -0.473600,-0.003331,0.625200,0.000438,1.000000,-0.003344 0.448300,-0.003331,-0.203700,0.000000,1.000000,0.000000 0.422900,-0.003331,-0.685800,0.000000,1.000000,0.000000 -0.186100,0.124200,0.430700,0.000000,0.999900,-0.014120 0.482100,-0.003331,-0.609700,0.000000,1.000000,0.000000 -0.338300,-0.186000,-0.635000,0.000000,-1.000000,0.000000 0.439800,-0.003331,-0.626600,0.000000,1.000000,0.000000 -0.499000,-0.003331,-0.550400,-0.000044,1.000000,0.000000 -0.186100,-0.186000,-0.288300,0.000000,-1.000000,0.000000 0.152200,-0.127200,0.715800,0.000000,0.000000,1.000000 -0.363700,-0.003331,-0.609700,0.000000,1.000000,0.000000 -0.329800,-0.186000,-0.694200,0.000000,-1.000000,0.000000 -0.296000,-0.186000,-0.702700,0.000000,-1.000000,0.000000 0.194500,-0.003331,-0.685800,0.000000,1.000000,0.000000 -0.143800,-0.313300,0.715800,0.000000,0.000000,1.000000 -0.499000,-0.186000,-0.322100,0.000000,-1.000000,0.000000 0.406000,-0.003331,-0.609700,0.000000,1.000000,0.000000 -0.219900,-0.186000,-0.694200,0.000000,-1.000000,0.000000 -0.118400,-0.186000,-0.711100,0.000000,-1.000000,0.000000 0.329900,-0.186000,0.143100,0.000000,-1.000000,0.000000 0.186100,-0.186000,-0.144500,0.000000,-1.000000,0.000000 -0.253700,-0.194900,0.715800,0.000000,0.000000,1.000000 -0.389000,-0.003331,-0.271300,0.000000,1.000000,0.000000 0.287600,-0.186000,-0.339000,0.000000,-1.000000,0.000000 0.372200,-0.186000,0.439100,0.000000,-1.000000,0.000000 -0.448200,-0.313300,0.677900,0.000000,0.000000,-1.000000 0.160700,-0.330200,0.677900,0.000000,0.000000,-1.000000 -0.101500,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.456000,0.050380,0.617600,0.000000,-0.002265,1.000000 0.076130,0.119700,0.531200,0.000000,0.990700,0.135800 -0.033810,0.337200,0.737900,0.000000,0.129100,0.991600 0.304500,0.124800,0.405400,0.000000,0.998500,-0.054830 -0.544000,-0.085270,0.608300,-0.999300,0.038670,0.000000 0.541200,-0.063740,0.630800,0.991200,0.132000,0.000011 0.304500,0.246000,0.686400,-0.000040,-0.190300,0.981700 0.042310,-0.068310,-0.768400,0.000000,0.109300,-0.994000 -0.118400,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 -0.329800,0.135800,0.737400,0.000000,-0.135100,0.990800 0.033860,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 -0.093020,-0.003331,-0.110600,0.000000,1.000000,0.000000 0.016790,0.077610,0.566000,-0.941700,0.336500,0.000000 -0.312900,0.320600,0.739900,0.000000,0.107000,0.994300 0.321400,0.160700,0.740300,0.000000,-0.102800,0.994700 -0.076110,0.123000,0.481200,0.000000,0.998100,0.061830 0.236800,0.121800,0.514600,0.003311,0.993600,0.112600 0.397500,0.122100,0.371900,0.000000,0.994500,-0.104800 0.465200,0.194000,0.677600,0.000000,0.100600,-0.994900 -0.160700,0.121500,0.380300,0.000000,0.995900,-0.090510 0.338300,-0.060050,-0.767300,0.000000,0.144300,-0.989500 0.025390,-0.194900,-0.768000,0.000000,0.005795,1.000000 -0.186100,0.115000,0.329700,0.000000,0.986000,-0.166700 0.329900,0.109600,0.675900,0.000000,0.008510,1.000000 -0.346000,0.240200,0.683700,0.000000,0.162600,-0.986700 -0.363700,0.122300,0.388700,0.000000,0.997000,-0.077480 -0.118400,0.122300,0.388700,0.000000,0.997000,-0.077480 -0.533300,-0.232000,-0.626600,0.388900,0.921100,-0.015140 0.304500,-0.178100,0.678000,0.000000,-0.230700,-0.973000 0.499000,-0.003331,0.320700,-0.004249,1.000000,0.000000 -0.542300,-0.194900,-0.110600,0.999800,-0.019630,0.000000 0.570500,-0.194800,0.523700,1.000000,-0.000059,-0.000000 -0.321400,0.059830,0.722800,-0.009803,-0.220500,0.975300 -0.219900,0.114700,0.329700,-0.009872,0.987600,-0.156800 -0.067650,-0.211800,-0.768300,0.000000,0.000000,1.000000 0.279100,0.219600,0.682900,0.000106,-0.107800,0.994200 0.431400,0.125200,0.413800,0.000000,0.999100,-0.042380 -0.556600,0.246500,0.742500,0.152400,-0.017140,-0.988200 0.566600,0.101700,0.732500,0.010750,-0.162400,0.986700 -0.372100,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.544000,-0.085270,-0.474300,-0.999200,0.038890,0.000002 -0.287500,0.143200,0.674100,0.000000,0.035620,-0.999400 -0.544100,-0.093450,0.566000,-1.000000,0.004023,0.000001 -0.389000,0.123700,0.413800,0.000000,0.999200,-0.039650 -0.126900,0.123700,0.413800,0.000000,0.999200,-0.039650 -0.515900,-0.110200,-0.769200,-0.000002,-0.067990,-0.997700 0.539800,-0.135400,-0.372800,0.999000,-0.044040,0.000000 -0.219900,-0.093390,-0.769800,0.000000,0.004040,-1.000000 -0.544100,-0.093450,0.066960,-1.000000,0.003981,0.000019 0.101500,0.177200,0.676000,0.000003,0.082220,-0.996600 -0.540900,-0.143700,-0.313600,-0.967400,0.253100,0.000000 0.169900,0.246100,0.684700,0.000000,0.168100,-0.985800 0.544100,-0.093450,0.066960,0.999900,-0.016240,0.000000 0.129700,0.078810,0.674500,0.000000,-0.054110,-0.998500 0.543300,-0.109800,0.582900,0.996400,-0.085300,0.000000 0.543700,-0.101600,0.405300,0.998700,-0.051380,0.000000 0.544000,-0.085260,0.176900,0.999300,0.038050,0.000000 -0.544100,-0.093450,0.193800,-1.000000,0.004023,0.000001 -0.544000,-0.085270,-0.558900,-0.999200,0.038750,0.000021 0.473700,0.312900,0.738700,0.000000,-0.097940,-0.995200 -0.236800,0.101300,0.673700,0.000000,-0.018670,-0.999800 -0.059200,0.121500,0.380300,0.000071,0.995900,-0.090520 -0.143800,0.185800,0.742500,-0.000025,-0.088070,0.996100 0.543700,-0.101700,-0.508200,0.998700,-0.051490,0.000002 -0.169100,0.322700,0.704000,0.000000,-0.292500,0.956300 -0.076100,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 -0.456700,0.151600,0.674400,0.000000,0.047750,-0.998900 -0.558200,-0.152700,0.296000,-0.032730,0.999500,-0.000056 -0.414400,0.227200,0.681700,0.000000,0.143200,-0.989700 0.177600,0.210600,0.679400,0.000000,0.122800,-0.992400 -0.542600,-0.194900,-0.440500,1.000000,0.000059,0.000000 -0.456700,-0.186600,-0.768400,0.000000,-0.354200,0.935200 0.541700,-0.220000,-0.635000,-0.982900,0.184000,0.000000 -0.414400,-0.003331,0.633600,0.000000,1.000000,0.000037 0.355200,0.122900,0.380200,0.000000,0.995700,-0.092560 0.321400,-0.126800,-0.767500,0.000000,-0.138900,-0.990300 0.067680,-0.194800,0.677900,0.000000,0.000000,-1.000000 -0.033810,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.540100,-0.051220,-0.161400,-0.982600,0.185800,0.000000 0.160700,0.210800,0.741800,0.000000,0.038880,-0.999200 0.093050,0.121100,0.363600,0.000000,0.993000,-0.117800 0.539500,-0.051350,-0.398200,0.982600,0.185900,0.000000 0.567000,0.237100,0.691800,-0.721100,-0.090080,0.687000 0.304500,0.111300,0.305400,-0.009476,0.975300,-0.220700 0.016730,-0.003405,0.363000,-0.262100,0.965000,0.000000 -0.008440,-0.126800,-0.767500,0.000000,-0.138900,-0.990300 0.042280,0.355300,0.717600,-0.010040,-0.894700,0.446500 -0.296000,0.034310,0.264500,0.000000,-0.205600,-0.978600 0.126900,0.151600,0.674400,0.000137,0.047350,-0.998900 0.067670,-0.134700,-0.766300,0.000000,-0.009844,-1.000000 0.434200,0.093300,0.607200,0.003072,0.490100,0.871700 0.515900,0.279000,0.741200,0.000000,-0.053050,-0.998600 0.570800,-0.169500,0.295300,0.999300,-0.036580,0.000001 0.473600,-0.186600,-0.768400,0.000014,-0.354200,0.935200 0.439800,0.118000,0.673600,0.000000,0.003522,-1.000000 -0.219900,0.106500,0.289200,0.000000,0.929200,-0.369500 0.431400,0.120800,0.522900,0.000000,0.992500,0.122300 -0.329800,0.194200,0.743000,0.000000,-0.057380,0.998400 -0.346800,0.177400,0.741500,0.000000,-0.098480,0.995100 -0.567400,0.228400,0.736800,0.647100,0.149500,-0.747600 -0.236800,-0.060050,-0.767300,0.000002,0.144400,-0.989500 0.528800,-0.176700,-0.736500,0.773400,-0.633500,0.022180 -0.422900,0.236500,0.744300,0.000031,-0.002226,1.000000 -0.105000,0.118500,0.527200,-0.000018,0.991100,0.133200 0.262200,0.121600,0.514600,-0.006557,0.992400,0.122500 -0.456700,0.116600,0.540300,-0.053000,0.986900,0.152300 -0.543600,-0.109800,0.320700,-0.997900,-0.065100,0.000013 0.143800,0.328900,0.703600,0.000000,0.273000,-0.962000 -0.126900,0.160000,0.738200,0.000000,0.103400,-0.994600 -0.558200,-0.152700,0.329900,-0.032730,0.999500,-0.000056 -0.550300,-0.152500,0.431400,-0.219700,0.975600,0.000000 0.550400,-0.152600,0.245300,0.219100,0.975700,0.000000 0.194500,0.295600,0.742500,0.000019,0.074570,0.997200 0.304500,0.042430,0.265000,0.000000,-0.122400,-0.992500 0.262200,0.042430,0.265000,0.000000,-0.122400,-0.992500 0.050750,0.124000,0.489600,-0.015140,0.997300,0.071780 0.042300,-0.143400,-0.767400,0.000000,0.337500,-0.941300 -0.465200,0.323000,0.702000,0.000000,0.268800,-0.963200 0.101500,0.168400,0.739100,0.000000,0.091840,-0.995800 -0.109900,0.228100,0.744200,0.000000,0.008479,1.000000 -0.261500,0.209500,0.743700,0.000000,-0.062670,0.998000 -0.571400,-0.235100,0.413700,-0.986900,-0.161200,0.000000 0.110000,0.050520,0.619300,0.000000,0.001796,1.000000 0.287600,-0.398700,0.701300,0.000000,-1.000000,0.005671 0.110000,0.143300,0.736300,0.000005,0.122300,-0.992500 0.160700,0.278700,0.743600,0.000000,0.048050,0.998800 -0.067650,0.134900,0.675800,0.000000,-0.018770,0.999800 0.296000,0.116200,0.329500,0.000000,0.986200,-0.165300 0.219900,0.113200,0.313200,0.009841,0.979000,-0.203500 0.085300,0.058880,0.675600,0.000000,-0.069940,-0.997600 -0.465200,-0.009560,0.715900,0.003995,0.157800,0.987500 0.448300,-0.002758,0.709000,0.000000,0.992100,0.125300 -0.248800,0.087070,0.676400,-0.000284,0.011010,0.999900 -0.571400,-0.161400,-0.432000,-0.993100,0.117500,0.003959 0.016930,0.211400,0.681900,0.003341,-0.126700,0.991900 -0.455400,-0.229900,-0.764000,-0.346100,0.572600,0.743200 0.380600,0.115400,0.557000,0.000000,0.985400,0.170200 0.464500,0.116700,0.548900,0.211000,0.962500,0.170300 -0.024560,0.013420,0.557500,0.962100,-0.272700,0.000000 0.174100,-0.181800,-0.757600,-0.000018,-0.985900,-0.167500 0.245300,0.218900,0.680500,0.000000,0.132500,-0.991200 0.059220,-0.014110,0.674600,0.000000,0.914100,-0.405500 -0.571500,-0.177900,-0.034520,-1.000000,0.000000,0.000000 0.050760,-0.186000,-0.744100,0.000014,-0.991200,-0.132200 0.538300,-0.043410,0.117700,0.977300,0.211900,0.000000 0.575000,-0.200000,0.699700,1.000000,0.000000,-0.008481 -0.211400,0.115000,0.548500,0.000000,0.986500,0.163500 0.543200,-0.077000,-0.212100,0.997600,0.068580,0.000000 -0.571500,-0.177900,0.346100,-1.000000,0.000000,0.000000 -0.408200,0.081790,0.676100,-0.013470,0.042090,0.999000 -0.084550,0.360300,0.714500,0.000000,0.693600,-0.720400 -0.406000,0.073800,0.266200,0.000000,0.280800,-0.959800 0.482500,0.005949,0.566000,0.997600,0.068850,0.000000 0.483900,0.013330,0.312200,0.951500,-0.307700,0.000000 0.118400,-0.052010,-0.766000,0.000000,0.178000,-0.984000 -0.499000,0.039890,0.717700,0.000000,-0.256100,0.966600 0.575100,-0.244700,0.708300,0.978900,0.004441,0.204300 -0.542300,-0.123700,-0.310800,-0.992000,-0.126400,-0.000012 -0.394700,0.264800,0.743400,0.000000,0.006851,1.000000 0.214300,0.012490,0.275200,0.000000,-0.352800,-0.935700 -0.542600,-0.235300,-0.279800,0.975700,-0.219300,0.000000 -0.542600,-0.235300,0.253000,0.975600,-0.219600,0.000000 0.243200,0.073060,0.674800,0.000000,-0.054750,-0.998500 -0.329800,0.225700,0.683400,0.000000,-0.139400,0.990200 0.539800,-0.135400,-0.609700,0.999700,-0.024000,0.000038 0.296000,0.185600,0.676800,0.000000,0.090400,-0.995900 0.490600,0.177200,0.676000,0.000000,0.082220,-0.996600 -0.544100,-0.093450,-0.254400,-1.000000,0.004023,-0.000001 0.160700,0.109700,0.733700,0.000027,-0.145200,0.989400 0.042310,-0.240300,-0.778900,0.000000,-1.000000,0.004348 -0.287600,0.336500,0.705800,0.000000,0.282900,-0.959200 0.394700,0.118800,0.537300,0.000004,0.985100,0.171900 -0.236800,0.026420,0.613700,0.000000,-0.307200,0.951700 -0.338300,0.026420,0.613700,-0.000003,-0.307200,0.951600 0.543800,-0.093440,-0.550500,1.000000,0.003905,0.000000 0.570000,-0.235000,0.439800,0.979000,-0.203800,0.000000 0.143800,0.194000,0.677600,0.000000,0.100600,-0.994900 -0.186100,0.001350,0.268100,-0.000000,0.652600,-0.757700 -0.008445,-0.018850,-0.757500,0.000000,0.313400,-0.949600 0.542000,0.209500,0.744000,-0.000035,-0.036420,0.999300 -0.126900,0.050430,0.676300,0.000000,-0.084610,-0.996400 -0.448200,0.185300,0.740400,0.000000,0.069350,-0.997600 -0.380600,-0.143100,-0.767400,0.000000,0.347100,-0.937800 -0.101500,0.246000,0.686700,-0.000047,-0.188100,0.982100 0.544000,-0.085260,0.227700,0.999300,0.038050,0.000000 -0.371400,0.058780,0.617100,0.000000,0.107200,0.994200 0.033860,-0.398700,0.692800,0.000000,-1.000000,-0.006052 -0.541300,0.108800,0.731200,-0.000013,0.170500,-0.985400 -0.059180,-0.398600,0.709100,0.000000,-0.969400,0.245500 0.414400,-0.043990,-0.764400,0.000000,0.206100,-0.978500 0.186100,0.244800,0.744600,0.000015,0.027040,0.999600 -0.372100,0.169000,0.740800,0.000000,-0.090760,0.995900 0.448300,-0.398700,0.692800,0.000000,-1.000000,-0.006052 -0.363700,0.336500,0.705800,0.000000,0.282900,-0.959200 -0.574400,-0.375900,0.713900,-0.949400,0.014240,0.313900 -0.118400,0.050440,0.262700,0.000000,-0.002372,-1.000000 -0.228300,0.322700,0.704000,0.000000,-0.292500,0.956300 0.397500,0.254200,0.688100,0.000011,-0.199100,0.980000 -0.321400,0.288600,0.695300,0.000000,-0.232900,0.972500 0.515900,0.176900,0.739800,0.000000,0.079860,-0.996800 -0.570200,0.058590,0.685700,-0.933800,-0.106600,-0.341600 -0.496400,0.058590,0.286900,-0.994700,0.102800,0.000009 -0.504600,0.264800,0.743400,0.000000,0.006851,1.000000 -0.541300,-0.058010,-0.711200,-0.987000,0.160700,0.000188 -0.008441,0.134900,0.675800,0.000000,-0.018770,0.999800 0.558400,-0.152700,0.473700,0.032740,0.999500,0.000000 -0.414400,0.050440,0.262700,0.000000,-0.002372,-1.000000 0.528800,-0.176600,0.346100,0.779200,-0.626800,0.000000 0.177600,-0.186000,0.650500,0.000000,-0.999700,0.024610 0.466900,-0.377300,-0.728400,-0.040850,0.397800,-0.916500 -0.482100,0.320600,0.739900,0.000000,0.107000,0.994300 0.253700,0.296600,0.697800,0.000000,-0.231900,0.972700 -0.540100,-0.051220,-0.026060,-0.982600,0.185800,0.000000 -0.008448,-0.235300,-0.767900,0.000000,-0.064160,0.997900 0.279100,-0.025700,0.715800,0.000000,0.000059,1.000000 0.346100,0.065110,0.618300,0.000017,0.150700,0.988600 0.571100,-0.161500,0.371000,0.997700,0.068050,0.003152 -0.406000,0.067630,0.724600,0.000000,-0.219100,0.975700 0.152200,-0.235300,-0.767900,0.000000,-0.064160,0.997900 0.388600,0.082050,0.612800,0.012780,0.398900,0.916900 -0.135300,-0.235300,-0.767900,0.000000,-0.064160,0.997900 0.339000,0.067250,0.675100,0.000000,-0.058490,-0.998300 -0.524400,0.066240,0.722600,0.000000,0.222400,-0.975000 -0.101500,0.253200,0.744200,0.000000,0.045070,0.999000 0.541700,-0.235100,0.591300,-0.964900,-0.262400,0.000000 -0.414400,0.033910,0.615700,0.000000,-0.212700,0.977100 -0.380600,0.261200,0.687400,0.000000,0.189500,-0.981900 -0.542300,-0.235300,0.625200,0.968600,-0.248600,0.000039 0.236800,0.169200,0.677500,-0.000034,-0.108600,0.994100 -0.109900,0.194600,0.680000,0.000000,-0.102000,0.994800 -0.543000,-0.117700,-0.000687,-0.995600,-0.093430,-0.000010 0.541600,-0.186400,0.117700,-1.000000,0.004909,0.000000 0.228400,0.082300,0.612900,0.000000,0.388500,0.921500 -0.296000,0.312900,0.738700,0.000000,-0.097940,-0.995200 -0.338300,0.312900,0.738700,0.000000,-0.097940,-0.995200 0.543700,-0.101700,-0.161400,0.997400,-0.071810,-0.000002 -0.422900,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.539100,-0.172500,-0.102200,0.619000,-0.785400,0.000000 0.515900,-0.186000,-0.195200,0.041760,-0.999100,0.000000 0.270700,-0.002999,0.692800,-0.000000,0.996600,-0.082250 -0.363600,-0.000770,0.716200,-0.070430,0.049290,0.996300 -0.515200,0.170200,0.675500,0.000000,0.072190,-0.997400 0.471500,-0.313300,-0.723500,0.207500,-0.000318,-0.978200 -0.482100,0.311000,0.698700,0.000000,0.253000,-0.967500 -0.321400,0.310600,0.700600,0.000000,-0.226500,0.974000 0.541600,-0.228700,-0.423600,-1.000000,-0.007436,0.000000 0.541700,-0.235100,0.625200,-0.964900,-0.262400,0.000000 -0.515900,-0.186000,-0.026070,-0.040710,-0.999200,0.000000 -0.483000,0.094910,0.312200,-0.825300,0.564700,0.000026 -0.566300,0.287500,0.736100,0.681900,-0.034810,-0.730600 -0.397500,0.118800,0.358600,0.000067,0.991500,-0.130400 -0.495100,0.066290,0.498300,-0.980100,0.198400,0.000000 0.025370,0.085630,0.728900,0.000000,-0.201500,0.979500 0.084590,0.210800,0.741800,0.000000,0.038880,-0.999200 0.473700,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 -0.387700,-0.238100,-0.743600,0.682300,-0.268500,0.680000 0.541600,-0.186400,0.540600,-1.000000,0.004909,0.000000 -0.558200,-0.237100,0.715800,0.000000,0.000000,1.000000 -0.016900,0.042060,0.677100,0.000000,-0.093690,-0.995600 0.389100,0.111500,0.305200,0.000000,0.977900,-0.209300 0.016930,0.042060,0.677100,0.000000,-0.093690,-0.995600 -0.262200,0.323000,0.702000,0.000000,0.268800,-0.963200 -0.431300,0.058340,0.720800,0.000000,0.231800,-0.972800 0.076130,0.000288,0.275300,0.000000,0.643400,-0.765600 -0.515900,-0.003000,-0.296700,0.030230,0.999500,0.000000 -0.522100,-0.002890,0.439100,-0.209900,0.977700,0.000000 0.067680,-0.032060,-0.761500,0.000000,0.265400,-0.964100 -0.533100,-0.022670,0.414400,-0.953700,0.300700,0.000000 -0.531200,-0.016900,-0.076110,-0.944000,0.330000,0.000000 0.033850,-0.032060,-0.761500,0.000000,0.265400,-0.964100 -0.389000,-0.182700,0.662300,0.000000,-0.693700,0.720300 0.338300,-0.032060,-0.761500,0.000000,0.265400,-0.964100 -0.355200,0.270400,0.691600,0.000000,-0.170900,0.985300 -0.542900,-0.069660,0.439100,-0.995200,0.098320,0.000000 0.432100,0.136300,0.735400,0.000000,0.133800,-0.991000 -0.270600,-0.003332,0.692800,0.000000,0.996600,-0.082410 -0.558200,-0.152700,-0.677300,-0.032840,0.999500,0.000055 0.279100,0.128100,0.736300,-0.000195,-0.170600,0.985300 -0.355600,-0.228600,-0.767500,0.141000,0.069540,0.987600 -0.355200,-0.026280,-0.759800,0.000000,0.292300,-0.956300 0.118400,-0.026280,-0.759800,0.000000,0.292300,-0.956300 0.473600,0.041470,0.678800,0.003822,0.061030,0.998100 0.439800,0.041470,0.678800,0.000000,0.057180,0.998400 0.330600,0.141900,0.676000,0.000000,-0.027710,0.999600 -0.211400,0.014860,0.608600,0.003259,-0.254100,0.967200 0.126900,0.036760,0.617900,0.000000,-0.190700,0.981600 0.246000,0.240200,0.683700,0.000000,0.162600,-0.986700 -0.160700,0.100500,0.729700,0.000000,0.177800,-0.984100 0.406000,-0.186400,0.677900,0.000000,0.004847,-1.000000 0.143800,0.117500,0.337500,0.000000,0.987800,-0.155800 0.313000,0.345400,0.736800,0.000000,0.140500,0.990100 0.177600,0.118400,0.343400,0.000000,0.989100,-0.147100 0.521800,-0.185200,-0.702700,0.371800,-0.928300,0.000000 0.528900,-0.176700,-0.144500,0.800100,-0.599800,0.000000 0.565200,-0.152600,-0.473600,0.227900,0.973700,-0.000044 -0.542200,-0.063640,-0.000696,-0.991300,0.131900,0.000000 0.536100,-0.035640,-0.491200,0.969400,0.245400,-0.000000 -0.093010,0.107200,0.589500,0.000000,0.942700,0.333600 0.270700,0.025900,0.614700,-0.000075,-0.321200,0.947000 0.541700,-0.123600,0.219200,0.992000,-0.126500,0.000000 0.488900,0.023880,0.472900,0.930100,-0.367400,0.000148 0.515900,-0.003004,0.033140,-0.025750,0.999700,0.000000 -0.126900,0.202300,0.741400,0.000000,0.046860,-0.998900 0.389100,0.329700,0.736800,0.000000,-0.114800,-0.993400 -0.346800,0.084580,0.674200,0.000000,-0.043030,-0.999100 -0.228300,0.244800,0.744300,0.000000,0.007220,1.000000 -0.093020,0.202300,0.741400,0.000000,0.046860,-0.998900 0.014520,0.034880,0.371400,-0.978300,-0.207200,0.000000 0.508200,0.141900,0.676000,0.003574,-0.036760,0.999300 0.110000,0.303900,0.741800,0.000000,0.084830,0.996400 0.575100,-0.304800,0.685100,0.978300,0.000000,-0.207200 0.389100,0.031330,0.616200,0.000000,-0.255500,0.966800 -0.528800,-0.010380,-0.330500,-0.924700,0.380600,0.000000 0.538600,-0.043330,0.371500,0.981500,0.191700,0.000000 -0.538600,-0.043310,-0.398200,-0.977300,0.212100,0.000000 -0.534800,-0.028540,-0.109900,-0.962700,0.270500,0.000000 -0.542900,-0.069660,-0.195200,-0.995200,0.098320,0.000000 -0.544000,-0.085270,0.134600,-0.999300,0.038670,0.000000 -0.515900,0.143300,0.736300,0.000000,0.122300,-0.992500 0.051470,0.058880,0.675600,0.000000,-0.069940,-0.997600 0.487800,0.082930,0.439100,0.919300,0.393600,0.003241 -0.389000,0.143300,0.736300,0.000000,0.122300,-0.992500 -0.126800,0.321300,0.737800,0.000000,-0.108400,-0.994100 0.363700,0.210800,0.741800,0.000000,0.038880,-0.999200 0.143800,0.225700,0.683400,-0.000073,-0.139500,0.990200 0.443200,-0.279400,-0.702400,-0.998500,-0.000070,-0.053860 0.473600,0.348600,0.711300,-0.002328,-0.511500,0.859300 -0.565400,-0.153000,-0.745000,-0.276200,0.961000,0.013110 0.443800,-0.262500,-0.695400,-0.982700,0.001746,0.185200 -0.287600,0.151600,0.737300,0.000000,0.113500,-0.993500 0.151500,0.111200,0.580300,0.000000,0.978100,0.208300 0.160700,0.169200,0.677500,-0.000066,-0.110500,0.993900 0.262900,0.158700,0.674800,0.000000,0.054900,-0.998500 0.372900,0.044850,0.719400,-0.000015,-0.204200,0.978900 0.565400,-0.153000,0.531700,0.278200,0.960400,-0.013070 -0.569800,-0.156300,0.269900,-0.814200,0.580500,0.000120 -0.536700,-0.035470,-0.237500,-0.969400,0.245300,0.000000 -0.488900,0.008259,0.346100,-0.977100,0.212700,-0.000000 0.229100,0.058880,0.675600,0.000000,-0.069940,-0.997600 0.143800,-0.003412,0.269800,0.000000,0.967300,-0.253600 0.482100,0.117100,0.732600,0.000000,0.159900,-0.987100 -0.526400,-0.005258,-0.169800,-0.742100,0.670300,0.000000 -0.550300,-0.152500,0.160700,-0.219700,0.975600,0.000000 0.558300,-0.152700,0.033860,0.032190,0.999500,0.000001 -0.528800,-0.010380,0.202300,-0.924700,0.380600,0.000000 0.026090,0.343400,0.707900,0.000000,0.295900,-0.955200 -0.203000,-0.186400,0.677900,0.000000,0.004847,-1.000000 -0.571500,-0.228600,-0.161400,-1.000000,-0.005917,0.000000 -0.526400,-0.005253,0.616700,-0.742000,0.670400,-0.000017 -0.000835,0.252500,0.742300,-0.000089,-0.022410,-0.999700 -0.403100,0.021170,0.268400,-0.000012,-0.369900,-0.929100 -0.304500,0.185300,0.740400,0.000000,0.069350,-0.997600 0.526100,-0.005331,-0.274200,0.740200,0.672300,0.000000 -0.312200,-0.004250,0.686100,0.003580,0.973100,-0.230500 -0.219900,0.101700,0.732000,0.000000,-0.174800,0.984600 -0.093020,0.126400,0.673600,0.000000,0.014140,-0.999900 -0.549700,0.046320,0.717700,0.043200,0.210500,-0.976600 0.068350,0.163200,0.675000,0.000001,0.059890,-0.998200 0.110000,0.092850,0.676200,0.000000,-0.003474,1.000000 -0.543100,-0.117000,-0.575800,-0.995700,-0.093030,0.000002 0.568700,-0.238800,0.473700,0.677000,-0.735900,0.000000 0.528800,-0.176600,0.413700,0.779200,-0.626800,0.000000 0.279100,0.296000,0.740100,0.000000,-0.075530,-0.997100 -0.542600,-0.235300,0.346100,0.975600,-0.219700,-0.000050 -0.033820,-0.007427,-0.753200,0.000000,0.545900,-0.837800 -0.226000,-0.156800,-0.795600,-0.007659,0.520000,-0.854100 0.000014,0.253100,0.685900,0.000000,0.178400,-0.984000 0.515900,-0.186400,0.677900,0.000079,0.004804,-1.000000 -0.450200,-0.372500,-0.694500,0.996300,0.058480,0.063060 -0.550500,-0.152500,-0.245300,-0.219700,0.975600,0.000000 -0.347100,0.033460,0.716900,0.021380,-0.130700,0.991200 -0.524400,0.282500,0.691800,0.000000,0.218400,-0.975900 0.558600,0.136200,0.735500,-0.188000,0.137100,-0.972500 -0.093020,0.050430,0.676300,0.000000,-0.084610,-0.996400 0.564600,-0.239900,0.617400,0.137600,-0.990500,-0.000022 0.526100,-0.005331,-0.147300,0.740200,0.672300,0.000000 0.568700,-0.238800,-0.076100,0.678800,-0.734400,0.000000 0.481500,-0.330200,-0.718300,0.680500,0.000043,-0.732800 0.570000,-0.234900,-0.160700,0.985100,-0.172000,0.000000 0.570500,-0.228600,-0.237500,0.999500,-0.032650,0.000000 0.051470,0.170100,0.675500,0.000027,0.071030,-0.997500 0.506400,-0.240300,-0.693100,0.243800,-0.960800,-0.132200 0.570800,-0.169500,-0.609600,0.999300,-0.036580,-0.000001 0.352100,0.250000,0.742300,0.000000,0.004143,-1.000000 -0.542600,-0.220200,-0.220600,1.000000,-0.000059,0.000000 0.431400,0.185600,0.676800,0.000000,0.090400,-0.995900 -0.143100,0.170200,0.675500,0.000000,0.072190,-0.997400 0.573300,0.168800,0.709700,-1.000000,0.000020,0.000376 0.355200,0.288400,0.693100,-0.000002,0.228900,-0.973400 -0.565400,-0.153000,0.482100,-0.249200,0.968300,-0.015620 0.573300,0.219600,0.726500,-0.953100,0.013940,-0.302500 -0.076100,-0.002999,-0.736500,0.000000,0.999300,0.038300 0.559300,0.080790,0.724400,-0.254500,0.294600,-0.921100 0.284100,0.235100,0.742300,0.000000,0.004442,-1.000000 -0.472700,0.116100,0.364000,-0.834000,0.548800,-0.056560 0.301700,-0.153600,-0.789200,0.000065,0.949400,-0.314200 -0.369300,0.351600,0.731900,0.000000,-0.675300,-0.737500 -0.041580,0.164100,0.675100,-0.000004,0.060380,-0.998200 -0.059200,0.035910,0.716600,-0.003576,-0.305100,0.952300 -0.507400,0.101700,0.732000,0.000000,-0.174800,0.984600 0.211500,0.219600,0.682900,-0.001374,-0.107100,0.994300 -0.135300,0.363600,0.719600,0.001937,0.951300,-0.308200 0.313000,0.185300,0.740400,0.000000,0.069350,-0.997600 -0.422900,0.218200,0.742000,0.000000,0.029000,-0.999600 -0.565600,0.137700,0.674000,-0.247400,0.006309,-0.968900 0.541600,-0.220200,0.202300,-1.000000,0.000000,0.000000 0.103000,-0.154000,-0.792200,0.022360,0.915000,-0.402700 -0.526700,-0.182200,0.543400,-0.778100,-0.628200,0.000000 0.211500,0.176900,0.739800,0.000000,0.079860,-0.996800 0.322100,0.355400,0.711700,0.000000,0.396300,-0.918100 -0.534800,-0.028540,-0.659700,-0.962700,0.270500,0.000000 -0.194500,0.059770,0.723200,0.000000,-0.210600,0.977600 0.534500,-0.028650,-0.119800,0.969200,0.246300,-0.000008 -0.528800,-0.010380,0.261500,-0.924700,0.380600,0.000000 -0.270600,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.025370,0.203100,0.680900,0.000006,-0.113900,0.993500 -0.571500,-0.220200,-0.229000,-1.000000,-0.000178,0.000000 -0.571500,-0.220200,0.456000,-1.000000,-0.000178,0.000000 0.025390,-0.372500,0.677900,0.000000,0.000000,-1.000000 -0.135300,0.203100,0.680900,0.000000,-0.113900,0.993500 -0.101500,0.211400,0.681900,0.000000,-0.120000,0.992800 0.431400,0.203000,0.680900,0.000000,-0.133600,0.991000 0.532900,0.270500,0.691300,0.000000,-0.171000,0.985300 0.532900,-0.235300,-0.765800,-0.439500,-0.100600,0.892600 0.406000,0.342600,0.709400,0.000000,-0.274000,0.961700 0.059220,0.296000,0.740100,0.000000,-0.075530,-0.997100 0.279100,0.337900,0.735900,0.000000,-0.123700,-0.992300 0.177600,0.058340,0.720800,0.000000,0.231800,-0.972800 0.478900,0.098440,0.295300,0.811000,0.584900,-0.008885 0.507500,-0.186000,-0.423600,0.000000,-1.000000,0.000000 0.549800,0.194200,0.743400,-0.003451,-0.061210,0.998100 0.422900,0.202600,0.743800,0.000000,-0.044320,0.999000 -0.528800,-0.010380,-0.423600,-0.924700,0.380600,0.000000 0.566700,-0.398500,0.685300,0.282800,-0.921700,-0.265700 -0.050730,0.152400,0.739400,0.000000,-0.112900,0.993600 -0.522200,-0.185400,0.092340,-0.328500,-0.944500,0.000000 0.186100,0.092910,0.673900,0.000000,-0.028780,-0.999600 0.110000,0.058320,0.678100,0.000000,0.054980,0.998500 -0.067650,0.202600,0.743500,0.000000,-0.022240,0.999800 -0.312900,0.034990,0.714900,-0.000639,0.166500,-0.986000 -0.211400,0.287500,0.740700,0.000000,-0.064970,-0.997900 -0.076110,0.296000,0.740100,0.000000,-0.075530,-0.997100 0.465200,0.225800,0.683400,0.003606,-0.121800,0.992600 0.481300,0.257800,0.744100,0.000099,0.030320,0.999500 0.372100,0.282400,0.693800,0.000025,-0.249200,0.968400 -0.093020,0.329700,0.736800,0.000000,-0.114900,-0.993400 0.236800,0.169000,0.741200,0.003276,-0.097340,0.995200 -0.574700,-0.353300,0.691700,-0.996300,0.008332,-0.085980 -0.279100,0.279000,0.741200,0.000000,-0.053050,-0.998600 -0.312900,0.126400,0.673600,0.000000,0.014140,-0.999900 -0.234700,-0.184200,-0.749700,-0.000019,-0.954500,-0.298300 -0.422900,0.049840,0.678400,0.000000,0.085030,0.996400 -0.431300,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.363700,0.152400,0.739100,0.000000,-0.092980,0.995700 -0.456700,0.355400,0.717100,0.000000,-0.902600,0.430500 -0.513100,-0.014460,0.670200,-0.004500,0.913800,0.406100 0.101500,0.316600,0.702200,0.000000,-0.293100,0.956100 0.033840,0.296600,0.697800,0.000000,-0.231900,0.972700 0.270700,0.123400,0.498000,-0.000004,0.996400,0.084770 -0.304500,-0.186000,-0.449000,0.000000,-1.000000,0.000000 -0.287500,-0.211800,-0.768300,0.000000,-0.000059,1.000000 -0.569800,-0.156300,-0.711100,-0.814200,0.580600,0.000120 -0.448200,0.304600,0.699100,0.000000,-0.215400,0.976500 -0.569800,-0.156300,-0.372800,-0.814500,0.580200,0.000137 0.270700,0.066240,0.265700,0.000000,0.179700,-0.983700 -0.448200,-0.186000,-0.415100,0.000000,-1.000000,0.000000 0.372200,-0.186000,0.312200,0.000000,-1.000000,0.000000 0.372200,-0.186000,0.582900,0.000000,-1.000000,0.000000 -0.259400,0.021170,0.268400,0.000011,-0.369900,-0.929100 -0.008445,-0.003331,-0.212100,0.000000,1.000000,0.000000 -0.245300,-0.003331,0.151500,0.000000,1.000000,0.000000 -0.186100,-0.355600,0.715800,0.000000,0.000000,1.000000 0.151500,0.065040,0.617900,0.000000,0.150700,0.988600 0.253700,-0.186000,0.168500,0.000000,-1.000000,0.000000 0.439800,-0.177900,0.715800,0.000000,0.000000,1.000000 0.084590,-0.186000,-0.212100,0.000000,-1.000000,0.000000 -0.169100,-0.003331,0.007763,0.000000,1.000000,0.000000 -0.186100,-0.003331,-0.482800,0.000000,1.000000,0.000000 0.279100,-0.003331,0.151500,0.000000,1.000000,0.000000 0.473600,-0.186000,-0.347500,0.000000,-1.000000,0.000000 0.414400,-0.003331,0.168500,0.000000,1.000000,0.000000 0.422900,-0.372500,0.677900,0.000000,0.000000,-1.000000 0.476500,0.032270,0.714800,-0.000039,-0.211400,-0.977400 -0.245300,-0.186000,-0.677300,0.000000,-1.000000,0.000000 0.329900,0.304500,0.699400,0.000014,-0.192600,0.981300 -0.329800,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.363700,-0.398700,0.692800,0.000000,-1.000000,-0.006052 0.239600,0.012490,0.275200,0.000988,-0.355600,-0.934600 -0.228300,-0.186000,-0.457400,0.000000,-1.000000,0.000000 -0.571500,-0.211800,-0.009147,-1.000000,0.000000,0.000000 -0.448300,-0.313300,0.715800,0.000000,0.000000,1.000000 -0.389000,-0.003331,0.058510,0.000000,1.000000,0.000000 -0.030430,0.096940,0.444700,0.841600,0.540100,0.000024 -0.186000,0.118000,0.673600,0.000000,0.003522,-1.000000 -0.253700,-0.186000,0.210700,0.000000,-1.000000,0.000000 0.143800,-0.003331,-0.432000,0.000000,1.000000,0.000000 -0.126900,-0.186000,0.210700,0.000000,-1.000000,0.000000 0.431400,0.122900,0.380200,0.000000,0.995700,-0.092560 0.194500,-0.254100,0.677900,0.000000,0.000000,-1.000000 0.414400,-0.003331,-0.389700,0.000000,1.000000,0.000000 0.541600,-0.194800,0.523700,-1.000000,0.000000,0.000000 -0.236800,-0.003331,-0.432000,0.000000,1.000000,0.000000 -0.542700,-0.211800,-0.753300,0.979700,0.000000,0.200200 0.313000,0.116200,0.329500,0.000000,0.986200,-0.165300 0.473600,-0.186000,-0.212100,0.000000,-1.000000,0.000000 0.118400,-0.003331,-0.449000,0.000000,1.000000,0.000000 0.539500,-0.051350,-0.567400,0.987000,0.160700,0.000043 -0.490500,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.093030,-0.380900,0.715800,0.000000,0.005438,1.000000 -0.522100,-0.002890,0.599800,-0.209700,0.977800,-0.000113 -0.524400,-0.240300,-0.787200,0.000000,-0.999900,-0.010180 -0.397500,0.052310,0.719300,0.000000,0.245400,-0.969400 -0.042280,0.316700,0.701900,0.000000,-0.267800,0.963500 -0.253700,0.160000,0.738200,0.000000,0.103400,-0.994600 -0.321400,-0.067980,0.716000,0.009796,0.019670,0.999800 -0.422900,-0.034150,0.716000,0.009796,0.019670,0.999800 0.093050,-0.003331,-0.398200,0.000000,1.000000,0.000000 0.253700,0.101300,0.673700,0.000000,-0.018670,-0.999800 -0.101500,-0.003331,-0.685800,0.000000,1.000000,0.000000 -0.101500,-0.003331,-0.279800,0.000000,1.000000,0.000000 0.033830,0.312300,0.740900,-0.013130,0.113300,0.993500 -0.296000,0.109700,0.673600,0.000000,-0.008652,-1.000000 0.372200,-0.186000,-0.085270,0.000000,-1.000000,0.000000 -0.473600,-0.003331,-0.085270,0.000000,1.000000,0.000000 -0.084590,-0.002667,-0.161400,-0.022830,0.999600,0.016290 -0.542300,-0.123700,-0.057070,-0.992000,-0.126300,0.000000 -0.084560,0.112000,0.313400,0.000000,0.981600,-0.191100 -0.016900,-0.186000,0.033140,0.000000,-1.000000,0.000000 -0.406000,-0.186000,-0.076810,0.000000,-1.000000,0.000000 0.033850,-0.186000,0.083880,0.000000,-1.000000,0.000000 0.093760,-0.010530,0.679100,0.000000,0.635300,-0.772300 0.482100,-0.186000,-0.026070,0.000000,-1.000000,0.000000 0.093050,-0.186000,0.439100,0.000000,-1.000000,0.000000 -0.059190,-0.186000,-0.296700,0.000000,-1.000000,0.000000 -0.016900,-0.186000,-0.694200,0.000000,-1.000000,0.000000 -0.050740,-0.007427,-0.753200,0.000000,0.545900,-0.837800 0.177600,-0.003331,0.075420,0.000000,1.000000,0.000000 0.050760,-0.186000,0.253000,0.000000,-1.000000,0.000000 -0.036640,-0.004591,0.713900,0.000000,0.695000,0.719000 -0.008450,0.303900,0.741800,0.000000,0.104500,0.994500 0.203000,-0.003331,-0.076810,0.000000,1.000000,0.000000 0.042300,-0.003331,-0.499700,0.000000,1.000000,0.000000 0.414400,-0.186000,-0.034520,0.000000,-1.000000,0.000000 -0.543000,-0.117700,0.041600,-0.995600,-0.093420,0.000000 -0.016900,-0.186000,-0.728100,0.000000,-1.000000,0.000000 0.050760,-0.186000,0.168500,0.000000,-1.000000,0.000000 0.042310,-0.002666,0.701200,0.000000,0.999400,-0.035500 -0.093020,-0.186000,0.050050,0.000000,-1.000000,0.000000 -0.067650,0.035890,0.677700,0.000000,-0.139600,-0.990200 -0.076100,-0.186000,0.066970,0.000000,-1.000000,0.000000 0.008472,-0.002999,-0.736500,-0.000007,0.999500,0.032760 0.008473,-0.186000,0.261500,0.000000,-1.000000,0.000000 0.008471,-0.003331,-0.635000,0.000000,1.000000,0.000000 0.008471,-0.003331,-0.000695,0.000008,1.000000,-0.000004 0.219900,-0.003331,-0.017610,0.000000,1.000000,0.000000 -0.008455,-0.220200,0.715800,-0.003252,-0.003258,1.000000 -0.008445,-0.003331,-0.017610,0.000000,1.000000,0.000000 -0.008445,-0.003331,0.066970,0.000000,1.000000,0.000000 -0.422900,-0.068010,0.715800,-0.009878,-0.019660,0.999800 -0.448300,-0.059550,0.715800,-0.009878,-0.019660,0.999800 -0.380600,-0.002667,-0.567400,0.000001,1.000000,0.000002 -0.304500,-0.002667,-0.457400,-0.022830,0.999600,0.016290 -0.016900,-0.003331,0.168500,0.000000,1.000000,0.000000 -0.007738,-0.006088,0.681200,0.000000,0.744800,-0.667300 0.542200,-0.117100,-0.440500,0.995200,-0.097130,-0.013010 0.052500,0.201200,0.743400,0.000000,-0.023510,0.999700 0.067670,0.312300,0.741100,0.000000,0.096950,0.995300 0.093030,0.085630,0.728900,0.000000,-0.201500,0.979500 0.025390,-0.003003,0.650500,0.000000,0.999200,-0.040260 0.042300,-0.003331,-0.525100,0.000000,1.000000,0.000000 -0.025360,-0.186000,0.599800,0.000000,-1.000000,0.000000 -0.287600,-0.059530,0.715800,-0.000020,-0.000020,1.000000 0.568700,-0.238800,0.076140,0.678800,-0.734400,0.000000 -0.050730,-0.186000,-0.728100,0.000000,-1.000000,0.000000 0.363700,-0.003331,0.066970,0.000000,1.000000,0.000000 -0.050730,-0.186000,-0.144500,0.000000,-1.000000,0.000000 0.534500,-0.028650,-0.077520,0.969200,0.246300,0.000001 0.521700,-0.002964,-0.034530,0.222500,0.974900,0.000000 -0.042280,-0.003331,-0.246000,0.000000,1.000000,0.000000 0.473600,-0.186000,-0.059900,0.000000,-1.000000,0.000000 0.059220,0.316600,0.702200,0.000000,-0.293100,0.956100 -0.194500,-0.186000,-0.017610,0.000000,-1.000000,0.000000 0.076120,-0.067990,0.715800,0.000000,0.000000,1.000000 -0.076110,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.059190,-0.186000,0.396800,0.000000,-1.000000,0.000000 0.067670,-0.355600,0.715800,0.000000,0.000000,1.000000 0.084590,-0.003331,-0.499700,0.000000,1.000000,0.000000 0.084590,-0.186000,-0.694200,0.000000,-1.000000,0.000000 -0.085260,-0.149300,-0.771500,0.000090,0.781700,-0.623700 0.372100,-0.330200,0.716300,-0.003282,-0.013090,0.999900 -0.279100,-0.003331,-0.398200,-0.006475,1.000000,0.003224 0.507500,0.211500,0.681600,0.000000,-0.120000,0.992800 0.472100,-0.372200,-0.695500,-0.069220,-0.982500,-0.172800 0.059220,-0.002999,-0.736500,0.000000,0.999300,0.038300 -0.422900,-0.003331,-0.592700,-0.006475,1.000000,0.003224 0.515900,-0.003004,-0.449000,-0.025750,0.999700,0.000000 0.515900,-0.003004,0.413700,-0.025750,0.999700,0.000000 0.197300,0.117800,0.541800,-0.000076,0.992000,0.126600 0.166300,0.118600,0.536500,0.000166,0.989500,0.144700 0.570500,-0.186400,0.591300,1.000000,0.000059,0.000000 0.570500,-0.186400,0.295300,1.000000,0.000000,0.000000 0.570800,-0.186400,-0.178300,1.000000,0.000059,0.000000 -0.118400,0.113800,0.556700,-0.016480,0.981900,0.188600 0.296000,0.278800,0.743600,-0.000024,0.051780,0.998700 0.321400,0.125500,0.422200,0.000000,0.999600,-0.029350 -0.262200,0.123200,0.405500,-0.013140,0.999300,-0.035900 -0.542300,-0.228700,0.379900,0.999800,-0.021050,0.000030 -0.346700,-0.003166,-0.542000,0.036040,0.999100,-0.022920 0.304500,0.043100,0.618500,0.000409,-0.123600,0.992300 -0.194500,0.120600,0.372000,-0.013150,0.995300,-0.096040 0.448300,-0.355600,0.716300,-0.003281,-0.013090,0.999900 0.490600,0.345400,0.736500,0.000008,0.140400,0.990100 0.372200,-0.186000,-0.254400,0.000000,-1.000000,0.000000 -0.456700,-0.003331,-0.237500,0.000000,1.000000,0.000000 0.084590,-0.003331,-0.136000,0.000000,1.000000,0.000000 -0.304500,-0.110300,0.715800,-0.009886,-0.019650,0.999800 -0.225500,0.021170,0.268400,0.000011,-0.369900,-0.929100 0.143800,0.040400,0.716100,0.000000,0.238500,-0.971100 -0.499000,-0.398600,0.709100,0.000000,-0.969400,0.245500 0.245300,-0.211800,-0.768000,0.000000,-0.000059,1.000000 0.515900,-0.186000,-0.178300,0.041760,-0.999100,0.000000 0.541600,-0.186400,0.320700,-1.000000,0.004909,0.000000 -0.544000,-0.085270,-0.728100,-0.999300,0.038680,0.000001 0.382600,-0.152700,-0.777000,-0.003995,0.956000,-0.293400 -0.101500,-0.186000,-0.305200,0.000000,-1.000000,0.000000 -0.219900,-0.152600,0.715800,0.000000,0.000059,1.000000 -0.490500,-0.003331,-0.102200,0.000000,1.000000,0.000000 0.575200,-0.177900,0.685300,0.996100,-0.000002,-0.088080 -0.422900,-0.186000,0.633600,0.000000,-1.000000,0.000000 0.019100,0.083180,0.363000,-0.913300,0.407300,0.000000 0.570500,-0.220200,-0.550400,1.000000,-0.000178,0.000000 -0.228300,-0.003331,-0.702700,0.000000,1.000000,0.000000 0.076130,-0.186000,-0.178300,0.000000,-1.000000,0.000000 -0.228300,-0.186000,-0.372800,0.000000,-1.000000,0.000000 0.406000,-0.186000,0.616700,0.000000,-1.000000,0.000000 0.544400,-0.239000,-0.691400,-0.515000,-0.857200,0.002228 -0.490500,-0.186000,-0.000693,0.000000,-1.000000,0.000000 -0.219900,0.151600,0.737300,0.000000,0.113500,-0.993500 -0.363700,-0.186000,-0.195200,0.000000,-1.000000,0.000000 -0.389000,-0.186000,-0.432000,0.000000,-1.000000,0.000000 0.160700,-0.003331,-0.279800,0.000000,1.000000,0.000000 0.540700,-0.057900,0.425000,0.990800,0.135600,0.000000 -0.507400,-0.186000,-0.220600,0.000000,-1.000000,0.000000 0.490600,-0.186000,-0.195200,0.000000,-1.000000,0.000000 -0.338300,-0.003331,-0.220600,0.000000,1.000000,0.000000 -0.524400,-0.279400,0.715800,0.000000,0.000000,1.000000 0.118400,-0.003331,-0.499700,0.000000,1.000000,0.000000 0.279100,-0.003331,-0.220600,0.000000,1.000000,0.000000 -0.473600,-0.186000,0.219200,0.000000,-1.000000,0.000000 0.219900,-0.338600,0.677900,0.000000,0.000000,-1.000000 0.355200,-0.186000,-0.372800,0.000000,-1.000000,0.000000 -0.152200,-0.186000,0.134600,0.000000,-1.000000,0.000000 0.541600,-0.186400,-0.076810,-1.000000,0.004909,0.000000 0.245300,-0.003331,-0.525100,0.000000,1.000000,0.000000 -0.219900,-0.186000,0.481400,0.000000,-1.000000,0.000000 0.177600,-0.186000,-0.313600,0.000000,-1.000000,0.000000 0.262200,-0.003331,-0.525100,0.000000,1.000000,0.000000 -0.354500,0.158700,0.674800,0.000000,0.054900,-0.998500 -0.245300,-0.186000,0.608300,0.000000,-1.000000,0.000000 0.228400,-0.003331,-0.660400,0.000000,1.000000,0.000000 0.363700,-0.186000,0.083880,0.000000,-1.000000,0.000000 0.101500,-0.003331,-0.254400,0.000000,1.000000,0.000000 0.482100,0.093940,0.526500,0.842200,0.539100,0.000000 -0.414400,-0.003331,0.041590,0.000000,1.000000,0.000000 -0.355200,-0.003331,-0.262900,0.000000,1.000000,0.000000 0.541600,-0.203300,0.599800,-1.000000,0.000000,0.000000 -0.397500,0.120900,0.506200,0.000000,0.995000,0.099400 -0.338300,-0.186000,-0.237500,0.000000,-1.000000,0.000000 0.439800,-0.321700,0.715800,0.003234,0.013110,0.999900 -0.355200,-0.186000,0.337600,0.000000,-1.000000,0.000000 0.219900,0.125700,0.430600,0.009864,0.999800,-0.016770 -0.507400,-0.003332,-0.516600,0.019630,0.999800,0.000000 0.569800,-0.156300,0.613000,0.831700,0.555200,-0.000143 -0.422900,-0.003331,0.066970,0.000000,1.000000,0.000000 0.541600,-0.203300,0.050060,-1.000000,0.000000,0.000000 0.118400,-0.003331,0.244600,0.000000,1.000000,0.000000 -0.253700,-0.003331,0.016220,0.000000,1.000000,0.000000 0.507500,-0.364000,0.677900,0.000000,0.000000,-1.000000 0.465200,-0.186000,-0.127600,0.000000,-1.000000,0.000000 -0.542300,-0.123700,-0.200900,-0.992000,-0.126400,0.000012 -0.499000,0.254200,0.688500,0.000000,-0.199100,0.980000 -0.490500,-0.186000,0.329200,0.000000,-1.000000,0.000000 -0.203000,-0.186000,0.100800,0.000000,-1.000000,0.000000 -0.118400,-0.003331,-0.246000,0.006470,1.000000,-0.003218 -0.143800,-0.003331,0.083880,0.000000,1.000000,0.000000 0.143800,0.282500,0.691800,0.000000,0.218400,-0.975900 0.050760,-0.186000,-0.694200,0.000000,-1.000000,0.000000 0.228400,-0.186000,-0.685800,0.000000,-1.000000,0.000000 0.143800,-0.110300,0.715800,0.000000,0.000000,1.000000 0.389100,-0.347100,0.677900,0.000000,0.000000,-1.000000 -0.380600,-0.003331,0.160000,0.000000,1.000000,0.000000 0.564600,-0.239900,0.228400,0.140000,-0.990200,0.000000 -0.372100,-0.186000,-0.279800,0.000000,-1.000000,0.000000 -0.321400,-0.003331,-0.119100,0.000000,1.000000,0.000000 -0.539100,-0.172500,-0.660400,0.602600,-0.798000,0.000000 0.566700,-0.262500,0.715700,0.170500,0.002232,0.985300 -0.130400,-0.181800,-0.757300,0.000338,-0.985500,-0.169800 -0.338300,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 0.448300,-0.003331,0.024680,0.000000,1.000000,0.000000 0.019100,0.083180,0.329200,-0.913300,0.407300,0.000000 -0.456700,0.123700,0.413800,-0.039410,0.998700,-0.032310 -0.033810,-0.211800,0.677900,0.000000,0.000000,-1.000000 -0.329800,-0.186000,0.219200,0.000000,-1.000000,0.000000 -0.203000,-0.003331,-0.381300,0.000000,1.000000,0.000000 0.570300,-0.235000,0.558200,0.979200,-0.203100,0.000000 0.499000,-0.003331,-0.601200,0.000035,1.000000,0.000000 0.101500,-0.186000,-0.711100,0.000000,-1.000000,0.000000 0.194500,-0.003331,-0.508200,0.000000,1.000000,0.000000 0.570800,-0.211800,0.337600,1.000000,0.000000,0.000000 -0.101500,-0.186000,0.642100,0.000000,-1.000000,0.000000 -0.169100,0.312900,0.738700,0.000000,-0.097940,-0.995200 0.262200,0.134900,0.675800,0.000000,0.003258,1.000000 0.416600,0.271700,0.743900,-0.000427,0.017920,0.999800 0.396800,-0.181900,-0.763400,0.000000,-0.912600,0.408800 0.465200,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.431400,-0.003331,-0.000695,0.000000,1.000000,0.000000 -0.177600,-0.186000,0.557500,0.000000,-1.000000,0.000000 -0.414400,-0.003331,-0.694200,0.000000,1.000000,0.000000 0.499000,-0.186000,0.117700,0.000000,-1.000000,0.000000 0.118400,-0.395500,0.713900,0.000000,-0.605500,0.795800 -0.118400,-0.003331,-0.161400,0.000000,1.000000,0.000000 -0.526700,-0.182200,-0.437700,-0.778100,-0.628100,0.000000 0.490600,-0.347100,0.677900,0.000000,0.000000,-1.000000 0.570500,-0.228700,0.354500,0.998400,-0.055580,-0.010350 0.262200,-0.186000,0.227700,0.000000,-1.000000,0.000000 0.346800,0.123400,0.498000,0.000000,0.996400,0.084750 0.101500,-0.003331,0.261500,0.000000,1.000000,0.004823 0.499000,0.320700,0.740200,-0.003273,0.113500,0.993500 0.363700,0.125600,0.456000,0.000000,0.999800,0.021250 -0.042270,-0.186000,0.219200,0.000000,-1.000000,0.000000 -0.542300,-0.211800,0.261500,1.000000,-0.000000,0.000000 0.482100,-0.186000,0.278400,0.000000,-1.000000,0.000000 0.499000,-0.186000,-0.643500,0.000000,-1.000000,0.000000 -0.456700,-0.186000,-0.542000,0.000000,-1.000000,0.000000 0.296000,0.227200,0.681700,0.000000,0.143200,-0.989700 -0.397500,-0.186000,0.566000,0.000000,-1.000000,0.000000 -0.372100,-0.186000,0.134600,0.000000,-1.000000,0.000000 0.363700,-0.186000,-0.533500,0.000000,-1.000000,0.000000 -0.448300,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.571500,-0.194800,0.117700,-1.000000,0.000000,0.000000 0.211500,-0.003331,-0.525100,0.000000,1.000000,0.000000 -0.219900,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.414400,-0.203300,0.715800,0.000000,0.000000,1.000000 0.012620,0.050470,0.489900,-0.999800,-0.018990,-0.000000 -0.529200,-0.176800,-0.508200,-0.788200,-0.615400,0.000000 0.380600,-0.127200,0.715800,0.000000,0.000000,1.000000 -0.515900,0.194200,0.743000,0.000000,-0.057370,0.998400 -0.236800,-0.003331,-0.465900,0.000000,1.000000,0.000000 -0.177600,-0.186000,0.236100,0.000000,-1.000000,0.000000 0.135300,0.262400,0.690000,0.000000,-0.188600,0.982000 0.101500,-0.186000,0.557500,0.000000,-1.000000,0.000000 -0.389000,-0.186000,-0.178300,0.000000,-1.000000,0.000000 -0.414400,-0.338600,0.715800,0.000000,0.000000,1.000000 -0.338300,0.106500,0.289200,-0.000432,0.933800,-0.357700 -0.321400,-0.186000,-0.178300,0.000000,-1.000000,0.000000 -0.439800,-0.186000,-0.474300,0.000000,-1.000000,0.000000 0.270700,-0.186000,-0.668900,0.000000,-1.000000,0.000000 -0.329800,-0.398700,0.692800,0.000000,-1.000000,-0.006052 0.219900,-0.211800,0.677900,0.000000,0.000000,-1.000000 0.126900,-0.321700,0.677900,0.000000,0.000000,-1.000000 -0.177600,-0.003331,-0.330500,-0.000069,1.000000,0.000059 0.321400,-0.003331,-0.203700,0.000000,1.000000,0.000000 -0.320700,0.067250,0.675100,0.000000,-0.058490,-0.998300 -0.482100,-0.003331,-0.229100,0.000000,1.000000,0.000000 0.473600,-0.003331,0.083880,0.000000,1.000000,0.000000 0.338300,-0.003331,-0.169800,0.000000,1.000000,0.000000 -0.152200,-0.186000,-0.457400,0.000000,-1.000000,0.000000 0.270700,-0.186000,-0.525100,0.000000,-1.000000,0.000000 0.212200,-0.162000,-0.797000,0.000419,0.214400,-0.976700 0.279100,0.101300,0.673700,0.000000,-0.018670,-0.999800 -0.245300,-0.304800,0.715800,0.000000,0.000000,1.000000 -0.571500,-0.228600,-0.660400,-1.000000,-0.005917,0.000000 -0.236800,-0.186000,-0.609600,0.000000,-1.000000,0.000000 0.482100,-0.186000,0.515200,0.000000,-1.000000,0.000000 -0.482100,-0.279400,0.715800,0.000000,0.000000,1.000000 -0.499000,-0.003331,-0.635000,-0.000044,1.000000,0.000000 -0.262200,-0.018850,-0.757500,-0.000001,0.313400,-0.949600 0.346800,-0.003331,-0.584300,0.000000,1.000000,0.000000 -0.219900,-0.186000,0.244600,0.000000,-1.000000,0.000000 0.236800,-0.211800,-0.797100,0.000000,0.000000,-1.000000 -0.296000,-0.186000,0.388400,0.000000,-1.000000,0.000000 0.482100,0.079480,0.727600,0.000000,-0.239700,0.970900 -0.396800,0.153600,0.676500,0.000000,-0.029420,0.999600 0.228400,-0.003331,-0.575800,0.000000,1.000000,0.000000 -0.372100,-0.186000,0.329200,0.000000,-1.000000,0.000000 0.482100,-0.186000,0.100800,0.000000,-1.000000,0.000000 0.262200,-0.228700,-0.768000,0.000000,0.004464,1.000000 -0.312900,-0.003331,-0.237500,0.000000,1.000000,0.000000 0.465200,-0.003331,0.151500,0.000000,1.000000,0.000000 0.016930,-0.186000,-0.601200,0.000000,-1.000000,0.000000 0.296000,-0.186000,-0.051440,0.000000,-1.000000,0.000000 0.465200,-0.002730,0.657000,0.000000,0.986200,0.165700 0.143800,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.279100,0.123600,0.388600,-0.000013,0.996800,-0.080370 0.321400,-0.003331,-0.034530,0.000000,1.000000,0.000000 0.507500,-0.003332,0.202300,-0.019460,0.999800,0.000000 0.008473,-0.186000,0.599800,0.000000,-1.000000,0.000000 0.524400,-0.245600,0.677900,-0.032330,-0.008072,-0.999400 -0.025360,-0.003331,-0.550400,0.000000,1.000000,0.000000 -0.143800,-0.003331,-0.085270,0.000000,1.000000,0.000000 -0.531200,-0.016900,0.448300,-0.944000,0.330000,0.000000 -0.152200,-0.002730,0.657000,0.000000,0.986200,0.165700 -0.177600,-0.186000,0.371400,0.000000,-1.000000,0.000000 -0.126900,0.051820,0.721200,-0.000009,-0.247600,0.968900 -0.312900,-0.003331,0.202300,0.000000,1.000000,0.000000 0.507500,0.177200,0.676000,0.000000,0.082220,-0.996600 -0.067650,-0.186000,0.278400,0.000000,-1.000000,0.000000 0.346800,-0.186000,-0.457400,0.000000,-1.000000,0.000000 -0.236800,-0.186000,0.041600,0.000000,-1.000000,0.000000 -0.414400,-0.003331,-0.508200,0.000000,1.000000,0.000000 0.186100,-0.186000,-0.651900,0.000000,-1.000000,0.000000 0.363700,-0.271000,0.677900,0.000000,0.000000,-1.000000 -0.262200,-0.186000,0.625200,0.000000,-1.000000,0.000000 -0.473600,-0.186000,0.481400,0.000000,-1.000000,0.000000 -0.406000,-0.186000,-0.381300,0.000000,-1.000000,0.000000 -0.143800,-0.296300,0.677900,0.000000,0.000000,-1.000000 0.110000,-0.186000,-0.482800,0.000000,-1.000000,0.000000 0.203000,-0.186000,0.176900,0.000000,-1.000000,0.000000 -0.465200,-0.003331,-0.575800,0.000000,1.000000,0.000000 -0.126900,-0.186000,0.405300,0.000000,-1.000000,0.000000 0.422900,-0.194900,0.715800,0.000000,0.000000,1.000000 0.355200,-0.003331,-0.542000,0.000000,1.000000,0.000000 -0.321400,-0.245600,0.677900,0.000000,0.000000,-1.000000 -0.338300,-0.003331,-0.567400,0.000000,1.000000,0.000000 0.465200,-0.186000,-0.254400,0.000000,-1.000000,0.000000 -0.355200,-0.003332,0.642100,0.000000,0.999800,-0.019490 -0.550200,-0.240200,-0.398200,0.085960,-0.996300,0.000000 0.439800,-0.186000,-0.660400,0.000000,-1.000000,0.000000 -0.414400,-0.398600,0.709100,0.000000,-0.969400,0.245500 -0.296000,-0.186000,0.143100,0.000000,-1.000000,0.000000 0.439800,-0.003331,-0.457400,0.000000,1.000000,0.000000 -0.465200,-0.186000,-0.364400,0.000000,-1.000000,0.000000 0.118400,-0.321700,0.715800,0.000000,0.000000,1.000000 0.016730,-0.003405,0.506800,-0.262100,0.965000,0.000000 0.389100,-0.186000,-0.296700,0.000000,-1.000000,0.000000 0.101500,-0.003331,-0.482800,0.000000,1.000000,0.000000 0.490600,-0.380900,0.677900,0.000000,-0.013730,-0.999900 -0.422900,0.116600,0.540400,0.000000,0.988600,0.150800 0.422900,-0.003331,-0.068360,0.000000,1.000000,0.000000 0.482100,0.269300,0.689000,0.000000,0.196800,-0.980500 0.448300,-0.003331,0.633600,0.000000,1.000000,0.000037 -0.109900,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 0.169200,-0.186000,-0.516600,0.000000,-1.000000,0.000000 0.110000,-0.186000,0.312200,0.000000,-1.000000,0.000000 -0.431300,-0.003331,-0.406700,0.000000,1.000000,0.000000 0.515900,-0.186000,0.100800,0.052520,-0.998600,0.000000 0.296000,0.330400,0.706400,0.000124,-0.251300,0.967900 -0.270600,-0.152600,0.715800,0.000000,0.000000,1.000000 -0.482100,0.177800,0.678100,-0.000001,-0.081210,0.996700 0.118400,-0.186000,0.439100,0.000000,-1.000000,0.000000 0.540600,-0.143600,-0.246000,0.964200,0.265300,0.000000 -0.194500,-0.003331,-0.567400,0.000000,1.000000,0.000000 0.448300,-0.186000,-0.102200,0.000000,-1.000000,0.000000 -0.480300,-0.330200,-0.717100,-0.281900,0.000000,-0.959400 0.570800,-0.220300,0.286900,0.999800,-0.019850,0.000000 0.544100,-0.093450,-0.127600,0.999900,-0.016460,0.000000 -0.473600,-0.003331,-0.068360,0.000000,1.000000,0.000000 0.571000,-0.161000,-0.491300,0.995700,0.092390,-0.010630 -0.542300,-0.123700,-0.327700,-0.992000,-0.126300,0.000000 0.177600,-0.186000,-0.262900,0.000000,-1.000000,0.000000 0.338300,-0.003331,-0.389700,0.000000,1.000000,0.000000 -0.262200,-0.186000,-0.601200,0.000000,-1.000000,0.000000 -0.042270,-0.186000,-0.381300,0.000000,-1.000000,0.000000 0.490600,-0.186000,-0.609600,0.000000,-1.000000,0.000000 0.135300,-0.017260,0.715800,0.000000,-0.005638,1.000000 -0.211400,-0.186000,-0.432000,0.000000,-1.000000,0.000000 0.013870,0.066040,0.523700,-0.986900,0.161600,0.000000 0.490600,0.194700,0.679700,0.000000,-0.102100,0.994800 -0.414400,-0.003331,-0.186800,0.000000,1.000000,0.000000 0.287600,0.120800,0.522900,0.000029,0.992500,0.122200 0.338300,-0.003331,-0.355900,0.000000,1.000000,0.000000 0.499000,-0.003331,-0.660400,0.000035,1.000000,0.000000 0.573300,0.135000,0.709700,-1.000000,-0.000059,0.000772 -0.542600,-0.228700,-0.296700,1.000000,0.000929,0.000000 0.253800,-0.398600,0.709100,0.000000,-0.969400,0.245500 -0.422900,-0.009562,0.715900,0.000000,0.153500,0.988200 0.541600,-0.220200,0.363000,-1.000000,0.000000,0.000000 -0.482100,-0.186000,0.270000,0.000000,-1.000000,0.000000 -0.329800,-0.186000,0.270000,0.000000,-1.000000,0.000000 0.499000,-0.235300,-0.767600,0.000000,-0.095510,0.995400 0.490600,-0.186000,-0.694200,0.000000,-1.000000,0.000000 -0.397500,-0.186000,0.405300,0.000000,-1.000000,0.000000 0.279100,-0.003331,-0.694200,0.000000,1.000000,0.000000 -0.177600,-0.271000,0.677900,0.000000,0.000000,-1.000000 0.152300,0.236500,0.744600,0.000000,-0.002930,1.000000 0.515900,0.160800,0.676600,0.000000,-0.061380,0.998100 0.380600,-0.003331,-0.322100,0.000000,1.000000,0.000000 -0.571500,-0.186400,-0.186800,-1.000000,0.000000,0.000000 -0.465200,0.262400,0.690000,0.000000,-0.168300,0.985700 0.110000,-0.186000,-0.618100,0.000000,-1.000000,0.000000 -0.118400,-0.186000,-0.372800,0.000000,-1.000000,0.000000 0.211500,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.338300,-0.186000,0.193800,0.000000,-1.000000,0.000000 0.456700,-0.003331,-0.474300,0.000000,1.000000,0.000000 0.439800,-0.003331,-0.677300,0.000000,1.000000,0.000000 0.380600,-0.186000,0.329200,0.000000,-1.000000,0.000000 0.321400,0.194000,0.677600,0.000000,0.100600,-0.994900 -0.542400,-0.122900,-0.556100,-0.992000,-0.126200,0.000086 -0.414400,-0.228700,0.677900,0.000000,0.000000,-1.000000 0.296000,0.042060,0.677100,0.000000,-0.093680,-0.995600 0.346800,-0.186000,0.557500,0.000000,-1.000000,0.000000 0.380600,-0.003331,0.083880,0.000000,1.000000,0.000000 0.126900,-0.287900,0.715800,0.000000,0.000000,1.000000 0.380600,-0.186000,0.549100,0.000000,-1.000000,0.000000 -0.532800,-0.398600,0.685300,0.000000,-0.969200,-0.246500 -0.152200,-0.186000,0.481400,0.000000,-1.000000,0.000000 0.507500,-0.003332,-0.542000,-0.019460,0.999800,0.000000 -0.262200,-0.186000,-0.144500,0.000000,-1.000000,0.000000 -0.372100,0.106500,0.289200,-0.000388,0.930500,-0.366200 0.380600,-0.034160,0.715800,0.000000,0.000000,1.000000 0.118400,-0.003331,-0.465900,0.000000,1.000000,0.000000 0.422900,-0.186000,0.134600,0.000000,-1.000000,0.000000 -0.152200,-0.186000,0.117700,0.000000,-1.000000,0.000000 -0.473600,-0.186000,-0.102200,0.000000,-1.000000,0.000000 -0.135300,-0.186000,-0.558900,0.000000,-1.000000,0.000000 -0.236800,-0.186000,0.134600,0.000000,-1.000000,0.000000 -0.262200,-0.186000,-0.102200,0.000000,-1.000000,0.000000 0.279100,-0.186000,-0.246000,0.000000,-1.000000,0.000000 0.160700,-0.003331,-0.449000,0.000000,1.000000,0.000000 0.521700,-0.002964,-0.220600,0.222500,0.974900,0.000000 -0.135300,-0.211800,-0.768300,0.000020,-0.000039,1.000000 -0.338300,-0.186000,-0.220600,0.000000,-1.000000,0.000000 -0.448200,-0.186000,-0.136000,0.000000,-1.000000,0.000000 0.245300,-0.279400,0.677900,0.000000,0.000000,-1.000000 -0.321400,-0.003331,0.126200,0.000000,1.000000,0.000000 -0.203000,-0.042620,0.715800,0.000000,0.000000,1.000000 0.186100,-0.186000,0.405300,0.000000,-1.000000,0.000000 -0.253700,-0.003331,-0.491200,0.000000,1.000000,0.000000 -0.253700,-0.389600,0.715900,0.000000,-0.131100,0.991400 -0.186100,0.123700,0.413800,0.000000,0.999200,-0.039650 -0.270600,-0.003331,0.143100,0.000000,1.000000,0.000000 0.236800,-0.003331,-0.381300,0.000000,1.000000,0.000000 0.380600,-0.211800,0.715800,0.000000,0.000000,1.000000 -0.143800,-0.254100,0.677900,0.000000,0.000000,-1.000000 -0.236800,-0.186000,0.168500,0.000000,-1.000000,0.000000 -0.203000,0.117100,0.732600,0.000000,0.159900,-0.987100 0.543600,-0.149400,0.171300,0.673400,0.739200,0.000000 -0.542600,-0.194900,-0.626600,1.000000,0.000000,0.000000 0.143800,-0.003331,-0.347500,0.000000,1.000000,0.000000 0.372200,-0.003331,0.126200,0.000000,1.000000,0.000000 0.490600,-0.313300,0.677900,0.000000,0.000000,-1.000000 -0.355200,-0.003333,-0.508100,-0.029550,0.999400,0.019700 -0.448200,-0.186000,-0.296700,0.000000,-1.000000,0.000000 0.389100,0.185300,0.740400,0.000000,0.069350,-0.997600 0.541600,-0.211800,0.498300,-1.000000,0.000000,0.000000 0.304500,-0.186000,0.633600,0.000000,-1.000000,0.000000 -0.490500,-0.186000,0.058510,0.000000,-1.000000,0.000000 0.550000,-0.240100,0.286900,-0.092980,-0.995700,0.000000 -0.321400,-0.149000,-0.771600,0.000115,0.782500,-0.622600 -0.507400,-0.003332,0.016220,0.019630,0.999800,0.000000 0.389100,-0.060050,-0.767300,0.000000,0.144300,-0.989500 -0.448200,-0.330200,0.677900,0.000000,0.000000,-1.000000 0.570800,-0.186400,-0.322100,0.999800,-0.019720,0.000000 -0.304500,-0.003331,0.143100,0.000000,1.000000,0.000000 0.571100,-0.161500,0.447100,0.997300,0.073020,-0.003079 0.304500,-0.034160,0.715800,0.000000,0.000000,1.000000 0.439800,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.571400,-0.235100,-0.626600,-0.986900,-0.161200,0.000000 -0.355200,-0.186000,-0.643500,0.000000,-1.000000,0.000000 0.515900,-0.186000,-0.626600,0.041760,-0.999100,0.000000 0.389100,0.151600,0.737300,0.000000,0.113500,-0.993500 0.219900,0.160900,0.676600,0.000006,-0.061340,0.998100 -0.473600,-0.042650,0.716200,-0.006588,-0.016390,0.999800 -0.092310,-0.010530,0.679100,0.000000,0.635300,-0.772300 -0.059190,-0.003331,-0.178300,0.000000,1.000000,0.000000 -0.093010,0.152400,0.739400,0.000000,-0.112900,0.993600 -0.110600,-0.181900,-0.762900,0.000077,-0.908000,0.419000 -0.543000,-0.117700,-0.093720,-0.995600,-0.093440,0.000010 -0.109900,0.074270,0.613500,0.000000,0.321400,0.946900 -0.558100,0.159900,0.738600,0.209000,0.095370,-0.973200 -0.211400,0.321300,0.737800,0.000000,-0.108400,-0.994100 0.456700,-0.003331,-0.110600,0.000000,1.000000,0.000000 -0.558200,-0.254100,0.715800,0.000000,0.000000,1.000000 0.539800,-0.051290,0.464500,0.990000,0.141200,0.000000 0.539500,-0.051350,-0.102200,0.986500,0.163600,0.000000 -0.571700,0.357300,0.734700,-0.411300,0.383800,0.826700 -0.448300,0.245900,0.686700,0.000000,-0.207600,0.978200 0.000009,-0.093390,-0.769800,0.000000,0.004040,-1.000000 -0.152200,-0.093390,-0.769800,0.000000,0.004040,-1.000000 0.346700,0.040540,0.715500,-0.114800,0.585700,-0.802300 -0.541300,0.092910,0.673900,0.000264,-0.028430,-0.999600 0.008470,-0.211800,-0.768300,0.000000,-0.019750,0.999800 -0.482000,0.079660,0.268200,-0.024400,0.372000,-0.927900 -0.571500,-0.211800,-0.364400,-1.000000,0.000000,0.000000 -0.025360,0.246000,0.686700,0.000000,-0.188200,0.982100 0.101500,0.121500,0.735300,0.000000,-0.181100,0.983500 0.276300,0.355000,0.724800,-0.000040,-0.968600,-0.248700 -0.084560,0.185600,0.676800,0.000000,0.090400,-0.995900 -0.571900,-0.075690,0.684000,-0.941200,-0.030820,-0.336400 -0.541300,0.177400,0.741500,-0.000061,-0.098470,0.995100 0.304500,0.295600,0.742500,-0.000002,0.094440,0.995500 -0.389000,0.116300,0.337900,0.000000,0.988700,-0.150000 -0.526700,-0.182200,0.061320,-0.778100,-0.628200,0.000000 -0.542700,-0.178100,0.303800,0.969000,-0.247100,0.000000 0.245300,0.123300,0.388700,-0.006557,0.997000,-0.077050 0.565900,0.335100,0.732900,-0.587300,-0.102500,-0.802900 0.203000,0.121100,0.363600,0.006576,0.992600,-0.121100 -0.526700,-0.182200,-0.683000,-0.778100,-0.628200,0.000000 -0.502500,0.358900,0.734900,0.000000,0.354000,0.935200 0.186100,0.113200,0.313200,0.000011,0.981100,-0.193600 0.576000,0.201000,0.721100,1.000000,0.006975,-0.005635 0.110000,-0.084990,-0.769600,0.000000,0.039120,-0.999200 -0.043580,0.123500,0.464400,0.185400,0.982100,0.032890 -0.526700,-0.182200,0.129000,-0.778100,-0.628200,0.000000 0.169200,0.337900,0.735900,0.000000,-0.123700,-0.992300 0.482100,0.093940,0.399600,0.842200,0.539100,0.000000 0.089570,0.235100,0.742300,0.000000,0.004442,-1.000000 -0.135300,0.244800,0.744300,0.000000,0.007220,1.000000 -0.160700,0.244800,0.744300,0.000000,0.007220,1.000000 -0.439800,-0.178100,0.678000,0.000000,-0.230700,-0.973000 -0.245300,-0.194800,0.677900,0.000000,0.000000,-1.000000 0.499000,-0.110200,-0.769200,0.000000,-0.067990,-0.997700 -0.573800,-0.339600,0.703100,-0.995700,0.049210,0.078230 0.565900,0.174200,0.735400,-0.659700,0.043760,-0.750300 0.389100,0.311000,0.698700,0.000000,0.253000,-0.967500 0.084590,0.194200,0.743400,0.000000,-0.038370,0.999300 0.169200,0.177300,0.741900,-0.000028,-0.118100,0.993000 0.228400,0.279000,0.741200,0.000000,-0.053050,-0.998600 -0.507500,0.225700,0.683400,0.000000,-0.139400,0.990200 0.534500,-0.028650,-0.170600,0.969200,0.246400,0.000008 -0.389000,-0.060050,-0.767300,0.000000,0.144300,-0.989500 -0.296000,0.066220,0.722600,0.000005,0.222800,-0.974900 0.423600,0.153600,0.676500,0.000000,-0.032220,0.999500 -0.538900,-0.110000,-0.769100,-0.251800,-0.072530,-0.965100 -0.296000,0.118700,0.357800,0.000000,0.991500,-0.130400 -0.177600,0.066880,0.615800,0.000000,0.226200,0.974100 0.236800,0.119800,0.355500,-0.010360,0.993700,-0.111200 0.265000,0.117600,0.543100,-0.003272,0.986900,0.161100 -0.186100,0.218200,0.742000,0.000000,0.029000,-0.999600 -0.406700,0.111000,0.571900,0.000000,0.980200,0.197900 -0.507400,-0.002549,-0.744200,0.006324,0.990500,-0.137200 -0.253700,0.211400,0.681900,0.000002,-0.120000,0.992800 -0.152200,0.336500,0.707800,0.000000,-0.260000,0.965600 -0.177600,0.033910,0.615700,-0.000007,-0.212700,0.977100 -0.050730,0.278700,0.743600,0.000000,0.048050,0.998800 0.561100,0.247500,0.742300,-0.198900,-0.087200,-0.976100 -0.543900,-0.149400,0.456000,-0.682600,0.730800,0.000000 0.524400,0.108800,0.731200,0.000000,0.170500,-0.985400 0.543600,-0.149400,0.289700,0.673500,0.739200,0.000019 0.550000,-0.240100,0.464500,-0.092980,-0.995700,0.000000 0.521700,-0.002964,0.371400,0.222500,0.974900,-0.000000 0.521700,-0.002964,-0.499700,0.222500,0.974900,0.000000 0.329900,-0.240300,-0.778900,0.000000,-1.000000,0.004348 -0.279100,0.079500,0.727600,0.000000,-0.239800,0.970800 -0.422900,0.296700,0.697500,0.000033,-0.232100,0.972700 -0.380600,0.109700,0.733300,0.000000,-0.168400,0.985700 0.529300,0.235100,0.742300,0.000033,0.004259,-1.000000 0.304500,0.121800,0.735000,-0.000057,-0.153900,0.988100 0.313600,0.038770,0.718100,-0.009134,-0.227600,0.973700 0.406000,0.112300,0.573200,-0.000031,0.980300,0.197300 0.219900,0.115700,0.557000,0.000000,0.985400,0.170200 0.340200,0.007275,0.700200,-0.956400,0.270200,0.111000 0.544100,-0.093450,0.160000,0.999900,-0.016240,0.000000 0.507500,-0.068310,-0.768400,0.000000,0.109300,-0.994000 -0.109900,0.345400,0.736800,0.000000,0.119100,0.992900 -0.482100,0.050450,0.262700,-0.009666,-0.000600,-1.000000 -0.544100,-0.093450,-0.711100,-1.000000,0.003960,0.000000 -0.507400,-0.026280,-0.759800,0.000001,0.292300,-0.956300 -0.544100,-0.093450,-0.601200,-1.000000,0.004002,-0.000019 0.363700,0.059750,0.723200,0.000000,-0.250400,0.968100 0.540700,-0.057900,-0.217800,0.986800,0.161900,0.000000 -0.544000,-0.101700,-0.127600,-0.999500,-0.031750,-0.000027 -0.544000,-0.101700,0.176900,-0.999500,-0.031740,-0.000028 -0.538800,-0.172600,-0.449000,0.603100,-0.797600,0.000000 0.160700,0.080480,0.725800,0.000000,0.214300,-0.976800 0.084600,0.116200,0.329500,0.000000,0.986200,-0.165300 -0.126900,0.287500,0.740700,0.000000,-0.064970,-0.997900 -0.541500,-0.129100,-0.663200,-0.987900,-0.155300,0.000129 0.245300,0.144100,0.738800,0.000016,-0.122900,0.992400 -0.542300,-0.186400,-0.136000,1.000000,0.004775,0.000000 -0.069760,0.073070,0.674800,0.000064,-0.054780,-0.998500 0.262900,0.240200,0.683700,0.000000,0.162600,-0.986700 -0.281900,0.343800,0.735100,0.000034,-0.275900,-0.961200 0.543000,-0.109800,-0.144500,0.994400,-0.105900,-0.000033 -0.473600,0.363600,0.719600,0.000000,0.950500,-0.310900 -0.177600,0.074350,0.724400,-0.000000,0.220400,-0.975400 0.543800,-0.093440,-0.296700,1.000000,0.003905,0.000000 0.025380,0.135800,0.737700,0.000000,-0.115100,0.993400 -0.473600,0.080480,0.725800,0.000000,0.214300,-0.976800 0.569600,-0.155400,-0.391900,0.807100,0.590400,0.000000 0.558100,-0.152600,-0.338300,0.000538,1.000000,0.000000 -0.540400,-0.135500,-0.355900,-0.999000,-0.044890,0.000000 0.465200,-0.134700,-0.766300,0.000000,-0.009845,-1.000000 0.267800,0.023220,0.270000,0.000000,-0.377600,-0.926000 -0.262200,0.049840,0.678400,0.000000,0.085030,0.996400 0.397500,0.035890,0.677700,0.000777,-0.138600,-0.990300 -0.447500,-0.010530,0.679100,-0.000032,0.635300,-0.772300 0.544000,-0.085260,0.599800,0.998500,0.054840,0.006594 -0.542300,-0.228700,0.413700,0.999800,-0.021040,0.000000 0.219900,-0.018850,-0.757500,0.000000,0.313400,-0.949600 0.067680,0.106100,0.595800,-0.000076,0.826400,0.563000 0.202300,0.111200,0.580300,0.000008,0.978100,0.208300 -0.279100,0.005868,0.607400,-0.017440,0.166500,0.985900 0.017960,0.023640,0.436300,-0.928700,-0.370800,0.000000 0.245300,0.349500,0.711600,-0.001347,-0.530600,0.847600 -0.245300,0.049840,0.678400,0.000000,0.085030,0.996400 0.110000,0.185300,0.740400,0.000000,0.069350,-0.997600 -0.529200,-0.176800,-0.085280,-0.788200,-0.615400,0.000000 -0.526500,0.073060,0.674800,-0.000000,-0.054750,-0.998500 -0.262200,-0.003332,-0.728000,0.000000,0.999800,0.019670 -0.496300,0.042340,0.608300,-0.980500,-0.110600,0.162200 0.526000,-0.182000,-0.059900,0.795200,-0.606300,0.000138 -0.499000,0.194000,0.677600,0.000000,0.100600,-0.994900 0.431400,0.226000,0.683400,0.000354,-0.114000,0.993500 -0.542600,-0.228700,0.117700,1.000000,0.000997,0.000000 -0.550200,-0.240200,-0.448900,0.085960,-0.996300,0.000000 0.570900,0.304300,0.728000,-0.918300,-0.013400,-0.395700 0.465200,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.529200,-0.176800,-0.474300,-0.800200,-0.599800,-0.000071 -0.143800,0.067630,0.724600,-0.000075,-0.196200,0.980600 -0.533100,-0.022670,0.566700,-0.953700,0.300700,0.000000 0.550400,-0.152600,-0.084550,0.219100,0.975700,0.000000 0.087410,0.028760,0.268000,0.000000,-0.296600,-0.955000 0.279200,0.110000,0.299800,-0.000057,0.976100,-0.217200 0.528800,-0.176600,0.236100,0.779200,-0.626800,0.000000 -0.536700,-0.035470,-0.372800,-0.969400,0.245300,0.000000 -0.536700,-0.035470,-0.728100,-0.969400,0.245300,0.000000 -0.536700,-0.035470,-0.550400,-0.969400,0.245300,0.000000 0.180000,0.221100,0.744500,0.000000,-0.000710,1.000000 0.465200,0.101700,0.732300,0.000000,-0.174900,0.984600 -0.050740,0.101700,0.732300,-0.000014,-0.174800,0.984600 -0.015170,0.050430,0.396800,1.000000,-0.002555,0.000000 0.479300,0.007303,0.279600,0.693000,-0.171600,-0.700300 -0.515900,0.345400,0.736500,0.000000,0.140600,0.990100 -0.021900,0.019030,0.523700,0.921500,-0.388400,-0.000127 0.428500,-0.004913,0.661800,0.000000,0.740000,0.672600 -0.406000,-0.017260,0.715800,0.000000,-0.005638,1.000000 0.157900,-0.004913,0.661800,0.000000,0.740000,0.672600 -0.529200,-0.176800,0.506800,-0.788200,-0.615400,0.000000 0.152300,-0.398700,0.701300,0.000000,-1.000000,0.005671 -0.465200,0.244800,0.744300,-0.000020,0.007204,1.000000 0.457400,0.240200,0.683700,0.000000,0.162600,-0.986700 0.564000,0.274500,0.694200,-0.384300,-0.303900,0.871800 -0.495100,0.066290,0.557500,-0.980100,0.198400,0.000000 0.439800,0.019290,0.612000,0.000000,-0.407300,0.913300 0.528900,-0.176700,-0.389800,0.800100,-0.599800,0.000000 0.515900,-0.186000,0.261500,0.052520,-0.998600,0.000000 -0.550500,-0.152500,-0.329800,-0.219700,0.975600,0.000000 0.228400,-0.002999,-0.736500,0.000000,0.999300,0.038300 0.571400,-0.161000,-0.364400,0.994500,0.104700,0.000000 0.475800,-0.184200,-0.749700,0.000038,-0.954400,-0.298400 0.124100,0.005346,0.277100,0.000000,-0.004509,-1.000000 0.269900,0.259600,0.744000,-0.000068,0.031880,0.999500 0.507500,0.100500,0.729700,0.000000,0.177800,-0.984100 -0.126800,0.144100,0.738500,0.000000,-0.122900,0.992400 0.110000,0.337200,0.737900,0.003299,0.152200,0.988300 -0.543500,-0.076990,0.625200,-0.997600,0.068910,0.000000 0.558200,-0.240300,-0.474300,0.011610,-0.999900,0.000000 -0.558200,-0.152700,0.110000,-0.032730,0.999500,-0.000056 -0.543500,-0.076990,0.591300,-0.997600,0.068910,0.000000 0.425200,-0.234800,-0.706600,-0.449100,0.772000,0.449800 0.059220,0.050490,0.264400,0.000000,-0.018600,-0.999800 -0.236800,0.135800,0.737400,0.000004,-0.135000,0.990800 0.067680,0.218900,0.680500,0.000000,0.132500,-0.991200 0.389100,0.050490,0.264400,0.000000,-0.018600,-0.999800 -0.571500,-0.169500,-0.313600,-1.000000,0.003700,0.000000 -0.532800,0.218900,0.680500,0.000000,0.132500,-0.991200 0.288300,0.147700,0.676200,0.000000,-0.046320,0.998900 -0.495100,0.066170,0.270900,-0.972500,0.196300,-0.124900 -0.118400,0.109600,0.675900,0.000000,0.008621,1.000000 -0.545000,-0.239200,0.270000,0.547400,-0.836900,0.000000 -0.571500,-0.169500,0.413700,-1.000000,0.003700,0.000000 0.322100,0.164400,0.675100,0.000000,0.060440,-0.998200 0.448300,0.177200,0.676000,0.000000,0.082220,-0.996600 0.304500,-0.003003,0.650500,0.000000,0.999200,-0.040260 0.339000,0.124300,0.733700,0.000000,0.150500,-0.988600 0.084600,0.329700,0.736800,0.000000,-0.114800,-0.993400 0.550300,-0.152600,-0.288200,0.221500,0.975200,0.000000 0.346800,-0.182700,0.662300,0.000000,-0.693700,0.720300 -0.549700,0.121500,0.734900,0.016400,-0.158500,0.987200 -0.084560,-0.172400,0.670500,0.000000,-0.896200,0.443700 0.093050,0.282500,0.691800,0.000000,0.218400,-0.975900 0.236800,0.363600,0.719600,0.000000,0.955700,-0.294500 0.067670,0.185700,0.742800,0.000000,-0.088280,0.996100 -0.059190,0.210600,0.679400,0.000000,0.122800,-0.992400 0.493700,0.050510,0.271300,0.993500,-0.029630,-0.109900 -0.575000,0.145000,0.719900,-0.999200,0.008654,0.038380 -0.431300,0.276400,0.690500,0.000000,0.205400,-0.978700 0.538400,-0.172600,-0.367200,-0.625800,-0.780000,0.000000 0.530000,0.081270,0.675900,0.000000,0.053760,0.998600 -0.565400,-0.240100,0.320700,-0.115100,-0.993400,0.000000 0.559800,-0.152700,-0.759900,0.048140,0.998800,0.011190 0.541600,-0.228700,-0.719600,-1.000000,-0.007436,0.000000 -0.570300,-0.122800,0.715700,-0.286400,-0.016300,0.958000 0.558300,-0.152700,-0.668800,0.032230,0.999500,-0.000001 0.245300,0.019290,0.612000,0.000126,-0.408200,0.912900 -0.531200,-0.016900,-0.304500,-0.944000,0.330000,0.000000 0.483400,-0.000897,0.609500,0.316300,0.873100,0.370900 -0.431300,0.027020,0.266400,-0.000001,-0.287800,-0.957700 0.211400,0.086480,0.727100,0.000000,0.197700,-0.980300 -0.026060,-0.149300,-0.771500,0.000000,0.781500,-0.623900 0.160000,-0.149300,-0.771500,-0.000090,0.781700,-0.623600 -0.016900,0.244800,0.744300,0.000000,0.007220,1.000000 -0.338300,0.261200,0.687400,0.000000,0.189500,-0.981900 -0.059190,0.120900,0.506200,0.000034,0.995000,0.099390 0.558500,-0.152500,0.659300,0.044030,0.998200,-0.040590 -0.499000,0.086480,0.727100,0.000000,0.197700,-0.980300 0.575000,-0.024990,0.693000,0.998700,0.004152,0.051590 -0.571500,-0.228600,-0.728100,-1.000000,-0.005917,0.000000 -0.295300,-0.010530,0.679100,0.000000,0.635300,-0.772300 0.541700,-0.178100,-0.508200,-0.974400,-0.224700,0.000000 0.543700,-0.101700,-0.609600,0.998700,-0.051520,0.000002 -0.474500,0.110700,0.423100,-0.951200,0.308600,-0.000414 -0.272200,0.243600,0.742300,-0.000079,0.003954,-1.000000 -0.346000,0.136300,0.735400,0.000000,0.133800,-0.991000 -0.033110,0.136300,0.735400,0.000000,0.133800,-0.991000 0.526300,-0.182100,0.117700,0.777800,-0.628500,0.000000 -0.135300,0.039980,0.716000,-0.000094,0.237700,-0.971300 0.443200,-0.313300,-0.702400,-0.998500,0.000027,-0.054940 0.558100,-0.152600,-0.507400,0.000538,1.000000,0.000000 0.228400,0.097750,0.604100,0.000000,0.622600,0.782500 -0.542200,-0.064220,-0.609700,-0.991300,0.131500,0.000206 0.487700,0.355000,0.724800,0.000000,-0.968800,-0.247900 0.161400,-0.003918,0.686100,-0.000120,0.966700,-0.256000 -0.408800,0.104500,0.595000,0.000000,0.848800,0.528700 0.055690,0.358700,0.735400,0.000000,0.374300,0.927300 0.015910,0.029450,0.509600,-0.956300,-0.292300,-0.000309 0.219900,0.246000,0.686500,0.013470,-0.186100,0.982400 0.542600,-0.069680,-0.178300,0.992400,0.123000,0.000000 -0.571400,-0.169500,-0.770100,-0.999100,0.003180,-0.043350 -0.022830,0.077510,0.267700,0.267700,0.446500,-0.853800 -0.109900,0.311000,0.698700,0.000000,0.253000,-0.967500 -0.542300,-0.123700,0.332000,-0.992000,-0.126300,0.000000 -0.543100,-0.116700,-0.491200,-0.995700,-0.092940,0.000030 0.528800,-0.176600,0.092330,0.781700,-0.623600,-0.006292 0.076110,0.228100,0.744400,-0.013160,0.004538,0.999900 0.436300,0.235100,0.742300,0.000000,0.004442,-1.000000 -0.363700,0.337900,0.735900,0.000000,-0.123700,-0.992300 0.270700,0.228100,0.744600,0.000000,-0.011280,0.999900 -0.336700,0.226000,0.742200,0.000011,0.014250,-0.999900 0.538400,-0.172600,0.301000,-0.635400,-0.772200,0.000000 0.523200,-0.019470,-0.757700,0.037650,0.305100,-0.951600 0.214300,0.028760,0.268000,0.000000,-0.296600,-0.955000 -0.493200,0.027370,0.379900,-0.959000,-0.283300,-0.000010 -0.245300,0.270500,0.741600,-0.000001,-0.042100,-0.999100 -0.025370,0.045640,0.719900,0.000063,-0.280900,0.959700 -0.534800,-0.028540,-0.676600,-0.962700,0.270500,0.000000 0.456700,0.050430,0.676300,0.000000,-0.084610,-0.996400 0.185400,0.065040,0.617900,0.000000,0.150700,0.988600 0.541600,-0.186400,0.024680,-1.000000,0.004909,0.000000 -0.401000,-0.181800,-0.757600,-0.000018,-0.985900,-0.167500 0.541600,-0.186400,0.075430,-1.000000,0.004909,0.000000 0.484900,-0.271000,-0.714300,0.833700,0.000032,-0.552300 0.575200,0.319000,0.714700,0.998300,0.023540,-0.054210 0.019110,0.083190,0.591300,-0.912200,0.409700,0.003447 -0.016900,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.558200,-0.211800,0.715800,0.000000,0.000000,1.000000 0.213600,0.076180,0.615200,0.000000,0.324500,0.945900 0.152300,0.018040,0.272300,0.000000,-0.442300,-0.896900 0.528500,-0.010450,-0.017610,0.913900,0.406000,0.000000 0.475400,0.101100,0.601100,0.455200,0.717400,0.527400 -0.278400,0.355400,0.711700,0.000000,0.396300,-0.918100 -0.476700,0.104400,0.354500,-0.920400,0.390800,0.014330 0.570000,-0.234900,-0.685100,0.985100,-0.172000,0.000000 0.084560,0.045020,0.717400,0.000033,0.253800,-0.967300 -0.490500,0.052310,0.719300,0.000000,0.245400,-0.969400 -0.397500,0.330500,0.706100,0.000000,-0.271600,0.962400 -0.540900,-0.143700,-0.279800,-0.967400,0.253100,0.000000 -0.565400,-0.153000,-0.660400,-0.276200,0.961000,0.013120 -0.542400,-0.235300,0.498300,0.968500,-0.248800,-0.008886 0.370000,0.073060,0.674800,0.000000,-0.054750,-0.998500 -0.534700,-0.172100,0.571600,-0.394000,-0.919100,0.000000 0.338300,0.317000,0.700300,0.000000,0.264800,-0.964300 -0.296000,-0.009562,0.715900,0.000000,0.153500,0.988200 -0.534700,-0.172100,0.047230,-0.394000,-0.919100,0.000000 -0.033830,0.151200,0.674400,-0.000020,0.047430,-0.998900 -0.211400,0.336500,0.707800,0.000000,-0.260000,0.965600 0.553700,-0.203300,-0.796500,0.204600,0.000429,-0.978900 0.329900,0.177200,0.676000,0.000000,0.082220,-0.996600 0.484800,0.000598,0.518100,0.750500,0.660800,0.000000 0.346800,0.151600,0.674400,0.000000,0.047750,-0.998900 0.008472,0.316600,0.702200,-0.000055,-0.293100,0.956100 0.296000,-0.228700,-0.768000,-0.010320,0.004485,0.999900 0.515900,0.317000,0.700300,0.000000,0.264800,-0.964300 -0.358000,0.104500,0.595000,0.000000,0.848800,0.528700 -0.121200,0.104500,0.595000,-0.000162,0.849500,0.527600 0.025070,0.094530,0.422900,-0.839600,0.543200,0.000000 0.521700,-0.002964,0.549100,0.222500,0.974900,0.000000 -0.168400,0.215300,0.744200,0.000000,-0.063170,0.998000 0.033850,0.067540,0.724900,0.000000,-0.219200,0.975700 -0.524400,0.085590,0.728900,0.000000,-0.201500,0.979500 -0.565900,0.185500,0.736100,0.679900,0.033970,-0.732500 -0.194500,0.202600,0.743500,0.000000,-0.044100,0.999000 0.439800,0.364000,0.726500,0.000000,0.993600,0.112600 -0.439800,0.112000,0.313400,0.000000,0.981600,-0.191100 0.570500,-0.228600,-0.051440,0.999500,-0.032650,0.000000 0.253700,-0.002730,0.657000,0.000000,0.986200,0.165700 -0.524400,-0.032060,-0.761500,-0.005166,0.267600,-0.963500 -0.189200,0.250000,0.742300,0.000000,0.004143,-1.000000 -0.571400,-0.235100,-0.432000,-0.986900,-0.161200,0.000000 -0.033820,0.080480,0.725800,0.000000,0.214300,-0.976800 0.076130,-0.186000,0.650500,0.000000,-0.999700,0.024610 0.134600,-0.152700,-0.779000,-0.003755,0.974500,-0.224600 0.544400,-0.239000,-0.454600,-0.514100,-0.857700,0.000000 0.541700,-0.235100,0.117700,-0.964900,-0.262400,0.000000 0.406000,-0.032060,-0.761500,0.000000,0.265400,-0.964100 -0.312200,0.215300,0.744200,0.000000,-0.063170,0.998000 -0.543000,-0.070440,-0.558900,-0.995200,0.098310,0.000026 -0.528800,-0.010380,-0.110600,-0.924700,0.380600,0.000000 -0.534800,-0.028540,0.177600,-0.962700,0.270500,0.000000 -0.558700,-0.152700,0.042320,-0.032950,0.999500,-0.000329 -0.531200,-0.016900,0.008465,-0.944000,0.330000,0.000000 -0.160700,0.127600,0.736200,0.000000,-0.169700,0.985500 -0.110000,0.085630,0.728900,-0.002844,-0.182300,0.983200 -0.050020,0.240200,0.683700,0.000000,0.162600,-0.986700 0.522300,-0.185400,-0.288300,0.346300,-0.938100,0.000000 0.056400,0.118800,0.537300,-0.000013,0.989500,0.144800 -0.093040,0.085640,0.728900,-0.000015,-0.178700,0.983900 -0.534800,-0.028540,0.592000,-0.962700,0.270500,0.000000 -0.531200,-0.016900,-0.532800,-0.944000,0.330000,0.000000 -0.414400,0.085590,0.728900,0.000000,-0.201500,0.979500 0.534000,-0.172000,-0.279800,0.397100,-0.917800,0.000000 0.363700,-0.026280,-0.759800,0.000000,0.292300,-0.956300 -0.539100,-0.172500,0.540600,0.602600,-0.798100,0.000000 0.543600,-0.149400,-0.370000,0.673700,0.739000,0.000000 -0.076100,0.100200,0.280500,0.000000,0.653100,-0.757200 0.304500,0.316600,0.700200,0.000175,0.264400,-0.964400 0.217100,0.355000,0.724800,0.000796,-0.968800,-0.247800 0.406000,0.118400,0.343400,0.000000,0.989100,-0.147100 -0.251600,-0.184200,-0.749700,0.000000,-0.954500,-0.298300 -0.126900,0.282500,0.691800,0.000000,0.218400,-0.975900 0.228400,0.219600,0.682900,0.000077,-0.109200,0.994000 -0.569800,-0.239000,-0.234700,-0.636600,-0.771200,0.000000 -0.059190,0.330500,0.706100,0.000000,-0.271600,0.962400 -0.491200,0.021580,0.399600,-0.931000,-0.365000,0.000033 0.541700,-0.123600,-0.381300,0.995100,-0.098460,0.000000 0.540200,-0.135100,-0.760200,0.975000,-0.023290,-0.221100 0.538400,-0.172600,0.630800,-0.635400,-0.772200,0.000000 -0.542900,-0.069660,0.379900,-0.995200,0.098320,0.000000 -0.448200,0.236500,0.744300,0.000051,-0.001800,1.000000 0.528500,-0.010460,0.075430,0.913900,0.405900,0.000010 -0.542900,-0.069660,0.024680,-0.995200,0.098320,0.000000 0.391900,0.351600,0.731900,0.000000,-0.675300,-0.737500 0.528500,-0.010450,0.134600,0.913900,0.406000,-0.000003 -0.253700,0.119300,0.363800,-0.002903,0.994100,-0.108700 0.539800,-0.135400,-0.119100,0.999800,-0.020840,-0.000009 -0.490500,0.236500,0.744300,0.000052,-0.001014,1.000000 0.135300,0.316600,0.702200,0.000000,-0.293100,0.956100 0.059920,0.038900,0.717500,-0.000017,-0.286400,0.958100 -0.558200,-0.398600,0.709100,0.002370,-0.965100,0.262000 0.570800,-0.169500,-0.136000,0.999900,-0.016910,-0.000596 0.540900,-0.129400,-0.068360,0.987600,-0.156900,0.000000 0.542400,-0.117600,0.126200,0.993100,-0.117200,0.000000 0.542400,-0.117600,0.253000,0.993100,-0.117200,0.000000 -0.483000,0.094910,0.566000,-0.825400,0.564500,-0.000064 -0.101500,0.079690,0.268300,0.000000,0.363200,-0.931700 -0.084570,0.121500,0.734900,0.000000,-0.154000,0.988100 0.456700,0.270500,0.741600,0.000000,-0.042090,-0.999100 -0.434100,0.343800,0.735100,0.000000,-0.276100,-0.961100 0.541600,-0.186400,0.430700,-1.000000,0.004909,0.000000 0.028320,0.099040,0.507500,-0.827100,0.562100,0.000000 -0.486200,0.089800,0.540600,-0.859500,0.511100,-0.000296 0.205800,0.078810,0.674500,0.000000,-0.054110,-0.998500 0.372200,0.113200,0.313200,0.000000,0.981100,-0.193600 0.028320,0.099040,0.490600,-0.827100,0.562100,0.000000 0.322000,-0.006015,0.681000,-0.027820,0.743200,-0.668500 -0.482100,-0.037940,-0.763000,0.000000,0.235500,-0.971900 0.536100,-0.028440,0.666200,0.882400,0.369600,-0.291200 0.118400,0.303100,0.696600,0.000000,0.239200,-0.971000 -0.034050,0.102400,0.298200,0.780800,0.622500,-0.053980 -0.414400,0.045820,0.719200,0.000000,-0.255400,0.966800 0.542000,-0.186400,0.667300,-0.984700,0.002690,-0.174200 0.236800,-0.186400,0.677900,0.000000,0.004847,-1.000000 -0.315700,-0.172700,0.674700,0.000000,-0.794600,-0.607200 0.143800,0.099990,0.280800,-0.000015,0.623400,-0.781900 0.347500,0.107100,0.289200,0.000000,0.879300,-0.476200 -0.542600,-0.186400,-0.609700,1.000000,0.004786,0.000000 -0.542600,-0.186400,-0.677300,1.000000,0.004786,0.000000 -0.543900,-0.149400,0.244600,-0.682600,0.730800,0.000000 -0.542600,-0.186400,0.134600,0.999700,0.024630,0.000000 0.042300,0.322600,0.704300,0.000000,-0.292500,0.956300 0.237500,0.104000,0.284300,0.000030,0.761400,-0.648200 -0.041530,-0.152700,-0.786300,-0.011290,0.997200,-0.074450 0.019000,0.074890,0.268400,-0.278700,0.361600,-0.889700 0.389800,0.221000,0.744400,0.000000,-0.025160,0.999700 0.572300,-0.287900,0.680200,0.648600,0.000000,-0.761100 0.169200,0.310600,0.700600,0.000000,-0.226300,0.974100 0.321400,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.177600,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.217800,0.094020,0.676200,-0.000070,0.024480,0.999700 -0.375000,0.086490,0.608200,-0.000072,0.435900,0.900000 0.093050,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.025360,-0.177400,0.665300,0.000000,-0.627000,0.779000 -0.321400,0.360300,0.714500,0.000000,0.693600,-0.720400 -0.126900,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.203000,-0.185600,0.657300,0.000000,-0.961700,0.274100 0.521700,-0.002964,-0.161400,0.222500,0.974900,0.000000 -0.067180,-0.152900,-0.786300,0.019050,0.993900,-0.108300 0.571000,0.185600,0.728700,-0.923500,0.008923,-0.383500 -0.448200,-0.012830,-0.755400,0.000000,0.350500,-0.936600 0.558200,-0.240300,0.506800,0.011480,-0.999900,0.000000 -0.126800,-0.398600,0.709100,0.000000,-0.969400,0.245500 0.482100,-0.233900,-0.702700,0.036410,0.999100,-0.023300 -0.327000,0.032500,0.678400,0.042380,-0.447100,-0.893500 -0.293200,0.032490,0.678400,0.000000,-0.343300,-0.939200 0.541200,-0.064190,-0.646300,0.991300,0.131800,0.000133 -0.214200,0.096280,0.602800,0.001527,0.595800,0.803200 0.482200,-0.364500,-0.719300,0.672800,0.173400,-0.719300 -0.293200,0.351600,0.731900,-0.000694,-0.676300,-0.736600 -0.422900,0.143200,0.674100,0.000000,0.035620,-0.999400 -0.483300,0.094570,0.489800,-0.826900,0.562400,0.000157 0.569800,-0.156300,0.596100,0.831700,0.555200,-0.000143 -0.245200,-0.398600,0.709100,0.000000,-0.969400,0.245500 -0.019270,0.025990,0.286900,0.935600,-0.353000,0.000134 0.526400,-0.182100,-0.465900,0.795300,-0.606300,0.000000 0.569800,-0.156300,-0.097470,0.831700,0.555300,-0.000112 -0.245300,-0.018850,-0.757500,0.000001,0.313400,-0.949600 0.000013,0.227200,0.681700,0.000000,0.143200,-0.989700 -0.025360,-0.002666,0.701200,0.000000,0.999400,-0.035500 -0.095840,0.086980,0.608300,0.000000,0.436100,0.899900 -0.558400,-0.084900,0.678000,-0.220500,0.000895,-0.975400 -0.024390,0.087480,0.394000,0.886000,0.463600,0.000000 0.526300,-0.182100,0.143100,0.777800,-0.628500,0.000000 -0.022540,-0.014460,0.670200,0.000007,0.913800,0.406300 0.245300,0.040400,0.716100,0.000000,0.238500,-0.971100 0.521800,-0.185300,0.456000,0.352700,-0.935700,0.000000 0.000017,0.049840,0.678400,0.000000,0.065260,0.997900 0.329900,0.269300,0.689000,0.000000,0.196800,-0.980500 -0.194500,0.035890,0.677700,0.000000,-0.139600,-0.990200 -0.147200,0.235100,0.742300,0.000000,0.004442,-1.000000 -0.549700,0.322700,0.703900,0.079650,-0.292400,0.953000 -0.472900,0.147800,0.676500,0.000020,-0.016150,0.999900 -0.363000,0.147800,0.676500,0.000000,-0.016100,0.999900 0.528700,-0.010410,-0.702700,0.920100,0.391600,0.012190 -0.310100,-0.014460,0.670200,0.000000,0.913800,0.406300 -0.296700,0.081680,0.676300,-0.000273,0.024030,0.999700 0.575700,0.249700,0.719400,0.998900,0.004069,0.046920 0.472800,0.108900,0.315300,0.816300,0.575800,-0.045360 -0.420100,0.032270,0.714800,0.000000,-0.223900,-0.974600 -0.169100,0.040310,0.716100,-0.000077,0.238200,-0.971200 -0.158600,-0.184300,-0.749700,0.000000,-0.952600,-0.304100 0.024690,-0.181900,-0.763400,0.000000,-0.907600,0.419900 0.313000,-0.032060,-0.761500,0.000000,0.265400,-0.964100 0.567200,0.346600,0.725400,-0.911800,-0.397400,-0.103600 -0.542600,-0.228700,-0.381300,1.000000,0.000929,0.000000 -0.495100,0.034500,0.523700,-0.979500,-0.201200,0.000000 -0.129700,0.096650,0.602600,0.000293,0.598000,0.801500 0.522300,-0.185400,-0.212100,0.346300,-0.938100,0.000000 0.406000,0.050520,0.619300,0.000000,-0.040010,0.999200 0.565400,-0.153000,0.287100,0.260200,0.965500,0.013310 -0.340100,0.017690,0.707400,0.907100,-0.243200,0.343500 0.338300,-0.009748,0.664700,0.000000,0.660100,0.751100 0.543500,-0.076980,-0.110600,0.996000,0.089770,0.000000 0.532800,-0.022760,-0.621600,0.961600,0.274500,0.000000 0.571000,-0.161000,-0.178300,0.996700,0.081690,0.000010 0.439800,-0.233400,-0.745000,-0.012900,0.999900,0.003482 0.543500,-0.076980,-0.085270,0.996000,0.089770,0.000000 -0.518400,-0.233600,-0.620600,0.080560,0.993500,0.080930 -0.466400,-0.287900,-0.672800,0.221600,0.000000,0.975100 -0.466600,-0.330200,-0.717300,0.234000,0.000000,-0.972200 0.396800,0.258500,0.744000,-0.000022,0.031580,0.999500 -0.515900,-0.003000,0.337600,0.030230,0.999500,0.000000 -0.515900,-0.003000,-0.558900,0.030230,0.999500,0.000000 0.372200,-0.009748,0.664700,0.000000,0.660100,0.751100 -0.539100,-0.172500,0.100800,0.602200,-0.798300,-0.000135 -0.081740,0.000880,0.610500,0.000739,0.701300,0.712800 0.543800,-0.085280,-0.753400,0.998700,0.051790,-0.000405 -0.526400,-0.005258,-0.203700,-0.742100,0.670300,0.000000 0.178300,0.044830,0.719400,0.000000,-0.228600,0.973500 0.557400,0.352600,0.735900,-0.019030,0.147000,0.989000 -0.248800,0.118500,0.527500,-0.003305,0.991900,0.127000 -0.515900,-0.233900,-0.643500,-0.017280,0.999800,-0.006529 -0.166300,0.078810,0.674500,0.000000,-0.054110,-0.998500 0.532800,-0.022770,-0.325600,0.961600,0.274500,0.000042 -0.259400,0.092380,0.605600,0.000000,0.509000,0.860800 0.477200,-0.287900,-0.721500,0.460700,0.000000,-0.887500 0.543600,-0.149400,-0.437700,0.673700,0.739000,0.000000 0.270700,0.119600,0.531100,-0.013210,0.989900,0.140900 -0.549000,0.349300,0.709800,-0.000159,0.304600,-0.952500 -0.543500,-0.076990,0.456000,-0.997600,0.068910,0.000000 -0.263100,0.110900,0.571800,0.025280,0.980100,0.196900 0.370200,-0.000720,0.714700,0.142700,0.154300,0.977700 0.540000,-0.043010,0.668200,0.944400,0.106800,-0.311000 0.177600,0.355300,0.717400,0.000000,-0.895800,0.444400 -0.489200,-0.296300,-0.678100,-0.703900,-0.000658,0.710300 0.033830,0.231700,0.684300,0.000000,-0.133200,0.991100 -0.529200,-0.176800,0.210700,-0.788200,-0.615400,0.000000 -0.571500,0.058560,0.711000,0.874700,0.117600,-0.470200 0.024640,0.005741,0.554700,-0.999100,0.042150,0.000000 -0.380600,-0.211700,-0.768300,0.000054,0.123100,0.992400 -0.422000,-0.239500,-0.710200,0.263800,-0.927700,0.264000 -0.536700,-0.035470,-0.059890,-0.969400,0.245300,0.000000 0.365800,0.076180,0.615200,-0.003525,0.370100,0.929000 -0.571500,-0.169500,-0.389700,-1.000000,0.003699,-0.000000 0.007774,0.362100,0.732200,0.000000,0.860400,0.509500 -0.338300,-0.002714,-0.744200,0.000000,0.994700,-0.103300 -0.425700,0.015860,0.270800,0.000032,-0.197700,-0.980300 -0.093030,0.228100,0.744200,0.000000,0.008479,1.000000 0.528500,-0.010450,-0.685800,0.913900,0.406000,-0.000078 0.475300,0.104100,0.520900,0.896000,0.444100,0.000006 0.017640,0.067250,0.675100,0.000000,-0.058490,-0.998300 -0.540400,-0.135500,0.532100,-0.999000,-0.044820,0.000000 -0.540400,-0.135500,0.160000,-0.999000,-0.044820,0.000000 -0.526700,-0.182200,-0.319300,-0.778100,-0.628200,0.000000 0.542600,-0.069660,-0.051440,0.989100,0.147600,0.000000 0.542600,-0.069660,0.134600,0.989100,0.147600,0.000000 0.542400,-0.069700,-0.322100,0.994400,0.105000,0.013110 0.478900,0.098430,0.379900,0.829000,0.559200,0.000000 0.008468,0.160800,0.676900,0.000000,-0.061390,0.998100 0.539500,-0.051350,-0.339000,0.982600,0.185900,0.000000 0.397500,0.160800,0.676600,0.000000,-0.061380,0.998100 0.540700,-0.057900,0.171300,0.986800,0.161900,0.000000 0.526100,-0.005331,-0.426400,0.740200,0.672300,0.000000 0.550500,-0.152600,0.566700,0.219400,0.975600,0.000000 0.568700,-0.238800,-0.634300,0.678800,-0.734400,0.000000 0.422900,0.253100,0.685900,0.000000,0.178400,-0.984000 -0.528800,-0.010380,-0.567400,-0.924700,0.380600,0.000000 0.126900,0.109700,0.733700,-0.000501,-0.145000,0.989400 0.541300,-0.064350,-0.604000,0.991300,0.131700,0.000137 0.292500,0.265200,0.743800,-0.000190,0.009727,1.000000 -0.456700,0.124200,0.430700,-0.017900,0.999700,-0.017650 0.492600,0.065790,0.472900,0.983000,0.183700,0.000000 0.203000,0.210800,0.741800,0.000000,0.038880,-0.999200 -0.563100,0.080920,0.674400,-0.074610,-0.054630,-0.995700 -0.528800,-0.010380,0.506800,-0.924700,0.380600,0.000000 0.017960,0.023640,0.377100,-0.928700,-0.370800,0.000000 0.017960,0.023640,0.453200,-0.928700,-0.370800,-0.000001 0.541700,-0.178100,-0.254400,-0.974400,-0.224700,0.000000 -0.558200,-0.240300,0.346100,-0.011660,-0.999900,0.000000 -0.558800,-0.163800,-0.794800,-0.430400,0.190200,-0.882300 0.574900,0.036180,0.692900,0.980100,-0.197800,-0.016830 0.230800,0.221100,0.744500,0.000000,-0.000710,1.000000 0.186100,-0.178100,0.678000,0.000000,-0.230700,-0.973000 0.570500,-0.228600,0.066970,0.999500,-0.032640,0.000022 -0.021890,0.081750,0.439100,0.925300,0.379100,0.012980 0.572300,-0.067980,0.680200,0.647900,-0.008784,-0.761700 -0.549700,0.080460,0.725800,0.040010,0.172400,-0.984200 -0.346800,0.027020,0.266400,0.000000,-0.287900,-0.957700 0.246000,-0.006089,0.681100,0.000000,0.726300,-0.687400 -0.540900,-0.143700,-0.457400,-0.969700,0.244300,-0.000023 0.541700,-0.178100,-0.203700,-0.974400,-0.224700,0.000000 -0.341100,0.355000,0.724800,0.000000,-0.968800,-0.247900 -0.016730,-0.003399,0.532100,0.270800,0.962600,0.000004 -0.541500,-0.129500,0.630800,-0.987600,-0.157000,0.000000 0.305200,-0.010520,0.679100,-0.001505,0.633300,-0.773900 -0.465200,-0.169500,-0.797100,-0.000238,0.003709,-1.000000 -0.203000,0.228100,0.744200,0.000000,0.008479,1.000000 -0.543000,-0.117700,0.253000,-0.995600,-0.093420,0.000000 0.004147,0.214100,0.744200,-0.000249,-0.059760,0.998200 0.051470,0.246100,0.684700,0.000000,0.168100,-0.985800 0.377800,0.102800,0.600500,-0.006776,0.703200,0.710900 -0.152200,-0.186600,-0.768100,0.000000,-0.374900,0.927100 -0.047910,0.092400,0.605500,0.000028,0.533900,0.845600 0.569800,-0.155400,0.233300,0.831200,0.555900,0.000194 -0.542300,-0.123700,0.069790,-0.992000,-0.126400,0.000012 0.000024,0.177200,0.676000,-0.000012,0.082260,-0.996600 0.570500,-0.228600,-0.567400,0.999500,-0.032650,0.000000 -0.400300,0.343800,0.735100,0.000000,-0.276100,-0.961100 -0.526700,-0.182200,-0.226200,-0.778100,-0.628200,0.000000 -0.529200,-0.176800,-0.144500,-0.788200,-0.615400,0.000000 0.044420,0.076180,0.615200,0.009986,0.340900,0.940100 0.533100,-0.022670,0.258000,0.953700,0.300800,-0.000025 0.329900,0.143300,0.736300,0.000000,0.122300,-0.992500 0.306100,0.226000,0.742200,0.000000,0.014140,-0.999900 -0.540400,-0.135500,0.134600,-0.999000,-0.044820,0.000000 -0.526700,-0.182200,0.044410,-0.778100,-0.628200,0.000000 0.176900,0.352600,0.736100,0.000014,0.128700,0.991700 0.575900,0.202700,0.703200,1.000000,0.003668,-0.008436 0.073310,0.259100,0.743600,0.000000,0.034840,0.999400 -0.369300,0.021170,0.268400,-0.000012,-0.369900,-0.929100 0.219900,0.092850,0.676200,0.000000,-0.003475,1.000000 -0.437000,0.000879,0.610500,0.000000,0.698500,0.715600 0.110000,0.363600,0.719600,0.000000,0.955700,-0.294500 -0.426400,-0.181800,-0.757600,0.000018,-0.985900,-0.167500 -0.489500,-0.235200,-0.642400,0.481100,0.733200,0.480500 -0.465200,0.143300,0.736300,0.000000,0.122300,-0.992500 -0.279100,0.295500,0.742200,0.000000,0.074740,0.997200 -0.558200,-0.296400,0.715800,0.000000,0.000000,1.000000 0.110700,0.130200,0.734600,0.000000,0.143700,-0.989600 0.307300,0.256300,0.742200,0.000000,-0.041560,-0.999100 -0.185300,-0.010530,0.679100,0.000000,0.635300,-0.772300 0.144500,-0.010530,0.679100,-0.000312,0.633900,-0.773400 0.531200,-0.016890,-0.007036,0.944300,0.329200,-0.000006 0.389100,0.288400,0.693100,-0.000027,0.228900,-0.973400 0.363700,0.194200,0.743400,0.000000,-0.057540,0.998300 0.068380,-0.004251,0.686100,0.000000,0.966500,-0.256600 0.245300,0.288400,0.693100,0.000000,0.228900,-0.973500 0.541700,-0.178100,0.134600,-0.974400,-0.224700,0.000000 0.575600,0.191900,0.740500,0.890900,-0.016810,0.453800 0.456700,0.111500,0.305200,0.011050,0.978200,-0.207200 -0.217100,0.351600,0.731900,0.000000,-0.667200,-0.744900 0.051440,0.157500,0.674700,0.000053,0.054630,-0.998500 -0.143800,0.303900,0.741500,0.000000,0.084850,0.996400 0.439800,0.304500,0.739400,0.000000,-0.086030,-0.996300 0.236800,0.304500,0.739400,0.000000,-0.086030,-0.996300 0.528500,-0.010460,0.007766,0.913900,0.405900,0.000008 0.253000,0.065040,0.617900,0.000000,0.150800,0.988600 -0.279100,0.225700,0.683400,-0.000001,-0.139400,0.990200 0.528500,-0.010460,-0.093730,0.913900,0.405900,0.000002 0.569800,-0.156300,0.477700,0.831700,0.555200,-0.000143 -0.567300,0.248200,0.693000,0.675300,-0.084350,0.732700 -0.107100,0.078810,0.674500,-0.000040,-0.054100,-0.998500 -0.403800,-0.157300,-0.795400,-0.000475,0.532100,-0.846700 -0.337000,0.001481,0.710100,0.520100,0.667800,0.532400 0.463700,0.243800,0.742300,0.000000,0.004082,-1.000000 -0.541300,0.262200,0.741900,-0.000002,-0.040810,-0.999200 0.548300,-0.162200,-0.797000,0.027270,0.075870,-0.996700 0.482100,0.093940,0.306600,0.842200,0.539100,0.000012 0.143800,0.278700,0.743600,0.000000,0.048050,0.998800 -0.084570,0.322700,0.704000,0.000000,-0.292500,0.956300 -0.346800,0.310600,0.700600,0.000000,-0.226500,0.974000 -0.059190,0.253200,0.744200,0.000000,0.045070,0.999000 0.550300,0.124300,0.733700,-0.048940,0.182600,-0.982000 -0.079630,-0.181800,-0.757600,-0.000018,-0.985300,-0.171000 0.085300,0.349300,0.709800,0.000000,0.304500,-0.952500 -0.431300,0.185800,0.742500,0.000000,-0.088110,0.996100 0.534500,-0.028650,-0.585000,0.969200,0.246400,0.000000 -0.306600,0.073060,0.674800,0.000000,-0.054750,-0.998500 -0.485900,-0.302000,-0.714500,-0.529100,0.000008,-0.848600 -0.194500,0.288600,0.695300,0.000000,-0.232900,0.972500 -0.493200,-0.276600,-0.706600,-0.890800,-0.000738,-0.454400 -0.507400,0.185300,0.740400,0.000000,0.069350,-0.997600 0.454000,-0.310500,-0.720900,-0.494600,-0.001954,-0.869100 -0.008451,-0.009563,0.715900,0.000000,0.151700,0.988400 -0.219900,-0.002730,0.657000,0.000000,0.986200,0.165700 -0.298800,-0.004913,0.661800,0.000000,0.740000,0.672600 -0.507500,0.304600,0.699100,0.000000,-0.215400,0.976500 -0.059190,0.304600,0.699100,-0.000009,-0.215400,0.976500 0.162800,0.076180,0.615200,0.000000,0.324600,0.945900 -0.037520,0.117100,0.447500,0.972500,0.232800,0.001526 -0.262200,0.311000,0.698700,0.000000,0.253000,-0.967500 -0.211400,0.323000,0.702000,0.000000,0.268800,-0.963200 0.157900,0.081290,0.676300,-0.000020,0.082240,0.996600 -0.542600,-0.235300,0.193800,0.975700,-0.219300,0.000000 0.541400,-0.123100,-0.643500,0.995200,-0.098340,0.000002 -0.194500,0.355300,0.717400,0.000000,-0.902300,0.431100 -0.565000,0.237700,0.744800,0.023670,-0.007428,0.999700 -0.355600,0.016570,0.715700,0.019810,-0.043320,0.998900 -0.524400,0.317000,0.700300,0.000000,0.264800,-0.964300 0.344000,0.023220,0.270000,0.000000,-0.377600,-0.926000 0.538200,-0.227500,-0.668400,-0.760300,0.644000,-0.084720 0.179400,0.201100,0.743700,0.000000,-0.046780,0.998900 0.565900,0.194500,0.683900,-0.666300,-0.047940,0.744200 0.475300,0.104000,0.326300,0.879400,0.476000,-0.003570 0.211500,0.310600,0.700600,0.000000,-0.226300,0.974100 -0.524400,0.270500,0.743600,0.000000,0.012980,0.999900 -0.573800,-0.012180,0.705900,-0.994200,-0.106900,0.010780 -0.015290,0.044150,0.591300,0.996800,-0.080100,0.003885 -0.456700,-0.152400,-0.779100,-0.001755,0.961900,-0.273500 0.338300,0.092850,0.676200,0.000000,-0.003471,1.000000 -0.541600,-0.128800,-0.578700,-0.988100,-0.154000,0.000151 -0.543000,-0.117700,0.549100,-0.995600,-0.093450,0.000030 -0.172700,0.358700,0.734900,0.001167,0.351400,0.936200 -0.170000,0.252500,0.742300,0.000000,-0.022450,-0.999700 -0.339100,0.252500,0.742300,-0.000019,-0.022270,-0.999800 0.186400,-0.153100,-0.786000,0.003482,0.995600,-0.093210 -0.541500,-0.129500,-0.401000,-0.987600,-0.157000,0.000000 -0.541500,-0.129500,0.301000,-0.987600,-0.157000,0.000000 -0.531200,-0.016900,-0.439800,-0.944000,0.330000,0.000000 -0.451400,0.250000,0.742300,0.000000,0.004143,-1.000000 0.169200,0.085250,0.271700,0.000002,0.431200,-0.902300 0.110000,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.211500,0.101300,0.673700,0.000000,-0.018670,-0.999800 -0.304500,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.160700,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.558200,-0.152700,0.186100,-0.032840,0.999500,0.000055 0.482100,0.126500,0.676000,0.000000,0.006753,1.000000 0.422900,0.336500,0.707800,0.000000,-0.259900,0.965600 -0.431300,0.328900,0.703600,0.000000,0.273000,-0.962000 -0.389100,0.085590,0.728900,0.000000,-0.201500,0.979500 0.473700,0.360300,0.714500,0.000000,0.693600,-0.720400 0.491700,0.071800,0.284100,0.970000,0.242900,-0.000080 -0.537900,-0.132300,-0.765000,-0.495300,-0.150900,-0.855500 0.575500,0.067220,0.719000,0.972500,-0.079290,0.218900 0.143800,-0.026280,-0.759800,0.000000,0.292300,-0.956300 0.059210,0.355200,0.717700,-0.000481,-0.895300,0.445600 -0.296000,-0.235300,-0.767900,0.000000,-0.064160,0.997900 0.203000,0.109600,0.675900,0.000000,0.008510,1.000000 0.339400,0.032790,0.709800,-0.479400,0.544600,-0.688200 -0.050740,0.355300,0.717400,-0.001283,-0.879100,0.476500 -0.033830,0.177800,0.678100,-0.009857,-0.081310,0.996600 -0.281900,-0.172700,0.674700,0.000000,-0.794600,-0.607200 0.570900,0.101200,0.684600,-0.883100,0.002735,0.469100 0.541600,-0.228700,0.379900,-1.000000,-0.007436,0.000000 -0.027460,0.092760,0.551900,0.857900,0.513800,-0.000042 -0.397500,0.118100,0.675600,0.000000,-0.003425,1.000000 -0.571400,-0.235100,0.066970,-0.986900,-0.161200,0.000000 -0.321400,0.304500,0.739400,0.000000,-0.086030,-0.996300 0.050770,0.363600,0.719600,0.000000,0.955700,-0.294500 -0.262200,-0.002834,-0.415100,0.029370,0.999400,-0.019560 0.482100,0.270500,0.741600,0.000000,-0.042090,-0.999100 0.177600,0.270500,0.741600,0.000000,-0.042090,-0.999100 -0.456700,0.177800,0.678400,-0.009851,-0.061710,0.998000 -0.109900,-0.002999,-0.736500,0.000000,0.999300,0.038300 -0.515900,-0.003000,0.185400,0.030230,0.999500,0.000000 -0.542600,-0.194800,0.363000,0.999800,0.019620,0.000000 0.304500,-0.313300,0.716000,-0.009814,-0.019710,0.999800 0.143800,0.126400,0.673600,0.000000,0.014140,-0.999900 -0.542100,-0.211800,0.219200,0.999900,-0.013090,-0.003281 0.321400,-0.321700,0.716000,-0.009814,-0.019700,0.999800 -0.152300,-0.003333,-0.237500,-0.029540,0.999400,0.019680 0.203000,0.125600,0.456000,0.000000,0.999800,0.021250 -0.380600,0.126500,0.675700,0.000000,-0.014070,0.999900 -0.262200,-0.118800,0.716200,-0.006549,-0.016420,0.999800 0.571000,-0.161000,-0.195200,0.995300,0.097130,0.004035 -0.321400,0.124200,0.447500,0.000003,0.999900,0.011460 0.439800,-0.398700,0.701300,0.000000,-1.000000,0.005671 0.203000,-0.003331,-0.719600,0.000000,1.000000,-0.000043 -0.499000,-0.003331,-0.685800,-0.000006,1.000000,-0.000025 -0.118400,-0.003331,-0.618100,0.000000,1.000000,0.000000 0.329900,-0.186000,0.439100,0.000000,-1.000000,0.000000 -0.465200,-0.279400,0.677900,0.000000,0.000000,-1.000000 0.203000,-0.186000,0.379900,0.000000,-1.000000,0.000000 -0.279100,-0.186000,-0.305200,0.000000,-1.000000,0.000000 0.160700,-0.186000,0.270000,0.000000,-1.000000,0.000000 0.262200,-0.186000,-0.288300,0.000000,-1.000000,0.000000 0.338300,-0.186000,-0.313600,0.000000,-1.000000,0.000000 0.372200,-0.003331,-0.457400,0.000000,1.000000,0.000000 -0.456700,-0.186000,-0.322100,0.000000,-1.000000,0.000000 0.219900,-0.186000,0.253000,0.000000,-1.000000,0.000000 -0.355200,-0.186000,-0.203700,0.000000,-1.000000,0.000000 -0.355200,-0.186000,0.506800,0.000000,-1.000000,0.000000 0.219900,-0.186000,0.270000,0.000000,-1.000000,0.000000 0.279100,-0.186000,0.379900,0.000000,-1.000000,0.000000 -0.363700,-0.186000,-0.322100,0.000000,-1.000000,0.000000 0.355200,-0.003331,-0.457400,0.000000,1.000000,0.000000 -0.431300,-0.186000,-0.711100,0.000000,-1.000000,0.000000 0.262200,-0.186000,-0.220600,0.000000,-1.000000,0.000000 0.355200,-0.287900,0.715800,-0.000000,-0.000059,1.000000 -0.507400,-0.186000,0.566000,0.000000,-1.000000,0.000000 -0.499000,-0.003331,-0.347500,-0.000044,1.000000,0.000000 -0.363700,-0.186000,-0.398200,0.000000,-1.000000,0.000000 -0.118400,-0.186000,-0.398200,0.000000,-1.000000,0.000000 0.126900,-0.186000,-0.279800,0.000000,-1.000000,0.000000 0.101500,-0.186000,0.270000,0.000000,-1.000000,0.000000 -0.372100,-0.003331,-0.127600,0.000000,1.000000,0.000000 0.338300,-0.003331,0.117700,0.000000,1.000000,0.000000 0.262200,-0.186000,0.160000,0.000000,-1.000000,0.000000 0.465200,-0.003331,-0.212100,0.000000,1.000000,0.000000 0.253700,-0.003331,0.244600,-0.000007,1.000000,0.000003 -0.228300,-0.003331,-0.178300,0.000000,1.000000,0.000000 -0.236800,-0.186000,-0.161400,0.000000,-1.000000,0.000000 0.270700,-0.003331,0.244600,0.000000,1.000000,0.000000 -0.160700,-0.186000,-0.482800,0.000000,-1.000000,0.000000 0.143800,-0.186000,-0.186800,0.000000,-1.000000,0.000000 0.363700,-0.003331,0.193800,0.000000,1.000000,0.000000 -0.186100,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 -0.363700,-0.169500,0.715800,0.000000,0.000000,1.000000 0.541600,-0.228700,0.329200,-1.000000,-0.007436,0.000000 -0.482100,-0.186000,0.185400,0.000000,-1.000000,0.000000 -0.414400,-0.186000,-0.491200,0.000000,-1.000000,0.000000 -0.422900,-0.186000,-0.440500,0.000000,-1.000000,0.000000 0.389100,-0.003331,-0.398200,0.000000,1.000000,0.000000 0.169100,-0.002833,0.185400,-0.039240,0.998800,0.029450 0.380600,-0.186000,-0.195200,0.000000,-1.000000,0.000000 -0.406000,-0.186000,-0.364400,0.000000,-1.000000,0.000000 -0.422900,-0.003331,-0.440500,0.000000,1.000000,0.000000 0.499000,-0.003331,-0.499700,0.000035,1.000000,0.000000 0.465200,-0.003331,-0.643500,0.000000,1.000000,0.000000 0.194500,-0.177900,-0.797100,0.000000,0.000000,-1.000000 -0.542600,-0.186400,0.616700,1.000000,0.004786,0.000000 0.177600,-0.186000,0.582900,0.000000,-1.000000,0.000000 -0.270600,-0.186000,0.405300,0.000000,-1.000000,0.000000 -0.380600,-0.186000,-0.254400,0.000000,-1.000000,0.000000 0.363700,-0.186000,-0.550400,0.000000,-1.000000,0.000000 -0.143800,-0.186000,-0.542000,0.000000,-1.000000,0.000000 -0.542600,-0.220200,-0.161400,1.000000,-0.000059,0.000000 -0.219900,-0.186000,0.185400,0.000000,-1.000000,0.000000 -0.236800,-0.003331,0.134600,0.000000,1.000000,0.000000 -0.296000,-0.186000,-0.575800,0.000000,-1.000000,0.000000 -0.279100,-0.003331,-0.499700,0.000000,1.000000,0.000000 0.262200,-0.186000,0.481400,0.000000,-1.000000,0.000000 0.363700,-0.186000,-0.575800,0.000000,-1.000000,0.000000 -0.414400,-0.372500,0.715800,0.000000,0.000000,1.000000 0.422900,-0.279400,0.677900,0.000000,0.000000,-1.000000 -0.236800,-0.003331,0.160000,0.000000,1.000000,0.000000 0.549800,0.118100,0.675600,-0.008069,-0.006588,0.999900 -0.109900,-0.003331,-0.508200,0.000000,1.000000,0.000000 -0.542600,-0.203300,-0.398200,1.000000,0.000000,0.000000 -0.211400,-0.186000,0.642100,0.000000,-1.000000,0.000000 -0.160700,-0.003331,-0.550400,0.000000,1.000000,0.000000 -0.236800,-0.186000,-0.440500,0.000000,-1.000000,0.000000 -0.211400,-0.186000,-0.584300,0.000000,-1.000000,0.000000 0.203000,-0.003331,-0.499700,0.000000,1.000000,0.000000 -0.152200,-0.186000,0.574400,0.000000,-1.000000,0.000000 -0.312900,-0.003331,0.219200,0.000000,1.000000,0.000000 0.549800,-0.338600,0.677900,0.000000,0.000000,-1.000000 -0.431300,-0.186000,-0.262900,0.000000,-1.000000,0.000000 0.414400,-0.186000,0.396800,0.000000,-1.000000,0.000000 -0.321400,-0.186000,-0.542000,0.000000,-1.000000,0.000000 -0.338300,-0.321700,0.677900,0.000000,0.000000,-1.000000 0.406000,-0.186000,0.312200,0.000000,-1.000000,0.000000 0.059220,0.262200,0.741900,0.000000,-0.041020,-0.999200 0.558300,-0.051020,0.678000,0.121100,0.057990,-0.990900 -0.126800,0.101300,0.673700,0.000000,-0.018670,-0.999800 0.355200,0.109600,0.675900,0.000000,0.008510,1.000000 -0.186100,0.092910,0.673900,0.000000,-0.028780,-0.999600 -0.016920,0.177700,0.678400,-0.009883,-0.091040,0.995800 -0.312900,-0.093400,0.716300,-0.003281,-0.013090,0.999900 -0.439800,-0.034170,0.716200,0.006580,0.016360,0.999800 -0.253700,-0.186000,-0.093730,0.000000,-1.000000,0.000000 0.534400,-0.172100,0.379900,0.389800,-0.920900,0.000000 0.571000,-0.186400,-0.051450,0.999900,0.013130,0.003261 0.050760,-0.003331,-0.711100,0.000000,1.000000,0.000000 -0.067650,-0.003331,-0.668900,0.000000,1.000000,0.000000 0.329900,-0.186000,0.033140,0.000000,-1.000000,0.000000 -0.033820,-0.186000,-0.279800,0.000000,-1.000000,0.000000 0.084590,-0.186000,-0.449000,0.000000,-1.000000,0.000000 0.304500,-0.003331,-0.059900,0.000000,1.000000,0.000000 0.050760,-0.003331,-0.279800,0.000000,1.000000,0.000000 -0.372100,-0.186000,0.024680,0.000000,-1.000000,0.000000 0.203000,-0.186000,0.033140,0.000000,-1.000000,0.000000 0.570800,-0.186400,-0.068370,1.000000,0.006623,-0.003324 0.262200,-0.076450,0.715800,0.000000,0.000000,1.000000 0.093040,-0.347100,0.715800,0.000000,0.000000,1.000000 -0.093020,-0.003331,-0.288300,0.000000,1.000000,0.000000 0.050760,-0.186000,0.363000,0.000000,-1.000000,0.000000 -0.177600,-0.186000,-0.076810,0.000000,-1.000000,0.000000 0.456700,-0.084910,0.715800,0.000000,0.000000,1.000000 -0.084560,-0.186000,0.472900,0.000000,-1.000000,0.000000 -0.067650,-0.003331,-0.305200,0.000000,1.000000,0.000000 0.076130,-0.186000,0.100800,0.000000,-1.000000,0.000000 -0.059190,-0.186000,-0.127600,0.000000,-1.000000,0.000000 -0.571500,-0.203300,-0.085270,-1.000000,0.000000,0.000000 -0.093030,-0.237100,0.715800,0.000000,0.000000,1.000000 0.093050,-0.003331,0.185400,0.000000,1.000000,0.000000 -0.050730,-0.186000,0.244600,0.000000,-1.000000,0.000000 -0.542300,-0.194900,0.050050,1.000000,0.000000,0.000000 -0.160700,-0.186000,0.092340,0.000000,-1.000000,0.000000 0.245300,-0.186000,0.050050,0.000000,-1.000000,0.000000 -0.571500,-0.211800,-0.026060,-1.000000,0.000000,0.000000 0.076120,-0.220200,0.716200,-0.003299,0.006576,1.000000 0.076130,-0.003331,0.236100,0.000000,1.000000,0.000000 0.093040,-0.254100,0.715800,-0.003252,-0.003258,1.000000 0.101500,-0.101800,0.715800,0.000000,0.000000,1.000000 0.042290,-0.101800,0.715800,0.000000,0.000000,1.000000 0.160700,-0.076450,0.715800,0.000000,0.000000,1.000000 -0.177600,-0.003331,0.058510,0.000000,1.000000,0.000000 0.093050,-0.186000,0.422200,0.000000,-1.000000,0.000000 0.033850,-0.186000,-0.584300,0.000000,-1.000000,0.000000 -0.431300,-0.003331,-0.042980,0.000000,1.000000,0.000000 0.042300,-0.003331,-0.262900,0.000000,1.000000,0.000000 0.532800,-0.051080,0.715800,0.000000,0.000000,1.000000 0.490600,-0.186000,-0.017610,0.000000,-1.000000,0.000000 0.067680,-0.186000,-0.440500,0.000000,-1.000000,0.000000 0.076130,-0.003331,-0.643500,0.000000,1.000000,0.000000 0.025390,-0.186000,-0.542000,0.000000,-1.000000,0.000000 0.042310,0.270500,0.741600,0.000000,-0.042090,-0.999100 0.101500,-0.003331,-0.000695,0.000000,1.000000,0.000000 -0.008443,-0.186000,-0.449000,0.000000,-1.000000,0.000000 -0.008443,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.542300,-0.194900,-0.017610,1.000000,-0.000000,0.000000 0.008463,-0.364000,0.715800,0.000000,0.000000,1.000000 0.008473,-0.186000,-0.660400,0.000000,-1.000000,0.000000 -0.456700,-0.003331,0.007763,0.000000,1.000000,0.000000 -0.177600,-0.003331,0.016220,0.000000,1.000000,0.000000 0.236800,-0.003331,0.016220,0.000000,1.000000,0.000000 0.016930,-0.186000,0.625200,0.000000,-1.000000,0.000000 0.016930,-0.186000,0.540600,0.000000,-1.000000,0.000000 -0.338300,0.049890,0.678400,0.017840,0.155100,0.987700 -0.550300,-0.152500,0.067690,-0.219000,0.975700,0.003489 0.101500,0.125600,0.456000,0.000000,0.999800,0.021250 -0.515900,-0.186000,0.075430,-0.040710,-0.999200,0.000000 0.067670,-0.003331,-0.491200,0.000000,1.000000,0.000000 0.059220,-0.003331,-0.152900,0.000000,1.000000,0.000000 0.076130,-0.186000,0.160000,0.000000,-1.000000,0.000000 0.093050,-0.003331,-0.152900,0.000000,1.000000,0.000000 -0.177600,-0.051080,0.715800,0.000000,0.000000,1.000000 -0.219900,-0.003331,0.075420,0.000000,1.000000,0.000000 0.397500,-0.003331,-0.076810,0.000000,1.000000,0.000000 -0.397500,-0.003331,-0.042980,0.000000,1.000000,0.000000 -0.067640,-0.347100,0.677900,0.000000,0.000000,-1.000000 0.284800,-0.153600,-0.789200,0.001810,0.950500,-0.310800 -0.386900,0.094150,0.676200,-0.000328,0.046640,0.998900 0.569600,-0.155400,-0.518700,0.823200,0.567800,0.000000 -0.569800,-0.239000,0.238900,-0.636600,-0.771200,0.000000 0.571100,-0.161500,0.074970,0.997300,0.072950,-0.003076 0.490600,0.134900,0.673800,0.000000,0.024070,-0.999700 -0.093020,-0.186000,-0.009150,0.000000,-1.000000,0.000000 0.084590,0.134900,0.675800,0.000000,-0.018810,0.999800 -0.093020,-0.186000,-0.059900,0.000000,-1.000000,0.000000 0.570800,-0.169500,0.354500,0.999300,-0.036580,-0.000001 -0.269900,0.246100,0.684700,0.000000,0.168100,-0.985800 0.126900,0.169200,0.677800,0.000008,-0.088930,0.996000 -0.135300,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 0.084580,-0.042620,0.715800,0.000000,0.000000,1.000000 0.067690,-0.002833,0.024660,0.039200,0.998800,-0.029430 -0.042270,-0.186000,-0.026070,0.000000,-1.000000,0.000000 -0.321400,0.287500,0.740700,0.000000,-0.064970,-0.997900 -0.397500,0.253200,0.744200,0.000000,0.045070,0.999000 -0.042270,-0.186000,0.024680,0.000000,-1.000000,0.000000 0.042290,-0.084910,0.715800,0.000000,0.000000,1.000000 0.203000,0.125200,0.413800,0.000000,0.999100,-0.042380 0.067690,0.177200,0.676000,0.000003,0.082210,-0.996600 0.118400,-0.177400,0.665300,0.000000,-0.627000,0.779000 -0.515900,-0.003000,-0.237500,0.030230,0.999500,0.000000 0.515900,-0.003004,0.227700,-0.025750,0.999700,0.000000 0.570800,-0.194900,-0.186800,0.999800,-0.019630,0.000000 0.570500,-0.186400,-0.372800,0.999800,-0.019670,0.000003 0.571100,-0.169500,-0.389700,0.999400,-0.034280,0.000000 -0.490500,-0.228600,-0.768000,0.000000,0.026500,0.999600 0.570800,-0.220300,0.320700,0.999800,-0.019850,0.000000 -0.507500,-0.228600,-0.768000,0.000000,0.026500,0.999600 0.570800,-0.169500,-0.499700,0.999500,-0.031030,-0.006572 0.539800,-0.135400,0.379900,0.999800,-0.021030,-0.000004 0.076090,-0.002833,0.058530,-0.039240,0.998800,0.029450 0.152200,0.125700,0.447500,0.000000,1.000000,0.008749 0.490600,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.406000,-0.003331,-0.660400,0.000000,1.000000,0.000000 0.406000,-0.186000,-0.711100,0.000000,-1.000000,0.000000 -0.431300,-0.186000,0.160000,0.000000,-1.000000,0.000000 0.236800,-0.003331,-0.668900,0.000000,1.000000,0.000000 0.262200,-0.355500,0.677900,0.000000,0.000000,-1.000000 0.406000,0.125700,0.439100,0.000000,1.000000,-0.004263 -0.431300,-0.186000,-0.372800,0.000000,-1.000000,0.000000 -0.431300,-0.003331,-0.499700,0.000000,1.000000,0.000000 0.296000,-0.186000,-0.668900,0.000000,-1.000000,0.000000 -0.422900,-0.003331,-0.178300,0.000000,1.000000,0.000000 0.431400,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.372100,-0.186000,-0.516600,0.000000,-1.000000,0.000000 0.169200,-0.186000,0.523700,0.000000,-1.000000,0.000000 0.439800,-0.186000,-0.415100,0.000000,-1.000000,0.000000 0.279100,-0.186000,0.549100,0.000000,-1.000000,0.000000 0.321400,-0.186000,0.549100,0.000000,-1.000000,0.000000 -0.465200,-0.186000,0.566000,0.000000,-1.000000,0.000000 0.262200,-0.003331,0.633600,0.000000,1.000000,0.000037 -0.135300,-0.186000,-0.601200,0.000000,-1.000000,0.000000 -0.363700,-0.003331,-0.406700,0.000000,1.000000,0.000000 0.473600,-0.186000,0.312200,0.000000,-1.000000,0.000000 -0.118400,-0.186000,-0.423600,0.000000,-1.000000,0.000000 -0.532800,-0.245600,0.715800,0.000000,0.000000,1.000000 0.499000,-0.237100,0.715800,0.000000,0.000000,1.000000 -0.355200,-0.186000,0.236100,0.000000,-1.000000,0.000000 0.422900,-0.220200,0.677900,0.000000,0.000000,-1.000000 -0.152200,-0.186000,-0.516600,0.000000,-1.000000,0.000000 -0.482100,-0.186000,0.210700,0.000000,-1.000000,0.000000 -0.329800,-0.186000,-0.110600,0.000000,-1.000000,0.000000 -0.236800,-0.003331,-0.575800,0.000000,1.000000,0.000000 -0.152200,-0.186000,0.515200,0.000000,-1.000000,0.000000 -0.571500,-0.211800,-0.499700,-1.000000,0.000000,0.000000 0.203000,-0.003331,-0.516600,0.000000,1.000000,0.000000 -0.160700,-0.003331,-0.508200,0.000000,1.000000,0.000000 0.490600,-0.186000,0.193800,0.000000,-1.000000,0.000000 0.570500,-0.194800,0.354500,0.999800,0.019620,0.000000 -0.228300,-0.003331,-0.152900,0.000000,1.000000,0.000000 -0.177600,-0.003331,0.227700,0.000000,1.000000,0.000000 -0.542600,-0.203300,-0.736500,1.000000,0.000000,0.000000 0.414400,-0.228700,0.677900,0.000000,0.000000,-1.000000 0.110000,-0.186000,-0.279800,0.000000,-1.000000,0.000000 -0.296000,-0.003331,-0.102200,0.000000,1.000000,0.000000 0.118400,-0.186000,-0.161400,0.000000,-1.000000,0.000000 -0.101500,-0.003331,-0.305200,0.000000,1.000000,0.000000 -0.101500,-0.186000,-0.398200,0.000000,-1.000000,0.000000 -0.169100,-0.003331,0.109300,0.000000,1.000000,0.000000 0.219900,-0.186000,-0.465900,0.000000,-1.000000,0.000000 0.570800,-0.178000,-0.347500,0.999600,-0.029530,-0.000004 0.211500,-0.003331,-0.296700,0.000000,1.000000,0.000000 0.228400,-0.186000,-0.229100,0.000000,-1.000000,0.000000 -0.389000,-0.186000,-0.372800,0.000000,-1.000000,0.000000 0.473600,-0.287900,0.677900,0.000000,0.000000,-1.000000 -0.355200,-0.003331,-0.355900,0.000000,1.000000,0.000000 -0.439800,-0.330200,0.715800,0.000000,0.000000,1.000000 0.321400,-0.186000,0.261500,0.000000,-1.000000,0.000000 -0.186100,-0.372500,0.715800,0.000000,0.000000,1.000000 -0.431300,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.304500,-0.003331,-0.246000,0.000000,1.000000,0.000000 0.448300,-0.144100,0.715800,0.000000,0.000000,1.000000 0.456700,-0.186000,0.168500,0.000000,-1.000000,0.000000 -0.321400,-0.003331,-0.651900,0.000000,1.000000,0.000000 0.414400,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.135300,-0.003331,-0.381300,0.000000,1.000000,0.000000 0.135300,-0.135700,0.715800,0.000000,0.000000,1.000000 0.338300,-0.003331,-0.313600,0.000000,1.000000,0.000000 0.355200,-0.186000,-0.313600,0.000000,-1.000000,0.000000 -0.253700,-0.313300,0.715800,0.000000,0.000000,1.000000 0.186100,-0.186000,-0.229100,0.000000,-1.000000,0.000000 -0.211500,-0.003333,-0.313600,-0.019670,0.999600,0.019680 0.448300,-0.186000,0.430700,0.000000,-1.000000,0.000000 0.236800,-0.186000,0.193800,0.000000,-1.000000,0.000000 -0.473600,-0.313300,0.677900,0.000000,0.000000,-1.000000 0.422900,-0.003331,-0.355900,0.000000,1.000000,0.000000 0.296000,-0.186000,0.498300,0.000000,-1.000000,0.000000 0.414400,-0.347100,0.677900,0.000000,0.000000,-1.000000 0.380600,-0.338600,0.677900,0.000000,0.000000,-1.000000 0.389100,-0.186000,0.312200,0.000000,-1.000000,0.000000 0.219900,-0.003331,-0.440500,0.000000,1.000000,0.000000 0.270700,-0.003331,-0.347500,0.000000,1.000000,0.000000 0.279100,-0.186000,0.447600,0.000000,-1.000000,0.000000 0.211500,-0.186000,0.261500,0.000000,-1.000000,0.000000 -0.304500,-0.186000,-0.364400,0.000000,-1.000000,0.000000 0.236800,-0.003331,-0.254400,0.000000,1.000000,0.000000 0.296000,-0.003331,-0.355900,0.000000,1.000000,0.000000 -0.389000,-0.003331,-0.389700,0.000000,1.000000,0.000000 -0.304500,-0.186000,-0.246000,0.000000,-1.000000,0.000000 -0.490500,-0.186000,0.261500,0.000000,-1.000000,0.000000 -0.372100,-0.186000,0.278400,0.000000,-1.000000,0.000000 0.287600,-0.003331,-0.305200,0.000000,1.000000,0.000000 -0.287500,-0.186000,-0.389700,0.000000,-1.000000,0.000000 0.448300,-0.186000,-0.389700,0.000000,-1.000000,0.000000 0.473600,-0.186000,-0.178300,0.000000,-1.000000,0.000000 -0.236800,-0.220200,0.715800,0.000000,0.000000,1.000000 0.313000,-0.186000,0.439100,0.000000,-1.000000,0.000000 0.160700,-0.003331,-0.474300,0.000000,1.000000,0.000000 0.439800,-0.003331,-0.271300,0.000000,1.000000,0.000000 -0.126900,-0.186000,-0.491200,0.000000,-1.000000,0.000000 -0.236800,-0.279400,0.715800,0.000000,0.000000,1.000000 -0.363700,-0.186000,-0.305200,0.000000,-1.000000,0.000000 0.101500,-0.003331,-0.347500,0.000000,1.000000,0.000000 0.110000,-0.003331,0.236100,0.000000,1.000000,0.000000 0.355200,-0.003331,0.117700,0.000000,1.000000,0.000000 0.118400,-0.003331,-0.364400,0.000000,1.000000,0.000000 -0.109900,-0.186000,0.244600,0.000000,-1.000000,0.000000 0.110000,-0.186000,0.176900,0.000000,-1.000000,0.000000 0.126900,0.125700,0.447500,0.000000,1.000000,0.008749 -0.389000,-0.003331,-0.110600,0.000000,1.000000,0.000000 0.169200,-0.186000,0.244600,0.000000,-1.000000,0.000000 0.245300,-0.003331,0.151500,0.000000,1.000000,0.000000 -0.169100,-0.279400,0.677900,0.000000,0.000000,-1.000000 0.126900,-0.186000,-0.136000,0.000000,-1.000000,0.000000 0.279100,-0.003331,-0.169800,0.000000,1.000000,0.000000 0.152300,-0.186000,0.227700,0.000000,-1.000000,0.000000 0.431400,-0.003331,0.227700,0.000000,1.000000,0.000000 0.397500,-0.003331,-0.246000,0.000000,1.000000,0.000000 -0.448200,-0.186000,-0.110600,0.000000,-1.000000,0.000000 0.143800,-0.003331,-0.271300,0.000000,1.000000,0.000000 -0.312900,-0.135700,0.715800,0.000000,0.000000,1.000000 0.541600,-0.186400,-0.592700,-1.000000,0.004909,0.000000 0.203000,-0.186000,-0.305200,0.000000,-1.000000,0.000000 -0.211400,-0.186000,-0.567400,0.000000,-1.000000,0.000000 -0.532800,-0.169500,-0.797100,0.000170,0.004190,-1.000000 -0.482100,-0.245600,0.715800,0.000000,0.000000,1.000000 -0.571500,-0.211800,-0.440500,-1.000000,0.000000,0.000000 -0.346800,-0.211800,-0.768300,-0.000316,-0.000316,1.000000 -0.321400,-0.194800,0.677900,0.000000,0.000000,-1.000000 0.541600,-0.220200,-0.389700,-1.000000,0.000000,0.000000 0.177600,-0.211800,0.677900,0.000000,0.000000,-1.000000 -0.211400,-0.186000,0.489900,0.000000,-1.000000,0.000000 -0.542600,-0.220200,-0.178300,1.000000,-0.000059,0.000000 0.570500,-0.211800,-0.381300,1.000000,0.000000,0.000000 -0.571500,-0.211800,0.126200,-1.000000,0.000000,0.000000 -0.542600,-0.220200,-0.288300,1.000000,-0.000059,0.000000 0.135300,-0.245600,0.677900,0.000000,0.000000,-1.000000 0.570500,-0.194800,-0.381300,1.000000,0.000059,0.000000 0.499000,-0.186000,-0.110600,0.000000,-1.000000,0.000000 -0.499000,-0.003331,0.625200,-0.000044,1.000000,0.000001 -0.346800,-0.003331,-0.694200,0.000000,1.000000,0.000000 -0.363700,-0.186000,-0.635000,0.000000,-1.000000,0.000000 -0.499000,-0.003331,-0.668900,-0.000044,1.000000,0.000000 0.329900,-0.186000,-0.711100,0.000000,-1.000000,0.000000 0.262200,-0.003331,-0.618100,0.000000,1.000000,0.000000 -0.499000,-0.279400,0.677900,0.000000,0.000000,-1.000000 0.194500,-0.186000,0.320700,0.000000,-1.000000,0.000000 -0.490500,-0.330200,0.677900,0.000000,0.000000,-1.000000 0.245300,-0.003331,-0.575800,0.000000,1.000000,0.000000 0.169200,-0.003331,-0.525100,0.000000,1.000000,0.000000 -0.431300,-0.186000,0.337600,0.000000,-1.000000,0.000000 -0.186100,-0.003331,-0.558900,0.000000,1.000000,0.000000 -0.321400,-0.003331,-0.271300,0.000000,1.000000,0.000000 0.194500,-0.186000,-0.516600,0.000000,-1.000000,0.000000 -0.186100,-0.186000,0.608300,0.000000,-1.000000,0.000000 -0.135300,-0.186000,0.489900,0.000000,-1.000000,0.000000 -0.287500,-0.186000,-0.423600,0.000000,-1.000000,0.000000 0.448300,-0.003331,-0.601200,0.000000,1.000000,0.000000 -0.397500,-0.144100,0.715800,0.000000,0.000000,1.000000 0.279100,-0.186000,-0.592700,0.000000,-1.000000,0.000000 -0.186100,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.372200,-0.003331,-0.660400,0.000000,1.000000,0.000000 0.549800,-0.372500,0.677900,0.000000,0.000000,-1.000000 0.355200,-0.186000,-0.542000,0.000000,-1.000000,0.000000 -0.571500,-0.220200,0.642100,-1.000000,-0.000178,0.000000 0.499000,-0.186000,0.295300,0.000000,-1.000000,0.000000 0.338300,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.473600,-0.186000,-0.423600,0.000000,-1.000000,0.000000 -0.571500,-0.220200,0.320700,-1.000000,-0.000178,0.000000 -0.152200,-0.003331,-0.423600,0.000000,1.000000,0.000000 -0.422900,-0.003331,-0.330500,0.000000,1.000000,0.000000 0.570500,-0.178000,0.599800,0.999800,-0.019680,0.000000 0.380600,-0.355600,0.715800,0.000000,0.000059,1.000000 0.118400,-0.003331,-0.685800,0.000000,1.000000,0.000000 -0.499000,-0.186000,-0.144500,0.000000,-1.000000,0.000000 0.245300,-0.003331,-0.694200,0.000000,1.000000,0.000000 -0.169100,-0.186000,-0.635000,0.000000,-1.000000,0.000000 -0.507400,-0.003332,-0.660400,0.019630,0.999800,0.000000 -0.321400,-0.003331,-0.668900,0.000000,1.000000,0.000000 -0.033820,-0.186000,-0.034520,0.000000,-1.000000,0.000000 0.076130,0.123600,0.388600,0.000000,0.996800,-0.080380 -0.312900,0.058310,0.677700,0.000001,0.074510,0.997200 0.101500,0.203000,0.680900,0.003321,-0.120400,0.992700 -0.541300,-0.057820,0.143100,-0.986800,0.161800,0.000000 -0.448200,0.092860,0.675900,0.000000,0.020190,0.999800 -0.186100,0.058310,0.677900,-0.013150,0.071410,0.997400 -0.507500,0.245900,0.686700,0.000000,-0.207600,0.978200 -0.008452,-0.101800,0.715800,0.000000,0.000000,1.000000 0.247000,0.201100,0.743700,0.003262,-0.055450,0.998500 0.154000,0.201100,0.743700,0.000168,-0.047050,0.998900 0.515900,0.253200,0.744500,-0.000106,-0.001454,1.000000 -0.059180,-0.110200,-0.769200,0.000000,-0.067990,-0.997700 0.219900,0.049840,0.678400,0.000000,0.045530,0.999000 -0.346800,0.202600,0.743500,0.000000,-0.044100,0.999000 -0.389000,0.143200,0.674100,0.000000,0.035620,-0.999400 -0.541300,0.210800,0.741800,-0.000098,0.038990,-0.999200 -0.155100,0.259100,0.743600,0.000000,0.034840,0.999400 -0.499000,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 0.389100,-0.186000,-0.093730,0.000000,-1.000000,0.000000 0.211500,-0.186000,-0.093730,0.000000,-1.000000,0.000000 -0.101500,0.296700,0.697500,0.000000,-0.232100,0.972700 0.050760,0.125700,0.430600,-0.015510,0.999700,-0.016680 0.025390,0.203100,0.680600,0.009831,-0.113900,0.993400 -0.025360,0.253200,0.744200,0.000000,0.045070,0.999000 0.135300,0.121100,0.363600,0.000000,0.993000,-0.117800 -0.203000,0.203100,0.680900,0.000000,-0.113900,0.993500 -0.084560,-0.355500,0.677900,0.000000,0.000000,-1.000000 0.076130,-0.186000,-0.508200,0.000000,-1.000000,0.000000 0.042300,-0.003331,-0.651900,0.000000,1.000000,0.000000 0.406000,-0.003331,0.050050,0.000000,1.000000,0.000000 0.025390,-0.186000,-0.592700,0.000000,-1.000000,0.000000 -0.431300,-0.003331,0.058510,0.000000,1.000000,0.000000 -0.076100,-0.186000,0.193800,0.000000,-1.000000,0.000000 0.016930,-0.211800,0.677900,0.000000,0.000000,-1.000000 -0.169100,-0.003331,-0.034530,0.000000,1.000000,0.000000 -0.033820,-0.003331,0.109300,0.000000,1.000000,0.000000 0.270700,-0.186000,-0.059900,0.000000,-1.000000,0.000000 -0.050740,-0.321700,0.715800,0.000000,0.000000,1.000000 -0.025370,-0.144100,0.715800,0.000000,0.000000,1.000000 0.372200,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.169200,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.228400,-0.186000,0.024680,0.000000,-1.000000,0.000000 0.016920,-0.279400,0.715800,0.000000,0.000000,1.000000 -0.389000,-0.003331,-0.085270,0.000000,1.000000,0.000000 0.287600,-0.186000,0.083880,0.000000,-1.000000,0.000000 0.439800,-0.003331,-0.026070,0.000000,1.000000,0.000000 -0.372100,-0.003331,-0.042980,0.000000,1.000000,0.000000 -0.262200,-0.003331,0.058510,0.000000,1.000000,0.000000 -0.126900,-0.186000,0.016220,0.000000,-1.000000,0.000000 0.067680,-0.186000,-0.482800,0.000000,-1.000000,0.000000 -0.059190,-0.003331,-0.203700,0.000000,1.000000,0.000000 0.076130,-0.186000,-0.237500,0.000000,-1.000000,0.000000 -0.025360,-0.003331,-0.330500,0.000000,1.000000,0.000000 0.050760,-0.186000,0.286900,0.000000,-1.000000,0.000000 -0.025360,-0.003331,0.134600,0.000000,1.000000,0.000000 0.050760,-0.003331,-0.449000,0.000000,1.000000,0.000000 -0.228400,-0.076450,0.715800,0.000000,0.000000,1.000000 0.033850,-0.186000,-0.482800,0.000000,-1.000000,0.000000 -0.067660,-0.135700,0.715800,-0.000020,-0.000020,1.000000 -0.152200,-0.003331,0.058510,0.000000,1.000000,0.000000 0.025390,-0.186000,-0.694200,0.000000,-1.000000,0.000000 0.050760,-0.003331,-0.677300,0.000000,1.000000,0.000000 -0.025360,-0.186000,-0.685800,0.000000,-1.000000,0.000000 -0.067650,-0.003331,-0.635000,0.000000,1.000000,0.000000 -0.499000,-0.003331,0.066970,-0.000044,1.000000,0.000000 0.008464,-0.380900,0.715800,-0.000020,0.000744,1.000000 0.355200,-0.003331,-0.000695,0.000000,1.000000,0.000000 -0.008443,-0.186000,-0.601200,0.000000,-1.000000,0.000000 -0.008443,-0.186000,-0.364400,0.000000,-1.000000,0.000000 0.008471,-0.003331,0.472900,0.004435,1.000000,0.000000 0.000015,-0.186000,0.312200,0.000000,-1.000000,0.000000 -0.008439,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 -0.008443,-0.186000,0.498300,0.000000,-1.000000,0.000000 0.008473,-0.186000,-0.677300,0.000000,-1.000000,0.000000 0.222700,0.078810,0.674500,0.000000,-0.054110,-0.998500 -0.084570,-0.228600,-0.768000,0.000000,0.026500,0.999600 -0.016900,-0.003331,-0.237500,0.000000,1.000000,0.000000 -0.245300,-0.186000,0.016220,0.000000,-1.000000,0.000000 -0.324200,0.355000,0.724800,0.000000,-0.968800,-0.247900 0.279100,0.360300,0.714500,0.000000,0.693600,-0.720400 0.313000,0.262500,0.689700,0.000000,-0.188100,0.982100 -0.321400,-0.003331,0.075420,0.000000,1.000000,0.000000 0.025390,-0.003331,-0.651900,0.000000,1.000000,0.000000 -0.067650,-0.186000,0.388400,0.000000,-1.000000,0.000000 -0.067650,-0.003331,-0.110600,0.000092,1.000000,-0.000080 -0.346800,-0.003331,-0.042980,0.000000,1.000000,0.000000 0.329900,-0.003331,-0.042980,0.000000,1.000000,0.000000 0.186100,-0.003331,0.041590,0.000000,1.000000,0.000000 0.312900,-0.051080,0.715800,0.000000,0.000000,1.000000 -0.067650,-0.186000,0.244600,0.000000,-1.000000,0.000000 -0.135300,-0.186000,-0.034520,0.000000,-1.000000,0.000000 -0.439800,0.160700,0.740000,0.000000,-0.102800,0.994700 0.186100,0.185700,0.742800,0.000000,-0.088250,0.996100 0.067680,-0.203400,-0.768000,0.000003,-0.019630,0.999800 0.101500,0.109700,0.733700,0.000000,-0.144900,0.989400 0.363700,0.122600,0.506300,0.000000,0.995300,0.097020 0.540100,-0.135400,0.608300,1.000000,0.001719,-0.000011 0.422900,0.122100,0.371900,0.000000,0.994500,-0.104800 0.507500,0.152400,0.739400,0.006557,-0.076350,0.997100 -0.465200,-0.068310,-0.768400,0.000000,0.109300,-0.994000 0.050750,0.121800,0.514600,-0.014670,0.993900,0.109200 0.219900,0.303900,0.741800,0.000000,0.084830,0.996400 -0.482100,0.144100,0.738500,0.000000,-0.103100,0.994700 -0.456700,-0.110200,-0.769200,0.000000,-0.067990,-0.997700 -0.262200,0.116200,0.337900,0.013190,0.989100,-0.146700 0.465200,0.287200,0.743100,0.000000,0.064220,0.997900 0.253700,0.135800,0.737400,-0.000001,-0.155300,0.987900 -0.380600,0.185800,0.742500,0.000000,-0.088110,0.996100 -0.338300,0.086110,0.727000,-0.000167,0.198300,-0.980100 0.236800,-0.002667,0.261500,0.013120,0.999900,-0.002103 0.160700,0.169000,0.740800,0.009820,-0.090680,0.995800 -0.428500,0.256300,0.742200,0.000000,-0.041560,-0.999100 0.515900,-0.101800,-0.769700,0.000000,-0.032130,-0.999500 -0.346800,-0.093390,-0.769800,0.000000,0.004040,-1.000000 0.228400,-0.093390,-0.769800,0.000000,0.004040,-1.000000 -0.126900,0.123000,0.481200,0.000000,0.998100,0.061830 -0.439800,0.123400,0.472800,0.000000,0.998800,0.049440 0.050760,0.177400,0.741900,0.000000,-0.098470,0.995100 -0.515900,0.074350,0.724400,0.000000,0.220400,-0.975400 -0.287500,0.262200,0.741900,0.000000,-0.041020,-0.999200 0.186100,0.134900,0.673800,0.000000,0.024070,-0.999700 0.570500,-0.203300,-0.144500,0.999800,-0.019680,0.000000 -0.160700,0.126500,0.676000,0.000000,0.006477,1.000000 -0.194500,0.124000,0.422300,0.000000,0.999600,-0.026600 0.571000,-0.220300,0.363000,0.999900,-0.013240,-0.003274 -0.296000,-0.194900,-0.768300,0.000000,0.005809,1.000000 -0.542400,-0.178100,-0.144500,0.974500,-0.224400,0.000000 -0.372100,-0.003331,0.625200,-0.000012,1.000000,-0.003747 -0.279100,0.253200,0.744200,0.000000,0.045070,0.999000 0.245300,0.126500,0.676000,0.000000,0.006820,1.000000 0.542800,-0.077020,-0.440500,0.997700,0.068450,-0.000031 -0.321400,-0.186000,0.303800,0.000000,-1.000000,0.000000 -0.414400,-0.186000,-0.525100,0.000000,-1.000000,0.000000 0.532800,-0.347100,0.715800,-0.000000,-0.000059,1.000000 0.414400,-0.186000,0.227700,0.000000,-1.000000,0.000000 -0.160700,-0.186000,-0.728100,0.000000,-1.000000,0.000000 -0.542600,-0.220200,-0.415100,1.000000,-0.000059,0.000000 -0.228300,-0.186000,-0.533500,0.000000,-1.000000,0.000000 -0.101500,-0.186000,-0.525100,0.000000,-1.000000,0.000000 0.118400,-0.186000,0.405300,0.000000,-1.000000,0.000000 -0.380600,-0.186000,-0.736500,0.000000,-1.000000,-0.001680 -0.186100,-0.003331,-0.643500,0.000000,1.000000,0.000000 0.287600,-0.003331,-0.651900,0.000000,1.000000,0.000000 0.236800,-0.186000,0.608300,0.000000,-1.000000,0.000000 -0.542600,-0.203300,0.633600,1.000000,-0.000059,0.000000 -0.422900,-0.003331,0.126200,0.000000,1.000000,0.000000 0.389100,-0.186000,-0.347500,0.000000,-1.000000,0.000000 0.338300,-0.338600,0.715800,-0.003253,-0.003258,1.000000 -0.431300,-0.355600,0.715800,0.000000,0.000000,1.000000 -0.465200,-0.186000,0.396800,0.000000,-1.000000,0.000000 0.448300,-0.003331,-0.584300,0.000000,1.000000,0.000000 0.135300,-0.186000,-0.525100,0.000000,-1.000000,0.000000 -0.414400,-0.186000,0.447600,0.000000,-1.000000,0.000000 0.515900,-0.186000,0.371400,0.052520,-0.998600,0.000000 -0.186100,-0.186000,-0.550400,0.000000,-1.000000,0.000000 -0.422900,-0.003331,-0.262900,0.000000,1.000000,0.000000 0.406000,-0.186000,-0.186800,0.000000,-1.000000,0.000000 -0.406000,-0.186000,-0.457400,0.000000,-1.000000,0.000000 0.194500,-0.186000,0.303800,0.000000,-1.000000,0.000000 0.456700,-0.003331,0.625200,0.000000,1.000000,-0.004161 0.194500,-0.186000,-0.643500,0.000000,-1.000000,0.000000 0.406000,-0.296300,0.677900,0.000000,0.000000,-1.000000 -0.109900,-0.003331,-0.254400,0.000000,1.000000,0.000000 -0.490500,-0.169500,-0.797100,0.000015,0.004620,-1.000000 0.448300,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 -0.571500,-0.177900,-0.491200,-1.000000,0.000000,0.000000 0.380600,-0.186000,-0.127600,0.000000,-1.000000,0.000000 -0.126900,-0.220200,-0.768300,0.000000,0.019560,0.999800 0.473600,-0.186000,0.109300,0.000000,-1.000000,0.000000 -0.473600,-0.118700,0.715800,0.000000,0.000000,1.000000 -0.363700,-0.186000,-0.271300,0.000000,-1.000000,0.000000 -0.126900,-0.186000,-0.474300,0.000000,-1.000000,0.000000 -0.389000,-0.186000,-0.305200,0.000000,-1.000000,0.000000 -0.490500,-0.003331,-0.237500,0.000000,1.000000,0.000000 -0.482100,-0.186000,0.337600,0.000000,-1.000000,0.000000 -0.465200,-0.186000,0.337600,0.000000,-1.000000,0.000000 -0.448200,-0.003331,-0.313600,0.000000,1.000000,0.000000 0.338300,-0.186000,-0.449000,0.000000,-1.000000,0.000000 -0.126900,-0.203300,-0.768300,-0.003245,-0.013120,0.999900 0.211500,-0.003331,-0.491200,0.000000,1.000000,0.000000 -0.304500,-0.186000,-0.229100,0.000000,-1.000000,0.000000 0.473600,-0.003331,0.253000,0.000000,1.000000,0.000000 -0.236800,-0.144100,0.715800,0.000000,0.000059,1.000000 -0.473600,-0.186000,-0.305200,0.000000,-1.000000,0.000000 -0.245300,-0.186000,-0.355900,0.000000,-1.000000,0.000000 0.160700,-0.003331,-0.491200,0.000000,1.000000,0.000000 -0.389000,-0.186000,-0.389700,0.000000,-1.000000,0.000000 0.126900,-0.203300,0.715800,-0.000020,-0.000020,1.000000 -0.507400,-0.186400,0.677900,0.000000,0.004847,-1.000000 -0.211400,-0.186000,-0.702700,0.000000,-1.000000,0.000000 -0.253700,-0.003331,-0.635000,0.000000,1.000000,0.000000 -0.135300,-0.003331,-0.685800,0.000000,1.000000,0.000000 -0.245300,-0.003331,-0.668900,0.000000,1.000000,0.000000 -0.499000,-0.003331,0.168500,-0.000044,1.000000,0.000000 0.228400,-0.003331,-0.677300,0.000000,1.000000,0.000000 -0.523500,-0.239500,-0.608700,0.258900,-0.930400,0.259300 -0.499000,-0.186000,-0.694200,0.000000,-1.000000,0.000000 0.422900,0.287500,0.740700,0.000000,-0.064970,-0.997900 0.236800,0.296600,0.697800,0.000000,-0.231900,0.972700 -0.312900,0.101300,0.673700,0.000000,-0.018670,-0.999800 -0.143800,-0.003391,0.261300,0.000000,0.955000,-0.296700 -0.506300,-0.241200,-0.685400,-0.381700,-0.922900,0.049880 0.281900,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 -0.304500,0.227200,0.681700,0.000000,0.143200,-0.989700 0.380600,0.203000,0.680900,0.000004,-0.133600,0.991000 -0.008450,-0.003331,0.320700,-0.004036,1.000000,0.000000 0.008470,0.279000,0.741200,0.000000,-0.053050,-0.998600 0.528800,-0.176600,0.176900,0.779200,-0.626800,0.000000 0.538400,-0.172600,0.317900,-0.635400,-0.772200,0.000000 0.025390,0.270500,0.741600,-0.000001,-0.042100,-0.999100 -0.059200,0.115000,0.329700,-0.000010,0.986000,-0.166700 -0.567100,0.324500,0.710700,0.648500,-0.155300,0.745200 0.355200,0.120100,0.355400,0.000000,0.991000,-0.134100 0.372200,0.120100,0.355400,0.000000,0.991000,-0.134100 0.543700,-0.101700,-0.474300,0.998700,-0.051500,0.000002 0.543800,-0.093440,-0.575800,1.000000,0.003905,0.000000 0.050770,-0.240300,-0.787200,0.000000,-0.999900,-0.010180 0.541000,-0.128300,-0.457400,0.991900,-0.126700,-0.009885 0.565900,-0.017400,0.678000,0.170300,0.011220,-0.985300 -0.382700,0.073060,0.674800,0.000000,-0.054750,-0.998500 -0.101500,0.320600,0.739900,0.000000,0.107000,0.994300 0.034550,0.246100,0.684700,0.000000,0.168100,-0.985800 -0.194500,0.312300,0.740700,0.000000,0.096820,0.995300 0.338300,0.122600,0.506300,0.000000,0.995300,0.097020 -0.439800,0.050440,0.262700,0.000000,-0.002372,-1.000000 0.406000,0.116200,0.329500,0.000000,0.986200,-0.165300 -0.312900,0.084580,0.674200,0.000000,-0.043030,-0.999100 0.414400,-0.068310,-0.768400,0.000000,0.109300,-0.994000 0.144500,0.141900,0.676300,-0.003271,-0.020670,0.999800 0.543700,-0.101600,0.430700,0.998700,-0.051380,0.000000 0.118400,-0.076590,-0.769100,0.000000,0.074970,-0.997200 0.515900,-0.002671,0.650500,-0.011120,0.999900,0.011730 0.448300,0.262200,0.741900,0.000000,-0.041020,-0.999200 -0.406000,-0.233600,-0.745000,-0.005737,1.000000,-0.007623 -0.573600,0.236500,0.718200,0.999900,0.010260,0.011920 -0.431300,-0.003331,0.625200,0.000000,1.000000,-0.003787 -0.211400,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.543500,-0.076990,-0.753400,-0.997400,0.070460,-0.011660 -0.279100,0.254200,0.688500,0.000000,-0.199100,0.980000 -0.287600,0.117500,0.346000,0.000000,0.993400,-0.114400 -0.321400,0.127600,0.736200,0.000000,-0.169700,0.985500 -0.544000,-0.085270,0.650600,-0.999300,0.038650,0.000611 -0.515900,-0.186000,-0.457400,-0.040710,-0.999200,0.000000 -0.515900,-0.186000,-0.381300,-0.040710,-0.999200,0.000000 0.558200,-0.240300,-0.042980,0.011620,-0.999900,0.000000 0.543700,-0.101600,0.202300,0.998700,-0.051380,0.000000 0.544000,-0.085260,-0.093730,0.999300,0.038050,0.000000 0.389100,0.219600,0.682900,0.000096,-0.104600,0.994500 0.543800,-0.093440,-0.592700,1.000000,0.003905,0.000000 0.016730,-0.003405,0.566000,-0.262100,0.965000,0.000000 0.406000,0.052310,0.719300,0.000001,0.245400,-0.969400 -0.515900,0.051890,0.720900,0.000000,-0.247500,0.968900 -0.482100,0.287100,0.742800,0.000000,0.064450,0.997900 0.296000,0.093540,0.731100,0.000015,-0.207900,0.978200 -0.544000,-0.101700,0.574400,-0.999500,-0.031710,0.000000 0.203000,0.097750,0.604100,0.000000,0.622600,0.782500 -0.219900,0.295500,0.742200,0.000000,0.074740,0.997200 0.543700,-0.101700,-0.415100,0.998700,-0.051470,0.000000 0.543000,-0.109800,-0.575800,0.994300,-0.106200,0.000018 0.203000,0.050430,0.676300,0.000000,-0.084610,-0.996400 -0.524400,0.035480,0.679600,0.000000,-0.016060,0.999900 -0.357300,0.073060,0.674800,0.000000,-0.054750,-0.998500 -0.543600,-0.109800,0.506800,-0.997900,-0.065080,-0.000013 -0.544000,-0.101700,-0.415100,-0.999500,-0.031750,0.000050 0.084600,-0.060050,-0.767300,0.000000,0.144300,-0.989500 -0.571500,-0.169500,0.261500,-1.000000,0.003700,0.000000 -0.571500,-0.169500,0.363000,-1.000000,0.003700,0.000000 -0.571500,-0.169500,0.117700,-1.000000,0.003699,-0.000000 0.541600,-0.211800,-0.609600,-1.000000,-0.003762,0.000000 -0.355200,0.058340,0.720800,0.000005,0.231800,-0.972800 -0.084570,0.287500,0.740700,0.000000,-0.064970,-0.997900 -0.236800,0.330500,0.706100,0.000000,-0.271600,0.962400 -0.544100,-0.093450,-0.330500,-1.000000,0.004002,-0.000019 0.565900,0.211400,0.685300,-0.620800,-0.064240,0.781400 -0.536700,-0.035470,-0.169800,-0.969400,0.245300,0.000000 -0.541300,0.304600,0.699100,-0.000051,-0.215500,0.976500 0.246000,0.141900,0.676000,0.000000,-0.027720,0.999600 0.146600,0.078810,0.674500,0.000000,-0.054110,-0.998500 -0.540100,-0.051220,-0.685800,-0.982900,0.184300,0.000041 -0.538600,-0.043310,-0.719600,-0.977300,0.212100,0.000000 0.538600,-0.043330,0.625200,0.981500,0.191700,0.000000 0.457400,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.296000,0.112400,0.564800,0.000000,0.982500,0.186200 -0.270600,-0.044130,-0.764400,-0.000080,0.205900,-0.978600 0.042300,0.050430,0.676300,0.000000,-0.084610,-0.996400 -0.571400,-0.161400,-0.042990,-0.993100,0.117500,0.003959 -0.081740,0.256300,0.742200,0.000000,-0.041560,-0.999100 0.575000,0.051170,0.684800,0.980800,-0.007248,-0.194700 0.524400,-0.240300,-0.668800,0.006650,-1.000000,-0.007423 0.338300,0.303900,0.741500,0.000000,0.084930,0.996400 0.414400,0.116800,0.549000,-0.013140,0.985800,0.167200 -0.287500,0.042220,0.263200,0.000000,-0.108900,-0.994000 -0.339600,0.007060,0.687000,0.861400,0.273700,-0.427800 -0.536700,-0.035470,-0.601200,-0.969400,0.245300,0.000000 -0.549800,0.034990,0.714900,-0.017470,0.166300,-0.985900 0.534500,-0.028650,0.133900,0.969200,0.246300,-0.000018 -0.338300,0.058340,0.720800,0.000006,0.231800,-0.972800 -0.135300,0.059770,0.723200,-0.003306,-0.214000,0.976800 0.536700,-0.035460,0.498300,0.969500,0.245300,0.000000 0.406000,0.042430,0.265000,0.000000,-0.122400,-0.992500 0.363700,0.049910,0.678400,0.000067,0.151300,0.988500 -0.126800,0.117100,0.732600,0.000000,0.159900,-0.987100 0.329900,0.117100,0.732600,0.000000,0.159900,-0.987100 0.211500,0.050490,0.264400,0.000000,-0.018590,-0.999800 -0.262200,0.073570,0.725900,0.000000,-0.242700,0.970100 -0.363700,0.066490,0.264400,0.000000,0.200500,-0.979700 0.016930,0.194000,0.677600,0.000000,0.100600,-0.994900 -0.151500,0.221000,0.744400,0.000000,0.000389,1.000000 0.177600,0.086480,0.727100,0.000000,0.197700,-0.980300 -0.543600,-0.109800,0.337600,-0.997900,-0.065090,0.000000 -0.543000,-0.117700,-0.254400,-0.995600,-0.093420,-0.000027 0.169200,0.328900,0.703600,0.000000,0.273000,-0.962000 -0.473600,0.336500,0.705800,0.000000,0.282900,-0.959200 -0.558200,-0.152700,-0.465900,-0.032740,0.999500,-0.000056 0.494200,0.050480,0.312200,0.999200,-0.040080,0.000000 0.228400,0.085250,0.271700,0.000008,0.431200,-0.902300 -0.262200,0.143300,0.736300,0.000000,0.122300,-0.992500 -0.422900,0.143300,0.736300,0.000000,0.122300,-0.992500 0.279100,0.042430,0.265000,0.000000,-0.122400,-0.992500 0.013190,0.042530,0.498300,-0.993000,-0.118000,-0.000258 -0.286800,0.234300,0.682700,0.000000,0.155100,-0.987900 -0.405200,0.209600,0.743700,-0.000048,-0.062580,0.998000 0.042300,0.042430,0.265000,-0.000001,-0.122400,-0.992500 0.558800,0.058860,0.675700,0.045050,-0.067650,-0.996700 -0.543600,-0.109800,0.354500,-0.997900,-0.065070,-0.000037 -0.126200,0.221000,0.744400,0.000000,0.000389,1.000000 -0.565400,-0.240100,-0.719600,-0.115100,-0.993400,0.000000 -0.565400,-0.240100,-0.516600,-0.115100,-0.993400,0.000000 -0.495100,0.066290,0.363000,-0.980100,0.198500,0.000000 -0.186100,0.269300,0.689000,0.000000,0.196800,-0.980500 -0.507500,0.186300,0.678800,0.000000,-0.091570,0.995800 0.431400,-0.018850,-0.757500,0.000000,0.313400,-0.949600 -0.455700,-0.240000,-0.676500,0.692500,-0.172400,0.700500 0.355200,0.042810,0.618400,0.000127,-0.125000,0.992200 -0.016890,-0.398700,0.701300,0.001622,-1.000000,0.007491 0.013190,0.042520,0.566000,-0.992700,-0.121000,0.000000 -0.532800,0.168400,0.739100,0.000000,0.091840,-0.995800 0.101500,0.328900,0.739300,0.000000,0.136800,0.990600 -0.025360,0.143200,0.674100,-0.000020,0.035040,-0.999400 0.225500,0.005346,0.277100,0.000407,-0.005318,-1.000000 -0.542700,-0.178100,0.007763,0.974400,-0.225000,0.000000 0.337600,-0.181900,-0.763400,0.000000,-0.912600,0.408800 0.482100,0.202300,0.678400,0.000000,0.112600,-0.993600 0.575000,-0.254000,0.692800,1.000000,0.000008,0.002544 -0.024650,0.343400,0.707900,0.000000,0.295900,-0.955200 0.482100,-0.009562,0.715900,0.000000,0.153500,0.988200 0.541300,0.049800,0.678100,0.000051,0.065390,0.997900 0.456700,0.125400,0.464400,0.015790,0.999300,0.033710 0.262200,-0.398700,0.701300,0.000000,-1.000000,0.005671 -0.389000,0.013790,0.608400,0.000167,-0.252600,0.967600 -0.448300,-0.017250,0.715800,0.003421,0.008077,1.000000 -0.451100,-0.254200,-0.687400,0.947300,-0.103200,0.303200 0.492000,0.035060,0.312200,0.979300,-0.202100,-0.006574 -0.528800,-0.010380,0.523700,-0.924700,0.380600,0.000000 -0.059190,-0.002714,-0.744200,0.000000,0.994700,-0.103300 -0.482100,0.160000,0.738200,0.000000,0.103400,-0.994600 0.541300,0.227200,0.681700,0.000000,0.143100,-0.989700 0.248100,0.256300,0.742200,0.000000,-0.041560,-0.999100 0.135300,0.203000,0.680900,0.000000,-0.113900,0.993500 0.473600,0.143300,0.736300,0.000000,0.122300,-0.992500 -0.558100,-0.152600,0.515900,-0.001298,1.000000,-0.000062 -0.024560,0.013420,0.540600,0.962100,-0.272700,-0.000001 -0.532800,0.363600,0.719600,0.000000,0.950500,-0.310900 -0.067630,0.363600,0.719600,0.000000,0.955700,-0.294500 -0.338300,0.144100,0.738500,0.000000,-0.103100,0.994700 -0.524400,0.135800,0.737400,0.000000,-0.135100,0.990800 -0.093020,-0.186000,-0.744100,-0.000014,-0.991200,-0.132100 -0.245300,0.019340,0.611000,0.000002,-0.385600,0.922700 0.490800,0.029400,0.489800,0.956600,-0.291300,-0.000321 -0.575900,0.208500,0.740400,-0.924500,0.006172,0.381000 -0.033820,0.075340,0.677000,-0.006566,0.084710,0.996400 -0.496300,0.042340,0.278400,-0.994500,-0.104500,-0.008438 0.397500,0.144100,0.738800,0.000000,-0.122900,0.992400 0.279100,0.151600,0.737300,0.000000,0.113500,-0.993500 0.050760,0.329700,0.736800,0.000000,-0.114800,-0.993400 -0.118400,0.027020,0.266400,0.000010,-0.287900,-0.957700 0.093050,0.337200,0.737900,0.000000,0.148900,0.988800 -0.543600,-0.109800,-0.660400,-0.997900,-0.064280,-0.000051 -0.473600,-0.398700,0.692800,0.000000,-1.000000,-0.006052 0.321400,-0.398700,0.692800,0.000000,-1.000000,-0.006052 -0.177600,-0.398700,0.692800,0.000000,-1.000000,-0.006052 -0.493300,0.073560,0.566000,-0.960600,0.277900,0.000000 0.440500,-0.003751,0.686100,0.000000,0.976300,-0.216400 -0.573500,-0.365600,0.706200,-0.997700,-0.052590,0.042560 -0.397500,0.115600,0.734300,0.000000,-0.133700,0.991000 0.152200,0.032290,0.679000,0.000000,-0.260400,0.965500 0.485200,0.087890,0.277100,0.774700,0.577800,-0.256800 -0.236800,0.218900,0.680500,0.000000,0.132500,-0.991200 0.515900,0.337900,0.735900,0.000000,-0.123700,-0.992300 -0.025360,-0.389600,0.715900,0.000000,-0.131100,0.991400 -0.346800,0.218200,0.742000,0.000000,0.029000,-0.999600 -0.490500,-0.398700,0.692800,0.000000,-1.000000,-0.006052 -0.067650,0.218900,0.680500,0.000000,0.132500,-0.991200 -0.296000,0.218900,0.680500,0.000000,0.132500,-0.991200 -0.033830,0.079700,0.268300,0.004384,0.365700,-0.930700 0.526400,-0.182100,-0.178300,0.795300,-0.606300,0.000000 0.549800,0.244800,0.744600,-0.003355,0.004132,1.000000 0.558200,0.039400,0.718300,-0.020780,-0.249600,0.968100 0.050760,0.042060,0.677100,0.000000,-0.093690,-0.995600 0.558100,0.108800,0.731200,-0.264400,0.098120,-0.959400 -0.558200,-0.240300,0.642100,-0.013040,-0.999900,-0.000165 -0.565400,-0.240100,0.456000,-0.115100,-0.993400,0.000000 0.570500,-0.228600,0.024680,0.999500,-0.032650,0.000000 0.169200,0.342500,0.709700,0.000000,-0.299400,0.954100 -0.522200,-0.185400,-0.144500,-0.328500,-0.944500,0.000000 -0.550500,-0.152500,-0.355200,-0.219700,0.975600,-0.000000 0.542300,-0.069940,-0.711100,0.992400,0.123200,0.000110 -0.262200,-0.177400,0.665300,0.000000,-0.627000,0.779000 0.458300,-0.246700,-0.676700,-0.428500,-0.366000,0.826100 -0.231200,0.354900,0.725100,0.010430,-0.970400,-0.241300 -0.550500,-0.152500,-0.093010,-0.219700,0.975600,0.000000 0.135300,0.122400,0.735100,0.011180,-0.168200,0.985700 0.544400,-0.239000,-0.107800,-0.514100,-0.857700,0.000000 -0.498300,0.158700,0.674800,0.000000,0.054900,-0.998500 -0.337600,0.147800,0.676500,0.000000,-0.016100,0.999900 -0.261500,0.158700,0.674800,0.000000,0.054900,-0.998500 -0.101500,0.282500,0.691800,0.000000,0.218400,-0.975900 0.431400,0.295300,0.694800,0.000000,0.232500,-0.972600 0.528500,-0.176500,-0.685800,0.778900,-0.627200,0.000000 0.219900,0.269300,0.689000,0.000000,0.196800,-0.980500 -0.439800,0.269300,0.689000,0.000000,0.196800,-0.980500 -0.211400,0.262400,0.690000,-0.000008,-0.188100,0.982200 -0.304500,0.342600,0.709400,-0.000005,-0.274000,0.961700 -0.450800,-0.338600,-0.701500,0.966300,0.000000,-0.257500 0.291700,0.208300,0.744000,0.000011,-0.064420,0.997900 0.304500,0.035460,0.679200,0.000000,0.019930,0.999800 -0.543600,-0.109800,-0.499700,-0.998000,-0.063010,-0.000008 0.211500,-0.240300,-0.787200,0.000000,-0.999900,-0.010180 0.195300,-0.162000,-0.797100,0.005987,0.197300,-0.980300 -0.338300,0.169200,0.677800,0.000000,-0.089100,0.996000 0.022550,0.000493,0.515200,-0.756700,0.653800,0.000000 -0.338300,0.080630,0.610900,-0.000203,0.401300,0.915900 -0.152200,0.079500,0.727600,0.000000,-0.239800,0.970800 0.059230,0.364000,0.726500,0.000000,0.993600,0.112600 0.126900,0.093610,0.730800,0.000000,-0.208000,0.978100 -0.019260,0.026000,0.566000,0.947800,-0.318900,0.000138 0.219900,0.295300,0.694800,0.000005,0.232500,-0.972600 0.479300,-0.374000,-0.714800,-0.336600,-0.821800,0.459700 -0.349600,-0.172700,0.674700,0.000000,-0.794600,-0.607200 0.118400,0.364000,0.726500,0.000000,0.993600,0.112600 0.355300,0.364000,0.726500,0.000000,0.993600,0.112600 -0.456700,-0.177400,0.665300,0.000000,-0.627000,0.779000 0.177600,-0.177400,0.665300,0.000000,-0.627000,0.779000 0.084580,0.288500,0.695600,0.000000,-0.276000,0.961100 0.488600,-0.254200,-0.695400,0.960300,-0.260000,0.100900 0.160700,-0.240200,-0.772500,0.000000,-0.993700,0.112400 -0.296000,0.363600,0.719600,0.000000,0.950500,-0.310900 -0.541300,-0.057820,0.117700,-0.986800,0.161800,0.000000 -0.109900,0.067540,0.724900,0.000160,-0.219400,0.975600 0.406000,-0.185600,0.657300,0.000000,-0.961700,0.274100 0.422900,0.052310,0.719300,0.000000,0.245400,-0.969400 -0.033820,0.355300,0.717400,-0.001268,-0.883000,0.469400 0.522900,0.243800,0.742300,-0.000032,0.004035,-1.000000 0.296000,0.079160,0.269200,0.000823,0.341400,-0.939900 0.538400,-0.172600,0.444700,-0.635400,-0.772200,0.000000 -0.346700,0.364100,0.726300,0.000000,0.995600,0.094150 -0.541300,-0.057820,-0.076820,-0.986800,0.161800,0.000000 -0.542600,-0.235300,0.430600,0.968400,-0.249300,0.000000 -0.542600,-0.228700,0.312200,0.999800,-0.021160,0.000000 0.558000,0.262400,0.689800,-0.219500,-0.182200,0.958500 -0.481600,-0.234000,-0.710700,-0.037860,0.998100,-0.048510 -0.296000,0.013310,0.608100,0.002158,-0.267000,0.963700 0.540900,-0.128800,-0.618100,0.991800,-0.128100,0.000037 -0.480100,-0.254300,-0.673200,-0.179800,-0.290800,0.939700 0.499000,0.052310,0.719300,0.000000,0.245400,-0.969400 -0.542600,-0.228700,-0.026070,1.000000,0.000929,0.000000 0.067680,0.311000,0.698700,0.000000,0.253000,-0.967500 -0.542700,-0.178100,-0.668900,0.969000,-0.247100,0.000000 0.458700,-0.234200,-0.761800,0.763200,0.016650,0.646000 0.465200,0.311000,0.698700,0.000000,0.253000,-0.967500 0.203000,-0.228700,-0.797100,0.000000,-0.013670,-0.999900 -0.456700,0.045820,0.719200,0.000000,-0.255400,0.966800 -0.542600,-0.235300,-0.305200,0.975700,-0.219300,0.000000 -0.431300,0.117100,0.732600,0.000000,0.159900,-0.987100 -0.084560,-0.228700,-0.797100,0.000000,-0.013670,-0.999900 -0.574800,0.170400,0.721500,-0.995600,-0.044310,0.082460 -0.138100,0.354900,0.725100,0.037700,-0.972200,-0.231000 -0.540900,-0.143700,0.219200,-0.969600,0.244500,0.000000 0.380600,0.058340,0.720800,0.000000,0.231800,-0.972800 -0.465200,-0.228600,-0.768000,-0.141100,0.105100,0.984400 0.465100,-0.304800,-0.724100,-0.035590,-0.000033,-0.999400 0.541600,-0.228700,0.540600,-1.000000,-0.007436,0.000000 -0.143800,0.106500,0.289200,0.000000,0.929200,-0.369500 -0.379900,0.164400,0.675100,0.000000,0.060440,-0.998200 0.220600,0.355400,0.711700,0.000000,0.396300,-0.918100 0.135300,0.059750,0.723200,0.009811,-0.220500,0.975300 0.321400,-0.012830,-0.755400,0.000000,0.350500,-0.936600 -0.571500,-0.228600,-0.702700,-1.000000,-0.005917,0.000000 0.541300,0.282400,0.693800,0.000065,-0.249200,0.968400 0.541600,-0.228700,0.058510,-1.000000,-0.007436,0.000000 -0.536700,-0.035470,0.405300,-0.969400,0.245300,0.000000 -0.570500,-0.181300,0.715700,-0.324700,0.025250,0.945500 -0.515900,-0.186000,-0.254400,-0.040710,-0.999200,0.000000 0.008470,-0.018850,-0.757500,0.000000,0.313400,-0.949600 0.321400,0.041470,0.678800,0.000002,0.057170,0.998400 0.355300,-0.240300,-0.778800,-0.000879,-1.000000,0.002519 0.076130,-0.143400,-0.767400,0.000000,0.337500,-0.941300 -0.499000,0.066240,0.722600,0.000000,0.222400,-0.975000 0.262200,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 -0.380600,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.414400,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.093040,0.244800,0.744600,-0.009840,0.027140,0.999600 -0.546300,0.248800,0.742300,-0.012350,-0.011060,-0.999900 0.152300,0.151600,0.674400,0.000000,0.047750,-0.998900 -0.406000,0.160800,0.676900,0.000000,-0.081600,0.996700 0.364400,0.221000,0.744400,-0.000001,-0.025160,0.999700 0.279100,0.079480,0.727600,-0.000063,-0.239900,0.970800 0.270700,0.316400,0.700100,-0.000016,0.264400,-0.964400 0.444500,-0.296300,-0.709000,-0.952300,-0.003810,-0.305200 -0.219900,0.330500,0.706100,0.000000,-0.271600,0.962400 -0.067650,0.120100,0.514500,0.000009,0.993900,0.110500 0.008476,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.536700,-0.035470,0.134600,-0.969400,0.245300,0.000000 -0.575800,0.292000,0.736700,-0.999100,0.003315,0.043140 -0.473600,-0.043990,-0.764400,0.000000,0.206100,-0.978500 0.203000,0.316600,0.702200,0.000000,-0.293200,0.956100 -0.396800,0.136300,0.735400,0.000000,0.133800,-0.991000 -0.279100,-0.239100,-0.768600,0.000000,-0.677000,0.736000 0.033890,0.045370,0.719500,-0.002383,-0.277000,0.960900 0.203000,0.073530,0.726200,0.000003,-0.242600,0.970100 -0.109900,0.231700,0.684300,0.000000,-0.133200,0.991100 0.541300,0.348600,0.711300,0.000000,-0.499100,0.866500 -0.262200,0.336500,0.707800,-0.000014,-0.260000,0.965600 -0.135300,0.080480,0.725800,0.000000,0.214300,-0.976800 -0.543900,-0.149400,0.439100,-0.682600,0.730800,0.000000 -0.543900,-0.149400,0.320700,-0.682600,0.730800,0.000000 -0.522100,-0.002890,-0.068360,-0.209900,0.977700,0.000000 0.515900,0.086480,0.727100,0.000000,0.197700,-0.980300 -0.542200,-0.064310,-0.584300,-0.991300,0.131500,0.000131 -0.532800,0.143200,0.674100,0.000000,0.035620,-0.999400 -0.507400,0.143200,0.674100,0.000000,0.035620,-0.999400 -0.533100,-0.022670,-0.287600,-0.953700,0.300700,0.000000 -0.533100,-0.022670,-0.515900,-0.953700,0.300700,0.000000 -0.329900,0.080000,0.725700,0.000037,0.214100,-0.976800 -0.363700,0.310600,0.700600,0.000000,-0.226500,0.974000 -0.448200,0.330500,0.706100,0.000000,-0.271600,0.962400 -0.355200,-0.182700,0.662300,0.000000,-0.693700,0.720300 -0.406000,0.079500,0.727600,0.000000,-0.239800,0.970800 0.042300,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.160700,0.328900,0.703600,0.000000,0.273000,-0.962000 -0.533100,-0.022670,-0.448300,-0.953700,0.300700,0.000000 -0.143800,0.360300,0.714500,0.000000,0.693600,-0.720400 -0.490500,0.317000,0.700300,0.000000,0.264800,-0.964300 0.126900,0.310600,0.700600,0.000000,-0.226300,0.974100 -0.021900,0.019030,0.549100,0.921600,-0.388100,0.000000 0.160700,0.079680,0.269300,0.000037,0.342200,-0.939600 -0.522100,-0.002890,0.151500,-0.209900,0.977700,0.000000 0.135300,0.042060,0.677100,0.000000,-0.093690,-0.995600 -0.542900,-0.069660,0.464500,-0.995200,0.098320,0.000000 0.515900,-0.032060,-0.761500,0.001625,0.266200,-0.963900 0.015100,0.071970,0.549100,-0.969600,0.244900,0.000000 0.423600,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.422200,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.476400,0.355000,0.724800,0.000000,-0.968800,-0.247900 0.473600,0.127700,0.736200,-0.000006,-0.170600,0.985300 -0.414400,-0.009748,0.664700,0.000000,0.660100,0.751100 -0.109900,-0.009748,0.664700,0.000000,0.660100,0.751100 0.482100,0.035460,0.679200,0.000000,0.019930,0.999800 0.389100,0.202600,0.743800,0.000000,-0.044320,0.999000 0.566700,-0.279400,0.678000,0.156600,0.000000,-0.987700 0.034550,0.124300,0.733700,0.000000,0.150500,-0.988600 -0.210700,0.355400,0.711700,0.000000,0.396300,-0.918100 0.537800,-0.143400,-0.766000,0.592800,0.333100,-0.733300 0.431400,0.080480,0.725800,0.000000,0.214300,-0.976800 0.211500,0.067510,0.725100,-0.013140,-0.234400,0.972100 -0.270600,0.019350,0.611000,-0.000891,-0.382100,0.924100 0.000722,0.130300,0.734600,0.000000,0.143600,-0.989600 0.431400,0.092510,0.728200,0.000000,0.183700,-0.983000 0.486700,0.018780,0.557500,0.905700,-0.423900,0.000129 0.516600,0.246100,0.684700,0.000000,0.168100,-0.985800 -0.372800,-0.181900,-0.763400,0.000000,-0.912600,0.408800 -0.533100,-0.022670,-0.668200,-0.953700,0.300700,0.000000 -0.093020,-0.026280,-0.759800,0.000000,0.292300,-0.956300 0.025390,-0.026280,-0.759800,0.000000,0.292300,-0.956300 0.528900,-0.176700,-0.127600,0.800100,-0.599800,0.000000 -0.143800,0.090240,0.273600,0.000000,0.514600,-0.857400 0.540900,-0.129000,-0.652000,0.991700,-0.128400,0.000058 0.067670,0.276400,0.692500,0.000000,-0.178100,0.984000 -0.372700,0.007892,0.710500,-0.652800,0.239100,0.718800 -0.541300,-0.057820,0.464500,-0.986800,0.161800,0.000000 -0.541300,-0.057820,0.574400,-0.986800,0.161800,0.000000 0.228400,-0.026280,-0.759800,0.000000,0.292300,-0.956300 0.000012,0.109700,0.733700,0.000000,-0.144900,0.989400 -0.571400,-0.161400,-0.745000,-0.992800,0.120000,-0.004046 0.448300,-0.186600,-0.768400,0.000000,-0.354200,0.935200 0.480600,0.243800,0.742300,0.000000,0.004082,-1.000000 0.159200,0.243800,0.742300,0.000000,0.004082,-1.000000 -0.570300,0.345400,0.708800,-0.318200,0.376700,-0.870000 0.526400,-0.182100,-0.136000,0.795300,-0.606300,0.000000 0.102200,0.147700,0.676200,0.000001,-0.045890,0.998900 0.521800,-0.185300,0.185400,0.352700,-0.935700,0.000000 -0.304500,-0.004389,-0.749900,0.000000,0.886900,-0.461900 -0.016180,0.037710,0.523700,0.984800,-0.173400,-0.000203 0.021970,0.089220,0.338300,-0.885100,0.465400,0.000000 0.227700,0.352600,0.736100,0.000000,0.128700,0.991700 -0.363700,-0.240300,-0.787200,0.000046,-0.999900,-0.010270 0.515900,-0.003004,-0.042980,-0.025750,0.999700,0.000000 -0.329100,0.164400,0.675100,0.000000,0.060440,-0.998200 0.571100,-0.161500,0.531700,0.997300,0.073020,-0.003079 -0.076100,0.244800,0.744300,0.000000,0.007220,1.000000 0.016930,-0.395500,0.713900,-0.004512,-0.602900,0.797800 0.541000,-0.128400,-0.491300,0.991900,-0.126900,0.000024 -0.526400,-0.005258,-0.415100,-0.742100,0.670300,0.000000 -0.481400,0.216100,0.744300,-0.000113,-0.061250,0.998100 -0.329900,0.045820,0.719200,-0.006516,-0.237900,0.971300 0.066170,0.243800,0.742300,0.000000,0.004082,-1.000000 0.473600,0.295300,0.694800,0.000000,0.232500,-0.972600 -0.572300,-0.324100,0.681600,-0.841300,0.010260,-0.540500 0.456700,0.095350,0.277400,0.000048,0.548200,-0.836300 -0.203000,0.041490,0.679000,0.002691,0.072610,0.997400 0.279100,-0.007427,-0.753200,0.000000,0.545900,-0.837800 0.067670,-0.002714,-0.744200,0.000000,0.994700,-0.103300 0.126900,0.090200,0.274400,-0.000426,0.495300,-0.868700 0.028320,0.099040,0.389100,-0.827100,0.562100,0.000000 0.488900,0.023860,0.346100,0.935300,-0.353900,-0.000052 -0.355200,0.355400,0.717100,0.000000,-0.902600,0.430500 -0.567100,0.202500,0.735300,0.701900,0.013520,-0.712100 -0.397500,0.040400,0.716100,0.000026,0.238400,-0.971200 -0.526400,-0.005258,-0.152900,-0.742100,0.670300,0.000000 -0.528800,-0.010380,-0.347500,-0.924700,0.380600,0.000000 -0.428500,0.351600,0.731900,0.000000,-0.675300,-0.737500 0.169900,-0.006089,0.681100,0.000000,0.726300,-0.687400 0.558200,-0.240300,0.625200,0.011550,-0.999900,-0.000085 0.380600,-0.004389,-0.749900,0.000000,0.886900,-0.461900 0.016930,-0.004390,-0.749900,-0.001385,0.887400,-0.460900 -0.463900,-0.153200,-0.786100,-0.008095,0.989400,-0.144900 -0.236800,0.085320,0.726800,0.000593,0.198300,-0.980100 0.575600,0.242500,0.738600,0.999100,0.016970,0.038100 0.521800,-0.185300,0.489900,0.352700,-0.935700,0.000000 0.524400,0.040400,0.716100,-0.000001,0.239800,-0.970800 -0.491100,-0.240300,-0.652500,0.034500,-0.998900,0.033230 0.279100,0.085250,0.271700,-0.000003,0.431200,-0.902300 0.481400,-0.304800,-0.718300,0.680100,0.000535,-0.733100 0.558200,-0.240300,0.236100,0.011620,-0.999900,0.000000 -0.550200,-0.240200,-0.558900,0.085960,-0.996300,0.000000 -0.571400,-0.161400,0.041590,-0.993100,0.117400,0.003956 0.222000,0.271800,0.743900,-0.000105,0.040540,0.999200 -0.277000,-0.184300,-0.749700,0.000000,-0.954500,-0.298300 -0.568900,-0.290300,0.715800,-0.015100,0.000898,0.999900 -0.523700,0.124300,0.733700,0.000000,0.150500,-0.988600 0.526400,-0.182100,-0.499700,0.795300,-0.606300,0.000000 0.490600,0.121600,0.735300,0.000000,-0.127000,0.991900 -0.545000,-0.239200,-0.000692,0.547400,-0.836900,0.000000 -0.346800,0.074920,0.676700,-0.000022,0.055490,0.998500 -0.269900,0.153600,0.676500,0.000000,-0.029420,0.999600 -0.569800,-0.156300,-0.694200,-0.814200,0.580600,0.000120 0.575800,0.173500,0.736100,0.998400,-0.000186,0.056250 -0.042280,0.227200,0.681700,0.000000,0.143200,-0.989700 0.452300,-0.287900,-0.682100,-0.537300,0.000000,0.843400 0.533600,0.215300,0.744300,0.000010,-0.062790,0.998000 -0.573100,-0.385600,0.709300,-0.961300,-0.040370,-0.272600 0.576000,0.203900,0.735100,0.999900,0.000127,0.015150 0.550400,-0.152600,-0.109900,0.219100,0.975700,0.000009 0.043010,0.349300,0.709800,0.000000,0.304500,-0.952500 0.452300,-0.271000,-0.682100,-0.537300,0.000021,0.843400 0.203700,-0.006089,0.681100,0.000000,0.726300,-0.687400 0.020920,0.083420,0.272800,-0.660700,0.526300,-0.535300 -0.016190,-0.010530,0.679100,0.000000,0.635300,-0.772300 -0.127700,0.252500,0.742300,0.000000,-0.022450,-0.999700 -0.287600,0.202300,0.678400,0.000000,0.112600,-0.993600 -0.545000,-0.239200,0.540600,0.527400,-0.849600,0.000000 -0.169100,0.364100,0.726300,0.000049,0.995500,0.095080 -0.522100,-0.002890,-0.542000,-0.209900,0.977700,0.000000 -0.522100,-0.002890,-0.144500,-0.209900,0.977700,0.000000 0.355900,0.038750,0.718100,-0.002852,-0.200600,0.979700 -0.574600,0.133900,0.728300,-0.995900,-0.001379,0.090100 -0.151500,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.534300,0.243800,0.742300,-0.000354,0.004243,-1.000000 -0.126800,-0.240300,-0.787200,0.000000,-0.999900,-0.010180 0.550000,-0.240100,0.193800,-0.092980,-0.995700,0.000000 0.478000,-0.153200,-0.783100,0.000915,0.991400,-0.130800 -0.394700,0.351600,0.731900,0.000000,-0.675300,-0.737500 0.566900,0.338700,0.714500,-0.800000,-0.315200,0.510600 0.145300,-0.154000,-0.792200,0.024160,0.915100,-0.402500 -0.542600,-0.235300,-0.161400,0.975700,-0.219300,0.000000 0.059220,0.194700,0.680000,-0.000010,-0.082410,0.996600 0.575000,-0.167800,0.692100,1.000000,-0.000003,0.008370 0.525100,0.158700,0.674800,-0.000036,0.054930,-0.998500 -0.318600,0.351600,0.731900,0.000000,-0.675300,-0.737500 0.318600,0.355000,0.724800,-0.000020,-0.968700,-0.248300 0.389100,0.084580,0.674200,0.000000,-0.043030,-0.999100 0.093050,0.185600,0.676800,0.000000,0.090400,-0.995900 0.482100,0.355400,0.717100,0.000247,-0.903300,0.429100 -0.219900,-0.003395,0.616900,-0.000077,0.961000,0.276700 -0.329800,0.337900,0.735900,0.000000,-0.123700,-0.992300 0.473700,0.303900,0.741800,0.000000,0.084900,0.996400 0.568700,-0.238800,-0.575100,0.678800,-0.734400,0.000000 0.499700,0.170200,0.675500,0.000000,0.072190,-0.997400 0.228400,0.355400,0.717100,0.013290,-0.922400,0.386100 0.219900,0.040400,0.716100,0.000000,0.238500,-0.971100 0.482100,0.046330,0.717700,0.000000,0.254500,-0.967100 0.414400,0.169200,0.677500,0.000000,-0.088950,0.996000 -0.542700,-0.235300,-0.575700,0.976200,-0.211900,0.046850 0.033850,0.288400,0.693100,0.000000,0.228900,-0.973500 -0.566000,0.092470,0.725200,0.575600,0.151600,-0.803600 -0.143800,0.035910,0.716600,0.000000,-0.298100,0.954500 0.543600,-0.149400,-0.733700,0.673400,0.739300,-0.000067 -0.126100,0.067250,0.675100,0.000000,-0.058490,-0.998300 0.533600,0.067250,0.675100,0.000001,-0.058490,-0.998300 -0.539400,-0.227500,-0.632200,0.787000,0.616900,-0.002171 0.564600,-0.239900,0.592100,0.137600,-0.990500,0.000000 -0.540600,0.147800,0.676500,-0.010610,-0.015980,0.999800 -0.571100,0.144700,0.676900,-0.782600,-0.074840,-0.618000 0.194500,0.168400,0.739100,0.000000,0.091840,-0.995800 -0.549700,0.246000,0.686700,0.094140,-0.165900,0.981600 0.570700,-0.235100,-0.777800,0.990400,-0.078930,-0.113200 -0.346800,0.168400,0.739100,0.000000,0.091840,-0.995800 -0.465200,0.296000,0.740100,0.000000,-0.075530,-0.997100 -0.101500,0.185700,0.742800,0.000025,-0.088240,0.996100 0.406000,0.296000,0.740100,0.000000,-0.075530,-0.997100 -0.565400,0.032320,0.713300,-0.072600,-0.936500,-0.343200 0.033850,0.262200,0.741900,0.000000,-0.041020,-0.999200 0.120800,0.221100,0.744500,0.000000,-0.024110,0.999700 -0.059200,0.032290,0.679000,0.000000,-0.260400,0.965500 0.473600,-0.240200,-0.772500,0.000049,-0.993700,0.112300 0.415100,0.343400,0.707900,0.000000,0.295900,-0.955200 -0.388000,0.031150,0.680400,-0.390600,-0.160000,0.906600 0.245300,0.041470,0.678800,0.000000,0.057180,0.998400 0.422900,0.278800,0.743600,-0.000079,0.052280,0.998600 -0.228400,0.035910,0.716600,0.000000,-0.298100,0.954500 0.553300,-0.152300,-0.766300,0.097860,0.995200,-0.004954 0.101500,0.082210,0.612700,-0.003227,0.407000,0.913400 -0.575600,0.217600,0.740400,-0.919300,0.044040,0.391100 0.544100,-0.149400,0.535700,0.677600,0.735400,0.000000 0.567100,0.072390,0.717800,-0.675900,0.129000,-0.725600 0.262200,0.304500,0.699400,0.000000,-0.192400,0.981300 -0.056380,0.078810,0.674500,-0.000000,-0.054110,-0.998500 0.507500,0.330300,0.706400,0.000000,-0.294300,0.955700 -0.076110,0.032290,0.679000,0.000000,-0.260400,0.965500 -0.262200,0.295300,0.694800,0.000000,0.232500,-0.972600 0.540700,-0.058230,-0.683000,0.990900,0.134800,0.000057 -0.177600,0.328900,0.703600,0.000000,0.273000,-0.962000 0.025380,0.034970,0.714900,-0.000098,0.156400,-0.987700 -0.559100,0.226600,0.739700,0.293000,0.036290,-0.955400 0.110000,0.254200,0.688500,0.000000,-0.199200,0.979900 0.262200,0.262400,0.690000,0.000000,-0.208200,0.978100 0.567100,0.038640,0.709500,-0.686600,0.119900,-0.717100 -0.143800,0.269300,0.689000,0.000000,0.196800,-0.980500 -0.177600,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.169100,0.059770,0.723200,0.000000,-0.210600,0.977600 -0.565100,0.348400,0.726800,0.826300,-0.494800,-0.269000 -0.253700,0.151600,0.674400,0.000000,0.047750,-0.998900 0.241800,0.235100,0.742300,0.000000,0.004442,-1.000000 0.413700,0.258400,0.744100,-0.000370,0.031310,0.999500 -0.016920,0.093610,0.730800,0.000000,-0.208000,0.978100 0.339000,0.147700,0.676200,0.000000,-0.046320,0.998900 -0.571300,-0.053330,0.715300,-0.966400,-0.037260,0.254300 0.472900,0.110500,0.374300,0.964100,0.265400,-0.001137 0.270700,0.210600,0.679400,0.000000,0.122800,-0.992400 -0.160700,0.303100,0.696600,0.000000,0.239200,-0.971000 -0.532800,0.269300,0.689000,0.000000,0.196800,-0.980500 0.499000,0.117100,0.732600,0.000000,0.159900,-0.987100 -0.093020,0.210600,0.679400,0.000000,0.122800,-0.992400 -0.312900,0.135000,0.675800,0.000000,-0.042420,0.999100 0.515900,0.101700,0.732300,0.000000,-0.174900,0.984600 -0.143800,0.186200,0.679200,0.000000,-0.091670,0.995800 -0.296000,0.194600,0.680000,0.000000,-0.102000,0.994800 0.490600,0.193800,0.741000,0.000000,0.058820,-0.998300 0.135300,0.101300,0.673700,0.000000,-0.018670,-0.999800 0.321400,0.278800,0.743600,0.000002,0.051800,0.998700 0.135300,0.151600,0.737300,0.000000,0.113500,-0.993500 0.532900,-0.232100,-0.635000,-0.418100,0.908400,0.000391 -0.490500,0.210600,0.679400,0.000000,0.122800,-0.992400 -0.253700,0.328900,0.739000,0.000000,0.117100,0.993100 0.084590,0.194000,0.677600,0.000000,0.100600,-0.994900 0.101500,0.080480,0.725800,0.000000,0.214300,-0.976800 0.160700,0.160000,0.738200,0.000000,0.103400,-0.994600 -0.194500,0.118100,0.675900,0.000000,-0.003486,1.000000 0.101500,0.092910,0.673900,0.000000,-0.028780,-0.999600 0.101500,0.186200,0.679200,0.000000,-0.091590,0.995800 -0.088040,0.235100,0.742300,0.000000,0.004442,-1.000000 -0.406000,0.218200,0.742000,0.000000,0.029000,-0.999600 -0.540600,-0.051110,0.667600,-0.967200,0.099380,-0.233900 0.118400,0.144100,0.738800,-0.009869,-0.112900,0.993600 0.160700,0.211400,0.681900,0.000000,-0.120000,0.992800 -0.549700,0.269300,0.689000,-0.000023,0.196800,-0.980400 -0.321400,0.321300,0.737800,0.000000,-0.108400,-0.994100 -0.008440,0.329700,0.736800,0.000000,-0.114800,-0.993400 0.372200,0.169000,0.741200,0.000000,-0.090730,0.995900 0.465200,0.049840,0.678400,0.000000,0.045530,0.999000 -0.389000,0.049840,0.678400,0.000004,0.085030,0.996400 -0.008449,0.079480,0.727900,0.000000,-0.213600,0.976900 -0.380600,0.202600,0.743500,0.000000,-0.044100,0.999000 0.000024,0.160700,0.740300,0.000000,-0.102900,0.994700 -0.025360,0.109600,0.675900,0.000000,0.008555,1.000000 -0.473600,0.288600,0.695200,0.000000,-0.254700,0.967000 0.575800,0.153500,0.735500,0.998200,-0.004503,0.059120 0.118400,0.320700,0.740200,0.000000,0.107100,0.994300 0.346800,0.177700,0.678400,0.009885,-0.100800,0.994900 0.475300,-0.379600,-0.729200,0.164700,-0.764200,-0.623600 -0.397500,0.080470,0.725800,-0.000021,0.214300,-0.976800 -0.397500,0.193800,0.741000,0.000000,0.058820,-0.998300 -0.152200,0.194200,0.743000,0.000000,-0.057380,0.998400 0.245300,0.101100,0.676100,0.000000,0.015100,0.999900 0.084590,0.041490,0.679200,0.000000,0.057170,0.998400 -0.414400,0.109600,0.675600,0.000000,0.008563,1.000000 0.287600,0.134900,0.673800,0.000000,0.024070,-0.999700 -0.203000,0.050430,0.676300,0.000000,-0.084610,-0.996400 0.219900,0.085630,0.728900,0.000000,-0.201500,0.979500 -0.570000,0.050000,0.687200,-0.937500,-0.066400,-0.341500 -0.248800,-0.181800,-0.757600,-0.000018,-0.985900,-0.167500 0.169200,0.270500,0.743900,-0.003084,0.019970,0.999800 0.177600,0.118100,0.675900,0.000000,-0.003422,1.000000 0.236800,0.118100,0.675900,0.000000,-0.003422,1.000000 0.219900,-0.380900,0.677900,0.000000,-0.013730,-0.999900 0.118400,-0.389600,0.678200,0.000000,-0.160800,-0.987000 0.033840,0.086480,0.727100,0.000000,0.197700,-0.980300 -0.135300,-0.380900,0.715800,0.000000,0.005438,1.000000 -0.482100,0.117100,0.732600,0.000000,0.159900,-0.987100 0.456700,0.040400,0.716100,0.000000,0.238500,-0.971100 -0.059200,0.085630,0.728900,0.000000,-0.201500,0.979500 -0.312900,0.168400,0.739100,0.000000,0.091840,-0.995800 -0.118400,0.320600,0.739900,0.000000,0.107000,0.994300 0.380600,0.194000,0.677600,0.000000,0.100600,-0.994900 -0.236800,0.320600,0.739900,0.000000,0.107000,0.994300 -0.152200,0.288600,0.695300,0.000000,-0.232900,0.972500 0.389100,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.033810,0.092840,0.675900,-0.000267,-0.003547,1.000000 0.016920,0.086480,0.727100,0.000000,0.197700,-0.980300 -0.228300,0.168400,0.739100,0.000000,0.091840,-0.995800 -0.507400,0.177200,0.676000,0.000000,0.082220,-0.996600 -0.422900,0.295500,0.742200,0.000000,0.074740,0.997200 0.186100,0.176900,0.739800,0.000000,0.079860,-0.996800 -0.473600,0.287500,0.740700,0.000000,-0.064970,-0.997900 -0.287500,0.278700,0.743300,0.000000,0.047980,0.998800 0.118400,0.337900,0.735900,0.000000,-0.123700,-0.992300 0.236800,0.278800,0.743300,0.000007,0.051770,0.998700 -0.160700,0.312300,0.740700,0.000000,0.096820,0.995300 0.177600,0.035890,0.677700,0.000000,-0.139600,-0.990200 -0.152200,0.323000,0.702000,0.000000,0.268800,-0.963200 -0.571700,-0.101100,0.684300,-0.949300,-0.004123,-0.314300 0.439800,0.101100,0.675700,0.000000,0.015120,0.999900 0.532900,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.532800,0.282500,0.693800,0.000302,-0.249400,0.968400 -0.203000,0.336500,0.705800,0.000000,0.282900,-0.959200 -0.033820,0.160800,0.676900,0.000002,-0.061380,0.998100 -0.499000,0.169200,0.677500,0.000000,-0.088960,0.996000 -0.448300,0.035910,0.716600,0.000000,-0.297900,0.954600 -0.414400,0.134900,0.673800,0.000000,0.024070,-0.999700 0.212200,0.164400,0.675100,0.000000,0.060440,-0.998200 -0.507500,0.355400,0.717100,0.000000,-0.902600,0.430500 -0.270600,0.039880,0.717700,0.000000,-0.287000,0.957900 0.254600,-0.162000,-0.797000,-0.003452,0.214900,-0.976600 0.524400,0.231700,0.684300,0.000000,-0.133400,0.991100 -0.203000,0.194600,0.680000,0.000000,-0.102000,0.994800 0.524400,0.058290,0.677700,0.000000,0.055010,0.998500 0.143800,0.123200,0.735200,0.000209,-0.153900,0.988100 0.305200,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.193800,0.221000,0.744400,0.000000,0.000389,1.000000 -0.558000,0.336500,0.707800,0.205200,-0.321000,0.924600 0.118400,0.039620,0.715900,0.000803,0.236700,-0.971600 -0.499000,0.296000,0.740100,0.000000,-0.075530,-0.997100 0.033840,0.176900,0.739800,0.000000,0.079860,-0.996800 -0.067640,0.193800,0.741000,0.000000,0.058820,-0.998300 0.152300,-0.003333,0.126200,0.029510,0.999400,-0.019680 -0.329800,0.101300,0.673700,0.000000,-0.018670,-0.999800 0.565900,0.165700,0.734900,-0.641400,0.046290,-0.765800 0.135300,0.279000,0.741200,0.000000,-0.053050,-0.998600 0.571000,0.295800,0.728400,-0.921600,-0.012170,-0.387900 -0.355200,-0.002834,-0.542000,0.029370,0.999400,-0.019560 -0.269700,-0.162000,-0.797100,-0.005301,0.133500,-0.991000 0.025370,-0.211800,0.716300,-0.003282,-0.013090,0.999900 0.570800,-0.169500,0.625200,0.999300,-0.036580,-0.000001 0.499000,-0.381000,0.716000,-0.009866,-0.014020,0.999900 0.465200,-0.233600,-0.694200,-0.019740,0.999800,0.009875 0.296000,-0.313300,0.715800,-0.009878,-0.019660,0.999800 0.571200,-0.161000,-0.482800,0.995000,0.099060,-0.013200 0.549800,-0.364000,0.715800,0.009871,0.019620,0.999800 0.439800,-0.233600,-0.736500,-0.039210,0.998800,0.029450 -0.565600,-0.153000,0.490600,-0.241500,0.970300,-0.012450 0.558200,-0.002666,0.692800,-0.020220,0.999000,-0.038800 0.228400,-0.002834,0.244600,0.029370,0.999400,-0.019560 0.478600,-0.338600,-0.681600,0.506600,0.012810,0.862100 0.571000,-0.169500,-0.482800,0.999500,-0.027760,-0.013100 -0.448200,0.116600,0.540400,-0.000120,0.988600,0.150700 0.304500,0.270500,0.691300,0.006683,-0.174900,0.984600 0.570900,0.194100,0.728700,-0.928800,0.036180,-0.368900 -0.448300,0.118100,0.675600,0.000000,-0.003425,1.000000 -0.219900,-0.152400,-0.779100,-0.005231,0.965900,-0.258700 0.558200,-0.279400,0.715800,0.004915,0.000020,1.000000 -0.543600,-0.109900,-0.330500,-0.997900,-0.065080,-0.000024 0.408100,0.271800,0.743900,-0.000363,0.017650,0.999800 -0.270700,0.074300,0.676700,-0.000011,0.055560,0.998500 -0.329800,-0.009563,0.715900,0.000951,0.150300,0.988600 -0.542200,-0.064250,-0.601200,-0.991300,0.131500,0.000168 -0.107800,0.094030,0.676200,-0.003068,0.031180,0.999500 -0.515900,0.329700,0.736800,0.000000,-0.114800,-0.993400 -0.539100,-0.172500,-0.601200,0.602600,-0.798000,0.000000 -0.515900,-0.228700,-0.797100,0.000000,-0.013670,-0.999900 -0.422900,-0.240300,-0.770300,0.000000,-1.000000,0.000000 0.262200,-0.003331,-0.702700,0.000000,1.000000,0.000000 -0.542600,-0.186400,-0.702700,1.000000,0.004786,0.000000 -0.513100,0.264800,0.743400,0.000000,0.006851,1.000000 0.372200,-0.186000,-0.677300,0.000000,-1.000000,0.000000 0.568700,-0.238800,0.609000,0.653000,-0.757300,-0.000077 -0.203000,-0.186000,-0.677300,0.000000,-1.000000,0.000000 -0.515900,0.276400,0.690500,0.000000,0.205400,-0.978700 -0.571500,-0.194800,-0.711100,-1.000000,0.000000,0.000000 -0.540900,-0.143700,-0.702700,-0.969600,0.244500,0.000000 -0.515900,-0.003000,-0.685800,0.030230,0.999500,0.000000 -0.228300,-0.186000,-0.711100,0.000000,-1.000000,0.000000 0.355200,-0.003331,-0.609700,0.000000,1.000000,0.000000 0.126900,-0.003331,-0.702700,0.000000,1.000000,0.000000 -0.279100,-0.003331,-0.719600,0.000000,1.000000,-0.000043 -0.515900,-0.355500,0.677900,0.000000,0.000000,-1.000000 -0.507400,0.203100,0.680600,0.000000,-0.114000,0.993500 -0.507400,-0.186000,0.286900,0.000000,-1.000000,0.000000 -0.076100,-0.003331,-0.186800,0.006470,1.000000,-0.003218 -0.279100,-0.003331,-0.296700,0.000000,1.000000,0.000000 0.456700,-0.003331,0.134600,0.000000,1.000000,0.000000 -0.270600,0.295500,0.742200,0.000000,0.074740,0.997200 0.309200,-0.152700,-0.782900,0.001109,0.997400,-0.072260 -0.515900,-0.003000,0.506800,0.030230,0.999500,0.000000 0.211500,-0.003331,-0.719600,0.000000,1.000000,-0.000043 0.177600,-0.186000,-0.042980,0.000000,-1.000000,0.000000 0.203000,0.219600,0.682900,-0.001491,-0.103000,0.994700 0.296000,-0.186000,-0.262900,0.000000,-1.000000,0.000000 0.521700,-0.002964,0.337600,0.222500,0.974900,0.000000 -0.143800,0.118300,0.351900,0.000000,0.990800,-0.135000 0.143800,0.287500,0.740700,0.000000,-0.064970,-0.997900 0.571000,-0.161000,-0.203700,0.994500,0.104800,0.000059 0.431400,-0.262500,0.677900,0.000000,0.000000,-1.000000 0.177600,-0.186000,-0.744100,-0.000014,-0.991200,-0.132100 -0.490500,0.304500,0.739400,0.000000,-0.086030,-0.996300 -0.499000,-0.254100,0.715800,0.000000,0.000000,1.000000 0.262200,-0.003331,-0.584300,0.000000,1.000000,0.000000 -0.338300,-0.186000,-0.550400,0.000000,-1.000000,0.000000 -0.536700,-0.035470,-0.381300,-0.969400,0.245300,0.000000 0.135300,0.042710,0.618700,0.000000,-0.101100,0.994900 0.380600,-0.186000,0.320700,0.000000,-1.000000,0.000000 0.219900,0.310600,0.698600,-0.000058,0.252700,-0.967500 -0.355200,-0.245600,0.677900,0.000000,0.000000,-1.000000 0.262200,0.123400,0.498000,-0.009852,0.995500,0.094680 0.338300,-0.182700,0.662300,0.000000,-0.693700,0.720300 0.143800,-0.003331,-0.465900,0.000000,1.000000,0.000000 0.169200,-0.003331,0.253000,0.000000,1.000000,0.000000 0.253700,-0.186000,-0.542000,0.000000,-1.000000,0.000000 0.203000,-0.186000,0.523700,0.000000,-1.000000,0.000000 0.355200,-0.003331,-0.398200,0.000000,1.000000,0.000000 0.355200,-0.003331,0.024680,0.000000,1.000000,0.000000 -0.253700,0.085590,0.728900,0.000000,-0.201500,0.979500 -0.571500,-0.186400,0.261500,-1.000000,0.000000,0.000000 0.016920,-0.355600,0.715800,0.000000,0.000000,1.000000 -0.499000,-0.186000,0.481400,0.000000,-1.000000,0.000000 -0.329800,-0.003331,-0.440500,0.000000,1.000000,0.000000 0.287600,-0.003331,-0.339000,0.000000,1.000000,0.000000 -0.465200,-0.003331,-0.254400,0.000000,1.000000,0.000000 -0.296000,-0.003331,0.143100,0.000000,1.000000,0.000000 0.422900,0.348600,0.711300,0.000000,-0.517200,0.855900 0.542600,-0.069680,-0.220600,0.992400,0.123000,0.000039 0.304500,-0.003331,-0.474300,0.000000,1.000000,0.000000 -0.186100,-0.186000,0.354500,0.000000,-1.000000,0.000000 0.346800,-0.186000,-0.246000,0.000000,-1.000000,0.000000 -0.287500,-0.186000,-0.440500,0.000000,-1.000000,0.000000 0.219900,0.095350,0.277400,0.000000,0.548300,-0.836300 -0.050730,-0.003331,-0.449000,0.000000,1.000000,0.000000 0.237500,0.153600,0.676500,0.000031,-0.032240,0.999500 0.296000,-0.228700,0.677900,0.000000,0.000000,-1.000000 0.338300,-0.126800,-0.767500,0.000000,-0.138900,-0.990300 -0.456700,0.006143,0.607600,0.000000,0.159400,0.987200 -0.143800,-0.003331,-0.635000,0.000000,1.000000,0.000000 0.355200,-0.149300,-0.771500,0.000000,0.719100,-0.695000 -0.380600,-0.177400,0.665300,0.000000,-0.627000,0.779000 0.431400,-0.186000,-0.271300,0.000000,-1.000000,0.000000 -0.287500,-0.380900,0.677900,0.000000,-0.013730,-0.999900 -0.534800,-0.028540,-0.270600,-0.962700,0.270500,0.000000 0.456700,0.121600,0.735300,-0.000013,-0.127000,0.991900 0.420100,-0.004593,0.713900,0.000042,0.712600,0.701500 -0.480100,-0.279400,-0.673100,-0.255900,0.001863,0.966700 0.570500,-0.203300,-0.237500,1.000000,0.000059,0.000000 0.499000,-0.003331,0.329200,-0.004249,1.000000,0.000000 -0.499000,-0.194900,0.715800,0.000000,0.000000,1.000000 0.177600,-0.003331,0.143100,-0.000007,1.000000,0.000003 0.540600,-0.143600,-0.364400,0.964200,0.265300,0.000000 -0.177600,-0.143100,-0.767400,0.000000,0.347100,-0.937800 0.304500,-0.186000,-0.220600,0.000000,-1.000000,0.000000 -0.338300,0.084580,0.674200,0.000000,-0.043030,-0.999100 0.270700,-0.186000,0.202300,0.000000,-1.000000,0.000000 -0.343900,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 -0.389000,-0.186000,0.041600,0.000000,-1.000000,0.000000 -0.177600,0.081370,0.610900,-0.000146,0.386700,0.922200 -0.465200,-0.003331,-0.161400,0.000000,1.000000,0.000000 -0.388300,0.240200,0.683700,0.000000,0.162600,-0.986700 0.211500,-0.186000,0.379900,0.000000,-1.000000,0.000000 0.118400,-0.355600,0.715800,0.000000,0.000000,1.000000 0.482100,-0.186000,-0.059900,0.000000,-1.000000,0.000000 -0.542900,-0.069660,-0.203700,-0.995200,0.098320,0.000000 0.431400,-0.002999,-0.736500,0.000000,0.999300,0.038300 0.228400,0.112600,0.573200,0.000003,0.980300,0.197400 -0.456700,-0.003331,-0.203700,0.000000,1.000000,0.000000 -0.363700,-0.186000,-0.482800,0.000000,-1.000000,0.000000 -0.236800,-0.003331,-0.220600,0.000000,1.000000,0.000000 0.186100,-0.003331,-0.186800,0.000000,1.000000,0.000000 0.135300,-0.003331,-0.457400,0.000000,1.000000,0.000000 -0.025360,-0.003331,-0.195200,0.000000,1.000000,0.000000 -0.565400,-0.240100,0.329200,-0.115100,-0.993400,0.000000 0.203000,-0.186000,-0.271300,0.000000,-1.000000,0.000000 0.270700,-0.003331,-0.719600,0.000000,1.000000,-0.000043 0.008473,-0.186000,-0.482800,0.000000,-1.000000,0.000000 -0.507400,-0.003332,0.456000,0.023430,0.999700,0.000000 -0.571500,-0.177900,-0.246000,-1.000000,0.000000,0.000000 0.414500,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 0.262200,-0.093390,-0.769800,0.000000,0.004040,-1.000000 -0.076100,-0.186000,0.261500,0.000000,-1.000000,0.000000 -0.253700,-0.186000,-0.288300,0.000000,-1.000000,0.000000 -0.101500,-0.279400,0.715800,0.000000,0.000000,1.000000 0.160700,-0.279400,0.715800,0.000000,0.000059,1.000000 0.507500,-0.186000,0.354500,0.000000,-1.000000,0.000000 0.482500,0.005949,0.481400,0.997600,0.068850,0.000000 -0.543000,-0.117700,-0.161400,-0.995600,-0.093420,-0.000027 0.296000,-0.003331,0.134600,0.000000,1.000000,0.000000 0.432100,0.240200,0.683700,0.000000,0.162600,-0.986700 0.203000,-0.003331,-0.711100,0.000000,1.000000,0.000000 -0.499000,-0.003331,-0.017610,-0.000044,1.000000,0.000000 -0.270600,-0.003331,-0.017610,0.000000,1.000000,0.000000 0.169200,-0.014110,0.674600,0.000000,0.913900,-0.405900 0.143800,0.177700,0.678400,0.003331,-0.087810,0.996100 0.304500,-0.186000,0.126200,0.000000,-1.000000,0.000000 0.490600,-0.003331,0.160000,0.000000,1.000000,0.000000 0.372100,-0.211800,0.715800,0.000000,0.000000,1.000000 0.253700,-0.185600,0.657300,0.000000,-0.961700,0.274100 -0.262200,0.035890,0.677700,0.000000,-0.139600,-0.990200 -0.550200,-0.240200,-0.178300,0.085960,-0.996300,0.000000 -0.287500,-0.186000,-0.220600,0.000000,-1.000000,0.000000 -0.363700,-0.186000,-0.169800,0.000000,-1.000000,0.000000 -0.143800,-0.186000,0.160000,0.000000,-1.000000,0.000000 -0.499000,-0.186000,-0.389700,0.000000,-1.000000,0.000000 -0.482100,-0.395500,0.713900,0.000000,-0.605500,0.795800 0.321400,-0.003331,0.024680,0.000000,1.000000,0.000000 -0.476400,0.259100,0.743600,0.000000,0.063630,0.998000 -0.253000,-0.010530,0.679100,0.000000,0.635300,-0.772300 0.143800,-0.143400,-0.767400,0.000000,0.337500,-0.941300 0.363700,-0.003331,-0.389700,0.000000,1.000000,0.000000 0.571400,-0.161000,-0.355900,0.994500,0.104700,0.000008 0.236800,-0.186000,0.371400,0.000000,-1.000000,0.000000 0.473600,-0.003331,0.058510,0.000000,1.000000,0.000000 0.439800,0.227200,0.681700,0.000000,0.143200,-0.989700 0.296000,0.074350,0.724400,0.000000,0.220400,-0.975400 -0.355200,0.336500,0.705800,0.000000,0.282900,-0.959200 0.473600,-0.003331,-0.237500,0.000000,1.000000,0.000000 -0.456700,-0.169500,-0.797100,0.000208,0.003347,-1.000000 -0.084560,-0.186000,-0.398200,0.000000,-1.000000,0.000000 0.346800,-0.347100,0.715800,0.000000,0.000059,1.000000 -0.389000,0.115600,0.734300,0.000000,-0.133700,0.991000 -0.493300,-0.004913,0.661800,-0.000020,0.740100,0.672500 0.245300,-0.003331,-0.364400,0.000000,1.000000,0.000000 0.543500,-0.076980,0.261500,0.996000,0.089770,0.000000 -0.279100,-0.003331,-0.195200,0.000000,1.000000,0.000000 -0.456700,0.121500,0.734900,0.000000,-0.154000,0.988100 0.363700,-0.003331,0.261500,0.000000,1.000000,0.004823 -0.448200,-0.186000,-0.042980,0.000000,-1.000000,0.000000 -0.456700,-0.003332,0.642100,0.000000,0.999800,-0.019490 -0.456700,-0.003331,-0.457400,0.000000,1.000000,0.000000 0.507500,-0.186000,0.430700,0.000000,-1.000000,0.000000 -0.160700,-0.003331,0.168500,0.000000,1.000000,0.000000 -0.496400,0.058590,0.278400,-0.994600,0.103300,-0.009801 -0.431300,-0.003331,-0.279800,0.000000,1.000000,0.000000 -0.278400,0.058780,0.617100,0.000000,0.107200,0.994200 -0.287500,-0.186000,-0.364400,0.000000,-1.000000,0.000000 0.422900,-0.398600,0.685300,0.000000,-0.969200,-0.246500 0.236800,-0.364000,0.715800,0.000000,0.000000,1.000000 0.135300,0.194000,0.677600,0.000000,0.100600,-0.994900 0.135300,-0.093390,-0.769800,0.000000,0.004040,-1.000000 0.219900,-0.093390,-0.769800,0.000000,0.004040,-1.000000 -0.101500,-0.003331,-0.440500,0.000000,1.000000,0.000000 -0.542300,-0.123700,-0.336200,-0.992000,-0.126300,0.000000 -0.321400,-0.347100,0.715800,0.000000,0.000000,1.000000 -0.456700,-0.003331,-0.152900,0.000000,1.000000,0.000000 -0.287500,-0.186000,-0.702700,0.000000,-1.000000,0.000000 0.084580,-0.262500,0.715800,0.000000,0.000000,1.000000 0.346800,-0.172400,0.670500,0.000000,-0.896200,0.443700 -0.143800,0.122800,0.397000,0.000000,0.997900,-0.064720 -0.253700,0.040400,0.716100,0.000000,0.238400,-0.971200 -0.160700,-0.186000,0.498300,0.000000,-1.000000,0.000000 0.050750,0.109600,0.676100,0.003297,0.021660,0.999800 0.120200,0.201200,0.743400,-0.000047,-0.023490,0.999700 -0.253700,-0.186000,0.109300,0.000000,-1.000000,0.000000 -0.118400,-0.084990,-0.769600,0.000000,0.039120,-0.999200 -0.118400,-0.186000,-0.389700,0.000000,-1.000000,0.000000 0.538300,-0.043410,0.126200,0.977300,0.211900,0.000000 -0.526700,-0.182200,-0.124700,-0.778100,-0.628200,0.000000 0.287600,-0.186000,-0.119100,0.000000,-1.000000,0.000000 0.101500,0.058320,0.678100,0.000000,0.054980,0.998500 0.110000,-0.144100,0.715800,0.000000,0.000000,1.000000 -0.118400,-0.186000,0.278400,0.000000,-1.000000,0.000000 0.115600,-0.172700,0.674700,0.000000,-0.794600,-0.607100 0.126900,-0.003331,-0.296700,0.000000,1.000000,0.000000 -0.126900,-0.003331,-0.119100,0.000000,1.000000,0.000000 -0.109900,0.210600,0.679400,0.000000,0.122800,-0.992400 0.126900,-0.003331,-0.432000,0.000000,1.000000,0.000000 0.542400,-0.117600,0.100800,0.993100,-0.117200,0.000000 0.118400,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.571500,-0.203300,-0.119100,-1.000000,0.000000,0.000000 0.152300,0.100000,0.280800,-0.000031,0.623400,-0.781900 0.245300,-0.003331,0.236100,-0.000036,1.000000,0.000023 0.008471,-0.003331,-0.110600,0.000000,1.000000,0.000000 -0.571500,-0.194800,-0.592700,-1.000000,0.000000,0.000000 -0.016900,-0.186000,0.134600,0.000000,-1.000000,0.000000 0.169200,-0.186000,0.185400,0.000000,-1.000000,0.000000 0.203000,-0.003331,0.058510,0.000000,1.000000,0.000000 -0.346800,-0.003331,0.227700,0.000000,1.000000,0.000000 -0.228300,-0.186000,-0.592700,0.000000,-1.000000,0.000000 -0.160700,-0.003331,0.244600,0.000000,1.000000,0.000000 0.406000,-0.186000,0.244600,0.000000,-1.000000,0.000000 0.203000,-0.240300,-0.778900,0.000000,-1.000000,0.004348 0.152200,-0.135700,0.715800,0.000000,0.000000,1.000000 0.262200,-0.186000,-0.212100,0.000000,-1.000000,0.000000 -0.571500,-0.203300,-0.355900,-1.000000,0.000000,0.000000 -0.177600,-0.186000,0.642100,0.000000,-1.000000,0.000000 -0.210700,-0.006088,0.681200,0.000000,0.745800,-0.666100 -0.236800,-0.059530,0.715800,0.000000,0.000000,1.000000 0.534500,-0.028650,-0.128300,0.969200,0.246400,0.000001 0.236800,0.288400,0.693100,0.000000,0.228900,-0.973500 0.152300,-0.186000,0.253000,0.000000,-1.000000,0.000000 -0.228300,-0.003331,-0.229100,0.000000,1.000000,0.000000 0.236800,-0.003331,0.134600,0.000000,1.000000,0.000000 -0.202300,-0.004250,0.686100,0.000000,0.973200,-0.230100 -0.245300,-0.003331,-0.186800,0.000000,1.000000,0.000000 0.570500,-0.194800,0.625200,1.000000,0.000000,0.000000 0.543500,-0.076980,0.151500,0.996000,0.089770,0.000000 -0.571400,-0.235100,0.143100,-0.986900,-0.161200,0.000000 0.203000,-0.186000,0.430700,0.000000,-1.000000,0.000000 -0.571500,-0.203300,0.143100,-1.000000,0.000000,0.000000 -0.177600,0.304600,0.699100,0.000000,-0.215400,0.976500 -0.245300,-0.003331,-0.229100,0.000000,1.000000,0.000000 0.008473,-0.186000,0.176900,0.000000,-1.000000,0.000000 -0.152200,-0.009562,0.715900,0.000000,0.153500,0.988200 -0.203000,-0.135700,0.716200,-0.006588,-0.016390,0.999800 -0.571500,-0.203300,0.033140,-1.000000,0.000000,0.000000 -0.126800,0.363600,0.719600,0.001932,0.953900,-0.300000 0.515900,-0.186000,0.202300,0.052520,-0.998600,0.000000 0.143800,0.019290,0.612000,0.000000,-0.407300,0.913300 -0.160700,-0.240200,-0.793100,0.000000,-0.991400,-0.131200 0.194500,-0.211800,-0.797100,0.000000,0.000000,-1.000000 0.194500,0.121100,0.363600,0.000009,0.993000,-0.117800 0.236800,-0.296300,0.677900,0.000000,0.000000,-1.000000 0.245300,-0.003331,-0.711100,0.000000,1.000000,0.000000 -0.228300,-0.186000,-0.220600,0.000000,-1.000000,0.000000 0.422900,-0.186000,-0.110600,0.000000,-1.000000,0.000000 -0.482100,-0.186400,-0.797100,0.000000,0.000000,-1.000000 -0.236800,0.108400,0.582700,-0.000276,0.985800,0.167700 -0.245300,0.123300,0.405400,-0.000012,0.998600,-0.052340 -0.397500,-0.003331,-0.212100,0.000000,1.000000,0.000000 -0.439800,-0.003331,0.227700,0.000000,1.000000,0.000000 -0.524400,-0.177900,-0.797100,0.000000,0.000000,-1.000000 0.236800,-0.186000,-0.643500,0.000000,-1.000000,0.000000 -0.571500,-0.194800,0.134600,-1.000000,0.000000,0.000000 0.570500,-0.203300,-0.296700,1.000000,0.000059,0.000000 -0.219900,-0.003331,-0.186800,0.000000,1.000000,0.000000 -0.448200,-0.003331,-0.169800,0.000000,1.000000,0.000000 -0.287500,-0.003331,0.160000,0.000000,1.000000,0.000000 0.203000,0.125000,0.472800,0.000000,0.998900,0.046910 0.169200,-0.186000,-0.220600,0.000000,-1.000000,0.000000 -0.550500,-0.152500,-0.203000,-0.219700,0.975600,-0.000000 0.304500,-0.186000,-0.110600,0.000000,-1.000000,0.000000 -0.448300,-0.135700,0.715800,0.000000,0.000000,1.000000 -0.565400,-0.153000,0.152300,-0.278100,0.960500,0.013130 0.084590,-0.003331,-0.110600,0.000000,1.000000,0.000000 -0.152200,-0.203300,-0.768300,0.000000,0.000059,1.000000 0.541600,-0.203300,-0.601200,-1.000000,0.000000,0.000000 0.262200,-0.186000,0.219200,0.000000,-1.000000,0.000000 -0.542300,-0.123700,0.213600,-0.992000,-0.126400,0.000012 -0.571500,-0.203300,-0.009147,-1.000000,0.000000,0.000000 -0.194500,0.007963,0.271100,0.000025,0.183600,-0.983000 -0.321400,-0.186000,-0.169800,0.000000,-1.000000,0.000000 0.143800,-0.003331,-0.110600,0.000000,1.000000,0.000000 -0.228300,-0.060050,-0.767300,0.000002,0.144400,-0.989500 -0.431300,-0.186000,0.236100,0.000000,-1.000000,0.000000 -0.524400,-0.002754,0.709000,0.001261,0.992400,0.123000 -0.126900,-0.186000,-0.262900,0.000000,-1.000000,0.000000 0.524400,0.279000,0.741200,0.000000,-0.053050,-0.998600 0.538600,-0.043330,0.363000,0.981500,0.191700,0.000000 0.355200,-0.186000,0.574400,0.000000,-1.000000,0.000000 -0.566700,-0.338600,0.678000,-0.273600,-0.009687,-0.961800 0.456700,-0.186000,-0.550400,0.000000,-1.000000,0.000000 -0.321400,0.144100,0.738500,0.000000,-0.103100,0.994700 0.448300,-0.186000,0.549100,0.000000,-1.000000,0.000000 -0.236800,-0.186000,-0.558900,0.000000,-1.000000,0.000000 -0.565400,-0.240100,-0.745000,-0.115100,-0.993400,-0.000005 0.414400,-0.186000,-0.575800,0.000000,-1.000000,0.000000 0.456700,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.499000,0.225700,0.683400,0.000000,-0.139400,0.990200 0.539500,-0.051350,-0.660400,0.986800,0.162000,0.000043 -0.338300,-0.003331,0.176900,0.000000,1.000000,0.000000 -0.380600,-0.186000,0.549100,0.000000,-1.000000,0.000000 -0.406000,-0.186000,0.041600,0.000000,-1.000000,0.000000 0.482100,-0.304800,0.715800,0.000000,0.000000,1.000000 -0.431300,-0.194800,0.677900,0.000000,0.000000,-1.000000 -0.439800,-0.186000,0.244600,0.000000,-1.000000,0.000000 0.558400,-0.152700,0.575100,0.032740,0.999500,0.000000 0.397500,0.115400,0.557000,-0.000022,0.985400,0.170200 0.499000,-0.093390,-0.769800,0.000000,0.004040,-1.000000 0.093050,-0.186000,-0.575800,0.000000,-1.000000,0.000000 -0.550200,-0.240200,0.413700,0.085960,-0.996300,0.000000 -0.406000,-0.186000,0.422200,0.000000,-1.000000,0.000000 0.490600,-0.003331,-0.558900,0.000000,1.000000,0.000000 0.490600,-0.003331,0.151500,0.000000,1.000000,0.000000 -0.495900,-0.330200,-0.694300,-0.999800,0.000000,0.019020 0.524400,-0.228700,0.715800,0.000000,0.000000,1.000000 0.406000,-0.240300,-0.778800,0.000000,-1.000000,-0.000534 0.397500,-0.186000,0.236100,0.000000,-1.000000,0.000000 -0.397500,-0.186000,-0.246000,0.000000,-1.000000,0.000000 0.515900,-0.194900,0.715800,0.000000,0.000000,1.000000 0.023080,0.013050,0.501100,-0.945900,-0.324600,-0.000004 0.524400,0.310600,0.700900,0.000000,-0.226100,0.974100 0.287600,-0.186000,-0.651900,0.000000,-1.000000,0.000000 0.439800,-0.186000,-0.558900,0.000000,-1.000000,0.000000 0.499000,-0.003331,-0.161400,0.000035,1.000000,0.000000 -0.541300,-0.057820,0.379900,-0.986800,0.161800,0.000000 0.482100,-0.186000,-0.262900,0.000000,-1.000000,0.000000 0.541700,-0.220000,-0.643500,-0.982900,0.184000,0.000000 -0.571500,-0.228600,-0.651900,-1.000000,-0.005917,0.000000 0.570800,-0.203300,0.303800,0.999800,0.019570,0.000000 -0.439800,-0.186000,-0.533500,0.000000,-1.000000,0.000000 0.287600,-0.186000,0.566000,0.000000,-1.000000,0.000000 -0.118400,-0.330200,0.677900,0.000000,0.000000,-1.000000 -0.118400,-0.186000,-0.550400,0.000000,-1.000000,0.000000 -0.219900,-0.003331,0.633600,0.000000,1.000000,0.000037 -0.524400,0.345400,0.736500,0.000000,0.140600,0.990100 -0.338300,0.109600,0.675600,0.000000,0.008629,1.000000 0.397500,0.036860,0.617600,0.000000,-0.190600,0.981700 0.304500,-0.186000,0.109300,0.000000,-1.000000,0.000000 -0.541300,0.321300,0.737800,0.000001,-0.108400,-0.994100 -0.304500,-0.186000,0.557500,0.000000,-1.000000,0.000000 -0.296000,-0.186000,-0.635000,0.000000,-1.000000,0.000000 0.397500,-0.003331,-0.152900,0.000000,1.000000,0.000000 0.490600,-0.186000,0.540600,0.000000,-1.000000,0.000000 0.570500,-0.178000,0.523700,0.999800,-0.019680,0.000000 -0.338300,0.194200,0.743000,0.000000,-0.057380,0.998400 -0.542600,-0.203300,-0.406700,1.000000,0.000000,0.000000 -0.431300,0.336500,0.707800,0.000000,-0.259900,0.965600 0.025390,-0.186000,0.405300,0.000000,-1.000000,0.000000 -0.406000,0.052310,0.719300,0.000000,0.245400,-0.969400 0.389100,-0.003331,-0.651900,0.000000,1.000000,0.000000 0.312900,0.041470,0.678800,0.000000,0.057180,0.998400 0.408000,-0.152700,-0.777000,-0.000000,0.960400,-0.278500 0.380600,-0.186000,0.303800,0.000000,-1.000000,0.000000 -0.499000,-0.186000,0.574400,0.000000,-1.000000,0.000000 0.422900,-0.186000,-0.406700,0.000000,-1.000000,0.000000 -0.338300,0.134900,0.673800,0.000000,0.024070,-0.999700 -0.321400,-0.003331,-0.601200,0.000000,1.000000,0.000000 0.473600,-0.186000,-0.609600,0.000000,-1.000000,0.000000 -0.439800,0.058340,0.720800,0.000000,0.231800,-0.972800 -0.321400,-0.003331,0.007763,0.000000,1.000000,0.000000 0.414400,-0.220200,-0.797100,0.000000,-0.000059,-1.000000 0.482100,-0.186000,0.295300,0.000000,-1.000000,0.000000 0.059220,-0.186000,-0.262900,0.000000,-1.000000,0.000000 0.499700,0.141900,0.676000,-0.000008,-0.027700,0.999600 -0.338300,-0.186000,0.337600,0.000000,-1.000000,0.000000 -0.389100,-0.177900,0.715800,0.000000,0.000000,1.000000 0.008471,-0.003331,0.582900,0.004438,1.000000,0.000003 -0.312900,-0.186000,-0.119100,0.000000,-1.000000,0.000000 -0.397500,-0.228700,0.715800,0.000000,0.000000,1.000000 0.033950,0.110600,0.379900,-0.966500,0.256700,-0.000913 -0.491400,0.079380,0.540600,-0.933700,0.358200,0.000000 0.524400,-0.228700,-0.797100,0.000000,-0.013670,-0.999900 -0.380600,-0.245600,0.715800,0.000000,0.000000,1.000000 -0.439800,-0.003331,-0.423600,0.000000,1.000000,0.000000 0.482100,-0.186000,0.557500,0.000000,-1.000000,0.000000 -0.118400,-0.186000,-0.415100,0.000000,-1.000000,0.000000 -0.389000,-0.321700,0.677900,0.000000,0.000000,-1.000000 0.219900,-0.186000,-0.584300,0.000000,-1.000000,0.000000 0.499000,-0.296300,0.677900,0.000000,0.000000,-1.000000 0.406000,-0.003331,0.176900,0.000000,1.000000,0.000000 -0.386200,0.264800,0.743400,0.000000,0.006851,1.000000 0.262200,-0.186000,0.608300,0.000000,-1.000000,0.000000 0.397500,-0.186000,-0.068350,0.000000,-1.000000,0.000000 0.526400,-0.182100,-0.575800,0.795300,-0.606300,0.000000 0.541400,-0.122600,-0.508200,0.995200,-0.098300,-0.000033 0.515900,-0.067990,0.715800,0.000000,0.000000,1.000000 -0.397500,-0.186000,-0.093730,0.000000,-1.000000,0.000000 -0.439800,0.032290,0.679000,0.000000,-0.354700,0.935000 0.397500,0.052310,0.719300,-0.000011,0.245400,-0.969400 -0.431300,-0.186000,-0.398200,0.000000,-1.000000,0.000000 -0.397500,-0.186000,0.337600,0.000000,-1.000000,0.000000 -0.194500,-0.003331,-0.660400,0.000000,1.000000,0.000000 0.186100,-0.003331,-0.558900,0.000000,1.000000,0.000000 -0.543500,-0.077010,-0.592700,-0.997700,0.067780,-0.000003 0.059220,-0.003331,-0.508200,0.000000,1.000000,0.000000 -0.524400,-0.143400,-0.767400,0.001508,0.330900,-0.943700 -0.329800,0.058340,0.720800,0.000007,0.231800,-0.972800 0.540900,-0.143700,0.557500,0.961900,0.273500,0.000000 -0.160700,-0.186000,-0.719600,0.000000,-1.000000,0.000000 -0.228300,0.049840,0.678400,0.000000,0.085030,0.996400 -0.569800,-0.155400,0.024680,-0.813800,0.581100,-0.000203 -0.092310,0.141900,0.676300,0.000000,-0.027740,0.999600 0.565900,0.177600,0.682800,-0.700300,-0.037170,0.712800 -0.574800,0.232300,0.735400,-0.998000,0.027270,0.057850 -0.025360,0.101100,0.676100,0.000000,-0.004774,1.000000 -0.571500,-0.186400,-0.102200,-1.000000,0.000000,0.000000 -0.101500,-0.194800,-0.797100,0.000000,0.000000,-1.000000 -0.093020,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.093020,0.246000,0.686700,-0.000026,-0.188200,0.982100 0.000013,-0.003331,0.439100,0.000001,1.000000,0.000000 -0.574200,0.058890,0.701300,1.000000,-0.008229,-0.000937 0.008469,0.211400,0.681900,0.000000,-0.120000,0.992800 -0.084560,-0.186000,0.396800,0.000000,-1.000000,0.000000 0.465200,-0.186000,-0.051440,0.000000,-1.000000,0.000000 -0.050730,-0.186000,0.599800,0.000000,-1.000000,0.000000 0.033840,0.100500,0.729700,0.000000,0.177800,-0.984100 0.143800,-0.186000,0.075430,0.000000,-1.000000,0.000000 0.042300,0.118100,0.675900,0.006538,-0.006763,1.000000 -0.042280,0.080480,0.725800,0.000000,0.214300,-0.976800 -0.522200,-0.185400,0.100800,-0.328500,-0.944500,0.000000 0.067680,-0.186000,-0.059900,0.000000,-1.000000,0.000000 0.059220,-0.186000,-0.440500,0.000000,-1.000000,0.000000 0.515900,-0.003004,0.066970,-0.025750,0.999700,0.000000 -0.025360,0.328900,0.739000,0.000000,0.117100,0.993100 -0.363700,-0.186000,0.033140,0.000000,-1.000000,0.000000 -0.025360,0.080480,0.725800,0.000000,0.214300,-0.976800 -0.050730,-0.003331,-0.533500,0.000000,1.000000,0.000000 -0.067650,-0.003331,0.126200,0.000000,1.000000,0.000000 -0.152200,-0.186000,-0.051440,0.000000,-1.000000,0.000000 -0.042280,-0.003331,-0.575800,0.000000,1.000000,0.000000 -0.084570,0.122800,0.397000,0.000000,0.997900,-0.064720 0.025400,0.363600,0.719600,0.000000,0.955700,-0.294500 0.541600,-0.186400,0.041600,-1.000000,0.004909,0.000000 -0.397500,-0.186000,0.033140,0.000000,-1.000000,0.000000 -0.093020,0.310600,0.700600,0.000000,-0.226500,0.974000 -0.050730,-0.186000,-0.169800,0.000000,-1.000000,0.000000 0.033840,-0.003331,-0.364400,0.000000,1.000000,0.000000 0.406000,-0.003331,0.100800,0.000000,1.000000,0.000000 -0.033820,0.246000,0.686700,0.000000,-0.188200,0.982100 -0.059190,-0.186000,0.041600,0.000000,-1.000000,0.000000 0.084580,-0.347100,0.715800,0.000000,0.000000,1.000000 0.076130,0.169200,0.677800,0.000000,-0.088930,0.996000 -0.539100,-0.172500,0.092340,0.601700,-0.798700,-0.000085 -0.448200,-0.003331,0.024680,0.000000,1.000000,0.000000 -0.025360,-0.186000,-0.609600,0.000000,-1.000000,0.000000 -0.025350,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 0.287600,-0.042620,0.715800,0.000000,0.000000,1.000000 0.521700,-0.002964,0.058510,0.222500,0.974900,-0.000000 -0.084570,-0.279400,0.715800,0.000000,0.000000,1.000000 0.570000,-0.234900,0.042310,0.985100,-0.172000,0.000000 0.568700,-0.238800,-0.084560,0.678800,-0.734400,0.000000 -0.543000,-0.117700,-0.085260,-0.995600,-0.093430,-0.000010 -0.515900,-0.003000,-0.085270,0.030230,0.999500,0.000000 0.541600,-0.186400,0.033140,-1.000000,0.004909,0.000000 -0.025360,-0.186000,-0.279800,0.000000,-1.000000,0.000000 -0.050030,0.067250,0.675100,0.000000,-0.058490,-0.998300 -0.109900,-0.186000,0.033140,0.000000,-1.000000,0.000000 -0.558200,-0.240300,0.041600,-0.011660,-0.999900,0.000000 -0.397500,-0.186000,-0.051440,0.000000,-1.000000,0.000000 0.033140,0.352600,0.736100,0.000000,0.104000,0.994600 -0.126900,-0.003331,0.033140,0.000000,1.000000,0.000000 -0.084570,0.080480,0.725800,0.000000,0.214300,-0.976800 -0.279100,-0.003331,0.092340,0.000000,1.000000,0.000000 0.058510,0.065040,0.617900,0.000000,0.150700,0.988600 0.465200,-0.084910,0.715800,0.000000,0.000000,1.000000 0.093050,-0.186000,-0.660400,0.000000,-1.000000,0.000000 0.076130,0.312300,0.741100,0.000000,0.096950,0.995300 0.279100,-0.186000,-0.076810,0.000000,-1.000000,0.000000 0.076130,-0.003331,-0.313600,0.000000,1.000000,0.000000 0.042300,0.279000,0.741200,0.000000,-0.053050,-0.998600 -0.084560,0.126400,0.673600,0.000000,0.014140,-0.999900 0.050760,-0.186000,-0.330500,0.000000,-1.000000,0.000000 0.076130,-0.186000,-0.212100,0.000000,-1.000000,0.000000 0.093050,0.210800,0.741800,0.000000,0.038880,-0.999200 -0.296000,-0.003331,-0.051440,0.000000,1.000000,0.000000 0.490600,-0.186000,-0.009150,0.000000,-1.000000,0.000000 0.406000,-0.003331,-0.059900,0.000000,1.000000,0.000000 -0.093020,-0.211800,-0.797100,0.000000,0.000000,-1.000000 0.059220,-0.003331,-0.423600,0.000000,1.000000,0.000000 0.093050,0.169200,0.677800,0.000000,-0.088930,0.996000 -0.245300,-0.186000,-0.059900,0.000000,-1.000000,0.000000 -0.372100,-0.003331,-0.026070,0.000000,1.000000,0.000000 -0.059190,0.042220,0.263200,0.000000,-0.108900,-0.994000 0.093050,-0.186000,0.024680,0.000000,-1.000000,0.000000 0.473600,-0.003331,0.092340,0.000000,1.000000,0.000000 -0.084560,-0.186000,0.100800,0.000000,-1.000000,0.000000 -0.050730,-0.186000,0.422200,0.000000,-1.000000,0.000000 0.067680,0.143300,0.736300,0.000000,0.122300,-0.992500 -0.050730,-0.003331,-0.364400,0.000000,1.000000,0.000000 -0.008440,0.042060,0.677100,0.000000,-0.093690,-0.995600 0.016930,-0.389600,0.678200,0.000000,-0.160800,-0.987000 -0.059190,-0.186000,0.608300,0.000000,-1.000000,0.000000 0.406000,-0.186000,0.066970,0.000000,-1.000000,0.000000 0.338300,-0.186000,0.066970,0.000000,-1.000000,0.000000 -0.067660,-0.228700,0.715800,0.000000,0.000000,1.000000 -0.067650,-0.003331,-0.246000,0.000000,1.000000,0.000000 -0.067650,-0.228600,-0.768000,0.000000,0.026500,0.999600 0.016930,-0.003331,-0.584300,0.000000,1.000000,0.000000 0.016930,-0.003331,0.185400,0.000000,1.000000,0.000000 0.016930,-0.003331,-0.508200,0.000000,1.000000,0.000000 0.008471,-0.003331,-0.449000,0.000000,1.000000,0.000000 -0.016900,0.134900,0.675800,0.000000,-0.018770,0.999800 0.000015,-0.186000,0.354500,0.000000,-1.000000,0.000000 -0.016890,0.364000,0.726500,0.000000,0.993600,0.112600 -0.016910,-0.025700,0.715800,0.000000,0.000059,1.000000 -0.008441,-0.372500,0.677900,0.000000,0.000000,-1.000000 0.000015,-0.186000,0.100800,0.000000,-1.000000,0.000000 -0.186100,-0.003331,-0.000695,0.000000,1.000000,0.000000 -0.380600,-0.003331,0.007763,0.000000,1.000000,0.000000 -0.542200,-0.063640,0.007762,-0.991300,0.131900,0.000000 0.000015,-0.186000,-0.474300,0.000000,-1.000000,0.000000 -0.550500,-0.152500,0.000022,-0.219700,0.975600,-0.000000 -0.253700,-0.186000,-0.000693,0.000000,-1.000000,0.000000 -0.338300,-0.186000,0.007765,0.000000,-1.000000,0.000000 0.536100,-0.035640,-0.000691,0.969400,0.245400,0.000002 -0.008442,0.328900,0.703600,0.000000,0.273000,-0.962000 -0.101500,-0.186000,-0.009150,0.000000,-1.000000,0.000000 -0.473600,-0.186000,-0.009150,0.000000,-1.000000,0.000000 0.008473,-0.186000,0.295300,0.000000,-1.000000,0.000000 0.016930,-0.186000,-0.719600,0.000000,-1.000000,0.000000 0.008473,-0.186000,-0.618100,0.000000,-1.000000,0.000000 -0.490500,-0.003331,-0.009153,0.000000,1.000000,0.000000 -0.016900,-0.186000,-0.152900,0.000000,-1.000000,0.000000 0.008475,0.262200,0.741900,-0.000015,-0.040850,-0.999200 0.008485,0.363600,0.719600,0.000000,0.955700,-0.294500 0.543600,-0.149400,-0.006326,0.673400,0.739200,0.000000 -0.025380,0.177700,0.678300,-0.013130,-0.084570,0.996300 -0.084560,0.109700,0.733300,-0.000009,-0.168400,0.985700 0.211500,-0.003331,0.066970,0.000000,1.000000,0.000000 0.025390,-0.003331,-0.558900,0.000000,1.000000,0.000000 0.076130,-0.186000,-0.668900,0.000000,-1.000000,0.000000 -0.177600,-0.059530,0.715800,0.000000,0.000000,1.000000 -0.109900,-0.186000,0.050050,0.000000,-1.000000,0.000000 -0.084560,0.058320,0.678100,0.000000,0.074530,0.997200 -0.389000,-0.003331,-0.076810,0.000000,1.000000,0.000000 0.042300,-0.186000,-0.432000,0.000000,-1.000000,0.000000 -0.245300,-0.003331,0.066970,0.000000,1.000000,0.000000 0.076130,-0.186000,0.168500,0.000000,-1.000000,0.000000 -0.050730,-0.003331,-0.152900,0.006470,1.000000,-0.003218 0.033840,-0.003331,-0.432000,0.000000,1.000000,0.000000 -0.568900,-0.044980,0.715800,-0.092420,0.000032,0.995700 -0.067650,-0.186000,0.050050,0.000000,-1.000000,0.000000 -0.084560,-0.003331,-0.220600,0.000000,1.000000,0.000000 -0.093020,-0.186000,0.041600,0.000000,-1.000000,0.000000 -0.076100,-0.186000,-0.381300,0.000000,-1.000000,0.000000 -0.397500,-0.186000,-0.068350,0.000000,-1.000000,0.000000 -0.253700,-0.003331,-0.068360,0.000000,1.000000,0.000000 -0.050730,-0.003331,-0.643500,0.000000,1.000000,0.000000 -0.033820,-0.186000,-0.381300,0.000000,-1.000000,0.000000 -0.296000,-0.186000,0.050050,0.000000,-1.000000,0.000000 -0.526400,-0.005258,0.016230,-0.742100,0.670300,0.000000 0.025840,-0.162100,-0.797100,-0.001099,0.115400,-0.993300 -0.016910,-0.186600,-0.768000,-0.003210,-0.347300,0.937800 -0.033820,0.203100,0.680900,0.000000,-0.113900,0.993500 -0.536700,-0.035470,0.058520,-0.969400,0.245300,0.000000 -0.571500,-0.203300,-0.051440,-1.000000,0.000000,0.000000 0.053580,0.078810,0.674500,0.000000,-0.054110,-0.998500 0.093050,-0.003331,-0.499700,0.000000,1.000000,0.000000 0.101500,-0.003331,-0.567400,0.000000,1.000000,0.000000 0.287600,0.160800,0.676600,0.000000,-0.061380,0.998100 0.008475,0.194600,0.680200,0.013150,-0.088920,0.996000 0.101500,0.160000,0.738200,0.000000,0.103400,-0.994600 0.363700,0.160000,0.738200,0.000000,0.103400,-0.994600 0.050750,0.320700,0.740200,-0.006534,0.110300,0.993900 -0.033820,0.160000,0.738200,0.000000,0.103400,-0.994600 -0.253700,0.151600,0.737300,0.000000,0.113500,-0.993500 0.499000,0.312300,0.741100,0.000000,0.096930,0.995300 -0.236800,0.160000,0.738200,0.000000,0.103400,-0.994600 0.473700,0.321300,0.737800,0.000000,-0.108400,-0.994100 -0.338300,0.321300,0.737800,0.000000,-0.108400,-0.994100 0.000013,-0.003331,-0.093730,-0.000036,1.000000,0.000023 -0.236800,-0.093350,0.715800,0.000001,0.019620,0.999800 0.329900,0.185600,0.676800,0.000000,0.090400,-0.995900 0.050750,0.127600,0.736600,0.000000,-0.169800,0.985500 0.245300,0.122600,0.380300,-0.009871,0.995700,-0.092520 0.431400,0.169000,0.741200,0.000000,-0.090730,0.995900 -0.372100,0.177400,0.741500,0.000000,-0.098480,0.995100 -0.414400,0.144100,0.738500,0.000000,-0.103100,0.994700 0.101500,0.124800,0.405400,0.000000,0.998500,-0.054830 0.406000,0.185800,0.742800,0.000000,-0.088310,0.996100 -0.439800,0.296700,0.697500,0.000000,-0.232000,0.972700 0.059220,0.328900,0.739300,0.000007,0.136800,0.990600 -0.034250,0.102200,0.585600,0.769200,0.636900,0.051410 -0.414400,0.194200,0.743000,0.000000,-0.057370,0.998400 -0.473600,-0.076590,-0.769100,0.000000,0.074970,-0.997200 0.329900,-0.101800,-0.769700,0.000000,-0.032130,-0.999500 0.169200,-0.110200,-0.769200,0.000000,-0.067990,-0.997700 0.465200,0.278800,0.743600,0.000001,0.052370,0.998600 -0.067650,0.123300,0.405400,0.000000,0.998600,-0.052350 0.566700,0.042090,0.677200,0.213000,-0.088280,-0.973000 -0.245200,-0.002667,-0.389800,0.022820,0.999600,-0.016280 0.507500,-0.003332,-0.601200,-0.019460,0.999800,0.000000 -0.496400,0.058590,0.599800,-0.995000,0.099600,0.011540 0.008472,-0.203400,-0.768000,0.000000,-0.019630,0.999800 0.570800,-0.220300,0.354500,0.999800,-0.016550,-0.006585 -0.253700,0.119900,0.514400,-0.013110,0.993100,0.117000 0.110000,0.160700,0.740300,-0.009892,-0.092950,0.995600 0.372100,0.312300,0.740900,0.006604,0.083680,0.996500 -0.270600,0.123000,0.405500,-0.009854,0.999400,-0.032610 -0.542200,-0.178200,-0.355900,0.965200,-0.261400,-0.004284 -0.524300,-0.234100,-0.643500,0.097370,0.995200,0.003827 -0.126800,-0.003166,-0.246000,0.036040,0.999100,-0.022920 0.025380,0.211400,0.681900,0.003332,-0.136600,0.990600 -0.507500,0.253200,0.744200,0.000000,0.045070,0.999000 0.507500,0.253100,0.744500,-0.008454,0.006624,0.999900 -0.507500,-0.240300,-0.643500,0.002764,-1.000000,0.002656 -0.169200,-0.003332,-0.254400,-0.016370,0.999800,0.013110 -0.563100,-0.209600,-0.792200,-0.608200,0.000834,-0.793800 0.431400,0.109700,0.673600,0.000000,-0.008652,-1.000000 -0.033810,0.101300,0.673700,0.000000,-0.018670,-0.999800 0.329900,0.336800,0.707900,0.003772,-0.256900,0.966400 -0.414400,0.118100,0.675600,0.000000,-0.003425,1.000000 0.321400,0.118100,0.675900,0.000000,-0.003422,1.000000 -0.381300,0.082440,0.676300,-0.000294,0.024120,0.999700 -0.541300,-0.057820,-0.406700,-0.986800,0.161800,0.000011 -0.059220,-0.003333,-0.110600,-0.029540,0.999400,0.019680 -0.135300,-0.186000,-0.525100,0.000000,-1.000000,0.000000 -0.431300,-0.003331,-0.178300,0.000000,1.000000,0.000000 0.000015,-0.186000,0.303800,0.000000,-1.000000,0.000000 -0.296000,-0.186000,0.523700,0.000000,-1.000000,0.000000 0.544400,-0.239000,0.357300,-0.514100,-0.857700,0.000000 0.406000,-0.186000,0.405300,0.000000,-1.000000,0.000000 0.483900,0.013330,0.303800,0.951500,-0.307700,0.000002 0.499000,-0.254100,0.677900,0.000000,0.000000,-1.000000 -0.488900,0.008260,0.379900,-0.977100,0.212700,-0.000025 0.414400,0.124000,0.489600,0.000000,0.997400,0.071740 0.397500,-0.186000,0.312200,0.000000,-1.000000,0.000000 0.490600,-0.003331,-0.660400,0.000000,1.000000,0.000000 0.414400,-0.003331,-0.068360,0.000000,1.000000,0.000000 0.448300,-0.186000,-0.415100,0.000000,-1.000000,0.000000 0.059220,-0.186000,-0.609600,0.000000,-1.000000,0.000000 0.389100,-0.003331,-0.305200,0.000000,1.000000,0.000000 -0.059190,-0.186000,-0.525100,0.000000,-1.000000,0.000000 0.526400,-0.182100,-0.592700,0.795300,-0.606300,0.000000 -0.541500,-0.129100,-0.654800,-0.987900,-0.155200,0.000149 -0.515900,-0.233900,-0.651900,-0.003719,1.000000,0.006620 -0.397500,-0.245600,0.715800,0.000000,0.000000,1.000000 0.025390,-0.186000,0.566000,0.000000,-1.000000,0.000000 0.194500,-0.003331,-0.516600,0.000000,1.000000,0.000000 0.490600,-0.338600,0.677900,0.000000,0.000000,-1.000000 0.067670,-0.003331,-0.584300,0.000000,1.000000,0.000000 0.570300,-0.235000,0.549800,0.979200,-0.203100,0.000000 0.515900,-0.186400,0.715800,0.000000,0.000000,1.000000 0.482100,0.093940,0.518000,0.842200,0.539100,0.000000 -0.431300,-0.003331,-0.415100,0.000000,1.000000,0.000000 -0.524400,0.202600,0.743500,-0.000053,-0.044230,0.999000 -0.422900,-0.003331,0.058510,0.000000,1.000000,0.000000 -0.143800,-0.003331,-0.567400,0.000000,1.000000,0.000000 0.549800,-0.321700,0.677900,0.000000,0.000000,-1.000000 0.515900,-0.186000,-0.423600,0.041760,-0.999100,0.000000 0.152300,-0.186000,0.633600,0.000000,-1.000000,0.000000 0.465200,-0.003331,0.625200,0.000000,1.000000,-0.004161 -0.541300,-0.057820,0.396800,-0.986800,0.161800,0.000000 -0.076100,-0.186000,0.532100,0.000000,-1.000000,0.000000 -0.543500,-0.076990,0.523700,-0.997600,0.068910,0.000000 -0.536700,-0.035470,0.549100,-0.969400,0.245300,0.000000 0.570500,-0.186400,0.549100,1.000000,0.000059,0.000000 -0.571500,-0.220200,-0.423600,-1.000000,-0.000178,0.000000 0.490600,-0.186000,0.100800,0.000000,-1.000000,0.000000 -0.033820,-0.186000,0.396800,0.000000,-1.000000,0.000000 -0.542200,-0.063640,0.591300,-0.991300,0.131900,0.000000 0.414400,-0.003331,0.050050,0.000000,1.000000,0.000000 -0.329800,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 0.177600,-0.186000,-0.542000,0.000000,-1.000000,0.000000 -0.346800,-0.186000,-0.542000,0.000000,-1.000000,0.000000 -0.329800,-0.003331,-0.550400,0.000000,1.000000,0.000000 0.431400,-0.186000,0.650500,0.000000,-0.999700,0.024610 -0.321400,-0.003331,0.066970,0.000000,1.000000,0.000000 -0.329800,-0.186000,0.092340,0.000000,-1.000000,0.000000 -0.329800,-0.003331,-0.592700,0.000000,1.000000,0.000000 0.397500,-0.186000,0.515200,0.000000,-1.000000,0.000000 -0.422900,-0.245600,0.715800,0.000000,0.000000,1.000000 0.507500,-0.186000,-0.271300,0.000000,-1.000000,0.000000 -0.515900,-0.003000,-0.423600,0.030230,0.999500,0.000000 -0.329800,0.169000,0.740800,0.000000,-0.090760,0.995900 0.414400,-0.186000,0.286900,0.000000,-1.000000,0.000000 -0.422900,-0.186000,0.160000,0.000000,-1.000000,0.000000 0.482100,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.422900,0.152400,0.739100,0.000000,-0.092980,0.995700 0.490600,-0.186400,-0.797100,0.000000,0.000000,-1.000000 -0.152200,-0.186000,-0.592700,0.000000,-1.000000,0.000000 -0.160700,-0.003331,-0.651900,0.000000,1.000000,0.000000 0.532900,0.135800,0.737700,0.000000,-0.155200,0.987900 0.321400,-0.003331,-0.423600,0.000000,1.000000,0.000000 0.540700,-0.057920,0.568800,0.994000,0.109400,0.000000 -0.296000,-0.003331,-0.508200,0.000000,1.000000,0.000000 -0.211400,-0.186000,0.549100,0.000000,-1.000000,0.000000 -0.403800,0.108500,0.583800,0.000000,0.975100,0.221900 -0.016730,-0.003399,0.549100,0.270800,0.962600,0.000000 -0.321400,-0.186000,0.286900,0.000000,-1.000000,0.000000 -0.507400,-0.003332,-0.525100,0.019630,0.999800,0.000000 -0.093020,-0.186000,0.523700,0.000000,-1.000000,0.000000 -0.301600,0.351600,0.731900,-0.000045,-0.675400,-0.737500 0.515900,0.330300,0.706400,0.000000,-0.294300,0.955700 -0.143800,-0.003331,-0.406700,0.000000,1.000000,0.000000 -0.542900,-0.069660,0.312200,-0.995200,0.098320,0.000000 -0.321400,-0.003331,-0.660400,0.000000,1.000000,0.000000 0.541700,-0.123600,0.371500,0.992000,-0.126500,0.000000 -0.542600,-0.220200,-0.533500,1.000000,-0.000059,0.000000 -0.169100,0.127600,0.736200,0.000000,-0.169700,0.985500 -0.059190,-0.186400,0.677900,0.000000,0.004847,-1.000000 -0.542600,-0.211800,-0.161400,1.000000,0.000059,0.000000 0.211400,-0.228700,0.715800,0.000000,0.000000,1.000000 0.570500,-0.220200,-0.601200,1.000000,-0.000178,0.000000 -0.194500,-0.186000,0.236100,0.000000,-1.000000,0.000000 -0.236800,-0.211800,0.677900,0.000000,0.000000,-1.000000 0.127600,-0.004251,0.686100,-0.000014,0.966500,-0.256500 -0.109900,-0.211800,0.715800,0.000000,0.000000,1.000000 0.231200,0.012490,0.275200,0.000126,-0.353000,-0.935600 -0.169100,-0.003331,0.041590,0.000000,1.000000,0.000000 -0.033820,-0.003331,0.193800,0.000000,1.000000,0.000000 0.465200,-0.003331,0.143100,0.000000,1.000000,0.000000 -0.571400,-0.235100,0.151500,-0.986900,-0.161200,0.000000 -0.543900,-0.149400,0.236100,-0.682600,0.730800,0.000000 -0.321400,-0.186000,0.210700,0.000000,-1.000000,0.000000 0.211500,-0.186000,0.202300,0.000000,-1.000000,0.000000 -0.093020,-0.211800,-0.768300,0.000000,0.000000,1.000000 -0.160700,-0.186000,0.176900,0.000000,-1.000000,0.000000 -0.558200,-0.228700,0.715800,0.000000,0.000000,1.000000 -0.219900,-0.003331,0.143100,0.000000,1.000000,0.000000 -0.380600,-0.194800,-0.797100,0.000000,0.000000,-1.000000 0.541600,-0.194800,0.337600,-1.000000,0.000000,0.000000 -0.304500,-0.211800,0.677900,0.000000,0.000000,-1.000000 -0.160700,-0.186000,0.050050,0.000000,-1.000000,0.000000 -0.304500,-0.220200,-0.768300,0.000000,0.019560,0.999800 -0.544100,-0.093450,-0.246000,-1.000000,0.003981,0.000019 -0.397500,-0.211800,0.677900,0.000000,0.000000,-1.000000 -0.143100,0.221000,0.744400,0.000000,0.000389,1.000000 -0.482100,-0.194800,-0.797100,0.000000,0.000000,-1.000000 -0.219900,0.084580,0.674200,0.000000,-0.043030,-0.999100 -0.143100,0.141900,0.676300,0.000002,-0.027700,0.999600 0.016930,-0.186000,0.236100,0.000000,-1.000000,0.000000 0.541600,-0.211800,0.126200,-1.000000,0.000000,0.000000 -0.211400,-0.186000,-0.558900,0.000000,-1.000000,0.000000 -0.169100,-0.186000,-0.482800,0.000000,-1.000000,0.000000 0.355200,-0.228700,0.677900,0.000000,0.000000,-1.000000 0.118400,-0.003331,-0.355900,0.000000,1.000000,0.000000 -0.118400,-0.003331,0.109300,0.000000,1.000000,0.000000 -0.109900,-0.003331,-0.000695,0.000000,1.000000,0.000000 0.414400,-0.003331,-0.102200,0.000000,1.000000,0.000000 0.110000,-0.186000,-0.271300,0.000000,-1.000000,0.000000 -0.115600,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 0.456700,-0.118700,0.715800,0.000000,0.000000,1.000000 0.110000,0.270500,0.741600,0.000000,-0.042090,-0.999100 -0.109900,-0.025700,0.715800,0.000000,0.000059,1.000000 0.541500,-0.063690,-0.121900,0.987200,0.159700,0.000000 0.456700,-0.003331,-0.102200,0.000000,1.000000,0.000000 -0.490500,-0.118700,0.715800,0.000000,0.000000,1.000000 0.008463,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.101500,0.345400,0.736800,0.000000,0.119100,0.992900 0.110000,-0.003331,-0.432000,0.000000,1.000000,0.000000 0.118400,-0.186000,0.413700,0.000000,-1.000000,0.000000 -0.025360,-0.186000,0.109300,0.000000,-1.000000,0.000000 -0.008443,-0.186000,0.117700,0.000000,-1.000000,0.000000 -0.529200,-0.176800,0.100800,-0.788200,-0.615400,0.000000 -0.101500,0.363600,0.719600,0.000000,0.955700,-0.294500 -0.135300,-0.186000,0.117700,0.000000,-1.000000,0.000000 0.059220,-0.003331,0.109300,0.000000,1.000000,0.000000 -0.101500,0.100200,0.280500,0.000000,0.653100,-0.757200 0.118400,-0.237200,0.716200,0.003294,-0.006577,1.000000 -0.228300,-0.003331,-0.110600,0.000000,1.000000,0.000000 -0.448200,-0.186000,-0.457400,0.000000,-1.000000,0.000000 -0.355200,-0.228700,0.715800,0.000000,0.000000,1.000000 0.152200,0.348400,0.711600,0.000072,-0.517000,0.856000 0.448300,-0.110300,0.715800,0.000000,0.000000,1.000000 -0.465200,-0.003331,0.625200,-0.000001,1.000000,-0.003787 -0.389000,0.342600,0.709400,0.000000,-0.274000,0.961700 0.473600,-0.186000,-0.042980,0.000000,-1.000000,0.000000 -0.363700,-0.186000,-0.186800,0.000000,-1.000000,0.000000 -0.253000,-0.004250,0.686100,0.000000,0.973200,-0.230100 -0.355200,-0.003331,-0.364400,0.000000,1.000000,0.000000 0.439800,-0.186000,-0.635000,0.000000,-1.000000,0.000000 -0.439800,-0.186000,-0.609600,0.000000,-1.000000,0.000000 0.152300,-0.026280,-0.759800,0.000000,0.292300,-0.956300 -0.270600,-0.321700,0.677900,0.000000,0.000000,-1.000000 0.474400,0.058880,0.675600,0.000000,-0.069940,-0.997600 0.186100,-0.186000,0.202300,0.000000,-1.000000,0.000000 0.219900,-0.101800,-0.769700,0.000000,-0.032130,-0.999500 0.228400,-0.372500,0.715800,0.000000,0.000000,1.000000 -0.245300,-0.186000,0.227700,0.000000,-1.000000,0.000000 0.270700,-0.002714,-0.744200,0.000000,0.994700,-0.103300 0.126900,-0.194900,0.715800,0.000000,0.000000,1.000000 0.177600,0.296600,0.697800,0.000000,-0.231900,0.972700 -0.542600,-0.203300,-0.482800,1.000000,0.000000,0.000000 0.372200,-0.003331,-0.355900,0.000000,1.000000,0.000000 -0.329800,-0.186000,-0.381300,0.000000,-1.000000,0.000000 0.482500,0.005949,0.464500,0.997600,0.068850,0.000000 -0.355200,-0.211800,-0.768300,0.021980,0.021650,0.999500 0.219900,-0.186000,-0.093730,0.000000,-1.000000,0.000000 0.211500,-0.186000,0.253000,0.000000,-1.000000,0.000000 0.211500,-0.093390,-0.769800,0.000000,0.004040,-1.000000 0.570500,-0.178000,-0.508200,0.999800,-0.019670,0.000003 0.380600,-0.003331,-0.288300,0.000000,1.000000,0.000000 -0.135300,-0.186000,0.422200,0.000000,-1.000000,0.000000 0.321400,-0.003331,-0.195200,0.000000,1.000000,0.000000 0.211500,0.203000,0.680900,0.000000,-0.113900,0.993500 -0.448300,-0.152600,0.715800,0.000000,0.000000,1.000000 0.490600,-0.003331,0.134600,0.000000,1.000000,0.000000 -0.363700,-0.186000,-0.178300,0.000000,-1.000000,0.000000 0.346800,0.121800,0.514600,0.000000,0.994000,0.109300 0.312900,-0.003331,-0.364400,0.000000,1.000000,0.000000 0.338300,-0.003331,-0.584300,0.000000,1.000000,0.000000 -0.346800,-0.186000,0.134600,0.000000,-1.000000,0.000000 0.256600,0.117600,0.543100,0.009848,0.985100,0.171800 0.439800,-0.003331,0.261500,0.000000,1.000000,0.004823 -0.389000,-0.186000,-0.017610,0.000000,-1.000000,0.000000 0.186100,-0.372500,0.677900,0.000000,0.000000,-1.000000 -0.372100,-0.002730,0.657000,0.000000,0.986200,0.165700 0.008473,-0.186000,-0.465900,0.000000,-1.000000,0.000000 -0.194500,-0.186000,-0.533500,0.000000,-1.000000,0.000000 -0.042270,-0.186000,-0.389700,0.000000,-1.000000,0.000000 -0.448200,-0.003331,0.066970,0.000000,1.000000,0.000000 0.313000,-0.186000,0.633600,0.000000,-1.000000,0.000000 -0.431300,-0.364000,0.715800,0.000000,0.000000,1.000000 -0.490500,-0.321700,0.677900,0.000000,0.000000,-1.000000 -0.380600,-0.186000,-0.389700,0.000000,-1.000000,0.000000 -0.203000,-0.003331,-0.372800,0.000000,1.000000,0.000000 -0.389000,-0.186000,-0.313600,0.000000,-1.000000,0.000000 0.313000,-0.186000,-0.339000,0.000000,-1.000000,0.000000 0.338300,-0.186000,0.134600,0.000000,-1.000000,0.000000 0.160700,-0.186000,0.185400,0.000000,-1.000000,0.000000 0.186100,0.218900,0.680500,0.000000,0.132500,-0.991200 -0.473600,0.337200,0.737900,0.000000,0.148900,0.988900 0.304500,-0.110300,0.715800,0.000000,0.000000,1.000000 0.020250,0.018530,0.295300,-0.900400,-0.435200,-0.000033 -0.346800,-0.003331,-0.415100,0.000000,1.000000,0.000000 -0.380600,-0.003331,-0.364400,0.000000,1.000000,0.000000 0.439800,-0.186000,0.295300,0.000000,-1.000000,0.000000 0.287600,0.101300,0.673700,0.000000,-0.018670,-0.999800 -0.152200,0.303900,0.741500,0.000000,0.084850,0.996400 -0.169200,0.120700,0.372000,0.000000,0.994700,-0.102700 -0.542600,-0.235300,-0.237500,0.975700,-0.219300,0.000000 0.132500,0.005346,0.277100,0.000000,-0.004509,-1.000000 -0.143800,-0.271000,0.715800,0.000000,0.000000,1.000000 -0.186100,-0.186000,0.456000,0.000000,-1.000000,0.000000 -0.473600,0.304600,0.699100,0.000000,-0.215500,0.976500 0.431400,-0.186000,-0.550400,0.000000,-1.000000,0.000000 0.468000,0.351600,0.731900,0.000000,-0.675300,-0.737500 0.152300,-0.186000,0.532100,0.000000,-1.000000,0.000000 -0.422900,-0.003331,-0.482800,0.000000,1.000000,0.000000 0.296000,0.169200,0.677500,0.000000,-0.108500,0.994100 -0.270600,-0.018850,-0.757500,0.000001,0.313400,-0.949600 -0.439800,-0.186000,-0.372800,0.000000,-1.000000,0.000000 -0.245300,-0.003331,-0.178300,0.000000,1.000000,0.000000 0.152200,-0.321700,0.715800,0.000000,0.000000,1.000000 0.543700,-0.101700,-0.169800,0.997900,-0.064980,-0.003327 -0.372100,0.253200,0.744200,0.000000,0.045070,0.999000 -0.363700,-0.186000,0.489900,0.000000,-1.000000,0.000000 0.346800,-0.003331,0.117700,0.000000,1.000000,0.000000 -0.321400,-0.003331,-0.262900,0.000000,1.000000,0.000000 0.570500,-0.228600,-0.271300,0.999500,-0.032650,0.000000 -0.380600,-0.186000,0.489900,0.000000,-1.000000,0.000000 -0.253700,-0.211800,0.715800,0.000000,0.000000,1.000000 -0.143800,-0.186000,0.134600,0.000000,-1.000000,0.000000 -0.389000,-0.186000,-0.127600,0.000000,-1.000000,0.000000 0.542400,-0.117600,0.134600,0.993100,-0.117200,0.000000 0.372200,0.058340,0.720800,0.000000,0.231800,-0.972800 0.050760,-0.186000,0.295300,0.000000,-1.000000,0.000000 0.211500,-0.186000,0.430700,0.000000,-1.000000,0.000000 0.016920,-0.271000,0.715800,0.000000,0.000000,1.000000 0.347500,0.130300,0.734600,0.000000,0.143600,-0.989600 0.296000,0.034680,0.266400,0.000000,-0.209700,-0.977800 0.338300,-0.003331,0.024680,0.000000,1.000000,0.000000 -0.465200,-0.271000,0.715800,0.000000,0.000000,1.000000 -0.138800,-0.181800,-0.757300,0.000016,-0.985600,-0.169400 -0.363700,-0.254100,0.715800,0.000000,0.000000,1.000000 0.194500,0.134900,0.673800,0.000000,0.024070,-0.999700 0.534400,-0.172100,0.134600,0.389800,-0.920900,0.000000 -0.312900,-0.177900,0.715800,0.000000,0.000000,1.000000 0.160700,0.262200,0.741900,0.000000,-0.041020,-0.999200 -0.372100,-0.186000,0.041600,0.000000,-1.000000,0.000000 -0.152200,-0.003331,-0.482800,0.000000,1.000000,0.000000 0.304500,-0.003331,-0.457400,0.000000,1.000000,0.000000 0.380600,-0.186000,0.379900,0.000000,-1.000000,0.000000 0.448300,-0.003331,-0.034530,0.000000,1.000000,0.000000 -0.355200,-0.177900,0.715800,0.000000,0.000000,1.000000 0.372100,-0.203300,0.715800,0.000000,0.000000,1.000000 0.448300,-0.372500,0.677900,0.000000,0.000000,-1.000000 0.321400,0.262500,0.689700,0.000000,-0.188100,0.982100 0.543600,-0.149400,-0.319300,0.673700,0.739000,0.000000 0.279100,-0.018850,-0.757500,0.000000,0.313400,-0.949600 -0.372100,-0.003331,-0.085270,0.000000,1.000000,0.000000 0.355200,-0.003331,0.126200,0.000000,1.000000,0.000000 -0.499000,-0.186000,0.278400,0.000000,-1.000000,0.000000 0.329900,-0.304800,0.677900,0.000000,0.000000,-1.000000 0.296000,-0.186000,-0.525100,0.000000,-1.000000,0.000000 -0.439800,-0.186000,0.168500,0.000000,-1.000000,0.000000 0.279900,-0.162000,-0.797000,-0.000042,0.211500,-0.977400 0.539800,-0.051290,0.472900,0.990000,0.141200,0.000000 0.186100,-0.003331,-0.508200,0.000000,1.000000,0.000000 -0.448200,-0.186000,0.202300,0.000000,-1.000000,0.000000 -0.135300,-0.203300,-0.768300,-0.003254,-0.003258,1.000000 0.228400,-0.012830,-0.755400,0.000000,0.350500,-0.936600 -0.126900,0.026430,0.613700,0.000076,-0.324000,0.946100 0.211500,0.125700,0.439100,0.000000,1.000000,-0.004263 0.219900,0.337200,0.738300,0.000000,0.149000,0.988800 -0.194500,-0.003331,-0.423600,0.000000,1.000000,0.000000 0.570500,-0.228600,-0.076810,0.999500,-0.032650,0.000000 0.270700,0.052310,0.719300,0.000000,0.245400,-0.969400 0.239700,0.256300,0.742200,0.000000,-0.041560,-0.999100 0.456700,-0.186000,-0.051440,0.000000,-1.000000,0.000000 0.507500,-0.186000,0.371400,0.000000,-1.000000,0.000000 -0.270600,-0.003331,0.219200,0.000000,1.000000,0.000000 0.236800,0.125600,0.439100,0.006588,0.999900,-0.007561 -0.279100,-0.194900,0.715800,0.000000,0.000000,1.000000 0.219900,-0.220300,-0.768000,0.000000,-0.000119,1.000000 0.245300,-0.186000,-0.499700,0.000000,-1.000000,0.000000 0.541200,-0.063740,0.495500,0.991200,0.132100,-0.000003 0.152300,-0.186000,0.219200,0.000000,-1.000000,0.000000 0.465200,-0.186000,-0.482800,0.000000,-1.000000,0.000000 0.160700,-0.003331,-0.482800,0.000000,1.000000,0.000000 -0.312900,0.052310,0.719300,0.000011,0.245400,-0.969400 0.355200,0.303100,0.696600,0.000000,0.239200,-0.971000 -0.152200,-0.186000,0.075430,0.000000,-1.000000,0.000000 -0.534800,-0.028540,-0.245300,-0.962700,0.270500,0.000000 0.236800,-0.186000,0.616700,0.000000,-1.000000,0.000000 -0.544000,-0.085270,-0.212100,-0.999300,0.038670,0.000000 -0.203000,0.124200,0.430700,0.000000,0.999900,-0.014120 -0.363700,-0.186000,-0.491200,0.000000,-1.000000,0.000000 0.236800,-0.186400,0.715800,0.000000,0.000000,1.000000 0.169200,-0.177900,-0.797100,0.000000,0.000000,-1.000000 -0.397500,-0.186000,-0.296700,0.000000,-1.000000,0.000000 -0.253700,-0.178100,0.678000,0.000000,-0.230700,-0.973000 -0.571500,-0.220200,0.244600,-1.000000,-0.000178,0.000000 0.084580,-0.254100,0.715800,0.000000,0.000059,1.000000 -0.473600,-0.186000,0.337600,0.000000,-1.000000,0.000000 -0.270600,-0.003331,-0.288300,0.000000,1.000000,0.000000 -0.372100,-0.186000,0.126200,0.000000,-1.000000,0.000000 0.431400,-0.003331,-0.474300,0.000000,1.000000,0.000000 0.228400,0.109700,0.673600,0.000000,-0.008652,-1.000000 0.186100,-0.185600,0.657300,0.000000,-0.961700,0.274100 -0.542600,-0.194900,0.633600,1.000000,0.000000,0.000000 0.229100,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.304500,-0.003331,-0.237500,0.000000,1.000000,0.000000 0.541600,-0.220200,0.439100,-1.000000,0.000000,0.000000 0.431400,0.202300,0.741400,0.000000,0.046860,-0.998900 0.448300,0.050430,0.676300,0.000000,-0.084610,-0.996400 -0.253700,-0.018850,-0.757500,0.000000,0.313400,-0.949600 0.507500,-0.003332,-0.482800,-0.019460,0.999800,0.000000 0.228400,-0.186000,0.608300,0.000000,-1.000000,0.000000 -0.571500,-0.211800,0.134600,-1.000000,0.000000,0.000000 0.355200,0.151600,0.674400,0.000000,0.047750,-0.998900 -0.465200,-0.003331,-0.186800,0.000000,1.000000,0.000000 0.570800,-0.186400,-0.262900,0.999800,-0.019720,0.000000 0.372200,-0.186000,0.303800,0.000000,-1.000000,0.000000 0.236800,-0.186000,-0.474300,0.000000,-1.000000,0.000000 0.329900,0.152400,0.739400,0.000000,-0.092960,0.995700 -0.355200,0.218200,0.742000,0.000000,0.029000,-0.999600 0.270700,-0.186000,-0.372800,0.000000,-1.000000,0.000000 -0.236800,-0.003331,0.253000,0.000000,1.000000,0.003590 0.473600,-0.355600,0.716200,-0.003299,0.006576,1.000000 0.482100,-0.003331,-0.229100,0.000000,1.000000,0.000000 -0.143800,-0.186000,0.058510,0.000000,-1.000000,0.000000 0.126900,-0.003331,-0.364400,0.000000,1.000000,0.000000 -0.406000,-0.186000,0.447600,0.000000,-1.000000,0.000000 -0.186100,-0.186000,0.143100,0.000000,-1.000000,0.000000 0.304500,-0.186000,-0.237500,0.000000,-1.000000,0.000000 0.465200,-0.002999,-0.736500,0.000000,0.999300,0.038300 0.570500,-0.194900,-0.322100,0.999800,-0.019670,0.000000 0.321400,0.177200,0.676000,0.000000,0.082220,-0.996600 -0.228400,-0.279400,0.715800,0.000000,0.000000,1.000000 0.414400,-0.186000,-0.237500,0.000000,-1.000000,0.000000 -0.363700,-0.003331,-0.127600,0.000000,1.000000,0.000000 0.355200,-0.186000,0.261500,0.000000,-1.000000,0.000000 -0.160700,-0.003331,-0.237500,0.000092,1.000000,-0.000080 -0.143800,-0.186000,-0.042980,0.000000,-1.000000,0.000000 -0.346800,0.228100,0.744200,0.000000,0.008478,1.000000 -0.482100,-0.186000,-0.296700,0.000000,-1.000000,0.000000 -0.465200,-0.144100,0.715800,0.000000,0.000000,1.000000 -0.372100,-0.186000,-0.195200,0.000000,-1.000000,0.000000 0.465200,-0.287900,0.677900,0.000000,0.000000,-1.000000 -0.389000,-0.186000,0.540600,0.000000,-1.000000,0.000000 0.259400,0.023220,0.270000,0.000000,-0.377600,-0.926000 0.177600,-0.186000,0.100800,0.000000,-1.000000,0.000000 0.558200,-0.313300,0.715800,0.004896,0.000000,1.000000 -0.389000,0.074270,0.613500,-0.000039,0.339800,0.940500 0.042300,-0.003331,-0.322100,0.000000,1.000000,0.000000 0.465200,-0.003331,0.041590,0.000000,1.000000,0.000000 0.126900,0.303100,0.696600,0.000000,0.239200,-0.971000 -0.465200,-0.194900,-0.768300,0.000000,0.005809,1.000000 -0.186100,-0.380900,0.715800,0.000000,0.005438,1.000000 -0.346700,0.126400,0.673600,0.000000,0.014140,-0.999900 -0.448200,-0.186000,-0.364400,0.000000,-1.000000,0.000000 -0.499000,-0.186000,0.379900,0.000000,-1.000000,0.000000 -0.507400,-0.003332,-0.651900,0.019620,0.999800,0.000000 0.571100,-0.161500,0.540100,0.997700,0.068040,0.003152 -0.534700,-0.172100,0.563100,-0.394000,-0.919100,0.000000 -0.542400,-0.122900,-0.547600,-0.992000,-0.126100,0.000108 -0.499000,-0.186400,0.677900,0.000000,0.004847,-1.000000 -0.499000,-0.003331,-0.533500,-0.000044,1.000000,0.000000 -0.499000,-0.186000,-0.220600,0.000000,-1.000000,0.000000 -0.507400,-0.003332,0.066970,0.019630,0.999800,0.000000 -0.219900,-0.186000,-0.685800,0.000000,-1.000000,0.000000 -0.507400,-0.186000,-0.322100,0.000000,-1.000000,0.000000 0.245300,-0.003331,-0.685800,0.000000,1.000000,0.000000 0.118400,-0.003331,-0.694200,0.000000,1.000000,0.000000 -0.033820,-0.186000,-0.685800,0.000000,-1.000000,0.000000 -0.499000,0.244800,0.744300,0.000000,0.007219,1.000000 0.558200,-0.240300,-0.635000,0.026550,-0.999600,0.000000 -0.245300,-0.003331,-0.635000,0.000000,1.000000,0.000000 -0.499000,-0.186000,-0.347500,0.000000,-1.000000,0.000000 -0.211400,-0.186000,-0.626600,0.000000,-1.000000,0.000000 0.543700,-0.101700,-0.668900,0.998700,-0.051560,0.000002 0.059220,-0.003332,-0.728000,0.000000,0.999800,0.019670 -0.118400,-0.186000,-0.702700,0.000000,-1.000000,0.000000 0.262200,-0.003331,-0.711100,0.000000,1.000000,0.000000 -0.499000,-0.186000,0.253000,0.000000,-1.000000,0.000000 -0.488900,0.016340,0.537800,-0.984800,-0.173400,0.000032 0.279100,-0.003331,-0.685800,0.000000,1.000000,0.000000 -0.507400,-0.186000,-0.144500,0.000000,-1.000000,0.000000 -0.456700,-0.186000,-0.626600,0.000000,-1.000000,0.000000 -0.025360,0.254200,0.688500,0.000000,-0.199200,0.979900 -0.186100,0.101300,0.673700,0.000000,-0.018670,-0.999800 -0.084560,0.218900,0.680500,0.000000,0.132500,-0.991200 -0.245300,0.041500,0.679200,0.000000,0.080260,0.996800 -0.541300,0.202600,0.743500,0.000005,-0.044090,0.999000 -0.414400,0.210800,0.741800,0.000000,0.038880,-0.999200 0.406000,0.119700,0.531200,0.000000,0.990700,0.135800 -0.025360,0.337200,0.737900,0.000000,0.129100,0.991600 0.533100,-0.022670,0.274900,0.953700,0.300900,0.000027 0.534500,-0.028650,-0.508900,0.969200,0.246300,0.000010 0.236800,0.120800,0.522900,0.009859,0.992400,0.122300 0.499000,0.169000,0.741200,0.003327,-0.097380,0.995200 0.110000,0.151600,0.737300,0.000000,0.113500,-0.993500 0.541300,0.041470,0.678800,-0.000001,0.080290,0.996800 -0.389000,0.152400,0.739100,0.000000,-0.092980,0.995700 -0.109900,0.160700,0.740300,0.000000,-0.102900,0.994700 -0.541500,-0.129500,0.377100,-0.987600,-0.157000,0.000000 -0.470800,0.087020,0.676000,0.000000,0.006642,1.000000 0.482100,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.248100,0.086980,0.608300,0.000000,0.436100,0.899900 -0.573400,0.115600,0.684200,-0.967900,0.031130,-0.249400 -0.456700,0.160700,0.740000,0.000000,-0.102800,0.994700 0.219900,0.121800,0.514600,-0.000027,0.994000,0.109300 0.110000,0.122900,0.380200,0.000000,0.995700,-0.092560 -0.510500,-0.236200,-0.621200,0.701300,0.127000,0.701400 0.321400,0.202300,0.678400,0.000000,0.112600,-0.993600 -0.194500,0.121400,0.380300,-0.013140,0.995500,-0.093850 0.355200,0.114700,0.321300,0.000000,0.983500,-0.181000 0.313000,0.114700,0.321300,-0.000004,0.983500,-0.181000 0.321400,0.084580,0.674200,0.000000,-0.043020,-0.999100 -0.456700,-0.068310,-0.768400,0.000000,0.109300,-0.994000 -0.539300,-0.085060,-0.769400,-0.257200,0.040100,-0.965500 -0.571400,0.066850,0.711800,0.910100,0.043600,-0.412100 0.540900,-0.143700,0.659000,0.956400,0.291700,-0.016810 0.037440,0.119500,0.523100,-0.510700,0.856300,0.076800 0.329900,-0.118500,-0.768600,0.000000,-0.103200,-0.994700 -0.076110,0.122400,0.489500,0.000000,0.997200,0.074200 0.050760,0.287100,0.743100,0.000000,0.064520,0.997900 -0.312900,0.337200,0.737900,0.000000,0.148900,0.988900 -0.050020,0.124300,0.733700,0.000000,0.150500,-0.988600 -0.422900,0.122300,0.388700,0.000000,0.997000,-0.077480 0.301700,0.081270,0.675900,0.009943,0.058690,0.998200 -0.439800,-0.068310,-0.768400,0.000000,0.109300,-0.994000 -0.101500,0.066240,0.722600,0.000002,0.222500,-0.974900 0.126900,0.074350,0.724400,0.000000,0.220400,-0.975400 -0.287500,0.270500,0.741600,0.000000,-0.042090,-0.999100 -0.025360,0.134900,0.673800,0.000001,0.024080,-0.999700 -0.152200,-0.194900,-0.768300,0.000000,-0.013380,0.999900 -0.271400,0.111000,0.571900,0.006899,0.980700,0.195600 -0.296000,-0.186600,-0.768400,0.000000,-0.354300,0.935100 -0.542300,-0.186400,-0.059900,0.999900,0.014730,-0.000031 0.389100,-0.186400,0.677900,0.000000,0.004847,-1.000000 0.482100,-0.178100,0.678000,0.000000,-0.230600,-0.973000 0.203000,-0.003412,0.269800,0.000000,0.967300,-0.253600 0.499000,-0.003331,0.337600,-0.004249,1.000000,0.000000 0.490700,-0.003403,0.413700,0.265600,0.964100,0.000000 -0.312900,-0.003331,0.253000,0.000000,1.000000,0.003590 -0.372100,-0.003394,0.616900,0.001117,0.962400,0.271600 0.194500,-0.240300,-0.787200,0.000000,-0.999900,-0.010180 0.544000,-0.085260,-0.110600,0.999300,0.038050,0.000000 -0.135300,-0.003391,0.261300,-0.000000,0.955000,-0.296700 -0.112800,0.096560,0.602600,0.000185,0.597600,0.801800 -0.262200,0.231700,0.684300,-0.003255,-0.124400,0.992200 -0.008450,-0.003331,0.557500,-0.004034,1.000000,0.000000 0.372200,0.211400,0.681900,0.000021,-0.120000,0.992800 -0.177600,0.108400,0.582700,0.000000,0.985800,0.167800 0.380600,0.269300,0.689000,-0.000018,0.196800,-0.980400 -0.372100,0.194200,0.743000,0.000000,-0.057380,0.998400 0.253800,0.112100,0.573100,0.026420,0.977600,0.209000 -0.544000,-0.085270,-0.457400,-0.999200,0.038890,0.000002 -0.543500,-0.077030,-0.474300,-0.997700,0.067130,-0.000002 0.169200,0.329700,0.736800,0.000000,-0.114800,-0.993400 0.431400,0.337900,0.735900,0.000000,-0.123700,-0.992300 -0.176900,0.042000,0.617100,0.000000,-0.112400,0.993700 -0.329800,0.033910,0.615700,0.000000,-0.212700,0.977100 0.380600,0.113900,0.565100,0.000000,0.982700,0.185000 0.177600,0.115700,0.557000,0.000000,0.985400,0.170200 0.575700,0.247100,0.700600,0.989300,0.015200,-0.145100 -0.304500,0.066880,0.615800,-0.000013,0.226300,0.974100 -0.377800,0.101300,0.598900,-0.000012,0.690700,0.723100 0.321400,0.040400,0.716100,0.000027,0.239800,-0.970800 -0.540900,-0.143700,-0.355900,-0.967400,0.253100,0.000000 -0.540900,-0.143700,-0.296700,-0.967400,0.253100,0.000000 0.550000,-0.240100,-0.042980,-0.092980,-0.995700,0.000000 0.101500,0.169200,0.677800,0.000000,-0.088930,0.996000 0.544000,-0.085260,-0.144500,0.999300,0.038070,-0.000035 -0.279100,0.093650,0.730500,0.000000,-0.188200,0.982100 -0.076110,0.101700,0.732100,-0.013180,-0.168100,0.985700 0.270700,0.116700,0.548900,-0.010280,0.985000,0.172300 -0.544000,-0.085270,-0.161400,-0.999300,0.038670,0.000000 -0.544000,-0.085270,-0.711100,-0.999300,0.038680,0.000001 0.126900,0.111500,0.305200,0.000000,0.977900,-0.209300 -0.287500,0.337900,0.735900,0.000000,-0.123700,-0.992300 0.491300,0.240200,0.683700,0.000000,0.162600,-0.986700 -0.084560,0.143200,0.674100,-0.000016,0.035580,-0.999400 0.544100,-0.093450,0.202300,0.999900,-0.016240,0.000000 -0.515900,0.059820,0.722800,0.000000,-0.230400,0.973100 0.093760,0.058880,0.675600,0.000000,-0.069940,-0.997600 0.262900,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.355200,0.287500,0.740700,0.000000,-0.064970,-0.997900 0.355200,0.169200,0.677500,0.003330,-0.095480,0.995400 -0.482800,-0.181900,-0.763400,0.000000,-0.912600,0.408800 0.543700,-0.101700,-0.423600,0.998700,-0.051460,0.000004 0.172000,0.028760,0.268000,0.000000,-0.296600,-0.955000 -0.050730,0.109700,0.733700,-0.000019,-0.144900,0.989400 0.160700,0.101700,0.732300,0.000000,-0.175100,0.984600 0.101500,0.101700,0.732300,0.000000,-0.174800,0.984600 0.575300,0.287200,0.716200,1.000000,0.000771,0.009668 -0.541500,-0.129500,0.174100,-0.987600,-0.157000,0.000000 -0.571500,-0.169500,-0.042980,-1.000000,0.003700,0.000000 -0.571400,-0.161400,0.160000,-0.993100,0.117400,0.003971 -0.571400,-0.161400,0.413700,-0.993100,0.117400,0.003971 -0.571400,-0.161400,0.261500,-0.993100,0.117400,0.003971 -0.571500,-0.169500,0.253000,-1.000000,0.003699,-0.000000 -0.490500,0.058310,0.677700,0.000000,0.074480,0.997200 -0.496100,-0.386500,-0.691500,-0.879000,-0.463700,0.111200 -0.496600,0.050480,0.608400,-0.988800,-0.002766,0.149400 0.109100,0.252500,0.742300,0.000000,-0.022450,-0.999700 0.540700,-0.058470,-0.615300,0.991000,0.134100,0.000063 -0.296000,0.058340,0.720800,0.000008,0.231800,-0.972800 0.406000,0.050490,0.264400,0.000000,-0.018600,-0.999800 -0.236800,0.322700,0.704000,0.000000,-0.292500,0.956300 0.538300,-0.043410,0.143100,0.977300,0.211900,0.000000 0.475300,0.104000,0.309400,0.853500,0.520900,-0.014010 -0.481400,0.170200,0.675500,0.000000,0.072190,-0.997400 0.236800,0.304500,0.699400,0.000000,-0.192400,0.981300 0.093040,0.177700,0.678400,0.000000,-0.081260,0.996700 -0.537200,-0.049240,-0.764400,-0.550000,0.207400,-0.809000 0.050770,0.185300,0.740400,0.000000,0.069350,-0.997600 -0.270600,-0.052010,-0.766000,-0.000017,0.177500,-0.984100 -0.168400,0.246100,0.684700,0.000000,0.168100,-0.985800 0.024640,0.005741,0.520900,-0.999100,0.042150,0.000000 0.575800,0.196500,0.692300,0.986000,0.018030,-0.165500 0.570800,-0.169500,0.464500,0.999300,-0.036580,0.000001 0.572300,-0.103900,0.713300,0.656300,0.000000,0.754500 0.550400,-0.152600,-0.736500,0.219000,0.975700,-0.000035 0.194500,0.067540,0.724900,0.000004,-0.242000,0.970300 0.039490,0.355000,0.725100,-0.006522,-0.971600,-0.236400 0.284800,0.102600,0.600200,-0.006592,0.702600,0.711500 0.101500,0.303100,0.696600,0.000000,0.239200,-0.971000 -0.550200,-0.240200,-0.271300,0.085960,-0.996300,0.000000 0.270700,0.239500,0.685300,0.000135,-0.141500,0.989900 0.526100,-0.005332,-0.088090,0.740400,0.672100,-0.000010 0.465200,-0.126800,-0.767500,0.000000,-0.138900,-0.990300 0.020250,0.018530,0.371400,-0.900300,-0.435200,0.000000 -0.022910,0.000740,0.315100,0.729400,0.684100,-0.001316 -0.372100,0.185300,0.740400,0.000000,0.069350,-0.997600 0.135300,0.067540,0.724900,0.000000,-0.219200,0.975700 -0.557800,-0.010610,0.678900,0.013890,0.246400,-0.969100 -0.211400,0.194000,0.677600,0.000000,0.100600,-0.994900 0.194500,0.348400,0.711600,0.000000,-0.517000,0.856000 0.528500,-0.010450,-0.279800,0.913900,0.405900,-0.000018 -0.422900,0.058660,0.263100,0.000000,0.104400,-0.994500 0.208600,0.102600,0.600200,0.000000,0.702600,0.711600 0.550300,-0.152600,-0.398200,0.221500,0.975200,0.000000 0.543800,-0.149400,0.349600,0.668400,0.743800,0.000000 -0.543600,-0.109800,0.549100,-0.997900,-0.065090,0.000000 -0.406500,-0.233500,-0.737100,0.011830,0.999900,0.002823 0.000011,0.336500,0.705800,0.000000,0.282900,-0.959200 -0.211400,0.312300,0.740700,0.000000,0.096820,0.995300 -0.550300,-0.152500,-0.465900,-0.219700,0.975600,0.000000 -0.550300,-0.152500,0.296000,-0.219700,0.975600,0.000000 0.572400,-0.395400,0.709000,0.697000,-0.714400,0.062550 0.219900,0.042060,0.677100,0.000000,-0.093690,-0.995600 0.093050,0.049840,0.678400,0.000000,0.065260,0.997900 0.491100,-0.371600,-0.700400,0.960100,0.266100,0.086100 -0.051580,0.252500,0.742300,0.000000,-0.022450,-0.999700 -0.088090,-0.181800,-0.757600,0.000018,-0.985300,-0.171000 0.347500,0.349300,0.709800,0.000000,0.304500,-0.952500 -0.042280,0.194600,0.680000,0.000000,-0.102000,0.994800 0.542400,-0.117600,0.422200,0.993100,-0.117200,0.000000 0.293200,0.343800,0.735100,0.000000,-0.276100,-0.961100 0.245300,0.337200,0.738300,0.000000,0.149000,0.988800 -0.572000,-0.059530,0.709000,-0.989300,-0.036000,0.141500 0.558100,-0.152600,-0.287500,0.000538,1.000000,0.000000 0.550300,-0.152600,-0.381300,0.221500,0.975200,0.000000 -0.571400,-0.235100,0.650600,-0.986900,-0.161400,0.000254 0.550400,-0.152600,0.169200,0.219100,0.975700,0.000000 0.245300,0.058300,0.618700,0.000000,0.092950,0.995700 0.550700,-0.152400,0.659400,0.223600,0.974000,-0.036060 0.397500,0.194000,0.677600,0.000000,0.100600,-0.994900 0.160700,-0.018850,-0.757500,0.000000,0.313400,-0.949600 0.406000,0.244800,0.744600,0.000044,0.025980,0.999700 0.372200,0.232500,0.684400,0.000229,-0.133500,0.991100 0.473600,0.050520,0.619300,0.000237,-0.040070,0.999200 -0.529200,-0.176800,0.016210,-0.788200,-0.615400,0.000000 -0.534700,-0.172100,-0.527900,-0.394000,-0.919100,0.000000 -0.290400,-0.004593,0.713900,0.000000,0.713300,0.700800 -0.211400,0.007167,0.607700,0.002835,0.137300,0.990500 0.253700,0.058560,0.264700,0.000000,0.081620,-0.996700 -0.135300,0.033910,0.615700,-0.000005,-0.212700,0.977100 0.472300,0.108500,0.576400,0.765200,0.640400,0.066100 0.465200,-0.002758,0.709000,0.000000,0.992100,0.125300 -0.488900,0.016540,0.276300,-0.953800,-0.265600,-0.140100 -0.494900,-0.363300,-0.687800,-0.957500,-0.030320,0.287000 -0.109900,0.321300,0.737800,0.000000,-0.108400,-0.994100 -0.321400,0.328900,0.739000,0.000000,0.117100,0.993100 0.338300,0.160000,0.738200,0.000000,0.103400,-0.994600 0.507500,0.160000,0.738200,0.000000,0.103400,-0.994600 0.440500,0.209500,0.744000,0.000000,-0.036470,0.999300 0.550500,-0.152600,0.532900,0.219400,0.975600,0.000000 -0.042290,0.045700,0.719700,-0.012990,-0.272400,0.962100 0.569800,-0.155400,0.588500,0.831300,0.555900,0.000206 0.541300,0.108800,0.731200,0.000101,0.170500,-0.985400 -0.558200,0.032630,0.715800,0.028000,-0.614000,0.788800 -0.338300,0.151600,0.737300,0.000000,0.113500,-0.993500 -0.515900,0.210600,0.679400,0.000000,0.122800,-0.992400 0.050760,0.337200,0.737900,-0.003337,0.145700,0.989300 0.406000,0.345400,0.736800,0.000000,0.140400,0.990100 -0.219900,0.081360,0.610900,-0.000718,0.379700,0.925100 0.416100,0.226000,0.742200,0.000000,0.014140,-0.999900 -0.084570,0.066490,0.264400,0.000000,0.200500,-0.979700 0.464500,0.122600,0.380300,0.142000,0.986000,-0.087930 0.483900,0.013330,0.472900,0.951400,-0.307800,0.000003 0.483900,0.013330,0.363000,0.951500,-0.307700,0.000000 -0.492200,0.001512,0.346100,-0.749900,0.661600,0.000000 0.213100,0.226000,0.742200,0.000000,0.014140,-0.999900 0.333300,0.031020,0.713800,-0.620200,-0.389500,-0.680900 0.521700,-0.002964,0.168500,0.222500,0.974900,0.000000 -0.493300,0.073560,0.557500,-0.960600,0.277900,0.000000 0.160700,0.117100,0.732600,0.000000,0.159900,-0.987100 -0.425000,-0.233400,-0.713300,0.099790,0.991100,0.088040 0.571100,-0.161500,-0.711600,0.997700,0.068050,0.003152 0.143800,0.134900,0.673800,0.000000,0.024070,-0.999700 -0.468600,0.235100,0.742300,0.000000,0.004442,-1.000000 0.458000,-0.330200,-0.679300,-0.305400,0.000000,0.952200 0.541700,-0.235100,0.109300,-0.964900,-0.262400,0.000000 0.016930,-0.169500,-0.797100,0.000000,0.003546,-1.000000 0.382800,0.000629,0.695600,0.691200,0.722600,-0.008051 0.143800,0.218900,0.680500,0.000000,0.132500,-0.991200 0.542600,-0.069660,0.371400,0.989100,0.147600,0.000000 0.564600,-0.239900,-0.253700,0.140000,-0.990200,0.000000 -0.461300,-0.373100,-0.675500,0.467000,0.028610,0.883800 0.544400,-0.239000,0.188200,-0.514100,-0.857700,0.000000 0.482800,0.124300,0.733700,0.000000,0.150500,-0.988600 -0.009954,0.243800,0.742300,0.000000,0.004082,-1.000000 0.042310,0.345400,0.736800,-0.000022,0.119100,0.992900 0.474300,0.044830,0.719400,0.000000,-0.228500,0.973500 -0.025360,0.336500,0.705800,0.000000,0.282900,-0.959200 -0.465200,0.336500,0.705800,0.000000,0.282900,-0.959200 -0.507400,0.253100,0.685900,0.000000,0.178400,-0.984000 -0.414400,0.160800,0.676900,0.000000,-0.081600,0.996700 0.315300,0.221200,0.744500,-0.000091,-0.000638,1.000000 0.389800,0.044850,0.719400,0.003314,-0.212400,0.977200 -0.452400,-0.244600,-0.681000,0.781500,-0.186300,0.595500 0.305200,0.034780,0.716900,-0.012050,-0.345100,0.938500 -0.534800,-0.028540,-0.600500,-0.962700,0.270500,0.000000 -0.536700,-0.035470,0.472900,-0.969400,0.245300,0.000000 0.075440,-0.149300,-0.771500,0.000000,0.781500,-0.623900 0.524700,-0.235400,-0.679800,0.632400,-0.045970,-0.773200 -0.372100,-0.172400,0.670500,0.000000,-0.896200,0.443700 -0.248800,0.358900,0.734900,0.000000,0.354000,0.935200 -0.507400,-0.014110,0.674600,-0.000016,0.914100,-0.405400 -0.565400,-0.153000,0.109900,-0.250900,0.967900,-0.013170 -0.569800,-0.239000,-0.725200,-0.636600,-0.771200,0.000000 -0.380600,0.080910,0.610700,-0.000241,0.402400,0.915500 -0.262900,0.081390,0.676300,-0.000271,0.023960,0.999700 0.536100,-0.035640,-0.660400,0.969400,0.245400,0.000000 0.536100,-0.035640,-0.533500,0.969400,0.245400,0.000001 0.536100,-0.035640,-0.508200,0.969400,0.245400,0.000001 0.536700,-0.035460,0.270000,0.969500,0.245300,0.000015 -0.219200,0.234300,0.682700,0.000000,0.155100,-0.987900 0.296700,0.234300,0.682700,0.000000,0.155100,-0.987900 -0.565400,-0.240100,-0.660400,-0.115000,-0.993400,0.000000 0.534400,-0.172100,0.346100,0.389800,-0.920900,0.000000 -0.186800,0.080740,0.676400,-0.000267,0.023880,0.999700 0.289700,0.271800,0.743900,-0.000090,0.015910,0.999900 0.375000,-0.014460,0.670200,0.000000,0.913800,0.406300 0.152300,0.075340,0.677000,-0.000055,0.082170,0.996600 -0.544100,-0.149400,-0.329800,-0.677400,0.735700,0.000000 0.431400,0.288400,0.693100,0.000000,0.228900,-0.973500 0.389100,0.295300,0.694800,0.000047,0.232400,-0.972600 0.528500,-0.176500,-0.009156,0.778900,-0.627200,0.000000 0.543600,-0.149400,-0.353100,0.673700,0.739000,0.000000 0.558100,-0.152600,-0.422900,0.000538,1.000000,0.000000 -0.515200,0.136300,0.735400,0.000000,0.133800,-0.991000 -0.203000,0.143300,0.736300,0.000000,0.122300,-0.992500 -0.397500,0.143300,0.736300,0.000000,0.122300,-0.992500 -0.571400,-0.235100,0.185400,-0.986900,-0.161200,0.000000 -0.286800,0.170200,0.675500,0.000000,0.072190,-0.997400 0.050730,0.150500,0.674300,-0.000015,0.047010,-0.998900 -0.067650,-0.172400,0.670500,0.000000,-0.896200,0.443700 0.279800,0.141900,0.676000,0.000000,-0.027710,0.999600 0.443800,-0.313300,-0.695400,-0.982700,0.000000,0.185100 -0.569800,-0.239000,-0.632200,-0.636600,-0.771200,0.000000 -0.076110,0.282400,0.694100,-0.003239,-0.201500,0.979500 -0.112000,0.073060,0.674800,0.000000,-0.054750,-0.998500 -0.531200,-0.016900,-0.422900,-0.944000,0.330000,0.000000 -0.528800,-0.010380,0.532100,-0.924700,0.380600,0.000000 0.126900,0.100500,0.729700,0.000000,0.177800,-0.984100 -0.025710,0.006472,0.337600,0.991400,0.131100,-0.004622 -0.474300,0.352600,0.735700,0.000000,0.115800,0.993300 -0.261500,0.343400,0.707900,0.000000,0.295900,-0.955200 0.515900,-0.240200,-0.772500,-0.000026,-0.993700,0.112200 -0.535900,-0.236100,-0.595800,0.777500,0.132100,0.614900 0.154400,0.076180,0.615200,-0.000008,0.324500,0.945900 -0.381300,-0.181900,-0.763400,0.000000,-0.912600,0.408800 -0.473300,-0.254200,-0.672100,-0.008517,-0.183400,0.983000 0.532900,0.253200,0.744500,0.003552,0.013240,0.999900 0.211500,0.074350,0.724400,0.000000,0.220400,-0.975400 0.042310,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.039450,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 -0.098650,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 -0.174800,-0.395500,0.680300,0.000000,-0.619500,-0.785000 0.315800,0.012490,0.275200,0.000000,-0.352800,-0.935700 -0.186100,0.066780,0.677100,-0.003603,0.070850,0.997500 -0.093020,-0.186600,-0.768000,0.000000,-0.354300,0.935100 0.439800,0.270500,0.741600,0.000000,-0.042090,-0.999100 -0.059190,0.322700,0.704000,0.000000,-0.292500,0.956300 -0.169100,0.317000,0.700300,0.000000,0.264800,-0.964300 -0.338300,0.027020,0.266400,-0.000010,-0.287900,-0.957700 -0.160700,0.027020,0.266400,-0.000001,-0.287800,-0.957700 -0.025860,0.006437,0.278900,0.989200,0.096130,-0.110600 0.309800,0.250000,0.742300,0.000000,0.004143,-1.000000 0.023080,0.013050,0.289700,-0.945400,-0.326000,-0.005746 0.356000,0.355400,0.711700,0.000000,0.396300,-0.918100 -0.549700,0.342600,0.709300,0.062620,-0.315100,0.947000 0.053580,0.028760,0.268000,0.000000,-0.296600,-0.955000 0.534900,-0.028530,0.311500,0.962700,0.270500,0.000006 0.469400,0.111700,0.310200,0.423100,0.895600,-0.137700 -0.103600,0.073060,0.674800,-0.000019,-0.054790,-0.998500 0.532800,-0.022770,-0.224100,0.961600,0.274500,0.000003 0.019100,0.083180,0.337600,-0.913300,0.407300,0.000000 0.152300,-0.240200,-0.772500,0.000000,-0.993700,0.112400 0.177600,-0.240200,-0.772500,0.000000,-0.993700,0.112400 -0.473600,0.364100,0.726300,0.000000,0.995600,0.094150 -0.076110,0.032710,0.715500,0.000000,-0.454100,0.890900 -0.541500,-0.129500,-0.172700,-0.987600,-0.157000,0.000000 0.432100,0.038840,0.717800,0.000000,-0.255800,0.966700 0.542300,-0.070350,-0.601200,0.992300,0.123900,0.000123 0.575300,0.325600,0.713600,0.980500,0.079380,-0.179800 -0.206100,0.250000,0.742300,0.000000,0.004143,-1.000000 0.489800,0.077250,0.577300,0.951400,0.307900,0.000013 -0.335500,-0.239100,-0.796400,0.000000,-0.612300,-0.790600 -0.543000,-0.117700,0.151600,-0.995600,-0.093420,-0.000027 -0.538800,-0.172600,-0.347500,0.611800,-0.791000,0.000264 0.279800,0.246100,0.684700,0.000000,0.168100,-0.985800 -0.242400,0.264800,0.743400,0.000000,0.006852,1.000000 0.571100,-0.162200,-0.128400,0.995400,0.095580,-0.002083 0.543400,-0.042830,0.673900,0.686300,0.055330,-0.725200 0.473600,0.311000,0.698700,0.000000,0.253000,-0.967500 -0.453900,0.000879,0.610500,-0.000000,0.698500,0.715600 -0.445400,0.000879,0.610500,0.000000,0.698500,0.715600 -0.569300,-0.209700,-0.783900,-0.936200,-0.000035,-0.351500 -0.529200,-0.176800,-0.229100,-0.789000,-0.614400,0.000000 0.016040,0.029080,0.560300,-0.956200,-0.292600,0.000000 -0.542600,-0.235300,0.312200,0.975600,-0.219600,0.000000 -0.543500,-0.077020,-0.558900,-0.997700,0.067520,0.000037 0.284800,0.118800,0.537300,-0.009895,0.985800,0.167400 -0.406000,0.035890,0.677700,0.000000,-0.139600,-0.990200 -0.526700,-0.182200,0.035950,-0.778100,-0.628200,0.000000 -0.205800,0.343800,0.735100,0.000000,-0.275700,-0.961200 -0.431300,0.337900,0.735900,0.000000,-0.123700,-0.992300 -0.552500,0.343800,0.735100,0.061830,-0.339200,-0.938700 -0.495900,-0.355500,-0.694300,-0.999800,-0.000813,0.020770 -0.526700,-0.182200,0.230500,-0.778100,-0.628200,0.000000 -0.024650,0.240200,0.683700,0.000000,0.162600,-0.986700 -0.422900,-0.398600,0.685300,0.000000,-0.969200,-0.246500 -0.442600,0.259100,0.743600,0.000000,0.063630,0.998000 -0.253700,0.262200,0.741900,0.000003,-0.040920,-0.999200 0.524400,-0.182400,-0.749500,0.442000,-0.847000,-0.295500 0.394000,0.264400,0.743800,-0.000140,0.011300,0.999900 0.270700,0.296600,0.697800,0.000000,-0.231900,0.972700 -0.093020,-0.228700,-0.797100,0.000000,-0.013670,-0.999900 -0.025630,0.005887,0.591300,0.991400,0.130400,-0.005502 -0.571500,-0.228600,0.160000,-1.000000,-0.005917,0.000000 -0.169100,0.262200,0.741900,0.000000,-0.041020,-0.999200 -0.456700,0.052310,0.719300,0.000000,0.245400,-0.969400 -0.447500,0.240200,0.683700,0.000000,0.162600,-0.986700 -0.541500,-0.129500,0.529300,-0.987600,-0.157000,0.000000 -0.542400,-0.122700,-0.480000,-0.992000,-0.126100,0.000107 -0.541500,-0.129500,-0.333400,-0.987600,-0.157000,0.000000 -0.566000,-0.149700,0.674400,-0.205500,0.706000,-0.677700 0.541500,-0.063690,-0.215000,0.987200,0.159400,0.000000 0.355200,0.244800,0.744600,0.000038,0.026180,0.999700 -0.253700,0.303100,0.696600,0.000000,0.239200,-0.971000 -0.022920,0.000738,0.433500,0.722100,0.691800,-0.000226 -0.104300,0.015860,0.270800,-0.000031,-0.197700,-0.980300 -0.323500,0.073060,0.674800,0.000000,-0.054750,-0.998500 0.558200,-0.240300,0.210800,0.011620,-0.999900,0.000000 0.372200,0.051900,0.720900,0.000000,-0.245500,0.969400 0.515900,-0.186000,-0.288300,0.041760,-0.999100,0.000000 0.389100,0.304600,0.699100,-0.000022,-0.215500,0.976500 0.491600,0.071070,0.612500,0.939000,0.302200,0.164100 0.126900,0.317000,0.700300,0.000000,0.264800,-0.964300 -0.084560,0.317000,0.700300,0.000000,0.264800,-0.964300 0.118400,0.310600,0.700600,0.000000,-0.226300,0.974100 -0.449800,0.243800,0.742300,0.000000,0.004082,-1.000000 0.279100,-0.240300,-0.778900,0.000000,-1.000000,0.004348 0.541700,-0.235100,0.075420,-0.964900,-0.262400,0.000000 0.451100,0.032490,0.678400,0.000000,-0.343300,-0.939200 -0.210700,0.349300,0.709800,0.000000,0.304500,-0.952500 -0.102200,0.119200,0.521500,0.000103,0.992400,0.122700 0.246200,-0.162100,-0.797000,-0.000108,0.209900,-0.977700 0.008471,-0.012830,-0.755400,0.000013,0.350400,-0.936600 -0.090200,0.264800,0.743800,0.000000,-0.022390,0.999700 -0.510300,0.259100,0.743600,0.000000,0.063630,0.998000 0.542000,0.130300,0.734600,0.000027,0.143600,-0.989600 0.097980,0.070740,0.616800,0.003179,0.227100,0.973900 0.410900,0.070810,0.617100,0.000000,0.262900,0.964800 0.211500,0.328900,0.703600,-0.000037,0.273100,-0.962000 0.478000,0.095900,0.603600,0.474600,0.675000,0.565000 -0.036690,0.106900,0.573200,0.786700,0.609000,0.101000 -0.483200,-0.377500,-0.675300,-0.631800,0.067920,0.772100 -0.211400,0.342600,0.709400,0.000000,-0.299400,0.954100 0.024640,0.005741,0.588500,-0.999100,0.042400,-0.000884 0.444000,-0.371600,-0.695500,-0.968100,-0.091700,0.233200 -0.473600,0.045820,0.719200,0.000000,-0.255400,0.966800 0.571100,-0.161500,0.633200,0.997300,0.073020,-0.003079 0.569800,-0.156300,0.460700,0.831700,0.555200,-0.000143 -0.549700,0.262100,0.741900,0.106900,-0.041540,-0.993400 0.157900,0.102600,0.600200,0.000000,0.702600,0.711600 0.262200,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 -0.414400,0.040400,0.716100,0.000000,0.238400,-0.971200 0.287600,0.079480,0.727600,0.000000,-0.240100,0.970800 0.067640,0.045160,0.717400,0.000022,0.253900,-0.967200 -0.522200,-0.185400,-0.127600,-0.328500,-0.944500,0.000000 -0.338300,0.282500,0.691800,0.000000,0.218400,-0.975900 -0.465200,0.317000,0.700300,0.000000,0.264800,-0.964300 0.025380,0.079480,0.727900,0.000000,-0.213600,0.976900 0.194500,0.085630,0.728900,0.000000,-0.201500,0.979500 -0.414400,0.079500,0.727600,0.000000,-0.239800,0.970800 -0.318500,0.032270,0.714800,0.056500,-0.226500,-0.972400 0.313700,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.448200,0.058340,0.720800,0.000000,0.231800,-0.972800 0.304500,0.135800,0.737400,-0.000000,-0.155000,0.987900 -0.507400,0.311000,0.698700,0.000000,0.253000,-0.967500 -0.304500,0.311000,0.698700,0.000000,0.253000,-0.967500 0.338300,0.311000,0.698700,0.000000,0.253000,-0.967500 0.076130,0.310600,0.700600,0.000000,-0.226300,0.974100 -0.515900,-0.003000,0.599800,0.030230,0.999500,0.000000 0.178300,0.038840,0.717800,0.000000,-0.255800,0.966700 -0.464400,0.349300,0.709800,0.000000,0.304500,-0.952500 0.126900,0.042060,0.677100,0.000000,-0.093690,-0.995600 -0.448200,0.035890,0.677700,0.000000,-0.139600,-0.990200 -0.143800,0.042060,0.677100,0.000000,-0.093690,-0.995600 0.000017,0.042060,0.677100,0.000000,-0.093690,-0.995600 -0.522200,-0.185400,-0.440500,-0.328500,-0.944500,0.000000 0.422900,0.046330,0.717700,0.000000,0.254500,-0.967100 -0.076140,0.045380,0.717500,0.000059,0.254000,-0.967200 -0.564700,-0.302800,0.715800,-0.000094,0.000000,1.000000 0.084560,0.039060,0.715800,-0.000042,0.236200,-0.971700 0.414400,0.119200,0.349300,0.000000,0.989800,-0.142700 0.549700,0.225700,0.683400,-0.113200,-0.172000,0.978600 0.262200,0.073510,0.726200,0.006515,-0.220700,0.975300 0.126900,0.276400,0.692500,0.000000,-0.178100,0.984000 0.321400,0.092510,0.728200,0.000000,0.183700,-0.983000 -0.109900,0.073530,0.726200,-0.006345,-0.238400,0.971200 -0.493300,0.073560,0.549100,-0.960600,0.277900,0.000000 -0.534800,-0.028540,-0.126900,-0.962700,0.270500,0.000000 -0.533100,-0.022670,-0.279100,-0.953700,0.300700,0.000000 -0.533100,-0.022670,-0.389000,-0.953700,0.300700,0.000000 0.372200,0.067560,0.724900,0.000000,-0.219200,0.975700 -0.422900,0.345400,0.736500,0.000000,0.140600,0.990100 -0.406000,0.073570,0.725900,0.000000,-0.242700,0.970100 -0.531200,-0.016900,-0.718900,-0.944000,0.330000,0.000000 -0.050730,0.095390,0.276800,0.002015,0.569300,-0.822100 -0.279100,0.276400,0.692500,0.000000,-0.204900,0.978800 -0.151500,0.124300,0.733700,0.000000,0.150500,-0.988600 -0.117700,0.130300,0.734600,0.000000,0.143600,-0.989600 -0.152200,0.090240,0.273600,0.000000,0.514600,-0.857400 -0.151500,0.136300,0.735400,0.000000,0.133800,-0.991000 0.432100,0.130300,0.734600,0.000000,0.143600,-0.989600 0.406700,0.130300,0.734600,0.000000,0.143600,-0.989600 0.304500,0.079480,0.727600,0.000025,-0.240000,0.970800 -0.397500,0.103600,0.283900,-0.000151,0.809500,-0.587200 0.528800,-0.176600,0.532100,0.779200,-0.626800,0.000000 0.541700,-0.123600,-0.203700,0.995100,-0.098460,0.000000 0.372100,0.288400,0.693100,0.000029,0.228900,-0.973500 0.439800,0.282400,0.693800,0.000000,-0.249100,0.968500 -0.564700,-0.057560,0.715800,-0.000141,0.000016,1.000000 0.025390,-0.032060,-0.761500,0.000000,0.265400,-0.964100 -0.084560,-0.026280,-0.759800,0.000000,0.292300,-0.956300 0.118400,-0.032060,-0.761500,0.000000,0.265400,-0.964100 -0.228300,-0.002730,0.657000,0.000000,0.986200,0.165700 0.513100,0.343800,0.735100,0.000000,-0.276100,-0.961100 0.143800,0.036760,0.617900,0.000000,-0.190700,0.981600 -0.565800,0.145500,0.674200,-0.183000,0.019540,-0.982900 -0.463900,0.124000,0.431300,-0.168200,0.985300,-0.029970 -0.160700,0.364100,0.726300,-0.000049,0.995500,0.095150 -0.473600,0.085590,0.728900,0.000000,-0.201500,0.979500 0.257900,0.214000,0.744600,0.000001,-0.034350,0.999400 0.143800,0.118400,0.343400,0.000000,0.989100,-0.147100 0.067670,0.270500,0.691600,0.000000,-0.171400,0.985200 0.076130,0.276400,0.692500,0.000000,-0.178100,0.984000 0.126900,0.119200,0.349300,0.000000,0.989800,-0.142700 0.521800,-0.185200,-0.685800,0.371800,-0.928300,0.000000 0.018710,-0.156500,-0.795600,-0.002631,0.495700,-0.868500 0.219900,-0.002714,-0.744200,0.000000,0.994700,-0.103300 -0.059190,-0.004389,-0.749900,0.000000,0.886900,-0.461900 -0.008446,0.109700,0.733700,0.000007,-0.144900,0.989400 -0.245300,0.119100,0.357700,-0.003539,0.992600,-0.121000 0.565200,-0.152600,-0.515900,0.229600,0.973300,0.000000 0.521800,-0.002799,0.650500,0.245700,0.969100,0.019820 -0.152200,-0.240300,-0.787200,0.000000,-0.999900,-0.010180 -0.541300,-0.057850,-0.753500,-0.986500,0.163400,-0.008612 -0.537800,-0.140500,-0.765300,-0.599300,0.143400,-0.787600 0.576000,0.191400,0.729900,1.000000,-0.001872,0.003267 -0.541300,-0.057820,0.616700,-0.986800,0.161800,0.000000 -0.566900,0.245400,0.684800,-0.313700,0.126000,-0.941100 -0.564700,-0.294400,0.715800,-0.000094,0.000000,1.000000 0.540900,-0.129400,0.472900,0.991600,-0.129500,0.000000 0.541700,-0.123600,0.244600,0.992000,-0.126500,0.000000 -0.027470,0.092770,0.441900,0.847000,0.531600,0.003612 -0.143100,0.164400,0.675100,0.000000,0.060440,-0.998200 0.406700,0.107100,0.289200,0.000000,0.879300,-0.476200 0.279100,-0.014110,0.674600,-0.000016,0.913900,-0.405900 -0.489800,-0.010530,0.679100,-0.000053,0.635400,-0.772200 0.084600,-0.185600,0.657300,0.000000,-0.961700,0.274100 -0.033820,-0.182700,0.662300,0.000000,-0.693700,0.720300 -0.169100,0.355300,0.717400,0.000000,-0.902300,0.431100 -0.562100,0.357000,0.719400,0.345700,-0.866000,0.361300 0.521700,-0.002964,-0.626600,0.222500,0.974900,0.000000 0.484100,-0.374400,-0.684100,0.647500,0.071020,0.758700 0.380600,-0.398600,0.709100,0.000000,-0.969400,0.245500 0.127600,0.044770,0.719700,0.007026,-0.267300,0.963600 0.425700,0.032270,0.714800,0.000000,-0.211200,-0.977400 0.456000,0.352600,0.736100,-0.000014,0.128700,0.991700 -0.253000,0.164400,0.675100,0.000000,0.060440,-0.998200 -0.236800,0.079890,0.725700,0.000098,0.214000,-0.976800 0.019750,0.351900,0.731900,-0.004329,-0.667100,-0.745000 0.544400,-0.239000,0.052870,-0.514100,-0.857700,0.000000 0.120000,0.226000,0.742200,0.000000,0.014140,-0.999900 -0.134600,0.158700,0.674800,0.000000,0.054900,-0.998500 -0.093720,0.362100,0.732200,0.000000,0.860400,0.509500 0.558100,0.034900,0.715300,-0.305500,-0.064050,-0.950000 0.236100,0.259900,0.744000,-0.000058,0.032010,0.999500 -0.481400,0.153600,0.676500,-0.003610,-0.008457,1.000000 -0.571400,-0.161400,0.185400,-0.992800,0.119900,-0.004059 -0.571400,-0.161400,-0.643500,-0.992800,0.120000,-0.004046 -0.350300,0.087960,0.676400,-0.000363,0.008038,1.000000 -0.257200,0.358900,0.734900,0.000000,0.354000,0.935200 -0.575700,0.214300,0.735200,-0.999200,0.039080,-0.011450 -0.569800,-0.239000,-0.716800,-0.636600,-0.771200,0.000000 -0.565400,-0.240100,-0.415100,-0.115100,-0.993400,0.000000 -0.569800,-0.239000,0.323500,-0.636600,-0.771200,0.000000 -0.545000,-0.239200,0.007766,0.547400,-0.836900,0.000000 -0.545000,-0.239200,0.549100,0.527400,-0.849600,0.000000 -0.550200,-0.240200,-0.068350,0.085960,-0.996300,0.000000 0.522300,-0.185400,-0.364400,0.346300,-0.938100,0.000000 -0.398200,0.352600,0.735700,0.000000,0.115800,0.993300 -0.539100,-0.172500,0.050050,0.601500,-0.798900,0.000000 -0.534700,-0.172100,-0.604000,-0.394000,-0.919100,0.000000 -0.554200,-0.233400,-0.796300,-0.202100,-0.049400,-0.978100 0.076130,0.227200,0.681700,0.000000,0.143200,-0.989700 -0.485100,-0.296300,-0.675100,-0.481900,-0.007178,0.876200 -0.569800,-0.155400,0.481400,-0.808600,0.588100,-0.019120 0.344000,-0.172700,0.674700,0.000000,-0.794600,-0.607200 0.447200,-0.302000,-0.714400,-0.856000,-0.005950,-0.517000 -0.401700,-0.234100,-0.732200,0.222200,0.952000,0.210400 -0.464500,-0.006088,0.681200,0.000000,0.745900,-0.666100 -0.522100,-0.002890,0.024680,-0.209900,0.977700,0.000000 -0.522100,-0.002890,-0.550400,-0.209900,0.977700,0.000000 -0.534700,-0.172100,-0.265700,-0.405200,-0.914200,0.000000 0.538400,-0.172600,0.613900,-0.635400,-0.772200,0.000000 0.305200,-0.006086,0.681100,-0.001135,0.727000,-0.686700 0.076140,-0.235200,-0.796900,0.000000,-0.071090,-0.997500 0.524400,0.253200,0.744500,0.003186,0.002285,1.000000 -0.437000,0.256300,0.742200,0.000000,-0.041560,-0.999100 0.400400,0.256300,0.742200,0.000000,-0.041560,-0.999100 -0.545000,-0.239200,-0.508200,0.547400,-0.836900,0.000000 -0.535100,-0.240200,-0.603500,0.069860,-0.995100,0.069750 -0.425200,-0.240200,-0.713400,0.069180,-0.995200,0.069390 0.093050,0.262200,0.741900,0.000000,-0.041020,-0.999200 0.067680,-0.004389,-0.749900,0.000000,0.886900,-0.461900 0.380600,-0.007427,-0.753200,0.000000,0.545900,-0.837800 0.470200,0.235100,0.742300,0.000000,0.004442,-1.000000 -0.262200,0.151600,0.674400,0.000000,0.047750,-0.998900 0.015540,0.072220,0.268300,-0.762700,0.415500,-0.495700 0.533600,0.147700,0.676200,0.000050,-0.046300,0.998900 0.515900,0.236500,0.744600,-0.000006,0.017060,0.999900 0.062040,0.264800,0.743800,0.000000,-0.022390,0.999700 -0.270600,0.237800,0.685000,0.000000,-0.167200,0.985900 0.568700,-0.238800,0.592100,0.653000,-0.757400,0.000000 0.225600,0.081290,0.676300,0.000000,0.082390,0.996600 -0.524400,0.127600,0.736200,0.000000,-0.169700,0.985500 0.042290,0.035460,0.679200,0.000000,-0.016200,0.999900 -0.081750,0.032490,0.678400,0.000000,-0.343300,-0.939200 0.568700,-0.238800,0.033850,0.678800,-0.734400,0.000000 0.499000,0.262200,0.741900,0.000000,-0.041020,-0.999200 0.465200,-0.240200,-0.772500,0.000441,-0.993800,0.111500 -0.463500,0.226000,0.742200,0.000000,0.014140,-0.999900 0.526300,-0.005712,-0.747100,0.743600,0.649600,-0.158700 -0.452900,-0.383900,-0.681300,0.837600,0.087830,0.539200 -0.397500,0.218200,0.742000,0.000000,0.029000,-0.999600 -0.169100,0.035890,0.677700,0.000000,-0.139600,-0.990200 0.457400,0.034830,0.716700,0.000000,-0.356300,0.934400 0.169900,0.034830,0.716700,0.000000,-0.356300,0.934400 0.473600,0.218200,0.742000,0.000000,0.029000,-0.999600 0.389100,0.218200,0.742000,0.000000,0.029000,-0.999600 -0.473700,-0.386000,-0.719500,-0.030890,0.277000,-0.960400 -0.406800,0.252500,0.742300,0.000000,-0.022450,-0.999700 -0.348900,0.073060,0.674800,0.000000,-0.054750,-0.998500 -0.302300,0.094040,0.676200,-0.000084,0.022930,0.999700 -0.091390,0.226000,0.742200,0.000000,0.014140,-0.999900 -0.049110,0.226000,0.742200,0.000000,0.014140,-0.999900 -0.219900,0.092910,0.673900,0.000000,-0.028780,-0.999600 0.236800,0.295300,0.694800,0.000005,0.232500,-0.972600 0.169200,0.295300,0.694800,0.000005,0.232500,-0.972600 -0.109200,0.234300,0.682700,0.000000,0.155100,-0.987900 -0.041570,0.124300,0.733700,0.000000,0.150500,-0.988600 -0.439800,0.121500,0.734900,0.000000,-0.154000,0.988100 0.414400,0.330500,0.706100,0.000000,-0.271600,0.962400 -0.479300,0.032270,0.714800,0.000000,-0.223900,-0.974600 -0.276300,0.032490,0.678400,0.000000,-0.343300,-0.939200 0.228400,0.261200,0.687400,0.000000,0.189500,-0.981900 0.524400,0.160800,0.676600,0.000000,-0.061380,0.998100 -0.025360,0.253100,0.685900,0.000000,0.178400,-0.984000 0.432100,0.034830,0.716700,0.000000,-0.356300,0.934400 0.525100,0.038780,0.718100,0.000148,-0.228300,0.973600 0.541300,0.109700,0.733700,0.000003,-0.167800,0.985800 0.321400,0.261200,0.687400,0.000000,0.189500,-0.981900 0.025390,0.210600,0.679400,0.000000,0.122800,-0.992400 0.160700,0.210600,0.679400,0.000000,0.122800,-0.992400 -0.287600,0.203100,0.680900,-0.000028,-0.094170,0.995600 0.177600,0.211400,0.681900,0.000000,-0.120000,0.992800 0.059220,0.329700,0.736800,-0.000002,-0.114800,-0.993400 -0.532100,0.142000,0.676300,-0.000012,-0.055130,0.998500 0.380600,0.202300,0.678400,0.000000,0.112600,-0.993600 -0.507500,0.100500,0.729700,0.000000,0.177800,-0.984100 -0.084570,0.225600,0.683700,0.000000,-0.112100,0.993700 0.492400,-0.240100,-0.711100,0.694400,-0.243700,-0.677000 -0.549700,0.143200,0.674100,0.000000,0.035620,-0.999400 0.143800,0.219600,0.682900,0.000000,-0.101700,0.994800 0.177600,0.059800,0.722800,0.000000,-0.250400,0.968100 0.110000,0.304500,0.739400,0.000000,-0.086030,-0.996300 0.118400,0.321300,0.737800,0.000000,-0.108400,-0.994100 -0.296000,0.194000,0.677600,0.000000,0.100600,-0.994900 -0.499000,0.067630,0.724600,0.000000,-0.219100,0.975700 0.473700,0.278800,0.743600,0.000001,0.052370,0.998600 0.245300,0.101300,0.673700,0.000000,-0.018670,-0.999800 -0.287600,0.034990,0.714900,0.000000,0.166700,-0.986000 -0.498300,0.170200,0.675500,0.000000,0.072190,-0.997400 -0.152200,0.270500,0.743900,0.000002,0.012960,0.999900 -0.499000,0.058310,0.677700,0.000000,0.074480,0.997200 -0.312200,0.058880,0.675600,0.000000,-0.069940,-0.997600 -0.304500,0.225700,0.683400,0.000000,-0.139400,0.990200 -0.245300,0.320600,0.739900,0.000000,0.107000,0.994300 -0.321400,0.320600,0.739900,0.000000,0.107000,0.994300 -0.203000,0.135800,0.737400,0.000000,-0.135000,0.990800 -0.448200,0.041500,0.679200,0.000000,0.080260,0.996800 -0.380600,0.296000,0.740100,0.000000,-0.075530,-0.997100 -0.033110,0.246100,0.684700,0.000000,0.168100,-0.985800 -0.414400,0.202300,0.741400,0.000000,0.046860,-0.998900 -0.549000,0.246100,0.684700,-0.000217,0.168000,-0.985800 -0.194500,0.312900,0.738700,0.000000,-0.097940,-0.995200 -0.406000,0.080480,0.725800,-0.000016,0.214300,-0.976800 -0.143800,0.052060,0.719200,-0.000077,0.245700,-0.969400 -0.329800,0.101100,0.675700,-0.000015,0.037050,0.999300 0.304500,0.134900,0.675800,0.000000,0.003259,1.000000 -0.253700,0.276400,0.692500,0.000000,-0.204900,0.978800 -0.203000,0.049820,0.678200,0.006555,0.071860,0.997400 -0.203000,0.086480,0.727100,0.000000,0.197700,-0.980300 -0.228400,0.079500,0.727600,0.000019,-0.239800,0.970800 -0.406000,0.342600,0.709400,0.000000,-0.274000,0.961700 -0.135300,0.039880,0.717700,0.000000,-0.287000,0.957900 -0.414400,0.039890,0.717700,0.000000,-0.256100,0.966600 -0.084560,0.035890,0.677700,0.000000,-0.139600,-0.990200 ================================================ FILE: visualization/cup_0001.txt ================================================ -0.868900,-0.443700,-0.015050,-0.964900,-0.262100,0.013750 0.896300,0.442900,0.009749,0.905200,0.415800,0.088010 -0.343100,0.714000,0.523500,-0.136500,0.949400,0.283000 0.290000,-0.541600,-0.582100,0.484600,-0.476100,-0.733800 0.202900,-0.429900,0.676900,0.500700,-0.196700,0.843000 -0.082060,0.588000,-0.607600,-0.014300,0.024000,-0.999600 -0.466100,-0.159700,-0.692300,-0.510200,0.088870,-0.855400 0.810900,-0.380100,0.040290,0.494700,-0.767300,0.408200 -0.736100,0.409200,-0.124100,-0.955300,0.162900,-0.246600 -0.531900,-0.107000,0.650200,-0.477800,0.160200,0.863800 0.291400,0.310200,0.496100,0.697300,0.204300,0.687000 -0.087690,-0.499700,0.025480,-0.283100,-0.940500,-0.187900 0.428200,0.143000,-0.425900,0.773800,0.356900,-0.523300 0.280000,0.662500,-0.058570,-0.000050,1.000000,0.000000 -0.263300,0.662500,-0.018330,-0.016500,0.999900,-0.000008 0.067170,-0.087000,-0.736400,0.241500,0.161000,-0.956900 -0.828200,0.017810,0.226500,-0.921500,0.287800,0.260900 -0.494000,-0.517300,0.342000,-0.190500,-0.961700,0.197000 0.533800,-0.130100,0.398400,0.866100,0.083870,0.492800 -0.453700,-0.524800,-0.339600,-0.185400,-0.966000,-0.180100 -0.057800,0.027520,0.735600,0.012680,0.267700,0.963400 -0.804100,-0.067860,-0.337800,-0.859200,0.172000,-0.481900 -0.457300,0.297600,-0.552100,-0.499900,0.234700,-0.833700 -0.171600,-0.525500,-0.715400,-0.013140,-0.349300,-0.936900 0.379800,-0.515800,-0.078530,0.286400,-0.956500,-0.055030 -0.251500,-0.466300,0.729500,-0.231300,-0.294800,0.927100 -0.572100,0.314200,0.461300,-0.670000,0.233700,0.704600 0.593300,0.079780,-0.001499,0.937200,0.348800,-0.002208 -0.673900,0.698800,0.216800,-0.662300,0.731200,0.163600 0.100500,0.709400,0.467200,-0.212000,0.910900,-0.354000 -0.475300,0.715700,-0.401500,0.122300,0.986200,0.111500 0.451100,-0.547400,0.343800,0.000000,-1.000000,0.000000 0.594400,-0.216800,-0.297700,0.957800,0.033520,-0.285500 0.286800,0.577800,-0.447500,0.684800,0.048210,-0.727100 -0.095630,0.402700,0.625700,0.014080,0.167900,0.985700 -0.062080,-0.538700,0.407300,0.026950,-0.986800,0.159700 -0.011880,-0.542400,-0.359700,0.027560,-0.993600,-0.109200 0.412500,0.604800,0.287400,0.876800,0.022890,0.480300 0.121300,0.259000,-0.612500,0.356900,0.273100,-0.893300 -0.817400,-0.326600,0.337000,-0.855200,-0.109700,0.506500 0.376700,-0.177100,-0.587700,0.705200,0.027070,-0.708500 0.269900,-0.083680,0.653400,0.507600,0.155300,0.847500 0.481700,0.375600,-0.168600,0.939800,0.190900,-0.283600 -0.011700,0.662100,-0.259800,0.000000,1.000000,0.000000 -0.781000,-0.426700,-0.357400,-0.849900,-0.227000,-0.475600 -0.522300,-0.540100,0.004284,-0.124500,-0.992200,0.001894 -0.192100,0.145500,-0.690000,-0.013780,0.345100,-0.938500 -0.334500,0.168200,0.653900,-0.244000,0.304500,0.920700 0.492100,0.219500,0.266000,0.838100,0.288100,0.463300 0.619900,0.598300,0.036330,-0.133700,0.917800,0.373800 0.909300,0.126700,-0.017220,0.933700,-0.298800,-0.197400 -0.737700,0.315400,0.191700,-0.936600,0.228800,0.265400 -0.674000,0.714000,-0.108500,-0.274800,0.959900,-0.055300 -0.893700,-0.136600,-0.038500,-0.995200,0.097220,0.014250 -0.142500,0.662500,0.263400,0.016450,0.999900,-0.000001 0.179000,-0.544100,0.202700,0.084420,-0.995300,0.047580 -0.534400,-0.416300,0.632100,-0.470900,-0.249800,0.846100 -0.686800,0.224900,-0.356800,-0.833500,0.295700,-0.466600 0.502800,-0.521000,-0.351800,0.804600,-0.349200,-0.480300 -0.535900,-0.441100,-0.620300,-0.494700,-0.254200,-0.831100 0.087240,-0.386600,-0.726400,0.240600,-0.192700,-0.951300 -0.262500,-0.176700,0.763000,-0.249200,0.029770,0.968000 -0.819200,0.140500,-0.038520,-0.934600,0.355600,0.013330 -0.182700,-0.206800,-0.770800,-0.014300,0.028170,-0.999500 -0.688400,0.057260,0.464600,-0.648100,0.369800,0.665700 0.784800,-0.126500,-0.065410,-0.502600,-0.158500,-0.849800 0.017240,-0.245600,0.764100,0.267200,-0.054120,0.962100 0.008387,0.662500,0.021910,0.000000,1.000000,0.000000 0.586200,-0.536800,0.101000,0.905300,-0.367500,0.212900 -0.615300,0.020190,-0.551600,-0.685900,0.288100,-0.668200 -0.616800,0.490100,-0.372600,-0.753400,0.094700,-0.650700 0.419000,-0.323300,0.543400,0.716900,-0.116400,0.687400 -0.343200,0.546600,-0.570300,-0.270000,0.056750,-0.961200 0.633700,-0.219500,0.158600,0.966600,0.017110,0.255700 -0.736000,-0.547400,0.213100,0.000000,-1.000000,0.000000 -0.695000,-0.230000,-0.520700,-0.717100,-0.016120,-0.696800 -0.355500,0.426500,0.583400,-0.365500,0.171600,0.914800 -0.233400,-0.543500,-0.200000,0.054060,-0.994400,0.090500 0.137700,0.163600,0.640100,0.242300,0.365200,0.898800 0.119200,-0.546300,-0.119000,-0.032750,-0.999300,0.018140 -0.424200,0.662500,0.233200,-0.016560,0.999900,0.000000 -0.021760,-0.547400,0.655700,0.000000,-1.000000,0.000000 -0.293500,-0.545700,0.193000,0.031020,-0.999000,-0.032260 0.613300,-0.416800,-0.147800,0.933600,-0.250300,-0.256600 -0.579200,0.567800,0.408100,-0.693500,0.043070,0.719200 -0.239500,-0.520000,-0.476500,-0.071950,-0.964700,-0.253300 0.415600,0.072270,0.479500,0.681700,0.358900,0.637500 0.238500,-0.518200,-0.340900,0.185400,-0.964000,-0.190600 0.431300,0.657800,-0.252700,0.854100,0.111100,-0.508000 -0.102300,0.648100,0.609600,0.025310,0.009220,0.999600 0.149300,0.662100,0.223100,0.000000,1.000000,0.000000 -0.292900,-0.512500,0.492600,-0.078740,-0.947300,0.310400 0.286900,0.052400,-0.602500,0.459600,0.324600,-0.826700 -0.283300,0.662100,-0.259800,0.000000,1.000000,0.000000 0.137400,0.489200,0.560300,0.536900,0.075130,0.840300 0.489700,0.410900,0.115900,0.960800,0.127700,0.246200 0.567300,0.043280,-0.238400,0.909000,0.328400,-0.256500 0.213400,-0.498900,0.447300,0.187300,-0.934700,0.301900 -0.685300,-0.246800,0.534400,-0.696600,-0.032440,0.716800 0.079260,0.715500,-0.492100,-0.084620,0.980400,0.178000 0.305600,0.345300,-0.466300,0.680100,0.212700,-0.701600 -0.696000,-0.511200,0.453500,-0.735500,-0.328700,0.592500 -0.642200,-0.501300,-0.188900,-0.324600,-0.941900,-0.086180 -0.734500,0.527600,0.072180,-0.997900,0.062430,0.016680 -0.341800,-0.376600,-0.726000,-0.267000,-0.165400,-0.949400 -0.415700,0.100100,-0.651200,-0.459400,0.351800,-0.815600 -0.112300,0.366500,-0.630000,-0.013980,0.182100,-0.983200 0.566800,-0.346700,0.331100,0.857800,-0.173800,0.483800 0.112200,0.482100,-0.570800,0.458600,0.079750,-0.885100 0.434400,-0.376900,-0.514600,0.686700,-0.169600,-0.706900 0.028820,-0.544400,-0.586800,-0.157600,-0.626900,0.763000 0.500800,-0.062010,-0.430000,0.845200,0.201700,-0.494900 -0.484600,0.662600,-0.018350,-0.011010,0.999900,-0.002760 0.592600,0.000662,0.199400,0.937200,0.266600,0.224900 -0.888500,-0.287300,0.132300,-0.960800,-0.084940,0.263900 -0.865700,-0.310300,-0.201700,-0.965000,-0.096530,-0.243800 0.450100,0.705100,0.094560,0.526700,0.838300,0.140900 -0.530000,0.092260,0.591300,-0.447900,0.357700,0.819400 0.385500,-0.509400,0.132000,0.322500,-0.943100,0.080670 -0.656100,-0.541400,-0.471800,-0.595400,-0.557000,-0.578900 -0.232900,0.716100,-0.540900,-0.033530,0.992300,-0.119000 0.209600,0.662100,-0.249700,-0.000050,1.000000,0.000000 0.286700,0.631800,0.451300,0.711600,0.015970,0.702400 -0.312900,-0.538500,-0.008077,0.169400,-0.985600,-0.001073 -0.297100,-0.039330,-0.732200,-0.269200,0.224000,-0.936700 -0.773500,-0.117000,0.410300,-0.851200,0.118100,0.511300 -0.122400,0.205100,0.673400,0.015470,0.289900,0.956900 0.214200,-0.216800,-0.695300,0.487700,0.013160,-0.872900 0.007856,0.117200,-0.690600,0.228000,0.363500,-0.903300 0.387100,0.419200,0.363400,0.863500,0.133600,0.486300 -0.363800,-0.547400,-0.632000,0.000000,-1.000000,0.000000 -0.797100,0.103700,-0.227900,-0.904900,0.359100,-0.228600 -0.061820,-0.542600,0.213700,-0.030700,-0.993600,-0.108300 -0.474500,0.662100,-0.209500,-0.016540,0.999900,0.000002 0.531200,0.259700,-0.005926,0.967300,0.253700,-0.004267 -0.687500,0.486900,0.257000,-0.868200,0.094550,0.487100 0.483600,0.547400,-0.087290,0.985600,0.036750,-0.164800 0.647600,-0.256900,-0.048450,0.999600,-0.021410,-0.019790 0.390400,0.461700,-0.339600,0.854900,0.133800,-0.501200 0.778900,0.024630,0.065800,-0.550400,0.164800,0.818500 0.419200,-0.123600,0.543500,0.718700,0.100900,0.687900 0.497900,0.213900,-0.256400,0.906600,0.282700,-0.313400 -0.386300,-0.007045,0.704300,-0.237900,0.275000,0.931500 -0.403000,-0.544400,0.659300,-0.363000,-0.659600,0.658200 -0.102200,-0.017020,-0.746900,-0.013190,0.229600,-0.973200 -0.291600,0.284600,-0.625900,-0.264700,0.242200,-0.933400 -0.700400,-0.490000,0.035280,-0.403000,-0.915200,0.005756 -0.628200,0.700500,-0.297800,-0.560500,0.764400,-0.318600 -0.425500,-0.297600,0.714700,-0.490200,-0.131100,0.861700 0.749800,0.516000,-0.067200,-0.215800,-0.369100,-0.904000 -0.082170,0.662500,-0.430800,-0.033130,0.999500,0.000000 0.239200,-0.544100,0.031970,0.101500,-0.994800,0.001689 0.370900,-0.498600,0.535300,0.672700,-0.358400,0.647300 -0.693500,0.203600,0.360300,-0.820200,0.296900,0.488900 0.858600,0.276200,0.065770,-0.586200,-0.023540,0.809800 -0.092310,-0.386200,0.758500,0.008546,-0.205000,0.978700 0.106700,-0.037600,0.718200,0.257700,0.233600,0.937500 -0.818600,-0.514500,-0.196200,-0.908400,-0.349100,-0.229900 0.252500,-0.260100,0.675700,0.508400,-0.016000,0.861000 -0.695800,0.555300,-0.222800,-0.938100,0.055660,-0.341800 0.640200,-0.096450,0.032000,0.986600,0.162600,-0.013830 0.277900,-0.376700,-0.643700,0.479200,-0.169700,-0.861100 -0.072090,0.662100,0.424300,-0.016540,0.999900,0.000000 0.627500,-0.116700,-0.157900,0.958400,0.102100,-0.266500 -0.485200,0.473600,-0.500000,-0.509400,0.100700,-0.854600 -0.549900,-0.529200,0.175600,-0.211900,-0.975100,0.066150 -0.484100,0.716100,0.423900,-0.104200,0.988800,0.107100 -0.258400,0.577800,0.595400,-0.248500,0.043130,0.967700 0.888600,-0.227300,0.039350,0.914200,0.058320,0.400900 -0.142500,0.662100,-0.149100,0.000000,1.000000,0.000000 0.507100,-0.236700,-0.448600,0.857900,-0.042500,-0.512000 -0.799500,-0.233400,-0.375200,-0.872500,-0.023400,-0.488100 -0.544900,-0.547400,0.524900,0.000000,-1.000000,0.000000 -0.071730,-0.533300,-0.150100,-0.058770,-0.982600,0.176000 -0.222500,-0.007570,0.745800,-0.222200,0.231900,0.947000 0.289600,0.075750,0.591600,0.478300,0.371100,0.796000 0.511400,-0.547400,-0.179300,0.000000,-1.000000,0.000000 -0.434400,0.572900,0.525500,-0.486700,0.042850,0.872500 0.069990,-0.540600,0.062450,-0.114400,-0.993000,-0.028780 -0.483600,-0.540800,-0.158700,-0.102700,-0.993100,-0.056390 0.036440,0.294400,0.628300,0.268600,0.236900,0.933700 -0.565700,0.176000,-0.522200,-0.678100,0.327700,-0.657800 -0.761600,0.335500,0.021830,-0.979600,0.200300,0.014080 -0.438400,0.269300,0.574200,-0.475500,0.268800,0.837600 0.069120,-0.497800,0.527500,0.101400,-0.930100,0.352900 -0.798300,0.158400,0.146100,-0.907800,0.331100,0.257400 -0.474500,-0.547300,-0.511400,0.060140,-0.995800,0.068620 0.277400,0.204300,-0.544100,0.546900,0.302100,-0.780800 -0.647700,0.713200,0.052110,0.290000,0.957000,-0.006650 -0.716000,0.075450,-0.413800,-0.817800,0.349700,-0.457100 0.635200,-0.398600,0.030990,0.666300,-0.743000,0.064230 0.290100,0.662800,0.142600,0.002692,1.000000,-0.005493 0.277400,0.469900,0.472100,0.712600,0.122100,0.690900 -0.239500,0.310200,0.635400,-0.241700,0.191300,0.951300 -0.885500,-0.126200,0.131600,-0.957300,0.102500,0.270200 0.168100,-0.492600,-0.488900,0.195200,-0.916900,-0.348100 -0.847700,-0.432200,0.189400,-0.935500,-0.235000,0.263900 0.368600,-0.502300,-0.238500,0.287400,-0.942300,-0.171700 -0.751700,0.254800,-0.198300,-0.936800,0.261500,-0.232600 -0.098830,-0.343400,-0.763600,-0.014180,-0.156900,-0.987500 0.550200,0.168200,0.125800,0.909800,0.350000,0.223000 -0.212800,-0.544100,0.353300,-0.025860,-0.994600,0.100600 -0.151400,-0.496000,0.565200,0.004008,-0.922500,0.386000 0.515500,0.033270,0.361000,0.836400,0.297400,0.460400 -0.672200,-0.087600,0.531300,-0.700500,0.157200,0.696100 0.380700,-0.547400,-0.450900,0.000000,-1.000000,0.000000 -0.594500,0.332100,-0.430200,-0.702500,0.201000,-0.682700 0.098970,0.662100,-0.108900,-0.000050,1.000000,0.000000 -0.693300,-0.389400,-0.498900,-0.703000,-0.196600,-0.683500 -0.560700,-0.285200,-0.635800,-0.509500,-0.084760,-0.856300 0.017870,-0.236800,-0.760000,0.242400,-0.025040,-0.969900 -0.263200,0.662500,0.162800,0.013690,0.999900,0.005529 0.570900,-0.479000,0.246800,0.921000,-0.297800,0.251000 0.482900,-0.430000,0.448000,0.813200,-0.234700,0.532600 -0.001649,0.662500,0.182900,0.013690,0.999900,0.005528 0.317400,0.709200,-0.368800,0.326300,0.892700,-0.310700 0.548900,-0.371800,-0.352200,0.843700,-0.185600,-0.503700 0.410000,0.249200,0.395300,0.803700,0.287400,0.520900 -0.726000,-0.079720,-0.471200,-0.708200,0.161000,-0.687400 -0.102400,-0.117300,0.767900,0.014190,0.116000,0.993100 0.429900,0.715500,-0.058580,0.177900,0.984000,-0.005517 0.302700,0.712100,0.305000,-0.267800,0.949000,-0.166400 -0.313400,0.662600,-0.420600,0.091890,0.983400,0.156600 -0.860700,0.022720,0.052000,-0.957600,0.287900,0.013690 -0.684800,0.388200,-0.281700,-0.861700,0.162100,-0.480900 -0.597100,-0.139200,-0.611700,-0.528500,0.098730,-0.843200 0.159300,0.662100,0.031980,0.002790,1.000000,0.002737 -0.896000,-0.287100,-0.048520,-0.996300,-0.084450,0.014290 0.163700,-0.521200,-0.661500,0.456200,-0.350500,-0.817900 -0.737900,-0.366800,0.458400,-0.847700,-0.160900,0.505500 0.068360,-0.541800,0.333100,0.058710,-0.993500,0.097730 -0.856200,-0.004343,-0.142800,-0.932300,0.267400,-0.243600 0.399900,-0.022530,-0.532900,0.676700,0.238400,-0.696600 -0.086280,-0.518900,-0.495000,-0.003088,-0.964300,-0.264600 0.146100,0.062400,-0.676200,0.341200,0.358000,-0.869100 0.062460,-0.384700,0.736400,0.269900,-0.174700,0.946900 -0.328900,-0.203500,-0.743800,-0.275200,0.031130,-0.960900 -0.162600,-0.546100,-0.330100,-0.002544,-0.999300,-0.038270 -0.575800,-0.246800,0.634100,-0.486600,-0.065470,0.871200 -0.662800,0.345000,0.339900,-0.841900,0.198200,0.502000 0.212400,-0.071620,-0.680800,0.479700,0.163100,-0.862100 -0.636100,-0.492000,0.320600,0.690800,-0.559000,-0.458500 -0.548200,0.709100,0.294200,0.385600,0.899400,-0.205900 -0.600600,-0.490200,-0.326600,-0.350000,-0.915900,-0.196500 -0.415500,0.664800,-0.530800,-0.506500,0.228700,-0.831300 0.571800,-0.547400,-0.048510,0.010740,-0.999900,-0.001056 -0.293400,0.662600,0.303600,0.005546,1.000000,-0.002802 0.219700,-0.547400,0.595400,0.001479,-1.000000,0.001481 -0.857500,-0.163600,-0.245000,-0.966200,0.074660,-0.246700 -0.268300,-0.326200,0.756200,-0.250900,-0.086800,0.964100 0.423100,0.304900,-0.338400,0.842400,0.207400,-0.497300 -0.024130,-0.477000,-0.730600,0.213900,-0.289600,-0.933000 0.458700,0.360000,0.254100,0.858000,0.170100,0.484700 -0.411800,-0.146800,0.721500,-0.387900,0.099460,0.916300 -0.505400,0.436100,0.495400,-0.685500,0.145500,0.713400 -0.514800,0.662500,0.122500,0.000000,1.000000,0.000000 0.773000,0.517700,0.073890,-0.009701,-0.039850,0.999200 -0.152600,0.662100,0.072220,-0.016540,0.999900,0.000000 0.158500,0.348400,0.571600,0.500700,0.182500,0.846200 0.468600,0.549300,0.143300,0.972700,0.067280,0.222200 0.137300,-0.176900,0.729800,0.280400,0.033890,0.959300 -0.844100,-0.115800,0.273400,-0.954900,0.123500,0.269900 -0.373900,0.662500,-0.108900,-0.016510,0.999900,0.000000 0.109000,0.662100,-0.350300,0.000000,1.000000,0.000000 0.329200,-0.507000,0.283100,0.289700,-0.943300,0.162100 0.883400,0.306300,-0.070800,0.013150,0.004873,-0.999900 -0.353100,-0.539600,0.333900,-0.068320,-0.991100,0.113900 -0.199400,0.680700,0.483400,0.244200,0.431400,-0.868500 0.020580,0.561000,0.593900,0.280100,0.049770,0.958700 -0.192700,0.481200,-0.612500,-0.016360,0.096240,-0.995200 0.600600,-0.123300,0.265600,0.969800,0.072070,0.233100 0.833300,-0.297300,-0.071120,0.047020,-0.019560,-0.998700 -0.303100,-0.542600,-0.329600,-0.057150,-0.993700,-0.096190 0.819600,0.019980,-0.068610,0.332800,-0.147200,-0.931400 -0.779000,-0.486600,0.332200,-0.820100,-0.298400,0.488200 -0.352000,0.407200,-0.582800,-0.274000,0.159800,-0.948400 0.548900,0.163700,-0.136500,0.908700,0.335100,-0.249000 0.217300,0.700500,-0.478400,0.324500,0.774400,-0.543100 0.259800,-0.537600,-0.159200,0.167600,-0.983600,-0.067060 0.810100,-0.117700,0.073860,0.139800,0.039220,0.989400 -0.042440,0.713000,-0.559500,0.074690,0.951000,-0.300000 0.518800,-0.263500,0.434400,0.872100,-0.016360,0.489100 -0.837800,-0.533300,0.085520,-0.932400,-0.361100,0.013460 0.449200,0.516700,-0.217200,0.965300,0.078320,-0.248900 0.470500,-0.486300,0.021910,-0.257400,-0.966300,-0.001320 0.004094,0.140400,0.687000,0.244400,0.342200,0.907300 -0.573200,0.615000,-0.409000,-0.717200,-0.003353,-0.696900 -0.763600,0.052190,0.350000,-0.801700,0.331700,0.497300 -0.471500,-0.025700,-0.664600,-0.498500,0.224900,-0.837200 0.038610,0.662100,0.313700,0.000000,1.000000,0.000000 0.556200,0.463000,-0.007982,0.694600,-0.713300,-0.093460 -0.593100,0.183000,0.492400,-0.673500,0.314700,0.668900 -0.203700,-0.524300,0.093210,0.167800,-0.966400,-0.195000 -0.733200,0.608200,-0.048560,-0.999900,0.004991,0.014270 0.048660,-0.547200,-0.239700,-0.006250,-0.999900,0.007953 -0.043220,0.254200,-0.655700,0.140100,0.257200,-0.956100 -0.645000,-0.376900,0.554500,-0.686300,-0.171300,0.706900 0.186700,0.673600,0.371100,-0.478600,0.742500,-0.468600 -0.224200,0.441500,0.614600,-0.237400,0.129800,0.962700 0.582200,-0.076980,-0.295100,0.942300,0.140200,-0.304000 -0.132500,-0.246900,0.774400,0.014350,-0.040800,0.999100 0.623000,-0.287400,-0.188500,0.961100,-0.075150,-0.265900 -0.786300,-0.547400,-0.048510,0.000000,-1.000000,0.000000 -0.142500,-0.544300,0.710900,0.006735,-0.799300,0.600800 0.144400,0.608200,-0.545100,0.488100,0.004906,-0.872800 0.338300,0.177100,0.502900,0.681400,0.311500,0.662400 -0.423700,-0.543200,0.222800,-0.093620,-0.993700,0.061940 0.227400,0.477000,-0.507000,0.484200,0.097420,-0.869500 -0.013220,0.466700,-0.606300,0.243700,0.109100,-0.963700 0.612400,-0.367800,0.191200,0.951300,-0.159200,0.264000 -0.417700,-0.497400,0.529300,0.568300,-0.273600,-0.776000 -0.162600,0.662100,-0.310100,-0.000050,1.000000,0.000000 0.611100,0.008970,-0.120100,0.916100,0.311200,-0.252900 -0.365000,-0.516500,-0.441700,-0.150300,-0.957500,-0.246300 0.511800,0.048060,-0.355200,0.825200,0.307900,-0.473600 0.183000,0.355400,-0.552700,0.477600,0.196700,-0.856300 0.321100,0.670800,-0.185200,-0.685200,0.657700,0.312800 0.307200,-0.366700,0.630400,0.500400,-0.132300,0.855600 0.151900,0.615000,0.545000,0.509200,0.032850,0.860000 -0.162600,-0.486400,-0.591800,0.001256,-0.971500,0.237000 -0.212000,0.608200,-0.604700,-0.119500,0.003882,-0.992800 0.118100,-0.530700,-0.378900,0.097060,-0.979800,-0.174800 -0.343800,-0.545900,-0.139100,0.040490,-0.998900,0.022310 -0.394000,0.662100,-0.320100,0.000000,1.000000,0.000000 -0.204100,-0.522500,-0.079920,0.182800,-0.965900,0.183100 0.191500,0.038030,0.665800,0.481000,0.254700,0.838900 -0.602200,0.435900,0.400900,-0.689900,0.138700,0.710500 0.484000,0.608200,0.022020,0.999800,0.015970,-0.011490 0.709500,-0.379400,-0.067340,-0.045570,-0.430100,-0.901700 0.208600,-0.528000,0.322700,0.175700,-0.969500,0.170900 -0.223000,-0.347300,-0.761200,-0.042380,-0.161200,-0.986000 0.505000,0.284600,0.161100,0.940500,0.250600,0.229600 0.041710,0.689300,0.574200,0.214600,0.567600,0.794800 -0.412100,-0.427400,0.697400,-0.445000,-0.231800,0.865000 0.435000,0.486800,0.260000,0.867000,0.119000,0.483900 -0.462600,-0.337700,-0.688000,-0.508200,-0.142900,-0.849300 0.350500,-0.547400,0.414300,-0.007792,-0.999900,-0.007760 -0.122400,0.527500,0.612500,0.017090,0.073530,0.997100 0.370000,-0.012310,0.564800,0.695800,0.190500,0.692600 0.037920,0.356300,-0.610800,0.239900,0.195500,-0.950900 -0.756300,0.188100,0.256200,-0.912700,0.318500,0.256100 -0.769600,-0.236700,0.429200,-0.858100,-0.025900,0.512800 -0.353800,0.662100,0.062160,-0.000033,1.000000,-0.000033 -0.253100,-0.547400,0.605400,0.037520,-0.995000,-0.092130 0.577500,-0.226800,0.331400,0.877700,-0.034620,0.478000 -0.619300,-0.518800,-0.063430,-0.260400,-0.964100,-0.051960 0.003558,-0.529100,-0.056530,-0.206400,-0.973300,0.100400 0.575100,-0.446100,-0.257900,0.927900,-0.279600,-0.246500 0.037230,0.436500,0.600600,0.259200,0.128600,0.957200 -0.652600,0.618300,0.303200,-0.858900,-0.004601,0.512200 -0.240600,0.103100,0.703200,-0.232100,0.372400,0.898600 -0.857300,-0.256800,0.248300,-0.960900,-0.032570,0.275000 0.625200,0.542700,-0.069410,0.054760,-0.292200,-0.954800 -0.404000,0.662500,0.353900,0.033040,0.999500,-0.000004 -0.724600,0.638400,0.114500,-0.962100,0.004170,0.272600 0.045000,-0.517300,-0.473300,0.070820,-0.960800,-0.267900 0.456400,-0.146900,-0.506500,0.700600,0.082530,-0.708700 -0.400100,0.214700,-0.612900,-0.456300,0.297000,-0.838800 -0.864800,-0.418900,-0.129900,-0.944900,-0.224900,-0.237800 0.548900,0.106600,0.225500,0.889900,0.393600,0.230700 0.314800,-0.076660,-0.624600,0.481300,0.162400,-0.861400 -0.733100,0.427500,0.132500,-0.953900,0.134000,0.268600 0.235100,0.182100,0.578500,0.496400,0.318800,0.807400 -0.771400,0.284900,-0.087490,-0.947000,0.240400,-0.213000 -0.424900,-0.460700,-0.679900,-0.444100,-0.293600,-0.846500 -0.521600,0.063840,-0.603900,-0.480500,0.342900,-0.807200 -0.404100,-0.546900,0.062170,0.030830,-0.999500,-0.009014 -0.772500,-0.538700,-0.299000,-0.792200,-0.417500,-0.445100 0.369500,-0.291800,-0.593200,0.693800,-0.095350,-0.713800 0.712400,-0.313500,0.029730,0.132200,0.954900,0.265800 -0.031820,0.662100,-0.118900,-0.000050,1.000000,0.000000 -0.555000,0.662600,-0.108900,-0.008631,1.000000,-0.000058 0.183900,-0.326800,-0.705000,0.483400,-0.116000,-0.867700 0.367100,0.253300,-0.437200,0.674600,0.236100,-0.699400 0.472900,0.139400,0.357400,0.817900,0.371800,0.439000 0.352500,0.102600,-0.523400,0.654600,0.356100,-0.666800 -0.282500,0.076500,-0.700700,-0.255300,0.349700,-0.901400 0.037870,-0.126400,0.753400,0.270900,0.073420,0.959800 -0.419900,0.092760,0.652700,-0.455800,0.335300,0.824500 0.379600,0.608200,-0.341100,0.860700,0.024300,-0.508500 -0.269800,-0.464500,-0.724400,-0.261300,-0.287700,-0.921400 0.367900,-0.461000,-0.551300,0.667400,-0.287800,-0.686800 0.627200,-0.106900,0.151500,0.959900,0.119800,0.253600 -0.172800,-0.544400,0.233600,0.024330,-0.995100,-0.096300 -0.249500,0.689600,0.584700,-0.184500,0.579400,0.793900 -0.293400,0.662500,0.424300,0.035460,0.999400,-0.004518 0.836100,0.163700,0.059770,-0.722100,0.242900,0.647800 0.098970,0.662100,-0.229600,-0.000050,1.000000,0.000000 0.373700,-0.210300,0.598600,0.716500,0.043310,0.696200 -0.042120,-0.511000,0.520200,0.065050,-0.946300,0.316800 -0.612900,0.002155,0.562600,-0.677800,0.287100,0.676800 0.088910,-0.547400,0.625500,0.000000,-1.000000,0.000000 0.157900,-0.296800,0.721400,0.267400,-0.094690,0.958900 0.465500,0.648200,-0.147400,0.965200,0.023800,-0.260600 -0.192800,0.662500,0.374000,-0.016580,0.999900,0.000000 -0.253100,-0.547400,-0.611900,0.000465,-1.000000,0.004549 -0.202900,0.662800,-0.430800,-0.016540,0.999900,-0.000041 -0.887100,-0.194200,-0.133000,-0.968600,0.032600,-0.246300 -0.753200,-0.299900,-0.450800,-0.868700,-0.096380,-0.485800 -0.172600,0.275600,-0.649500,-0.013750,0.248900,-0.968400 0.451800,-0.547100,0.233300,-0.134800,-0.990200,-0.036700 0.525700,-0.466300,0.350600,0.836700,-0.289900,0.464700 0.508800,0.269100,-0.159500,0.943200,0.229800,-0.239800 0.488900,-0.032640,0.445300,0.858700,0.212000,0.466500 0.819000,0.358400,0.001858,-0.959400,-0.282000,-0.008659 -0.785200,0.238100,0.072140,-0.961600,0.274100,0.013780 -0.726000,0.519900,-0.112900,-0.967000,0.065420,-0.246200 0.051010,0.658100,-0.580800,0.246200,0.118000,-0.962000 -0.590700,0.676200,0.389400,-0.656500,0.360000,0.662900 0.507300,0.365900,-0.018290,0.983900,0.178600,-0.011140 -0.698000,0.588300,0.209000,-0.961600,0.024870,0.273400 0.620100,-0.003454,0.094250,0.949000,0.255600,0.184400 -0.645500,0.589900,-0.312800,-0.873400,0.022650,-0.486400 0.279400,-0.535900,0.132400,0.176800,-0.983200,0.045390 -0.830300,-0.007279,-0.248100,-0.937700,0.252500,-0.238600 0.007674,0.003563,-0.731300,0.234900,0.278800,-0.931200 -0.595200,-0.547400,0.404200,0.002199,-1.000000,-0.002249 0.462500,-0.476700,-0.447900,0.834400,-0.267400,-0.481900 -0.547100,-0.535000,-0.432800,0.715800,-0.061750,0.695600 -0.659600,-0.498300,0.155300,-0.345700,-0.932900,0.100700 -0.877100,-0.402900,0.084110,-0.974200,-0.225500,0.012010 -0.742100,0.456800,-0.008338,-0.992600,0.120700,0.014210 0.349500,-0.525100,0.031990,0.260100,-0.965600,-0.003729 -0.618400,0.227600,-0.444100,-0.686700,0.290300,-0.666400 -0.061340,0.711100,0.519000,-0.006852,0.921500,-0.388200 0.400800,-0.547400,-0.330200,-0.008750,-0.999900,0.006655 -0.193100,-0.528800,0.457700,-0.052370,-0.972300,0.227700 0.741300,-0.055650,0.001800,-0.999900,-0.009813,0.008794 -0.896600,-0.206700,0.062140,-0.999500,0.028090,0.014310 0.436500,0.686200,0.222400,0.782400,0.541700,0.307200 0.440700,0.395500,-0.272500,0.843900,0.175800,-0.506900 -0.082100,-0.546100,-0.259900,-0.007721,-0.999300,0.036850 0.288800,-0.494100,-0.442500,-0.617500,-0.448700,0.646000 -0.498000,-0.487500,0.450300,-0.299200,-0.908300,0.292500 -0.377600,-0.109100,-0.722500,-0.269300,0.136400,-0.953300 -0.623700,-0.349800,-0.580200,-0.707700,-0.160800,-0.687900 0.371500,0.523900,0.367100,0.823400,0.093520,0.559700 -0.823800,-0.320100,-0.320100,-0.868000,-0.100400,-0.486300 0.542000,-0.147100,-0.383500,0.855200,0.100700,-0.508500 -0.774700,0.059520,-0.320800,-0.818400,0.344900,-0.459600 0.721500,0.599100,-0.009264,0.261700,0.959300,-0.106400 0.211300,0.147900,-0.603300,0.456100,0.327800,-0.827400 0.320300,0.662500,0.042030,-0.008257,1.000000,0.000006 -0.383500,-0.517100,0.432300,-0.135400,-0.960800,0.242000 -0.551800,-0.520500,-0.237200,-0.229500,-0.964800,-0.128700 -0.032720,-0.100300,-0.763200,0.107700,0.178700,-0.978000 -0.376000,-0.491700,-0.544900,0.349400,-0.817500,0.457900 -0.301700,0.184800,-0.653400,-0.261600,0.325200,-0.908700 0.122400,-0.186000,-0.732900,0.244600,0.033780,-0.969000 0.306700,0.476400,-0.437200,0.715800,0.096470,-0.691600 -0.321400,0.657800,-0.574000,-0.267500,0.128600,-0.954900 -0.875000,-0.025950,-0.038490,-0.974800,0.222700,0.013930 -0.736000,-0.547400,-0.139100,0.008255,-1.000000,0.002364 0.215700,0.701700,0.479000,0.332100,0.765200,0.551500 -0.504400,0.584600,-0.479600,-0.616800,0.025030,-0.786700 0.443500,-0.266900,-0.523800,0.696300,-0.041470,-0.716600 -0.508500,0.685900,-0.303700,0.617600,0.525600,0.585100 0.139300,-0.546000,-0.018330,-0.039070,-0.999200,0.001324 0.649300,-0.196700,0.052130,0.998100,0.060070,-0.011570 -0.424200,-0.547100,-0.038460,-0.005711,-1.000000,-0.003048 -0.122500,0.103000,0.710200,0.012980,0.358800,0.933300 -0.496200,-0.510900,0.621700,-0.444400,-0.336900,0.830100 -0.444000,0.370800,0.544900,-0.481800,0.184000,0.856800 0.662800,0.506600,0.021500,-0.023020,-0.982800,0.183000 0.641000,-0.319300,0.106000,0.962900,-0.065680,0.261700 -0.051940,-0.547400,-0.662200,0.000000,-1.000000,0.000000 0.221500,0.552600,0.504500,0.516300,0.027910,0.856000 0.865100,-0.188700,-0.059670,0.620100,0.230200,-0.750000 -0.720100,-0.543900,-0.385900,-0.530800,-0.795500,-0.292300 0.491400,0.446400,-0.094440,0.961400,0.107600,-0.253300 -0.687600,0.682900,-0.217500,-0.863000,0.435200,-0.256500 0.844100,-0.059140,-0.001246,0.997100,0.066790,-0.037450 -0.152500,0.662100,-0.048510,0.000000,1.000000,0.000000 -0.840400,-0.396400,-0.248100,-0.946900,-0.213800,-0.240100 0.927600,0.345300,0.011230,0.977600,0.186900,0.096270 -0.132300,-0.117100,-0.765200,-0.014310,0.116400,-0.993100 -0.082020,0.163000,-0.685400,-0.013500,0.331000,-0.943500 -0.353700,-0.546100,-0.239600,-0.030190,-0.999100,-0.029300 -0.062080,-0.487100,0.732100,0.019140,-0.284900,0.958400 0.149000,-0.544800,-0.229400,0.066270,-0.995900,-0.062150 -0.579300,-0.513900,-0.565700,-0.637800,-0.350800,-0.685700 0.838600,0.465900,-0.069620,0.223200,0.117900,-0.967600 -0.508800,0.369200,-0.503500,-0.511500,0.184100,-0.839400 -0.585100,0.662500,-0.008269,0.113900,0.993500,-0.001215 0.291000,-0.266900,-0.651100,0.487300,-0.041650,-0.872300 0.502800,-0.346700,-0.438100,0.841200,-0.189900,-0.506300 0.801500,0.113300,-0.035640,-0.817100,0.433100,-0.380600 0.219700,0.662100,-0.139100,0.000017,1.000000,0.000017 -0.545100,0.272000,-0.501600,-0.692500,0.259400,-0.673200 -0.629800,0.102200,-0.495700,-0.669700,0.357600,-0.650900 0.793400,-0.229700,0.008181,-0.988900,-0.139200,0.052610 -0.486700,0.161200,-0.581900,-0.485100,0.332100,-0.809000 -0.289400,-0.082010,0.744500,-0.233400,0.170100,0.957400 0.365800,0.638400,0.369300,0.769000,-0.016350,0.639000 0.615200,-0.456100,-0.048410,0.955000,-0.296000,-0.016050 0.068760,-0.547000,0.233200,0.001347,-1.000000,0.001745 0.541700,0.517500,0.074580,-0.013410,0.013420,0.999800 0.098120,0.063550,0.690800,0.254900,0.351100,0.901000 -0.579000,0.695000,-0.200000,0.664400,0.661200,0.348600 0.080470,-0.483000,-0.702400,0.238000,-0.293800,-0.925800 0.439000,-0.522600,0.452600,0.679100,-0.328400,0.656500 0.843800,0.217600,-0.049510,-0.802700,0.129200,-0.582200 -0.827700,0.089810,-0.128300,-0.907000,0.352200,-0.231000 -0.343500,0.628400,0.573500,-0.288800,-0.035410,0.956700 0.008424,0.662100,-0.390600,0.000000,1.000000,0.000000 -0.344700,0.330300,0.604100,-0.240200,0.243600,0.939700 -0.742500,0.151700,-0.306800,-0.822200,0.339100,-0.457100 0.205600,0.425400,0.528700,0.497800,0.114300,0.859700 -0.517900,0.193300,0.555300,-0.466500,0.336900,0.817900 0.077130,-0.477700,0.707500,0.277400,-0.286400,0.917100 0.429700,-0.490000,-0.159100,0.390200,-0.913900,-0.112200 -0.747300,-0.017040,0.417600,-0.835600,0.226900,0.500300 0.223900,0.690600,-0.345900,-0.555300,0.615900,0.558900 -0.774600,-0.140200,-0.411300,-0.869000,0.097060,-0.485200 -0.219300,0.219300,0.665600,-0.230800,0.258400,0.938100 0.226700,-0.167000,0.690800,0.506100,0.088640,0.857900 0.525100,0.122500,-0.277100,0.864700,0.342600,-0.367400 -0.150300,-0.435000,-0.744700,-0.013970,-0.235700,-0.971700 -0.879700,-0.097320,-0.127200,-0.956500,0.159300,-0.244500 -0.754900,-0.014740,-0.402200,-0.848500,0.231500,-0.475800 0.331300,0.715100,-0.270400,-0.178000,0.978800,0.101400 -0.479000,-0.206800,0.688500,-0.479200,0.041620,0.876700 0.122300,0.167900,-0.642200,0.257400,0.336100,-0.906000 0.142400,0.260300,0.605600,0.449200,0.267500,0.852500 -0.625600,-0.230000,-0.592100,-0.717100,-0.016010,-0.696800 -0.132500,0.316200,0.643600,0.016420,0.234600,0.972000 0.139200,-0.547400,-0.561600,-0.006632,-0.999900,0.008545 -0.062050,0.662500,0.102400,-0.016510,0.999900,0.000000 0.189500,0.662500,0.122500,0.000050,1.000000,0.000000 -0.390300,0.708100,0.439200,0.263700,0.867000,-0.422700 0.284200,-0.166900,-0.654200,0.486500,0.066350,-0.871100 0.269000,-0.540400,-0.058400,0.114700,-0.993200,-0.020570 0.246600,-0.466300,-0.636300,0.466700,-0.287400,-0.836400 -0.394800,0.714700,-0.452300,0.109900,0.976200,0.187000 0.480700,-0.528600,-0.068640,-0.999900,-0.005235,0.013960 -0.787000,0.190100,-0.138200,-0.917500,0.318900,-0.237700 -0.724000,-0.157200,0.492500,-0.680500,0.101000,0.725700 0.611300,-0.284500,0.236900,0.963700,-0.119300,0.238700 0.621500,-0.010370,-0.011510,0.971100,0.238500,-0.008726 0.416700,0.328100,0.343000,0.852500,0.238600,0.465100 -0.061780,-0.525900,0.112900,-0.127700,-0.966500,-0.222600 -0.102200,0.073590,-0.718800,-0.013420,0.348300,-0.937300 -0.833800,0.067920,0.146200,-0.901600,0.349300,0.255300 0.932000,0.236100,0.021220,0.977100,-0.067780,0.201700 0.271100,-0.468400,0.623900,0.500800,-0.295100,0.813700 0.361200,0.385400,-0.401200,0.683300,0.182400,-0.707000 0.872200,0.050870,0.025260,0.848000,-0.479000,0.226700 -0.619400,-0.467600,0.548700,-0.667200,-0.287900,0.686900 -0.430100,-0.244000,-0.714800,-0.351600,-0.029420,-0.935700 -0.293000,-0.544300,0.690800,-0.117200,-0.795000,0.595200 -0.485600,-0.520700,-0.620400,-0.479900,-0.349000,-0.804900 -0.637100,0.263900,0.415500,-0.682800,0.237600,0.690800 0.779700,0.442900,0.014560,-0.805700,-0.581200,0.114400 0.838100,0.532400,0.007671,0.685000,0.726400,0.055530 -0.641300,-0.076510,-0.557600,-0.707600,0.163200,-0.687500 -0.421500,0.476900,0.540000,-0.480700,0.100700,0.871100 -0.594500,-0.525500,0.062120,-0.254000,-0.967000,0.017680 -0.829500,0.110400,0.062090,-0.932400,0.361200,0.013700 0.028180,-0.530000,0.429900,0.056550,-0.977200,0.204500 -0.532800,0.638400,0.452200,-0.694200,-0.010410,0.719700 -0.662200,-0.544200,-0.281800,0.687200,-0.693100,0.217600 -0.585600,0.689700,0.176600,0.779800,0.584300,-0.225000 0.348600,0.358600,0.422600,0.710000,0.204800,0.673800 0.476900,-0.173800,0.490500,0.715200,0.016930,0.698800 0.643100,-0.137200,-0.068520,0.995200,0.095270,-0.024320 -0.072060,-0.216700,-0.772600,-0.014280,0.012960,-0.999800 -0.233100,0.662500,-0.169200,-0.000000,1.000000,0.000000 0.578600,-0.033910,0.284300,0.874800,0.250300,0.414800 -0.051980,0.662500,0.283500,0.000050,1.000000,0.000000 0.018480,0.662100,0.404200,0.000000,1.000000,0.000000 -0.607100,-0.097200,0.597000,-0.686800,0.195700,0.700100 0.335100,-0.488700,-0.358600,0.306200,-0.922900,-0.233300 0.833200,-0.297300,0.074660,0.061320,-0.023020,0.997900 0.511400,-0.547400,0.162800,0.000000,-1.000000,0.000000 -0.387500,-0.019260,-0.701800,-0.267000,0.224100,-0.937300 -0.705900,-0.547400,0.343800,0.000000,-1.000000,0.000000 -0.667200,0.143300,0.440100,-0.660400,0.363000,0.657400 0.332600,0.701800,0.214000,-0.559400,0.769700,-0.307700 0.166100,-0.505200,0.534000,-0.496000,-0.071490,-0.865400 0.467300,0.162900,-0.345300,0.808500,0.334100,-0.484400 0.594300,-0.356400,-0.257600,0.947800,-0.171300,-0.269100 -0.693400,0.396300,0.270100,-0.847300,0.163600,0.505300 -0.192700,-0.002984,-0.742100,-0.013870,0.262900,-0.964700 -0.644100,0.367800,-0.361900,-0.859500,0.181900,-0.477600 -0.332000,-0.386500,0.729700,-0.245300,-0.187800,0.951100 0.469400,0.309600,-0.258600,0.855500,0.214300,-0.471300 -0.247800,0.408000,-0.612200,-0.273400,0.162600,-0.948100 0.379500,-0.403300,0.564200,0.694100,-0.224300,0.684100 0.621200,-0.196800,-0.201700,0.962800,0.026930,-0.268900 0.269700,-0.526800,-0.249500,0.218600,-0.967100,-0.129800 -0.867200,-0.037080,0.140900,-0.937400,0.225300,0.265600 -0.468500,-0.012170,0.664600,-0.484200,0.213000,0.848700 0.518900,-0.353100,0.414300,0.862800,-0.135200,0.487200 -0.335700,-0.518600,0.573000,0.272500,0.000354,-0.962200 -0.714100,0.697100,-0.008376,-0.708000,0.706200,-0.000051 -0.101600,0.499000,-0.612100,-0.013550,0.088860,-0.996000 -0.832700,-0.397000,0.272200,-0.941200,-0.212100,0.263100 -0.791300,0.093120,0.262000,-0.900500,0.352200,0.255100 -0.182800,-0.376900,0.761200,0.011320,-0.156900,0.987500 -0.619700,0.081970,0.518900,-0.653200,0.368500,0.661400 0.211900,0.269600,-0.559100,0.471400,0.259800,-0.842800 -0.461500,0.658000,0.509400,-0.491800,0.135000,0.860200 -0.629700,0.506100,0.350500,-0.854400,0.084500,0.512600 0.530200,-0.547300,-0.269500,0.177300,-0.983700,-0.031280 -0.383900,0.662100,-0.209500,0.000050,1.000000,0.000000 -0.232700,-0.096540,-0.760200,-0.115200,0.155000,-0.981200 -0.723400,-0.542600,0.108800,0.914600,-0.169700,-0.367100 -0.153900,0.711700,0.571200,-0.007867,0.926000,0.377400 -0.132400,0.716100,-0.550900,-0.002623,0.987500,-0.157800 -0.548800,-0.517900,0.265100,-0.227800,-0.964500,0.133900 -0.112000,-0.506900,-0.061100,-0.061420,-0.949100,0.308900 0.308700,-0.164400,0.641100,0.501100,0.060610,0.863300 -0.444300,0.662500,0.062160,-0.016510,0.999900,0.000000 -0.509300,-0.296800,0.668400,-0.476900,-0.101200,0.873100 -0.463900,-0.543800,0.142400,-0.102000,-0.994000,0.038680 0.548500,0.576300,-0.031620,-0.405000,0.855300,-0.323000 0.577900,0.084610,0.143000,0.901400,0.373000,0.220000 0.419000,0.062160,-0.479100,0.657100,0.345800,-0.669800 -0.707800,0.285100,0.290900,-0.833300,0.240100,0.497900 0.140100,0.700700,-0.424800,-0.307600,0.781300,0.543100 -0.302900,0.022410,0.716200,-0.242500,0.296900,0.923600 -0.809800,-0.505900,0.241300,-0.903800,-0.342900,0.255900 0.022220,-0.011590,0.736400,0.267700,0.199300,0.942700 -0.442500,-0.540300,-0.238300,-0.093150,-0.993000,-0.072600 -0.781100,-0.406500,0.370900,-0.836200,-0.224800,0.500300 -0.039270,-0.488300,-0.575600,0.099910,-0.909200,-0.404100 0.009550,-0.351800,-0.752100,0.240700,-0.165300,-0.956400 -0.432000,0.558800,-0.524300,-0.515000,0.042900,-0.856100 0.195800,-0.047380,0.689600,0.497000,0.256400,0.829000 -0.302000,0.497000,0.589600,-0.246000,0.088170,0.965300 0.259900,-0.547400,0.504800,-0.000819,-1.000000,-0.001221 -0.545000,-0.060440,-0.629800,-0.505600,0.189700,-0.841700 -0.705100,0.302200,-0.281300,-0.849400,0.231300,-0.474400 0.551800,-0.246700,-0.373300,0.862100,-0.043960,-0.504900 -0.290600,-0.538700,0.092070,0.146800,-0.985400,-0.086860 -0.421900,0.173000,0.616600,-0.467800,0.316600,0.825200 0.029130,-0.541100,-0.139700,-0.080660,-0.993700,0.078320 -0.115700,-0.539000,-0.403800,-0.002101,-0.987700,-0.156200 0.600900,-0.052180,-0.210400,0.936300,0.228900,-0.266500 -0.516700,0.669800,-0.463100,-0.691800,0.261700,-0.673000 -0.541400,0.002576,0.619200,-0.467500,0.300400,0.831400 -0.866200,-0.176700,0.215400,-0.961100,0.044390,0.272700 0.388900,0.696000,0.294400,0.623200,0.700600,0.347600 -0.333700,0.662100,0.213100,-0.016540,0.999900,0.000000 0.078840,0.662500,0.072220,0.016450,0.999900,0.000000 0.517200,0.315500,0.081250,0.962200,0.203900,0.180800 -0.283300,-0.546400,0.283400,-0.018330,-0.999300,0.032810 -0.007359,0.697400,-0.482300,-0.180500,0.693800,0.697200 -0.122400,-0.547100,0.303500,0.000149,-1.000000,0.007788 -0.837000,-0.207700,0.316200,-0.883000,0.022680,0.468800 0.068850,0.215400,0.641800,0.263900,0.302100,0.916000 -0.518000,0.274800,0.527400,-0.559400,0.237600,0.794100 -0.700500,-0.490200,-0.065010,-0.396000,-0.917300,-0.042690 -0.183700,-0.505500,0.001895,0.322000,-0.946700,-0.003851 0.108700,-0.296600,-0.733800,0.247000,-0.097650,-0.964100 -0.021780,-0.337600,0.765600,0.033830,-0.136700,0.990000 -0.062040,0.662500,-0.038450,0.000000,1.000000,0.000000 0.138100,-0.521300,0.412500,0.134000,-0.965600,0.223000 -0.302900,-0.533100,0.403200,-0.088220,-0.982500,0.164200 -0.555300,0.534200,-0.431100,-0.715600,0.059200,-0.696000 -0.694100,-0.000753,-0.479500,-0.689200,0.269100,-0.672800 0.222700,0.618300,-0.501400,0.487100,-0.004696,-0.873300 0.581400,-0.530500,-0.131800,0.915800,-0.312900,-0.251800 0.163400,-0.441200,-0.691200,0.452100,-0.261700,-0.852700 0.098980,0.662500,0.374000,0.030300,0.999500,0.005556 0.433200,-0.230100,0.537400,0.708800,-0.016130,0.705200 -0.328000,-0.266100,0.746200,-0.237500,-0.054140,0.969900 0.511700,0.330700,-0.095770,0.962400,0.202600,-0.180800 0.853500,0.406900,0.073970,-0.050960,0.008108,0.998700 -0.032700,0.497200,0.612400,0.159700,0.068790,0.984800 -0.051990,-0.196800,0.772800,0.022580,0.032480,0.999200 0.363200,0.701700,0.123200,-0.630600,0.764100,-0.136100 -0.372800,0.294200,-0.600400,-0.298800,0.237300,-0.924300 0.520700,-0.547200,0.283000,0.135800,-0.987100,0.084300 -0.639700,-0.444000,-0.535700,-0.690900,-0.267500,-0.671600 0.161700,-0.528700,0.664900,0.363800,-0.372800,0.853600 0.274800,-0.529500,0.222100,0.193300,-0.975700,0.102900 0.535100,-0.048700,0.369700,0.850900,0.234800,0.470000 -0.806300,-0.547300,0.162700,-0.026790,-0.999600,0.006784 -0.582000,-0.347400,0.620900,-0.552200,-0.173400,0.815500 0.478700,-0.323200,0.482300,0.718500,-0.076880,0.691300 -0.212300,-0.107400,0.767800,-0.103900,0.148400,0.983400 -0.544100,-0.534200,-0.098620,-0.180900,-0.982400,-0.045720 0.290500,-0.487900,0.414700,0.077330,-0.994500,0.071170 0.347300,-0.288100,0.617500,0.518500,-0.121400,0.846400 0.698800,0.562900,0.072870,0.064940,0.252700,0.965400 0.639900,-0.337100,-0.088910,0.978400,-0.144600,-0.147800 -0.408900,0.480400,-0.544700,-0.510300,0.096630,-0.854600 -0.660700,0.152900,-0.436100,-0.674800,0.338400,-0.655800 -0.765000,0.239900,0.166700,-0.925400,0.272900,0.262900 -0.514800,0.662800,0.213100,0.000000,1.000000,-0.000001 -0.464400,-0.505000,-0.420600,-0.219800,-0.944500,-0.244300 -0.665700,0.469300,-0.292300,-0.869400,0.102000,-0.483500 -0.715500,-0.481300,-0.441500,-0.752800,-0.286600,-0.592600 0.259800,0.662300,0.253200,-0.152600,0.982700,-0.105300 0.390200,0.716300,-0.209400,0.122000,0.991700,-0.040250 0.314800,0.701500,0.388800,0.460500,0.770900,0.440100 -0.258400,-0.243400,-0.763700,-0.275500,-0.032460,-0.960800 0.049130,-0.542800,0.143100,-0.081610,-0.993800,-0.075030 0.077330,0.557600,-0.576100,0.243900,0.043650,-0.968800 0.580100,0.086490,-0.134400,0.919400,0.308200,-0.244500 0.448400,0.567800,0.221900,0.946800,0.038520,0.319600 -0.824400,-0.037070,0.291800,-0.926700,0.231700,0.295800 -0.757900,0.326000,0.111700,-0.943300,0.212600,0.255100 -0.819600,-0.163400,-0.335100,-0.871600,0.075420,-0.484400 -0.142500,-0.539600,-0.193200,0.006855,-0.990400,0.137800 -0.552000,0.496600,0.441200,-0.688700,0.090280,0.719400 0.417300,0.567700,-0.279200,0.861400,0.045530,-0.505900 -0.162600,0.662100,0.182900,0.000001,1.000000,0.000000 -0.713200,0.436800,-0.198900,-0.963000,0.127400,-0.237300 0.791900,-0.372800,-0.060770,0.294600,-0.536900,-0.790600 0.713100,-0.393900,0.058960,-0.056750,-0.734800,0.675900 0.469400,0.631700,0.134800,0.970300,-0.017130,0.241300 0.863500,0.386900,-0.070650,0.011420,0.015140,-0.999800 -0.010510,-0.524100,0.042350,-0.240000,-0.967200,-0.083050 -0.577600,0.693300,-0.383100,-0.580600,0.585800,-0.565500 0.117800,-0.026800,-0.711300,0.238700,0.225300,-0.944600 -0.554300,0.412900,-0.450400,-0.709100,0.149800,-0.689000 0.400900,-0.102200,-0.554100,0.688500,0.163200,-0.706600 0.366600,0.701800,-0.109600,-0.592300,0.787600,0.169900 0.261500,0.007570,0.634900,0.490800,0.283300,0.823900 -0.830200,-0.536300,-0.117300,-0.902100,-0.365900,-0.228800 0.604500,-0.495700,0.032070,0.941100,-0.337700,-0.013400 0.253400,0.396100,-0.504300,0.599400,0.165300,-0.783200 -0.498600,0.537500,0.488500,-0.710200,0.054760,0.701800 0.885500,-0.302200,-0.007924,0.939100,-0.332400,-0.087050 -0.132500,-0.531700,0.154000,0.005696,-0.981800,-0.190000 -0.732700,0.127700,0.345300,-0.808400,0.355600,0.469000 -0.637800,-0.497200,0.234000,-0.331400,-0.923400,0.193700 -0.776800,-0.316700,0.407200,-0.855100,-0.099040,0.508900 0.754300,-0.135400,0.010510,-0.945800,-0.316400,0.072780 0.213600,0.023000,-0.654000,0.467000,0.287900,-0.836000 -0.112300,-0.547400,0.635600,0.000000,-1.000000,0.000000 0.179400,0.662500,-0.068640,-0.000001,1.000000,-0.008308 -0.273300,0.662500,0.082280,-0.016510,0.999900,0.000000 0.078840,0.662500,-0.018330,0.016450,0.999900,0.000000 -0.072100,0.662500,-0.189400,0.000033,1.000000,-0.000017 -0.262700,-0.493700,-0.549600,-0.104600,-0.917900,-0.382700 -0.012280,0.547600,-0.599300,0.242300,0.054800,-0.968600 -0.092230,0.662500,-0.350300,-0.016580,0.999900,-0.000000 -0.285500,0.493700,-0.590600,-0.271600,0.093140,-0.957900 0.483100,0.648100,-0.068530,0.999700,0.025670,-0.001553 -0.721400,0.648300,-0.117700,-0.969500,0.040990,-0.241800 0.207500,-0.506700,-0.419800,0.226500,-0.943100,-0.243300 -0.142600,-0.017160,0.749800,0.010650,0.251700,0.967800 -0.733800,-0.286600,0.483900,-0.782700,-0.083740,0.616800 0.423300,-0.439700,0.507300,0.698000,-0.228900,0.678500 0.302700,0.554200,0.437100,0.716500,0.042070,0.696300 -0.353700,0.662100,-0.018330,0.016490,0.999900,-0.000001 0.078840,0.662500,0.182900,0.016530,0.999900,0.000000 -0.732100,0.608200,0.031900,-0.999900,0.005014,0.014320 -0.320900,0.244500,0.632300,-0.238500,0.264300,0.934500 -0.851100,-0.236700,-0.277900,-0.964000,-0.025880,-0.264500 0.037500,0.184300,-0.657800,0.234000,0.318200,-0.918700 0.357200,0.673400,-0.028450,-0.761700,0.647900,-0.002989 -0.008110,-0.429300,0.745900,0.241900,-0.237100,0.940900 -0.678200,-0.012140,0.504700,-0.675200,0.242100,0.696700 -0.011790,-0.545200,0.333500,0.018640,-0.997500,0.067720 0.026610,-0.157200,-0.755400,0.244900,0.086420,-0.965700 -0.635800,-0.531100,0.502400,-0.653000,-0.350300,0.671500 0.333300,0.453300,0.417300,0.716000,0.116400,0.688400 -0.635400,-0.547400,-0.370400,0.007185,-1.000000,0.001125 -0.007945,0.360800,0.625700,0.281000,0.157200,0.946700 0.645700,-0.216800,-0.117500,0.975000,0.041430,-0.218200 -0.001962,-0.486400,0.584700,-0.075200,-0.963200,-0.258000 0.376800,-0.508500,0.347200,-0.874300,0.016580,-0.485100 0.088910,-0.547400,-0.652100,0.000000,-1.000000,0.000000 -0.847400,0.067380,-0.053560,-0.936400,0.350700,0.013400 0.231400,0.289700,0.544500,0.495200,0.226600,0.838700 -0.350500,-0.484900,-0.695100,-0.260300,-0.292200,-0.920200 0.589100,-0.395600,0.262100,0.952200,-0.222800,0.208800 0.396300,0.163400,0.450100,0.686600,0.340400,0.642400 0.521500,-0.547400,0.021910,0.000000,-1.000000,0.000000 -0.488000,0.700200,0.346100,0.446400,0.766100,-0.462500 0.357700,0.085210,0.532400,0.674400,0.306200,0.671900 -0.707900,-0.153700,-0.503400,-0.714000,0.094120,-0.693800 -0.884600,-0.076360,0.021880,-0.987100,0.159600,0.014370 0.475000,0.012420,-0.437100,0.828200,0.284600,-0.482900 -0.240900,-0.540200,-0.378200,-0.034560,-0.992400,-0.117700 0.577300,0.123600,0.062210,0.917200,0.397400,-0.030470 0.552100,0.189100,-0.061840,0.950100,0.311400,-0.016270 -0.363900,0.552600,0.565700,-0.501900,0.047830,0.863600 0.317300,-0.436600,-0.606600,0.486100,-0.246400,-0.838400 0.339100,0.537300,-0.399200,0.707800,0.021740,-0.706000 -0.212900,-0.547400,0.675800,0.000000,-1.000000,0.000000 0.519200,-0.446300,-0.370400,0.827200,-0.277300,-0.488700 0.297000,0.273700,-0.497800,0.657700,0.238100,-0.714600 -0.352200,-0.492900,0.696200,-0.227400,-0.273300,0.934700 -0.223000,-0.547100,-0.279900,0.000535,-1.000000,0.001329 0.549500,0.117400,-0.199900,0.890200,0.356700,-0.283400 -0.192900,-0.296900,0.772600,0.003169,-0.107200,0.994200 -0.263200,0.662100,-0.360400,0.000000,1.000000,0.000000 -0.735200,0.347900,-0.172900,-0.948800,0.200100,-0.244600 -0.052160,-0.058060,0.757700,0.015740,0.206400,0.978400 -0.575700,0.100400,-0.552300,-0.662700,0.354900,-0.659400 -0.754500,-0.390700,-0.421700,-0.854900,-0.202500,-0.477600 0.825200,-0.195900,0.072790,-0.221500,-0.095690,0.970500 -0.202800,0.073170,-0.717500,-0.013140,0.349600,-0.936800 -0.365200,-0.081810,0.725900,-0.247000,0.139300,0.958900 0.607100,-0.206900,0.262000,0.969100,0.044810,0.242700 -0.216000,-0.538900,0.168900,0.078590,-0.986900,-0.140800 0.517700,0.094440,0.312300,0.827500,0.318200,0.462600 -0.182800,0.587900,0.610900,-0.007122,0.013100,0.999900 -0.886200,-0.331000,-0.111900,-0.961800,-0.124700,-0.243900 -0.212000,0.342300,-0.633100,-0.074740,0.194000,-0.978200 0.471600,0.078100,0.406600,0.818900,0.334300,0.466600 -0.795600,0.207900,-0.008335,-0.954300,0.298600,0.013590 0.367100,0.182000,-0.467400,0.658500,0.340900,-0.670900 0.009458,0.703600,0.488700,-0.160700,0.786100,-0.596800 -0.162600,-0.525200,-0.470300,-0.002630,-0.966000,-0.258600 -0.102300,-0.525300,0.473800,0.003694,-0.966100,0.258200 0.432500,-0.001234,0.496400,0.693400,0.230600,0.682700 -0.423800,-0.535500,0.303100,-0.129700,-0.982600,0.133300 0.471500,0.690200,0.001300,0.802400,0.596800,-0.008483 0.348900,-0.366500,-0.600100,0.687700,-0.160900,-0.707900 -0.231400,0.215000,-0.663300,-0.225100,0.295900,-0.928300 0.226400,-0.356500,0.680200,0.498800,-0.156200,0.852600 0.460100,-0.489900,0.129800,-0.482000,-0.867200,-0.125200 0.139100,0.695600,0.532500,0.371700,0.674700,0.637700 -0.738000,-0.457100,0.418100,-0.824200,-0.284800,0.489500 -0.537600,-0.213500,-0.652200,-0.511200,0.021170,-0.859200 -0.701700,-0.309000,-0.507300,-0.712900,-0.099330,-0.694100 0.460300,0.289600,0.285200,0.843400,0.235900,0.482700 0.092220,0.380100,0.594200,0.265700,0.164700,0.949900 0.540000,-0.062330,-0.364000,0.845900,0.165100,-0.507200 -0.122300,0.672000,0.481500,-0.009203,0.692500,-0.721400 0.360400,-0.082020,0.595400,0.719600,0.150000,0.678000 0.027150,0.274200,-0.632800,0.236800,0.256800,-0.937000 -0.776300,-0.547400,0.042030,0.000000,-1.000000,0.000000 -0.623800,0.709700,0.281700,-0.375000,0.902600,0.211400 -0.122400,0.662100,0.343800,-0.000050,1.000000,-0.000000 -0.192800,0.662500,-0.239700,-0.000050,1.000000,0.000000 0.018450,0.662300,-0.189400,-0.016570,0.999800,-0.008255 0.821700,0.089530,0.072200,-0.302500,0.152500,0.940900 -0.656100,0.293000,-0.373600,-0.848000,0.235200,-0.475000 0.118500,-0.541600,-0.299500,0.075400,-0.993700,-0.083050 -0.872700,-0.367000,0.151500,-0.951000,-0.159500,0.265000 -0.303400,0.662100,-0.139100,0.016490,0.999900,0.000000 0.297800,-0.546500,0.571200,0.185800,-0.951600,0.244700 0.148700,-0.541700,0.272800,0.082090,-0.993400,0.079800 -0.353700,-0.545800,0.253200,-0.029100,-0.999100,0.029910 -0.152500,-0.276900,-0.769800,-0.014290,-0.062370,-0.998000 -0.022160,0.648300,-0.600000,0.241400,0.042980,-0.969500 -0.861600,-0.096910,0.201600,-0.950300,0.156100,0.269400 -0.622400,0.340100,0.404400,-0.685700,0.190200,0.702600 -0.021510,-0.544200,-0.210000,-0.049420,-0.994400,0.093280 -0.859400,-0.097350,-0.207600,-0.956400,0.158700,-0.245300 -0.182600,0.678200,-0.600100,-0.012550,0.423300,-0.905900 0.610400,-0.429000,0.146100,0.951900,-0.191400,0.239200 0.209600,-0.547400,-0.521400,-0.001526,-1.000000,0.003003 -0.333100,-0.156700,0.743400,-0.234900,0.086610,0.968200 -0.299600,0.708000,-0.479900,0.126600,0.858400,0.497100 0.459400,0.436600,-0.211600,0.960500,0.101000,-0.259400 -0.233200,-0.496900,0.552500,-0.095220,-0.924500,0.369200 0.459600,-0.083700,0.493300,0.709200,0.185700,0.680100 -0.018010,0.249800,0.656000,0.264200,0.260300,0.928700 -0.031810,0.694500,0.590800,0.155600,0.671600,0.724400 0.057320,0.052770,-0.703100,0.230600,0.326500,-0.916600 -0.804200,-0.470800,-0.290900,-0.836000,-0.288100,-0.467000 0.310200,-0.547400,-0.491200,0.000000,-1.000000,0.000000 -0.523400,-0.502800,-0.369100,-0.237800,-0.943200,-0.232000 0.156800,-0.107100,-0.716700,0.307700,0.141200,-0.940900 0.422700,0.423000,0.297500,0.867700,0.122000,0.481900 -0.687100,-0.411800,0.503400,-0.679000,-0.225300,0.698700 0.136600,0.691300,-0.533600,0.387900,0.609800,-0.691100 -0.707300,0.517200,0.188200,-0.959100,0.071030,0.274000 -0.172600,0.409900,-0.621700,-0.014150,0.156400,-0.987600 0.839300,0.484100,0.067170,0.458000,0.344600,0.819400 0.558200,-0.007805,-0.309500,0.830500,0.244500,-0.500500 0.451400,0.233500,-0.327200,0.822700,0.275700,-0.497200 -0.033050,0.345600,-0.631000,0.237000,0.198200,-0.951100 0.220500,0.631700,0.504000,0.517600,0.013260,0.855500 0.187400,0.537500,-0.523800,0.486600,0.060660,-0.871500 0.199800,0.126700,0.622700,0.480000,0.341800,0.807900 0.404800,0.385700,-0.336800,0.838500,0.165700,-0.519100 -0.622800,-0.286500,0.592500,-0.694500,-0.083910,0.714600 -0.885200,-0.216400,0.153200,-0.962400,0.013640,0.271300 -0.744500,-0.210300,-0.469500,-0.743300,0.026880,-0.668400 -0.740800,0.213900,-0.267000,-0.833500,0.297700,-0.465400 0.295900,0.234700,0.520900,0.670600,0.290200,0.682700 -0.186200,0.059530,0.727100,0.013370,0.365200,0.930800 0.862000,-0.135100,0.024540,0.863000,0.446000,0.237100 -0.685400,-0.321700,0.526900,-0.693300,-0.103800,0.713200 -0.373500,-0.534700,-0.349700,-0.094880,-0.982600,-0.159500 0.763500,0.056780,-0.007830,-0.914400,0.392400,-0.099660 -0.032140,-0.532500,-0.429700,0.045810,-0.982400,-0.181300 -0.695100,0.705600,0.111300,-0.557300,0.816700,0.149600 0.355300,0.233800,0.459400,0.699500,0.285000,0.655400 -0.788400,-0.032080,0.355600,-0.836600,0.225100,0.499400 0.379000,0.688400,-0.319400,0.692500,0.568700,-0.443900 0.281300,0.382200,0.486100,0.703600,0.204000,0.680700 -0.869100,-0.226700,-0.207500,-0.969400,-0.006476,-0.245300 0.503900,-0.136700,-0.445300,0.862600,0.062480,-0.502000 -0.694800,-0.544800,-0.215500,0.623200,-0.719300,0.307000 -0.363800,0.662100,0.283500,0.000000,1.000000,0.000000 -0.223000,0.662100,0.283500,0.000000,1.000000,0.000000 -0.182700,-0.547400,-0.632000,0.000000,-1.000000,0.000000 -0.758800,0.354700,-0.048760,-0.979600,0.200600,0.014040 0.327600,0.648100,-0.407800,0.696400,0.048840,-0.716000 0.633700,-0.067450,-0.088640,0.989600,0.143500,0.007203 -0.711500,0.588000,-0.158000,-0.969900,0.024060,-0.242200 0.087570,-0.296800,0.741600,0.261900,-0.104700,0.959400 -0.301300,-0.117100,-0.745200,-0.271600,0.123900,-0.954400 -0.052040,0.567700,0.609400,0.009301,0.045580,0.998900 -0.867100,-0.311900,0.199300,-0.957600,-0.093270,0.272600 -0.464400,-0.547400,0.555100,0.000000,-1.000000,0.000000 -0.162500,0.547600,-0.607900,-0.014310,0.054850,-0.998400 -0.669000,-0.176900,0.548200,-0.695800,0.061260,0.715600 -0.082160,-0.486400,0.586200,0.005338,-0.983100,0.183000 0.457100,0.577900,-0.178300,0.964400,0.024410,-0.263300 -0.458400,-0.356700,0.687500,-0.482900,-0.160400,0.860800 0.165600,0.426000,-0.548700,0.481600,0.137100,-0.865600 0.109000,0.662500,0.283500,0.013750,0.999900,0.005528 -0.527500,-0.372600,-0.642700,-0.504600,-0.161300,-0.848200 -0.394000,0.662500,0.122500,-0.008293,1.000000,0.000050 -0.384000,0.666100,-0.391800,0.205200,0.929700,0.305900 0.159300,0.662500,-0.189400,-0.016570,0.999900,0.000007 -0.308900,-0.543300,-0.684400,-0.194000,-0.671500,-0.715200 0.028520,0.662100,-0.320100,-0.016540,0.999900,0.000000 -0.192800,-0.206700,0.775200,0.011520,0.033590,0.999400 -0.112300,0.662100,-0.249700,-0.016540,0.999900,0.000000 0.021660,0.057490,0.714700,0.254100,0.378100,0.890200 -0.841300,-0.097040,-0.277700,-0.939000,0.151300,-0.308900 0.156400,-0.108100,0.718000,0.269500,0.108400,0.956900 0.773000,-0.055730,0.069450,-0.475400,-0.011910,0.879700 -0.135900,0.671900,-0.478300,0.001886,0.698300,0.715800 -0.263000,0.711000,0.499700,0.092680,0.918500,-0.384400 -0.565900,-0.471300,0.597300,-0.520700,-0.312100,0.794700 0.891600,0.115400,0.051840,0.748400,-0.341200,0.568700 -0.446200,0.368000,-0.541100,-0.502000,0.182200,-0.845500 0.381300,0.314400,-0.401900,0.723300,0.210900,-0.657600 -0.182800,0.366600,0.633700,-0.003972,0.196800,0.980400 -0.735700,0.527700,-0.018340,-0.998100,0.059700,0.014280 -0.132400,-0.540900,0.393200,0.001788,-0.993200,0.116600 0.209300,-0.545200,-0.108800,0.069260,-0.997400,-0.019610 -0.709600,0.436300,0.211200,-0.954000,0.129700,0.270300 -0.273100,-0.539900,-0.128800,0.091810,-0.991800,0.089070 0.425000,-0.489000,0.192300,0.377100,-0.923900,0.064310 0.129200,-0.546300,0.102400,-0.034700,-0.999300,-0.013740 -0.513600,0.365600,0.503500,-0.687900,0.197300,0.698500 0.543200,0.221400,0.078700,0.951800,0.289700,0.101200 0.239700,0.716300,-0.410600,0.057610,0.996100,-0.066990 -0.317200,-0.311800,-0.742500,-0.272400,-0.097450,-0.957200 0.581900,-0.486400,-0.187700,0.922600,-0.292300,-0.251800 -0.347000,0.130400,-0.661000,-0.252900,0.364000,-0.896400 -0.072090,0.662100,0.192900,-0.016540,0.999900,0.000000 0.340400,-0.547400,0.484700,0.000000,-1.000000,0.000000 -0.575100,0.662600,0.062130,0.002804,0.999900,-0.010920 -0.424200,-0.547400,-0.561600,0.000000,-1.000000,0.000000 -0.112200,0.237900,-0.660600,-0.013800,0.274400,-0.961500 -0.414100,-0.546700,-0.129000,-0.028590,-0.999500,-0.016210 -0.398300,0.662700,0.544200,-0.464000,0.153800,0.872400 -0.677700,-0.547300,0.264500,0.329700,-0.923000,-0.198200 0.423500,-0.451100,-0.501300,0.668900,-0.279600,-0.688800 -0.098810,-0.533300,-0.713500,-0.013420,-0.361600,-0.932300 -0.887800,-0.353500,-0.025140,-0.985900,-0.166500,0.014140 0.889200,0.212700,0.072910,0.260200,-0.039490,0.964700 -0.853200,-0.497200,-0.058640,-0.944700,-0.327700,0.013410 -0.815100,-0.101800,0.336400,-0.848600,0.154900,0.505800 -0.321800,0.346600,-0.602800,-0.270500,0.200500,-0.941600 -0.563500,-0.485700,0.391300,0.054820,-0.997600,-0.042820 0.577900,-0.316600,-0.319200,0.856000,-0.085650,-0.509800 0.621900,0.535800,0.070960,0.073460,-0.384400,0.920200 0.212800,-0.141700,-0.691500,0.484600,0.097550,-0.869300 -0.784300,-0.320100,-0.390900,-0.868900,-0.100600,-0.484600 -0.849500,-0.504700,0.014310,-0.939800,-0.341600,0.011380 0.524000,0.203300,0.180900,0.918100,0.307600,0.249800 0.047020,-0.539700,0.693300,0.238900,-0.475900,0.846500 -0.656300,0.420900,0.324600,-0.850000,0.143400,0.506800 -0.431500,0.031940,-0.670000,-0.490000,0.291900,-0.821400 0.347800,0.041970,-0.558800,0.653300,0.281000,-0.703000 -0.244100,-0.525000,0.032190,0.246000,-0.967200,-0.063140 -0.568900,-0.176900,0.637200,-0.496300,0.052760,0.866500 -0.491300,-0.098330,-0.669100,-0.506400,0.156400,-0.848000 0.648500,-0.266900,0.052180,0.998900,0.047570,-0.002204 -0.518500,-0.539000,0.098580,-0.149600,-0.987900,0.041750 0.101900,0.376800,-0.590600,0.272000,0.178400,-0.945600 -0.102300,-0.546800,-0.613400,-0.009164,-0.975000,0.222200 0.601000,-0.131800,-0.255700,0.956800,0.077290,-0.280400 -0.892300,-0.136800,0.062070,-0.995200,0.097250,0.014250 -0.472300,-0.407900,-0.667300,-0.499700,-0.226200,-0.836100 0.341100,-0.022020,-0.589800,0.689200,0.199500,-0.696500 0.470900,0.476500,-0.154100,0.955700,0.117100,-0.270100 0.409000,-0.534900,0.289500,-0.874100,-0.031930,-0.484700 0.346100,-0.520300,-0.139400,0.254000,-0.964500,-0.072410 -0.485600,-0.270300,-0.681800,-0.511500,-0.046330,-0.858000 -0.272700,0.577900,-0.589000,-0.269600,0.026080,-0.962600 0.053050,0.451900,-0.591300,0.244100,0.126000,-0.961500 -0.802200,-0.166900,0.371400,-0.857000,0.067060,0.511000 -0.182800,-0.466300,0.739800,0.013580,-0.325200,0.945600 0.602500,0.059320,0.068950,0.941600,0.336600,-0.007036 0.832500,0.269500,-0.004923,-0.996800,-0.008751,-0.079590 0.301100,0.147400,0.553300,0.499600,0.328800,0.801400 0.230200,0.715900,0.404600,-0.094990,0.991200,-0.092500 -0.897600,-0.205600,-0.007153,-0.999500,0.029250,0.014290 -0.583400,-0.522000,-0.158800,-0.254200,-0.965100,-0.063010 0.606000,0.042680,-0.058510,0.963400,0.267500,-0.016620 -0.009619,-0.508400,-0.514800,0.081880,-0.942700,-0.323400 0.411100,-0.506200,-0.007406,0.332200,-0.943200,-0.004730 0.422800,0.496900,-0.277900,0.854600,0.073170,-0.514100 -0.854400,-0.466800,0.130000,-0.922200,-0.286200,0.260100 -0.421500,-0.226700,0.721100,-0.498400,-0.012070,0.866900 -0.084470,-0.409800,-0.751500,-0.012620,-0.225200,-0.974200 -0.885100,-0.267700,-0.139300,-0.968700,-0.043350,-0.244400 -0.483000,0.147500,0.593200,-0.434400,0.344900,0.832100 0.272900,0.674700,-0.273900,-0.679800,0.623900,0.385500 0.074730,-0.199200,0.748100,0.281100,0.025700,0.959300 -0.715100,0.130300,-0.372300,-0.813400,0.363000,-0.454600 0.440900,-0.498600,-0.226300,-0.909700,-0.218400,0.353200 -0.618700,-0.206900,0.598500,-0.695600,0.061600,0.715800 -0.344300,-0.543700,-0.068790,0.100700,-0.994500,0.027040 -0.555000,-0.547400,-0.511300,0.000000,-1.000000,0.000000 0.571800,-0.111100,0.326300,0.868300,0.092890,0.487300 0.499800,0.157800,0.294900,0.829300,0.330900,0.450300 -0.144000,-0.507100,0.062910,0.104200,-0.949100,-0.297200 -0.889000,-0.336100,0.082080,-0.990500,-0.136800,0.014340 0.416800,0.233700,-0.385500,0.816700,0.305600,-0.489500 0.067030,0.608200,0.579500,0.266800,-0.005261,0.963700 0.024880,-0.521700,-0.702300,0.229400,-0.350700,-0.907900 0.228600,-0.547200,-0.609800,0.173700,-0.931400,-0.320000 0.584700,-0.485900,0.181000,0.915400,-0.322300,0.241200 -0.023430,0.062460,-0.719900,0.220600,0.350500,-0.910200 -0.658500,0.537500,0.298100,-0.856900,0.060460,0.512000 0.259900,0.662100,0.072220,-0.013820,0.999900,0.002760 0.219700,0.662100,0.001793,-0.016610,0.999900,0.000000 0.121200,-0.353600,0.724700,0.276600,-0.134800,0.951500 0.328700,-0.522200,0.182200,0.241500,-0.965600,0.096410 0.048670,0.662100,0.243200,0.000050,1.000000,0.000000 -0.721100,0.557700,0.131000,-0.961600,0.042830,0.271100 -0.062730,0.131700,0.698000,0.004054,0.341600,0.939800 -0.152500,0.662100,-0.380500,0.000000,1.000000,0.000000 0.459900,0.218600,0.325200,0.827100,0.304000,0.472700 0.878900,0.156000,-0.069730,0.270900,-0.080390,-0.959300 0.046840,-0.485600,-0.559300,-0.011740,-0.998000,0.062190 -0.256800,0.665500,-0.591400,-0.267600,0.183100,-0.946000 -0.112200,0.648200,-0.606900,-0.014250,0.040900,-0.999100 0.485300,-0.486100,0.410900,0.831300,-0.313100,0.459300 0.541300,-0.213500,0.395400,0.870400,0.029350,0.491400 0.249700,-0.316700,-0.669400,0.485600,-0.099600,-0.868500 -0.072080,-0.546000,-0.330100,0.008282,-0.999300,-0.037260 0.635200,-0.390200,-0.048050,0.750100,-0.654300,-0.096030 0.619700,-0.448100,0.082450,0.952500,-0.299600,0.055410 -0.425900,-0.531200,-0.651500,-0.479100,-0.353400,-0.803500 0.478600,-0.406200,-0.457200,0.848500,-0.250000,-0.466300 -0.596500,-0.039140,-0.592700,-0.638900,0.215200,-0.738500 0.483800,0.567700,0.080750,0.979900,0.032210,0.196700 -0.653900,-0.503400,-0.118600,-0.323300,-0.942900,-0.080660 0.142900,0.422900,0.566800,0.504400,0.144300,0.851300 0.787700,0.571700,-0.011800,0.537000,0.834900,-0.120500 0.764600,-0.330200,0.067800,-0.232700,0.507200,0.829800 0.876200,0.076480,-0.046110,0.754800,-0.402200,-0.518100 0.484500,0.304700,0.221300,0.944700,0.245100,0.217900 -0.727500,0.057330,0.405600,-0.800700,0.370100,0.471100 -0.399900,-0.403900,-0.703700,-0.266100,-0.225500,-0.937200 0.578200,0.115900,-0.055170,0.925500,0.378700,-0.010090 -0.613800,0.707900,-0.145000,0.501300,0.857300,0.117000 -0.292400,0.416500,0.601300,-0.230900,0.139100,0.963000 -0.600900,0.396000,-0.406400,-0.707500,0.164800,-0.687300 -0.267900,-0.392800,-0.743700,-0.265100,-0.210200,-0.941000 -0.461800,-0.466700,0.657100,-0.458900,-0.274100,0.845200 0.411400,0.716200,0.042020,-0.146600,0.989200,0.001795 -0.727800,0.673800,0.052020,-0.948600,0.316100,0.013260 0.841000,-0.365800,-0.016970,0.705300,-0.686200,-0.177900 0.454600,0.426100,0.239700,0.876000,0.140000,0.461600 -0.643900,-0.160500,-0.570200,-0.714600,0.083840,-0.694500 0.388300,0.537300,-0.330200,0.862000,0.040880,-0.505300 -0.517800,0.216900,-0.541900,-0.489300,0.298300,-0.819500 0.471200,-0.317000,-0.491000,0.693500,-0.099410,-0.713600 -0.243100,-0.547400,-0.682300,-0.000610,-1.000000,-0.001136 0.036390,-0.541200,0.586300,-0.293900,-0.292600,-0.910000 0.908500,0.246100,-0.062270,0.590800,-0.024360,-0.806500 0.612500,-0.356600,-0.194400,0.946700,-0.164700,-0.276700 -0.497600,-0.528400,-0.273500,-0.194300,-0.971600,-0.135200 0.018440,-0.427100,-0.734400,0.240700,-0.230400,-0.942900 0.531100,0.453800,0.052030,0.672800,-0.513900,0.532200 -0.696400,0.490100,-0.233300,-0.893400,0.094570,-0.439200 0.805800,0.416200,-0.039400,-0.803900,-0.413800,-0.427100 0.690900,-0.319600,-0.047840,0.302700,0.753000,-0.584200 -0.132500,0.456500,0.619300,0.022490,0.137300,0.990300 0.801300,-0.200200,-0.050890,-0.728300,-0.326900,-0.602300 0.231500,0.087600,-0.618600,0.455200,0.360400,-0.814200 -0.462500,0.705500,-0.471000,-0.280200,0.847000,-0.451700 -0.771200,0.163600,-0.238400,-0.915000,0.328900,-0.233700 0.634000,-0.069100,0.098650,0.963600,0.142300,0.226300 -0.625000,-0.495000,-0.260300,-0.340900,-0.920600,-0.190600 0.215700,-0.497100,0.646400,0.497000,-0.319700,0.806700 -0.567500,0.254400,0.486900,-0.667200,0.289300,0.686400 -0.432000,-0.066720,-0.698200,-0.453900,0.181400,-0.872400 0.486600,0.487000,0.091210,0.898600,0.119200,0.422400 0.233400,0.352200,0.526400,0.509100,0.211000,0.834400 0.459700,0.087210,-0.414400,0.809400,0.334100,-0.482900 0.329900,-0.483100,0.583400,0.527700,-0.293100,0.797200 -0.394000,-0.547400,0.575200,0.000000,-1.000000,0.000000 0.397200,-0.345900,-0.557800,0.688500,-0.155000,-0.708400 -0.484400,0.662400,0.293500,0.099720,0.986900,-0.126700 -0.670800,0.628400,-0.267200,-0.873300,-0.008856,-0.487200 -0.565400,0.716100,-0.310300,0.088950,0.995200,0.040710 -0.426400,-0.496400,-0.472300,-0.195600,-0.925000,-0.325900 -0.323100,-0.502400,-0.509200,-0.089620,-0.943300,-0.319700 0.108000,-0.513100,-0.459300,0.156600,-0.946900,-0.280900 0.422700,-0.544800,-0.269500,-0.565500,-0.749500,0.344300 0.460900,0.502100,0.186700,0.966900,0.062400,0.247400 -0.344600,0.107800,0.674400,-0.226100,0.364200,0.903400 0.561400,-0.434300,0.305700,0.861600,-0.191900,0.469800 0.602300,-0.071530,0.227100,0.959800,0.129600,0.249000 0.534600,0.223500,-0.116900,0.921500,0.283800,-0.265000 0.556400,-0.536700,0.221800,0.903800,-0.369900,0.215300 -0.557500,0.143000,0.547200,-0.644600,0.365700,0.671400 0.169300,0.662800,-0.300000,-0.016510,0.999900,0.000000 -0.424200,0.662500,-0.159200,0.016470,0.999900,0.000017 0.843800,-0.112600,-0.043500,0.837600,0.293200,-0.461000 -0.256200,-0.159800,-0.762400,-0.272100,0.084560,-0.958500 0.774800,-0.026220,-0.065610,-0.515700,0.052100,-0.855200 -0.202900,0.662500,0.031970,-0.016510,0.999900,0.000000 -0.001670,-0.547100,-0.279900,0.009547,-0.999700,-0.020680 -0.807900,0.027850,0.286800,-0.911700,0.291000,0.290000 0.568100,0.144100,0.001851,0.942500,0.334200,-0.008410 0.587300,0.033300,-0.178000,0.922100,0.284500,-0.262300 -0.756200,-0.547400,0.303600,-0.009186,-0.999900,0.004963 -0.372800,0.062170,-0.680600,-0.255300,0.345600,-0.903000 0.084130,-0.236700,-0.743300,0.247900,-0.026050,-0.968400 0.324500,-0.030080,0.607800,0.500900,0.240100,0.831500 -0.794500,0.127200,0.202200,-0.896300,0.363700,0.253800 0.285300,0.111300,-0.576900,0.449700,0.373500,-0.811300 -0.243100,-0.545900,0.233300,0.018810,-0.999200,-0.033880 0.732100,-0.412300,-0.017040,0.079570,-0.982000,-0.171300 -0.830800,0.032870,-0.198000,-0.928200,0.289800,-0.233600 -0.622200,0.701100,-0.072930,0.632400,0.758900,0.155400 0.079550,-0.541900,-0.068850,-0.107300,-0.993700,0.033770 0.281600,0.648100,-0.452400,0.686900,0.057720,-0.724400 -0.373800,-0.547000,0.182800,-0.023440,-0.999600,0.015080 0.189400,-0.546500,0.072180,0.036110,-0.999300,0.008843 -0.674600,0.064250,-0.470100,-0.671900,0.348800,-0.653300 -0.810200,-0.267000,0.359200,-0.857800,-0.041750,0.512300 -0.483800,-0.534100,0.242800,-0.160600,-0.982400,0.095790 0.531300,0.507900,-0.071210,0.032770,-0.041340,-0.998600 -0.312200,-0.446600,0.720500,-0.246500,-0.269700,0.930900 0.196400,0.213800,-0.586200,0.465400,0.298200,-0.833400 -0.624800,-0.510600,-0.520900,-0.672000,-0.349300,-0.653000 0.255900,-0.037620,-0.648600,0.474800,0.225300,-0.850800 0.078910,-0.546300,-0.179400,-0.026860,-0.999300,0.026170 0.518000,0.203900,-0.196600,0.926500,0.280600,-0.250600 0.077980,0.154200,0.660600,0.249500,0.326400,0.911700 0.233200,-0.509700,0.387600,0.236600,-0.944000,0.229900 -0.343800,0.662500,-0.279900,-0.016560,0.999900,0.000000 -0.615400,0.598800,0.365800,-0.858200,0.014680,0.513000 -0.867900,-0.362800,-0.164000,-0.956400,-0.162400,-0.242800 -0.645500,-0.547400,0.364000,0.000000,-1.000000,0.000000 -0.847400,-0.336600,0.258400,-0.953700,-0.137400,0.267700 -0.536400,-0.538100,0.446000,0.706000,-0.078130,-0.703900 -0.401900,0.335100,0.576600,-0.469000,0.224300,0.854300 0.169700,0.668900,-0.378300,-0.427600,0.695500,0.577400 0.504500,0.385600,0.042140,0.989200,0.146300,0.000313 0.569300,0.046940,0.236300,0.921900,0.306900,0.236400 0.008458,-0.546800,0.253400,-0.014610,-0.999600,-0.023940 0.410800,-0.547400,0.394100,0.000000,-1.000000,0.000000 0.149300,-0.547400,0.605400,0.000000,-1.000000,0.000000 0.148300,-0.503000,0.473000,0.170400,-0.942200,0.288600 0.394200,-0.507400,-0.504900,0.652900,-0.346000,-0.673900 0.428400,-0.207000,-0.538800,0.693800,0.025550,-0.719700 -0.283300,-0.547000,-0.259800,-0.007902,-0.999900,-0.013790 0.160100,0.714200,0.445900,-0.130600,0.966900,-0.219000 -0.202100,0.527500,0.611700,-0.166900,0.062360,0.984000 -0.832300,-0.456900,-0.218500,-0.929000,-0.286200,-0.234500 0.152700,0.087980,0.665200,0.256400,0.341600,0.904200 -0.202400,0.162700,0.688200,-0.081700,0.324700,0.942300 -0.352500,0.478300,-0.573200,-0.275300,0.100300,-0.956100 -0.201700,0.648200,0.609300,-0.189600,0.026300,0.981500 -0.499600,-0.500700,-0.476900,0.626000,-0.328900,0.707100 -0.048670,0.197800,0.674600,0.021900,0.327500,0.944600 0.820100,0.524300,-0.054280,0.539000,0.555100,-0.633500 -0.756200,-0.547400,-0.229600,0.000000,-1.000000,0.000000 0.176700,-0.236700,0.719700,0.260800,-0.032880,0.964800 0.584400,-0.156900,-0.314300,0.865100,0.115300,-0.488100 -0.806000,-0.431600,0.317900,-0.835200,-0.232700,0.498400 0.529600,-0.301900,-0.403000,0.855700,-0.089710,-0.509600 -0.420800,0.705200,0.500900,-0.299500,0.797800,0.523300 0.076970,0.537400,0.579100,0.278100,0.089230,0.956400 0.308100,0.405600,-0.448700,0.688100,0.158300,-0.708100 0.442600,-0.057380,-0.502700,0.684400,0.225700,-0.693300 -0.241000,-0.256700,0.768200,-0.266700,-0.016600,0.963600 0.119500,-0.489100,-0.548900,-0.263500,-0.733600,0.626500 -0.479400,0.078020,0.625600,-0.445800,0.352500,0.822800 0.028310,0.715400,-0.530500,0.046080,0.985800,-0.161400 0.222800,-0.539000,-0.209900,0.138600,-0.986900,-0.082340 0.601700,0.499200,-0.031070,0.366300,-0.862300,-0.349700 0.842000,-0.000961,0.043010,0.863900,-0.240200,0.442700 0.229500,-0.411700,-0.662300,0.475000,-0.225500,-0.850600 0.548500,-0.455800,-0.316000,0.822500,-0.307800,-0.478200 0.313600,-0.326500,-0.632600,0.481900,-0.109800,-0.869300 0.177500,-0.528000,-0.349600,0.174500,-0.968300,-0.179000 0.924400,0.186900,-0.023530,0.953200,-0.179600,-0.243200 0.320900,-0.537400,-0.411100,-0.688000,-0.068610,0.722400 0.077360,0.305000,-0.612300,0.238300,0.231600,-0.943200 0.358300,0.297800,0.432400,0.688600,0.256700,0.678200 0.898900,0.344300,0.066550,0.576000,0.120600,0.808500 -0.009186,-0.540000,0.164800,-0.065380,-0.992100,-0.107200 -0.050040,-0.512800,-0.029310,-0.293700,-0.947400,0.127200 -0.463000,-0.509900,0.404000,-0.234500,-0.941400,0.242300 -0.169300,-0.544400,0.610900,-0.007646,-0.671100,-0.741400 0.623600,-0.167200,0.190700,0.967900,0.075940,0.239600 0.161300,0.299900,-0.578700,0.474300,0.231300,-0.849400 0.433900,0.192200,0.389500,0.825600,0.320900,0.464200 -0.332100,0.233100,-0.629000,-0.257600,0.278600,-0.925200 -0.604100,-0.420400,-0.580700,-0.698800,-0.225000,-0.679000 -0.383500,0.052260,0.686300,-0.235300,0.352200,0.905900 -0.139100,-0.508700,-0.525900,-0.004765,-0.942500,-0.334300 -0.775200,0.278500,0.001723,-0.968600,0.248300,0.013830 0.259900,0.662500,-0.189400,-0.016560,0.999900,0.000000 -0.367100,-0.250900,-0.732700,-0.272900,-0.033210,-0.961500 0.317200,-0.238000,0.637800,0.516400,-0.022930,0.856100 0.195900,0.244100,0.579100,0.490700,0.279700,0.825200 0.235800,0.334900,-0.528000,0.475900,0.203700,-0.855600 0.102000,0.319800,0.603400,0.268100,0.185000,0.945500 -0.682900,0.264200,0.343400,-0.828800,0.262300,0.494200 -0.442000,0.670500,-0.358000,0.474800,0.764900,0.435200 0.678400,0.518900,-0.049100,-0.098640,-0.812600,-0.574400 -0.541600,-0.536200,0.585500,-0.466700,-0.327200,0.821700 -0.792500,0.000726,-0.326700,-0.838700,0.271600,-0.472100 -0.847400,-0.332700,-0.264500,-0.961400,-0.128700,-0.243300 0.596500,-0.416800,-0.208000,0.937200,-0.209600,-0.278700 -0.032460,-0.166700,-0.770400,0.126600,0.066250,-0.989700 0.720800,0.499600,0.041280,-0.368600,-0.821500,0.435000 0.439300,0.697000,-0.174500,0.702000,0.681400,-0.207200 0.912100,0.389600,-0.028720,0.897300,0.280700,-0.340600 -0.081810,0.309700,-0.642500,-0.014660,0.231800,-0.972700 0.138900,-0.536400,0.333400,0.113600,-0.983400,0.141600 0.399100,-0.509900,0.071940,0.317200,-0.946000,0.067450 -0.492700,0.608200,0.491000,-0.623500,0.013490,0.781700 0.320200,0.662400,-0.118900,-0.170300,0.984200,0.048360 0.348200,-0.127100,-0.609400,0.708800,0.074680,-0.701500 -0.209500,-0.473200,-0.732800,-0.013490,-0.290700,-0.956700 0.397400,-0.273400,0.572100,0.715300,-0.071350,0.695100 -0.750300,0.395900,0.021820,-0.986400,0.163700,0.014110 0.079750,-0.540600,0.001783,-0.117400,-0.993100,0.001617 -0.006391,0.406000,-0.612900,0.241500,0.161700,-0.956800 -0.062110,0.335000,0.638300,0.024990,0.240100,0.970400 0.324700,-0.529200,0.091740,0.217700,-0.974600,0.052750 0.235500,0.665600,0.309300,-0.411700,0.817800,-0.402100 -0.132400,0.662100,0.404200,-0.000050,1.000000,0.000000 0.494100,0.355100,0.140700,0.950700,0.205200,0.232500 -0.001672,0.662500,0.082270,-0.005540,1.000000,0.002800 0.598900,0.025510,0.143800,0.922600,0.319300,0.216500 -0.273300,0.662100,-0.078690,0.000050,1.000000,0.000000 -0.474500,0.662500,-0.078690,0.000000,1.000000,0.000000 0.028510,0.662500,-0.129000,0.000000,1.000000,0.000000 -0.323600,0.662500,-0.199400,0.002714,1.000000,0.002815 -0.062050,0.662500,0.364000,-0.016580,0.999900,0.000000 0.219100,-0.534900,0.262900,0.141500,-0.982900,0.117900 -0.704900,-0.490800,-0.149800,0.633300,-0.768200,0.093570 0.189300,-0.545700,0.142500,0.048310,-0.998500,0.026440 -0.628800,0.204200,0.447600,-0.668100,0.296700,0.682400 0.133100,0.547500,-0.553400,0.486700,0.054610,-0.871900 -0.122400,-0.186700,0.774200,0.014340,0.033180,0.999300 -0.242300,-0.387100,0.752600,-0.242900,-0.198500,0.949500 0.451100,-0.547400,-0.370400,0.000000,-1.000000,0.000000 -0.738800,-0.066060,0.452800,-0.847000,0.173800,0.502300 0.639900,-0.276900,-0.130900,0.961900,-0.030850,-0.271800 0.088420,0.124100,-0.667500,0.228400,0.364200,-0.902900 -0.391500,0.598000,-0.547200,-0.512800,0.017100,-0.858400 0.006795,-0.057220,-0.746400,0.237300,0.191800,-0.952300 0.360100,0.446500,-0.390100,0.720700,0.105500,-0.685200 -0.244000,-0.525000,-0.028620,0.250400,-0.966300,0.060410 -0.478800,-0.096800,0.678000,-0.479400,0.166600,0.861600 -0.397200,-0.371500,0.716000,-0.247000,-0.162900,0.955200 -0.333600,-0.547400,0.645700,0.000000,-1.000000,0.000000 -0.464200,-0.545500,0.072150,-0.056910,-0.998300,0.015960 -0.710000,0.517200,-0.177700,-0.967000,0.071100,-0.244700 -0.119100,0.036580,0.734100,0.013700,0.293400,0.955900 0.440700,0.137900,0.415800,0.786100,0.354800,0.506000 0.620600,-0.056580,-0.146900,0.944200,0.204900,-0.258000 -0.122300,-0.176700,-0.770700,-0.014270,0.044940,-0.998900 -0.633700,0.713100,-0.238700,-0.263700,0.954900,-0.136300 -0.626700,0.661200,-0.344000,-0.864600,0.149100,-0.479900 0.542900,0.039230,0.307300,0.841900,0.266600,0.469300 -0.023040,0.173700,-0.676900,0.231300,0.330500,-0.915000 0.501100,-0.091920,0.446500,0.876500,0.178200,0.447200 0.632100,-0.280000,0.157800,0.967200,-0.055000,0.248100 -0.737900,0.366400,0.152000,-0.944700,0.187400,0.269100 0.058640,-0.537500,-0.370500,0.087200,-0.983800,-0.156600 -0.768900,-0.484700,-0.345500,-0.835300,-0.292000,-0.465800 -0.745800,0.430100,-0.068250,-0.986000,0.147800,-0.077300 0.169400,0.662100,0.283500,-0.016540,0.999900,0.000000 -0.424200,0.662500,-0.018330,0.016450,0.999900,0.000000 0.511400,-0.547400,0.102400,0.000000,-1.000000,0.000000 -0.223000,0.662100,0.223100,0.000000,1.000000,0.000000 -0.580500,-0.500800,-0.395900,0.672200,-0.343100,0.656100 -0.062060,0.662600,0.021920,-0.022020,0.999700,0.011050 0.648400,-0.196800,-0.008231,0.999100,0.037990,-0.017100 0.286300,-0.542900,0.450700,-0.568000,-0.609500,-0.553100 0.330500,-0.196900,-0.629700,0.488700,0.031990,-0.871800 -0.514700,0.662500,0.062150,0.013710,0.999900,-0.002705 -0.895100,-0.287000,0.011820,-0.996300,-0.084360,0.014270 0.181100,-0.267000,-0.712500,0.487100,-0.041970,-0.872400 0.129100,-0.547000,0.162700,0.001880,-1.000000,0.000734 -0.451700,0.426300,-0.526800,-0.505200,0.134900,-0.852400 -0.665200,-0.034920,-0.521100,-0.699100,0.223300,-0.679200 0.199500,-0.546400,-0.018340,0.037610,-0.999300,-0.000559 -0.026290,-0.111700,0.766200,0.008357,0.116500,0.993200 -0.293500,-0.546000,-0.199500,0.030940,-0.999000,0.032390 -0.003747,-0.517000,0.716200,0.268000,-0.362400,0.892700 -0.052000,-0.256900,0.772700,0.022570,-0.024160,0.999500 0.135700,0.010960,0.697900,0.249800,0.299800,0.920700 0.058570,-0.545100,-0.299800,0.037510,-0.997100,-0.066830 -0.293000,-0.523200,-0.449500,-0.071530,-0.966000,-0.248500 -0.699500,-0.488300,0.099880,-0.400600,-0.910300,0.104500 -0.623700,-0.289900,-0.590200,-0.714200,-0.091260,-0.694000 -0.810600,0.153200,-0.097350,-0.913100,0.336800,-0.229900 -0.413300,-0.186700,-0.719300,-0.270300,0.032830,-0.962200 -0.802400,0.184400,0.052020,-0.948000,0.317800,0.013480 0.539800,0.066990,-0.293800,0.818400,0.359600,-0.448300 -0.731100,0.667100,-0.058670,-0.970800,0.238600,-0.026220 -0.232900,-0.535400,0.413600,-0.045640,-0.982400,0.180900 -0.774700,-0.070050,-0.391200,-0.859500,0.169800,-0.482000 -0.035260,0.079760,0.717400,0.014320,0.328600,0.944400 -0.397800,-0.528600,0.375500,-0.141000,-0.967800,0.208400 -0.713700,0.384800,-0.228100,-0.924500,0.176400,-0.337900 0.399600,0.532400,0.315200,0.868700,0.057810,0.491900 0.855500,-0.340600,0.039030,0.746600,-0.543100,0.384100 0.438900,-0.544400,-0.438500,0.516100,-0.771000,-0.373100 -0.636600,0.530700,-0.333900,-0.871400,0.061380,-0.486800 -0.711600,-0.544100,0.402900,-0.634300,-0.676400,0.374300 -0.615600,0.716500,0.223200,0.101300,0.993100,-0.059390 0.288600,-0.513700,-0.309200,0.262000,-0.949400,-0.173300 -0.333700,0.662800,-0.360400,-0.016510,0.999900,0.000000 0.611700,-0.245900,-0.233700,0.959200,-0.029120,-0.281200 -0.409400,-0.333500,-0.713900,-0.269800,-0.131900,-0.953800 0.318900,-0.532100,-0.018320,0.188800,-0.982000,-0.002736 0.473600,0.446200,0.160700,0.959600,0.133700,0.247400 -0.573100,-0.531000,-0.028430,-0.195900,-0.980600,0.002738 0.058500,0.716000,0.524200,0.045660,0.988300,0.145400 -0.494000,-0.542600,-0.068470,-0.109200,-0.993600,-0.027610 -0.644900,0.423200,-0.341500,-0.865300,0.135200,-0.482700 0.114200,-0.525300,0.563400,-0.372000,-0.002915,-0.928200 -0.730800,0.305100,-0.228300,-0.937600,0.227400,-0.263000 -0.511700,0.011560,-0.629300,-0.491200,0.286300,-0.822600 -0.268800,0.187300,0.664200,-0.232500,0.296200,0.926400 0.869000,-0.247400,-0.063560,0.579800,-0.022150,-0.814500 -0.397200,0.358600,-0.572500,-0.503800,0.197100,-0.841000 0.282500,0.691000,0.436900,0.537400,0.635600,0.554300 0.224400,0.493900,0.508000,0.519700,0.105800,0.847800 -0.252000,0.365800,0.620700,-0.236300,0.168800,0.956900 0.427800,-0.382900,0.521900,0.699900,-0.190900,0.688300 0.606100,-0.486300,-0.098000,0.956300,-0.277800,-0.090860 -0.504600,0.662100,-0.139100,0.016490,0.999900,0.000000 -0.020850,-0.531700,-0.109900,-0.130500,-0.981400,0.140600 -0.223000,0.662100,0.112500,0.000033,1.000000,-0.000017 -0.730900,-0.508500,-0.018280,0.999700,-0.013130,-0.022780 -0.062020,0.662500,-0.300000,0.016500,0.999900,0.000000 0.682100,0.590700,-0.051920,0.071210,0.797500,-0.599100 -0.726500,0.187900,0.314400,-0.823300,0.283500,0.491700 -0.243100,0.662100,0.343800,0.000000,1.000000,0.000000 -0.424200,0.662500,-0.269800,0.033030,0.999500,0.000010 0.254400,-0.528100,-0.475700,-0.677100,0.014010,0.735700 -0.112300,0.662500,-0.098810,-0.005540,1.000000,0.002800 0.262200,0.584600,0.477000,0.716200,0.033740,0.697100 -0.001663,0.662100,-0.068630,-0.016540,0.999900,0.000000 -0.372400,-0.316800,0.730400,-0.242700,-0.100000,0.964900 -0.668400,0.550900,-0.274400,-0.872600,0.051490,-0.485600 -0.658200,0.477000,0.308000,-0.854300,0.099310,0.510100 -0.861700,0.013010,0.111200,-0.945200,0.289800,0.150400 0.149200,-0.546500,-0.169200,0.032320,-0.999300,-0.019290 0.507900,0.557100,0.006622,-0.208100,0.975900,-0.066110 0.824400,0.195100,0.011860,-0.969500,0.229400,0.086470 0.336300,0.032840,0.580400,0.612700,0.281100,0.738600 -0.042420,0.426600,0.622100,0.045850,0.143700,0.988600 0.578800,0.488900,0.039230,0.483000,-0.785200,0.387600 0.453900,-0.544400,-0.189000,-0.653300,-0.722900,0.224900 -0.202900,-0.547100,0.283500,0.003959,-0.999800,-0.017160 -0.064800,0.690900,-0.490000,-0.098000,0.595400,0.797400 0.548800,0.137100,0.175800,0.900400,0.374800,0.221000 0.088090,0.467100,0.582200,0.259900,0.100200,0.960400 -0.793200,-0.369800,-0.360100,-0.861800,-0.161900,-0.480700 -0.533500,0.567700,0.453000,-0.696200,0.048600,0.716200 -0.051960,-0.538100,0.606800,-0.026910,-0.204700,-0.978400 -0.624100,-0.514500,0.112100,-0.288800,-0.953900,0.081530 -0.438500,0.037690,0.664800,-0.466900,0.252500,0.847500 -0.708600,-0.528600,0.163400,0.963100,0.008985,-0.269100 -0.527900,0.490300,-0.464200,-0.713900,0.094940,-0.693800 0.501400,0.391000,-0.079790,0.981700,0.189500,-0.019040 -0.678800,0.658200,0.258000,-0.850600,0.128200,0.510000 0.035020,-0.291800,-0.752900,0.244600,-0.095090,-0.965000 0.259800,-0.097220,-0.659200,0.481800,0.157200,-0.862100 -0.051290,0.111200,-0.705300,0.022680,0.361600,-0.932100 -0.152600,-0.545500,-0.250000,0.003500,-0.998400,0.057170 -0.264600,0.250700,0.644700,-0.230600,0.289700,0.928900 -0.631700,-0.147300,0.581300,-0.689000,0.115300,0.715500 0.491400,-0.186900,-0.473800,0.846300,0.033140,-0.531700 -0.393500,0.249300,0.604900,-0.460700,0.290700,0.838600 0.062910,-0.011330,-0.721400,0.238600,0.238100,-0.941500 -0.861300,0.022850,-0.087850,-0.948400,0.284700,-0.139400 -0.588700,0.709300,0.342000,-0.397900,0.886500,0.236400 -0.162700,-0.136900,0.771000,0.019740,0.069620,0.997400 0.358200,-0.342800,0.602400,0.671100,-0.170200,0.721500 0.480400,0.107600,-0.364500,0.796700,0.351200,-0.491800 -0.122300,0.124100,-0.699200,-0.013380,0.362600,-0.931900 -0.886800,-0.083050,-0.058630,-0.986800,0.161600,0.014100 -0.484900,0.325200,0.532900,-0.470600,0.238400,0.849600 0.667800,-0.361200,0.072980,-0.129700,-0.246600,0.960400 -0.122500,-0.337900,0.767000,-0.007446,-0.138200,0.990400 0.934200,0.286300,-0.006905,0.996100,0.043660,-0.077040 -0.344000,-0.545200,0.112600,0.063950,-0.997300,-0.035470 -0.883500,-0.076560,0.102300,-0.985800,0.160600,0.048900 -0.574700,-0.349700,-0.619000,-0.506300,-0.159300,-0.847500 -0.817600,0.069490,0.201400,-0.901500,0.349800,0.254900 0.018860,0.195900,0.662600,0.259400,0.344500,0.902200 0.537500,-0.385300,0.370400,0.856400,-0.185500,0.481800 -0.707900,-0.456300,0.467100,-0.739000,-0.285800,0.610100 0.419100,0.713800,0.142200,0.264900,0.962500,0.058860 -0.846700,-0.471900,-0.142900,-0.928100,-0.288700,-0.235000 -0.172600,-0.076700,-0.758400,-0.014100,0.161900,-0.986700 -0.414000,-0.536800,-0.299900,-0.131000,-0.983100,-0.128100 0.645400,-0.137000,0.072280,0.992900,0.111000,-0.042140 0.363100,0.691700,0.348300,0.689100,0.621200,0.373200 -0.281400,-0.492100,0.583200,0.395100,-0.570000,-0.720400 0.439300,-0.494300,-0.088490,0.386600,-0.918700,-0.080480 0.177300,-0.385600,0.702700,0.414100,-0.215800,0.884300 0.084810,0.667900,0.431000,-0.325800,0.821300,-0.468200 0.581600,-0.011650,-0.245900,0.942300,0.227700,-0.245500 -0.371700,0.486900,0.566300,-0.491400,0.097660,0.865500 0.841900,0.352500,0.060660,-0.703000,-0.142300,0.696800 0.083530,-0.538100,-0.570800,-0.272000,-0.064680,0.960100 -0.302600,0.667500,0.581700,-0.228000,0.232500,0.945500 0.059090,0.680800,-0.451400,-0.344700,0.512600,0.786400 0.459000,0.696600,-0.104000,0.686300,0.698900,-0.201100 -0.465000,0.079710,-0.630700,-0.481400,0.349800,-0.803700 0.611800,-0.031780,0.156500,0.944300,0.233800,0.231600 -0.391500,0.163100,-0.635800,-0.301900,0.322500,-0.897100 0.848900,-0.004526,-0.017190,0.954300,-0.237900,-0.180900 0.886600,-0.179600,-0.007570,0.933200,0.342400,-0.109200 -0.586600,-0.401800,0.604200,-0.663800,-0.206900,0.718700 -0.446100,0.226400,-0.581200,-0.490200,0.290300,-0.821900 -0.242400,0.041910,0.725600,-0.239900,0.269700,0.932600 -0.535400,-0.500400,-0.599500,-0.482700,-0.334700,-0.809300 0.775000,0.469000,-0.047080,-0.602600,-0.581800,-0.546200 -0.032930,-0.316800,-0.766900,0.127300,-0.100100,-0.986800 -0.751100,0.295000,-0.157900,-0.944500,0.230200,-0.234200 -0.547200,0.441300,0.454100,-0.686500,0.143900,0.712800 -0.011710,0.662500,0.243200,0.008267,1.000000,-0.000023 0.481100,0.673300,0.058880,0.958000,0.286600,-0.011220 0.470000,-0.537800,-0.123800,-0.962700,-0.022610,0.269700 -0.662000,-0.309700,-0.548100,-0.714000,-0.098190,-0.693300 -0.202700,-0.535100,-0.420100,-0.048960,-0.983000,-0.177100 -0.363700,0.662300,0.394100,0.065230,0.989200,-0.131300 0.521200,-0.187600,-0.423500,0.862200,0.008306,-0.506500 -0.592800,0.496700,0.401600,-0.695000,0.075050,0.715000 -0.102200,-0.440800,0.746100,0.008407,-0.255900,0.966700 -0.393900,-0.546000,-0.199400,-0.034380,-0.999100,-0.026070 -0.291900,0.022870,-0.716900,-0.259800,0.286700,-0.922100 0.166500,-0.006733,-0.690200,0.468000,0.250600,-0.847400 0.366600,-0.154100,0.601600,0.718600,0.122400,0.684500 0.328400,-0.501100,-0.572100,0.655100,-0.338800,-0.675300 -0.514500,-0.320100,-0.659500,-0.510600,-0.100000,-0.854000 0.805900,0.136000,0.020720,-0.898100,0.399900,0.183200 -0.756900,-0.167000,0.447500,-0.855900,0.061190,0.513500 -0.758400,0.143600,0.291100,-0.806400,0.362800,0.467000 0.332200,0.223700,-0.482900,0.674100,0.271100,-0.687000 -0.363400,-0.505300,0.483800,-0.160300,-0.944500,0.286800 -0.719200,0.335200,0.241300,-0.941000,0.202100,0.271300 0.292800,0.711500,-0.311900,-0.322000,0.922600,0.212500 -0.135900,0.261500,0.657200,0.019230,0.255900,0.966500 -0.213200,0.715200,0.525900,0.061770,0.970600,-0.232700 -0.142500,-0.547400,-0.672300,0.000000,-1.000000,0.000000 0.591200,-0.309800,0.296100,0.876300,-0.090060,0.473300 0.489900,0.279700,-0.215400,0.924400,0.273000,-0.266400 -0.586800,0.051960,0.566600,-0.662200,0.345300,0.665000 -0.803400,-0.518500,-0.250300,-0.908500,-0.348700,-0.230400 -0.406500,-0.481700,0.683500,-0.479000,-0.252500,0.840700 -0.366800,0.683400,-0.552100,-0.390800,0.417800,-0.820200 -0.580000,0.365300,0.439000,-0.677800,0.196200,0.708600 0.037310,-0.336800,0.751900,0.260000,-0.141000,0.955300 0.121100,0.572000,0.564200,0.426700,0.035300,0.903700 0.077500,0.699200,-0.553000,0.189800,0.733100,-0.653100 0.264400,0.524100,0.479100,0.708700,0.082640,0.700700 0.032920,-0.070890,0.746500,0.267900,0.122000,0.955700 0.095380,0.674600,0.566900,0.244300,0.322500,0.914500 -0.748900,-0.444200,-0.405900,-0.842900,-0.264200,-0.468800 0.325100,-0.529400,-0.088220,0.213700,-0.975000,-0.061440 -0.701500,0.111500,0.409400,-0.797400,0.364500,0.481000 -0.302200,0.704700,-0.550400,-0.164800,0.835000,-0.525000 -0.873300,-0.256900,0.191900,-0.962200,-0.031380,0.270600 -0.585000,0.668100,0.116800,0.568200,0.812800,-0.128500 -0.590000,-0.525800,0.549700,-0.652800,-0.349800,0.671900 0.469200,0.355800,-0.227300,0.951300,0.174600,-0.254100 -0.849300,0.060100,0.001722,-0.938700,0.344500,0.013350 -0.142500,-0.514400,0.513300,0.004415,-0.952000,0.306000 0.916900,0.292700,0.055810,0.786900,0.039400,0.615900 0.467900,0.036210,0.443100,0.760000,0.293300,0.580000 0.747200,0.003538,-0.007850,-0.975500,0.194600,-0.102900 0.585600,-0.544000,0.011900,0.717500,-0.696500,-0.007754 -0.534900,0.662800,-0.189300,0.008309,0.999800,0.017880 0.017770,-0.509100,0.509300,0.089260,-0.943000,0.320500 -0.282500,-0.027620,0.735100,-0.231500,0.251400,0.939800 -0.514000,0.422700,-0.489400,-0.628400,0.136200,-0.765900 -0.846800,-0.047190,0.221400,-0.939700,0.216700,0.264400 0.662300,0.607800,0.001779,0.018890,0.999800,0.002682 -0.701900,0.658000,0.191800,-0.956000,0.114000,0.270300 -0.538500,-0.113700,-0.643700,-0.506700,0.126800,-0.852800 -0.257700,0.633200,0.594600,-0.229800,-0.004440,0.973200 0.121300,-0.253500,0.735100,0.277500,-0.029750,0.960300 -0.212000,-0.517100,0.722000,-0.156800,-0.363000,0.918500 -0.534000,-0.547200,-0.570300,-0.066620,-0.990400,-0.120800 0.450300,0.648200,-0.201800,0.961600,0.015410,-0.273900 0.505000,-0.216900,0.460500,0.858400,0.014300,0.512700 -0.132500,0.153700,0.690600,-0.000580,0.332500,0.943100 0.170300,-0.387500,-0.701500,0.480700,-0.196800,-0.854500 -0.736800,0.238800,0.265400,-0.886100,0.288400,0.362900 -0.072120,-0.545000,0.353500,0.014130,-0.996900,0.076770 -0.330500,0.706700,0.470400,0.253500,0.850400,-0.461000 -0.033000,-0.386500,-0.756200,0.144900,-0.194600,-0.970100 -0.773400,-0.250100,-0.420700,-0.872500,-0.032220,-0.487500 -0.152300,-0.530100,-0.139900,0.045440,-0.978300,0.202100 0.541300,-0.494000,0.305700,0.829900,-0.327000,0.452000 -0.482300,-0.215500,-0.685200,-0.511400,0.016550,-0.859200 -0.655600,-0.547400,0.444500,0.000000,-1.000000,0.000000 0.523700,0.262700,0.109200,0.930100,0.289400,0.226200 0.339800,-0.402800,0.602100,0.506300,-0.229400,0.831300 -0.694800,-0.441000,-0.480300,-0.693400,-0.254600,-0.674100 0.601700,-0.344400,0.247000,0.955000,-0.164300,0.246900 -0.624000,0.138200,0.485700,-0.644100,0.369600,0.669800 0.452500,0.638500,0.200700,0.965600,0.003553,0.260000 -0.313700,-0.490500,-0.569300,0.067340,-0.762900,0.643000 0.443200,0.598000,-0.227300,0.959400,0.019140,-0.281500 0.088120,-0.531800,0.392800,0.097640,-0.980800,0.168600 -0.188900,0.708200,-0.509400,0.034420,0.873200,0.486200 -0.655900,-0.371700,-0.541900,-0.707600,-0.161800,-0.687800 -0.122500,-0.067080,0.760400,0.014040,0.189900,0.981700 0.243100,0.527300,-0.493000,0.596700,0.063380,-0.800000 0.668400,-0.290500,-0.007607,0.550400,0.830500,-0.086040 -0.691500,-0.498700,0.224800,0.918600,-0.356400,-0.170800 -0.042290,-0.526300,-0.716400,0.099860,-0.345000,-0.933300 -0.747000,0.103600,-0.336600,-0.816700,0.357700,-0.452900 -0.629200,0.703800,0.001831,0.604200,0.796900,-0.002179 0.561100,0.585300,0.020520,-0.409000,0.890200,0.200700 0.233300,-0.266900,-0.683400,0.487000,-0.041540,-0.872400 -0.213000,0.662500,-0.330200,-0.016560,0.999900,0.000000 -0.303500,-0.547400,-0.591800,0.002810,-1.000000,0.008158 -0.620900,0.173400,-0.466700,-0.677300,0.329000,-0.658100 -0.182800,0.476600,0.617300,0.007856,0.113600,0.993500 -0.485800,0.635100,-0.491000,-0.513200,-0.004097,-0.858300 0.067570,0.224300,-0.637000,0.235300,0.294200,-0.926300 -0.777000,0.178100,0.196000,-0.908900,0.329300,0.255900 0.078840,0.662500,-0.179300,0.016450,0.999900,0.000000 0.018230,-0.533800,-0.409800,0.047590,-0.982400,-0.180500 -0.234200,-0.497500,-0.595500,0.118000,-0.369000,0.921900 0.287200,-0.486500,-0.606700,0.465400,-0.299800,-0.832800 -0.704500,0.679500,-0.158600,-0.864500,0.448000,-0.228000 0.129100,0.662500,0.092330,0.008267,1.000000,-0.000023 -0.112300,0.662100,0.122500,0.016490,0.999900,0.000000 -0.655100,0.019770,-0.510900,-0.687200,0.287100,-0.667300 -0.848300,-0.006719,0.181500,-0.932800,0.246600,0.262900 0.624000,-0.017490,0.042150,0.969000,0.246600,-0.013960 0.281500,-0.414100,0.634700,0.518100,-0.226200,0.824900 -0.182600,-0.136900,-0.766500,-0.014280,0.097270,-0.995200 0.112700,0.648200,-0.562900,0.464600,0.040250,-0.884600 0.127700,-0.486500,0.690600,0.253200,-0.311900,0.915800 -0.282600,0.126700,-0.680700,-0.253900,0.363900,-0.896200 0.489300,0.177700,-0.298300,0.823900,0.287900,-0.488100 0.418000,0.436200,-0.299700,0.849800,0.149300,-0.505600 0.795300,-0.273900,0.044320,-0.808300,0.395600,0.436000 0.229700,-0.529700,-0.289000,0.153200,-0.978400,-0.138600 -0.890800,-0.147000,-0.107300,-0.964300,0.098400,-0.245900 -0.666800,0.193500,0.411100,-0.814000,0.298100,0.498500 0.572300,-0.280000,0.337000,0.871700,-0.069990,0.485100 -0.653900,0.714100,-0.189000,-0.259600,0.963500,-0.065450 -0.273900,-0.540900,0.143300,0.081800,-0.993400,-0.080890 0.755700,0.568000,-0.055450,0.250100,0.697200,-0.671900 0.347000,-0.246600,-0.618400,0.671100,-0.033250,-0.740700 -0.821800,-0.397500,-0.298300,-0.851800,-0.218900,-0.475900 0.810300,0.439300,0.064000,-0.557800,-0.305000,0.771900 -0.727800,0.581200,-0.094370,-0.968400,0.025840,-0.247900 0.290000,-0.537500,0.052020,0.175600,-0.984200,0.024080 -0.400000,0.406000,0.562400,-0.477100,0.133700,0.868600 0.061000,-0.336900,-0.741400,0.247500,-0.141500,-0.958500 -0.838300,-0.286800,0.308400,-0.925000,-0.084010,0.370600 -0.776300,-0.547400,0.112500,0.000000,-1.000000,0.000000 0.327200,0.277300,0.471700,0.697600,0.234500,0.677000 -0.292900,0.112300,0.686100,-0.229800,0.372600,0.899100 -0.566800,0.696300,0.229400,0.629700,0.670200,-0.392800 -0.459200,-0.256900,0.698900,-0.487800,-0.016490,0.872800 0.392800,-0.487000,0.273100,0.134900,-0.990900,-0.001034 0.879700,0.435900,-0.054390,0.697800,0.310700,-0.645400 -0.555500,0.019720,-0.600400,-0.491800,0.288500,-0.821500 0.220800,-0.487100,-0.473800,0.253900,-0.891200,-0.375800 -0.873700,-0.427300,-0.078290,-0.972100,-0.230300,-0.044580 -0.662100,-0.478800,-0.497900,-0.686500,-0.289400,-0.667100 0.323700,0.402800,0.437900,0.715300,0.165800,0.678800 0.620700,-0.440400,0.001855,0.971200,-0.237900,-0.016570 -0.595200,-0.547400,-0.450900,0.000000,-1.000000,0.000000 -0.092210,-0.506200,0.536400,0.004739,-0.943300,0.332000 0.470000,0.598100,-0.131200,0.962000,0.016370,-0.272500 -0.020820,0.667700,0.464500,-0.117200,0.854100,-0.506700 -0.824500,-0.220100,-0.330600,-0.872700,0.006191,-0.488100 -0.678200,0.306300,-0.327500,-0.849900,0.230900,-0.473700 -0.549800,0.681300,0.426500,-0.595300,0.451800,0.664500 0.839800,0.318700,-0.043700,-0.856700,-0.134800,-0.497900 -0.516800,0.317600,-0.511200,-0.513400,0.226600,-0.827700 -0.535800,-0.351300,0.646000,-0.470700,-0.187800,0.862100 0.870600,0.486800,0.023470,0.836000,0.501400,0.222800 -0.576900,-0.506600,-0.282500,-0.288900,-0.943500,-0.162400 -0.242200,-0.056580,0.752600,-0.226600,0.199200,0.953400 -0.364200,-0.544700,0.001798,0.088550,-0.996100,-0.001242 -0.092180,-0.547400,0.695900,0.000050,-1.000000,0.003730 -0.727100,0.016060,-0.434500,-0.829600,0.289000,-0.477800 0.613500,0.602100,-0.016920,-0.197600,0.963700,-0.179400 0.337100,0.571000,0.401100,0.717000,0.017620,0.696800 0.578900,-0.396300,-0.288100,0.932500,-0.224500,-0.282800 -0.608500,0.278200,-0.434100,-0.694200,0.250300,-0.674800 0.442700,0.345300,-0.287800,0.838400,0.216500,-0.500200 -0.845300,-0.017580,-0.198600,-0.943600,0.231300,-0.236900 -0.656600,0.211700,-0.411800,-0.685700,0.298300,-0.664000 -0.568400,0.618300,0.417400,-0.696900,-0.004789,0.717200 -0.634200,-0.067040,0.563700,-0.683200,0.158600,0.712800 0.517400,0.315500,-0.028360,0.977100,0.212100,-0.016630 -0.544500,-0.507500,0.332200,-0.269700,-0.940600,0.206100 0.265900,0.012090,-0.628500,0.467700,0.285200,-0.836600 -0.753900,0.229500,0.216800,-0.921400,0.288600,0.260200 -0.492400,0.112100,-0.600100,-0.478500,0.362800,-0.799600 -0.457800,-0.147000,0.696600,-0.484500,0.113500,0.867400 -0.533300,-0.512600,-0.318700,-0.225800,-0.949700,-0.216800 -0.786300,0.241200,-0.062960,-0.962000,0.273100,0.008815 -0.231900,0.265000,-0.648200,-0.239200,0.262500,-0.934800 -0.767100,0.204900,-0.197800,-0.922900,0.304300,-0.236100 0.752300,-0.101500,-0.033100,-0.918500,-0.167000,-0.358600 -0.486000,0.704300,-0.351700,0.428300,0.814400,0.391500 0.188400,0.669300,0.520700,0.496800,0.248300,0.831600 0.457700,0.274300,-0.295300,0.828900,0.234800,-0.507800 -0.754700,0.327500,-0.112400,-0.947700,0.207300,-0.242600 -0.502400,0.266100,-0.534500,-0.494000,0.261000,-0.829400 0.393600,0.464800,0.339200,0.858400,0.115400,0.499800 0.911300,0.389100,0.034080,0.891300,0.289900,0.348700 -0.242400,-0.046580,-0.749500,-0.212600,0.213300,-0.953600 0.087190,-0.136800,0.740600,0.271700,0.091330,0.958000 0.390600,-0.538400,0.494800,0.611800,-0.523000,0.593400 -0.897200,-0.250800,-0.091660,-0.988300,-0.046510,-0.145400 0.361300,0.672200,-0.365500,0.809400,0.321000,-0.491800 0.471200,-0.547400,-0.320100,0.000000,-1.000000,0.000000 -0.804600,0.116500,-0.178100,-0.903400,0.363700,-0.227100 0.640200,-0.166900,-0.130900,0.957900,0.081030,-0.275400 -0.835900,-0.481700,0.178900,-0.919500,-0.294300,0.260600 0.033550,-0.538900,0.379000,0.053530,-0.987600,0.147700 0.247100,0.173600,-0.573000,0.460300,0.330300,-0.824000 0.165400,0.102100,-0.648900,0.448500,0.394900,-0.801800 0.198400,-0.541200,0.515200,-0.485100,-0.316100,-0.815300 -0.667600,-0.486800,-0.231900,0.136000,-0.990700,-0.003927 -0.548400,0.686600,-0.241000,0.734500,0.535500,0.416900 -0.873000,-0.026610,-0.097790,-0.952800,0.222800,-0.206000 -0.499600,-0.543000,0.482100,0.677600,-0.215500,-0.703200 0.082020,-0.082120,0.734500,0.273300,0.149500,0.950200 0.208400,-0.273400,0.701600,0.498000,-0.045410,0.866000 0.396000,-0.396400,-0.546600,0.680400,-0.216000,-0.700200 -0.746000,-0.521300,0.363400,-0.804600,-0.349200,0.480300 0.305200,0.685500,-0.232100,-0.734200,0.525600,0.429700 0.507200,-0.514500,0.350200,0.816300,-0.342800,0.464900 0.399300,0.037100,0.513600,0.700400,0.281500,0.655800 0.506600,-0.156100,0.452200,0.873800,0.123500,0.470300 -0.212900,-0.267000,-0.769500,-0.014310,-0.041860,-0.999000 0.300500,0.663700,0.193100,-0.194900,0.973000,-0.123300 0.107100,0.112500,0.668900,0.243800,0.377500,0.893300 -0.464900,0.507100,0.512900,-0.484700,0.097600,0.869200 -0.894900,-0.277000,0.082230,-0.997900,-0.062550,0.014270 0.513000,-0.026940,-0.394300,0.846500,0.223300,-0.483300 -0.152500,0.598100,-0.606400,-0.014280,0.016450,-0.999800 0.254000,-0.495000,0.478700,-0.580900,-0.480200,-0.657200 -0.738200,-0.493300,-0.394800,-0.828200,-0.316000,-0.462800 0.467500,-0.027760,-0.468800,0.724300,0.214300,-0.655300 -0.075370,-0.480800,-0.732400,-0.013680,-0.291000,-0.956600 0.030700,0.510600,0.594100,0.279500,0.088670,0.956000 0.298300,0.152800,-0.549500,0.655300,0.340700,-0.674200 0.518000,0.163400,-0.246800,0.922800,0.296500,-0.246000 -0.393200,-0.522700,-0.399200,-0.132700,-0.966000,-0.221900 0.421400,0.372100,0.316900,0.863700,0.196400,0.464200 0.259900,0.136600,0.582000,0.476800,0.374900,0.795100 -0.719800,0.466600,-0.157600,-0.963000,0.110800,-0.245800 0.048630,0.662500,-0.239700,0.000000,1.000000,0.000000 -0.565100,0.662500,-0.058570,-0.016650,0.999900,-0.000100 0.489600,0.325600,-0.177100,0.944400,0.214300,-0.249300 0.571800,-0.161300,0.337000,0.866900,0.067060,0.494000 0.316900,0.338000,0.461300,0.701700,0.212100,0.680200 0.602400,-0.487300,0.110700,0.932800,-0.280900,0.225600 -0.397300,0.708700,-0.503200,-0.235100,0.892500,-0.385100 -0.323600,0.662500,0.162800,-0.016510,0.999900,0.000000 -0.132400,0.662100,-0.199400,0.000050,1.000000,0.000000 -0.514800,-0.497400,0.402400,-0.262500,-0.926400,0.270000 0.363100,0.688600,0.073600,-0.790300,0.579100,-0.200200 -0.818400,0.140200,0.021840,-0.934400,0.355900,0.013360 0.149300,0.662500,-0.018330,0.016450,0.999900,0.000000 0.269900,0.662500,0.021910,-0.016570,0.999900,0.000000 0.229700,0.662300,-0.048530,-0.016570,0.999800,-0.008255 -0.142500,0.662100,0.001793,-0.016540,0.999900,0.000000 -0.705800,0.241900,-0.312300,-0.839000,0.272100,-0.471200 -0.454400,-0.547400,0.605400,0.000000,-1.000000,0.000000 -0.776300,-0.547400,-0.098810,0.000000,-1.000000,0.000000 -0.764200,-0.366600,0.414400,-0.847700,-0.161200,0.505300 0.479600,0.426500,-0.146900,0.952300,0.148400,-0.266600 0.169400,0.662500,-0.118900,0.000000,1.000000,0.000000 -0.657500,0.097060,0.473900,-0.635400,0.382800,0.670600 -0.062570,0.685300,-0.597600,0.046740,0.521200,-0.852200 -0.273300,0.662500,0.213000,0.005544,1.000000,-0.002807 0.018060,0.618300,-0.589800,0.242600,-0.004958,-0.970100 -0.061940,0.207700,-0.670600,-0.002832,0.298000,-0.954600 0.081400,-0.499700,-0.516400,0.120700,-0.939300,-0.321200 -0.263000,-0.543700,0.343300,-0.042980,-0.993900,0.101500 0.589300,-0.266800,-0.307400,0.896800,-0.022070,-0.441800 -0.051950,-0.026320,-0.749800,0.000711,0.223500,-0.974700 -0.872200,-0.016750,0.011780,-0.973200,0.229300,0.013920 -0.253100,0.662400,-0.440700,0.060370,0.983000,0.173500 0.340000,-0.501800,0.393600,-0.716500,-0.053660,-0.695500 0.642800,-0.250100,0.117700,0.967800,-0.038020,0.249000 0.420700,0.716600,-0.008274,0.023330,0.999700,-0.003687 0.511000,-0.409400,0.406900,0.849600,-0.212700,0.482600 -0.162600,-0.545700,0.343700,-0.004490,-0.998800,0.049480 0.169600,-0.216800,-0.720300,0.447900,0.012620,-0.894000 -0.132400,-0.226800,-0.771800,-0.014310,-0.008694,-0.999900 0.029800,-0.532000,0.011930,-0.188900,-0.982000,-0.008813 -0.783900,-0.076580,0.380800,-0.847400,0.161800,0.505700 0.027010,-0.186700,0.761400,0.260000,0.005861,0.965600 -0.323000,-0.317200,0.743300,-0.259000,-0.100000,0.960700 0.129100,0.716700,-0.481100,0.010410,0.999800,-0.016430 0.278500,-0.522300,0.272500,0.228300,-0.965400,0.126300 -0.524400,-0.176900,0.662200,-0.485800,0.060610,0.871900 -0.537000,0.701500,-0.412900,-0.462000,0.764600,-0.449300 -0.359000,-0.163600,-0.733600,-0.273000,0.074250,-0.959100 0.329400,-0.515200,0.232700,0.262200,-0.953800,0.146600 0.841500,0.225400,0.049110,-0.858700,0.100100,0.502600 -0.192800,-0.407500,-0.750400,-0.013980,-0.221900,-0.975000 -0.762800,0.021420,-0.367200,-0.836300,0.288300,-0.466300 -0.774300,0.124600,-0.271000,-0.815500,0.362700,-0.451000 0.427500,-0.173800,0.541800,0.715900,0.059320,0.695700 -0.079740,0.236600,0.663600,0.010430,0.281200,0.959600 -0.772700,0.285500,0.052080,-0.970700,0.239900,0.011740 0.528300,0.459900,-0.054550,0.599500,-0.467500,-0.649600 0.385900,0.052410,-0.516500,0.652900,0.348500,-0.672500 0.167100,-0.156900,-0.718300,0.426300,0.086990,-0.900400 -0.157800,0.410200,0.625800,0.014420,0.158200,0.987300 0.226000,-0.087080,0.679600,0.505600,0.162400,0.847400 -0.061920,0.456700,-0.617000,0.021250,0.121000,-0.992400 0.531100,-0.304400,0.406200,0.866700,-0.080210,0.492300 -0.706800,-0.077320,0.495500,-0.699700,0.145000,0.699500 -0.417000,0.277000,-0.582100,-0.497300,0.255100,-0.829200 0.387900,-0.246700,-0.578700,0.696600,-0.032480,-0.716700 -0.212300,0.537500,-0.607100,-0.134000,0.060100,-0.989200 -0.263000,-0.525400,0.453600,-0.062150,-0.967000,0.247300 -0.261200,0.336200,-0.622100,-0.270200,0.207200,-0.940200 -0.162300,0.357700,-0.631100,-0.013970,0.192800,-0.981100 0.238400,-0.540500,0.162000,0.104100,-0.992800,0.058690 -0.192600,-0.514000,-0.509700,-0.026550,-0.953600,-0.299900 0.382600,0.331700,0.396200,0.710200,0.205300,0.673400 -0.820600,-0.446400,0.271600,-0.926700,-0.268200,0.263100 -0.662700,-0.455500,0.511700,-0.668300,-0.283000,0.687900 -0.322000,0.577800,0.579200,-0.247900,0.012300,0.968700 -0.261100,0.527200,0.597000,-0.253200,0.086740,0.963500 0.203400,-0.486500,-0.653500,0.462300,-0.296100,-0.835900 -0.062240,-0.540500,-0.389700,0.026690,-0.993000,-0.115000 0.923500,0.183900,0.027010,0.949200,-0.183900,0.255400 0.356200,-0.537400,-0.374800,-0.810500,-0.057250,0.582900 0.179700,-0.525800,0.364200,0.182400,-0.966800,0.179000 -0.145900,0.673600,0.606300,0.013380,0.334700,0.942200 -0.342800,-0.036560,0.722400,-0.237000,0.209400,0.948700 -0.797600,0.194100,0.101400,-0.942200,0.304300,0.140100 0.559700,-0.542100,-0.193200,0.839000,-0.513000,-0.181300 0.374500,-0.507400,0.197600,0.310800,-0.943600,0.113900 -0.799800,-0.216800,0.378900,-0.858200,0.013260,0.513200 0.233100,0.049280,0.636800,0.481500,0.327700,0.812900 -0.602800,-0.499000,0.283300,-0.299600,-0.937200,0.178800 0.466800,-0.546300,0.391700,0.276100,-0.940800,0.196800 0.482700,-0.537900,0.062080,-0.980700,-0.194000,-0.024220 0.279700,-0.536700,-0.108800,0.172600,-0.983800,-0.048910 0.461300,0.594600,0.167900,0.968800,0.001407,0.247800 0.501700,-0.416300,-0.413600,0.839700,-0.198800,-0.505300 -0.313500,0.662500,0.031970,0.000000,1.000000,0.000000 -0.021760,0.662100,-0.350300,0.000000,1.000000,0.000000 -0.021780,0.662100,0.132600,-0.016600,0.999900,0.000002 0.394400,0.638400,0.320200,0.875900,0.009010,0.482400 0.541600,-0.547400,-0.088750,0.000000,-1.000000,0.000000 0.199500,0.662800,0.243200,0.000001,1.000000,0.000000 0.463000,-0.539100,0.151900,-0.942000,-0.214900,-0.257600 -0.373900,0.662100,-0.159200,-0.016530,0.999800,-0.008307 0.609300,0.034010,0.011890,0.951600,0.307100,-0.008064 0.109000,0.662100,0.031970,-0.016540,0.999900,0.000000 0.059210,-0.518300,0.467700,0.074880,-0.962600,0.260400 -0.192800,0.662500,0.323700,-0.016580,0.999900,0.000000 -0.635400,-0.547400,-0.420700,0.000000,-1.000000,0.000000 0.166800,0.183900,-0.613700,0.461500,0.322600,-0.826400 0.169400,-0.547000,0.021900,-0.013760,-0.999900,0.000331 -0.122400,-0.547100,-0.300000,-0.000166,-1.000000,-0.007706 0.320200,0.662500,0.102400,-0.085280,0.996300,-0.011620 -0.361800,-0.445200,0.708600,-0.236600,-0.224400,0.945300 -0.271600,-0.296700,-0.757000,-0.271900,-0.096380,-0.957500 -0.719900,0.466700,0.160900,-0.956300,0.108800,0.271200 -0.894500,-0.166700,0.102300,-0.996800,0.066500,0.044210 0.481400,-0.498700,-0.028390,-0.974400,-0.224500,0.013240 0.496700,0.256100,0.223200,0.937000,0.261200,0.232100 -0.387400,0.530700,-0.552800,-0.511400,0.061160,-0.857100 -0.455700,-0.490900,-0.650900,-0.485800,-0.307500,-0.818200 -0.062100,-0.147000,0.770300,0.011460,0.119300,0.992800 -0.584100,0.225000,-0.480500,-0.686100,0.290700,-0.666900 -0.741900,-0.348100,-0.458200,-0.793900,-0.165700,-0.585100 -0.474300,-0.539900,0.194000,-0.107600,-0.992100,0.064800 -0.592300,-0.086970,-0.606800,-0.517600,0.159500,-0.840600 -0.132500,0.608200,0.609900,0.008803,0.016000,0.999800 0.349500,-0.515600,-0.189100,0.278500,-0.956000,-0.092310 -0.797700,0.063550,-0.276600,-0.840200,0.343000,-0.420000 0.647700,-0.206900,-0.068570,0.998900,0.044760,-0.014350 -0.523400,0.669000,0.263000,0.595500,0.735700,-0.322800 0.578800,0.524300,-0.068510,0.145500,-0.344400,-0.927500 0.286200,0.699800,-0.418000,0.451100,0.762800,-0.463400 -0.502500,-0.387300,0.657100,-0.472500,-0.203100,0.857600 -0.292200,0.387300,-0.603200,-0.272100,0.167400,-0.947600 0.780800,-0.402000,-0.017280,0.336400,-0.924800,-0.177700 -0.081940,-0.542000,-0.210300,-0.025620,-0.993700,0.109400 -0.314300,0.369700,0.603700,-0.228500,0.218200,0.948800 0.119000,-0.546000,0.233100,0.032340,-0.999000,0.031440 -0.768900,-0.195600,-0.428700,-0.872000,0.033050,-0.488300 -0.664600,-0.260100,-0.550600,-0.716800,-0.032480,-0.696600 -0.458400,-0.488200,0.480300,-0.213100,-0.909900,0.356000 0.629800,-0.372000,-0.122800,0.944700,-0.169700,-0.280500 -0.032210,-0.523600,0.473200,0.071630,-0.965900,0.249000 0.077190,0.022870,0.710100,0.244700,0.289000,0.925500 -0.805600,-0.547200,-0.159000,-0.082130,-0.996300,-0.025610 -0.464900,0.663300,-0.310600,0.135900,0.977800,0.159600 -0.301600,-0.426500,-0.726200,-0.264600,-0.226400,-0.937400 -0.834300,-0.270200,-0.310300,-0.872200,-0.046080,-0.487000 0.203400,0.395900,-0.532900,0.480800,0.163500,-0.861500 -0.033600,0.648000,0.607600,0.144600,0.023450,0.989200 -0.843000,0.073610,0.092270,-0.937100,0.347800,0.030070 0.672400,-0.404900,-0.019000,-0.336700,-0.921300,-0.194400 0.478400,-0.515700,-0.396700,0.804500,-0.349500,-0.480100 0.803100,0.555400,0.033890,0.515300,0.786800,0.339700 0.832400,0.307700,0.026410,-0.964300,-0.124500,0.233700 0.471200,0.537300,-0.134000,0.961100,0.064080,-0.268600 0.823800,0.171300,-0.031380,-0.897500,0.268800,-0.349700 0.328400,-0.544300,-0.548300,0.484800,-0.721500,-0.494400 -0.676400,-0.129100,-0.532200,-0.714700,0.097520,-0.692600 0.598900,-0.507500,-0.038530,0.937500,-0.347600,-0.013410 -0.132400,0.036740,-0.731200,-0.013740,0.293400,-0.955900 -0.470200,0.193700,0.582000,-0.462900,0.312700,0.829400 0.464500,-0.226800,-0.504500,0.696800,0.024720,-0.716800 -0.687900,0.345500,0.297600,-0.841600,0.197900,0.502500 0.381400,-0.488400,-0.283900,0.356600,-0.911900,-0.203100 0.041540,0.097210,0.693700,0.263300,0.346300,0.900400 0.291600,-0.216800,-0.652100,0.487300,0.013130,-0.873100 -0.836600,-0.511700,0.138800,-0.900500,-0.352600,0.254500 0.263200,0.264200,-0.532100,0.499900,0.267800,-0.823700 -0.202700,-0.516000,0.504100,-0.068760,-0.957300,0.280700 0.552500,0.190500,-0.001487,0.948600,0.316100,-0.013610 0.199200,0.328400,0.552300,0.511100,0.224400,0.829700 -0.568600,0.308600,-0.464600,-0.698100,0.229200,-0.678300 -0.411800,-0.076680,0.711500,-0.428700,0.160300,0.889100 0.822600,-0.042210,0.061050,0.705700,-0.031450,0.707800 -0.637400,0.658000,0.327600,-0.853800,0.121400,0.506200 -0.251000,0.456300,-0.604500,-0.274500,0.122500,-0.953800 0.419300,0.188200,-0.409200,0.809700,0.328200,-0.486400 0.470900,-0.092220,-0.483100,0.696100,0.172100,-0.697000 -0.052620,0.395700,-0.625300,0.094920,0.156800,-0.983100 -0.182600,0.214100,-0.667000,-0.013930,0.297200,-0.954700 -0.214600,-0.489700,0.597200,0.193700,-0.864500,-0.463800 -0.203300,0.264500,0.656000,-0.145200,0.219700,0.964700 0.786400,-0.073460,-0.070360,-0.175900,-0.018430,-0.984200 0.416800,0.618300,-0.277500,0.866100,-0.018730,-0.499500 0.271600,-0.344200,0.655100,0.513600,-0.145800,0.845500 0.323900,-0.120200,0.627100,0.509800,0.078890,0.856600 0.356800,0.577800,-0.378600,0.784600,0.025690,-0.619500 -0.509600,0.690800,0.456800,-0.533500,0.607100,0.588800 0.473200,0.374000,0.209800,0.951600,0.181900,0.247900 -0.323800,-0.497800,0.527200,-0.109300,-0.930600,0.349400 -0.729700,-0.528700,0.032010,0.999500,0.018410,-0.025290 -0.352800,0.688400,-0.432600,0.442800,0.572000,0.690500 0.107300,-0.428300,-0.711600,0.239500,-0.230900,-0.943000 0.758000,-0.105100,0.048290,-0.852700,-0.183800,0.489100 -0.487900,0.540700,-0.492100,-0.511500,0.060180,-0.857200 -0.342000,-0.027110,-0.716700,-0.266300,0.226500,-0.936900 0.417600,-0.146700,-0.544500,0.693300,0.086350,-0.715400 0.872300,-0.272400,0.060490,0.707100,-0.166300,0.687300 -0.818600,-0.115600,-0.327200,-0.867700,0.124000,-0.481400 0.062140,0.512100,-0.582800,0.245500,0.076700,-0.966400 -0.814200,0.146600,0.101900,-0.929700,0.346500,0.124600 -0.769500,0.304700,-0.038560,-0.972100,0.234000,0.013920 0.362700,0.709600,-0.170200,-0.403500,0.907900,0.113700 0.885200,0.159400,0.070660,0.414700,-0.118700,0.902200 -0.365300,0.200100,0.634800,-0.246700,0.327400,0.912100 0.007339,0.683100,-0.584300,0.197200,0.484300,-0.852400 0.339500,0.350000,-0.432300,0.691400,0.164800,-0.703400 0.050060,0.685100,0.459700,-0.222600,0.519200,-0.825100 0.537700,0.235000,-0.058530,0.955200,0.294600,-0.027330 -0.875200,-0.186600,-0.179100,-0.969900,0.032370,-0.241400 0.181600,-0.539400,-0.264500,0.102800,-0.989400,-0.102800 0.370200,0.572000,0.364900,0.825100,0.044430,0.563200 0.498300,-0.296500,-0.456900,0.863100,-0.132500,-0.487400 0.872600,-0.183800,0.052300,0.763400,0.315500,0.563600 -0.600300,-0.466300,-0.566800,-0.686700,-0.288500,-0.667200 -0.248000,0.041380,-0.723500,-0.263500,0.296300,-0.918000 -0.599500,0.264300,0.452400,-0.665100,0.260700,0.699800 0.183400,-0.180200,0.716700,0.360400,0.025440,0.932500 0.900300,0.355800,-0.060720,0.599900,0.142800,-0.787300 -0.361900,0.285000,0.610600,-0.303200,0.252400,0.918900 0.783800,0.049910,-0.057340,-0.662500,0.298100,-0.687200 0.560300,0.560300,0.063330,-0.279300,0.597600,0.751500 -0.653000,0.051830,0.502100,-0.652300,0.359300,0.667400 -0.526600,0.319500,0.504000,-0.685400,0.200700,0.700000 0.199600,-0.547400,-0.571700,0.000000,-1.000000,0.000000 -0.115600,-0.486600,-0.582800,-0.005158,-0.983100,-0.182800 -0.645300,0.716400,0.182800,-0.103200,0.994100,0.032560 -0.562500,-0.306900,0.637100,-0.498000,-0.120600,0.858800 0.165700,-0.507900,-0.443700,0.162700,-0.942600,-0.291700 -0.275600,-0.126600,0.754700,-0.235500,0.068910,0.969400 -0.010080,0.026250,0.733700,0.214100,0.298900,0.930000 0.875400,0.450600,0.054270,0.703300,0.375500,0.603700 -0.092170,-0.504000,-0.540000,-0.004629,-0.943900,-0.330200 -0.109000,0.708400,-0.510000,0.006420,0.854100,0.520100 -0.846900,-0.055970,-0.227800,-0.951100,0.199400,-0.236000 -0.290200,-0.504700,-0.705300,-0.255000,-0.342800,-0.904200 0.712700,-0.340800,0.068790,0.047220,0.534600,0.843800 -0.606100,-0.492000,0.370900,0.664000,-0.593300,-0.455100 -0.538700,0.631700,-0.444800,-0.717100,-0.008843,-0.696900 0.896600,-0.227100,-0.007613,0.994400,0.055510,-0.090250 -0.555100,0.707700,0.386700,-0.363800,0.860600,0.356500 0.708600,0.496700,-0.004638,-0.340800,-0.938600,-0.054400 -0.791500,-0.186800,-0.387800,-0.872900,0.033060,-0.486800 -0.750500,-0.316800,0.451200,-0.854600,-0.100300,0.509500 -0.607700,0.385800,0.406300,-0.686600,0.174200,0.705900 -0.716100,-0.337500,0.494300,-0.686600,-0.144100,0.712600 -0.756200,-0.547400,-0.008267,0.000050,-1.000000,-0.000000 -0.724900,-0.540900,-0.093420,0.936500,-0.147800,0.318100 0.170100,0.657900,-0.530100,0.484700,0.118600,-0.866600 -0.102000,-0.514100,0.083790,-0.076050,-0.952200,-0.295800 0.393200,0.707500,-0.255900,0.441500,0.860700,-0.253500 0.789000,-0.326100,-0.068450,-0.199700,0.286400,-0.937100 -0.766500,-0.451500,0.373700,-0.824700,-0.280000,0.491400 0.325900,0.660600,0.410000,0.722100,0.099810,0.684600 -0.825300,-0.547300,0.042010,-0.185200,-0.982700,0.002920 0.560800,0.167500,0.055490,0.936900,0.348800,-0.021670 0.473500,-0.370000,0.477100,0.718200,-0.139800,0.681700 -0.435500,0.713300,0.426000,0.199200,0.939900,-0.277400 -0.441300,0.315000,0.559700,-0.475800,0.227200,0.849700 -0.774300,0.088060,0.305900,-0.818700,0.314000,0.480800 0.327600,0.304200,-0.458100,0.668500,0.229200,-0.707500 -0.645300,-0.537500,0.311400,0.849300,-0.003558,-0.527800 -0.468500,0.456700,0.516600,-0.485700,0.136600,0.863400 0.510300,0.087370,-0.329000,0.816000,0.310800,-0.487300 -0.527600,-0.528400,0.224200,-0.206600,-0.970400,0.124800 -0.692800,0.547600,0.232400,-0.956400,0.054600,0.287000 0.166000,0.254200,-0.589600,0.470100,0.265500,-0.841700 0.601600,-0.417400,0.191000,0.943500,-0.228600,0.239900 -0.303000,-0.226800,0.753700,-0.242000,-0.025160,0.969900 0.399400,-0.042690,0.543900,0.694600,0.249800,0.674700 0.626500,-0.326700,0.161200,0.961100,-0.098120,0.258300 0.621800,-0.379400,0.146500,0.955700,-0.146900,0.255100 0.256200,-0.137000,0.669600,0.508500,0.082170,0.857100 0.183300,0.466700,-0.532900,0.484100,0.109600,-0.868100 0.259500,-0.213600,0.672900,0.516300,0.035510,0.855700 0.534100,0.212300,0.129400,0.911600,0.329300,0.246100 -0.673200,-0.501500,-0.028430,-0.334600,-0.942400,0.004823 0.253200,-0.196900,-0.672900,0.486700,0.032440,-0.872900 0.279400,0.507000,-0.460200,0.693000,0.053880,-0.718900 -0.700100,-0.525300,-0.435500,-0.694800,-0.349500,-0.628600 0.562800,-0.176900,-0.353700,0.853100,0.027580,-0.521100 -0.112200,0.696300,-0.588400,-0.005944,0.698900,-0.715200 0.375500,-0.508500,-0.343200,-0.853700,-0.109900,0.509100 0.831600,-0.157300,-0.069400,0.202400,0.120500,-0.971900 -0.163500,-0.510100,-0.059930,0.169900,-0.946500,0.274300 -0.718700,-0.026760,0.468700,-0.763500,0.214500,0.609100 0.431800,-0.011900,-0.499400,0.673700,0.242200,-0.698200 -0.508000,-0.067160,0.656200,-0.464300,0.184400,0.866300 0.488200,-0.466100,-0.410200,0.823000,-0.268200,-0.500800 -0.502000,-0.136800,0.670900,-0.472800,0.092350,0.876300 -0.851600,-0.216800,0.271800,-0.962700,0.014100,0.270300 0.400800,-0.547300,0.333800,-0.045180,-0.998400,-0.032930 0.152200,-0.032340,0.703900,0.267000,0.251200,0.930400 0.078800,0.276200,0.620900,0.256400,0.228000,0.939300 0.303000,-0.031650,-0.620700,0.474800,0.224900,-0.850900 0.265600,0.212500,0.548600,0.489500,0.336100,0.804600 0.341400,0.691800,0.169300,-0.751400,0.618900,-0.229100 0.112900,0.018230,-0.700200,0.234800,0.288000,-0.928400 -0.543000,0.218800,0.525400,-0.677300,0.267900,0.685200 -0.312300,-0.246800,-0.748400,-0.270600,-0.031340,-0.962200 -0.388200,0.429800,-0.564100,-0.509000,0.132100,-0.850600 0.131900,0.218300,0.622600,0.260400,0.294900,0.919400 0.486400,-0.277400,0.479900,0.718500,-0.057110,0.693100 -0.428300,-0.507600,0.440200,-0.161300,-0.944000,0.287700 -0.578100,-0.022210,0.605200,-0.640100,0.254500,0.724900 -0.657200,-0.506700,0.038650,-0.332300,-0.943200,0.004748 0.819500,-0.254000,-0.061660,-0.609300,0.100400,-0.786600 -0.296900,-0.501100,0.707300,-0.220000,-0.352600,0.909600 0.854200,0.272800,-0.057520,-0.705900,-0.015920,-0.708100 -0.332000,0.083960,-0.683800,-0.256200,0.351300,-0.900500 0.586500,-0.016810,0.241900,0.948900,0.187900,0.253600 -0.724500,0.018250,0.437000,-0.822500,0.287900,0.490400 -0.649300,-0.256900,0.568800,-0.696600,-0.032440,0.716800 0.299800,0.683200,0.240800,-0.731100,0.539700,-0.417400 0.249200,0.667100,-0.480400,0.676300,0.248700,-0.693400 -0.593200,-0.257500,-0.618100,-0.512100,-0.032750,-0.858300 -0.815500,-0.030040,-0.301000,-0.850900,0.224500,-0.475000 -0.517400,0.476800,0.477100,-0.685400,0.129500,0.716500 -0.586400,0.439500,-0.412100,-0.711100,0.134200,-0.690200 -0.284300,0.309900,0.624200,-0.202900,0.220500,0.954000 0.430600,0.631700,0.254600,0.873500,-0.027700,0.486000 -0.795600,-0.130100,-0.371500,-0.868700,0.098610,-0.485400 0.399900,-0.505500,-0.118700,0.317900,-0.943800,-0.090490 0.400800,-0.547400,-0.380500,0.000000,-1.000000,0.000000 0.128400,-0.367200,-0.719400,0.236700,-0.158000,-0.958700 0.113400,-0.071360,-0.722000,0.240900,0.164500,-0.956500 -0.649300,0.641000,-0.305900,-0.872900,0.009149,-0.487800 -0.876300,-0.156900,0.175100,-0.958500,0.088720,0.270900 0.525200,0.142300,0.259800,0.870300,0.329200,0.366400 -0.684000,0.714300,0.021880,-0.284500,0.958600,0.014530 -0.286700,-0.538900,-0.374000,-0.065220,-0.987300,-0.144600 0.603000,-0.461300,-0.142300,0.913400,-0.317900,-0.254200 -0.445900,0.494200,-0.521100,-0.509400,0.093200,-0.855400 -0.714300,0.689100,-0.097670,-0.756100,0.614800,-0.224300 -0.313100,0.072330,0.696600,-0.232900,0.347300,0.908400 0.068060,-0.509200,0.576900,-0.271300,0.016410,-0.962400 -0.597400,0.680100,-0.105700,0.836300,0.513900,0.191200 0.609700,-0.296700,-0.231500,0.956500,-0.101800,-0.273300 -0.897800,-0.198600,-0.088550,-0.996000,0.036330,-0.081530 0.560400,-0.096230,-0.340800,0.846200,0.190400,-0.497600 0.223600,0.697300,0.357700,-0.512000,0.701100,-0.496300 -0.122300,0.410600,-0.622400,-0.015270,0.157100,-0.987500 0.815000,0.082580,-0.066850,-0.424800,0.236800,-0.873800 0.267000,0.429200,0.490400,0.636600,0.147800,0.756900 0.189600,0.601400,0.522800,0.509800,0.023950,0.859900 0.831400,-0.251600,0.072220,-0.315700,0.001859,0.948800 -0.479000,0.027870,0.645000,-0.451900,0.280300,0.846900 -0.694100,0.441600,0.255900,-0.869600,0.113400,0.480600 0.230900,-0.032420,0.664300,0.501700,0.198200,0.842000 -0.752100,-0.126700,-0.448800,-0.869600,0.101500,-0.483300 -0.643500,-0.027400,0.542800,-0.679300,0.241900,0.692900 -0.691400,0.426400,-0.257400,-0.865500,0.135900,-0.482100 0.431700,0.097770,-0.449000,0.654200,0.347900,-0.671600 0.250800,0.587800,-0.482100,0.711000,0.006743,-0.703200 -0.574500,-0.399500,-0.608600,-0.500200,-0.222200,-0.836900 -0.839300,-0.533900,-0.035170,-0.933000,-0.359700,0.013340 -0.714900,0.391300,0.217200,-0.949000,0.164200,0.269100 0.289900,-0.273500,0.653100,0.508600,-0.055800,0.859200 -0.604600,0.140000,-0.500700,-0.671500,0.350000,-0.653100 0.624700,-0.027420,-0.068540,0.974800,0.221900,-0.024430 0.459400,-0.133600,0.503200,0.719700,0.124200,0.683100 -0.091760,-0.523100,-0.110400,-0.073980,-0.965900,0.248000 -0.112300,-0.076550,-0.759300,-0.014080,0.162100,-0.986700 0.353700,-0.544400,0.528200,0.494100,-0.722600,0.483400 -0.062130,-0.316600,0.768600,0.013610,-0.073700,0.997200 0.568200,-0.546500,0.141700,0.257600,-0.958300,0.124000 -0.450800,-0.117000,-0.696400,-0.507300,0.119400,-0.853500 0.481800,-0.538000,0.001777,-0.977800,-0.208900,0.016170 0.387700,0.708500,-0.038520,-0.489600,0.871900,0.008080 0.091830,-0.539800,-0.336300,0.063320,-0.991300,-0.115100 -0.880600,-0.386500,-0.097120,-0.962300,-0.186800,-0.197700 0.331600,-0.508800,-0.264100,0.287500,-0.942500,-0.170300 0.369000,0.486900,-0.370800,0.862600,0.068960,-0.501100 0.561700,-0.286200,-0.353100,0.852200,-0.048950,-0.521000 0.108400,-0.517500,0.446700,0.144600,-0.959400,0.242000 0.007138,-0.386900,0.751700,0.257600,-0.183900,0.948600 -0.152600,-0.503400,0.727700,0.027330,-0.345000,0.938200 -0.873300,-0.026540,0.092280,-0.974600,0.223500,0.014320 0.521100,0.300200,0.014170,0.970000,0.242900,-0.008394 -0.877400,-0.133500,-0.154400,-0.963600,0.097720,-0.249000 0.604800,-0.176900,-0.257700,0.959500,0.062050,-0.274600 0.621100,-0.253500,0.205400,0.971200,-0.038030,0.235100 -0.430300,0.143800,-0.622800,-0.482200,0.350800,-0.802700 -0.279900,0.708000,0.556700,-0.133100,0.860700,0.491400 -0.695000,0.125200,-0.412500,-0.797500,0.369000,-0.477300 -0.384400,-0.528600,-0.669300,-0.256100,-0.348900,-0.901500 -0.567600,0.661300,-0.413400,-0.709700,0.143100,-0.689800 -0.705500,0.343000,-0.261900,-0.855600,0.198600,-0.478100 0.257900,0.679300,0.472900,0.622200,0.409000,0.667500 0.854600,0.500000,-0.038370,0.736400,0.549000,-0.395300 -0.122300,0.662100,0.223100,0.016490,0.999900,0.000000 -0.494600,0.662500,0.162800,0.008274,1.000000,-0.000023 0.439000,0.198200,-0.368800,0.829700,0.285300,-0.479900 0.548500,-0.255600,0.381000,0.875800,-0.038000,0.481100 -0.721400,0.507300,0.141400,-0.959200,0.081530,0.270700 -0.072090,0.662100,0.243200,-0.016540,0.999900,0.000000 -0.253200,0.662100,-0.209500,-0.011040,0.999900,-0.002727 -0.697200,-0.048980,-0.492700,-0.700400,0.214400,-0.680800 -0.293400,0.662500,0.253300,0.000000,1.000000,0.000000 -0.534900,0.662500,0.021910,-0.016570,0.999900,-0.000002 0.048670,-0.547400,0.645700,0.000000,-1.000000,0.000000 0.502400,0.538000,0.052520,0.288800,0.691800,0.661800 -0.725100,0.403000,-0.171700,-0.956900,0.159900,-0.242600 -0.404100,0.662100,-0.058570,0.000000,1.000000,0.000000 -0.404100,-0.547000,-0.078700,0.016970,-0.999900,0.003192 0.088840,0.662800,0.323700,-0.000001,1.000000,0.000000 -0.062010,0.662800,-0.390600,0.016490,0.999900,0.000000 0.038610,0.662100,0.364000,0.000000,1.000000,0.000000 -0.092260,-0.276900,0.773000,0.008724,-0.059540,0.998200 -0.414100,0.662300,0.162700,0.013810,0.999800,-0.011000 -0.212900,-0.547400,0.625500,0.000182,-1.000000,-0.000414 0.438500,0.328500,0.303700,0.851400,0.206500,0.482200 -0.313500,-0.547200,0.233200,0.001018,-1.000000,-0.000836 0.754000,-0.005486,0.043670,-0.886200,0.148500,0.439000 0.479800,0.047360,-0.409300,0.796600,0.349400,-0.493400 0.199700,0.716400,-0.431000,-0.053920,0.995800,0.074550 -0.622500,0.466300,0.370000,-0.855200,0.110600,0.506400 -0.243100,-0.545700,-0.320000,-0.015010,-0.998600,-0.051070 0.189400,-0.546500,-0.068610,0.036200,-0.999300,-0.010240 0.356400,0.418800,0.400300,0.713100,0.106800,0.692900 -0.293800,-0.536400,-0.048610,0.178400,-0.983000,0.044170 0.094310,0.436400,-0.583000,0.246300,0.129300,-0.960500 0.564900,-0.057480,0.319900,0.855400,0.178100,0.486300 -0.515800,-0.470800,0.625900,-0.466900,-0.284100,0.837400 0.018030,0.714200,0.543400,0.072430,0.967600,0.241800 0.545900,-0.496100,-0.296600,0.831500,-0.302400,-0.466100 -0.202900,-0.545600,-0.239900,0.015930,-0.998500,0.053300 -0.737400,0.494400,0.042270,-0.995200,0.096330,0.016470 -0.847800,-0.432800,-0.184100,-0.942200,-0.234400,-0.239200 0.183500,0.608200,-0.523300,0.487500,0.004995,-0.873100 0.018330,-0.545300,-0.319900,0.031600,-0.997500,-0.062500 -0.101500,-0.495200,-0.019220,-0.244200,-0.942000,0.230300 -0.411400,0.537400,0.540000,-0.486600,0.060320,0.871500 -0.576600,0.060350,-0.572100,-0.587800,0.333800,-0.736900 -0.743400,0.071620,-0.367600,-0.817800,0.350100,-0.456700 0.513700,-0.049600,0.408900,0.847600,0.259200,0.463000 0.416700,0.123100,0.450400,0.667000,0.395300,0.631500 -0.303200,-0.543500,0.323200,-0.054650,-0.993700,0.097850 -0.664100,-0.495900,0.493000,-0.654500,-0.325900,0.682200 -0.528700,-0.539100,0.048330,-0.154300,-0.988000,0.007823 -0.294100,-0.547200,0.588100,0.101300,-0.943800,-0.314700 0.429000,0.530700,0.263800,0.864500,0.090750,0.494300 0.175800,-0.464800,0.681900,0.472400,-0.304800,0.827000 -0.499900,0.233700,0.551100,-0.465900,0.305700,0.830400 -0.232600,-0.196800,-0.769300,-0.103900,0.032300,-0.994100 -0.102200,0.716100,0.535700,-0.000106,0.989100,-0.147000 -0.685900,0.608200,0.246800,-0.908100,0.005122,0.418700 0.159600,-0.518600,-0.534700,-0.497100,0.000279,0.867700 -0.011780,-0.547400,-0.692100,0.006673,-0.999600,-0.026470 -0.898100,-0.236400,-0.039010,-0.999500,-0.029460,0.015180 -0.812800,-0.268300,-0.349000,-0.871200,-0.040990,-0.489200 0.439500,-0.494700,0.081830,0.380600,-0.920700,0.086530 -0.254100,-0.532900,-0.089420,0.157200,-0.982000,0.104800 -0.522400,0.042420,0.616400,-0.447600,0.301800,0.841800 0.404700,0.211800,0.418300,0.691000,0.326000,0.645200 -0.513100,-0.521000,0.302300,-0.208200,-0.966200,0.151700 -0.440900,-0.526100,0.645800,-0.464900,-0.314100,0.827800 0.492900,0.079500,0.367900,0.820100,0.328600,0.468500 0.148100,-0.486200,-0.683500,0.331800,-0.278200,-0.901400 0.479800,0.530800,0.104700,0.967200,0.092850,0.236400 0.420800,-0.498500,0.484800,0.673400,-0.323800,0.664500 -0.647500,0.315200,0.378000,-0.836400,0.228900,0.498000 -0.033300,0.022390,-0.735400,0.145300,0.283900,-0.947800 0.702800,0.548600,-0.070650,-0.008835,-0.051100,-0.998700 0.139900,0.386000,-0.570300,0.481500,0.164100,-0.861000 -0.212200,-0.336200,0.768000,-0.071240,-0.109500,0.991400 -0.880100,-0.396300,-0.018440,-0.976600,-0.214600,0.013970 -0.331600,-0.107300,0.738400,-0.261700,0.151100,0.953300 0.087700,0.083250,-0.683800,0.230200,0.349400,-0.908300 -0.371600,0.365400,0.586500,-0.460100,0.180100,0.869400 0.129800,-0.520000,-0.419900,0.128500,-0.964400,-0.231000 0.484100,0.648100,0.001882,0.999000,0.037340,-0.025280 0.755400,0.587400,0.016090,0.390600,0.906700,0.159000 -0.562000,0.351500,-0.458100,-0.702900,0.197700,-0.683200 0.416000,0.685900,0.261400,0.739500,0.544600,0.395800 0.116800,-0.446700,0.705500,0.270000,-0.287100,0.919100 0.525100,-0.087210,-0.396900,0.839800,0.160100,-0.518700 0.026520,0.486700,-0.594200,0.244700,0.095760,-0.964800 0.233400,-0.399900,0.667300,0.485600,-0.225300,0.844600 -0.129000,-0.503400,-0.724300,-0.013330,-0.341200,-0.939900 -0.728900,0.587900,0.100200,-0.972300,0.023990,0.232600 0.492800,0.039310,0.398000,0.839800,0.263800,0.474600 -0.860500,-0.057220,0.181000,-0.945000,0.192600,0.264300 0.439900,-0.326600,-0.520100,0.692000,-0.115200,-0.712600 0.556000,-0.407200,-0.327400,0.830800,-0.243300,-0.500500 0.403500,-0.220100,0.568000,0.717100,0.002416,0.696900 -0.013110,-0.206900,-0.767800,0.244400,0.028130,-0.969300 -0.622900,0.341600,-0.398300,-0.703000,0.198000,-0.683100 0.432900,0.242300,0.358700,0.833000,0.298100,0.466200 0.620300,-0.438900,-0.088280,0.967400,-0.253000,-0.005854 -0.346900,0.684800,0.436300,0.419800,0.525300,-0.740200 0.366000,-0.544900,0.368800,-0.524000,-0.766900,-0.370700 0.043090,-0.197600,-0.753300,0.247400,0.031520,-0.968400 -0.448300,0.641800,-0.513400,-0.512400,0.010760,-0.858700 0.581800,-0.369700,0.296500,0.866400,-0.129500,0.482400 0.298200,-0.487400,-0.400400,0.264800,-0.936500,-0.230100 0.638000,-0.136700,0.121500,0.965400,0.123300,0.229900 -0.062130,0.517600,-0.611200,0.028790,0.066350,-0.997400 -0.172800,0.193100,0.678000,0.013600,0.347400,0.937600 -0.152500,0.316100,-0.639900,-0.014030,0.221900,-0.975000 0.585500,0.092580,0.100800,0.912600,0.325900,0.247100 -0.142200,0.483100,-0.613000,-0.015920,0.100100,-0.994900 -0.578500,-0.543900,-0.403900,0.480400,-0.741200,0.468800 0.566600,0.013490,0.281300,0.850700,0.319200,0.417700 0.924000,0.331000,-0.033830,0.922800,0.144600,-0.357100 -0.721800,-0.397700,-0.467000,-0.700000,-0.218700,-0.679800 -0.000180,0.317500,0.633100,0.264500,0.209000,0.941500 -0.884500,-0.367300,0.052050,-0.987300,-0.158100,0.014120 -0.088930,0.066140,0.723600,0.018870,0.348300,0.937200 0.349400,-0.524900,-0.048510,0.258800,-0.965900,-0.006471 0.132600,0.654700,0.556400,0.501500,0.066420,0.862600 0.037780,-0.537900,0.091520,-0.154600,-0.984000,-0.088410 -0.441600,-0.106900,0.701000,-0.480500,0.154800,0.863200 0.230200,-0.313400,0.684400,0.506500,-0.074460,0.859000 0.547700,0.084480,0.262900,0.885000,0.362700,0.291800 -0.022030,-0.533900,0.423400,0.050710,-0.982400,0.179600 -0.262900,-0.532100,-0.419500,-0.051530,-0.981900,-0.182500 -0.092160,-0.532500,-0.439700,-0.001846,-0.982400,-0.186700 -0.856400,-0.480700,0.088920,-0.956300,-0.291900,0.018200 0.102300,0.421100,0.584100,0.279300,0.111700,0.953700 -0.362000,0.194800,-0.632900,-0.263200,0.313000,-0.912500 0.420500,-0.498300,-0.267900,-0.923300,-0.104000,0.369600 0.469400,-0.371700,-0.481800,0.700900,-0.153900,-0.696500 0.314900,0.071950,-0.575800,0.649400,0.356500,-0.671700 0.458100,0.467800,0.213000,0.968300,0.106500,0.226000 0.049050,-0.536500,-0.038590,-0.176000,-0.983300,0.045800 0.010350,0.470300,0.603700,0.266000,0.148100,0.952500 0.257000,0.255300,0.538900,0.489100,0.289700,0.822800 0.209400,-0.017260,-0.669200,0.475000,0.231000,-0.849100 -0.243800,-0.533800,0.113100,0.135100,-0.982600,-0.127400 -0.001322,-0.547300,0.606500,-0.028680,-0.986600,-0.160900 -0.524500,-0.256800,0.662400,-0.485100,-0.046840,0.873200 0.491600,0.132100,-0.327200,0.806600,0.347900,-0.477800 0.195900,0.062130,-0.649300,0.457100,0.347500,-0.818700 0.433000,-0.495800,-0.473000,0.658400,-0.319600,-0.681400 -0.590000,-0.544500,-0.536400,-0.416100,-0.814600,-0.404200 0.322300,0.088300,0.566400,0.562400,0.344500,0.751700 0.434200,-0.509300,0.244400,-0.874300,0.016920,-0.485100 -0.488900,0.400900,0.514100,-0.484000,0.122000,0.866500 0.614600,-0.157200,-0.217400,0.955900,0.089330,-0.279800 -0.715900,0.598100,0.145100,-0.962000,0.017000,0.272400 -0.115700,0.700500,0.587700,0.002212,0.742600,0.669800 -0.614200,0.534100,-0.370500,-0.754000,0.060630,-0.654100 -0.544900,-0.497500,0.434500,0.653600,-0.343300,-0.674600 -0.522000,-0.530800,-0.207900,-0.174000,-0.980000,-0.096870 -0.472100,-0.306800,0.687600,-0.489700,-0.088240,0.867400 -0.611400,-0.511900,-0.366400,0.787100,-0.067670,0.613100 -0.737400,0.467700,-0.087310,-0.963600,0.110100,-0.243700 0.391000,0.218700,-0.428400,0.677300,0.276800,-0.681600 -0.172600,0.109900,-0.704000,-0.013330,0.362700,-0.931800 -0.658400,0.106400,-0.464000,-0.669200,0.359200,-0.650500 0.628700,-0.407200,0.091690,0.960900,-0.235800,0.145200 -0.001238,-0.535600,0.122900,-0.130700,-0.983200,-0.127100 0.513900,0.243800,0.170800,0.926700,0.286200,0.243500 0.777400,-0.184900,-0.018760,-0.854400,-0.477800,-0.204100 -0.383100,-0.176700,0.732400,-0.246200,0.056360,0.967600 0.665300,0.586600,0.060580,0.026050,0.704400,0.709300 0.397900,0.638500,-0.310200,0.849600,-0.000517,-0.527400 -0.231800,0.129900,-0.693600,-0.177900,0.363800,-0.914300 -0.372100,-0.316700,-0.726500,-0.270200,-0.099400,-0.957600 0.362400,0.685800,-0.069070,-0.849000,0.512700,0.127800 0.494500,0.446300,0.080660,0.829800,-0.025230,0.557400 0.002052,0.401100,0.615400,0.262600,0.135400,0.955400 0.870500,0.045290,-0.017120,0.866300,-0.463800,-0.185500 -0.484000,-0.535200,-0.229300,-0.160600,-0.982900,-0.090190 0.263200,0.697300,0.316800,-0.508800,0.700600,-0.500400 0.467000,0.677500,0.122500,0.887500,0.398000,0.232300 0.343900,0.709400,-0.331800,0.384300,0.890100,-0.244800 -0.062130,-0.426300,0.749300,0.014670,-0.200500,0.979600 0.427200,-0.273400,0.541500,0.716500,-0.043210,0.696300 -0.323600,0.662500,0.333800,-0.016580,0.999900,0.000000 -0.172700,0.662500,0.233200,-0.000033,1.000000,0.000017 -0.243100,0.662500,0.052090,0.013780,0.999900,0.005491 -0.303500,0.662500,-0.048510,0.016450,0.999900,0.000000 -0.062040,0.662500,-0.088750,-0.000000,1.000000,0.000000 0.460600,0.527200,-0.174100,0.957900,0.075130,-0.277000 0.173200,-0.509300,0.437400,0.170300,-0.943500,0.284100 -0.011680,0.662100,0.374000,0.016490,0.999900,0.000000 0.649200,-0.236800,0.021930,0.998800,-0.048240,-0.011500 0.445900,0.456600,-0.246800,0.909300,0.105700,-0.402500 0.051730,-0.447600,0.723900,0.265000,-0.271000,0.925400 -0.376000,-0.496300,-0.502500,-0.195700,-0.924800,-0.326300 -0.092180,0.662100,0.072220,-0.000050,1.000000,-0.000000 -0.233000,0.662100,-0.400600,-0.002740,1.000000,-0.002735 0.400100,-0.291900,-0.563500,0.693900,-0.095640,-0.713700 -0.172600,0.662100,-0.179300,0.016490,0.999900,0.000000 -0.454300,-0.546200,-0.008275,-0.037660,-0.999300,0.000548 -0.092170,0.662100,-0.008264,0.011060,0.999900,0.002754 0.618200,-0.116700,0.192000,0.964500,0.126800,0.231700 -0.381600,0.122600,0.659300,-0.296400,0.338700,0.893000 -0.555300,0.221500,-0.511700,-0.684800,0.297200,-0.665400 -0.801700,-0.496700,0.282100,-0.902700,-0.322200,0.285200 0.614300,-0.177000,0.231100,0.966600,0.019480,0.255500 -0.743200,-0.416500,0.429900,-0.836500,-0.225200,0.499600 0.625700,-0.236700,-0.187500,0.958100,-0.028460,-0.284900 -0.092190,-0.546400,0.273500,-0.002736,-0.999300,-0.037200 -0.222200,-0.166800,0.772500,-0.172300,0.071350,0.982500 -0.296400,0.618300,0.585000,-0.244100,-0.006856,0.969700 -0.012870,0.224400,-0.657300,0.235500,0.293000,-0.926600 -0.072160,0.684600,0.600000,0.012430,0.506200,0.862300 -0.092180,0.497600,0.614300,0.012090,0.052200,0.998600 -0.526100,0.714200,-0.341500,0.159600,0.973600,0.163000 -0.443000,-0.494300,-0.511400,0.490100,-0.474300,0.731400 -0.453900,-0.535600,0.273000,-0.137900,-0.982800,0.122900 -0.202700,-0.543400,-0.359800,-0.029560,-0.994200,-0.103700 0.065650,-0.423100,-0.723400,0.240800,-0.227300,-0.943600 -0.660300,-0.498700,0.286300,0.837100,-0.309600,-0.451100 0.491300,-0.547400,0.313700,0.005882,-1.000000,0.002089 0.615000,-0.107200,-0.197400,0.948100,0.146600,-0.282100 0.624900,-0.326500,-0.167100,0.960500,-0.092030,-0.262800 0.084310,0.618300,-0.573100,0.247700,-0.004681,-0.968800 -0.302400,-0.367100,-0.738700,-0.268200,-0.160500,-0.949900 0.449000,0.076270,0.442500,0.663700,0.359400,0.656000 -0.711600,0.667200,0.151500,-0.937100,0.235100,0.257900 0.457200,-0.253300,0.511200,0.716300,-0.049090,0.696100 -0.588400,-0.518300,0.189700,-0.254100,-0.963900,0.080290 -0.230900,0.496700,0.607100,-0.253500,0.074650,0.964500 -0.867500,-0.085800,-0.167600,-0.955300,0.165000,-0.245300 0.130000,0.668200,0.402300,-0.203000,0.803700,-0.559300 -0.645900,0.060120,-0.501800,-0.673900,0.342100,-0.654800 -0.729900,-0.498600,0.072230,0.961100,-0.274200,-0.032510 0.673000,-0.298600,0.034170,0.510700,0.795100,0.326900 -0.490200,-0.435800,0.651500,-0.477300,-0.228500,0.848500 -0.735000,-0.024740,-0.442600,-0.838200,0.224700,-0.497000 -0.282800,-0.513000,-0.489300,-0.084980,-0.950200,-0.299900 -0.859200,0.031270,-0.027640,-0.957400,0.288500,0.013330 0.146200,0.507500,-0.549100,0.483800,0.083680,-0.871200 -0.844700,0.028360,0.156500,-0.921400,0.287900,0.260900 0.038500,-0.545700,0.303400,0.028150,-0.998500,0.047650 0.905600,0.196600,-0.060140,0.649500,-0.113400,-0.751800 -0.212900,-0.517000,-0.718000,-0.020590,-0.349100,-0.936900 -0.142800,-0.522400,0.114100,0.042810,-0.965100,-0.258300 0.580200,-0.439000,0.256700,0.927700,-0.289100,0.236200 -0.543600,-0.532000,-0.148800,-0.183800,-0.981800,-0.047260 0.232100,0.219200,-0.564300,0.465500,0.298300,-0.833200 -0.261300,0.183200,-0.665500,-0.258900,0.323000,-0.910300 -0.162700,-0.537900,0.182800,0.041790,-0.984300,-0.171200 -0.634600,0.577900,0.334600,-0.858400,0.026180,0.512300 -0.263700,-0.542500,-0.169800,0.072230,-0.993800,0.084470 -0.012270,-0.216800,0.772800,0.118900,0.023820,0.992600 -0.514800,0.716700,0.374100,0.036030,0.998700,-0.036920 0.741200,0.545300,0.073700,0.051610,0.115300,0.992000 -0.786400,0.146100,-0.203300,-0.908300,0.347200,-0.233100 -0.743800,0.426800,0.091840,-0.981700,0.136100,0.133300 -0.521800,0.142000,-0.569000,-0.476600,0.349700,-0.806600 0.452000,0.707600,0.035360,0.523300,0.852100,-0.006396 0.158500,-0.523400,-0.389400,0.143100,-0.966200,-0.214500 -0.443600,0.228900,0.584500,-0.446500,0.267500,0.853900 -0.011280,-0.538500,-0.150900,-0.095800,-0.986400,0.133300 0.651400,-0.298100,-0.055690,0.805800,0.404800,-0.432300 0.149300,-0.547400,-0.632000,0.000000,-1.000000,0.000000 0.366300,-0.536400,-0.516900,0.645000,-0.376300,-0.665100 -0.804300,0.024700,-0.291000,-0.835700,0.288700,-0.467100 0.378800,-0.127000,-0.579700,0.694200,0.085930,-0.714600 -0.585000,0.534100,-0.400600,-0.716000,0.058220,-0.695700 0.251900,0.680700,-0.309700,-0.608400,0.518600,0.600700 -0.061650,0.666600,0.473900,-0.087330,0.845600,-0.526600 -0.694800,0.165600,-0.382200,-0.822800,0.331100,-0.462000 0.483500,0.577800,-0.058460,0.999200,0.039970,-0.008810 0.259900,0.662100,0.182900,-0.016540,0.999900,0.000000 -0.858300,-0.205300,-0.248800,-0.967900,0.032000,-0.249400 -0.809500,-0.367700,0.338200,-0.847500,-0.162100,0.505500 0.142000,-0.327700,-0.722200,0.245900,-0.116700,-0.962200 0.313900,-0.126900,-0.633400,0.484800,0.103000,-0.868500 -0.856400,-0.371900,-0.203200,-0.956500,-0.160700,-0.243600 -0.646000,-0.119500,-0.562100,-0.711300,0.113600,-0.693600 0.107800,-0.146800,-0.733800,0.245000,0.098360,-0.964500 -0.726400,0.405900,0.167700,-0.949400,0.161500,0.269200 0.390100,0.147400,-0.462700,0.642700,0.384800,-0.662400 -0.628200,-0.346600,0.577900,-0.688600,-0.155200,0.708400 -0.222300,0.689100,-0.590600,-0.219300,0.597300,-0.771500 0.763700,0.010530,-0.049200,-0.785400,0.205100,-0.584000 0.177300,-0.046770,-0.694900,0.474600,0.220300,-0.852200 -0.062100,0.608200,0.609000,0.019810,0.018690,0.999600 0.475300,0.598100,0.110800,0.970800,0.013710,0.239500 -0.152500,0.662100,0.454500,0.016600,0.999800,-0.013290 -0.658400,0.697900,0.255500,-0.628000,0.673800,0.389300 0.455300,-0.426200,0.479000,0.702100,-0.204200,0.682200 -0.711400,0.638400,-0.158000,-0.970300,0.004541,-0.242000 0.629500,-0.397400,-0.088700,0.974500,-0.223900,0.015690 0.479900,0.269300,-0.260000,0.852800,0.258000,-0.454000 -0.877300,-0.326100,0.157800,-0.957000,-0.106500,0.269800 -0.033260,0.305000,-0.640200,0.233900,0.232000,-0.944200 -0.232100,-0.306600,-0.765600,-0.092870,-0.094670,-0.991200 -0.202900,0.662100,0.414300,-0.016540,0.999900,0.000000 -0.012540,-0.046280,0.753500,0.166900,0.243400,0.955500 -0.383900,-0.547400,-0.571700,0.001087,-1.000000,0.002748 0.179400,0.662500,0.162800,-0.016510,0.999900,0.000000 -0.373900,0.662100,0.243200,-0.000050,1.000000,0.000000 -0.528900,0.406300,0.478500,-0.691700,0.125000,0.711300 0.219600,0.662500,0.082280,-0.016570,0.999900,0.000000 0.098970,0.662100,-0.390600,-0.002482,1.000000,0.004861 -0.152600,-0.286900,0.773100,0.019780,-0.070380,0.997300 -0.424200,0.662500,-0.219500,0.016520,0.999900,0.000000 -0.374100,-0.545500,-0.038520,0.056530,-0.998300,0.012330 -0.272800,0.072360,0.706600,-0.242200,0.375100,0.894800 -0.554800,0.537500,0.434100,-0.687900,0.051620,0.723900 -0.474500,0.662500,0.021910,0.016450,0.999900,-0.000002 -0.102300,0.662300,-0.290000,-0.016570,0.999800,-0.008254 -0.209300,0.689800,0.595000,-0.181100,0.585400,0.790200 -0.603500,-0.512800,-0.198500,-0.277200,-0.950100,-0.142900 0.048640,0.662100,0.031970,-0.016540,0.999900,0.000000 -0.733500,0.567900,-0.008316,-0.999400,0.031980,0.014270 0.531600,-0.547400,-0.018330,0.000000,-1.000000,0.000000 -0.122400,-0.518600,0.607500,-0.014290,0.000000,-0.999900 -0.343000,-0.531100,0.392800,-0.094200,-0.981200,0.168600 0.027350,0.224400,-0.647200,0.235500,0.293100,-0.926600 -0.684000,0.713800,-0.068260,-0.267800,0.961500,-0.061300 -0.031840,-0.546000,-0.320100,0.009600,-0.999300,-0.037220 0.365000,-0.489300,0.312400,0.339400,-0.926200,0.164200 0.047030,-0.386600,-0.736500,0.240300,-0.192300,-0.951500 -0.372700,0.245800,-0.613800,-0.264300,0.271500,-0.925400 0.102900,0.522500,-0.571100,0.368900,0.053150,-0.927900 0.644800,-0.147100,-0.028300,0.995000,0.097190,-0.022470 0.192300,0.513700,0.525200,0.506500,0.092860,0.857200 0.503800,0.355100,0.100400,0.948200,0.215700,0.233200 -0.333700,0.662800,-0.239700,0.000001,1.000000,0.000000 0.219700,0.662100,-0.209500,0.000000,1.000000,0.000000 0.281200,0.374900,-0.482000,0.678200,0.196000,-0.708300 -0.568600,-0.463100,-0.593300,-0.490700,-0.288000,-0.822400 -0.041880,-0.547400,-0.622000,-0.001716,-1.000000,0.003485 0.320200,0.662500,-0.048520,-0.030340,0.999500,-0.005546 -0.524800,0.662500,-0.028390,-0.000050,1.000000,0.000000 0.058660,0.662800,-0.279900,0.000007,1.000000,0.000007 -0.343700,-0.547400,-0.581700,0.006653,-0.999800,0.016930 0.866500,-0.309800,-0.049740,0.723800,-0.383900,-0.573300 -0.041860,-0.546800,-0.269900,-0.008384,-0.999400,0.033510 0.119300,-0.545400,0.062210,-0.060790,-0.998000,-0.015380 0.398400,0.587900,-0.310000,0.858600,0.023880,-0.512000 -0.731700,-0.518500,-0.058440,0.999000,0.013790,0.043260 0.638500,-0.116700,-0.118000,0.966400,0.113500,-0.230700 0.277100,0.466400,-0.467900,0.691800,0.117900,-0.712400 -0.704900,-0.276800,0.513700,-0.695700,-0.061990,0.715700 -0.102400,-0.496000,0.729500,0.005065,-0.338600,0.940900 -0.142600,-0.386400,0.758900,0.010390,-0.203100,0.979100 0.621000,-0.293600,0.195300,0.964400,-0.099350,0.245100 0.529200,0.163800,-0.207000,0.913100,0.315200,-0.258600 -0.132400,-0.546000,0.263400,-0.000576,-0.999100,-0.042270 0.616900,-0.456600,0.042100,0.947200,-0.320500,-0.002301 0.028530,0.662100,-0.430800,-0.022430,0.998400,0.051130 -0.052640,0.557700,-0.608100,0.115800,0.043460,-0.992300 0.088840,-0.547000,-0.219500,0.019150,-0.999600,-0.019810 -0.665600,0.429400,-0.303000,-0.864100,0.137300,-0.484200 0.021000,0.258600,0.641900,0.253800,0.247400,0.935100 -0.897200,-0.176500,-0.048520,-0.998900,0.045330,0.014210 -0.441200,0.685500,-0.506000,-0.443400,0.520200,-0.730000 -0.364100,-0.545100,0.052180,0.074040,-0.997100,-0.019520 -0.424400,-0.538100,0.528100,0.502800,-0.067580,-0.861700 0.241200,0.390700,0.513800,0.508400,0.202700,0.836900 0.533200,-0.090200,0.388000,0.859600,0.152800,0.487700 -0.045340,-0.010190,0.746700,0.016570,0.212200,0.977100 -0.655900,0.716300,0.092400,0.105800,0.993700,-0.036350 0.247500,-0.496700,-0.419600,0.267300,-0.923700,-0.274400 -0.687800,-0.147100,0.526800,-0.694500,0.080960,0.714900 0.289100,-0.504600,-0.349400,0.230200,-0.945400,-0.230800 -0.281700,-0.075660,-0.744100,-0.273600,0.164300,-0.947700 -0.468500,-0.052010,0.675100,-0.470200,0.211600,0.856800 0.199900,0.369600,0.542900,0.495800,0.197700,0.845600 -0.872400,-0.056840,-0.127900,-0.952000,0.193500,-0.237100 -0.060520,-0.513100,0.053310,-0.239100,-0.951700,-0.192700 0.334200,-0.525500,0.559100,0.693700,-0.324400,0.643000 -0.876300,-0.301700,-0.162900,-0.964700,-0.097320,-0.244800 -0.522800,-0.492100,-0.408800,-0.288000,-0.915700,-0.280200 -0.738000,0.044020,-0.397600,-0.834300,0.304100,-0.459800 0.229200,-0.371700,-0.671800,0.481400,-0.162700,-0.861200 -0.593400,0.142600,0.512800,-0.662500,0.351300,0.661500 0.331600,0.441500,-0.419300,0.704000,0.079960,-0.705600 0.478900,-0.276700,-0.488600,0.705200,-0.061940,-0.706300 0.219000,-0.542500,-0.158900,0.098780,-0.993700,-0.052720 -0.736800,0.519500,-0.058590,-0.997700,0.066460,-0.014920 -0.403900,-0.499600,0.479900,-0.169300,-0.938600,0.300700 -0.297100,0.454300,-0.591500,-0.272500,0.128500,-0.953500 -0.487300,0.045250,-0.632000,-0.488800,0.305500,-0.817200 -0.896200,-0.176600,0.021890,-0.998900,0.045200,0.014270 -0.122400,-0.545100,0.353600,0.001023,-0.997200,0.074830 -0.780400,-0.037270,-0.367200,-0.851600,0.225300,-0.473400 -0.634000,-0.416400,0.553500,-0.679000,-0.224900,0.698800 0.306300,-0.530200,-0.139500,0.195700,-0.979200,-0.054140 -0.169300,-0.539900,-0.396800,-0.003442,-0.991200,-0.132000 -0.814300,0.072000,-0.208400,-0.909000,0.348400,-0.228700 -0.628200,0.571100,-0.344800,-0.872700,0.028000,-0.487400 -0.635300,-0.511900,-0.327100,0.863900,-0.083230,0.496800 0.306200,-0.457200,0.606200,0.492300,-0.285200,0.822300 0.299900,0.716200,0.353700,0.072640,0.994900,0.070520 0.048260,-0.547300,-0.680700,0.043640,-0.971700,-0.232100 -0.596000,-0.451300,0.578300,-0.669600,-0.279100,0.688300 -0.318000,-0.519000,0.461100,-0.122700,-0.964800,0.232600 0.801200,0.409100,0.022280,-0.882300,-0.429100,0.193200 0.202000,0.672200,-0.509100,0.473700,0.301100,-0.827600 0.571700,-0.524300,0.176700,0.916000,-0.341400,0.210700 -0.010150,-0.522900,-0.018670,-0.254700,-0.965900,0.045830 0.594300,-0.087310,-0.257600,0.947300,0.141400,-0.287600 0.470800,-0.468800,0.445300,0.754500,-0.278400,0.594400 -0.372100,-0.276300,0.734500,-0.246900,-0.030290,0.968600 -0.643400,0.395900,0.354000,-0.847100,0.163600,0.505600 0.291300,-0.513300,0.593800,0.489100,-0.324300,0.809700 -0.832700,-0.025800,0.253000,-0.937400,0.225600,0.265200 -0.423500,-0.529900,0.344000,-0.144000,-0.978300,0.148600 -0.112400,0.366300,0.632600,0.004360,0.163600,0.986500 0.521500,-0.486000,-0.343000,0.830400,-0.269400,-0.487700 0.559900,-0.398600,0.325000,0.845700,-0.271200,0.459600 0.166700,0.700000,-0.507800,0.325300,0.757900,-0.565600 -0.535400,-0.537600,-0.059130,-0.173800,-0.983900,-0.042130 -0.381800,-0.046620,0.714400,-0.236400,0.224500,0.945400 -0.494200,-0.547400,-0.591100,-0.039760,-0.997100,-0.065100 0.674300,-0.395100,0.047230,-0.293800,-0.799600,0.523800 -0.251400,-0.515800,0.712600,-0.229400,-0.346700,0.909500 0.153600,0.524100,0.547600,0.508900,0.096300,0.855400 0.082550,-0.249300,0.746100,0.279600,-0.060550,0.958200 -0.311900,-0.166900,-0.747200,-0.270600,0.066430,-0.960400 -0.009280,0.507300,-0.601200,0.246400,0.079210,-0.965900 -0.482200,0.684900,0.487400,-0.483000,0.475400,0.735300 -0.657000,0.577900,0.297100,-0.858900,0.026140,0.511500 0.108000,-0.496700,0.516500,0.187600,-0.926900,0.325200 -0.568300,-0.518300,0.229700,-0.229600,-0.963700,0.136300 -0.749900,0.365600,0.110600,-0.946700,0.190600,0.259600 -0.418900,0.007913,0.685700,-0.460900,0.307000,0.832700 0.390500,0.421200,-0.349700,0.846800,0.156600,-0.508400 -0.620700,-0.506000,0.530200,-0.654100,-0.344600,0.673400 -0.481800,0.397300,-0.514000,-0.506200,0.165000,-0.846500 0.310100,-0.521900,0.424100,-0.717200,0.000001,-0.696900 -0.382500,-0.516200,0.679600,-0.247200,-0.364400,0.897800 -0.553900,0.574500,-0.429900,-0.716900,0.026280,-0.696700 0.427400,0.571000,0.262900,0.877800,0.022460,0.478400 0.477100,0.233600,-0.284800,0.825400,0.288700,-0.485200 -0.679000,-0.343400,-0.524800,-0.708700,-0.153100,-0.688700 -0.071990,-0.306900,-0.768300,-0.014180,-0.097260,-0.995200 -0.152500,0.648200,-0.606300,-0.014230,0.040710,-0.999100 -0.192800,0.662500,-0.048510,0.000000,1.000000,0.000000 -0.504700,-0.547400,0.555100,0.000000,-1.000000,0.000000 0.219700,-0.547400,0.555100,0.000000,-1.000000,0.000000 -0.858100,-0.126800,0.228400,-0.956400,0.101500,0.273700 0.338800,0.713900,0.322800,0.226900,0.965500,0.127700 -0.886800,-0.086590,-0.018500,-0.986700,0.162200,0.013170 -0.697700,-0.538100,0.201000,0.955200,-0.103800,-0.277200 -0.102200,0.456600,-0.616500,-0.014230,0.121000,-0.992600 0.356600,0.672200,0.011810,-0.754500,0.656100,0.015870 -0.636800,0.470000,-0.344000,-0.867800,0.104700,-0.485700 0.491300,-0.547400,-0.279900,0.000000,-1.000000,0.000000 -0.426100,0.332900,-0.561300,-0.502500,0.204500,-0.840000 0.037230,-0.491800,0.551300,0.109300,-0.918300,0.380600 -0.734100,0.567900,-0.048550,-0.999400,0.031910,0.014270 0.367300,0.526800,-0.365900,0.868100,0.057010,-0.493100 -0.001620,0.662100,0.313700,0.016490,0.999900,0.000000 0.219700,0.662300,0.042020,-0.016600,0.999800,-0.008268 -0.092080,-0.117100,-0.765800,-0.014230,0.119200,-0.992800 -0.846800,-0.372100,0.239500,-0.948700,-0.166700,0.268500 0.129100,0.662100,-0.300000,0.000000,1.000000,0.000000 -0.072100,0.662500,-0.249700,0.000000,1.000000,0.000000 -0.484500,0.662100,0.253300,0.016490,0.999900,0.000001 0.088890,-0.547300,0.665700,0.010750,-0.999500,0.029140 -0.223000,0.662100,0.182900,0.000000,1.000000,0.000000 0.511400,-0.547400,0.203000,0.000000,-1.000000,0.000000 0.451100,-0.547400,0.303600,0.000000,-1.000000,0.000000 -0.851000,-0.296700,0.261600,-0.957500,-0.096440,0.271900 0.462600,0.699300,-0.041750,0.684200,0.729100,-0.017020 0.401000,-0.151800,0.565600,0.711600,0.124900,0.691400 0.259800,0.696400,-0.448100,0.510400,0.664900,-0.545400 -0.336500,-0.450300,-0.709900,-0.262100,-0.279100,-0.923800 -0.199300,-0.489100,-0.575800,-0.023270,-0.915200,-0.402300 0.129300,-0.545600,0.021910,-0.055020,-0.998500,-0.001114 -0.837600,-0.066870,0.268400,-0.947700,0.167100,0.271800 0.513700,0.409600,0.011340,0.822800,-0.563600,0.073320 -0.002165,0.710100,-0.556200,0.092800,0.907800,-0.409000 0.068720,-0.546100,0.273300,0.020780,-0.999200,0.035130 -0.384000,-0.540100,0.304600,-0.082720,-0.992800,0.086330 0.851900,0.050850,0.059830,0.643100,-0.354200,0.679000 -0.834300,-0.480500,-0.181900,-0.928200,-0.288100,-0.235300 -0.284100,0.693000,0.470800,0.170500,0.667800,-0.724600 -0.042120,-0.486000,0.586000,-0.078980,-0.986900,0.140400 0.169300,-0.546800,-0.108900,0.032250,-0.999400,-0.010280 -0.393600,-0.543500,0.252900,-0.078490,-0.993600,0.080760 0.189000,-0.543700,-0.189100,0.095770,-0.993800,-0.057210 -0.589600,-0.509200,-0.244700,-0.290000,-0.943200,-0.161800 -0.617300,0.055760,-0.533500,-0.677100,0.329700,-0.658000 -0.484100,-0.369800,-0.669200,-0.506100,-0.161900,-0.847100 0.107800,0.224300,-0.626900,0.239900,0.292200,-0.925800 0.327500,0.608200,-0.407700,0.696900,0.005085,-0.717200 -0.693400,0.148300,0.396300,-0.796400,0.371900,0.476900 0.329400,-0.524800,0.142400,0.250700,-0.966000,0.063150 0.296600,-0.048080,0.629900,0.495500,0.218300,0.840700 -0.412500,-0.146900,-0.716900,-0.272300,0.097950,-0.957200 0.857300,-0.221300,0.072340,0.346300,0.051150,0.936700 -0.546100,0.084690,-0.580200,-0.480400,0.351000,-0.803700 0.295000,0.436400,0.459600,0.707600,0.163900,0.687400 -0.758400,-0.083460,-0.425000,-0.862200,0.160300,-0.480600 -0.724600,-0.111700,0.486100,-0.690400,0.122200,0.713100 -0.683800,0.261200,-0.340700,-0.842100,0.263400,-0.470700 0.528200,0.275400,0.071730,0.967500,0.246100,0.058350 0.917100,0.252900,0.055970,0.785700,-0.030490,0.617900 -0.808500,0.063320,0.242000,-0.902300,0.346900,0.255900 -0.071890,0.713600,-0.523400,-0.024360,0.950800,0.308700 0.228100,-0.512100,-0.378800,0.230000,-0.944000,-0.236600 0.592000,0.564400,-0.066600,-0.141900,0.485500,-0.862600 -0.774700,0.227900,-0.138500,-0.928800,0.288400,-0.232800 -0.645100,-0.200200,-0.571400,-0.716800,0.032480,-0.696600 0.545000,-0.346300,0.370300,0.858400,-0.164100,0.486000 -0.655700,0.687700,-0.272200,-0.703200,0.593300,-0.391800 -0.864300,-0.457500,0.021860,-0.958100,-0.286000,0.013660 -0.611000,0.294800,0.429800,-0.680900,0.211300,0.701300 0.599500,0.046890,-0.119300,0.913300,0.316000,-0.256900 -0.673700,0.234800,0.374700,-0.824000,0.277500,0.493900 0.503800,-0.318400,0.452000,0.877400,-0.084740,0.472200 -0.172600,-0.036140,-0.750300,-0.013890,0.222700,-0.974800 -0.584100,-0.117100,0.622400,-0.558400,0.129800,0.819400 0.345900,0.707500,-0.206000,-0.445600,0.866000,0.227100 -0.718200,-0.508600,0.130600,0.937100,-0.149200,-0.315700 -0.498400,-0.173600,-0.674100,-0.511800,0.050050,-0.857600 0.641600,0.511900,-0.036290,0.108400,-0.909500,-0.401300 0.419800,-0.076930,-0.530200,0.682100,0.170200,-0.711100 0.164400,0.575100,0.538300,0.504300,0.024250,0.863200 0.448000,-0.491800,-0.048460,0.397200,-0.917700,-0.005678 0.861700,0.097160,0.070240,0.443800,-0.213200,0.870400 -0.587000,-0.497000,0.319500,-0.323600,-0.926000,0.194200 0.817200,0.017170,0.072220,0.341700,-0.096540,0.934800 -0.524500,-0.250100,-0.659400,-0.512100,-0.032370,-0.858300 0.478800,0.618200,-0.098320,0.963300,0.011000,-0.268300 -0.648600,0.007664,0.525300,-0.672900,0.287300,0.681700 -0.377600,0.618300,0.556300,-0.481000,0.025560,0.876300 -0.707700,-0.353100,-0.493100,-0.707600,-0.163300,-0.687500 -0.819200,-0.434800,-0.285000,-0.862900,-0.239700,-0.444900 -0.808100,0.170500,-0.008348,-0.942900,0.332800,0.013550 0.308700,0.197500,0.523600,0.686300,0.326300,0.650000 -0.884900,-0.346300,0.120300,-0.962600,-0.162600,0.216900 -0.598100,0.631700,-0.383500,-0.717100,-0.008833,-0.696900 -0.815300,0.147100,0.062070,-0.939300,0.342900,0.013420 -0.162600,-0.534400,0.433500,-0.004495,-0.982400,0.186500 0.306000,0.203900,-0.517100,0.650900,0.330900,-0.683300 -0.287500,-0.291900,0.754800,-0.244600,-0.099650,0.964500 -0.417600,0.675800,0.388300,0.509200,0.599900,-0.617200 0.457200,0.406300,-0.238500,0.945800,0.147700,-0.289100 0.600700,-0.021940,-0.185300,0.933500,0.230100,-0.275100 0.165500,-0.069060,0.708100,0.267500,0.142300,0.953000 0.555800,-0.306600,0.360700,0.864600,-0.105500,0.491300 -0.559100,0.047340,0.594000,-0.503600,0.350500,0.789600 0.537800,-0.346200,-0.379700,0.845400,-0.149600,-0.512700 0.007959,-0.547200,0.694200,0.035080,-0.964900,0.260200 0.565000,0.102400,-0.167300,0.894400,0.356600,-0.269800 0.401000,-0.424200,0.535400,0.697200,-0.234000,0.677600 -0.425200,0.180600,-0.610700,-0.484800,0.323000,-0.812800 -0.052000,0.713100,0.563000,0.001863,0.957200,0.289400 -0.701500,0.477000,0.221900,-0.957500,0.098410,0.271100 -0.605000,0.681300,0.085950,0.817300,0.520500,-0.247100 -0.188400,-0.529600,-0.125000,0.104200,-0.975800,0.192400 -0.601500,-0.316900,-0.607600,-0.584600,-0.100200,-0.805100 -0.339900,0.028000,0.705100,-0.214100,0.268300,0.939200 -0.628400,0.409500,-0.374100,-0.793400,0.157000,-0.588100 -0.263200,-0.547400,0.665800,0.000000,-1.000000,0.000000 -0.735200,0.527600,0.021890,-0.998200,0.058900,0.014030 0.269000,-0.504300,0.373100,0.239300,-0.942700,0.232600 0.564400,0.152700,-0.068530,0.935200,0.354100,-0.007929 -0.297200,0.222000,-0.642400,-0.262700,0.296100,-0.918300 0.344100,-0.486900,0.357800,0.092580,-0.994400,0.050710 -0.448400,0.608200,0.516700,-0.487500,0.021560,0.872900 0.438400,0.695900,0.184700,0.702100,0.681800,0.205500 0.117300,0.695500,0.434900,-0.362900,0.701000,-0.613900 0.129200,0.426200,-0.569000,0.483300,0.136300,-0.864800 -0.748200,-0.263500,-0.463700,-0.800500,-0.035230,-0.598300 0.373200,-0.518600,0.001792,0.267800,-0.963500,-0.003799 0.161700,0.138200,-0.634800,0.459400,0.325800,-0.826300 -0.502500,0.710000,-0.428800,-0.285300,0.917400,-0.277600 -0.751000,0.285000,0.171400,-0.934200,0.240100,0.263800 0.831300,-0.335600,-0.064650,0.410400,-0.365700,-0.835400 0.128100,0.387600,0.581200,0.417700,0.198300,0.886700 -0.017330,-0.499400,0.547800,0.098990,-0.936000,0.337900 0.164000,0.463600,0.548200,0.507300,0.129400,0.852000 0.098280,0.707600,-0.459200,-0.230200,0.872900,0.430300 -0.005442,-0.267400,-0.764900,0.246900,-0.044000,-0.968100 -0.381000,0.706000,0.521900,-0.273100,0.816200,0.509200 0.822800,-0.081670,-0.059870,0.647600,0.110300,-0.753900 -0.468300,-0.528600,-0.303900,-0.168000,-0.972200,-0.163100 0.398600,0.571100,0.313900,0.867500,0.028130,0.496600 0.462200,0.664600,0.158700,0.958300,0.169800,0.229700 -0.225600,0.645100,-0.601900,-0.275600,0.023450,-0.961000 0.813500,-0.025300,-0.066530,0.496400,-0.072820,-0.865100 0.480100,0.507300,-0.111200,0.961900,0.073690,-0.263200 0.520500,0.188600,0.216500,0.920400,0.308500,0.240100 0.561700,-0.547400,0.042030,0.000050,-1.000000,0.000000 -0.032080,-0.540800,0.383100,0.031180,-0.993100,0.113500 0.308700,-0.493500,0.372600,0.282500,-0.919100,0.274800 -0.268200,-0.539400,0.381300,-0.051950,-0.989000,0.138600 -0.344400,-0.526700,-0.410700,-0.130600,-0.966800,-0.219700 -0.817400,0.099510,0.161000,-0.899300,0.355900,0.254100 0.256000,0.081960,0.609400,0.485000,0.369000,0.792900 0.097550,0.335400,-0.600100,0.246500,0.201200,-0.948000 -0.656600,0.662600,0.294600,-0.846000,0.162200,0.507900 0.600500,-0.256800,-0.272000,0.962000,-0.016070,-0.272600 -0.349400,-0.509400,-0.476100,-0.170200,-0.943200,-0.285200 0.377600,0.021860,-0.538200,0.672800,0.301400,-0.675600 0.131700,-0.543800,-0.665900,0.188000,-0.652900,-0.733700 -0.563700,0.713700,-0.349100,-0.191700,0.963500,-0.187000 -0.707600,0.320000,0.275000,-0.837000,0.223000,0.499700 0.322200,0.102000,-0.553200,0.660000,0.377100,-0.649800 -0.585400,-0.526700,-0.079410,-0.247500,-0.966800,-0.063070 0.825400,0.384500,-0.048220,-0.775000,-0.289100,-0.562000 -0.439200,-0.414300,-0.685400,-0.498400,-0.224900,-0.837300 -0.322600,-0.067790,-0.731100,-0.267900,0.171700,-0.948000 -0.777800,0.204300,0.161400,-0.917500,0.300500,0.260400 0.630800,-0.191700,-0.165100,0.964200,0.030670,-0.263300 0.130800,-0.498200,-0.494700,0.178200,-0.932600,-0.313700 -0.558300,0.103200,0.568200,-0.618700,0.375100,0.690300 0.156000,0.122700,0.649900,0.375900,0.365100,0.851700 -0.557400,0.183600,0.527100,-0.651100,0.296100,0.698900 0.228900,0.237000,0.561500,0.491200,0.262100,0.830700 0.377500,0.247000,0.431500,0.697600,0.256500,0.669000 0.009098,-0.490100,-0.559100,0.100200,-0.914400,-0.392200 -0.776200,-0.175900,0.416000,-0.858300,0.047420,0.510900 -0.801900,-0.326800,-0.357900,-0.867000,-0.115300,-0.484800 0.323300,0.709500,0.254900,-0.380000,0.904300,-0.194600 0.433200,0.691700,-0.211600,0.753100,0.618100,-0.225400 -0.445900,-0.371600,-0.691600,-0.505400,-0.161600,-0.847700 -0.202700,0.710800,-0.566400,-0.050650,0.923100,-0.381300 0.408800,-0.546900,0.462600,0.175600,-0.969300,0.172200 0.036610,0.162900,0.668600,0.250000,0.323900,0.912500 -0.591500,0.086770,0.543800,-0.670500,0.317000,0.670700 -0.765800,0.272300,-0.122800,-0.935900,0.258900,-0.239000 -0.583700,0.219100,0.485700,-0.658900,0.295000,0.692000 -0.822400,-0.517000,0.181600,-0.901700,-0.349300,0.254900 0.372800,0.200300,0.456800,0.686400,0.289600,0.667000 0.203100,0.112300,-0.622800,0.450800,0.372800,-0.811000 0.209900,-0.301900,-0.693300,0.485300,-0.097320,-0.868900 0.276300,0.303900,-0.507300,0.698600,0.202500,-0.686200 0.712500,-0.310400,-0.007967,0.121200,0.987900,-0.096580 0.270500,0.167500,0.562800,0.488400,0.344300,0.801900 -0.467900,0.571100,-0.502400,-0.512000,0.028260,-0.858500 0.294300,-0.000231,0.617800,0.495100,0.240700,0.834800 0.516600,0.295100,-0.107500,0.938500,0.237400,-0.250700 0.579400,-0.547100,-0.088710,0.273100,-0.962000,-0.004303 -0.012870,0.598100,-0.597800,0.242900,0.016680,-0.969900 -0.266900,0.252200,-0.641900,-0.265900,0.264000,-0.927200 -0.300000,0.158900,0.666200,-0.256800,0.348400,0.901500 0.283100,-0.538800,-0.008253,0.162600,-0.986700,-0.001948 0.586200,-0.047080,-0.258200,0.939700,0.217300,-0.264200 0.262100,0.330400,0.515100,0.517500,0.198500,0.832300 -0.132400,0.268600,-0.651900,-0.013840,0.260700,-0.965300 -0.468700,0.279500,0.554100,-0.473900,0.284200,0.833500 -0.539000,0.339200,-0.485400,-0.702500,0.200500,-0.682900 0.368100,0.449500,0.381700,0.710400,0.113600,0.694600 0.308600,-0.387200,-0.624400,0.475500,-0.191400,-0.858700 0.183400,0.160300,0.617500,0.484300,0.347100,0.803100 0.451000,0.552600,-0.205700,0.961800,0.068030,-0.265200 0.224200,0.151200,0.597200,0.484400,0.347100,0.803000 -0.336800,0.165200,-0.650600,-0.260200,0.331700,-0.906800 -0.835600,-0.441500,0.223900,-0.926000,-0.261300,0.272500 -0.162500,0.684700,0.490100,-0.000293,0.508300,-0.861200 -0.677600,0.527400,0.267200,-0.857500,0.062470,0.510600 0.552800,-0.100500,0.357500,0.860400,0.141700,0.489600 -0.623100,-0.512100,-0.138500,-0.307400,-0.948400,-0.077740 -0.237800,-0.509200,0.516000,-0.082670,-0.942600,0.323500 0.648300,-0.276900,0.091790,0.990500,-0.056700,0.125000 -0.792900,0.214800,0.031910,-0.954900,0.296500,0.013700 0.588500,0.093800,0.042080,0.949200,0.314400,-0.013360 -0.784200,-0.356600,0.384100,-0.847500,-0.161600,0.505500 0.253400,-0.236700,-0.673300,0.487400,-0.026210,-0.872800 -0.876100,-0.391800,0.123400,-0.938800,-0.209300,0.273500 -0.430400,0.123100,0.633100,-0.448700,0.354600,0.820300 0.455200,0.010240,0.468700,0.688300,0.317300,0.652400 -0.546700,0.289400,0.493800,-0.677400,0.268700,0.684800 0.568900,-0.361700,-0.322000,0.843700,-0.185500,-0.503800 0.059390,0.710600,0.487000,-0.089040,0.920500,-0.380400 0.439100,0.269000,-0.328600,0.830400,0.261600,-0.492000 0.037160,-0.106900,-0.747200,0.241900,0.141900,-0.959900 0.371500,0.107900,0.505800,0.663800,0.378900,0.644900 -0.568600,-0.203600,-0.633400,-0.512100,0.031040,-0.858400 0.395800,-0.456100,-0.526200,0.668000,-0.285200,-0.687300 -0.544300,-0.207000,0.651700,-0.501700,0.035620,0.864300 -0.279000,0.681900,-0.459700,0.261900,0.469100,0.843400 0.361800,-0.051940,-0.580400,0.665500,0.241700,-0.706200 0.600800,0.577700,0.061280,-0.154200,0.680600,0.716300 0.404100,0.426000,0.330000,0.863500,0.154000,0.480300 -0.115600,-0.449000,-0.741400,-0.013660,-0.280600,-0.959700 -0.442700,-0.437500,0.678100,-0.463700,-0.229400,0.855800 -0.460000,-0.529500,0.311100,-0.157200,-0.974800,0.158500 -0.728700,0.527300,0.110300,-0.960100,0.063690,0.272300 0.484700,-0.126500,-0.475900,0.811500,0.093290,-0.576900 -0.197700,-0.539100,0.401100,-0.045270,-0.987900,0.148500 -0.222100,0.345900,0.631600,-0.228500,0.189400,0.954900 0.150300,0.350000,-0.572200,0.477700,0.197700,-0.856000 0.450500,0.127700,-0.399900,0.800700,0.344700,-0.489900 -0.757400,-0.266900,0.447800,-0.858300,-0.041340,0.511400 0.529100,-0.386600,-0.380400,0.840600,-0.201800,-0.502600 0.158100,-0.146800,0.721600,0.282300,0.121600,0.951600 -0.844900,-0.246900,0.293100,-0.962000,-0.032570,0.271000 0.399400,-0.373300,0.553800,0.708200,-0.157400,0.688200 0.559000,-0.203600,0.363900,0.872100,0.025350,0.488700 0.178500,-0.487500,0.503400,0.048320,-0.998800,0.004361 0.304600,-0.330200,0.638400,0.494500,-0.139300,0.857900 -0.465100,-0.300200,-0.691200,-0.510100,-0.096470,-0.854700 -0.423600,0.638400,0.531100,-0.481400,-0.007484,0.876500 -0.333200,0.456500,0.585600,-0.257400,0.132200,0.957200 0.595200,0.072340,-0.038380,0.936600,0.349400,-0.026970 0.223300,0.557600,-0.502500,0.486800,0.043530,-0.872400 -0.635400,0.266700,-0.410800,-0.692400,0.260100,-0.673000 0.447800,0.508800,0.232600,0.903400,0.069110,0.423200 -0.142500,-0.532400,-0.439600,-0.002683,-0.982400,-0.187000 -0.559400,-0.143400,-0.634800,-0.511100,0.095400,-0.854200 0.226200,-0.527300,0.627100,0.484500,-0.340800,0.805700 -0.142500,0.716000,0.535900,-0.010980,0.990100,-0.140000 -0.491800,-0.256800,0.680700,-0.490500,-0.026910,0.871000 0.332000,0.502200,-0.409700,0.685600,0.085390,-0.723000 0.563200,0.082720,-0.199000,0.900900,0.346700,-0.261100 -0.596500,0.715200,-0.240400,0.165700,0.981300,0.097820 -0.878000,-0.086890,0.137700,-0.949400,0.161500,0.269500 0.452700,0.190000,0.357400,0.835200,0.326300,0.442700 0.003503,-0.280100,0.767200,0.284700,-0.080800,0.955200 -0.410300,-0.494600,-0.674800,-0.312100,-0.312400,-0.897200 0.593700,0.060690,0.119200,0.906800,0.356700,0.224800 0.177900,-0.327000,0.712700,0.353600,-0.123100,0.927300 -0.210600,-0.525300,-0.603100,0.118700,0.006353,0.992900 -0.714300,-0.190200,-0.499700,-0.716800,0.032700,-0.696600 0.010150,-0.153600,0.763900,0.278100,0.121700,0.952800 0.002034,0.669600,-0.459400,-0.128600,0.751200,0.647400 0.385900,0.710900,0.092790,-0.393600,0.913900,-0.099670 0.392400,-0.469500,0.526700,0.668800,-0.289100,0.684900 -0.257300,0.697800,-0.573000,-0.154500,0.698900,-0.698400 0.302800,0.547400,-0.433300,0.695800,0.054840,-0.716100 -0.671900,-0.367600,0.530600,-0.687500,-0.162000,0.707900 -0.674500,0.451700,0.286200,-0.851900,0.127200,0.508000 0.202800,-0.210300,0.706800,0.515800,0.053930,0.855000 -0.785900,-0.281800,0.398400,-0.856700,-0.074050,0.510600 0.223900,-0.130100,0.688200,0.498300,0.066610,0.864400 0.536300,-0.167000,0.401200,0.875000,0.096960,0.474400 0.469900,0.390800,-0.200300,0.948400,0.160300,-0.273400 0.188700,-0.540800,0.242500,0.088660,-0.993100,0.076240 0.281600,0.415900,-0.472500,0.700100,0.122100,-0.703500 0.169100,-0.536400,0.303300,0.131300,-0.983100,0.127500 0.197700,-0.497400,-0.510700,-0.573000,-0.208200,0.792600 -0.412500,-0.296700,-0.717000,-0.269800,-0.095880,-0.958100 0.441500,-0.349100,0.515400,0.698500,-0.186900,0.690800 -0.755000,-0.170200,-0.451800,-0.870300,0.057460,-0.489200 -0.563800,-0.531700,0.081890,-0.184400,-0.981700,0.048270 -0.099060,0.678400,-0.483700,0.012270,0.537000,0.843500 0.500300,-0.389200,0.436000,0.845400,-0.245600,0.474300 -0.596600,-0.296500,0.616600,-0.669700,-0.101400,0.735700 -0.268500,-0.333400,-0.753800,-0.269800,-0.131900,-0.953800 -0.677300,0.299800,0.335200,-0.835400,0.232000,0.498300 -0.524100,-0.493500,-0.450200,0.616000,-0.534100,0.579000 0.740400,-0.398200,-0.050160,0.081600,-0.817300,-0.570300 0.781200,-0.160400,-0.051210,-0.728600,-0.325300,-0.602700 0.411600,0.463200,0.307000,0.872500,0.137500,0.468800 0.548600,0.194900,-0.098220,0.934000,0.324500,-0.149300 -0.553100,0.707400,-0.276600,0.446400,0.861100,0.243300 -0.743600,-0.137000,0.464400,-0.854700,0.097190,0.510000 0.848400,0.037470,-0.053580,0.689100,-0.352900,-0.632900 -0.803700,0.002543,0.313300,-0.826500,0.278100,0.489500 0.443200,-0.176900,-0.523500,0.680900,0.072110,-0.728800 0.044820,-0.481700,-0.711700,0.233900,-0.292200,-0.927300 0.394700,0.355300,0.370600,0.866700,0.168000,0.469700 -0.611900,0.683300,-0.042340,0.873400,0.487000,0.009385 -0.697000,0.591300,-0.215000,-0.963400,0.023060,-0.267200 0.203700,0.305100,-0.553600,0.474700,0.231400,-0.849200 -0.545800,0.448700,-0.452200,-0.710600,0.132100,-0.691100 0.017800,0.447200,-0.600900,0.242200,0.128800,-0.961600 -0.652700,0.279600,0.385900,-0.832000,0.247700,0.496500 0.854000,0.135100,0.074500,-0.099080,0.035710,0.994400 0.375600,-0.509900,-0.158800,0.323500,-0.941800,-0.091110 -0.628700,0.168400,0.465200,-0.669000,0.302100,0.679100 0.847600,-0.160200,0.065410,0.534600,0.279900,0.797400 0.439200,-0.117100,-0.519500,0.681400,0.144600,-0.717500 0.057600,-0.166900,0.752100,0.279200,0.086910,0.956300 -0.417500,-0.027230,0.696400,-0.500700,0.229400,0.834700 0.189600,-0.107100,-0.700100,0.482400,0.142800,-0.864200 0.037240,0.082890,-0.696700,0.229400,0.349800,-0.908300 0.586400,0.526300,0.071850,0.118900,-0.332400,0.935600 0.581400,0.018050,-0.215700,0.921900,0.281400,-0.266300 -0.561700,-0.528600,0.421100,0.696900,-0.013460,-0.717100 0.356200,0.002783,-0.567300,0.659500,0.291100,-0.693100 -0.442200,-0.206800,-0.708900,-0.508600,0.029170,-0.860500 0.508100,0.244400,-0.186600,0.928800,0.264700,-0.259400 -0.795600,-0.094640,-0.362200,-0.862000,0.160000,-0.481000 -0.202500,0.022490,0.739500,-0.022570,0.268600,0.963000 -0.579300,0.467000,0.418300,-0.693000,0.117800,0.711300 -0.314500,0.279700,0.624400,-0.228000,0.261200,0.938000 0.762700,-0.366400,0.072970,0.075520,-0.244800,0.966600 0.303300,-0.200200,0.646400,0.507000,0.054500,0.860200 -0.685100,0.654800,-0.240800,-0.868100,0.085070,-0.489000 -0.435300,-0.516100,-0.401400,-0.163200,-0.956400,-0.242100 -0.635300,-0.411300,-0.551500,-0.698900,-0.225000,-0.678900 0.413600,-0.236700,-0.554200,0.696800,-0.009419,-0.717200 -0.716700,-0.511800,0.419300,-0.804500,-0.351500,0.478900 -0.455500,0.160500,-0.600900,-0.484100,0.331900,-0.809600 0.492600,-0.016960,-0.424400,0.851200,0.209700,-0.481100 0.599100,-0.155100,0.283500,0.945700,0.125800,0.299800 0.008121,0.044120,-0.718500,0.233400,0.310200,-0.921600 -0.413400,0.218700,0.604400,-0.464200,0.281000,0.840000 -0.002710,0.325600,-0.627600,0.237700,0.212500,-0.947800 0.101400,0.247600,0.622700,0.262200,0.265500,0.927800 0.635500,-0.067240,0.062240,0.988900,0.146700,-0.022020 -0.156000,-0.050280,0.757200,0.011250,0.232900,0.972400 -0.221000,0.667000,-0.462200,0.111200,0.907100,0.406100 0.460600,0.249300,0.305500,0.835800,0.270800,0.477600 -0.232100,0.608200,0.601700,-0.239500,0.016700,0.970700 0.089270,-0.487500,0.556100,0.010330,-0.983000,-0.183400 0.518800,-0.276200,-0.426500,0.859600,-0.063630,-0.507000 -0.202800,0.446400,-0.616300,-0.043630,0.127900,-0.990800 -0.739800,0.284700,0.211200,-0.933200,0.242700,0.264900 -0.836200,-0.351700,0.289600,-0.949600,-0.159900,0.269600 -0.748400,0.033170,0.388100,-0.819200,0.294100,0.492400 0.101100,0.510600,0.574000,0.279700,0.048070,0.958900 -0.001972,0.703800,0.572000,0.159300,0.801600,0.576200 0.194800,-0.088650,0.699000,0.543400,0.168700,0.822400 -0.372500,0.648000,-0.558300,-0.471700,0.045320,-0.880600 -0.494000,-0.543300,-0.018340,-0.110400,-0.993900,0.001557 -0.303400,0.662100,-0.380500,0.016500,0.999900,-0.000008 -0.735000,0.457200,0.111600,-0.955500,0.122200,0.268600 0.556100,-0.516300,0.251900,0.916600,-0.338900,0.212300 -0.434300,0.662500,0.333800,-0.021280,0.999700,-0.009208 -0.012870,-0.026720,-0.744200,0.238700,0.225200,-0.944600 -0.554900,0.662100,0.092350,0.016580,0.999800,0.008294 -0.212900,-0.156900,-0.768100,-0.014270,0.087350,-0.996100 -0.313500,0.662500,-0.330200,0.033040,0.999500,0.000000 -0.803200,-0.538700,-0.220100,-0.876400,-0.426900,-0.222800 -0.308400,0.520500,-0.581800,-0.275100,0.068630,-0.959000 -0.102300,0.662500,-0.169200,0.000000,1.000000,0.000000 0.360500,-0.547400,-0.420700,0.000000,-1.000000,0.000000 0.459200,-0.505900,0.166100,-0.972300,-0.038680,-0.230700 0.511400,-0.547400,-0.108900,0.000000,-1.000000,0.000000 -0.142500,-0.541600,0.213800,0.007189,-0.993700,-0.111400 0.119100,0.662100,-0.078690,-0.016540,0.999900,-0.000013 0.897600,0.097840,0.020640,0.891900,-0.398400,0.214100 0.088980,-0.545700,-0.139100,-0.038790,-0.999000,0.023430 -0.342300,-0.526300,0.686000,-0.232000,-0.337700,0.912200 -0.746700,0.420800,-0.007922,-0.990100,0.139200,0.016130 0.579600,-0.466400,-0.217900,0.921600,-0.274800,-0.274300 -0.092180,0.662100,0.323700,0.000000,1.000000,0.000000 0.119100,0.662100,-0.259800,0.000000,1.000000,0.000000 -0.414100,0.662100,0.042040,0.016560,0.999900,0.000000 0.495000,0.325100,0.161100,0.945200,0.230500,0.231300 0.541600,-0.547400,0.082280,0.000000,-1.000000,0.000000 0.484500,0.638400,0.042130,0.999500,-0.032930,-0.000533 -0.732600,0.638400,0.011790,-0.999900,0.004300,0.014310 -0.051960,0.662500,-0.450900,-0.000742,0.999200,0.040050 0.189500,0.662800,0.313700,-0.018850,0.999800,-0.002290 -0.404000,-0.546400,0.162700,-0.032310,-0.999300,0.019290 0.280500,-0.501900,0.454900,-0.691900,-0.239900,-0.681000 -0.595200,-0.490900,0.562400,-0.664000,-0.309700,0.680500 -0.454400,0.662500,-0.239700,-0.016560,0.999900,0.000000 -0.740900,0.244300,-0.247200,-0.882600,0.271900,-0.383500 -0.333300,-0.542800,-0.309500,-0.056760,-0.993800,-0.095850 -0.323500,-0.546300,-0.259700,-0.021560,-0.999300,-0.031340 -0.152600,0.567800,0.611000,0.008839,0.043050,0.999000 -0.112300,0.662100,0.434400,0.000000,1.000000,0.000000 -0.424200,0.662500,0.102400,0.016460,0.999900,0.000008 0.239800,-0.547400,-0.541500,0.000000,-1.000000,0.000000 -0.625400,-0.547400,0.464600,0.000000,-1.000000,0.000000 -0.434200,-0.547400,0.575200,0.000000,-1.000000,0.000000 -0.323600,0.662500,0.273400,-0.016510,0.999900,0.000000 -0.494600,0.662100,-0.239700,0.002445,1.000000,0.002537 0.491300,-0.547400,0.233200,0.000000,-1.000000,0.000000 -0.172700,0.662500,0.293500,0.000017,1.000000,-0.000033 -0.665600,-0.547400,-0.350300,0.000000,-1.000000,0.000000 -0.202900,0.662500,-0.149100,-0.016570,0.999900,0.000000 -0.333600,-0.547400,-0.652100,-0.000001,-1.000000,-0.000050 -0.132500,0.662500,0.042030,-0.013750,0.999900,-0.005553 0.048600,0.662500,-0.350300,-0.022080,0.999800,0.002747 -0.032190,-0.526300,0.091940,-0.184500,-0.966300,-0.179300 -0.454400,0.662100,-0.048510,0.000000,1.000000,0.000000 0.098540,-0.542000,0.313000,0.057740,-0.993600,0.096730 -0.082120,-0.547400,0.655700,0.000000,-1.000000,0.000000 -0.082120,-0.547400,-0.682300,-0.000000,-1.000000,-0.000050 -0.041890,0.662500,0.223100,0.013710,0.999900,-0.002706 0.068730,0.662500,0.273400,-0.016580,0.999900,0.000000 0.263300,0.706600,-0.332400,-0.392500,0.826500,0.403600 -0.082170,-0.216800,0.774700,0.011550,0.018510,0.999800 -0.202800,-0.546500,-0.310000,-0.009851,-0.999300,-0.035810 -0.313700,-0.545700,-0.169400,0.039690,-0.998500,0.038540 -0.401800,-0.256700,0.727600,-0.237400,-0.050420,0.970100 0.412000,0.676000,-0.277400,0.821500,0.331600,-0.463900 0.249800,0.662500,-0.078690,0.000050,1.000000,0.000000 0.058670,0.662500,-0.108900,-0.016570,0.999900,0.000000 0.210400,0.208200,0.583200,0.479200,0.297700,0.825700 -0.743000,0.077600,0.365600,-0.800300,0.353800,0.484100 0.281300,-0.317700,-0.651700,0.485300,-0.101500,-0.868400 -0.082130,0.662100,-0.118900,-0.000001,1.000000,0.000000 -0.484500,0.360600,0.525200,-0.485900,0.187000,0.853800 0.209600,0.716100,0.434400,-0.007291,1.000000,-0.003318 -0.092160,0.662100,-0.058570,0.016560,0.999900,0.000000 -0.112300,0.662100,-0.450900,-0.000000,0.999900,0.013800 -0.784200,0.128400,0.236900,-0.896400,0.363500,0.253800 0.516100,0.123900,0.291300,0.802300,0.392400,0.449900 0.230500,0.007056,0.653600,0.492200,0.298300,0.817800 -0.152600,-0.216800,0.775200,0.017070,0.015700,0.999700 -0.041940,0.662800,0.394100,0.002759,1.000000,-0.005547 -0.706200,0.072380,0.430700,-0.809800,0.324200,0.488900 -0.373900,0.662100,-0.259800,0.000050,1.000000,0.000000 -0.253100,0.662100,0.303600,-0.000050,1.000000,0.000000 -0.484500,-0.547400,0.585300,0.000000,-1.000000,0.000000 0.481300,-0.547400,-0.159200,-0.003169,-1.000000,0.001584 -0.092180,0.662100,0.394200,0.000000,1.000000,0.000000 0.300200,0.662100,-0.088750,0.016560,0.999900,0.000000 0.246200,0.466600,0.498600,0.511600,0.078000,0.855700 -0.009994,0.439800,0.613000,0.257300,0.150800,0.954500 0.481200,0.077880,-0.385100,0.827300,0.332400,-0.452900 -0.333700,-0.547000,-0.209500,0.001730,-1.000000,0.001481 -0.112300,-0.544800,-0.240100,-0.000974,-0.996400,0.084440 -0.143300,-0.495800,-0.561500,-0.005452,-0.922600,-0.385700 -0.673000,0.710100,-0.158600,-0.398700,0.912200,-0.094570 -0.325200,0.690200,0.565000,-0.200200,0.600300,0.774300 -0.056260,-0.528600,-0.117800,-0.112800,-0.971800,0.206900 0.392700,0.365800,-0.364400,0.845900,0.204300,-0.492700 -0.786800,0.214800,-0.107100,-0.924000,0.301000,-0.235700 -0.453800,-0.542600,-0.179000,-0.097740,-0.993700,-0.054350 0.127600,0.092770,-0.670100,0.243300,0.354300,-0.902900 0.226700,-0.176900,-0.687000,0.487100,0.044040,-0.872200 -0.172700,-0.257000,0.774600,0.008779,-0.046330,0.998900 0.321600,-0.162100,-0.633000,0.485700,0.077680,-0.870600 0.840600,-0.035480,0.030570,0.953700,-0.080920,0.289800 0.321800,0.229500,0.496400,0.692600,0.279000,0.665200 0.602400,-0.375000,0.228000,0.955200,-0.163500,0.246600 -0.258600,0.447100,0.605500,-0.249700,0.124200,0.960300 0.342200,-0.449400,0.586500,0.617000,-0.291100,0.731100 -0.762200,0.335700,-0.018390,-0.979600,0.200300,0.014020 -0.289500,-0.499800,-0.526400,-0.094030,-0.937700,-0.334300 -0.528000,-0.505800,0.605700,-0.449600,-0.364400,0.815500 -0.145900,0.059340,0.726600,0.013520,0.344300,0.938800 -0.235100,0.564400,-0.600100,-0.272600,0.034830,-0.961500 -0.797500,-0.107000,0.367300,-0.849800,0.138100,0.508800 0.244100,-0.146800,-0.674600,0.485700,0.097160,-0.868700 -0.774300,-0.401000,-0.381600,-0.851100,-0.223300,-0.475200 -0.517700,0.598000,0.467300,-0.696900,0.000042,0.717200 -0.605300,0.687100,-0.361100,-0.623700,0.592800,-0.509500 0.041920,-0.414100,0.734800,0.259000,-0.230700,0.937900 0.813800,0.054590,0.074390,-0.109400,0.061920,0.992100 0.924500,0.296000,-0.041730,0.889700,0.063640,-0.452100 -0.836000,-0.540600,0.008428,-0.855400,-0.517800,0.012250 -0.620800,-0.116900,-0.587500,-0.713400,0.120600,-0.690300 0.487900,-0.114100,0.471400,0.709900,0.110800,0.695500 0.629800,-0.046160,-0.038420,0.971000,0.238300,-0.016980 -0.454000,-0.544700,-0.138900,-0.076380,-0.996300,-0.039120 0.523300,0.060430,0.328500,0.822900,0.332800,0.460600 -0.555600,-0.250100,-0.640800,-0.512200,-0.032460,-0.858300 0.249400,-0.525700,0.293100,0.187800,-0.966500,0.175000 -0.414600,-0.526200,-0.370700,-0.149800,-0.966900,-0.206500 -0.281200,0.344900,0.617300,-0.259300,0.212800,0.942100 -0.072150,0.446400,0.619600,0.014200,0.111600,0.993600 0.499500,0.234700,-0.227300,0.921600,0.292800,-0.254800 -0.182900,-0.535400,-0.159900,0.055930,-0.983000,0.175000 0.467500,0.116300,0.384200,0.803500,0.391300,0.448600 0.503800,-0.477500,-0.378700,0.819700,-0.284700,-0.497100 -0.754500,-0.216800,0.454800,-0.858700,0.013170,0.512300 0.440800,0.542500,-0.240500,0.913900,0.022750,-0.405200 0.787800,-0.399100,0.020690,0.349600,-0.919800,0.178200 0.128100,-0.086610,0.722000,0.270600,0.178600,0.946000 0.819400,-0.354100,0.063320,0.411800,-0.490400,0.768000 0.635000,-0.067310,0.011940,0.987300,0.159000,-0.001215 -0.630400,-0.499900,-0.225300,-0.302600,-0.937900,-0.169500 -0.814800,-0.370800,-0.321000,-0.861700,-0.161800,-0.480900 0.384700,-0.079710,0.569300,0.707500,0.125200,0.695500 0.742800,-0.366900,-0.070720,0.009046,-0.098510,-0.995100 0.062680,0.159100,-0.660500,0.231700,0.331400,-0.914600 -0.382600,-0.356800,-0.717800,-0.267900,-0.160400,-0.950000 0.828800,0.317400,-0.007778,-0.983000,-0.154900,-0.098810 0.794400,-0.254600,-0.017400,-0.959900,0.205500,-0.190900 -0.614700,-0.520200,0.033150,-0.264000,-0.964500,0.004423 -0.594500,0.715900,-0.289600,-0.130900,0.988700,-0.072690 0.306500,0.378600,0.461100,0.709500,0.205800,0.673900 -0.416900,-0.341800,0.714400,-0.486900,-0.138700,0.862400 0.289200,0.520600,0.453700,0.713600,0.098890,0.693500 -0.529200,0.571200,-0.455400,-0.716800,0.028250,-0.696700 0.042110,0.390900,-0.603300,0.241800,0.163400,-0.956500 -0.152600,-0.547200,-0.612900,-0.003038,-0.979100,0.203500 -0.705700,-0.371500,0.496800,-0.687500,-0.163200,0.707600 0.814300,-0.387500,-0.007776,0.554000,-0.828400,-0.082410 -0.438000,0.693700,-0.384700,0.509500,0.652000,0.561500 -0.152700,0.344800,0.637200,0.016100,0.186300,0.982400 0.591900,-0.331500,-0.282900,0.954600,-0.100900,-0.280200 -0.585700,0.020240,-0.581600,-0.615100,0.276100,-0.738600 -0.534800,-0.547400,0.484700,0.000000,-1.000000,0.000000 -0.345700,-0.340100,-0.731000,-0.269900,-0.148400,-0.951400 0.350100,-0.171800,-0.613900,0.704700,0.057120,-0.707200 0.518700,-0.116300,-0.416300,0.847700,0.131600,-0.513800 -0.654300,-0.495100,0.202600,-0.373900,-0.921300,0.106500 -0.102200,0.696200,0.498000,-0.010180,0.712400,-0.701700 0.006976,-0.316800,-0.757500,0.242500,-0.100600,-0.964900 0.265200,-0.048880,0.648700,0.501500,0.225800,0.835200 -0.467200,0.247100,-0.561700,-0.495500,0.270200,-0.825500 0.649800,-0.226800,0.091970,0.994100,-0.011770,0.107700 0.262100,-0.378300,0.655200,0.515600,-0.164800,0.840800 -0.201100,0.416500,0.624200,-0.155700,0.169600,0.973100 0.785800,0.549500,-0.056810,0.381600,0.612200,-0.692500 -0.288400,-0.511900,-0.581600,0.305700,-0.069990,0.949500 0.591600,-0.417400,0.231200,0.943400,-0.220500,0.247600 0.340300,-0.163800,0.623000,0.509400,0.065730,0.858000 -0.334300,0.713500,-0.482800,0.109500,0.965900,0.234800 -0.009463,-0.126700,-0.761400,0.244400,0.102300,-0.964200 -0.856600,-0.260900,-0.252900,-0.969000,-0.033650,-0.244700 -0.222300,0.183300,-0.675600,-0.131400,0.325100,-0.936500 0.814500,0.548200,-0.029070,0.602000,0.741400,-0.296600 -0.042370,-0.066800,-0.758500,0.046400,0.172500,-0.983900 -0.031870,-0.537900,0.713100,0.030320,-0.406900,0.913000 -0.501700,-0.067000,-0.657000,-0.502100,0.171800,-0.847600 -0.814800,0.122500,-0.128000,-0.903800,0.362600,-0.227300 0.889200,-0.256300,-0.036220,0.928400,-0.073400,-0.364400 0.356200,-0.476700,0.561000,0.680300,-0.270200,0.681300 -0.842800,-0.306900,-0.287900,-0.902200,-0.101600,-0.419200 -0.261800,-0.426800,-0.737300,-0.264400,-0.226400,-0.937500 -0.457100,-0.517700,-0.373900,-0.198600,-0.961100,-0.191800 0.193000,-0.446200,-0.673000,0.465100,-0.266900,-0.844000 -0.678200,-0.515200,-0.249600,0.867700,0.030990,0.496100 0.559400,0.477800,-0.039640,0.564300,-0.682900,-0.464000 0.561700,0.018180,-0.286200,0.918900,0.292100,-0.265000 0.521800,0.254100,-0.128300,0.922300,0.289800,-0.255500 -0.650600,-0.126900,0.560000,-0.693600,0.086820,0.715100 0.839800,0.412600,-0.068650,-0.319300,-0.140300,-0.937200 -0.483900,-0.542900,0.102200,-0.108300,-0.993600,0.030700 0.075230,-0.291800,-0.742800,0.244700,-0.095140,-0.964900 0.712700,-0.341200,-0.064640,0.042410,0.554400,-0.831200 0.199900,-0.406500,-0.680200,0.475000,-0.225000,-0.850700 0.461600,0.682100,-0.135700,0.853100,0.461000,-0.244200 0.163300,0.281600,0.587400,0.476300,0.258800,0.840300 0.889100,-0.275800,0.030040,0.928300,-0.225000,0.295900 0.092640,-0.508700,0.487500,0.155900,-0.943200,0.293400 -0.051930,-0.357700,-0.761900,-0.005493,-0.157300,-0.987500 -0.878000,-0.362800,-0.123800,-0.956300,-0.162500,-0.243000 0.609600,-0.064860,0.193600,0.954700,0.194800,0.224900 -0.838600,0.090030,-0.028470,-0.935900,0.352100,0.013230 -0.391200,0.567700,0.550000,-0.480500,0.045850,0.875800 -0.424200,-0.517600,0.407000,-0.163300,-0.960200,0.226600 0.232600,0.118700,0.606800,0.475200,0.354300,0.805400 0.856100,-0.340700,-0.035960,0.711200,-0.595400,-0.373700 0.887100,-0.208100,-0.035290,0.908600,0.190600,-0.371500 0.213600,-0.520500,0.357900,0.187900,-0.965000,0.183000 0.518500,-0.183500,0.434200,0.866500,-0.003780,0.499200 -0.857900,-0.303500,-0.235000,-0.964200,-0.098120,-0.246400 -0.764900,0.317600,0.063230,-0.974900,0.222200,0.013500 0.460900,0.542500,0.176600,0.970100,0.041780,0.239200 -0.833600,-0.148100,-0.307100,-0.869100,0.097720,-0.484800 0.107500,-0.385600,0.723200,0.260800,-0.205300,0.943300 -0.840900,-0.366700,-0.268400,-0.956200,-0.159000,-0.245700 -0.318300,0.683000,-0.448400,0.342000,0.492500,0.800300 0.480100,0.178100,0.315200,0.825500,0.336100,0.453400 0.386900,-0.046980,-0.554000,0.681900,0.206800,-0.701600 -0.657900,-0.491400,-0.271100,0.482700,-0.798300,0.360200 0.652200,0.557400,0.074250,0.007023,0.025020,0.999700 -0.653100,0.233600,0.409600,-0.790100,0.296000,0.536800 -0.589100,0.638400,0.398000,-0.696600,-0.029600,0.716800 0.251200,0.107300,-0.597800,0.450900,0.382300,-0.806500 0.630600,-0.143400,0.154800,0.966400,0.100200,0.236500 0.534500,0.553600,-0.053910,-0.424100,0.648200,-0.632400 -0.720900,0.274700,-0.267100,-0.844400,0.253600,-0.471900 -0.722500,0.091930,0.389700,-0.794600,0.369700,0.481600 -0.649100,-0.196800,0.568500,-0.691000,0.029670,0.722300 0.727500,0.495700,-0.033720,-0.410800,-0.831600,-0.373700 0.816000,0.128000,0.052930,-0.763900,0.337800,0.549900 0.642400,-0.212800,0.125700,0.969500,0.039720,0.241700 0.192600,0.667300,-0.352300,-0.348600,0.872800,0.341500 -0.062250,-0.511300,-0.518800,0.045160,-0.946800,-0.318700 -0.427800,-0.396500,0.696900,-0.476500,-0.235600,0.847000 -0.459200,0.057800,0.645600,-0.472300,0.341700,0.812500 -0.313700,0.716100,0.505300,0.056490,0.988800,-0.137900 0.098970,-0.547400,0.585300,-0.001104,-1.000000,-0.006472 0.701400,-0.404600,-0.037900,-0.119600,-0.907700,-0.402100 0.608400,0.034860,0.092720,0.937900,0.282900,0.200800 -0.609700,-0.327000,0.599600,-0.692100,-0.114900,0.712600 -0.697700,0.070880,-0.442800,-0.673100,0.347900,-0.652600 0.558800,-0.465300,0.290600,0.840900,-0.282700,0.461500 -0.717400,0.530700,-0.144600,-0.966500,0.062320,-0.249000 -0.756200,-0.547400,-0.269800,-0.000117,-1.000000,-0.000068 0.493100,-0.507300,0.380900,0.815600,-0.338900,0.468900 0.636700,-0.246800,-0.147500,0.962500,-0.072240,-0.261500 0.320300,-0.547400,0.454500,-0.001610,-1.000000,-0.001610 -0.291800,0.675000,-0.578300,-0.256800,0.359000,-0.897300 0.506800,0.215500,0.233200,0.937900,0.285200,0.197800 0.423600,0.039680,0.487500,0.691600,0.263700,0.672400 -0.806500,-0.547400,0.082280,0.000000,-1.000000,0.000000 -0.731600,0.638400,-0.077770,-0.981300,0.004342,-0.192500 -0.592300,-0.157300,0.621200,-0.657100,0.119300,0.744300 -0.325100,0.200100,0.644900,-0.245900,0.307000,0.919400 0.488900,0.386100,-0.136600,0.951500,0.178800,-0.250400 0.391000,0.604800,0.326900,0.874900,0.001132,0.484300 -0.424800,0.443100,-0.540200,-0.507700,0.128200,-0.852000 -0.475100,-0.547300,0.505900,0.127600,-0.959000,-0.253200 0.301600,0.604800,0.436000,0.720700,0.016520,0.693000 -0.841800,-0.176900,0.301600,-0.954900,0.044000,0.293600 -0.566500,0.664400,0.163200,0.336700,0.936000,-0.102800 -0.782600,-0.525900,0.298600,-0.808100,-0.354700,0.470300 0.084870,0.702200,0.549300,0.182400,0.768900,0.612900 -0.847700,0.063700,-0.087740,-0.929400,0.336400,-0.151800 0.488700,-0.226700,-0.480100,0.815100,0.005325,-0.579300 -0.266600,-0.531400,-0.701600,-0.253200,-0.353500,-0.900500 0.231300,0.421000,-0.512800,0.482200,0.141700,-0.864500 0.610300,0.510100,0.051330,0.257500,-0.802000,0.539000 0.006841,-0.496200,-0.716600,0.231000,-0.322400,-0.918000 0.611500,0.027010,0.045450,0.951300,0.308300,-0.006037 0.481300,-0.547400,-0.209500,0.000000,-1.000000,0.000000 -0.228500,-0.528900,-0.445200,-0.062080,-0.973500,-0.220200 0.551700,0.139400,-0.160600,0.907100,0.337800,-0.251100 -0.588200,0.677800,-0.138700,0.816500,0.527800,0.233800 0.402900,0.022740,-0.513400,0.693800,0.281100,-0.663000 -0.476600,0.509600,-0.501200,-0.508800,0.076660,-0.857500 0.622900,-0.020550,-0.102100,0.967900,0.235500,-0.088420 -0.333600,0.662300,0.414100,0.087880,0.978300,-0.187500 -0.062140,0.395400,0.626500,0.014680,0.186500,0.982300 -0.122400,-0.486600,0.595200,0.001651,-0.974000,-0.226700 0.452800,0.598300,0.200900,0.964300,-0.012840,0.264400 0.783200,0.084660,-0.031320,-0.814900,0.461000,-0.351400 0.284200,-0.240100,0.658100,0.516100,-0.022610,0.856200 0.253200,0.708700,0.437700,0.325800,0.887300,0.326300 -0.242500,-0.126500,0.763300,-0.227700,0.076790,0.970700 0.185400,-0.504300,0.661400,0.474200,-0.367600,0.800000 -0.712100,-0.407400,0.480500,-0.691700,-0.222400,0.687100 -0.876300,-0.286800,0.175600,-0.958400,-0.085210,0.272600 0.494700,0.531300,-0.059250,0.356700,0.563500,-0.745100 0.563800,0.111000,0.159500,0.907600,0.349500,0.232500 0.373400,-0.341500,-0.581900,0.688900,-0.149800,-0.709200 -0.612200,0.047090,0.544300,-0.661200,0.303300,0.686200 0.342600,-0.466300,-0.573600,0.667300,-0.288100,-0.686900 -0.546300,-0.450900,0.616400,-0.475500,-0.274600,0.835800 -0.514900,-0.537900,0.132500,-0.167600,-0.984700,0.047010 0.642200,-0.103200,0.075620,0.988100,0.153600,-0.006205 -0.402800,0.073310,-0.667900,-0.287300,0.349600,-0.891700 -0.556900,0.500200,-0.432900,-0.714200,0.090460,-0.694100 -0.632100,0.365200,0.383500,-0.841300,0.185700,0.507600 -0.848700,-0.203500,-0.285000,-0.938300,0.031150,-0.344400 0.108200,0.714100,-0.509900,0.153700,0.956700,-0.247000 -0.003703,-0.087180,0.759500,0.239700,0.170500,0.955800 -0.335700,-0.270300,-0.740900,-0.273600,-0.044180,-0.960800 -0.752800,0.182100,-0.266600,-0.827300,0.322300,-0.460100 0.105200,0.171200,0.646500,0.268200,0.342300,0.900500 0.512800,0.332200,-0.061850,0.974200,0.225600,-0.005227 -0.003914,-0.538100,-0.593300,-0.239900,-0.116700,0.963800 -0.747200,-0.476100,0.391500,-0.822700,-0.288000,0.490100 0.592600,-0.523200,-0.068550,0.943400,-0.331300,-0.013510 0.811700,0.495700,-0.070500,0.076550,0.086290,-0.993300 -0.596400,0.115500,-0.522700,-0.668400,0.362700,-0.649400 0.073970,0.089740,0.687100,0.269900,0.340200,0.900800 0.428600,-0.492900,0.142000,0.384300,-0.918100,0.097110 0.438700,0.507000,-0.249700,0.864000,0.079630,-0.497100 -0.834500,-0.428900,-0.240500,-0.943500,-0.229900,-0.238500 0.036280,-0.501900,0.586100,-0.290400,-0.167500,-0.942100 -0.051920,-0.457500,-0.739800,0.002034,-0.285400,-0.958400 -0.098970,-0.043320,0.755100,0.013920,0.214100,0.976700 -0.040700,0.697800,0.495700,-0.148500,0.704500,-0.693900 -0.232700,0.714000,0.553500,-0.072660,0.958200,0.276800 -0.113100,-0.528700,-0.136000,-0.012510,-0.973600,0.227800 0.095530,-0.528200,-0.403900,0.121000,-0.969600,-0.212500 0.420700,0.716200,0.082220,0.084590,0.996400,0.009410 -0.249300,0.690400,0.476800,0.152100,0.609600,-0.777900 0.460400,0.608200,-0.163900,0.964200,-0.003265,-0.265200 -0.781200,0.254500,0.041970,-0.964600,0.263300,0.014040 0.616300,-0.376800,-0.167700,0.946600,-0.183300,-0.265300 0.519900,-0.443400,0.374600,0.841200,-0.266600,0.470400 0.142700,0.675700,-0.402400,-0.381600,0.574500,0.724100 0.489800,-0.082190,-0.454600,0.846600,0.127800,-0.516600 0.351200,0.289800,-0.438900,0.679600,0.222600,-0.699000 -0.713900,0.696900,0.031890,-0.723500,0.690300,0.010520 -0.803500,0.184700,-0.038500,-0.948300,0.317100,0.013560 -0.072010,0.059800,-0.724300,-0.013330,0.343700,-0.939000 -0.192700,0.301700,-0.642700,-0.013890,0.234400,-0.972000 -0.609200,-0.493800,-0.545500,-0.679500,-0.319800,-0.660300 -0.600000,-0.508600,0.235300,-0.289300,-0.941500,0.172700 -0.259600,0.219300,0.655500,-0.250300,0.292300,0.923000 0.296900,0.608200,-0.437500,0.696800,-0.011300,-0.717200 -0.816500,-0.547400,-0.088750,-0.009958,-0.999900,-0.002848 0.550200,-0.042410,-0.339000,0.830300,0.238100,-0.503800 -0.376700,0.500200,-0.561800,-0.478200,0.094150,-0.873200 -0.248500,-0.206900,0.767200,-0.248200,0.061500,0.966700 0.612000,0.019430,-0.081930,0.951700,0.307000,0.008234 -0.623200,-0.050950,-0.569600,-0.700300,0.215200,-0.680700 0.342200,-0.336400,-0.613200,0.652700,-0.136900,-0.745200 -0.369000,-0.356500,0.726100,-0.240900,-0.194500,0.950800 0.542700,0.220900,0.008580,0.953900,0.299900,-0.013720 -0.868900,0.000080,-0.058650,-0.963400,0.267900,0.013730 -0.372100,0.153300,0.649900,-0.260600,0.357000,0.897000 -0.753900,-0.057140,0.424300,-0.842600,0.197300,0.501200 -0.521200,-0.038560,-0.638400,-0.498900,0.226000,-0.836700 -0.122300,-0.417200,-0.749300,-0.014060,-0.223700,-0.974600 -0.453900,0.715500,0.453800,-0.095270,0.983200,0.155600 -0.454100,-0.439600,-0.669500,-0.495300,-0.250300,-0.831900 -0.209300,0.300200,0.645500,-0.228500,0.223700,0.947500 -0.805600,-0.461200,0.302500,-0.840900,-0.283300,0.461200 -0.092200,-0.540800,0.393100,0.001590,-0.993100,0.116800 -0.407800,-0.099250,-0.712300,-0.270200,0.156500,-0.950000 0.519800,0.234700,-0.156900,0.931300,0.268600,-0.246200 -0.307100,-0.009153,-0.722100,-0.267200,0.234200,-0.934800 -0.857400,-0.462000,-0.112900,-0.928100,-0.288500,-0.235300 0.313900,0.524100,0.428100,0.712400,0.055020,0.699700 0.630600,-0.156800,-0.161200,0.952000,0.119800,-0.281800 -0.034950,0.464200,0.616600,0.128800,0.101900,0.986400 -0.841500,0.023030,-0.168000,-0.929500,0.286300,-0.232600 0.522800,-0.336400,-0.407800,0.853400,-0.151000,-0.498900 0.272900,0.554200,0.467600,0.717100,0.014630,0.696800 -0.288600,-0.196900,0.756700,-0.252100,0.038020,0.967000 0.349200,0.714500,-0.299300,0.225900,0.964700,-0.135700 -0.726700,0.141100,-0.343000,-0.814200,0.356800,-0.458000 -0.377500,-0.049380,-0.711900,-0.266500,0.212700,-0.940100 -0.196200,0.089430,0.716400,0.008318,0.340600,0.940200 -0.301800,-0.376700,0.739700,-0.239500,-0.175800,0.954900 0.529300,0.265600,-0.048490,0.973900,0.226400,-0.016150 0.311600,0.635100,0.425900,0.717100,-0.010870,0.696800 -0.213700,-0.515800,0.011950,0.287100,-0.957200,-0.037120 -0.743700,-0.547000,0.342400,-0.358400,-0.910200,0.207500 0.341200,0.635100,0.395100,0.721200,-0.036030,0.691700 -0.746100,-0.547400,-0.068630,0.011990,-0.999900,0.001287 -0.316700,0.675200,0.446400,0.371500,0.590800,-0.716200 0.039050,-0.539700,-0.108000,-0.109500,-0.991500,0.069630 -0.061930,0.006568,-0.741300,-0.013750,0.283200,-0.959000 -0.844600,-0.519900,-0.081340,-0.928500,-0.359600,-0.092810 0.062020,0.370500,0.604200,0.275600,0.178300,0.944600 -0.332500,-0.066760,0.731600,-0.230400,0.189100,0.954600 0.792100,-0.145300,0.069840,-0.410600,-0.191500,0.891500 -0.100200,-0.530500,0.146500,-0.036870,-0.979100,-0.200200 0.668200,-0.389100,-0.050880,-0.282700,-0.759800,-0.585400 -0.322400,0.314200,-0.609700,-0.263100,0.224500,-0.938300 0.205900,-0.516600,-0.639900,0.456900,-0.349700,-0.817900 0.596500,0.599300,0.011370,-0.245200,0.965900,0.083120 0.533000,-0.526600,-0.297100,0.808400,-0.351400,-0.472300 -0.783200,0.131900,-0.238300,-0.905800,0.357500,-0.227300 -0.681200,0.507100,-0.257300,-0.871100,0.081120,-0.484400 -0.661300,-0.526300,0.480200,-0.652700,-0.350300,0.671800 -0.853300,0.043630,0.101800,-0.948900,0.305300,0.080320 0.142700,-0.488900,0.517200,0.163000,-0.946000,0.280100 0.052260,0.188900,0.655400,0.263200,0.318100,0.910800 0.473700,0.657800,-0.116800,0.951400,0.132100,-0.278000 0.150100,-0.539800,-0.289900,0.086320,-0.992400,-0.087850 -0.831300,0.103100,0.101600,-0.926800,0.361100,0.102900 -0.468500,-0.499100,0.440900,-0.247600,-0.936900,0.246800 -0.817500,0.083810,-0.177700,-0.907300,0.351700,-0.230600 0.290200,0.350400,0.484900,0.705300,0.180300,0.685600 -0.851100,0.032950,-0.117600,-0.928300,0.289600,-0.233300 -0.709800,0.365500,0.250500,-0.925100,0.187900,0.329900 -0.634800,0.615000,-0.331400,-0.873000,-0.002751,-0.487800 -0.302200,-0.416800,0.730600,-0.238100,-0.220100,0.946000 0.341900,0.681200,-0.135200,-0.849200,0.477500,0.225400 0.203300,-0.490200,0.477500,0.160400,-0.942300,0.293800 0.471800,0.301400,0.256600,0.847800,0.249600,0.467900 -0.303400,0.254200,-0.631000,-0.262800,0.264900,-0.927800 -0.352200,0.335400,-0.596500,-0.264900,0.201700,-0.943000 0.509300,0.157600,-0.278100,0.820500,0.340000,-0.459600 -0.580900,0.526500,0.409300,-0.699100,0.049760,0.713300 0.399000,-0.493900,-0.228800,0.354800,-0.919400,-0.169600 0.196300,0.567700,0.519500,0.505300,0.020190,0.862700 -0.841400,-0.066970,-0.258400,-0.955500,0.172600,-0.239100 -0.523000,-0.288300,-0.658000,-0.510200,-0.090910,-0.855200 -0.262100,0.220700,-0.652800,-0.262400,0.300500,-0.917000 0.795800,-0.300500,0.063730,-0.504500,0.422700,0.752900 -0.052740,0.638400,-0.607100,0.115600,0.003700,-0.993300 0.052140,0.562600,0.584700,0.267900,0.011900,0.963400 0.149600,-0.527900,0.377300,0.122500,-0.970600,0.207400 -0.202500,-0.522100,-0.479400,-0.055750,-0.965400,-0.254700 0.780600,0.554100,0.057830,0.423500,0.629300,0.651700 0.724700,0.596200,0.023890,0.246500,0.941100,0.231500 -0.027690,0.391300,0.625400,0.199400,0.167300,0.965500 0.218500,0.185200,-0.584300,0.463500,0.320200,-0.826300 -0.321900,0.397100,-0.593100,-0.272900,0.165500,-0.947700 -0.493300,-0.503000,-0.399300,-0.238400,-0.943200,-0.231300 -0.792600,-0.458600,-0.319100,-0.835700,-0.288200,-0.467600 0.597600,-0.477000,0.141500,0.933800,-0.270000,0.234900 0.550300,-0.032380,0.335200,0.844300,0.237400,0.480500 -0.691700,-0.491000,-0.096610,-0.386900,-0.916900,-0.098050 0.643100,-0.305700,-0.097840,0.995900,-0.088930,-0.014910 0.848800,0.143000,-0.068880,-0.321700,0.093950,-0.942200 0.579400,0.116400,0.015280,0.930900,0.364800,-0.018880 -0.660700,0.376600,0.331400,-0.846200,0.174600,0.503400 -0.172800,-0.533200,0.716700,0.011620,-0.329200,0.944200 0.611600,-0.470800,0.011960,0.957400,-0.288500,-0.013770 0.264800,-0.498600,-0.465900,-0.656700,-0.156900,0.737600 0.793700,-0.005582,0.074290,-0.052090,0.000987,0.998600 0.411800,0.335200,-0.343700,0.841900,0.188200,-0.505700 -0.731500,0.648200,0.072140,-0.999100,0.040630,0.015010 -0.785000,-0.220100,-0.401400,-0.872800,0.006175,-0.488100 -0.849600,-0.505700,-0.018440,-0.939800,-0.341500,0.013340 -0.400400,-0.443900,-0.693700,-0.260900,-0.262800,-0.928900 0.483000,0.608200,0.080610,0.980200,0.005817,0.197800 0.410800,-0.091990,0.545200,0.707600,0.163100,0.687600 -0.712500,0.253800,0.299300,-0.828100,0.265300,0.493800 0.007174,-0.455700,0.734000,0.251100,-0.301500,0.919800 0.843400,-0.081730,-0.024910,0.960300,0.154300,-0.232400 -0.757500,-0.472200,-0.373500,-0.836400,-0.288500,-0.466100 -0.879200,-0.216800,-0.167200,-0.968900,0.015190,-0.247100 -0.486200,0.353000,-0.520700,-0.502000,0.197500,-0.842000 -0.571200,-0.489700,-0.366600,-0.288800,-0.915300,-0.280700 0.559700,0.097410,0.196100,0.906500,0.354500,0.229300 0.196400,0.456700,0.529600,0.505100,0.113800,0.855500 0.349600,-0.490200,-0.329400,0.349700,-0.913400,-0.208200 -0.783500,0.213700,0.130700,-0.918300,0.298200,0.260300 0.348100,0.415700,-0.408100,0.676900,0.181000,-0.713500 -0.755300,0.221600,-0.223200,-0.925300,0.297000,-0.235600 -0.725900,-0.256800,0.494500,-0.698400,-0.032410,0.715000 0.281900,-0.528100,-0.219300,0.215000,-0.968100,-0.128400 0.007964,-0.518900,0.479800,0.071820,-0.963900,0.256400 0.893300,0.390100,0.061220,0.660900,0.230600,0.714100 0.322200,0.690300,-0.394900,0.583800,0.598300,-0.548800 -0.173300,-0.519600,-0.089940,0.125000,-0.964800,0.231300 0.254000,0.477100,-0.488300,0.699300,0.112500,-0.705900 -0.250000,-0.491400,0.591600,0.370100,-0.488600,-0.790100 0.479200,0.330100,-0.210100,0.940200,0.221200,-0.258900 -0.061210,-0.530200,-0.449300,0.043240,-0.979400,-0.197500 0.672400,-0.329300,0.068940,0.251000,0.441200,0.861600 -0.572400,-0.007998,-0.599500,-0.501200,0.246100,-0.829600 0.471400,0.199100,-0.314900,0.827900,0.316400,-0.463100 -0.240900,-0.510800,-0.507600,-0.089870,-0.945300,-0.313700 0.589900,-0.406600,-0.238100,0.938100,-0.221200,-0.266500 -0.130200,-0.335100,-0.764400,-0.013160,-0.132900,-0.991000 0.248400,-0.496500,-0.624600,0.459200,-0.321400,-0.828200 -0.452500,0.547500,0.516600,-0.491800,0.043780,0.869600 0.352700,0.048920,0.557500,0.676400,0.314500,0.665900 0.420700,0.689200,-0.249100,0.680100,0.585400,-0.441300 0.107800,0.295200,-0.607000,0.278200,0.223700,-0.934100 0.761800,0.033140,0.039630,-0.887400,0.279500,0.366700 0.856500,0.336600,-0.064890,-0.540000,-0.113300,-0.834000 -0.323100,-0.540100,0.022610,0.124400,-0.992200,-0.009615 0.075600,-0.452800,-0.713000,0.232100,-0.284100,-0.930300 -0.448600,0.688900,0.503900,-0.422600,0.566100,0.707700 0.483100,-0.543500,-0.367700,0.716900,-0.552300,-0.425500 0.229500,0.439600,0.512200,0.516200,0.159900,0.841400 -0.602700,0.673500,-0.071740,0.747500,0.640000,0.177500 0.610500,-0.338300,0.216500,0.964600,-0.127400,0.230800 0.355900,-0.520000,-0.108600,0.255400,-0.964100,-0.072010 -0.796900,0.184100,-0.107200,-0.915700,0.326500,-0.234300 0.712900,0.530100,0.070240,-0.134600,-0.465400,0.874800 -0.405400,0.307100,-0.580500,-0.498100,0.229300,-0.836300 0.592800,-0.521100,-0.103100,0.928600,-0.346700,-0.132500 -0.250600,-0.026980,0.742900,-0.229200,0.215700,0.949200 -0.745800,0.333000,-0.142900,-0.947400,0.205500,-0.245500 -0.013150,0.375300,-0.620000,0.239200,0.175200,-0.955000 -0.002756,0.285200,-0.637400,0.236600,0.239700,-0.941600 -0.173600,-0.505100,0.032460,0.265500,-0.949400,-0.168000 0.826100,0.378900,0.051240,-0.780200,-0.276500,0.561100 0.436800,0.660800,0.242400,0.870800,0.136400,0.472300 -0.824900,0.026700,-0.229000,-0.928500,0.288100,-0.234300 0.117000,-0.457100,-0.701100,0.233800,-0.285900,-0.929300 0.117900,-0.116800,-0.728200,0.242900,0.119600,-0.962600 -0.454600,0.463300,-0.519500,-0.508400,0.112100,-0.853800 0.078250,0.194800,-0.643900,0.234400,0.309300,-0.921600 -0.251500,-0.416400,0.743200,-0.231500,-0.212100,0.949400 -0.774500,0.276900,0.082960,-0.967800,0.249200,0.034310 -0.061950,0.359500,-0.632100,0.017830,0.193700,-0.980900 0.122500,0.137800,-0.653300,0.234900,0.361100,-0.902500 0.835000,-0.009151,-0.049040,0.806100,-0.201400,-0.556500 -0.032220,0.695700,-0.584500,0.158400,0.700800,-0.695600 -0.845800,-0.411600,0.213900,-0.936100,-0.228900,0.267000 0.082860,0.672500,-0.569900,0.230400,0.302100,-0.925000 0.547500,-0.521100,-0.263100,0.904700,-0.355100,-0.235500 0.454300,0.395600,0.249500,0.861000,0.197200,0.468900 0.130600,0.329700,0.592900,0.374900,0.203600,0.904400 0.067800,0.255000,-0.627900,0.236000,0.265100,-0.934900 0.587300,0.053960,0.152800,0.911500,0.331200,0.244100 0.327600,0.273800,-0.468100,0.675800,0.244200,-0.695500 -0.048660,0.167400,0.684600,0.016180,0.315100,0.948900 0.046470,0.022030,0.719000,0.257200,0.284600,0.923500 0.420300,0.390900,-0.309300,0.846500,0.168200,-0.505100 -0.361600,0.254300,0.619500,-0.284600,0.253700,0.924500 -0.647900,0.336600,-0.367700,-0.854700,0.202900,-0.477900 -0.131900,-0.495200,-0.029080,0.071300,-0.935300,0.346500 -0.796200,-0.411600,0.343200,-0.836500,-0.225800,0.499300 0.818900,0.163700,0.029940,-0.915700,0.307400,0.258800 -0.667200,0.693200,-0.242900,-0.699200,0.585200,-0.410800 -0.313500,0.662500,-0.290000,0.019260,0.999800,0.002761 -0.465300,-0.495600,-0.451100,-0.200600,-0.922200,-0.330600 -0.233000,0.662500,-0.028390,0.013780,0.999900,0.005491 0.620400,-0.004701,-0.046530,0.963600,0.266800,-0.014920 -0.031540,-0.542600,0.203600,-0.049320,-0.993800,-0.099650 -0.723000,0.232800,-0.287000,-0.838900,0.284100,-0.464300 -0.700900,0.375800,-0.257100,-0.860700,0.174200,-0.478500 -0.484500,0.662500,0.112500,0.016450,0.999900,-0.000001 -0.596200,0.505200,-0.391700,-0.714500,0.089070,-0.693900 -0.518200,0.186900,-0.552700,-0.485500,0.321600,-0.812900 0.210500,-0.383700,0.685100,0.498600,-0.166900,0.850600 -0.092090,-0.542800,0.223700,-0.015370,-0.993800,-0.110400 -0.722900,0.376300,-0.198800,-0.955900,0.173200,-0.237100 0.551700,-0.547400,0.112500,0.000017,-1.000000,0.000017 -0.162600,0.662500,0.424300,0.030280,0.999500,0.005524 -0.514700,0.662500,-0.108900,0.016520,0.999900,0.000000 -0.353800,0.662100,0.323700,0.000000,1.000000,0.000000 0.452900,0.304900,-0.287900,0.841300,0.209300,-0.498400 -0.162700,0.618300,0.610000,0.006002,-0.004820,1.000000 -0.152500,-0.196700,-0.770900,-0.014320,0.032460,-0.999400 0.501400,-0.547400,-0.249700,0.000000,-1.000000,0.000000 -0.605300,-0.547400,0.434400,0.000000,-1.000000,0.000000 -0.695800,-0.547400,0.374000,0.000000,-1.000000,0.000000 0.149200,0.662500,-0.159200,-0.005498,1.000000,0.002796 -0.182700,-0.547400,0.685900,0.000000,-1.000000,0.000050 -0.233100,-0.547100,0.273400,0.008929,-0.999800,-0.019550 0.189500,-0.547400,0.585300,0.000000,-1.000000,0.000000 0.129100,-0.547400,-0.591800,0.000000,-1.000000,0.000000 -0.414100,-0.547400,-0.591800,0.000000,-1.000000,0.000000 0.383800,-0.076810,-0.564700,0.690100,0.144600,-0.709100 0.338500,0.689300,-0.165800,-0.787200,0.569300,0.237100 -0.622800,-0.508500,0.349400,0.846800,-0.085730,-0.524900 -0.303800,-0.539700,-0.078650,0.119100,-0.991100,0.060240 0.028550,0.662100,0.283500,0.000000,1.000000,0.000000 -0.534900,0.662500,-0.068630,0.000000,1.000000,0.000000 0.058690,0.662500,-0.209500,0.000000,1.000000,0.000000 0.159300,0.662100,0.082280,0.000000,1.000000,0.000000 -0.112200,0.335300,-0.636300,-0.013970,0.203100,-0.979100 0.478700,0.006282,0.443900,0.816400,0.281100,0.504400 0.290100,0.662500,-0.028390,0.016530,0.999900,0.000000 -0.727000,-0.049240,-0.462100,-0.706500,0.214400,-0.674500 0.109000,0.662100,-0.139100,0.000000,1.000000,0.000000 0.097220,-0.167000,0.740600,0.270300,0.084070,0.959100 -0.530600,-0.386200,0.641700,-0.485600,-0.177100,0.856000 0.259900,0.662100,0.132600,-0.016610,0.999900,0.000000 -0.363800,0.662100,0.112500,0.016490,0.999900,0.000000 -0.343700,0.662500,-0.169200,0.000000,1.000000,0.000000 -0.102300,0.662500,-0.219500,-0.016510,0.999900,0.000002 -0.605300,0.716800,0.253300,0.013010,0.999900,-0.009403 -0.545000,0.662500,-0.139100,-0.016750,0.999900,-0.000066 -0.675700,-0.547400,0.333800,0.000000,-1.000000,0.000000 -0.766200,-0.547400,0.223100,0.000000,-1.000000,0.000000 -0.142500,0.662100,-0.410700,0.000000,1.000000,0.000000 0.541600,-0.547400,0.172800,0.003993,-1.000000,0.001266 -0.112300,0.662100,0.192900,-0.000050,1.000000,0.000000 -0.802500,0.154100,-0.128100,-0.914800,0.333200,-0.228400 0.038210,-0.542600,0.343200,0.056360,-0.993700,0.096550 -0.011700,0.662100,-0.038450,0.000050,1.000000,0.000000 0.119100,-0.547400,0.615500,0.000000,-1.000000,0.000000 -0.192800,-0.357200,-0.760100,-0.014040,-0.158600,-0.987200 -0.704000,0.445400,-0.228100,-0.910700,0.141000,-0.388200 0.006803,0.183000,-0.666000,0.231600,0.325700,-0.916700 -0.394100,-0.546300,0.031990,0.037160,-0.999300,-0.002550 0.317000,0.375100,-0.447400,0.695100,0.174100,-0.697500 -0.021760,0.662100,-0.400600,0.000000,1.000000,0.000000 -0.739100,0.486800,-0.018440,-0.995400,0.095110,0.014260 -0.894600,-0.297100,-0.018370,-0.995300,-0.096260,0.014220 0.287500,-0.096890,-0.643600,0.480700,0.158300,-0.862500 0.081310,-0.509300,-0.486100,0.146400,-0.943900,-0.296100 0.249100,-0.543000,0.001789,0.112600,-0.993600,-0.001608 -0.743800,0.446900,-0.038490,-0.992100,0.124600,0.014170 0.173300,0.231000,0.597200,0.479100,0.291000,0.828100 -0.494600,0.662100,-0.048510,-0.016610,0.999900,0.000000 0.288200,0.124300,0.570900,0.470000,0.399600,0.787100 -0.775300,0.128900,0.267400,-0.887900,0.360700,0.285600 -0.291200,0.577800,0.587000,-0.238800,0.016910,0.970900 -0.756500,0.265200,-0.167500,-0.933400,0.267400,-0.239200 0.078820,0.662600,0.233200,0.005510,1.000000,0.005521 -0.709400,-0.253500,-0.504900,-0.716800,-0.032440,-0.696500 -0.011700,0.662100,-0.199400,0.000000,1.000000,0.000000 0.099020,-0.546600,0.172900,-0.025790,-0.999400,-0.020870 -0.102200,-0.206700,-0.772000,-0.014300,0.028130,-0.999500 0.592200,-0.021550,-0.215900,0.943400,0.218200,-0.249900 -0.102200,0.662100,0.253300,0.000000,1.000000,0.000000 -0.041980,-0.545100,0.343500,0.019910,-0.997300,0.070750 -0.013120,-0.538600,-0.391200,0.042480,-0.985400,-0.164600 0.229800,0.662100,-0.179300,0.000050,1.000000,0.000000 -0.401600,0.134000,-0.643500,-0.342500,0.353800,-0.870300 0.591700,-0.456200,-0.187600,0.920800,-0.282900,-0.268400 -0.542400,-0.286700,0.651100,-0.486500,-0.066700,0.871100 -0.348900,-0.133500,-0.733500,-0.275500,0.095660,-0.956500 0.189500,-0.547400,-0.601800,0.000000,-1.000000,0.000000 -0.635400,-0.547400,0.394100,0.000000,-1.000000,0.000000 -0.273300,0.662100,-0.390600,0.000000,1.000000,0.000000 0.229800,-0.547400,0.514900,-0.002542,-1.000000,-0.005215 -0.827100,-0.482100,0.209400,-0.919400,-0.294700,0.260400 -0.320000,-0.484500,-0.703900,-0.261500,-0.292000,-0.920000 0.317200,-0.007238,-0.606200,0.486800,0.249900,-0.837000 -0.857100,0.002796,0.140900,-0.926500,0.271000,0.261000 -0.334500,-0.541800,-0.038660,0.109500,-0.993600,0.026090 -0.162600,0.662100,0.031970,-0.000050,1.000000,0.000000 -0.142600,0.376000,0.631500,0.005857,0.180300,0.983600 -0.896500,-0.236800,0.072200,-0.999600,-0.025980,0.014280 -0.323600,-0.546800,0.203000,0.026190,-0.999300,-0.026960 0.540400,0.117800,-0.230300,0.915400,0.324000,-0.238900 -0.484600,0.662500,0.052100,0.000000,1.000000,0.000000 -0.363800,-0.547000,-0.189400,-0.009935,-0.999900,-0.009339 -0.410900,0.304800,0.579400,-0.465400,0.214500,0.858700 0.863300,0.235800,0.069670,-0.488700,0.047880,0.871100 -0.112300,0.662100,-0.320100,0.000050,1.000000,0.000000 0.431000,-0.547400,-0.300000,-0.000033,-1.000000,0.000017 -0.142500,-0.086430,-0.760500,-0.014100,0.158700,-0.987200 -0.209500,-0.433700,-0.744100,-0.013940,-0.237900,-0.971200 -0.859300,-0.137100,-0.227700,-0.963900,0.099220,-0.247100 0.108800,-0.545200,0.263100,0.049670,-0.997600,0.048420 0.058770,-0.546600,-0.209500,-0.025860,-0.999300,0.027190 0.534900,0.071270,0.299200,0.810200,0.389500,0.438100 0.649100,-0.267200,0.001812,0.970600,0.240200,-0.016740 0.028490,-0.546200,-0.289900,0.018360,-0.999300,-0.032860 0.068720,-0.546100,-0.269800,0.020610,-0.999300,-0.031080 -0.486700,-0.431800,-0.652300,-0.498100,-0.232300,-0.835400 0.017820,-0.501200,-0.528900,0.083440,-0.941700,-0.325900 0.247000,0.305300,-0.529300,0.477100,0.230700,-0.848000 -0.423900,-0.544800,-0.189200,-0.071920,-0.996600,-0.039200 -0.172600,-0.166800,-0.769400,-0.014270,0.066590,-0.997700 0.646700,-0.176900,-0.078630,0.999100,0.033270,-0.025340 -0.285800,-0.156700,0.755300,-0.242800,0.095040,0.965400 0.476800,0.577900,-0.107800,0.965900,0.028860,-0.257200 0.356000,0.610200,0.379800,0.722100,0.006649,0.691700 -0.895800,-0.196700,0.092310,-0.999400,0.032480,0.014320 -0.528700,-0.083550,-0.644000,-0.505400,0.159100,-0.848100 0.648700,-0.226800,-0.018290,0.999900,-0.008730,-0.014260 0.000296,0.500300,0.603500,0.264800,0.052390,0.962900 -0.172700,-0.511600,0.522300,-0.007105,-0.946200,0.323400 -0.112200,-0.146800,-0.768500,-0.014260,0.097230,-0.995200 0.270500,-0.407300,-0.640600,0.474900,-0.225200,-0.850800 -0.265500,0.635100,-0.590600,-0.273700,-0.004143,-0.961800 -0.572200,-0.501800,-0.318900,-0.289100,-0.942600,-0.167400 -0.442000,0.588000,-0.517400,-0.512700,0.024430,-0.858200 0.299400,-0.527800,0.192700,0.213100,-0.969600,0.119900 0.229300,-0.536200,0.233000,0.160000,-0.983200,0.087840 -0.881900,-0.056990,-0.028470,-0.980600,0.195600,0.013990 0.523700,-0.380300,0.398400,0.867900,-0.175800,0.464700 -0.602600,0.671100,0.049080,0.702600,0.710000,-0.046780 -0.446100,0.712300,-0.413100,0.185400,0.949900,0.251600 -0.804300,0.096320,0.211500,-0.899700,0.354200,0.255200 -0.403500,-0.534300,-0.329600,-0.132100,-0.982800,-0.129300 -0.754800,-0.360800,-0.431900,-0.861700,-0.161700,-0.481000 -0.082090,-0.528600,0.606900,-0.014300,-0.013780,-0.999800 -0.394100,-0.546300,-0.008268,0.037600,-0.999300,-0.000548 -0.172700,-0.534100,-0.429900,-0.006007,-0.982400,-0.186500 0.099280,-0.544600,0.092470,-0.081140,-0.996200,-0.031850 0.250100,0.716000,-0.380800,-0.085930,0.992400,0.088500 -0.101800,-0.504200,0.053350,-0.122100,-0.944900,-0.303700 -0.122400,-0.520000,-0.103500,-0.004557,-0.965300,0.261000 -0.753900,-0.087040,0.434400,-0.847500,0.161600,0.505500 0.107500,-0.006983,0.710600,0.265600,0.229500,0.936400 -0.727300,0.427700,-0.148100,-0.959200,0.137400,-0.247200 0.058060,-0.530100,0.419800,0.086750,-0.977600,0.191900 0.458800,-0.526900,-0.421400,0.803200,-0.351800,-0.480700 0.872900,-0.154000,-0.019870,0.875900,0.436100,-0.206300 0.109500,-0.544100,-0.028460,-0.100900,-0.994800,0.012680 -0.891000,-0.107100,-0.078570,-0.989600,0.141700,-0.026770 0.630700,-0.071910,-0.119700,0.949500,0.142400,-0.279700 0.037380,-0.026750,-0.731600,0.238700,0.225400,-0.944600 0.611500,-0.197000,-0.234400,0.959500,0.019200,-0.281000 -0.021810,-0.246800,0.772500,0.036550,-0.046190,0.998300 -0.642600,0.547400,0.323400,-0.857400,0.054840,0.511600 -0.768000,0.023110,0.361200,-0.822300,0.288300,0.490500 -0.328100,-0.518700,-0.454900,-0.123300,-0.963700,-0.236900 -0.762900,-0.486300,0.359200,-0.818000,-0.300700,0.490400 0.269500,-0.536000,0.162500,0.166300,-0.983300,0.073850 0.585500,0.485500,-0.007891,0.507500,-0.855700,-0.101400 0.209500,-0.546100,0.021920,0.038820,-0.999200,-0.000533 -0.874800,-0.107600,0.161100,-0.951400,0.142300,0.273200 -0.142500,-0.523000,0.483100,0.003715,-0.966000,0.258600 -0.362900,-0.387000,0.721800,-0.232700,-0.179100,0.955900 -0.856700,0.037180,0.021850,-0.955700,0.294000,0.013710 0.269100,-0.533600,-0.188900,0.161400,-0.982400,-0.093740 0.204100,0.181100,0.597700,0.492900,0.311300,0.812500 0.272300,0.537400,-0.463300,0.695500,0.060410,-0.716000 -0.577800,0.022940,0.587800,-0.697100,0.296200,0.652900 -0.112300,-0.508500,-0.605000,0.022580,0.020070,0.999500 0.678700,-0.407600,0.018810,-0.260900,-0.954100,0.146900 0.305900,0.256500,0.500700,0.691400,0.265900,0.671800 0.893900,-0.272000,-0.007239,0.970800,-0.233500,-0.055600 -0.412400,0.684800,0.527000,-0.421100,0.470300,0.775500 -0.742400,0.208700,0.275300,-0.843100,0.302600,0.444600 0.189600,0.399200,0.542900,0.507500,0.157300,0.847200 0.465200,-0.300300,0.498900,0.711900,-0.122000,0.691600 0.373900,-0.486800,-0.534600,0.663400,-0.296400,-0.687100 0.209000,-0.542900,0.172500,0.097360,-0.993800,0.053910 0.633400,-0.306800,-0.144300,0.957000,-0.132400,-0.258000 0.190600,0.067090,0.654200,0.475800,0.376600,0.794900 0.245900,0.243700,-0.548200,0.468000,0.270700,-0.841200 0.638300,-0.096730,-0.078650,0.982100,0.187800,-0.016880 -0.172500,0.080660,-0.715100,-0.014110,0.349300,-0.936900 -0.446600,0.706000,0.397700,0.393800,0.818900,-0.417600 -0.308500,0.527200,0.584800,-0.258700,0.061690,0.964000 0.824800,-0.126900,-0.066880,0.442900,0.169200,-0.880500 0.180200,-0.538600,0.274200,0.116800,-0.986700,0.113400 -0.634500,-0.505300,0.172500,-0.315300,-0.944900,0.088190 0.332600,0.577800,-0.402800,0.705200,0.009621,-0.709000 0.503800,0.365200,-0.097190,0.954100,0.186800,-0.234200 -0.421400,0.508400,-0.534200,-0.514900,0.082350,-0.853300 0.778000,0.502800,-0.069190,-0.193600,-0.226600,-0.954500 -0.544000,-0.515100,-0.289500,-0.263900,-0.953400,-0.146400 -0.122400,-0.537200,0.183000,-0.002687,-0.983000,-0.183500 0.096520,-0.506700,-0.690000,0.230100,-0.346700,-0.909300 0.169400,-0.547400,-0.541500,-0.002347,-1.000000,0.008398 -0.523800,-0.532500,0.192300,-0.161700,-0.982600,0.091940 0.414200,-0.486500,0.237300,0.095610,-0.983500,0.153300 0.304600,0.507400,-0.435200,0.700500,0.070120,-0.710200 0.068100,0.356200,-0.603200,0.240200,0.196500,-0.950600 -0.276700,0.155700,-0.671100,-0.261800,0.334900,-0.905200 0.189000,0.715500,-0.460200,0.095800,0.980700,-0.170700 0.439900,-0.490600,0.220200,-0.633600,-0.758300,-0.153400 0.360400,0.608200,-0.373100,0.845800,0.021740,-0.533000 0.375500,0.638400,-0.347300,0.858300,-0.029080,-0.512300 0.610200,-0.126700,-0.221600,0.961600,0.094790,-0.257500 0.141400,-0.528600,0.548700,-0.513600,-0.009823,-0.858000 0.278200,-0.520800,-0.278800,0.228100,-0.964100,-0.135700 0.536600,0.164800,0.182900,0.918400,0.311400,0.244000 0.176800,-0.425500,0.693200,0.436500,-0.233300,0.868900 -0.508900,0.621700,-0.475100,-0.687900,-0.007420,-0.725800 0.506100,0.375800,0.071590,0.982500,0.165900,0.085190 -0.062130,-0.393300,0.756500,0.006035,-0.222700,0.974900 0.078190,0.396700,-0.593200,0.241500,0.164200,-0.956400 -0.502700,0.567700,0.482500,-0.712800,0.048590,0.699700 0.315000,-0.481900,-0.592500,0.517800,-0.301900,-0.800500 0.478300,0.677100,-0.058530,0.928500,0.371100,-0.012000 -0.298700,0.446400,0.595800,-0.238700,0.115500,0.964200 -0.562400,-0.546600,-0.557800,-0.196200,-0.937400,-0.287800 0.283600,0.049310,0.606700,0.479400,0.308700,0.821500 -0.082080,0.245200,-0.659000,-0.013780,0.263800,-0.964500 -0.849400,-0.503700,0.045310,-0.939700,-0.341600,0.013910 0.507400,0.429600,0.057930,0.773500,-0.348800,0.529200 -0.888600,-0.256800,0.137900,-0.960900,-0.032550,0.274900 0.552800,0.479000,0.052910,0.531200,-0.617600,0.580000 -0.572200,-0.376800,0.620300,-0.478500,-0.155700,0.864200 0.186100,0.710800,0.480100,0.199300,0.923300,0.328300 -0.554200,-0.092080,0.634700,-0.482400,0.146600,0.863600 -0.182800,-0.326500,0.769300,0.014160,-0.081170,0.996600 0.276200,-0.539800,0.021930,0.132500,-0.991200,-0.001640 -0.112300,-0.538500,-0.186400,-0.005723,-0.985800,0.168000 -0.456000,0.015050,-0.661400,-0.490900,0.286400,-0.822800 -0.264800,-0.518600,0.591000,0.242800,0.000257,-0.970100 -0.721700,0.295900,0.261600,-0.873000,0.235100,0.427300 0.918000,0.355200,0.038960,0.903800,0.190400,0.383400 0.566700,-0.446600,-0.287700,0.911700,-0.263700,-0.315200 -0.865000,-0.339300,-0.190900,-0.958800,-0.146500,-0.243400 -0.655700,-0.401300,0.537400,-0.679200,-0.224600,0.698800 0.139200,0.577900,-0.548700,0.487500,0.026040,-0.872800 -0.241800,-0.477100,-0.728300,-0.241100,-0.291100,-0.925800 0.812200,-0.221000,0.060200,-0.711800,-0.103100,0.694800 0.009217,0.675100,0.465200,-0.247800,0.601100,-0.759800 0.913900,0.399200,0.004952,0.943100,0.330400,0.037840 0.327200,-0.530500,0.052730,0.197900,-0.980000,0.020560 -0.564700,-0.426400,0.612200,-0.473700,-0.212600,0.854600 0.574400,0.121400,0.099290,0.896000,0.384200,0.222700 -0.441200,0.104100,-0.634200,-0.477000,0.356400,-0.803400 0.599700,0.063870,0.024200,0.934000,0.357300,-0.000899 0.598600,-0.206800,0.291700,0.913800,0.048190,0.403400 -0.295700,-0.256800,0.754700,-0.245000,-0.024060,0.969200 0.299500,-0.535500,-0.058540,0.182700,-0.982900,-0.024010 -0.333000,0.487200,0.582200,-0.230200,0.058320,0.971400 0.543100,-0.542800,0.261000,0.760800,-0.615700,0.205200 -0.082170,-0.537900,-0.178800,-0.041670,-0.984300,0.171500 -0.393500,-0.515100,-0.429900,-0.154600,-0.953200,-0.259800 -0.672700,0.111600,0.451300,-0.635900,0.353900,0.685900 0.279200,0.692700,0.290800,-0.661700,0.608700,-0.437800 -0.050890,-0.500000,-0.549500,0.066160,-0.942000,-0.329000 -0.622300,0.700400,0.311100,-0.555300,0.765300,0.325400 0.421100,-0.042290,-0.518900,0.692600,0.184300,-0.697300 0.358400,-0.034110,0.583300,0.715100,0.224000,0.662100 0.852700,-0.144500,-0.050880,0.708000,0.418900,-0.568500 -0.162500,0.153800,-0.687400,-0.013200,0.332900,-0.942900 -0.886500,-0.186700,0.145000,-0.961600,0.033240,0.272500 -0.346500,0.282100,-0.611000,-0.265500,0.242800,-0.933000 -0.825400,-0.256800,0.334400,-0.858300,-0.032530,0.512000 -0.020260,-0.498700,-0.597500,-0.159000,-0.367700,0.916200 0.365500,0.355200,-0.405500,0.697000,0.162200,-0.698500 0.128000,-0.518500,-0.552400,-0.486600,0.016860,0.873500 -0.091920,0.405700,-0.623600,-0.013580,0.165000,-0.986200 0.835800,-0.131800,0.063800,0.585000,0.240000,0.774700 -0.683500,0.375700,0.293500,-0.845200,0.171800,0.506100 -0.856100,-0.317700,0.235700,-0.957200,-0.099370,0.271900 -0.640000,0.426300,0.350600,-0.851800,0.135700,0.506000 -0.662700,0.263200,-0.377500,-0.842600,0.262700,-0.470100 0.495100,0.416000,-0.097430,0.958400,0.141700,-0.247800 0.605200,-0.326500,-0.237700,0.955600,-0.106800,-0.274500 -0.284400,-0.533400,-0.018480,0.183400,-0.982700,0.024230 -0.644600,-0.226700,0.574100,-0.705300,0.007968,0.708900 -0.548900,-0.131900,0.644200,-0.494900,0.067770,0.866300 -0.568700,-0.276800,0.636800,-0.487200,-0.045210,0.872100 0.393200,-0.216800,-0.574000,0.707900,0.024430,-0.705900 0.517800,-0.057510,-0.399800,0.833100,0.206400,-0.513100 0.538700,0.103100,-0.257200,0.892900,0.378800,-0.243400 -0.336700,0.658300,0.574900,-0.249500,0.129600,0.959700 0.259800,-0.518500,-0.318800,0.188200,-0.964700,-0.184000 -0.549800,0.699800,0.265000,0.556000,0.765200,-0.324400 -0.202200,-0.530100,0.123300,0.110300,-0.978300,-0.175400 0.382600,-0.507800,0.162500,0.322800,-0.943000,0.080880 0.203400,-0.020190,0.677600,0.502200,0.190500,0.843500 -0.001499,-0.540100,0.380800,0.035190,-0.991800,0.123300 -0.051850,0.082540,-0.716200,0.012270,0.350400,-0.936500 0.391100,0.706000,0.265500,0.476600,0.839300,0.261600 -0.381300,0.335400,-0.586900,-0.416100,0.206300,-0.885600 -0.505500,-0.516100,-0.331100,-0.210500,-0.955900,-0.204600 0.390400,-0.517800,-0.318100,-0.858700,0.000111,0.512500 -0.821700,-0.006947,-0.277500,-0.895200,0.250400,-0.368500 -0.885100,-0.076170,-0.088430,-0.979000,0.162100,-0.123300 0.055140,0.242400,0.637200,0.263300,0.280100,0.923200 -0.665000,-0.336600,0.544200,-0.689900,-0.137800,0.710600 0.517600,-0.083980,0.413600,0.864900,0.152500,0.478300 0.076880,-0.357700,0.736700,0.260700,-0.161900,0.951700 -0.522900,0.699200,0.308300,0.579400,0.694300,-0.427000 0.348800,-0.505900,-0.549800,0.655300,-0.347100,-0.670900 0.106600,0.557700,-0.567200,0.403800,0.049230,-0.913500 0.349400,-0.306700,-0.610800,0.693100,-0.097460,-0.714200 -0.383900,-0.547400,0.635600,0.000000,-1.000000,0.000000 -0.734800,0.445800,-0.108500,-0.962000,0.127300,-0.241600 -0.523000,0.700800,0.431200,-0.442300,0.772100,0.456300 -0.220500,0.063120,0.723600,-0.203800,0.359600,0.910600 0.235700,-0.515200,0.492500,-0.512700,0.000123,-0.858600 -0.514100,-0.527800,0.251600,-0.215500,-0.968100,0.127600 -0.343200,0.375100,0.595400,-0.256100,0.214200,0.942600 -0.219100,0.138000,0.694800,-0.213200,0.335900,0.917400 -0.371500,0.456700,0.570800,-0.486400,0.109900,0.866800 -0.524200,-0.525400,-0.249300,-0.226000,-0.966000,-0.125900 -0.489200,-0.313600,-0.675300,-0.510400,-0.098350,-0.854300 -0.687500,0.315200,0.310900,-0.836000,0.226500,0.499700 -0.364500,0.648200,0.563600,-0.496900,0.023990,0.867500 -0.572400,-0.515300,0.572300,-0.652400,-0.347000,0.673800 0.417500,-0.177000,-0.548000,0.693000,0.058050,-0.718600 -0.387000,0.294500,0.595300,-0.485400,0.256300,0.835800 0.078180,0.467100,-0.583100,0.245700,0.110300,-0.963000 -0.755000,0.367800,0.032670,-0.983200,0.181900,0.014740 -0.704500,0.628400,0.185000,-0.962100,-0.008797,0.272600 -0.222800,-0.525400,0.463600,-0.062110,-0.967000,0.247100 -0.693900,-0.469400,-0.469300,-0.687000,-0.287400,-0.667400 -0.742700,0.012100,0.410000,-0.822700,0.285300,0.491600 0.407800,0.162300,-0.437700,0.671800,0.311500,-0.672000 0.761700,-0.134300,0.040450,-0.890000,-0.266400,0.370000 0.256700,-0.495200,0.622600,0.491800,-0.330100,0.805700 0.378400,-0.007542,-0.549200,0.667200,0.240700,-0.704900 -0.422100,0.507100,0.536400,-0.490500,0.079090,0.867800 -0.686500,0.577800,0.247000,-0.907900,0.026000,0.418300 0.491300,0.355100,-0.148300,0.940200,0.194200,-0.279800 -0.324600,0.310000,0.614500,-0.257100,0.225700,0.939700 -0.244400,-0.524100,0.001813,0.257200,-0.966400,-0.002593 -0.434000,-0.466100,0.672700,-0.470700,-0.276100,0.838000 -0.772800,-0.207000,0.423700,-0.858500,0.028190,0.512000 0.477600,-0.157300,-0.487400,0.686300,0.103800,-0.719900 -0.694300,0.195900,-0.361800,-0.832300,0.302300,-0.464600 -0.351600,0.053630,0.693800,-0.225200,0.364700,0.903500 0.505800,-0.166900,-0.447600,0.854600,0.099630,-0.509700 -0.141600,0.230600,-0.662400,-0.013500,0.290400,-0.956800 0.115900,0.711200,0.520700,0.187300,0.934300,0.303400 -0.759500,0.345200,-0.077570,-0.966300,0.198000,-0.164300 -0.818500,0.124100,0.121800,-0.898600,0.362500,0.247200 -0.504600,0.662100,-0.189400,0.016510,0.999900,0.000000 -0.333700,0.662500,-0.139100,0.000033,1.000000,-0.000017 -0.402300,0.376200,0.567300,-0.474700,0.192700,0.858800 -0.335700,-0.356800,0.734300,-0.233400,-0.167600,0.957800 -0.433200,0.712900,-0.469300,-0.155200,0.953200,-0.259300 0.201100,0.487800,-0.520500,0.485200,0.095070,-0.869200 -0.152700,-0.336200,0.767600,0.024380,-0.124300,0.991900 -0.072050,-0.525200,0.473700,0.003337,-0.966100,0.258200 0.263400,-0.490900,0.427800,0.287200,-0.916200,0.279400 -0.681700,0.608200,-0.247500,-0.873300,0.004719,-0.487200 -0.674600,-0.121600,0.536300,-0.692400,0.115500,0.712200 -0.646300,0.191400,-0.431700,-0.681000,0.313400,-0.661800 -0.676500,-0.521400,-0.461900,-0.671900,-0.349400,-0.653000 -0.515300,-0.537500,-0.139700,-0.173700,-0.983600,-0.047570 -0.514100,-0.534800,-0.179000,-0.161700,-0.982800,-0.089440 -0.821100,-0.476700,-0.238400,-0.928400,-0.288600,-0.234100 -0.543400,-0.513500,0.302600,-0.271300,-0.948600,0.162900 -0.102300,-0.546100,-0.330100,0.000106,-0.999300,-0.037560 0.692000,0.605500,-0.007841,0.098160,0.991800,-0.081450 -0.628700,0.706100,0.084110,0.523400,0.844700,-0.111900 -0.514000,-0.505100,0.373200,-0.229400,-0.944200,0.236200 0.119100,-0.546900,-0.149200,-0.029640,-0.999400,0.017600 0.119300,0.598000,-0.559300,0.487100,0.016590,-0.873200 -0.233100,-0.546000,-0.239800,0.018070,-0.999100,0.037730 -0.333700,0.662100,-0.048510,-0.016610,0.999900,0.000000 0.129100,0.662100,-0.189400,-0.002740,1.000000,-0.002735 0.159300,0.662100,0.122500,0.000033,1.000000,-0.000017 -0.142400,-0.146800,-0.768100,-0.014190,0.097190,-0.995200 0.189500,0.662500,-0.209500,0.016520,0.999900,0.000000 -0.102300,0.608100,0.609600,0.008708,0.007795,0.999900 -0.767000,-0.296600,0.427500,-0.855000,-0.095830,0.509700 -0.668000,0.497100,0.287700,-0.855000,0.091490,0.510400 -0.192900,-0.136800,0.771200,0.008674,0.066870,0.997700 -0.333700,0.662600,-0.390600,-0.008642,1.000000,-0.000516 -0.092210,0.662300,-0.380500,-0.016580,0.999800,-0.008260 -0.303500,0.662500,0.213100,0.005456,1.000000,-0.002727 0.481300,-0.547300,0.343800,0.025590,-0.999600,0.014990 0.259900,0.662600,-0.219600,-0.027600,0.999600,-0.002754 -0.776300,-0.547400,0.082280,0.000000,-1.000000,0.000000 -0.595200,-0.547400,-0.481100,0.000000,-1.000000,0.000000 0.310200,-0.547400,-0.461000,0.000000,-1.000000,0.000000 -0.524800,-0.547400,-0.511300,0.000000,-1.000000,0.000000 -0.011700,0.662100,-0.290000,0.000000,1.000000,0.000000 0.259900,-0.547400,0.535000,0.000000,-1.000000,0.000000 -0.504700,-0.547400,0.524900,0.000000,-1.000000,0.000000 0.521500,-0.547400,0.233200,0.000050,-1.000000,0.000000 0.491300,-0.547400,0.263400,0.000000,-1.000000,0.000000 -0.404000,0.662500,0.323700,0.033040,0.999500,-0.000003 0.058660,0.662800,-0.310100,0.000001,1.000000,0.000000 -0.162600,0.662100,-0.279900,-0.000050,1.000000,0.000000 0.109000,0.662500,0.253300,0.005532,1.000000,-0.002821 0.538300,0.235100,-0.028340,0.949600,0.313300,-0.013720 -0.253000,0.335700,0.626500,-0.246100,0.223600,0.943100 -0.894200,-0.136600,-0.068690,-0.995200,0.097250,0.013910 -0.051760,-0.542900,-0.210200,-0.033020,-0.993700,0.107000 -0.122300,-0.547300,-0.700700,-0.001483,-0.980100,-0.198400 0.552300,0.189800,-0.031660,0.950000,0.311600,-0.017060 0.568100,0.144100,-0.028330,0.924300,0.381500,-0.013450 0.149300,0.662500,-0.048510,0.016460,0.999900,-0.000006 0.541600,-0.547400,-0.058570,0.000000,-1.000000,0.000000 -0.585100,0.662500,0.021910,0.129400,0.991600,-0.004675 -0.262300,-0.026470,-0.739000,-0.263100,0.223500,-0.938500 -0.575700,0.715900,0.283800,0.161300,0.982700,-0.090600 0.183100,-0.191200,-0.711800,0.486600,0.032890,-0.873000 0.109000,0.662100,-0.018330,0.000050,1.000000,0.000000 -0.540000,0.264200,0.509700,-0.678500,0.236400,0.695500 -0.513600,-0.547000,0.593200,-0.186200,-0.924500,0.332700 0.505200,-0.346400,0.440900,0.870300,-0.163900,0.464500 0.576200,-0.026960,-0.278300,0.943500,0.210200,-0.256000 0.511800,-0.130300,0.437500,0.868300,0.068760,0.491300 -0.357300,-0.541600,-0.671600,-0.237800,-0.545300,-0.803800 -0.082060,0.648200,-0.607300,-0.014240,0.041110,-0.999100 -0.700800,-0.528600,-0.190800,0.969800,0.029730,0.242000 0.416700,0.550700,0.282700,0.880700,0.058660,0.470000 0.495100,0.284700,0.201400,0.937400,0.267800,0.222400 0.406100,0.183400,0.429800,0.687000,0.285800,0.668100 -0.201900,0.557600,0.610300,-0.185000,0.051340,0.981400 0.388700,0.016720,0.533100,0.680600,0.296700,0.669900 0.129100,0.662100,-0.108900,-0.016540,0.999900,0.000002 0.295100,-0.511700,-0.592200,0.455900,-0.351100,-0.817800 -0.685800,-0.461100,0.487000,-0.667300,-0.288700,0.686500 -0.595900,0.080420,-0.542300,-0.672000,0.349200,-0.653100 -0.478400,-0.167000,0.687500,-0.483000,0.060660,0.873500 -0.005427,0.070440,0.717100,0.259600,0.349300,0.900300 0.086820,-0.537600,-0.680500,0.228600,-0.427700,-0.874500 -0.874100,-0.226800,0.192200,-0.962700,-0.008326,0.270500 -0.344000,-0.545100,-0.109000,0.064200,-0.997300,0.036080 0.814800,0.447900,-0.065610,-0.447600,-0.270500,-0.852300 0.028950,-0.543600,-0.169700,-0.077340,-0.993700,0.081390 -0.132300,-0.017070,-0.746500,-0.014070,0.227500,-0.973700 0.219700,0.662100,-0.078690,0.000050,1.000000,0.000000 -0.544900,0.662100,0.122500,-0.016610,0.999900,0.000000 -0.353800,0.662500,-0.209500,-0.005498,1.000000,0.002796 -0.166000,0.671700,-0.478000,0.008293,0.681300,0.732000 -0.598700,-0.216800,0.618700,-0.699000,0.035320,0.714200 -0.132400,0.662100,-0.290000,0.000000,1.000000,0.000000 0.410800,-0.547400,-0.450900,0.001120,-1.000000,-0.001216 -0.705900,-0.547400,0.313700,0.000000,-1.000000,0.000000 -0.072100,0.662500,-0.219500,0.000000,1.000000,0.000000 0.290100,0.662500,0.102400,0.000000,1.000000,0.000000 0.641900,-0.115400,-0.047800,0.990900,0.133800,-0.015760 0.425100,0.092050,0.458900,0.679300,0.320600,0.660200 -0.462300,0.537500,-0.507600,-0.510600,0.059800,-0.857700 0.065050,-0.538800,0.027980,-0.157600,-0.987200,-0.025400 0.451700,0.340600,0.276000,0.849300,0.210600,0.484100 -0.827600,0.119800,-0.058660,-0.930900,0.365000,0.013280 0.398500,-0.333100,0.563100,0.713000,-0.156300,0.683500 0.377300,-0.283200,0.592200,0.712100,-0.118900,0.691900 0.336500,0.307300,0.450800,0.688200,0.239100,0.685000 0.571200,0.137200,0.035380,0.930100,0.367200,-0.011110 -0.471900,0.681800,-0.337600,0.634300,0.455700,0.624500 -0.783000,-0.445900,0.349200,-0.824900,-0.270900,0.496100 0.018170,-0.541500,-0.359600,0.040140,-0.993700,-0.104200 -0.283100,0.002814,0.727500,-0.247000,0.280800,0.927400 -0.021370,-0.541200,-0.180100,-0.055930,-0.993400,0.099740 -0.152500,-0.546700,-0.280000,0.001246,-0.999500,0.032820 0.563500,-0.206900,-0.354100,0.859300,0.056090,-0.508500 -0.774600,0.029750,-0.340900,-0.835200,0.290200,-0.467100 0.606700,-0.396700,-0.188000,0.940800,-0.202100,-0.272000 0.068110,-0.539200,0.577200,-0.281900,-0.215900,-0.934800 -0.721400,0.618300,-0.117700,-0.970100,-0.004777,-0.242700 -0.687000,-0.486600,0.158800,-0.224900,-0.972100,0.065880 0.583400,-0.260100,0.317500,0.873100,-0.007737,0.487500 -0.373600,-0.547200,0.664500,-0.028070,-0.976600,0.213000 -0.624000,-0.514200,-0.108600,-0.297000,-0.951900,-0.075100 0.932200,0.316200,-0.007982,0.990600,0.113300,-0.076960 0.347200,0.671700,0.093160,-0.662700,0.724400,-0.190000 0.239200,-0.543700,-0.058490,0.106300,-0.994100,-0.021700 0.256700,0.365400,0.509500,0.507100,0.148500,0.849000 0.606600,-0.486500,-0.058490,0.945400,-0.325900,-0.008163 0.082880,0.008350,-0.710800,0.234800,0.284300,-0.929500 -0.013700,-0.077240,-0.755200,0.241700,0.161300,-0.956800 0.708100,-0.408000,0.032990,-0.108800,-0.933300,0.342400 -0.393800,-0.545500,0.223000,-0.044050,-0.998300,0.038130 0.474000,0.517100,0.130700,0.966600,0.046120,0.252000 0.444600,0.598000,0.229700,0.920400,0.006520,0.390900 0.794200,0.004267,-0.070740,-0.119400,0.025190,-0.992500 0.208800,-0.541200,0.202600,0.102200,-0.993200,0.055980 -0.682500,-0.299700,-0.528300,-0.713700,-0.097520,-0.693600 -0.348700,-0.488700,-0.556800,0.264700,-0.853900,0.448100 -0.261500,0.365500,-0.616000,-0.268600,0.187100,-0.944900 0.555100,0.142900,0.141000,0.908600,0.352600,0.223800 0.791000,0.109300,-0.007913,-0.867400,0.487400,-0.100700 -0.052030,-0.286800,0.771700,0.005962,-0.092480,0.995700 0.402800,-0.190200,0.567300,0.712600,0.001956,0.701600 0.398100,-0.515200,0.309200,-0.873300,0.000077,-0.487200 -0.535700,0.525600,-0.452000,-0.715700,0.063640,-0.695500 -0.695600,-0.120100,-0.511100,-0.711200,0.110700,-0.694300 -0.714900,-0.220100,-0.500300,-0.717100,0.008029,-0.696900 -0.243400,-0.536400,-0.129300,0.129500,-0.983200,0.128800 0.645000,-0.246700,-0.117300,0.977500,-0.051240,-0.204500 -0.660400,-0.528600,0.286300,0.857900,0.022260,-0.513300 0.433100,0.436600,-0.273900,0.854800,0.137300,-0.500500 -0.024060,-0.346900,-0.761400,0.209300,-0.160500,-0.964600 0.806200,0.136000,-0.016770,-0.893400,0.408100,-0.187800 -0.453800,-0.543200,0.172500,-0.096690,-0.993600,0.057690 -0.665600,0.040300,-0.491200,-0.684500,0.295700,-0.666300 0.394600,0.131600,0.468600,0.656100,0.391000,0.645500 0.444800,0.254000,0.330400,0.847700,0.243200,0.471400 -0.551800,0.114100,-0.563800,-0.476900,0.362000,-0.800900 -0.547600,-0.522000,-0.582900,-0.479400,-0.349200,-0.805100 -0.626400,-0.538200,0.343000,0.858700,-0.114400,-0.499600 0.840300,0.188100,-0.052260,-0.770300,0.188300,-0.609200 0.379000,-0.503800,-0.209000,0.307200,-0.944500,-0.116700 0.693800,0.504400,0.029560,-0.217300,-0.937300,0.272600 -0.549800,-0.246800,0.648700,-0.486400,-0.057460,0.871800 -0.296500,0.594400,-0.581900,-0.272500,0.019820,-0.962000 0.652300,0.591400,-0.052600,-0.039180,0.796100,-0.603900 -0.708900,-0.518600,-0.159800,0.973400,-0.003093,0.229300 0.370100,0.057050,0.534700,0.671000,0.367100,0.644200 -0.443600,-0.027520,0.682000,-0.469500,0.230200,0.852400 0.385000,0.537400,0.340700,0.865300,0.049240,0.498800 -0.765700,-0.431600,-0.382500,-0.849600,-0.232000,-0.473700 0.379600,0.076850,0.514000,0.671800,0.334800,0.660800 0.614300,-0.017450,0.130500,0.944400,0.227500,0.237400 -0.604700,-0.000211,-0.571200,-0.690900,0.270300,-0.670600 -0.392800,-0.498700,0.545600,0.426000,-0.249000,-0.869800 0.594000,-0.523700,-0.008217,0.951300,-0.307400,-0.021480 -0.818900,-0.076120,0.321800,-0.847500,0.162200,0.505300 0.440900,-0.092100,0.514900,0.706900,0.167500,0.687200 0.246900,0.547600,0.489800,0.495800,0.039600,0.867600 -0.881300,-0.316800,-0.137600,-0.965200,-0.099650,-0.241800 -0.011810,-0.526900,-0.450700,0.062510,-0.967500,-0.245100 -0.798600,-0.263500,-0.374700,-0.872900,-0.035420,-0.486700 -0.533900,0.148000,0.564600,-0.464000,0.344900,0.815900 -0.897900,-0.204400,-0.038280,-0.999400,0.031690,0.014400 0.460300,-0.407200,-0.480600,0.680500,-0.222600,-0.698200 0.326000,-0.508500,-0.406400,-0.695200,-0.080390,0.714300 0.257800,-0.066670,-0.654500,0.478300,0.173300,-0.860900 0.342300,0.082460,-0.543400,0.663100,0.322100,-0.675700 -0.232900,-0.543500,-0.349800,-0.029540,-0.994400,-0.101900 -0.326800,-0.481000,0.705900,-0.231900,-0.299800,0.925400 0.150900,0.451400,-0.553100,0.483100,0.127200,-0.866300 0.201200,-0.498400,-0.454600,0.186100,-0.931300,-0.313000 -0.726500,-0.508500,0.099990,0.974200,-0.101900,-0.201300 0.855200,0.377300,0.072920,-0.209100,-0.072660,0.975200 -0.055940,-0.111600,0.766600,0.014430,0.117400,0.993000 -0.673300,-0.449200,-0.499000,-0.689500,-0.275200,-0.670000 -0.494500,0.443000,-0.498700,-0.509200,0.129400,-0.850900 0.635400,-0.107200,0.120700,0.964900,0.108200,0.239200 0.475400,0.684500,0.032060,0.845900,0.533400,-0.000202 0.454400,0.163800,0.371100,0.823500,0.331300,0.460500 0.202200,-0.349600,0.695800,0.521800,-0.196600,0.830100 -0.373200,-0.537500,0.556600,0.509900,-0.096930,-0.854700 -0.632800,-0.317400,0.578600,-0.693300,-0.100600,0.713600 -0.522400,-0.540100,-0.025890,-0.123400,-0.992400,0.001243 0.836000,0.510700,0.054710,0.603400,0.501500,0.620000 -0.457600,0.335000,0.545300,-0.490000,0.191900,0.850300 -0.024920,0.333300,0.636400,0.198200,0.214400,0.956400 0.430100,-0.301900,-0.533000,0.693200,-0.096310,-0.714200 -0.653300,0.564300,-0.300300,-0.872600,0.035090,-0.487200 -0.566800,-0.084510,-0.621500,-0.505500,0.160200,-0.847800 0.077580,-0.036850,-0.723800,0.238700,0.225300,-0.944600 -0.052490,0.163100,-0.685700,0.028230,0.335000,-0.941800 0.912900,0.133300,0.011330,0.943200,-0.316700,0.100100 0.283600,0.667500,-0.241100,-0.409900,0.881600,0.234100 -0.271100,0.285300,0.633800,-0.221200,0.241900,0.944700 0.272500,0.078020,-0.599800,0.456900,0.349800,-0.817900 -0.343000,0.638400,-0.568700,-0.269700,0.002381,-0.962900 0.840000,-0.325000,0.067080,0.458600,-0.326100,0.826600 0.356400,0.184200,0.480700,0.678600,0.322500,0.659900 0.481700,-0.508500,0.001778,-0.999900,0.003968,0.014270 -0.392100,-0.236700,-0.726100,-0.271500,-0.025620,-0.962100 -0.679400,-0.488900,-0.164500,-0.358500,-0.931400,-0.063680 0.360400,-0.507800,-0.368500,-0.871600,-0.031510,0.489200 -0.561200,-0.495300,-0.586200,-0.484800,-0.323100,-0.812700 0.856400,-0.350800,0.011400,0.732100,-0.672800,0.107000 0.560600,0.468700,0.020590,0.659400,-0.731800,0.172500 0.511700,0.342100,-0.001500,0.979200,0.200000,-0.033300 -0.751400,0.127000,0.314400,-0.811900,0.340700,0.474100 -0.830000,-0.365100,-0.295700,-0.861600,-0.160900,-0.481400 -0.880500,-0.047320,-0.078270,-0.975800,0.215900,-0.034760 0.592900,-0.116500,-0.279500,0.952800,0.139600,-0.269500 -0.643900,0.143300,0.463200,-0.652900,0.378900,0.655900 -0.665100,-0.236700,0.554400,-0.696800,-0.009449,0.717200 -0.392000,-0.501100,-0.478300,-0.172200,-0.941700,-0.289000 -0.842500,-0.496900,-0.128000,-0.915800,-0.327800,-0.232200 -0.182900,-0.107400,0.767800,0.014130,0.180400,0.983500 0.166100,-0.535000,0.534100,-0.509100,-0.039200,-0.859800 -0.461800,0.699900,-0.367800,0.471200,0.748000,0.467300 0.016330,-0.495700,0.718900,0.271900,-0.343900,0.898800 -0.142700,-0.513900,-0.080340,0.061980,-0.952100,0.299500 -0.732000,0.152200,0.329100,-0.801200,0.362500,0.476100 -0.750400,-0.386600,0.430900,-0.843500,-0.191100,0.502000 0.455200,0.375600,-0.256500,0.870600,0.177000,-0.459000 0.330700,0.705200,0.364400,0.404500,0.832900,0.377600 -0.897200,-0.277100,-0.078670,-0.997700,-0.062600,-0.027700 -0.704300,-0.167100,0.513100,-0.693400,0.099750,0.713600 -0.521900,-0.526700,-0.596200,-0.480500,-0.349300,-0.804400 0.458800,-0.196900,-0.508800,0.696900,-0.000734,-0.717100 0.370600,0.077320,-0.518700,0.650700,0.350300,-0.673700 -0.626800,0.510500,-0.354100,-0.870200,0.078250,-0.486400 0.464100,-0.256800,-0.504200,0.696600,-0.032460,-0.716800 0.469100,-0.525300,0.126800,-0.968800,-0.003238,-0.247900 -0.109000,0.237600,0.663200,0.006265,0.255300,0.966800 -0.368500,-0.529200,-0.384900,-0.115600,-0.974300,-0.193500 0.325500,0.112600,0.550400,0.669000,0.387400,0.634300 0.319000,0.527300,-0.419300,0.701300,0.059930,-0.710400 -0.716600,0.404300,-0.204500,-0.954900,0.165300,-0.246500 0.031730,-0.072080,-0.742800,0.243500,0.163000,-0.956100 -0.757900,0.204300,0.231900,-0.917500,0.300500,0.260400 -0.465100,-0.491300,-0.492500,0.346300,-0.815900,0.463000 0.495000,-0.326100,-0.457300,0.856400,-0.080950,-0.510000 0.735100,0.511500,0.063810,-0.277700,-0.557500,0.782400 0.475200,0.214200,0.300700,0.831000,0.319300,0.455600 0.097460,0.042740,-0.696400,0.233100,0.301700,-0.924500 0.430900,0.219000,0.376200,0.841000,0.270400,0.468600 -0.222100,0.315300,-0.637600,-0.180800,0.227600,-0.956800 0.444200,-0.320200,0.518200,0.714200,-0.091080,0.694000 0.046820,0.699200,-0.470400,-0.191000,0.710900,0.676900 0.934500,0.251900,-0.003156,0.998800,-0.048760,0.002506 -0.231600,-0.356700,0.760700,-0.254700,-0.168900,0.952200 -0.005572,-0.176500,-0.764900,0.245700,0.044900,-0.968300 0.629400,-0.267100,-0.168600,0.963200,-0.032320,-0.266900 0.479000,0.305100,-0.231500,0.949400,0.200300,-0.242000 -0.879200,-0.395900,0.051900,-0.976900,-0.213500,0.013620 0.419800,-0.500200,0.102500,0.330900,-0.939900,0.084390 -0.421000,0.670500,-0.378100,0.396700,0.743300,0.538700 -0.737700,-0.336600,0.468200,-0.851000,-0.137100,0.506900 -0.444000,-0.498700,0.517000,0.417800,-0.279200,-0.864600 -0.475100,-0.536800,0.622800,-0.432000,-0.371200,0.821900 -0.725100,-0.451100,0.443400,-0.825000,-0.280000,0.490900 0.513600,0.010270,0.378600,0.834800,0.312800,0.453000 0.139300,0.460000,0.563000,0.511600,0.105300,0.852700 -0.509900,0.551100,-0.476300,-0.686200,0.052870,-0.725500 0.463300,-0.451200,-0.461700,0.759300,-0.298500,-0.578300 0.154100,-0.200200,0.725900,0.275500,0.073680,0.958500 0.561700,-0.547400,-0.118900,0.000579,-1.000000,-0.000286 -0.420900,-0.366400,-0.705300,-0.300700,-0.161600,-0.939900 -0.757700,0.356200,0.001930,-0.980000,0.198300,0.014250 0.252600,0.199200,-0.560000,0.464200,0.302200,-0.832600 0.320500,0.431400,0.434700,0.702800,0.126000,0.700100 0.280700,-0.133400,0.654600,0.518100,0.102600,0.849200 0.380200,0.631700,0.345100,0.868100,0.021470,0.495900 -0.172800,0.648200,0.610900,0.005978,0.023960,0.999700 -0.478300,-0.517300,-0.354200,-0.199100,-0.960700,-0.193400 0.742600,-0.022980,0.002791,-0.991700,0.128400,0.000210 0.397800,0.304700,-0.380200,0.847400,0.198200,-0.492600 -0.082200,0.012910,0.740900,0.016680,0.312300,0.949800 0.574100,0.588800,-0.026610,-0.323100,0.912500,-0.250900 -0.569900,-0.519200,-0.214700,-0.230900,-0.964400,-0.128900 0.899300,0.385800,-0.054350,0.726100,0.242000,-0.643600 0.747000,-0.085550,0.030100,-0.951400,-0.116800,0.284900 -0.012020,-0.527100,0.071290,-0.216800,-0.967600,-0.129800 -0.593100,-0.266800,0.622500,-0.615200,-0.041910,0.787200 -0.717500,0.411000,0.196300,-0.950500,0.155300,0.269000 -0.610800,-0.520200,0.085310,-0.254400,-0.964900,0.064700 0.211500,0.528200,-0.511000,0.486700,0.061340,-0.871400 -0.765800,0.312700,-0.082370,-0.951300,0.233800,-0.200800 0.843400,-0.267100,-0.071010,0.015020,0.000198,-0.999900 0.504300,-0.188100,0.460000,0.866900,0.018080,0.498100 -0.352300,-0.226700,-0.737600,-0.269800,-0.008470,-0.962900 -0.256900,0.115900,-0.692400,-0.253700,0.365200,-0.895700 0.382000,0.714700,-0.149500,-0.262000,0.962100,0.075960 0.179100,-0.125000,0.712900,0.340500,0.099370,0.935000 0.297200,-0.356600,-0.636700,0.480800,-0.160700,-0.862000 0.792900,-0.035630,0.074470,-0.021010,0.015450,0.999700 -0.450800,-0.521900,-0.509800,0.509000,0.016760,0.860600 -0.162600,0.436600,-0.618200,-0.014180,0.129900,-0.991400 0.411600,0.513800,0.296900,0.873800,0.082480,0.479300 -0.633300,-0.492700,0.262000,-0.342700,-0.916600,0.205900 -0.766300,0.218500,0.185800,-0.918300,0.298500,0.260200 0.155400,-0.412000,-0.702900,0.312400,-0.231800,-0.921200 -0.706800,0.037380,0.455100,-0.760800,0.323800,0.562400 -0.129100,0.409900,0.625400,0.013370,0.156500,0.987600 -0.172700,-0.528600,-0.604300,0.009794,-0.080370,0.996700 0.043960,-0.226700,-0.753600,0.248000,-0.008822,-0.968700 -0.806500,-0.547400,-0.129000,-0.011380,-0.999900,-0.002467 -0.626800,0.714800,-0.169600,0.215100,0.974900,0.056750 -0.014180,-0.018310,0.747500,0.127800,0.203400,0.970700 0.533400,0.253800,0.022020,0.957500,0.287700,-0.019260 0.247400,-0.525800,-0.612800,0.456400,-0.349300,-0.818300 -0.353800,-0.494500,-0.520500,-0.176100,-0.919300,-0.351900 0.813400,0.383800,-0.022230,-0.904400,-0.353400,-0.239200 -0.734000,-0.027030,0.444500,-0.836800,0.225300,0.499000 0.314900,0.050470,0.587500,0.498800,0.306000,0.810900 0.763000,0.040690,-0.031490,-0.888100,0.290500,-0.356300 -0.351500,0.577900,0.570700,-0.378800,0.029200,0.925000 0.002252,0.229600,0.656400,0.250500,0.275800,0.928000 0.191200,0.188400,-0.598300,0.462900,0.315700,-0.828300 -0.775900,0.278700,-0.048570,-0.968700,0.248000,0.013800 0.189000,-0.516000,-0.400100,0.185200,-0.959300,-0.213200 0.531600,-0.547400,0.142600,0.000000,-1.000000,0.000000 -0.353800,-0.547400,0.625500,0.000000,-1.000000,0.000000 -0.448200,-0.263500,-0.704400,-0.511400,-0.035340,-0.858600 0.414100,0.476700,-0.296100,0.841700,0.127000,-0.524700 0.025100,0.121100,0.688100,0.251000,0.359400,0.898800 -0.062110,0.648100,0.608700,0.014220,0.023220,0.999600 -0.202500,-0.116600,-0.764200,-0.014510,0.114600,-0.993300 -0.011700,0.662100,-0.139100,0.000000,1.000000,0.000000 -0.734400,0.327500,-0.192800,-0.947600,0.207500,-0.242700 0.290100,0.662500,0.001793,0.016530,0.999900,0.000000 -0.041940,0.662800,0.343800,0.000002,1.000000,0.000001 0.311000,0.441400,-0.439000,0.696600,0.106400,-0.709500 -0.534100,0.365600,0.483700,-0.688300,0.168100,0.705600 -0.655200,-0.411200,-0.531100,-0.698500,-0.225000,-0.679300 -0.628900,-0.256800,0.588700,-0.696600,-0.032490,0.716800 -0.624000,-0.160400,-0.590600,-0.714600,0.083820,-0.694500 0.414000,-0.376900,-0.534500,0.686700,-0.169600,-0.706900 0.109100,-0.546000,0.122600,-0.038120,-0.999000,-0.021170 -0.518200,-0.487700,0.430200,-0.309700,-0.903700,0.295500 0.213100,-0.509900,0.407800,0.235100,-0.944300,0.230300 0.297200,0.709100,-0.388900,0.318500,0.891300,-0.322800 -0.467800,0.700300,0.366200,0.442100,0.775900,-0.450000 -0.192800,0.662500,-0.350300,0.016500,0.999900,-0.000001 -0.736000,-0.547400,-0.249700,0.000000,-1.000000,0.000000 -0.414100,-0.547400,0.595400,0.000000,-1.000000,0.000000 -0.565000,-0.547400,0.545100,-0.000223,-1.000000,0.000410 0.078790,0.662800,0.394100,-0.018910,0.999800,-0.002374 -0.162700,0.456600,0.619900,0.005938,0.137200,0.990500 -0.352400,-0.096910,-0.727700,-0.266100,0.155100,-0.951400 -0.519600,0.118100,0.585400,-0.482700,0.333700,0.809700 0.058680,0.662500,-0.159200,-0.013780,0.999900,0.002725 0.057310,0.325200,-0.612500,0.240300,0.216600,-0.946200 0.540200,0.444500,0.006572,0.778300,-0.626500,0.042570 -0.739600,0.476800,0.011750,-0.994900,0.099400,0.014250 -0.555000,0.662600,0.001783,0.011020,0.999900,0.002774 -0.132400,0.662100,-0.078690,-0.016540,0.999900,0.000000 -0.786400,-0.291800,-0.392800,-0.869500,-0.096190,-0.484400 -0.651100,0.132900,-0.456700,-0.669100,0.359500,-0.650400 0.028560,0.662100,0.052100,0.016490,0.999900,0.000000 -0.072090,0.662100,0.052100,-0.016540,0.999900,0.000000 -0.494600,0.662500,0.082260,-0.008316,1.000000,0.000033 0.780300,0.443400,-0.013860,-0.799200,-0.576400,-0.170700 -0.624400,0.139800,-0.480300,-0.671700,0.350400,-0.652700 0.443400,0.039570,0.467100,0.695700,0.259800,0.669600 -0.212900,0.662100,0.353900,0.000050,1.000000,0.000000 -0.303400,-0.546700,0.263300,-0.019750,-0.999300,0.031710 -0.041860,0.662100,-0.330200,0.016490,0.999900,0.000000 0.128900,-0.544800,-0.249500,0.063840,-0.995800,-0.065590 0.370600,-0.547400,0.434400,0.000000,-1.000000,0.000000 -0.776300,-0.547400,-0.209500,-0.000050,-1.000000,0.000000 -0.565000,-0.547400,0.504800,0.000000,-1.000000,0.000000 -0.202900,0.662100,0.263400,-0.016540,0.999900,0.000000 0.420900,-0.547400,-0.360400,0.000000,-1.000000,0.000000 -0.756200,-0.547400,0.132600,0.000000,-1.000000,0.000000 -0.756200,-0.547400,-0.118900,0.000000,-1.000000,0.000000 0.028600,-0.546200,-0.219600,-0.020190,-0.999300,0.031430 -0.211100,0.477600,0.614200,-0.255500,0.110600,0.960500 0.207200,0.083230,-0.634000,0.455900,0.355000,-0.816200 -0.685800,0.574200,-0.241500,-0.873100,0.025440,-0.486900 -0.395700,0.256700,-0.601200,-0.475700,0.261800,-0.839700 -0.842100,-0.486800,0.151300,-0.919000,-0.299000,0.256800 0.056470,0.415800,0.597800,0.284600,0.141100,0.948200 0.595100,-0.286600,-0.287900,0.961000,-0.096960,-0.259000 -0.857600,-0.392200,-0.183400,-0.948400,-0.209400,-0.238200 -0.483800,-0.540800,0.162400,-0.103000,-0.993500,0.049270 -0.303400,-0.546000,-0.279800,-0.021440,-0.999100,-0.036650 -0.735800,-0.471500,-0.412800,-0.836400,-0.287100,-0.466900 -0.291800,-0.466300,0.719700,-0.225800,-0.272000,0.935400 -0.052200,-0.533600,0.433400,0.041580,-0.982500,0.181400 0.814800,0.404900,0.050190,-0.733600,-0.358700,0.577300 0.479100,0.668000,-0.088340,0.957400,0.236900,-0.165300 -0.654700,0.398300,-0.332100,-0.861700,0.161800,-0.480900 -0.543300,0.311500,-0.489700,-0.697700,0.227500,-0.679300 0.320300,-0.547400,-0.521300,0.000000,-1.000000,0.000000 0.169400,-0.547100,-0.048520,-0.006197,-1.000000,0.002946 -0.032400,0.447100,-0.613500,0.241400,0.128900,-0.961800 0.364700,0.710100,0.298800,0.376700,0.904100,0.201500 0.590300,0.077570,-0.109500,0.907700,0.336100,-0.251100 0.570500,-0.142000,-0.334000,0.859300,0.102900,-0.501000 -0.142500,0.507600,0.614300,0.018350,0.084990,0.996200 -0.482900,0.214400,0.567400,-0.470300,0.278900,0.837300 0.456800,0.497100,-0.198200,0.962200,0.078470,-0.260800 0.821400,0.535500,0.042350,0.643900,0.645300,0.411100 -0.460900,0.344000,-0.537900,-0.501800,0.198300,-0.842000 0.596700,-0.066910,-0.238100,0.945600,0.188600,-0.265100 0.532800,0.231900,0.109000,0.937400,0.254000,0.238200 -0.378100,0.470200,-0.564200,-0.478100,0.101900,-0.872400 0.254200,-0.387600,-0.654700,0.476300,-0.194800,-0.857400 -0.867100,-0.451200,-0.042280,-0.959600,-0.281100,0.013040 -0.313000,-0.137000,0.746300,-0.253400,0.106100,0.961500 -0.613800,0.714000,-0.269000,-0.233200,0.964000,-0.128100 0.603300,-0.441500,-0.162500,0.934100,-0.230500,-0.272700 -0.332400,-0.426800,0.720600,-0.247100,-0.236100,0.939800 -0.771800,0.066940,0.324500,-0.797200,0.370500,0.476700 -0.410100,-0.181600,0.725700,-0.345200,0.052900,0.937100 -0.716000,0.564900,-0.142400,-0.968700,0.031460,-0.246400 -0.423900,0.345100,0.562000,-0.469300,0.204600,0.859000 0.038370,-0.536100,-0.390100,0.076070,-0.983000,-0.166900 -0.231200,-0.485900,0.728800,-0.250800,-0.259200,0.932700 -0.628800,0.023180,0.538100,-0.657100,0.299600,0.691700 -0.721200,-0.518600,-0.110300,0.971900,0.024990,0.233900 -0.632800,0.228700,0.434200,-0.656900,0.282600,0.699000 -0.413800,-0.544200,-0.219300,-0.072720,-0.995500,-0.061330 0.128700,-0.277000,-0.730500,0.242600,-0.061070,-0.968200 0.080630,-0.518200,-0.454900,0.123800,-0.965300,-0.229900 -0.032480,0.487100,-0.609000,0.242100,0.094980,-0.965600 -0.075410,-0.495700,-0.562700,-0.002078,-0.922500,-0.386000 -0.884600,-0.166700,-0.138600,-0.967600,0.063810,-0.244200 0.158600,-0.533700,-0.329500,0.130300,-0.982400,-0.134100 -0.241900,0.547500,0.600600,-0.235600,0.035000,0.971200 -0.616500,0.317900,-0.412100,-0.697900,0.230300,-0.678200 -0.041940,-0.357000,0.762400,0.016320,-0.173700,0.984700 -0.498100,0.661200,-0.482400,-0.534500,0.149400,-0.831800 -0.858600,-0.477500,0.002889,-0.956600,-0.291100,0.014350 -0.264700,-0.497600,-0.586700,0.161100,-0.364400,0.917200 0.507600,0.112300,-0.315200,0.805900,0.375600,-0.457600 -0.045870,0.673200,0.605100,0.020260,0.284800,0.958400 0.159200,-0.546000,0.182800,0.039070,-0.999000,0.021590 -0.599100,-0.377100,0.599200,-0.687400,-0.169700,0.706200 -0.182600,-0.543900,0.363400,-0.024230,-0.994200,0.104300 -0.622900,0.675900,0.343700,-0.807000,0.387500,0.445600 0.569000,-0.077150,-0.319900,0.852800,0.138900,-0.503400 -0.342200,0.696700,-0.549500,-0.198400,0.725900,-0.658500 -0.563700,-0.527600,0.151200,-0.243900,-0.967200,0.070290 -0.243600,-0.541200,0.173500,0.063640,-0.993400,-0.095000 0.290800,0.187800,0.542900,0.487100,0.301200,0.819800 0.286700,-0.445100,0.622300,0.492900,-0.282000,0.823100 -0.650300,-0.333800,-0.556300,-0.710500,-0.135500,-0.690500 0.430500,0.603700,0.255500,0.874300,-0.003766,0.485400 0.363800,-0.436800,-0.564800,0.674100,-0.247900,-0.695800 -0.835300,-0.530300,0.117900,-0.903400,-0.352700,0.243900 -0.708700,0.164900,-0.357900,-0.824200,0.330800,-0.459600 0.056400,-0.316600,0.748500,0.283400,-0.092190,0.954600 0.857900,0.027270,0.029970,0.855200,-0.422600,0.300000 -0.731900,0.497100,-0.097770,-0.966700,0.089590,-0.239700 -0.621600,-0.319500,-0.588300,-0.713700,-0.099440,-0.693300 0.796100,-0.371900,0.062570,0.380600,-0.603200,0.700900 0.027620,0.705900,-0.556800,0.127300,0.832900,-0.538600 -0.877400,-0.056960,0.121300,-0.956600,0.186600,0.223800 0.299100,-0.533600,0.102100,0.181300,-0.982400,0.045820 -0.360100,-0.508500,0.563800,0.505500,-0.073010,-0.859700 0.043740,-0.240100,0.757100,0.267100,-0.047060,0.962500 0.310800,0.127800,-0.549500,0.658100,0.353500,-0.664700 -0.307100,-0.489300,0.572600,0.055140,-0.752200,-0.656600 0.768000,-0.386800,-0.057140,0.234500,-0.685300,-0.689500 -0.615800,-0.547300,0.374200,0.098400,-0.993400,-0.058130 0.883900,0.256100,-0.070920,-0.007951,0.001663,-1.000000 -0.265400,0.604800,-0.590500,-0.272000,0.009179,-0.962200 0.854100,0.509200,0.025720,0.772200,0.584000,0.250400 0.480600,-0.393600,0.464000,0.694800,-0.233100,0.680400 0.409300,0.631700,0.294100,0.875400,-0.011580,0.483300 -0.021760,-0.547400,0.625500,-0.000729,-1.000000,-0.001144 0.007018,0.143200,-0.680500,0.229400,0.347100,-0.909300 0.471800,0.341900,0.237400,0.911600,0.206800,0.355400 -0.795200,-0.381600,0.357700,-0.845200,-0.177300,0.504300 -0.467300,-0.093930,-0.682600,-0.505500,0.163000,-0.847300 -0.112400,-0.540000,0.713600,0.007957,-0.454000,0.891000 0.578100,-0.305500,0.320300,0.867700,-0.105100,0.485800 0.502400,0.515900,0.069470,0.149600,0.335400,0.930100 -0.159300,0.146700,0.693500,0.016220,0.358000,0.933600 -0.664300,-0.504300,0.011830,-0.330000,-0.944000,0.004819 -0.162600,-0.547300,-0.700600,-0.001702,-0.978100,-0.208100 -0.360500,0.567600,-0.564400,-0.307900,0.028960,-0.951000 -0.071990,0.618300,-0.607400,-0.013990,-0.004772,-0.999900 -0.122400,0.073340,0.721500,0.008428,0.360100,0.932900 0.340600,-0.012460,0.593500,0.543000,0.216100,0.811400 0.432900,-0.520600,-0.460400,0.653000,-0.349800,-0.671700 0.526500,-0.206900,0.421500,0.874600,0.050870,0.482100 -0.352500,0.224400,0.630700,-0.226000,0.275700,0.934300 0.247800,-0.488200,0.452500,0.264900,-0.931800,0.248200 0.018700,0.715800,0.515700,-0.046500,0.988100,-0.146800 0.058750,-0.507100,0.503500,0.090890,-0.943300,0.319300 -0.222900,-0.026940,-0.747500,-0.047650,0.225000,-0.973200 -0.741300,0.264700,-0.228400,-0.934800,0.258300,-0.243900 0.908600,0.286200,-0.062240,0.595100,0.038660,-0.802800 -0.769200,-0.163400,-0.425500,-0.871700,0.074810,-0.484300 0.920300,0.226200,0.049200,0.840200,-0.076530,0.536800 0.088420,0.713900,0.523200,0.064370,0.966300,0.249100 0.449300,-0.403100,0.493100,0.692500,-0.252000,0.675900 -0.391800,-0.446000,0.700600,-0.265700,-0.253100,0.930200 0.899300,0.425700,0.031260,0.880800,0.370200,0.295000 0.168800,0.490100,0.541700,0.508400,0.074910,0.857800 0.693100,-0.378000,0.069620,-0.104900,-0.468300,0.877300 0.372600,0.696900,-0.018430,-0.710100,0.704100,0.000189 0.339100,0.126800,-0.522500,0.638200,0.361300,-0.679800 -0.715500,-0.537700,0.138200,0.949600,-0.032250,-0.311900 0.602700,-0.019040,0.179300,0.937800,0.251100,0.239900 0.508300,0.356000,-0.048500,0.986900,0.160100,-0.018250 -0.033280,0.547400,0.609100,0.156700,0.032320,0.987100 -0.766200,-0.411600,0.393600,-0.836600,-0.225700,0.499300 -0.875300,-0.240100,-0.181500,-0.969000,-0.029410,-0.245300 -0.072040,0.716100,-0.550900,0.012370,0.988900,-0.148100 0.846300,-0.024410,0.001790,0.986700,-0.162200,0.007793 -0.282600,0.527500,-0.588700,-0.268900,0.062230,-0.961200 -0.288300,-0.153700,-0.752700,-0.273400,0.097380,-0.957000 0.406100,-0.500500,-0.149400,0.326700,-0.940700,-0.091530 -0.762200,-0.276800,-0.438700,-0.871100,-0.063400,-0.487000 0.875400,0.296400,0.074180,-0.126600,-0.008428,0.991900 0.463400,-0.487400,0.093480,-0.174100,-0.984700,0.002749 0.502300,-0.441200,-0.401800,0.832200,-0.266300,-0.486300 -0.627600,-0.535000,-0.340000,0.860400,-0.076520,0.503800 0.787400,0.571000,0.017480,0.539200,0.822200,0.182400 0.626600,-0.266900,0.181400,0.968700,-0.039030,0.245300 -0.692400,0.711300,-0.017660,-0.359300,0.933200,-0.002833 0.171000,-0.071990,-0.704000,0.478100,0.162600,-0.863100 0.490800,-0.533900,0.365900,0.825100,-0.330600,0.458100 0.140700,-0.508700,-0.455200,0.164400,-0.941700,-0.293700 -0.883800,-0.367100,0.102300,-0.986100,-0.158300,0.050240 -0.623200,-0.090640,-0.579600,-0.707700,0.162100,-0.687700 -0.727700,-0.486600,0.418100,-0.822100,-0.296400,0.486100 -0.554200,-0.525300,0.202500,-0.221800,-0.967400,0.122400 -0.424100,0.240800,-0.589300,-0.493800,0.270800,-0.826300 0.602000,-0.437400,0.170900,0.942900,-0.238600,0.232400 -0.030970,-0.520000,-0.047760,-0.236500,-0.963600,0.124800 -0.618200,0.406300,0.391300,-0.771000,0.152700,0.618300 -0.732200,0.567800,0.081750,-0.997600,0.031870,0.061430 0.438600,0.115900,0.432100,0.671200,0.397100,0.626000 -0.848800,-0.394800,-0.216300,-0.947900,-0.211200,-0.238500 -0.530200,0.365600,-0.486700,-0.704200,0.188200,-0.684600 -0.154700,-0.529100,0.137900,0.054700,-0.973900,-0.220300 -0.030820,0.703400,-0.495200,-0.145600,0.798900,0.583600 -0.835900,0.085440,-0.102500,-0.907700,0.350700,-0.230300 0.153100,0.234200,-0.603200,0.465800,0.284800,-0.837800 -0.837200,-0.333200,-0.293200,-0.879700,-0.127400,-0.458200 -0.508200,0.335400,0.516600,-0.530800,0.181900,0.827800 0.669600,-0.299500,-0.035280,0.542400,0.729400,-0.416800 0.628100,-0.036720,-0.008206,0.974700,0.223000,-0.013980 -0.435500,-0.160300,-0.710600,-0.451900,0.091970,-0.887300 -0.816500,-0.547400,-0.028390,-0.003144,-1.000000,-0.000010 0.415900,-0.296700,0.550300,0.701400,-0.097310,0.706100 0.507800,-0.243300,0.454000,0.876600,-0.023560,0.480700 -0.585900,0.358000,-0.431600,-0.704100,0.194100,-0.683000 -0.593000,-0.546900,0.532600,-0.321600,-0.888000,0.328800 -0.553500,-0.502600,-0.338800,-0.238500,-0.943100,-0.231800 0.591100,-0.131800,0.295300,0.875500,0.097210,0.473300 0.534900,0.552700,0.056800,-0.420800,0.645600,0.637400 0.415700,-0.476200,0.499700,0.687200,-0.285800,0.667900 -0.685000,0.421500,0.276400,-0.850500,0.140800,0.506700 0.843700,0.024210,0.053420,0.736800,-0.325900,0.592400 0.266200,0.668000,0.279100,-0.430300,0.850000,-0.303800 0.576400,-0.426600,0.280700,0.899100,-0.220600,0.378000 -0.665900,-0.009335,-0.511700,-0.696400,0.238400,-0.676900 -0.036370,0.138200,0.695600,0.003523,0.338500,0.941000 0.341800,0.391000,-0.419500,0.685900,0.129900,-0.716000 -0.712600,0.208700,0.325200,-0.819600,0.298200,0.489200 0.492400,0.053070,-0.383900,0.804900,0.345800,-0.482300 -0.793000,-0.486200,0.308900,-0.819100,-0.300400,0.488800 0.457700,0.704200,0.061720,0.598400,0.800900,0.023180 -0.547000,-0.034510,-0.621900,-0.499700,0.225900,-0.836300 -0.708900,0.128300,0.386400,-0.812100,0.338700,0.475200 -0.674100,-0.060540,-0.519900,-0.704500,0.186500,-0.684800 0.042940,0.462500,0.595300,0.280600,0.126700,0.951400 -0.327900,-0.528500,0.415200,-0.115800,-0.971300,0.207900 -0.615300,-0.541100,0.517100,-0.647300,-0.370400,0.666200 -0.234000,0.017810,0.734800,-0.227100,0.301900,0.925900 0.185600,0.324700,-0.558400,0.473500,0.216000,-0.853900 0.362200,-0.419700,0.577100,0.703900,-0.190600,0.684200 -0.257800,-0.532000,-0.590100,0.286500,0.019420,0.957900 0.601700,0.057360,-0.014160,0.933600,0.357800,-0.016790 -0.323000,0.122700,-0.670900,-0.253100,0.363700,-0.896500 -0.866400,0.006860,-0.018400,-0.958800,0.283700,0.013700 -0.663000,0.071790,0.481900,-0.662400,0.324800,0.675100 0.357100,0.677900,0.370800,0.681100,0.365900,0.634200 -0.748200,0.107800,0.335500,-0.784100,0.384100,0.487600 -0.584500,0.160300,-0.510700,-0.676500,0.331900,-0.657400 0.371200,0.279600,-0.423800,0.665400,0.290500,-0.687700 0.245600,0.618300,-0.487000,0.648100,-0.004834,-0.761600 -0.677500,0.158200,0.415800,-0.819500,0.337100,0.463500 0.338400,-0.436100,-0.589700,0.678400,-0.242100,-0.693700 -0.649900,0.193600,0.432200,-0.661500,0.330800,0.673000 0.235900,0.709000,-0.448800,0.327500,0.880200,-0.343500 -0.452800,0.082880,0.637900,-0.456100,0.348500,0.818800 0.577600,-0.073970,0.302700,0.861800,0.156000,0.482700 0.570800,0.057650,-0.205500,0.898400,0.345000,-0.271900 -0.531300,-0.006024,-0.623400,-0.492100,0.253100,-0.833000 -0.503900,-0.533800,0.212500,-0.160600,-0.982400,0.095790 0.310900,0.178400,-0.524400,0.668600,0.289300,-0.685100 -0.689700,0.082070,0.449700,-0.730100,0.340400,0.592600 0.561000,-0.494000,0.266900,0.914800,-0.320300,0.245900 -0.546000,0.175600,-0.540600,-0.538200,0.340300,-0.771100 0.443300,0.173500,-0.378700,0.816500,0.316100,-0.483200 0.602700,-0.320100,0.258600,0.963900,-0.096750,0.248300 0.540400,-0.319200,0.385700,0.870100,-0.091140,0.484400 0.712900,-0.413900,0.001783,-0.077640,-0.996900,0.010420 0.369900,-0.523200,0.524400,0.675600,-0.334800,0.656800 0.834200,0.266100,0.021730,-0.982200,0.009381,0.187700 -0.868600,-0.183400,-0.205000,-0.968300,0.034180,-0.247500 -0.293700,-0.538800,0.372700,-0.079140,-0.986100,0.145800 -0.765800,-0.531300,0.322900,-0.802300,-0.353500,0.481000 -0.359100,-0.157000,0.736500,-0.254700,0.084880,0.963300 0.904900,0.193400,0.062690,0.680500,-0.120300,0.722800 -0.028090,0.199000,-0.669300,0.232600,0.302900,-0.924200 -0.014850,0.675100,0.598500,0.251600,0.333900,0.908400 0.208600,-0.183500,0.701900,0.502500,0.004678,0.864600 -0.582200,-0.057000,-0.606800,-0.501200,0.194800,-0.843100 0.196100,-0.488300,-0.484300,0.198600,-0.909200,-0.366000 0.386800,0.335100,-0.385700,0.826400,0.221300,-0.517800 -0.273200,-0.537900,0.112500,0.140200,-0.984900,-0.101800 0.228000,0.507700,-0.503400,0.488100,0.082230,-0.868900 -0.105600,-0.527600,-0.462400,-0.003580,-0.968300,-0.249800 -0.322500,-0.544100,0.682800,-0.168100,-0.785200,0.596000 -0.655900,0.716200,-0.088840,0.079990,0.996500,0.022930 0.231300,0.158000,-0.588000,0.459800,0.332000,-0.823600 -0.160100,-0.497500,-0.007941,0.356800,-0.931700,0.068620 0.502000,0.183000,-0.273800,0.839500,0.319200,-0.439700 -0.465800,-0.491000,0.646600,-0.449600,-0.341400,0.825400 0.279800,0.228400,-0.532700,0.640000,0.287200,-0.712700 -0.726100,0.665600,-0.092720,-0.953400,0.182500,-0.240300 0.851600,0.301600,0.061100,-0.700600,-0.053110,0.711600 -0.705900,-0.547400,-0.239700,0.008887,-1.000000,0.002769 0.567900,-0.471400,-0.253100,0.925500,-0.268800,-0.266700 0.529900,0.017310,0.345100,0.826100,0.297500,0.478500 -0.717900,-0.023810,-0.463100,-0.698600,0.228300,-0.678100 0.560100,-0.373600,0.334400,0.861600,-0.123200,0.492500 0.493500,0.153300,-0.308300,0.802900,0.356600,-0.477700 -0.564000,0.007573,0.604700,-0.478300,0.283300,0.831200 -0.535500,0.689300,-0.268000,0.733400,0.557800,0.388600 -0.278800,0.679300,0.583500,-0.228700,0.434500,0.871200 0.178100,0.709200,-0.417200,-0.268400,0.884700,0.381200 -0.486400,-0.496200,-0.432700,-0.273700,-0.924300,-0.265900 -0.855100,0.046630,-0.068730,-0.948600,0.316500,0.001319 0.028540,-0.547400,0.675800,0.000799,-1.000000,0.004925 0.811400,-0.355100,-0.064280,0.335900,-0.445200,-0.830000 -0.500700,-0.385800,-0.656000,-0.501800,-0.186400,-0.844700 0.543700,0.456900,-0.030610,0.720100,-0.615200,-0.320900 0.763600,-0.068930,-0.057510,-0.704500,-0.045440,-0.708200 0.113700,-0.527800,0.398700,0.123600,-0.970600,0.206400 -0.604600,-0.280000,-0.609800,-0.592500,-0.068230,-0.802700 -0.258300,-0.193500,-0.763500,-0.275700,0.032460,-0.960700 -0.400900,0.184600,-0.623400,-0.424400,0.318600,-0.847600 0.467900,0.426700,-0.188500,0.955200,0.135900,-0.262900 0.273600,0.109300,0.587200,0.468600,0.355200,0.808900 -0.538300,-0.487800,0.410100,-0.308900,-0.903200,0.298000 -0.471800,0.304400,0.545500,-0.476600,0.208600,0.854000 -0.715100,-0.532000,-0.133700,0.968500,0.026360,0.247800 0.533800,0.100900,0.278400,0.831200,0.334100,0.444400 0.343000,0.684400,0.143900,-0.819000,0.527300,-0.226100 -0.342000,0.667700,-0.420100,0.228100,0.875400,0.426200 -0.498700,0.259100,0.543700,-0.474300,0.233700,0.848800 0.093350,0.690500,-0.439600,-0.394300,0.597700,0.698000 0.262600,-0.538700,-0.128900,0.161800,-0.985800,-0.045800 -0.604300,0.335300,0.423100,-0.687900,0.204500,0.696400 -0.398200,-0.508100,0.455500,-0.163600,-0.942600,0.291000 0.506500,-0.266900,-0.448000,0.851100,-0.002419,-0.525000 -0.826200,0.119900,0.037620,-0.931300,0.364100,0.012980 -0.634000,-0.446200,0.543400,-0.667200,-0.272100,0.693400 0.626100,0.585100,0.059620,-0.107600,0.718000,0.687700 0.007750,-0.502100,0.532700,0.091290,-0.942300,0.322000 0.052110,-0.474100,0.715100,0.253700,-0.293400,0.921700 0.251800,-0.011940,-0.644100,0.473400,0.236400,-0.848500 -0.722400,0.608200,0.121600,-0.962700,0.004775,0.270500 0.319500,0.715600,-0.339700,0.170000,0.978500,-0.116400 -0.594600,0.200800,-0.480600,-0.684100,0.299600,-0.665000 -0.342800,-0.517800,0.452200,-0.132700,-0.962300,0.237300 -0.784500,0.153400,0.201400,-0.906700,0.334000,0.257600 0.345400,0.693200,-0.366800,0.592300,0.649100,-0.477400 -0.212700,-0.507600,0.527000,-0.079440,-0.943700,0.321100 -0.362200,0.164600,-0.643600,-0.258000,0.333500,-0.906800 0.541000,0.188800,-0.135100,0.915800,0.308300,-0.257300 0.340000,-0.102400,-0.613300,0.668600,0.165700,-0.724900 -0.055920,-0.518500,-0.494300,0.054250,-0.964300,-0.259100 -0.501800,0.134400,-0.584300,-0.478700,0.358500,-0.801500 0.458500,-0.505800,-0.437100,0.805800,-0.339900,-0.484900 0.223800,-0.529500,0.297700,0.155600,-0.976200,0.151200 0.118000,-0.502500,0.492900,0.170300,-0.942300,0.288100 -0.418000,-0.487400,0.505000,-0.211500,-0.899700,0.381900 -0.095650,0.673200,0.605700,0.012360,0.308000,0.951300 -0.703600,0.497300,-0.209100,-0.966200,0.090930,-0.241200 -0.277200,-0.124200,-0.752800,-0.274500,0.105800,-0.955700 0.300300,-0.301900,-0.642900,0.485400,-0.097430,-0.868900 0.028640,-0.045390,0.742100,0.258100,0.256100,0.931500 -0.850400,-0.266900,0.271500,-0.961100,-0.041750,0.273100 -0.499500,0.061860,0.620900,-0.461900,0.343500,0.817700 0.233800,0.574500,0.497100,0.524500,0.033990,0.850800 -0.597600,0.688400,0.127500,0.792000,0.561800,-0.239000 -0.037370,-0.002160,-0.743700,0.106400,0.262900,-0.959000 0.619600,-0.053750,0.144600,0.950600,0.187800,0.247200 0.866100,-0.285900,-0.060400,0.619900,-0.189000,-0.761600 -0.491400,0.004024,-0.644000,-0.491100,0.273400,-0.827100 0.561700,-0.547400,0.001793,0.000050,-1.000000,-0.000000 0.616500,-0.086960,0.181400,0.958800,0.157600,0.236500 -0.571800,0.708500,0.252000,0.410600,0.880300,-0.237800 -0.825700,-0.531400,-0.142600,-0.907800,-0.351500,-0.228600 -0.724700,0.386900,0.185600,-0.948800,0.164500,0.269700 0.537000,-0.266900,0.401600,0.879300,-0.034740,0.475100 0.612100,-0.473100,0.081470,0.964000,-0.264100,0.029580 0.324800,0.708700,-0.245900,-0.403700,0.876200,0.263300 -0.509800,0.395700,0.499300,-0.691900,0.149800,0.706200 -0.225100,0.638300,0.603200,-0.241700,-0.013970,0.970300 0.046360,0.537300,0.587600,0.273600,0.069320,0.959300 0.081810,-0.032520,0.724200,0.262000,0.205700,0.942900 0.611600,0.008014,0.116100,0.929000,0.303700,0.211200 0.528700,0.208200,0.155700,0.924200,0.314000,0.217300 0.623800,-0.137100,-0.176900,0.958800,0.102500,-0.265000 -0.796400,-0.024410,-0.332500,-0.850400,0.225500,-0.475300 0.176700,0.648100,0.530400,0.510700,0.024710,0.859400 -0.837000,-0.407000,0.248500,-0.936000,-0.227300,0.268700 0.321500,-0.263600,0.635300,0.509600,-0.019170,0.860200 -0.852900,-0.437700,-0.159000,-0.939000,-0.246900,-0.239300 0.458000,0.567800,0.182200,0.969800,0.055230,0.237400 -0.082140,-0.536000,0.423700,0.002672,-0.983300,0.181700 -0.172600,0.013020,-0.737800,-0.013730,0.284600,-0.958500 -0.353200,-0.337100,0.733300,-0.235800,-0.123300,0.963900 -0.696000,0.678900,-0.193200,-0.878700,0.428600,-0.210200 0.522900,0.483400,-0.068720,0.258600,-0.217900,-0.941100 0.486000,0.103800,0.361700,0.815100,0.367800,0.447600 -0.711700,0.033030,-0.446800,-0.699900,0.291000,-0.652300 -0.485600,-0.460800,0.646000,-0.470600,-0.302300,0.829000 0.022200,-0.434600,0.736300,0.264500,-0.188600,0.945800 -0.407700,0.052510,0.676800,-0.428700,0.335800,0.838700 -0.389800,0.676700,-0.542000,-0.464800,0.372800,-0.803100 -0.706500,0.345200,0.266400,-0.851000,0.197100,0.486700 -0.307600,-0.539700,0.072440,0.128200,-0.990800,-0.044310 0.311700,0.675100,-0.209000,-0.702500,0.542200,0.461000 -0.331900,-0.544200,0.574700,0.228100,-0.421400,-0.877700 -0.243400,0.714900,0.516200,0.066330,0.963600,-0.259000 0.329000,-0.514200,-0.238900,0.261000,-0.952700,-0.155600 0.111000,0.206900,0.632800,0.268300,0.329000,0.905400 0.761500,-0.402600,-0.035810,0.221100,-0.907400,-0.357400 0.608900,-0.155100,0.243800,0.963200,0.127000,0.237000 0.526800,-0.065500,0.392200,0.862100,0.169600,0.477500 0.842300,0.289800,-0.042110,-0.882400,-0.058440,-0.466800 0.088370,-0.533300,-0.379600,0.091180,-0.982400,-0.163300 -0.329500,0.706600,0.545500,-0.147000,0.834300,0.531300 -0.651700,-0.458000,-0.517600,-0.686700,-0.287000,-0.667900 -0.269000,0.107100,0.694400,-0.225200,0.359700,0.905500 0.087500,0.153400,-0.656300,0.229500,0.336700,-0.913200 0.548800,0.042910,-0.296000,0.831900,0.307300,-0.462000 -0.504300,0.696800,0.326000,0.499800,0.686800,-0.527700 0.145200,-0.497800,-0.539700,-0.357100,-0.452000,0.817400 -0.051390,0.278000,-0.650100,0.078960,0.260400,-0.962300 -0.652000,0.711400,0.221900,-0.370000,0.918600,0.138800 0.779700,-0.296100,0.044090,-0.649100,0.656100,0.385000 0.025010,0.674600,0.587200,0.249100,0.335400,0.908500 -0.826000,-0.291600,-0.322000,-0.869300,-0.095480,-0.484900 -0.717100,0.673800,-0.118200,-0.925800,0.307500,-0.219800 -0.889000,-0.245700,-0.126500,-0.968600,-0.032610,-0.246400 -0.243400,-0.398400,-0.749300,-0.239800,-0.225500,-0.944300 -0.423900,-0.547400,-0.631600,-0.032320,-0.998200,-0.051140 -0.585100,-0.547400,-0.511300,-0.001574,-1.000000,-0.001567 0.433500,-0.351500,-0.521300,0.687600,-0.163600,-0.707400 0.791200,0.444400,0.047520,-0.735000,-0.502100,0.455600 -0.199400,-0.332600,-0.763800,-0.013160,-0.130300,-0.991400 -0.888000,-0.109600,0.112100,-0.983200,0.149700,0.104100 0.524800,0.284500,-0.008176,0.964300,0.264400,-0.013850 -0.423000,-0.547200,0.643400,-0.171900,-0.933600,0.314300 0.032350,0.680600,-0.579000,0.220600,0.464500,-0.857700 0.439800,0.370500,-0.283800,0.845100,0.171200,-0.506500 -0.632400,0.684100,-0.317100,-0.744000,0.504600,-0.438000 0.078070,-0.317100,-0.739500,0.240500,-0.100200,-0.965500 0.170800,-0.131900,-0.713800,0.453700,0.103900,-0.885100 -0.838500,0.073860,0.121700,-0.906600,0.347300,0.239900 0.331900,0.476700,-0.412200,0.692700,0.107900,-0.713100 -0.431000,0.202500,-0.598800,-0.487300,0.302300,-0.819200 0.503400,0.263200,0.190300,0.940300,0.242700,0.238700 -0.008110,0.350500,-0.623700,0.240200,0.197500,-0.950400 0.688600,-0.314400,0.046850,0.367000,0.800400,0.474000 -0.356800,-0.421100,0.715500,-0.240800,-0.252100,0.937300 0.339200,-0.524300,0.112200,0.250700,-0.966000,0.062770 -0.407800,0.194300,0.616800,-0.443500,0.324000,0.835600 0.550100,0.197500,0.084470,0.929600,0.331900,0.160300 -0.776400,0.005396,-0.352700,-0.836800,0.281500,-0.469600 0.927500,0.187100,0.001812,0.977500,-0.210800,0.006727 0.556100,0.082930,0.231800,0.916800,0.322300,0.235700 -0.747100,0.421600,-0.039290,-0.989500,0.143800,0.014110 -0.267000,0.287600,-0.632000,-0.267000,0.236100,-0.934300 0.461800,-0.485900,-0.018300,0.177800,-0.984100,-0.005223 -0.504000,-0.542200,0.021900,-0.112600,-0.993600,0.001612 0.578900,0.007117,0.246200,0.917200,0.326100,0.228900 0.331200,0.249400,-0.474400,0.659900,0.300300,-0.688700 0.013460,-0.529600,0.035780,-0.212400,-0.975800,-0.052770 0.111000,-0.143500,0.734600,0.273100,0.090820,0.957700 0.150600,0.406800,-0.560300,0.481400,0.157600,-0.862200 0.316900,-0.504900,0.582100,0.465500,-0.351700,0.812200 0.352400,0.463200,0.396200,0.711000,0.082920,0.698300 -0.262100,0.487100,-0.597900,-0.268100,0.093520,-0.958800 0.732300,0.565500,-0.064960,0.196400,0.529500,-0.825300 0.619800,-0.036920,-0.130900,0.941400,0.228600,-0.248100 0.566600,-0.136800,0.340900,0.874600,0.119700,0.469800 0.440200,0.671800,-0.225600,0.913600,0.295600,-0.279100 -0.656500,0.512000,0.304600,-0.856300,0.077600,0.510600 -0.740900,0.002879,-0.417900,-0.839000,0.273000,-0.470700 0.219300,-0.472900,0.652800,0.489200,-0.282800,0.825000 -0.735900,-0.401500,0.448900,-0.837200,-0.223900,0.499000 0.028550,-0.547400,-0.611900,0.000000,-1.000000,0.000000 -0.317500,-0.522000,0.694000,-0.247700,-0.332600,0.910000 -0.640200,-0.243500,-0.576500,-0.716700,-0.032510,-0.696600 0.934100,0.269500,0.014950,0.987900,-0.004995,0.155300 0.041520,-0.267400,-0.753000,0.246200,-0.044270,-0.968200 0.421100,0.706600,-0.195200,0.524500,0.836000,-0.161100 -0.702200,0.557700,-0.198500,-0.969600,0.042420,-0.241000 0.644500,-0.157200,-0.108000,0.985500,0.114900,-0.124900 -0.129100,-0.043220,0.755500,0.016720,0.196900,0.980300 0.132500,-0.111900,0.725100,0.264300,0.096060,0.959600 -0.512100,0.082030,0.605800,-0.461300,0.325800,0.825300 -0.445700,-0.277000,0.705900,-0.478500,-0.061790,0.875900 -0.449300,-0.514500,-0.644800,-0.479800,-0.349600,-0.804700 -0.393600,0.481900,0.554900,-0.482800,0.100500,0.869900 -0.518400,0.245000,0.536800,-0.489600,0.262000,0.831600 -0.342500,0.406200,0.590700,-0.235700,0.141300,0.961500 -0.866000,-0.081470,0.177000,-0.949400,0.162100,0.269100 -0.688400,-0.296700,0.527400,-0.693700,-0.096070,0.713800 -0.313000,0.713200,-0.529300,-0.084640,0.950800,-0.297900 -0.857900,-0.442800,-0.133800,-0.936200,-0.261300,-0.234800 -0.082070,0.285200,-0.648300,-0.013990,0.239400,-0.970800 -0.281700,-0.346500,0.749700,-0.244600,-0.176600,0.953400 -0.082200,-0.509900,0.723800,0.016040,-0.366900,0.930100 -0.724300,0.084670,-0.391900,-0.816400,0.351000,-0.458600 0.369500,0.715300,-0.259200,0.188900,0.975600,-0.112000 0.165900,-0.496800,0.675400,0.317100,-0.323900,0.891400 0.178800,-0.501100,-0.661700,0.463400,-0.339400,-0.818600 -0.608100,0.163500,0.487300,-0.659200,0.339200,0.671100 -0.665200,0.557600,0.284600,-0.857800,0.043230,0.512100 -0.122500,-0.426500,0.749900,0.016640,-0.240100,0.970600 -0.543700,0.067180,0.593800,-0.451400,0.331700,0.828400 -0.825500,-0.491300,-0.202900,-0.921800,-0.309100,-0.233800 -0.840500,-0.456200,0.191100,-0.922100,-0.284400,0.262200 -0.162700,0.497500,-0.611400,-0.012570,0.088930,-0.996000 -0.145900,0.691300,-0.490700,0.007830,0.574700,0.818400 -0.375700,0.694600,-0.424400,0.368800,0.654200,0.660400 0.241200,-0.121900,-0.673400,0.484200,0.105600,-0.868500 0.381700,0.517200,-0.343700,0.855400,0.087240,-0.510500 -0.685700,-0.547400,-0.290000,0.002029,-1.000000,0.002027 -0.272700,-0.500400,0.713900,-0.243200,-0.359500,0.900900 0.412600,0.416300,-0.314000,0.845200,0.137500,-0.516400 0.417900,-0.203600,0.552400,0.716700,0.036500,0.696400 -0.702100,0.537500,0.202000,-0.960900,0.060090,0.270400 -0.519000,-0.336800,0.657700,-0.488900,-0.117900,0.864400 0.209700,0.638400,-0.508900,0.487000,0.003660,-0.873400 -0.891300,-0.206900,0.130800,-0.964200,0.028020,0.263600 0.854000,-0.112800,0.016300,0.924300,0.347000,0.158700 0.620600,-0.256800,-0.201600,0.962400,-0.037950,-0.268800 -0.802900,0.184500,0.011790,-0.948200,0.317500,0.013530 0.461900,0.557600,-0.164400,0.958600,0.027880,-0.283400 0.423600,-0.521900,0.263300,-0.873200,-0.000018,-0.487300 0.528800,0.062680,-0.315900,0.795300,0.374800,-0.476500 0.570000,-0.463800,0.266700,0.928600,-0.290200,0.231300 -0.041930,-0.440700,0.745800,0.030430,-0.257000,0.965900 0.462400,-0.296500,-0.502400,0.693400,-0.096480,-0.714000 -0.362000,0.225100,-0.623000,-0.263200,0.296900,-0.917900 -0.478400,-0.276800,0.687600,-0.486800,-0.062040,0.871300 -0.675700,0.247100,-0.363400,-0.839300,0.270200,-0.471800 -0.338000,-0.488500,0.545600,-0.134500,-0.910600,0.390800 -0.484300,-0.037330,0.662400,-0.491900,0.249000,0.834300 -0.561800,0.683400,-0.214000,0.748000,0.513800,0.420200 0.147800,-0.226800,-0.727400,0.242800,-0.008744,-0.970000 0.490200,-0.106200,-0.461600,0.853900,0.173700,-0.490500 -0.561400,-0.530100,-0.116200,-0.200100,-0.978500,-0.050810 -0.488100,-0.538700,-0.183200,-0.141800,-0.986700,-0.079790 -0.308400,0.368300,-0.602100,-0.270400,0.191000,-0.943600 -0.015970,0.049810,0.727800,0.136400,0.325900,0.935500 -0.104700,0.343000,0.637300,0.014460,0.216900,0.976100 0.167200,-0.286900,-0.718400,0.411400,-0.093310,-0.906700 0.415100,0.011300,0.509200,0.680700,0.296600,0.669800 -0.662300,-0.147300,0.551600,-0.685800,0.089110,0.722300 -0.392500,0.214000,0.617800,-0.481800,0.300200,0.823200 -0.111500,-0.501100,0.551400,0.004846,-0.941900,0.336000 0.408800,0.042310,-0.499100,0.639300,0.327300,-0.695800 -0.062050,-0.492300,0.572400,0.005992,-0.916600,0.399800 -0.776900,-0.037310,0.377100,-0.837000,0.225300,0.498600 0.168400,-0.521800,0.392500,0.135100,-0.965600,0.222200 -0.805400,0.169400,0.106800,-0.921700,0.332700,0.199300 0.237700,-0.296800,-0.678400,0.485200,-0.096340,-0.869100 0.612400,0.019560,-0.051780,0.954900,0.296400,-0.016340 -0.192700,0.261300,-0.653000,-0.013800,0.267600,-0.963400 -0.666000,-0.431500,0.517500,-0.677800,-0.232600,0.697500 0.475200,0.628400,0.110800,0.972200,-0.008923,0.234000 0.089240,0.226100,0.632300,0.275400,0.290300,0.916500 -0.828100,-0.503700,-0.175300,-0.912000,-0.340100,-0.229300 -0.359700,0.177900,0.644600,-0.250100,0.320100,0.913800 0.341500,0.022220,-0.572600,0.666000,0.287600,-0.688300 0.800900,0.113000,0.040020,-0.808300,0.445300,0.385200 0.241300,0.269200,-0.542800,0.471000,0.260900,-0.842700 -0.753700,0.082540,0.343700,-0.805700,0.337500,0.486700 -0.618400,-0.052090,0.575700,-0.679900,0.237900,0.693600 0.368800,-0.546900,0.503100,0.165200,-0.972900,0.161900 0.262300,0.058030,0.616000,0.480200,0.343300,0.807200 -0.192700,0.395500,-0.623900,-0.014250,0.167100,-0.985800 -0.695400,0.497900,0.236200,-0.951700,0.092710,0.292600 0.299000,-0.524000,0.222500,0.226700,-0.965800,0.125900 -0.267400,0.709000,-0.553300,-0.128000,0.883100,-0.451300 -0.405800,-0.521100,0.667300,-0.478000,-0.333800,0.812400 0.193500,-0.286800,-0.704200,0.485800,-0.084020,-0.870000 0.292200,0.574500,0.446700,0.717400,0.042680,0.695300 -0.767600,0.183900,0.221700,-0.910200,0.323800,0.258400 -0.558200,0.658000,0.427400,-0.692900,0.104500,0.713400 0.620400,-0.323500,0.185000,0.965800,-0.099720,0.239400 0.578700,0.579900,-0.049270,-0.289700,0.774300,-0.562700 -0.578400,0.591300,-0.404000,-0.716900,0.023420,-0.696700 0.380200,0.557800,-0.341500,0.860500,0.043810,-0.507600 -0.663000,-0.492200,-0.198800,-0.384800,-0.917300,-0.102200 0.450600,-0.486400,0.152400,-0.253400,-0.964300,-0.076320 0.439100,-0.489600,-0.203300,-0.576100,-0.812400,0.090240 0.428900,0.399300,0.293900,0.855400,0.174900,0.487600 0.142600,0.291500,0.596700,0.488400,0.241700,0.838400 0.225000,-0.466200,-0.648400,0.467500,-0.288600,-0.835600 -0.672000,0.638400,0.271200,-0.858700,0.003556,0.512500 0.512500,-0.087180,-0.418200,0.856400,0.133500,-0.498700 0.585900,0.102700,0.072280,0.944000,0.329800,0.004320 0.129700,0.365700,-0.580100,0.480000,0.185000,-0.857500 0.540400,0.188500,0.136000,0.926500,0.286400,0.244200 -0.715800,0.322800,-0.252000,-0.850400,0.221700,-0.477100 0.425100,0.476700,0.280300,0.874200,0.091790,0.476900 0.221000,0.400800,0.523900,0.504200,0.184600,0.843600 0.496200,-0.366700,0.451800,0.860600,-0.145500,0.488100 0.543900,0.161600,0.159500,0.916600,0.324300,0.233800 -0.182000,-0.520600,0.491400,-0.032560,-0.965800,0.257300 0.099050,0.134700,0.661600,0.255800,0.368900,0.893600 0.516900,0.266200,0.132700,0.934200,0.277100,0.224700 -0.664000,0.574500,-0.280500,-0.872800,0.026250,-0.487400 -0.246300,-0.521200,-0.711300,-0.254800,-0.350100,-0.901400 -0.543300,0.587900,0.442700,-0.691200,0.021270,0.722400 0.130600,0.461500,-0.562900,0.484000,0.115800,-0.867400 -0.717600,0.178200,0.335300,-0.824700,0.291900,0.484500 0.227100,0.608200,0.500300,0.511400,-0.014430,0.859200 -0.656500,0.449700,-0.313700,-0.865800,0.127200,-0.483900 0.210700,0.299500,0.553700,0.489000,0.245900,0.836900 0.613900,0.022170,0.072280,0.947900,0.317900,-0.021300 -0.152500,-0.496200,-0.726500,-0.013570,-0.319100,-0.947600 0.487900,-0.416100,-0.436600,0.838700,-0.219400,-0.498400 -0.622700,0.309600,0.413900,-0.682100,0.218500,0.697900 0.237600,-0.543000,0.611800,0.367400,-0.775300,0.513700 -0.602500,-0.501200,-0.268300,-0.294300,-0.941500,-0.164400 -0.827400,0.047480,0.196100,-0.913200,0.315200,0.258300 -0.794100,0.143000,0.181200,-0.902300,0.347900,0.254600 0.281900,-0.364400,0.645400,0.512900,-0.144200,0.846200 0.429800,0.360300,-0.303900,0.848700,0.163800,-0.502900 -0.714300,0.557600,0.154700,-0.961200,0.042620,0.272600 0.810700,-0.233200,-0.051780,-0.791100,-0.049670,-0.609600 -0.786000,-0.104600,-0.382600,-0.862800,0.151300,-0.482300 0.759200,-0.025960,0.056370,-0.785600,0.080730,0.613400 0.499600,0.265000,-0.197100,0.936700,0.255200,-0.239900 -0.109800,-0.520700,-0.487900,-0.003738,-0.965400,-0.260700 0.445300,0.446400,0.250100,0.868300,0.131300,0.478400 0.576100,-0.496300,0.201600,0.916600,-0.330200,0.225300 -0.468200,0.598100,0.506100,-0.496900,0.032940,0.867200 -0.826000,-0.531600,0.148700,-0.900800,-0.352000,0.254200 -0.761100,-0.326700,0.431300,-0.853200,-0.115600,0.508600 -0.876000,-0.131500,0.166900,-0.957400,0.098130,0.271600 -0.454300,0.391000,0.535300,-0.481900,0.156600,0.862100 0.027230,0.062840,-0.706900,0.231000,0.346400,-0.909200 -0.441600,0.466800,0.530000,-0.483200,0.116800,0.867700 -0.708600,0.466500,0.200800,-0.956200,0.111800,0.270500 -0.644700,-0.490700,-0.510600,-0.682500,-0.307300,-0.663200 0.127400,-0.027120,0.710000,0.263300,0.246500,0.932700 -0.755700,0.369400,-0.068250,-0.978500,0.196300,-0.063640 0.576300,0.123200,-0.018260,0.941400,0.337000,-0.010480 -0.738700,0.294400,-0.207600,-0.941900,0.235600,-0.239600 0.578800,-0.097230,-0.309600,0.853200,0.175400,-0.491200 0.134900,-0.505200,0.552600,-0.497700,-0.065760,-0.864800 0.606700,-0.006944,0.151400,0.945500,0.228900,0.231700 0.594000,-0.027580,0.221100,0.949200,0.198000,0.244600 -0.810900,-0.486500,0.261700,-0.919000,-0.298600,0.257400 -0.852600,-0.036590,0.191800,-0.937500,0.225200,0.265500 0.560200,0.057410,0.256600,0.911600,0.350800,0.214500 -0.192900,-0.538100,0.608100,0.077550,-0.176900,-0.981200 0.556800,0.173900,-0.088410,0.944200,0.326200,-0.045770 0.223800,0.386000,-0.523400,0.481300,0.166100,-0.860700 0.571000,0.107900,0.136200,0.906700,0.348000,0.238200 0.132600,0.604800,0.556300,0.518500,0.006492,0.855100 -0.467600,-0.253400,-0.693200,-0.511800,-0.032460,-0.858500 0.564500,0.498200,0.062820,0.368300,-0.576200,0.729600 -0.115600,-0.506400,-0.533000,-0.004751,-0.943200,-0.332200 -0.271800,-0.526200,0.703700,-0.227700,-0.327700,0.916900 -0.500000,-0.509500,-0.365800,-0.237500,-0.943600,-0.230700 0.378300,-0.512000,-0.128400,0.312900,-0.945600,-0.088690 -0.548400,0.480300,-0.444500,-0.713800,0.096350,-0.693700 0.126000,0.676100,-0.549700,0.457600,0.357700,-0.814000 -0.639600,-0.383800,-0.555700,-0.704400,-0.185300,-0.685200 -0.787400,-0.326600,0.387400,-0.855300,-0.109600,0.506400 0.379400,-0.537300,-0.336700,-0.863800,-0.024360,0.503200 -0.145800,-0.539000,-0.403800,-0.001984,-0.987500,-0.157500 -0.518600,-0.103600,-0.653900,-0.505000,0.148600,-0.850200 -0.042860,0.230600,-0.662400,0.121600,0.304500,-0.944700 -0.827200,0.119600,-0.028490,-0.930900,0.365000,0.013350 0.295800,0.286500,0.500600,0.688400,0.261800,0.676400 0.200700,-0.256800,-0.701900,0.487300,-0.032480,-0.872600 0.456900,0.648300,-0.178200,0.965000,0.005476,-0.262200 -0.829200,-0.436100,0.251100,-0.934400,-0.241800,0.261700 -0.032160,-0.517400,0.496900,0.075760,-0.960400,0.268100 0.072260,0.672100,0.574600,0.284400,0.294100,0.912500 0.200900,0.366500,-0.540200,0.479800,0.184400,-0.857800 -0.250400,0.122900,0.692400,-0.223200,0.346600,0.911000 0.430600,-0.143400,0.534700,0.713500,0.076760,0.696400 -0.098850,0.087120,0.715800,0.015550,0.334200,0.942400 0.063890,-0.140200,0.747300,0.266300,0.070450,0.961300 0.420300,0.648300,-0.272400,0.851600,0.063270,-0.520300 -0.041930,-0.036460,0.752400,0.021150,0.225300,0.974100 -0.521400,0.513600,-0.467900,-0.715300,0.073360,-0.695000 -0.022310,-0.490900,0.570200,0.108100,-0.916400,0.385500 0.167200,0.677100,0.530100,0.480700,0.382300,0.789100 -0.844100,0.048110,0.136200,-0.912600,0.315200,0.260400 0.304200,-0.110200,0.637600,0.507600,0.109400,0.854600 0.319800,-0.143700,0.632500,0.511000,0.117200,0.851500 -0.722000,0.577900,-0.117900,-0.969800,0.026120,-0.242600 -0.331800,0.517200,-0.575500,-0.272800,0.070470,-0.959500 -0.252500,0.061910,0.715800,-0.224100,0.368900,0.902100 -0.790900,-0.057040,-0.357400,-0.857500,0.196800,-0.475400 -0.806700,-0.127000,0.356700,-0.854200,0.099320,0.510400 -0.439800,0.707300,0.485700,-0.257400,0.854500,0.451100 -0.606400,0.676100,0.370700,-0.799300,0.362200,0.479600 0.443300,-0.210300,0.527300,0.713300,0.018570,0.700600 0.305800,0.693400,0.410000,0.537100,0.663000,0.521500 -0.495900,0.714200,-0.371700,0.176000,0.969300,0.171500 0.157400,-0.486600,-0.510000,0.031940,-0.999500,0.001353 -0.890200,-0.276700,-0.117200,-0.967600,-0.059790,-0.245200 -0.348900,-0.313400,-0.733300,-0.274600,-0.096720,-0.956700 -0.694500,0.322000,-0.290800,-0.853200,0.215000,-0.475100 -0.854000,0.043880,0.062100,-0.951400,0.307700,0.013550 0.518500,-0.406300,-0.390100,0.837700,-0.194600,-0.510300 0.823200,0.187100,-0.012830,-0.952900,0.248900,-0.173200 0.351800,-0.514300,0.546500,0.667200,-0.337400,0.664100 -0.132300,-0.526000,-0.715800,-0.013420,-0.349800,-0.936700 -0.032370,0.356200,0.632800,0.130200,0.185700,0.973900 0.383700,0.654900,0.338600,0.870200,0.042980,0.490800 -0.361800,-0.186900,0.738300,-0.251000,0.021830,0.967700 -0.314700,-0.495300,-0.530900,-0.109400,-0.921800,-0.372000 0.326500,0.206100,0.501100,0.677200,0.329400,0.657900 -0.866000,0.006762,0.011790,-0.958900,0.283600,0.013660 0.149700,0.667100,-0.539600,0.478900,0.244500,-0.843100 -0.511400,-0.435800,0.639600,-0.466400,-0.226700,0.855000 0.319100,0.678100,0.199200,-0.664200,0.608600,-0.434100 0.842200,-0.025560,-0.027330,0.942700,-0.144400,-0.300700 0.357700,0.707400,0.178300,-0.510300,0.851300,-0.121900 -0.250700,0.173700,0.673000,-0.217900,0.298600,0.929200 -0.252600,-0.502400,-0.529300,-0.089490,-0.943400,-0.319400 0.447300,-0.097740,-0.507300,0.688800,0.169100,-0.705000 -0.192900,-0.503700,0.728700,0.003512,-0.339700,0.940500 0.476900,0.677500,0.082410,0.890200,0.392800,0.230700 -0.061720,0.708400,-0.573500,0.040300,0.878700,-0.475700 -0.564700,-0.380000,-0.619100,-0.505200,-0.171700,-0.845800 -0.302200,-0.088000,-0.740400,-0.266100,0.160200,-0.950500 0.150400,0.712900,-0.443000,-0.175100,0.936200,0.304900 -0.362000,0.345000,0.595700,-0.361900,0.175900,0.915400 -0.477400,-0.502000,-0.633400,-0.480000,-0.342000,-0.807900 0.499100,0.378600,0.103800,0.956800,0.158500,0.243800 -0.604400,0.301700,-0.430100,-0.697800,0.230100,-0.678300 0.327700,0.691700,-0.201700,-0.699300,0.616800,0.361200 -0.504500,0.463300,-0.489700,-0.557100,0.109000,-0.823300 0.454800,-0.360300,0.498600,0.717500,-0.152100,0.679700 -0.719300,0.657800,0.130600,-0.959500,0.103900,0.261800 0.924000,0.361600,-0.006242,0.975100,0.216500,-0.048730 -0.606700,-0.396200,0.586500,-0.680900,-0.211300,0.701300 -0.606600,-0.535000,-0.371600,0.732600,-0.080960,0.675800 -0.411300,0.557600,-0.536700,-0.511900,0.043560,-0.857900 -0.877600,-0.040290,0.011760,-0.973500,0.228300,0.013980 -0.372800,-0.520900,-0.418900,-0.134800,-0.964700,-0.226400 0.245100,0.702200,0.459500,0.422300,0.763700,0.488400 -0.132400,-0.490400,-0.599700,0.008812,-0.725600,0.688100 0.501000,-0.429200,0.416400,0.845500,-0.223300,0.485100 -0.377000,-0.401300,-0.710800,-0.265100,-0.224300,-0.937800 -0.352100,0.306200,-0.603300,-0.267700,0.233300,-0.934800 0.808400,0.388900,0.011280,-0.919300,-0.383200,0.089720 0.341000,-0.528600,-0.391300,-0.696800,0.020610,0.717000 -0.757600,0.003926,-0.387200,-0.841400,0.273600,-0.466100 0.123100,0.432900,0.576200,0.364700,0.148500,0.919200 -0.505700,0.392900,-0.500600,-0.510900,0.162500,-0.844100 -0.741000,-0.313900,-0.466100,-0.737600,-0.097110,-0.668200 -0.526800,-0.481600,-0.611800,-0.490700,-0.289000,-0.822000 -0.423500,-0.504100,-0.449700,-0.169600,-0.943400,-0.285000 0.276800,0.651200,0.461500,0.717100,0.012170,0.696900 -0.312900,-0.507300,-0.697800,-0.254900,-0.351200,-0.900900 -0.888400,-0.100100,0.021830,-0.987100,0.159300,0.014100 0.261300,0.415300,-0.492200,0.705800,0.152800,-0.691700 -0.484600,-0.150300,-0.680200,-0.510100,0.097210,-0.854600 0.229300,-0.423100,0.662700,0.492900,-0.210300,0.844300 -0.592900,0.654600,-0.388400,-0.714400,0.086790,-0.694300 0.156900,-0.037100,-0.703000,0.350700,0.224100,-0.909300 0.340400,-0.526600,0.072340,0.246200,-0.967300,0.061560 0.550300,-0.363600,0.354600,0.868800,-0.160600,0.468500 0.233300,0.675900,-0.324000,-0.573200,0.576900,0.581900 0.538200,0.125900,0.234800,0.909800,0.349400,0.224200 -0.828600,-0.414700,-0.276000,-0.920600,-0.220300,-0.322500 0.262600,-0.449200,0.635400,0.495500,-0.263900,0.827600 0.746000,-0.344700,0.071900,-0.088230,0.361300,0.928300 0.264800,0.394300,0.498500,0.584300,0.171300,0.793300 -0.122300,-0.526900,0.132900,0.001375,-0.968000,-0.251100 0.766300,-0.165900,-0.009391,-0.902100,-0.414300,-0.120600 -0.562000,-0.356700,0.630100,-0.481800,-0.199400,0.853300 0.851500,0.445800,-0.069250,0.217600,0.125900,-0.967900 -0.152600,0.245000,0.661600,0.002790,0.248600,0.968600 0.642300,-0.131800,-0.099900,0.994900,0.099630,-0.013800 -0.761000,-0.107000,-0.428000,-0.863300,0.143700,-0.483800 0.268400,-0.540400,0.061760,0.115500,-0.992900,0.027240 0.499400,0.452000,-0.072660,0.787500,-0.195700,-0.584500 -0.803900,-0.439600,-0.310100,-0.845600,-0.250300,-0.471500 -0.223500,-0.534100,0.133300,0.112400,-0.982600,-0.148000 -0.629000,-0.489100,0.285200,-0.356300,-0.909300,0.214900 0.479000,0.500400,0.114400,0.970100,0.080330,0.229100 0.339700,0.077010,0.554600,0.685100,0.346700,0.640600 -0.571300,0.194100,-0.507700,-0.682100,0.309100,-0.662700 0.181700,0.360700,0.555500,0.503400,0.172000,0.846800 0.771200,-0.120400,0.060970,-0.696500,-0.158400,0.699900 -0.405300,-0.517700,0.538400,0.488200,-0.000071,-0.872700 0.344800,0.263600,-0.455100,0.673800,0.248400,-0.695900 0.589300,-0.518200,0.115600,0.911300,-0.339300,0.233400 -0.693000,0.455300,-0.246800,-0.867400,0.123500,-0.482000 -0.243000,0.244100,-0.651000,-0.262000,0.268200,-0.927100 -0.261900,-0.520600,-0.468400,-0.072270,-0.964900,-0.252500 -0.013140,-0.376400,0.758500,0.154700,-0.165200,0.974100 0.195200,-0.226400,-0.706000,0.488700,-0.008032,-0.872400 0.222300,0.118200,-0.610000,0.474700,0.332100,-0.815100 0.537500,-0.097720,-0.379500,0.850400,0.168400,-0.498500 -0.541800,-0.486400,0.606000,-0.471900,-0.280300,0.835900 -0.533500,-0.418700,-0.628000,-0.500300,-0.225000,-0.836100 0.273700,-0.201200,-0.661600,0.486600,0.032820,-0.873000 0.556600,-0.476800,-0.287700,0.890400,-0.278600,-0.360000 0.327400,-0.368000,0.617900,0.524400,-0.134200,0.840800 0.578600,-0.345300,0.310500,0.859600,-0.187600,0.475200 0.369800,0.461600,-0.374500,0.856600,0.134500,-0.498100 0.585900,-0.037120,0.261900,0.944600,0.249400,0.213500 -0.501500,0.335200,-0.515800,-0.499800,0.202400,-0.842100 0.318900,-0.484100,-0.389200,-0.060620,-0.997800,0.026390 -0.162700,-0.357500,0.764300,0.014170,-0.167000,0.985800 0.858000,-0.227100,-0.069160,0.312600,0.036150,-0.949200 0.303900,-0.390000,0.627200,0.488000,-0.223400,0.843800 -0.294900,0.675600,0.455800,0.236100,0.573000,-0.784900 -0.580200,0.173100,0.509700,-0.658400,0.315500,0.683400 -0.595100,-0.110400,-0.609400,-0.529300,0.138000,-0.837100 -0.293000,-0.519100,0.469800,-0.066390,-0.965200,0.253000 -0.834000,-0.107900,-0.297500,-0.862700,0.139200,-0.486200 -0.808300,-0.393400,-0.324200,-0.853900,-0.211600,-0.475500 0.415300,-0.505600,-0.485400,0.654600,-0.344200,-0.673100 0.107900,-0.520800,-0.429000,0.128100,-0.964600,-0.230500 0.104000,0.483500,0.575800,0.271100,0.137900,0.952600 0.579700,-0.367500,-0.301700,0.902000,-0.174200,-0.394900 0.192700,-0.077110,-0.692800,0.481300,0.161700,-0.861500 -0.825400,-0.401500,0.294300,-0.923200,-0.230400,0.307500 0.642300,0.602700,0.029950,-0.080440,0.944900,0.317200 0.550100,-0.296700,-0.370900,0.851200,-0.093390,-0.516400 -0.805400,-0.336800,0.354700,-0.849000,-0.142400,0.508800 -0.745900,-0.276900,0.466000,-0.856900,-0.062720,0.511700 -0.794500,0.207600,0.082190,-0.954400,0.297900,0.020260 0.470300,-0.002330,-0.455000,0.832800,0.271000,-0.482700 -0.454600,-0.010200,-0.670400,-0.499100,0.247200,-0.830500 -0.241700,0.628400,-0.597300,-0.270100,-0.008820,-0.962800 -0.272300,-0.047760,-0.741300,-0.265600,0.219000,-0.938900 0.446800,-0.397000,-0.497100,0.680300,-0.216300,-0.700300 0.604600,-0.396200,0.201000,0.938500,-0.235300,0.252700 -0.746200,-0.176300,0.466400,-0.858300,0.046910,0.511100 -0.440600,-0.246700,0.709300,-0.484100,-0.046720,0.873800 -0.091680,-0.505700,-0.049110,-0.172700,-0.949400,0.262400 -0.890600,-0.176900,-0.117300,-0.968300,0.044870,-0.245700 -0.594300,0.577900,0.393000,-0.705100,0.017760,0.708900 -0.530000,0.446300,0.469500,-0.692200,0.102100,0.714500 0.248700,-0.114700,0.671700,0.515600,0.125500,0.847600 -0.699600,-0.346800,0.508400,-0.688600,-0.154500,0.708500 0.621800,-0.349200,0.166600,0.949800,-0.188100,0.249900 0.121200,-0.193400,0.734900,0.273400,0.051740,0.960500 -0.868100,0.000243,-0.087710,-0.956800,0.264800,-0.119800 0.520600,-0.488800,0.345600,0.826400,-0.310900,0.469400 0.532300,-0.436300,-0.353500,0.838100,-0.214000,-0.501800 -0.686800,-0.361900,-0.512400,-0.707600,-0.163400,-0.687500 -0.583000,-0.327500,-0.617700,-0.510600,-0.116200,-0.851900 0.026920,-0.266900,0.761100,0.267500,-0.019730,0.963400 -0.700800,-0.236800,0.519700,-0.697000,-0.009450,0.717000 -0.577000,-0.518600,0.406200,0.696900,0.000221,-0.717100 -0.833400,-0.388600,-0.279800,-0.908200,-0.207600,-0.363400 0.008122,0.205200,-0.658200,0.234100,0.298100,-0.925400 0.264400,0.497200,-0.475500,0.692800,0.054430,-0.719100 -0.143100,-0.503800,-0.049990,0.107200,-0.944400,0.311000 -0.232500,-0.486900,0.576500,-0.066360,-0.974100,0.216100 0.452100,0.311600,0.287000,0.852200,0.233600,0.468100 -0.815600,-0.079960,-0.321200,-0.861900,0.160600,-0.481000 -0.860000,-0.326500,-0.217800,-0.963400,-0.111700,-0.243500 -0.202900,-0.357600,0.764900,-0.015760,-0.186500,0.982300 0.447300,0.648200,0.221500,0.950700,0.029780,0.308800 -0.726500,0.315100,0.231500,-0.936500,0.229200,0.265400 -0.397900,-0.164400,-0.722700,-0.276200,0.081860,-0.957600 -0.717400,-0.426600,0.468000,-0.795400,-0.227900,0.561600 0.655700,0.523200,-0.053410,0.020470,-0.771100,-0.636400 0.408000,-0.207000,-0.558600,0.696500,0.036720,-0.716600 0.283400,0.332200,0.498100,0.705100,0.205200,0.678700 0.299800,-0.451400,-0.611700,0.467100,-0.280200,-0.838600 0.396100,-0.296800,0.570700,0.714300,-0.089300,0.694100 0.054580,0.701600,0.558900,0.172500,0.773000,0.610500 0.475300,0.416100,-0.167500,0.951100,0.142100,-0.274300 0.385500,0.667200,-0.327100,0.835400,0.245100,-0.491900 -0.122400,-0.537800,0.414200,0.002413,-0.984600,0.174800 0.151100,0.401000,0.564900,0.501400,0.139500,0.853900 -0.689600,-0.176800,0.528600,-0.695700,0.061240,0.715700 0.107100,0.703400,0.541000,0.200300,0.791300,0.577600 -0.432900,-0.539500,0.263300,-0.098100,-0.990300,0.098810 -0.092100,-0.496400,-0.727200,-0.013550,-0.319800,-0.947400 0.388400,-0.489700,0.310900,-0.460500,-0.859600,-0.221400 0.795800,-0.322100,0.072840,-0.200500,0.230000,0.952300 -0.540000,0.193100,0.539600,-0.647500,0.308600,0.696700 -0.541400,-0.296600,-0.646100,-0.510000,-0.097400,-0.854600 -0.563300,0.476700,0.432400,-0.699300,0.101400,0.707600 0.217300,0.336600,0.539900,0.499000,0.190800,0.845300 0.293700,0.396200,-0.464600,0.677900,0.161600,-0.717200 -0.665100,0.403200,-0.311700,-0.861900,0.161100,-0.480800 -0.658200,-0.097080,0.547500,-0.690300,0.162800,0.704900 -0.688500,-0.097050,0.517400,-0.687500,0.165200,0.707100 0.819200,-0.097120,0.067440,0.569400,0.131000,0.811600 0.422300,0.456500,-0.287600,0.862900,0.088750,-0.497600 0.017190,0.254600,-0.640800,0.236100,0.265200,-0.934800 -0.504600,-0.280000,-0.669800,-0.512300,-0.069880,-0.856000 0.801500,0.095580,-0.050880,-0.704800,0.384700,-0.596100 0.479100,-0.507900,0.405200,0.824900,-0.330600,0.458500 -0.543400,0.415900,0.462900,-0.691300,0.130700,0.710700 0.464900,-0.508500,0.143600,-0.969800,0.019350,-0.242900 -0.277700,0.709100,-0.487900,0.130000,0.886600,0.443900 0.818500,0.493000,0.072860,0.204500,0.173000,0.963500 -0.516000,0.696500,-0.442200,-0.498400,0.716900,-0.487500 -0.720700,0.547500,-0.127600,-0.968600,0.054430,-0.242600 0.090470,-0.508500,0.570500,-0.268000,0.006829,-0.963400 0.254000,0.039780,0.627900,0.503600,0.284100,0.815900 -0.855400,-0.076790,0.211600,-0.949500,0.163000,0.268100 -0.690400,0.537400,-0.236700,-0.871900,0.060100,-0.486000 -0.635700,0.706100,-0.268200,-0.455300,0.850200,-0.264300 0.268400,-0.547000,-0.588900,0.215500,-0.893900,-0.393100 0.832300,0.209600,0.034700,-0.929500,0.186800,0.318100 0.773700,0.456900,0.032160,-0.714900,-0.628600,0.306200 -0.863000,-0.447000,0.121300,-0.935200,-0.269300,0.229900 0.657800,-0.398600,0.023690,-0.354700,-0.910800,0.211200 -0.616900,-0.402400,-0.573400,-0.699000,-0.225100,-0.678800 0.452400,0.355300,-0.267500,0.848800,0.169500,-0.500800 0.430100,0.168100,-0.404700,0.823500,0.303500,-0.479400 0.386800,-0.024640,0.551400,0.695000,0.195500,0.692000 0.810900,-0.275500,-0.059520,-0.611700,0.269500,-0.743700 -0.166000,0.700800,0.587800,0.011570,0.756800,0.653500 0.477800,0.095470,0.383600,0.819700,0.340800,0.460500 0.127400,0.052310,-0.685600,0.231300,0.323800,-0.917400 -0.028400,0.107600,-0.703600,0.222300,0.358300,-0.906800 0.823200,0.351700,0.023700,-0.944500,-0.263400,0.196300 -0.298300,0.671200,-0.447900,0.184000,0.697300,0.692800 0.191800,-0.498700,0.518800,-0.481200,-0.354500,-0.801800 0.796700,0.459900,0.063910,-0.508700,-0.386400,0.769300 0.810700,-0.301300,-0.067630,-0.327500,0.229700,-0.916500 -0.418700,0.239200,0.594900,-0.471900,0.300700,0.828800 -0.392100,-0.286600,0.728800,-0.255100,-0.073970,0.964100 -0.566900,-0.441500,-0.601600,-0.494500,-0.256100,-0.830600 -0.810100,-0.543700,0.185300,-0.744600,-0.641400,0.184900 0.493400,-0.277400,-0.469100,0.861300,-0.029170,-0.507200 -0.602500,0.669900,0.005145,0.689500,0.724100,-0.016840 -0.020420,0.685200,0.479700,-0.226300,0.516400,-0.825900 0.846800,-0.182400,0.072020,0.326800,0.152500,0.932700 0.492300,-0.200200,0.475700,0.721500,0.058110,0.689900 -0.544500,-0.459400,-0.609000,-0.490100,-0.288200,-0.822600 -0.741900,0.376200,0.131400,-0.947900,0.173200,0.267300 0.313800,0.453300,0.438100,0.721300,0.105800,0.684500 -0.031870,0.034030,0.733600,0.025590,0.264800,0.964000 0.049120,0.669000,0.582400,0.277500,0.264600,0.923600 0.159600,-0.528500,-0.364200,0.171700,-0.968300,-0.181400 -0.607900,-0.276800,0.607900,-0.695500,-0.061880,0.715900 -0.720200,0.264900,0.280600,-0.828100,0.263700,0.494800 0.007325,-0.527000,0.010710,-0.250200,-0.968100,-0.010200 -0.040280,-0.514000,-0.008472,-0.302700,-0.952100,0.043150 -0.694800,-0.410800,-0.490500,-0.698500,-0.225000,-0.679300 0.187200,-0.542800,-0.518600,-0.525000,-0.126900,0.841600 0.874200,-0.169800,-0.036580,0.845300,0.378700,-0.377000 0.364600,0.692900,-0.336800,0.669900,0.627900,-0.396200 -0.694200,0.697100,-0.147900,-0.676300,0.715300,-0.176000 0.309100,-0.547300,-0.560500,0.200000,-0.956200,-0.213500 -0.013110,0.676400,-0.592500,0.221100,0.350500,-0.910100 0.097760,0.244700,-0.623300,0.236300,0.270000,-0.933400 0.428000,-0.496600,-0.108400,0.368100,-0.923700,-0.106400 -0.350100,0.128200,0.665300,-0.252100,0.335900,0.907500 -0.701600,0.182100,0.359200,-0.815500,0.299600,0.495200 0.197000,0.013340,-0.666600,0.467900,0.286300,-0.836100 -0.514100,-0.509000,-0.608500,-0.480100,-0.349700,-0.804500 0.097710,-0.166900,-0.738200,0.242300,0.066880,-0.967900 0.534100,0.121200,0.259600,0.873600,0.376300,0.308600 -0.839400,-0.027810,0.231200,-0.937400,0.225300,0.265500 -0.013630,-0.366400,-0.755500,0.244300,-0.163800,-0.955800 0.228500,-0.522400,0.332500,0.186100,-0.965700,0.180900 0.865000,0.480400,-0.043940,0.778400,0.436600,-0.451000 0.146000,0.567700,0.549700,0.520000,0.042200,0.853100 0.353200,-0.060430,0.597700,0.654000,0.188000,0.732800 -0.766700,-0.019120,-0.383100,-0.850400,0.225600,-0.475300 0.286000,0.183200,-0.546100,0.603400,0.319500,-0.730600 0.691600,0.599900,-0.033260,0.115700,0.932100,-0.343200 -0.383300,-0.507400,-0.677800,-0.255000,-0.351400,-0.900800 -0.636500,0.287700,-0.401900,-0.695800,0.242500,-0.676100 0.290100,0.662800,0.172800,-0.010370,0.999900,-0.002156 0.377500,-0.544200,0.349100,-0.654700,-0.675200,-0.339900 -0.501200,0.706100,0.442100,-0.391700,0.814500,0.427900 0.594500,-0.466000,-0.167200,0.914100,-0.311400,-0.259700 0.312400,0.686600,0.222100,-0.711000,0.575200,-0.404600 -0.729900,0.325100,0.211300,-0.938900,0.216400,0.267600 -0.019950,-0.523100,-0.713200,0.229000,-0.351000,-0.908000 -0.135900,0.691300,0.596000,-0.010450,0.612100,0.790700 0.593300,-0.166200,-0.295500,0.962900,0.078920,-0.258000 0.511700,0.138200,-0.289800,0.803400,0.346300,-0.484300 0.504500,-0.543300,0.331800,0.693600,-0.665200,0.276400 -0.284100,0.239000,0.643500,-0.234200,0.277700,0.931700 0.352700,0.698400,-0.145500,-0.675000,0.714500,0.184300 -0.633200,-0.501900,0.212200,-0.308500,-0.944700,0.111600 -0.111600,-0.499700,-0.039530,-0.102700,-0.936100,0.336400 -0.448800,-0.393700,-0.685200,-0.499000,-0.211900,-0.840300 -0.333300,-0.541900,0.323000,-0.055220,-0.993700,0.098010 -0.506700,0.236700,-0.541400,-0.493200,0.275100,-0.825300 0.791300,0.030980,-0.067370,-0.399100,0.142900,-0.905700 -0.585900,0.697800,0.197800,0.657200,0.706600,-0.262300 -0.853800,-0.066470,-0.208900,-0.957000,0.169100,-0.235600 0.267500,0.235200,0.539600,0.484700,0.245900,0.839400 0.465600,0.284600,-0.276700,0.835800,0.254100,-0.486800 0.897300,0.166300,-0.061400,0.606700,-0.155200,-0.779600 -0.645200,0.388400,-0.352500,-0.861200,0.163700,-0.481100 -0.765100,0.120000,-0.291200,-0.812800,0.363800,-0.455000 -0.663300,0.396300,0.320500,-0.847200,0.163700,0.505400 -0.322400,-0.035650,-0.724200,-0.267500,0.225600,-0.936800 -0.271700,-0.276700,0.760500,-0.248000,-0.054320,0.967200 0.513000,0.149900,0.277300,0.816900,0.333800,0.470300 -0.615900,0.486800,0.377000,-0.839100,0.094710,0.535700 -0.674300,0.714500,0.112000,-0.252300,0.965700,0.061690 -0.621000,0.193700,-0.456700,-0.681900,0.309700,-0.662600 -0.176700,-0.518700,-0.494300,-0.005208,-0.963900,-0.266200 0.271400,0.309800,0.514000,0.525700,0.226600,0.819900 0.097650,-0.046950,-0.721200,0.239000,0.222300,-0.945200 0.050790,-0.353600,0.745000,0.265800,-0.169600,0.949000 0.455800,0.134000,0.392000,0.824800,0.327700,0.460700 -0.332200,0.426300,0.589800,-0.240100,0.151600,0.958800 -0.472500,0.527300,0.506200,-0.490800,0.069450,0.868500 0.544000,0.213300,-0.058480,0.954000,0.298500,-0.027250 0.388400,-0.511900,0.091740,0.308500,-0.948000,0.078070 -0.634900,0.119800,-0.480700,-0.668300,0.363800,-0.648800 -0.774300,0.224100,0.151100,-0.920100,0.293000,0.260100 -0.313500,0.662600,-0.118900,0.022010,0.999700,-0.011060 -0.611600,0.577800,0.373200,-0.845200,0.025870,0.533900 -0.344400,-0.542500,-0.018370,0.111500,-0.993700,0.007278 -0.313500,0.662500,-0.229600,0.016520,0.999900,0.000000 -0.678400,0.326600,-0.317600,-0.851700,0.213400,-0.478600 -0.736000,-0.547400,0.293500,0.000000,-1.000000,0.000000 -0.202900,0.662500,-0.219500,0.000000,1.000000,0.000000 -0.192800,0.662500,-0.320100,0.016500,0.999900,0.000000 -0.102200,0.662100,0.353900,0.000000,1.000000,0.000000 0.386700,0.587100,-0.329300,0.860600,0.009076,-0.509300 -0.062080,0.547500,0.610400,0.014220,0.038400,0.999200 0.418000,0.228100,0.394600,0.830800,0.276800,0.482900 -0.506200,-0.341000,-0.661500,-0.506200,-0.150700,-0.849200 -0.464400,0.662500,-0.008269,0.013830,0.999900,0.005474 0.522200,0.291000,0.086900,0.946100,0.253900,0.201300 0.480400,0.168100,-0.319200,0.811000,0.341100,-0.475400 -0.032720,-0.046970,-0.753700,0.131300,0.210900,-0.968600 -0.730200,-0.508500,0.021960,0.999900,0.003173,-0.014310 0.239800,0.662500,0.092340,0.016450,0.999900,0.000000 0.008397,0.662100,-0.169200,-0.016540,0.999900,-0.000000 -0.325100,0.119100,0.675400,-0.245400,0.336900,0.909000 0.205200,-0.518600,-0.508900,-0.490800,0.022270,0.871000 0.038570,0.662300,-0.370500,-0.016580,0.999800,-0.008260 0.210200,0.669000,-0.338300,-0.452600,0.718400,0.528300 -0.586200,0.445800,0.414900,-0.689700,0.102500,0.716800 0.167500,-0.366500,0.709600,0.279700,-0.138200,0.950100 0.876300,0.138700,0.071530,0.371400,-0.139400,0.917900 -0.723500,-0.100800,-0.478800,-0.708300,0.156700,-0.688300 0.089530,0.713800,0.486400,-0.128600,0.962100,-0.240300 0.358400,-0.501800,-0.258600,0.287900,-0.942000,-0.172400 -0.486700,0.242000,-0.551600,-0.494500,0.272100,-0.825500 -0.253100,0.662100,0.203000,0.016490,0.999900,0.000000 0.290100,0.662500,-0.108900,0.016510,0.999900,0.000000 -0.554200,-0.515400,-0.269400,-0.261700,-0.953900,-0.146800 -0.494600,0.662500,0.223100,0.016520,0.999900,0.000000 0.028560,0.662100,0.011860,0.016520,0.999800,0.008281 0.058670,0.662500,-0.008267,-0.016510,0.999900,0.000000 -0.404000,-0.545700,0.202900,-0.040730,-0.998800,0.025720 -0.652900,0.259500,0.396100,-0.827900,0.265000,0.494300 -0.373900,0.662100,0.374000,-0.000033,1.000000,0.000066 0.087350,-0.376800,0.730900,0.257700,-0.168900,0.951400 0.350500,-0.547400,-0.440900,0.000000,-1.000000,0.000000 0.209600,-0.547400,-0.551500,0.000000,-1.000000,0.000000 0.752800,-0.319100,0.052130,-0.315400,0.752100,0.578600 0.039420,-0.534300,0.032180,-0.181300,-0.982700,-0.039080 0.649600,-0.206800,0.031990,0.999000,0.039350,-0.019850 -0.616700,0.095590,-0.512800,-0.671100,0.352500,-0.652200 -0.253200,0.662600,-0.038470,-0.011010,0.999900,-0.002759 -0.011670,-0.546100,0.243300,-0.018910,-0.999200,-0.036030 0.594200,0.071010,0.099180,0.899500,0.379200,0.217000 0.579400,0.552500,0.072380,-0.134900,0.302900,0.943400 -0.693400,-0.160600,-0.519200,-0.714600,0.083790,-0.694500 0.098970,0.662100,-0.189400,-0.000050,1.000000,0.000000 -0.521800,0.213300,0.545700,-0.498300,0.284500,0.819000 0.016660,-0.137000,-0.755900,0.245100,0.096660,-0.964700 -0.731900,0.598100,0.052030,-0.999800,0.016510,0.014320 -0.017580,0.680000,-0.472300,-0.253600,0.543100,0.800500 0.268400,-0.512400,-0.338700,0.229800,-0.944500,-0.234600 -0.706300,0.496900,0.197900,-0.957500,0.092890,0.273100 -0.243100,0.662500,-0.008262,0.013690,0.999900,0.005528 0.109000,-0.546200,-0.229500,0.026220,-0.999300,-0.026980 -0.233000,0.662100,0.031970,0.016490,0.999900,0.000000 0.913600,0.360500,-0.043170,0.862400,0.215300,-0.458100 -0.664300,0.084270,-0.469900,-0.671200,0.349600,-0.653700 -0.895100,-0.267000,0.102400,-0.998100,-0.042080,0.045140 -0.011750,0.662500,0.102400,-0.016510,0.999900,0.000000 -0.001690,0.662500,0.042040,-0.016510,0.999900,0.000002 0.565500,-0.186800,0.350400,0.881600,0.046460,0.469700 -0.642400,-0.355800,0.561900,-0.687500,-0.162400,0.707800 -0.172700,0.662900,0.464400,0.006049,0.985300,-0.170700 -0.733400,0.547700,0.062110,-0.998400,0.054850,0.014300 -0.732500,0.598100,0.011790,-0.999800,0.016490,0.014290 -0.648100,0.335500,0.368300,-0.840800,0.203200,0.501900 -0.672900,-0.544200,-0.262000,0.701400,-0.674500,0.230500 -0.403800,0.638400,0.541800,-0.484500,-0.010850,0.874700 0.098960,0.662500,0.343800,0.022030,0.999800,-0.002771 -0.051990,0.662800,0.434400,-0.016520,0.999900,0.000000 -0.868100,-0.442900,-0.093510,-0.946300,-0.254800,-0.199000 -0.730600,-0.518600,0.001826,0.999700,-0.000019,-0.022580 0.155700,0.274200,-0.589100,0.470600,0.254800,-0.844800 -0.635900,-0.491200,0.522700,-0.663700,-0.310700,0.680400 -0.132400,-0.546000,-0.259900,0.000598,-0.999100,0.041980 0.650500,-0.216800,0.062170,0.999800,0.010190,-0.017050 -0.370300,0.707700,0.449500,0.260800,0.866900,-0.424700 -0.454400,0.662500,-0.199400,-0.016560,0.999900,0.000007 -0.202900,0.662500,0.102400,-0.027580,0.999600,0.005530 -0.444300,0.662100,0.223100,-0.016540,0.999900,0.000000 -0.404100,0.662100,-0.149100,-0.000050,1.000000,0.000000 0.139100,-0.545600,0.223000,0.040660,-0.998400,0.039570 -0.353400,-0.535000,-0.359800,-0.094630,-0.982600,-0.160100 -0.534900,0.662500,0.203000,-0.004719,1.000000,-0.001475 -0.893000,-0.146800,0.082210,-0.995200,0.097220,0.014240 0.441000,-0.547400,0.283500,-0.001626,-1.000000,-0.001576 -0.363900,0.662500,-0.189400,-0.016510,0.999900,0.000000 0.370600,-0.547400,0.404200,-0.001473,-1.000000,-0.001473 -0.675700,-0.547400,0.434400,-0.001589,-1.000000,0.002133 0.280000,0.662500,-0.179300,0.016500,0.999900,0.000000 -0.585100,-0.547400,-0.430800,0.002025,-1.000000,0.002025 0.501400,-0.547400,-0.300000,0.000033,-1.000000,-0.000017 -0.253100,0.662100,-0.380500,0.000000,1.000000,0.000000 -0.303400,0.662100,-0.249700,0.016490,0.999900,0.000000 0.441000,-0.547400,-0.350300,0.000000,-1.000000,0.000000 -0.142500,0.662100,0.353900,0.016490,0.999900,-0.000002 -0.132400,0.662100,-0.370400,0.000000,1.000000,0.000000 0.058670,0.662500,0.052100,-0.016510,0.999900,0.000000 -0.092180,-0.546700,-0.280000,-0.004108,-0.999400,0.033760 0.450000,0.107500,-0.414700,0.783000,0.381800,-0.491100 -0.224400,0.159500,0.684800,-0.258900,0.351000,0.899900 -0.325800,-0.150100,-0.741700,-0.271600,0.096560,-0.957500 -0.052470,0.184300,-0.678200,0.041400,0.315900,-0.947900 0.159400,-0.546800,0.042040,-0.027610,-0.999600,-0.005325 -0.011730,0.662500,0.203000,0.000000,1.000000,0.000000 0.169400,0.662100,-0.038440,-0.024870,0.999700,0.008286 0.336200,0.710300,0.234500,-0.367900,0.908900,-0.196500 0.109000,0.662300,0.082260,-0.016570,0.999800,-0.008255 -0.082220,-0.137000,0.769500,0.025250,0.100000,0.994700 -0.062050,0.662500,0.303600,-0.016510,0.999900,0.000000 0.119000,0.662500,0.052100,-0.016510,0.999900,0.000000 0.239800,0.662500,-0.008267,-0.000000,1.000000,0.000000 -0.182700,0.662500,0.021910,0.016450,0.999900,0.000000 0.088900,0.662100,0.203000,-0.000038,1.000000,0.000014 0.179400,0.662500,0.092340,-0.016510,0.999900,0.000000 0.149300,-0.546500,-0.038470,-0.036880,-0.999300,0.005453 -0.001647,0.662500,0.223100,0.016450,0.999900,-0.000000 -0.396600,0.697200,-0.522500,-0.352900,0.698600,-0.622500 -0.734300,0.537600,0.042000,-0.998100,0.060430,0.014300 -0.620400,0.294600,-0.416000,-0.697000,0.235300,-0.677300 -0.303500,0.662500,0.052100,0.016450,0.999900,0.000000 0.028550,0.662100,0.333800,0.000000,1.000000,0.000000 0.048630,0.662500,-0.189400,0.000050,1.000000,-0.000050 -0.766200,-0.547400,-0.038450,0.000000,-1.000000,0.000000 0.551700,-0.547400,-0.028390,0.000000,-1.000000,0.000000 -0.488400,-0.066950,0.667200,-0.480400,0.163700,0.861600 -0.732500,0.618300,0.001731,-0.999900,-0.004780,0.014300 0.166000,0.324900,-0.569400,0.474900,0.215200,-0.853300 -0.647800,0.470200,-0.324400,-0.868100,0.104000,-0.485400 0.026870,0.132700,-0.679600,0.228000,0.360100,-0.904600 0.471200,0.128100,-0.365000,0.817800,0.345500,-0.460300 0.252200,0.188900,0.565600,0.481600,0.281000,0.830100 -0.553800,-0.532500,0.102000,-0.179900,-0.982400,0.050970 0.898200,0.147000,0.057160,0.737100,-0.234900,0.633600 0.008424,0.662100,-0.269800,0.000050,1.000000,0.000000 0.209600,0.662100,0.102400,0.000021,1.000000,-0.000030 0.269900,0.662500,0.092340,-0.016510,0.999900,0.000000 0.215600,0.061730,-0.638500,0.459100,0.343800,-0.819100 -0.363800,0.662300,0.042040,0.016550,0.999800,0.008250 -0.633500,-0.512900,-0.088280,-0.301800,-0.950400,-0.075480 -0.309000,0.187200,0.653800,-0.226100,0.321400,0.919600 0.179400,-0.547000,-0.028400,0.013640,-0.999900,0.000301 0.181400,0.137900,-0.624000,0.456600,0.321300,-0.829600 0.038570,0.662500,-0.219500,0.000050,1.000000,0.000000 -0.504600,0.662100,-0.068630,0.016560,0.999900,0.000000 0.018480,0.662100,-0.300000,0.000050,1.000000,0.000000 -0.568600,0.275000,0.478000,-0.672600,0.245200,0.698200 0.566600,-0.306800,0.341000,0.875500,-0.097330,0.473200 0.551700,-0.547400,0.021910,0.000000,-1.000000,0.000000 0.008424,0.662100,-0.209500,0.000050,1.000000,0.000000 -0.387000,-0.129500,-0.722300,-0.272700,0.099790,-0.956900 -0.281600,0.407100,-0.602800,-0.273800,0.160600,-0.948300 -0.012740,0.700500,-0.574400,0.154900,0.788300,-0.595500 -0.212800,-0.495900,-0.725700,-0.014250,-0.318200,-0.947900 -0.383900,-0.546700,-0.179300,-0.026180,-0.999500,-0.015690 0.159200,-0.545800,-0.189300,0.037170,-0.999100,-0.022330 -0.263200,-0.547100,0.273400,-0.009872,-0.999800,0.017800 0.193200,-0.370100,0.697600,0.518400,-0.145700,0.842700 0.027090,-0.446500,-0.727100,0.236000,-0.268300,-0.934000 -0.709500,-0.543700,-0.405700,-0.557900,-0.770800,-0.307700 0.419100,0.082270,-0.469100,0.661000,0.322900,-0.677400 0.048650,-0.547000,0.243200,-0.002279,-1.000000,-0.005879 -0.102200,0.662100,0.414300,0.000000,1.000000,0.000000 0.088920,0.662100,0.021910,0.016490,0.999900,0.000000 -0.172700,-0.226800,0.775800,0.019770,0.005099,0.999800 0.179300,-0.546200,-0.129000,0.034230,-0.999300,-0.014780 -0.634200,0.710000,0.261800,-0.365100,0.906300,0.212700 0.587800,0.093540,-0.038400,0.937500,0.347700,-0.015910 0.403900,-0.471400,-0.511900,0.667300,-0.288400,-0.686700 -0.122400,0.662100,0.273400,-0.000050,1.000000,0.000000 -0.394000,0.662100,-0.118900,0.000050,1.000000,0.000000 0.179400,0.662500,0.263400,-0.016580,0.999900,0.000000 0.269900,0.662500,0.162800,-0.016580,0.999900,0.000000 -0.363700,-0.546100,0.233100,-0.026190,-0.999300,0.026990 0.310200,0.662100,-0.139000,-0.050280,0.998500,0.022010 -0.182700,-0.546000,0.333700,-0.009713,-0.999200,0.038520 -0.433700,-0.543400,0.202700,-0.096660,-0.993600,0.057640 -0.424100,-0.546600,-0.108900,-0.033280,-0.999400,-0.009903 0.068790,-0.547400,0.655700,0.000000,-1.000000,0.000050 -0.313500,-0.547400,0.655700,0.000000,-1.000000,0.000000 -0.182800,0.662500,0.353900,-0.016560,0.999900,0.000000 -0.263200,0.662100,0.333800,0.002736,1.000000,0.002733 -0.162600,-0.547400,0.695900,-0.000808,-1.000000,0.008482 -0.615300,-0.547400,-0.410700,0.000000,-1.000000,0.000000 0.390700,-0.547400,-0.430800,0.000000,-1.000000,0.000000 -0.243100,0.662100,0.122500,0.016490,0.999900,0.000000 0.139200,0.662100,0.112500,0.016520,0.999800,0.008281 -0.353800,0.662500,-0.118900,0.013740,0.999900,0.005503 0.129100,-0.547400,0.595400,0.000000,-1.000000,0.000000 -0.172700,-0.547400,-0.652100,0.000000,-1.000000,0.000000 0.491300,-0.547400,-0.139100,0.000000,-1.000000,0.000000 -0.514700,-0.547400,0.504800,0.000000,-1.000000,0.000000 -0.313600,0.662500,0.293500,-0.002750,1.000000,-0.002803 0.068990,-0.545100,-0.149300,-0.060960,-0.997000,0.047880 0.102500,0.178400,-0.643500,0.230900,0.327700,-0.916100 -0.865700,-0.208100,-0.219600,-0.969600,0.027340,-0.243300 -0.889700,-0.306600,0.120900,-0.973000,-0.100400,0.207600 -0.112400,-0.267000,0.773400,0.008744,-0.039140,0.999200 -0.896200,-0.277100,-0.008292,-0.997900,-0.062770,0.014250 -0.052000,-0.545300,-0.340100,0.016170,-0.997800,-0.064440 -0.700500,-0.543700,0.422400,-0.676400,-0.606500,0.418000 0.058700,0.662100,0.374000,-0.016540,0.999900,0.000000 -0.794300,-0.446600,0.329800,-0.825900,-0.270000,0.494900 -0.092260,0.436600,0.621300,0.016920,0.140800,0.989900 0.648200,-0.216800,-0.048450,0.999800,0.013040,-0.014320 0.512800,-0.380100,0.418000,0.858800,-0.184500,0.478000 0.489500,0.087110,-0.363900,0.796500,0.366300,-0.481100 0.159500,0.385800,-0.559400,0.481300,0.165600,-0.860800 -0.656700,-0.431900,-0.522600,-0.697200,-0.233800,-0.677700 0.596900,-0.516800,0.032020,0.932800,-0.359800,-0.022030 0.203700,0.557600,-0.513400,0.486900,0.043480,-0.872400 0.058860,-0.545500,-0.169400,-0.040280,-0.998400,0.040870 -0.142500,0.426800,-0.619800,-0.014170,0.132800,-0.991000 -0.664100,0.280000,0.366600,-0.832300,0.247300,0.496100 -0.192800,-0.546300,-0.259900,0.010280,-0.999300,0.036200 -0.001550,0.716300,0.525300,-0.022900,0.995300,-0.094310 -0.812400,0.044070,0.252800,-0.914500,0.309900,0.260200 0.107500,-0.406500,-0.716800,0.239900,-0.225300,-0.944300 -0.444200,-0.546200,0.082240,-0.036190,-0.999300,0.010240 0.249800,0.662500,-0.169200,-0.016580,0.999900,0.000000 -0.212800,-0.216800,0.775500,-0.083810,0.026710,0.996100 0.150000,-0.519700,-0.409800,0.128200,-0.964700,-0.230200 -0.589400,-0.493900,-0.565900,-0.679100,-0.319900,-0.660700 -0.052120,-0.542400,-0.369800,0.027570,-0.993600,-0.109200 -0.754900,0.315200,0.131100,-0.937400,0.225800,0.265000 -0.697100,0.090870,-0.432700,-0.705400,0.349800,-0.616500 -0.003422,-0.297500,-0.762100,0.243200,-0.096840,-0.965100 -0.031720,-0.545400,-0.229900,-0.024790,-0.997900,0.059380 -0.404200,-0.546700,-0.028390,0.034530,-0.999400,0.002662 0.209400,-0.545700,-0.078650,0.047820,-0.998800,-0.013350 -0.722600,-0.544500,0.383400,-0.580600,-0.737200,0.345600 0.846300,0.484600,-0.060010,0.529200,0.365700,-0.765700 0.006942,-0.057050,0.751100,0.267500,0.195400,0.943500 -0.893900,-0.307000,-0.038490,-0.995200,-0.097280,0.014300 0.289600,-0.536500,-0.078590,0.176500,-0.983100,-0.049420 0.380300,0.476600,-0.352900,0.845800,0.107000,-0.522700 0.548000,-0.465000,0.310200,0.838200,-0.299000,0.456100 0.768900,-0.143200,-0.043890,-0.809800,-0.298100,-0.505300 -0.092260,0.375900,0.630900,0.013490,0.182600,0.983100 -0.540900,0.063160,-0.592600,-0.479800,0.344100,-0.807100 -0.092140,0.376100,-0.628600,-0.014060,0.172100,-0.985000 0.830000,0.433000,0.072530,-0.273400,-0.137900,0.952000 -0.373800,-0.546300,-0.209400,-0.027390,-0.999300,-0.026590 0.186800,-0.157000,-0.707700,0.485600,0.087270,-0.869800 0.038180,-0.541500,-0.349600,0.054180,-0.993600,-0.098720 -0.132400,0.638400,-0.606800,-0.014290,0.003919,-0.999900 -0.880200,-0.047410,-0.048610,-0.976000,0.217300,0.013900 0.186600,-0.405400,0.693100,0.496900,-0.231500,0.836300 -0.283100,-0.544600,-0.319800,-0.044590,-0.996200,-0.075440 -0.770800,0.294900,0.031880,-0.972800,0.231300,0.013950 -0.832500,0.043310,-0.178300,-0.925500,0.301100,-0.229700 0.061940,0.680100,-0.572000,0.247200,0.429300,-0.868700 -0.433700,-0.542900,-0.209200,-0.096730,-0.993900,-0.053760 -0.893100,-0.186700,0.121400,-0.977300,0.032640,0.209500 -0.448800,0.017860,0.665200,-0.449000,0.301700,0.841000 -0.619300,0.101800,0.508600,-0.656500,0.335900,0.675400 0.139100,-0.546000,-0.209400,0.028920,-0.999300,-0.023740 0.585500,-0.246700,-0.316400,0.863200,-0.066790,-0.500500 -0.122500,-0.376800,0.760700,0.014230,-0.187400,0.982200 -0.870600,-0.037240,-0.117300,-0.943900,0.226600,-0.240200 -0.441700,0.102200,0.636200,-0.465600,0.358300,0.809200 -0.122400,0.123900,0.702300,0.016300,0.374300,0.927200 -0.552500,-0.516800,0.587500,-0.481100,-0.360000,0.799300 0.108400,-0.540600,-0.319400,0.065220,-0.993300,-0.095700 0.420200,-0.518100,0.474100,0.670000,-0.356400,0.651200 0.361300,0.715600,-0.220000,-0.162800,0.982700,0.088660 -0.574900,0.662400,-0.098770,0.187700,0.981100,0.046070 0.624300,-0.147200,0.180800,0.963100,0.083640,0.255900 -0.723800,0.598100,-0.108500,-0.970100,0.017590,-0.242100 0.491800,-0.161900,-0.470800,0.868300,0.061660,-0.492200 -0.051690,-0.540700,0.193900,-0.035200,-0.993200,-0.111000 -0.132400,0.376000,-0.628000,-0.013760,0.172600,-0.984900 -0.012630,-0.546700,0.702800,0.080090,-0.949400,0.303800 -0.493700,-0.540600,0.142400,-0.112500,-0.993100,0.033690 0.259100,-0.541800,-0.038450,0.112500,-0.993600,-0.004156 0.634800,-0.226700,-0.157000,0.957800,0.005904,-0.287400 -0.293800,-0.543300,0.153100,0.081270,-0.993700,-0.076930 0.544600,-0.126600,-0.375100,0.854500,0.091240,-0.511400 0.647800,-0.226800,-0.078640,0.999600,-0.025400,-0.014360 0.307800,0.408900,0.452300,0.710700,0.140500,0.689300 -0.525400,0.715900,0.354500,0.119100,0.983500,-0.136300 -0.152500,0.022340,-0.735300,-0.013600,0.289800,-0.957000 0.050290,-0.497400,-0.577900,-0.086420,-0.443300,0.892200 0.280700,-0.116900,-0.650700,0.483600,0.119900,-0.867000 0.340200,0.662600,0.052080,-0.217300,0.975300,-0.039700 -0.132400,-0.546100,0.333700,0.000526,-0.999300,0.037660 0.922500,0.167600,0.011390,0.967200,-0.235600,0.095180 0.478300,-0.014020,0.453100,0.744500,0.223500,0.629100 -0.763900,0.326100,0.001752,-0.978000,0.208300,0.014000 -0.507200,-0.491600,0.623500,-0.447000,-0.318100,0.836100 -0.371100,0.577900,0.560100,-0.477600,0.026040,0.878200 -0.518800,0.702700,-0.314100,0.443800,0.784500,0.433200 -0.735600,0.507700,0.082140,-0.994800,0.079910,0.063050 -0.816900,-0.203600,-0.343500,-0.873000,0.031100,-0.486800 -0.392500,-0.196800,0.730400,-0.253300,0.013190,0.967300 0.318400,-0.520900,0.212000,0.228200,-0.965300,0.127300 -0.632300,-0.395800,0.561800,-0.681200,-0.211700,0.700800 -0.102200,0.154000,-0.688200,-0.013460,0.332000,-0.943200 -0.329500,-0.509500,-0.486100,-0.112500,-0.943600,-0.311400 0.148000,-0.146800,-0.723700,0.249700,0.097800,-0.963400 -0.658900,0.163800,0.437500,-0.662100,0.318200,0.678500 0.238600,0.686900,0.481000,0.426200,0.562800,0.708300 -0.042690,0.587900,0.608800,0.063960,0.007340,0.997900 -0.003005,-0.325700,0.764300,0.239000,-0.096420,0.966200 -0.759100,0.274200,-0.147300,-0.936900,0.255300,-0.239000 -0.102200,-0.514400,-0.509900,-0.004424,-0.952100,-0.305800 -0.142500,-0.544800,0.243600,0.004364,-0.996500,-0.083990 -0.589100,-0.383400,-0.603800,-0.514900,-0.182400,-0.837600 -0.722600,0.527500,0.131700,-0.960600,0.061720,0.270900 -0.778000,-0.092110,0.395600,-0.847800,0.161300,0.505300 -0.663400,-0.349600,-0.539400,-0.708000,-0.159600,-0.688000 -0.343000,-0.246800,-0.739700,-0.269800,-0.032450,-0.962400 0.229300,-0.545000,0.011860,0.078660,-0.996900,-0.001266 0.582200,-0.421400,-0.252800,0.942200,-0.202100,-0.267300 -0.202800,0.557600,-0.606800,-0.050510,0.043630,-0.997800 -0.215400,-0.542800,0.603900,0.340900,-0.300700,-0.890700 0.027630,-0.397100,-0.739200,0.236400,-0.211100,-0.948400 -0.323200,-0.534500,0.383300,-0.091100,-0.982400,0.163200 0.456700,-0.446600,0.470300,0.703700,-0.280700,0.652700 -0.554100,-0.534300,0.062070,-0.184500,-0.982600,0.023090 -0.202800,-0.386500,0.760000,-0.024250,-0.176600,0.984000 -0.172500,-0.117200,-0.764700,-0.012540,0.113500,-0.993500 -0.760400,-0.505200,-0.346400,-0.818400,-0.347200,-0.457900 0.409000,-0.007433,-0.519400,0.667700,0.255500,-0.699200 -0.575500,-0.451300,0.598200,-0.618800,-0.295400,0.727900 -0.473500,0.714700,0.443400,-0.189400,0.960800,0.202400 -0.253000,-0.544000,-0.339800,-0.027940,-0.994900,-0.096430 0.048380,-0.543900,0.323200,0.051600,-0.995000,0.085680 -0.627900,-0.507500,-0.173100,-0.322300,-0.943100,-0.081920 -0.015150,0.151400,0.688000,0.238000,0.354600,0.904200 0.109600,-0.544000,0.011830,-0.102800,-0.994700,0.000654 -0.341800,-0.127000,0.738700,-0.253500,0.109300,0.961100 0.482700,0.527200,-0.096420,0.959400,0.090500,-0.267200 0.618400,-0.447200,-0.028350,0.956200,-0.292200,-0.013760 0.496500,0.254700,-0.218200,0.931100,0.244100,-0.270900 -0.782500,-0.369000,-0.379500,-0.860900,-0.161800,-0.482300 -0.753700,0.376400,0.011840,-0.984800,0.173100,0.013070 0.158000,-0.546900,0.652800,0.146900,-0.970600,0.190600 0.645900,-0.266800,-0.108000,0.991000,-0.016400,-0.133100 0.512600,0.334700,-0.038340,0.970700,0.239000,-0.023310 -0.728600,0.375400,-0.177400,-0.953800,0.176400,-0.243300 0.503200,0.303700,0.150000,0.938500,0.245200,0.243200 -0.368600,0.520700,-0.564100,-0.395900,0.060100,-0.916300 0.362400,0.507000,-0.377400,0.814300,0.086460,-0.574000 -0.694800,0.342500,-0.281300,-0.855900,0.197500,-0.477900 0.405500,0.685700,0.280900,0.750400,0.509500,0.421200 0.493400,0.334800,-0.156900,0.933200,0.223800,-0.281300 0.489400,-0.516600,-0.377500,0.804500,-0.349700,-0.480100 -0.765500,-0.451200,-0.372200,-0.838600,-0.279800,-0.467400 0.029680,-0.532500,-0.028640,-0.182200,-0.982500,0.038680 0.043320,-0.528600,-0.581300,-0.262400,0.018470,0.964800 -0.474500,-0.537500,0.223000,-0.152800,-0.984000,0.091760 0.047960,0.487100,-0.588700,0.242100,0.094850,-0.965600 0.089560,-0.542400,0.052260,-0.109100,-0.993600,-0.027620 -0.172900,-0.534800,0.163400,0.051950,-0.982400,-0.179200 -0.132400,0.662400,0.464300,-0.000494,0.976000,-0.217900 0.068400,-0.535300,0.383400,0.095170,-0.982800,0.158300 -0.212900,-0.206800,-0.770400,-0.014310,0.028180,-0.999500 -0.424500,0.716000,0.445000,0.075790,0.985900,-0.149000 0.582400,-0.110500,0.306900,0.874100,0.112500,0.472600 -0.122400,0.716600,0.545100,-0.000103,1.000000,-0.004239 0.308400,-0.502100,-0.338900,0.261700,-0.943600,-0.203000 -0.523100,0.062600,0.607400,-0.467000,0.347300,0.813200 0.489000,-0.447000,-0.421300,0.823400,-0.315500,-0.471700 -0.445900,-0.495900,-0.461900,-0.197000,-0.923300,-0.329700 -0.465000,-0.537300,-0.240400,-0.157000,-0.983300,-0.092420 -0.853800,-0.136600,-0.249100,-0.966100,0.095830,-0.239800 0.519200,-0.426600,-0.380400,0.841200,-0.246500,-0.481300 -0.522000,0.296300,-0.513900,-0.512300,0.233300,-0.826500 0.388500,-0.004279,0.543000,0.702000,0.270800,0.658600 -0.152500,-0.067030,-0.757100,-0.014040,0.173000,-0.984800 0.628700,-0.216800,-0.178400,0.961900,0.016990,-0.272800 0.477400,0.456800,0.141700,0.964400,0.128100,0.231500 0.445800,0.547500,0.230200,0.915700,0.043480,0.399500 -0.702300,0.263000,-0.306800,-0.842400,0.262700,-0.470500 0.580900,-0.336800,-0.310800,0.869400,-0.136300,-0.474900 -0.759700,-0.146700,0.439300,-0.854300,0.097260,0.510600 -0.332300,0.416200,-0.587000,-0.265400,0.146000,-0.953000 -0.402300,-0.056770,0.711600,-0.314300,0.205000,0.926900 0.129400,-0.539900,0.313800,0.085590,-0.991900,0.093990 -0.032730,0.183300,0.679300,0.057530,0.314700,0.947500 -0.082200,-0.366900,0.761900,0.016850,-0.150600,0.988500 -0.700400,-0.505700,-0.445600,-0.672700,-0.347100,-0.653400 -0.023370,-0.146900,-0.767000,0.209900,0.097530,-0.972900 0.380100,-0.306800,-0.581000,0.693400,-0.096520,-0.714000 0.334600,-0.357000,-0.615100,0.556300,-0.150500,-0.817200 -0.545900,-0.371400,0.636000,-0.487600,-0.182800,0.853700 0.536400,0.234300,-0.097780,0.944000,0.284800,-0.166800 -0.634100,-0.514700,0.042010,-0.302900,-0.953000,0.003571 0.830600,0.398400,0.064090,-0.591900,-0.241200,0.769100 0.315600,-0.049010,0.618800,0.492600,0.219200,0.842200 0.274800,0.283600,-0.515700,0.678000,0.244900,-0.693000 0.024900,0.313100,0.627100,0.249800,0.207300,0.945900 0.384400,0.151100,0.468500,0.670400,0.324300,0.667400 -0.815400,-0.290000,-0.341200,-0.869100,-0.093000,-0.485800 0.598900,0.033080,-0.136400,0.935500,0.253200,-0.246300 -0.725700,0.449000,-0.142900,-0.961800,0.124300,-0.243900 0.339400,0.238600,0.473800,0.683200,0.304600,0.663700 0.553100,0.122800,-0.178900,0.897500,0.359200,-0.255700 -0.403500,-0.504600,-0.459900,-0.169700,-0.943500,-0.284700 -0.653400,0.314100,-0.368100,-0.850000,0.227800,-0.475000 -0.435900,0.276800,-0.570900,-0.494300,0.247800,-0.833200 -0.625900,0.716300,0.193100,0.127700,0.991200,-0.035080 0.888200,0.077990,0.020740,0.882400,-0.425000,0.201900 0.185700,-0.466700,-0.670100,0.466800,-0.287700,-0.836300 0.206400,0.684000,0.360700,-0.607100,0.531800,-0.590400 -0.002202,-0.531200,0.432400,0.052380,-0.980600,0.188800 0.430000,0.056730,0.473800,0.664700,0.345700,0.662300 -0.321900,0.223700,0.639200,-0.245800,0.306200,0.919700 -0.505600,0.094590,-0.600000,-0.480400,0.354500,-0.802200 -0.731700,0.071380,0.389300,-0.808600,0.325100,0.490400 0.580000,-0.539900,0.121800,0.839400,-0.497500,0.219000 0.259100,-0.541800,0.041960,0.111500,-0.993700,0.008084 0.144300,-0.521400,-0.671700,0.331300,-0.351200,-0.875700 -0.162500,0.294500,-0.644900,-0.013900,0.236700,-0.971500 -0.892700,-0.126700,-0.088190,-0.988100,0.102900,-0.114000 -0.572200,0.694800,0.391200,-0.516700,0.672500,0.529800 -0.182600,-0.057550,-0.754900,-0.014020,0.192800,-0.981100 0.139700,0.349900,0.582700,0.503200,0.213000,0.837500 -0.354600,-0.062670,0.725600,-0.251000,0.221400,0.942300 -0.162700,-0.008706,0.748000,0.031330,0.261000,0.964800 -0.317100,-0.381900,-0.732100,-0.269800,-0.176100,-0.946700 0.289500,-0.401400,-0.631500,0.474800,-0.224300,-0.851000 -0.698200,0.097890,0.426200,-0.791100,0.386700,0.474000 0.629200,-0.046280,-0.078650,0.967200,0.253800,-0.005427 0.518100,0.305600,-0.088380,0.973200,0.210100,-0.093880 -0.212700,-0.526200,-0.460500,-0.071230,-0.966300,-0.247300 0.582800,0.595600,-0.007739,-0.284800,0.953200,-0.101100 0.223000,0.456200,-0.512100,0.482100,0.124300,-0.867300 -0.554200,-0.534500,-0.048410,-0.183700,-0.982800,-0.021220 0.507800,0.366000,0.052130,0.986300,0.164400,-0.016840 0.190900,0.680800,-0.369400,-0.590400,0.498600,0.634700 -0.891400,-0.316800,0.072120,-0.994800,-0.100600,0.014200 0.250600,-0.366900,-0.660700,0.480400,-0.160500,-0.862200 0.693500,-0.410100,-0.016730,-0.121100,-0.979700,-0.159800 -0.390800,0.103300,0.663800,-0.389600,0.392000,0.833400 -0.013900,0.415800,0.618000,0.282100,0.123100,0.951500 -0.362500,-0.466800,-0.697400,-0.260600,-0.288700,-0.921300 0.371000,0.229000,0.445000,0.690100,0.291800,0.662200 0.610300,-0.305900,0.232700,0.965100,-0.071550,0.251900 0.490100,0.467400,-0.088660,0.938400,0.091640,-0.333100 -0.859100,-0.474200,0.034900,-0.956900,-0.290000,0.015000 -0.443800,-0.459300,-0.669100,-0.490800,-0.288300,-0.822200 -0.676600,-0.495800,-0.111600,-0.371000,-0.923600,-0.096530 0.089220,0.004727,0.712600,0.270000,0.273400,0.923200 0.147300,-0.007422,0.699500,0.266200,0.209400,0.940900 0.530000,-0.443800,0.355300,0.848000,-0.265500,0.458700 0.543200,-0.541300,-0.253100,0.861900,-0.409500,-0.299000 0.119100,0.710200,-0.453400,-0.204900,0.913500,0.351400 0.059200,0.448300,0.592500,0.272800,0.130600,0.953200 0.471800,0.199300,0.316200,0.829300,0.289800,0.477800 0.449700,-0.466300,-0.469500,0.669900,-0.285000,-0.685600 0.496600,0.365900,0.121300,0.958700,0.162900,0.233300 -0.703700,0.057840,0.446700,-0.788500,0.361200,0.497900 -0.300100,-0.524600,-0.694700,-0.255000,-0.348500,-0.901900 0.057020,0.273700,-0.625300,0.238100,0.256200,-0.936800 0.160100,0.688700,-0.401500,-0.439200,0.593800,0.674200 0.193100,-0.037130,-0.683500,0.475000,0.225000,-0.850700 0.640700,-0.123300,0.104600,0.960500,0.080130,0.266500 0.168400,-0.216800,0.722400,0.278000,-0.001610,0.960600 0.252100,0.669000,0.295700,-0.352100,0.871800,-0.340500 0.627400,-0.416800,0.072250,0.974700,-0.222300,-0.024810 -0.617600,-0.486500,-0.313600,-0.031170,-0.999400,0.011930 0.517200,-0.166800,-0.428300,0.853800,0.098800,-0.511100 -0.862500,-0.176800,-0.228500,-0.969200,0.044600,-0.242200 0.213200,0.251100,0.566600,0.488600,0.246000,0.837100 -0.219500,0.688900,0.483500,0.222900,0.578200,-0.784900 -0.263200,0.716700,0.524900,0.008161,0.999600,-0.026510 0.483000,-0.301600,-0.481300,0.753100,-0.117500,-0.647300 -0.122300,0.708400,-0.573500,-0.021030,0.869600,-0.493400 0.217900,0.658600,-0.503400,0.469200,0.125700,-0.874100 -0.869800,-0.376500,-0.147300,-0.956100,-0.165700,-0.241600 0.641200,0.505200,0.020300,0.131400,-0.978600,0.158100 -0.182800,0.547600,0.612500,-0.002307,0.041030,0.999200 -0.674400,0.453200,-0.280700,-0.866700,0.124000,-0.483100 0.249800,0.106400,0.602100,0.480100,0.354200,0.802600 0.288600,-0.015950,-0.624600,0.472700,0.231900,-0.850100 0.421700,0.547400,-0.273100,0.860500,0.032630,-0.508500 0.473000,0.656900,0.119700,0.968400,0.079970,0.236300 -0.600300,0.693900,-0.130800,0.745800,0.642900,0.174700 -0.249100,0.707100,0.565800,-0.126000,0.845000,0.519700 -0.703000,0.394700,-0.246800,-0.861700,0.164300,-0.480000 -0.261800,0.315100,-0.626800,-0.263400,0.223900,-0.938300 0.038620,0.716000,-0.511500,-0.019500,0.996900,0.076190 0.896800,-0.246600,0.001730,0.999700,-0.023950,0.001621 -0.251300,-0.107200,0.759100,-0.246000,0.160200,0.955900 -0.472000,-0.511100,-0.388100,-0.230700,-0.946900,-0.224100 -0.464900,0.493600,-0.509800,-0.509700,0.093640,-0.855200 -0.709300,-0.413600,-0.474600,-0.698600,-0.225100,-0.679200 -0.444100,0.534000,-0.518700,-0.512200,0.060180,-0.856700 -0.341900,-0.520700,-0.438400,-0.134300,-0.964800,-0.225900 -0.729700,-0.213500,-0.484900,-0.717000,0.020420,-0.696800 -0.146000,0.169700,0.685300,0.024040,0.299700,0.953700 0.418100,-0.233300,0.552500,0.717000,-0.018520,0.696800 0.495000,0.304700,-0.177400,0.935300,0.227900,-0.270800 0.473900,-0.130100,0.487600,0.717900,0.101700,0.688700 0.161000,0.259300,0.594700,0.489500,0.245800,0.836600 -0.526300,0.385600,0.485900,-0.685300,0.205800,0.698600 -0.172700,0.043770,0.733000,0.013560,0.326200,0.945200 0.322100,0.574500,0.416200,0.711300,0.028980,0.702300 0.028540,-0.547400,0.605400,-0.002426,-1.000000,-0.008021 -0.122300,-0.547300,0.616500,-0.001189,-0.981200,-0.193000 0.894700,-0.211500,0.007129,0.977000,0.204100,0.061560 -0.716400,-0.311800,-0.491800,-0.714900,-0.096900,-0.692500 -0.604000,-0.011790,0.576400,-0.683100,0.194600,0.704000 0.793400,-0.035680,-0.070930,-0.011060,-0.000702,-0.999900 -0.810600,0.072750,0.221500,-0.901400,0.349600,0.255400 0.428300,0.193600,-0.390400,0.812900,0.330200,-0.479800 -0.152700,-0.525900,0.719200,0.013440,-0.349300,0.936900 0.758700,-0.065740,0.056850,-0.780700,-0.041370,0.623600 -0.772700,0.117700,0.285600,-0.820400,0.369100,0.436700 -0.630300,-0.203400,-0.586700,-0.716800,0.031110,-0.696600 0.610500,-0.193500,0.245500,0.968400,0.015840,0.248900 -0.342800,-0.176700,-0.739000,-0.268600,0.042930,-0.962300 -0.263400,-0.519900,0.474400,-0.065310,-0.964500,0.255700 -0.810400,0.163200,0.011760,-0.943500,0.331000,0.013520 0.472100,0.558100,-0.128600,0.964800,0.021270,-0.262200 0.244400,-0.544400,0.490200,-0.321000,-0.744200,-0.585800 0.923900,0.203300,0.036270,0.921900,-0.144300,0.359600 -0.513900,-0.524900,0.272900,-0.219700,-0.966800,0.130600 0.412700,0.507100,-0.293900,0.859400,0.058570,-0.508000 -0.713700,0.375300,0.231500,-0.947700,0.175300,0.266600 -0.767400,0.311900,-0.018420,-0.972200,0.233800,0.013880 0.440000,-0.428600,0.493900,0.705700,-0.176800,0.686100 -0.102200,0.316200,-0.640600,-0.014020,0.221700,-0.975000 -0.628900,0.527500,0.348800,-0.856300,0.062040,0.512800 -0.172800,-0.496400,0.730700,0.021530,-0.292200,0.956100 0.394100,0.711800,0.072960,-0.331600,0.940000,-0.080640 0.404000,-0.508600,-0.027520,0.332200,-0.943200,-0.004914 -0.221600,0.042910,0.730800,-0.220700,0.301600,0.927500 0.203100,-0.426500,-0.673100,0.474100,-0.227400,-0.850600 -0.763900,0.203800,0.211300,-0.918000,0.299200,0.260200 -0.535200,0.220900,-0.530000,-0.528700,0.301400,-0.793500 0.604500,-0.495600,0.091030,0.930600,-0.322200,0.173400 -0.464300,-0.446200,0.662900,-0.463000,-0.289000,0.837900 -0.761200,0.335500,0.052020,-0.979500,0.200800,0.013780 -0.628100,0.002912,0.547500,-0.662200,0.278100,0.695800 -0.653700,0.557600,0.303800,-0.857800,0.043850,0.512100 0.651800,-0.347600,0.077290,0.471300,-0.199100,0.859200 -0.863600,0.013730,0.031920,-0.958100,0.286100,0.013740 0.297700,0.365100,-0.468500,0.685700,0.178800,-0.705600 -0.541200,0.686100,-0.427200,-0.610900,0.522900,-0.594400 -0.454800,-0.336600,0.694000,-0.483000,-0.156600,0.861500 0.424500,-0.326800,-0.535000,0.692500,-0.115400,-0.712100 0.291300,0.476600,-0.452100,0.688300,0.115800,-0.716100 0.782900,-0.179000,-0.040710,-0.785700,-0.422900,-0.451400 0.818600,0.174000,0.011160,-0.953000,0.291600,0.081970 0.813200,-0.146400,-0.070590,0.013600,0.014130,-0.999800 0.297500,0.711800,0.381500,0.241700,0.941500,0.234800 -0.790000,0.082410,0.280500,-0.889700,0.341600,0.302900 0.505100,0.387200,-0.018030,0.995000,-0.081260,-0.057840 -0.241700,0.082930,0.710300,-0.235700,0.328200,0.914800 0.307400,0.103400,0.569300,0.495200,0.340600,0.799200 0.321500,0.310200,0.465800,0.713000,0.210500,0.668800 -0.824500,0.066210,0.181400,-0.901500,0.349700,0.255000 -0.430800,-0.416400,0.689600,-0.479000,-0.215900,0.850900 0.339600,0.669100,0.113000,-0.593000,0.795900,-0.121600 0.419000,-0.493700,0.172300,0.383600,-0.918600,0.094710 -0.523700,0.625000,-0.460000,-0.717100,-0.008845,-0.696900 -0.307800,-0.332100,0.745500,-0.243000,-0.145400,0.959100 -0.019030,-0.520500,0.023070,-0.257300,-0.964700,-0.056230 -0.453100,0.188200,0.593600,-0.465400,0.308000,0.829800 -0.820800,-0.276800,0.340400,-0.857000,-0.062880,0.511400 -0.850800,-0.076990,-0.228100,-0.956200,0.162600,-0.243200 0.097490,-0.356700,0.731100,0.260900,-0.137000,0.955600 -0.352600,0.083480,-0.678100,-0.254700,0.349100,-0.901800 0.208100,0.712200,0.462000,0.163100,0.949500,0.268200 -0.603300,0.696400,0.350800,-0.633500,0.667500,0.391400 -0.657700,-0.356500,0.546900,-0.687700,-0.162200,0.707600 -0.727700,-0.137000,0.486600,-0.700100,0.095670,0.707600 -0.281800,0.335300,-0.616500,-0.265900,0.202200,-0.942600 -0.556600,0.314600,0.476000,-0.677700,0.219000,0.702000 -0.584000,0.274500,0.463200,-0.676900,0.250500,0.692200 -0.095530,-0.490300,0.602400,-0.006422,-0.707900,-0.706300 0.692800,0.542400,0.073230,-0.041010,-0.241700,0.969500 0.369500,0.547500,-0.361100,0.862500,0.034530,-0.504900 0.615700,-0.306600,0.211400,0.964000,-0.088260,0.250900 0.372600,-0.246700,-0.593600,0.696600,-0.032460,-0.716800 0.656700,-0.293600,0.047020,0.742200,0.554500,0.376400 -0.679700,-0.266900,0.538900,-0.696400,-0.041690,0.716500 -0.619200,-0.087110,0.582600,-0.674200,0.163600,0.720200 0.617500,-0.336800,-0.188200,0.951000,-0.131100,-0.280200 -0.484000,-0.147100,0.682200,-0.493300,0.111000,0.862700 -0.854200,-0.007149,0.161000,-0.930800,0.250300,0.266400 0.360500,0.680200,-0.048570,-0.894600,0.446400,0.019290 0.581500,0.032290,-0.198500,0.920000,0.296700,-0.256000 0.903100,0.428700,-0.004637,0.915900,0.398400,-0.048260 0.066950,-0.542600,0.686300,0.195500,-0.587700,0.785100 0.539700,-0.167000,-0.390800,0.851000,0.066320,-0.521000 0.413300,0.588000,-0.284300,0.861700,0.019890,-0.507100 0.580100,-0.451900,-0.233500,0.918800,-0.300700,-0.255800 0.507100,0.548600,0.034650,-0.305000,0.933200,0.189900 0.784600,0.069120,-0.048170,-0.730500,0.390300,-0.560400 0.010830,-0.216800,-0.762000,0.245300,0.013090,-0.969400 0.259300,0.715500,-0.400000,0.108800,0.987700,-0.112700 -0.649100,-0.446900,0.528400,-0.672100,-0.271400,0.689000 0.362800,0.042630,-0.543700,0.687800,0.274000,-0.672200 0.364100,-0.366900,-0.585200,0.687900,-0.161600,-0.707600 0.142900,0.143100,-0.643500,0.438500,0.338200,-0.832700 -0.559600,0.273600,-0.486100,-0.693400,0.255000,-0.674000 -0.496700,0.418600,-0.501100,-0.505300,0.141300,-0.851300 0.286600,-0.537500,0.586900,0.478300,-0.377200,0.793100 0.503000,-0.186800,-0.454600,0.855100,0.018900,-0.518100 0.626500,-0.406500,-0.107700,0.958800,-0.244700,-0.144500 0.601800,-0.311700,-0.252600,0.959100,-0.073820,-0.273300 0.506300,-0.116900,-0.437900,0.859800,0.122900,-0.495600 -0.502700,-0.531200,-0.238600,-0.170500,-0.980700,-0.095320 0.177900,-0.347200,-0.705100,0.478200,-0.158500,-0.863800 -0.828300,0.003256,0.242000,-0.926200,0.271900,0.261000 0.003558,-0.539200,0.147800,-0.104900,-0.988900,-0.105000 -0.007544,-0.121700,0.765600,0.201600,0.069380,0.977000 0.742300,-0.040690,0.016860,-0.987400,0.034430,0.154100 -0.041700,0.714200,0.526500,-0.057930,0.966100,-0.251600 0.298000,-0.236700,-0.648300,0.487400,-0.026270,-0.872800 -0.499300,-0.223400,-0.675200,-0.511600,-0.001545,-0.859200 0.363400,-0.487400,0.333500,-0.003540,-0.998800,-0.047870 0.831900,0.065710,0.074220,0.164800,-0.091020,0.982100 0.311500,0.127900,0.555000,0.537000,0.361000,0.762500 0.143000,0.486900,-0.553100,0.485100,0.094950,-0.869300 0.312200,0.274400,-0.483000,0.686700,0.224800,-0.691300 0.271800,-0.394300,0.645200,0.500700,-0.237100,0.832500 0.569900,-0.383400,0.314100,0.858700,-0.180000,0.479900 -0.241300,-0.226700,0.769500,-0.247500,-0.025110,0.968600 0.613600,-0.176800,-0.225400,0.963500,0.054330,-0.262200 -0.291700,0.284500,0.628900,-0.248500,0.251000,0.935500 -0.750500,-0.236600,0.461200,-0.858500,-0.026180,0.512200 0.834300,0.045390,-0.067270,0.406100,-0.207700,-0.889900 -0.082170,-0.544400,-0.607300,-0.004319,-0.643300,0.765600 0.372700,0.667500,-0.348300,0.840800,0.242100,-0.484200 -0.649400,0.638400,0.309000,-0.858300,0.004777,0.513100 -0.350800,0.476600,0.577900,-0.324300,0.103100,0.940300 -0.322700,0.694200,-0.557300,-0.186500,0.686800,-0.702600 -0.011150,-0.516300,0.494800,0.079350,-0.956800,0.279600 0.584400,-0.396200,-0.267700,0.933900,-0.236500,-0.268100 0.459100,0.651400,0.174900,0.968800,0.018690,0.247300 0.371400,0.715600,-0.199800,-0.169000,0.983400,0.066270 0.895400,0.336300,-0.067180,0.429000,0.078930,-0.899900 0.047370,0.254600,-0.633200,0.236400,0.265100,-0.934800 -0.700300,0.676300,0.181400,-0.906400,0.335500,0.256600 -0.815000,-0.507400,0.220900,-0.901600,-0.349700,0.254600 0.341200,0.664000,-0.038460,-0.267800,0.962600,0.040480 -0.695800,0.608200,0.215600,-0.962100,0.005382,0.272600 -0.886200,-0.084750,0.002490,-0.987100,0.159700,0.014680 -0.749100,-0.337700,0.448900,-0.851400,-0.142200,0.504800 0.331500,-0.121800,-0.623000,0.512100,0.123500,-0.850000 0.429900,0.715800,0.052090,0.165200,0.986200,0.007777 -0.736100,0.120600,-0.342600,-0.812800,0.362500,-0.455900 0.653800,-0.285600,-0.034380,0.768300,0.557200,-0.315000 -0.849400,-0.306600,-0.267900,-0.964500,-0.097150,-0.245700 -0.608600,-0.093530,-0.595200,-0.700400,0.159900,-0.695600 -0.881700,-0.286700,-0.147700,-0.966500,-0.084300,-0.242500 0.584400,-0.416100,0.261400,0.947300,-0.219600,0.233100 -0.844000,-0.506500,0.119800,-0.907500,-0.349300,0.233500 -0.123400,-0.008970,0.747200,0.016720,0.254200,0.967000 0.200900,-0.196800,-0.702100,0.487300,0.032490,-0.872700 0.344400,-0.146800,-0.615700,0.702900,0.102300,-0.703900 0.581800,-0.500600,-0.172200,0.907300,-0.335000,-0.254200 0.447900,-0.528600,-0.201500,-0.961600,-0.004054,0.274300 0.166300,0.684700,-0.522200,0.409600,0.512600,-0.754600 0.828200,0.327500,0.020800,-0.968100,-0.180600,0.173600 -0.634400,0.715500,0.232600,-0.193000,0.976200,0.098610 0.678800,0.509200,-0.030480,-0.125400,-0.931500,-0.341300 -0.788800,-0.075550,-0.367700,-0.861000,0.163900,-0.481400 0.307900,-0.106800,-0.634000,0.479700,0.143600,-0.865600 -0.818500,0.054150,-0.218600,-0.916200,0.328600,-0.229200 -0.801400,0.072920,-0.258200,-0.899400,0.347100,-0.265600 -0.634300,0.638400,0.334400,-0.859000,0.003881,0.512000 0.695400,-0.308300,-0.019900,0.350600,0.900900,-0.255800 -0.640400,0.711300,-0.070970,0.363900,0.926500,0.095400 0.192600,0.699500,0.496500,0.342500,0.748500,0.567800 -0.636100,0.319600,0.395000,-0.820500,0.236300,0.520500 -0.722300,0.426600,-0.168400,-0.962100,0.133900,-0.237600 -0.524800,-0.547400,-0.551500,-0.000017,-1.000000,-0.000017 -0.430900,-0.518600,0.524200,0.487000,0.000094,-0.873400 0.757600,-0.144800,-0.007856,-0.939000,-0.329800,-0.097480 -0.870500,-0.117100,0.181000,-0.955200,0.118300,0.271100 -0.221400,0.416000,0.619300,-0.245400,0.137700,0.959600 -0.390600,0.274300,0.599200,-0.475800,0.238200,0.846700 -0.555000,0.716300,-0.330300,0.029100,0.999100,0.030770 -0.443200,-0.523100,-0.359300,-0.186000,-0.965800,-0.180700 -0.816300,0.148000,-0.077960,-0.933500,0.345400,-0.096460 -0.263200,-0.485900,0.575100,-0.010670,-0.991400,-0.130100 -0.565900,0.515400,-0.421800,-0.715300,0.074730,-0.694800 0.761500,0.535100,0.073720,0.065750,0.103300,0.992500 -0.599900,0.022480,-0.566500,-0.686700,0.288700,-0.667200 0.308900,0.325000,-0.469700,0.683500,0.221700,-0.695400 0.112300,0.400900,0.584000,0.259400,0.173900,0.950000 -0.373100,0.385500,0.581200,-0.480800,0.178000,0.858600 0.864500,0.500000,0.008542,0.798200,0.600500,0.047140 -0.697600,0.699600,0.131100,-0.664500,0.723700,0.186300 0.603700,-0.493500,-0.078600,0.933700,-0.358100,0.002902 0.455600,0.693500,0.129400,0.743700,0.646500,0.170200 0.488800,0.112900,-0.346200,0.802700,0.359000,-0.476300 0.566100,-0.266800,-0.347000,0.860300,-0.030270,-0.508900 0.310900,-0.488300,0.593100,0.502000,-0.343800,0.793600 -0.543600,-0.503100,0.352500,-0.237500,-0.943700,0.230300 -0.524000,0.342100,-0.499500,-0.638000,0.203700,-0.742600 -0.834600,0.096470,0.082180,-0.935000,0.354300,0.013370 0.870300,-0.165600,0.042530,0.814400,0.386700,0.432700 -0.635100,0.383500,-0.372100,-0.834100,0.168500,-0.525300 0.845200,0.245600,0.052090,-0.831800,0.054570,0.552400 -0.647700,0.713200,0.001819,0.301200,0.953600,-0.004215 -0.122500,-0.503000,0.054050,-0.006795,-0.945500,-0.325600 0.398300,-0.501300,-0.168600,0.322500,-0.942000,-0.092880 0.483100,0.244300,-0.268100,0.851200,0.283300,-0.441800 -0.733500,0.203600,0.293300,-0.819200,0.299100,0.489300 0.405600,0.710600,-0.222000,0.388100,0.910200,-0.144700 -0.737400,0.505200,-0.027760,-0.995800,0.090000,0.016060 -0.814000,0.008082,0.287100,-0.919200,0.283400,0.273500 0.387200,0.385700,-0.365700,0.853200,0.152400,-0.498800 -0.615400,0.716300,-0.229600,0.019840,0.999800,0.007113 0.402700,0.406100,-0.334100,0.851400,0.160200,-0.499500 -0.455300,0.567800,0.513800,-0.492600,0.041730,0.869200 -0.272600,-0.546900,0.692900,-0.131900,-0.914900,0.381500 -0.352100,-0.276700,0.739700,-0.249300,-0.030600,0.968000 0.693300,0.502900,-0.017050,-0.221700,-0.955600,-0.193900 -0.051940,0.716500,-0.541500,0.006898,0.999800,-0.018200 -0.444700,0.294900,0.563000,-0.476800,0.229600,0.848500 0.300500,0.716100,-0.330500,-0.099710,0.991500,0.083520 -0.716400,-0.486500,0.082110,0.213500,-0.976600,0.024370 0.285100,0.701800,0.419500,0.447400,0.777100,0.442700 -0.845600,-0.451300,-0.172700,-0.930500,-0.282400,-0.233200 0.469300,-0.486400,-0.431000,0.817700,-0.261600,-0.512700 -0.839200,-0.097380,0.281300,-0.950600,0.156900,0.268000 0.491000,0.560100,-0.004825,0.563800,0.825700,0.018290 0.319500,0.491700,-0.422300,0.692100,0.073830,-0.718000 0.321800,-0.463900,0.594500,0.500300,-0.289100,0.816200 0.181500,-0.444200,0.685900,0.457700,-0.248600,0.853600 -0.490600,0.163400,0.582500,-0.478500,0.313200,0.820300 -0.033180,0.365800,-0.626900,0.232700,0.187600,-0.954300 0.035900,0.001823,0.728800,0.269500,0.288100,0.918900 -0.544900,0.038180,0.605800,-0.475100,0.286100,0.832100 0.886100,-0.189000,-0.025900,0.928300,0.262200,-0.263700 -0.233300,-0.538900,0.393300,-0.042140,-0.986400,0.158900 -0.595000,-0.317000,0.615300,-0.667000,-0.096750,0.738700 -0.374400,0.507100,0.563300,-0.472900,0.067320,0.878600 0.927000,0.246300,0.038400,0.918700,-0.041170,0.392700 -0.403900,0.716300,-0.470700,-0.043780,0.995300,-0.086540 -0.880900,-0.386600,0.072120,-0.981800,-0.189600,0.014130 0.362100,0.426100,-0.391900,0.711300,0.171700,-0.681600 -0.685800,0.287700,-0.323100,-0.845500,0.242400,-0.475700 -0.649700,-0.518600,0.304600,0.852400,0.008305,-0.522800 -0.644100,-0.490300,0.299100,0.673600,-0.525900,-0.519300 0.327500,-0.026660,-0.604500,0.618700,0.208800,-0.757400 -0.709300,-0.063490,-0.484600,-0.705000,0.174800,-0.687400 -0.724300,0.245100,0.284300,-0.827200,0.267000,0.494500 0.384100,0.352600,0.388000,0.718000,0.187600,0.670300 0.088860,-0.437000,-0.714100,0.235800,-0.241000,-0.941400 0.634300,-0.057560,0.081680,0.982600,0.184000,0.023760 0.766400,0.063780,0.011220,-0.905700,0.416500,0.079420 0.531800,-0.366500,-0.383400,0.839800,-0.158700,-0.519200 -0.003401,0.102500,-0.699400,0.229100,0.358700,-0.904900 0.157300,-0.086910,-0.713200,0.318200,0.157700,-0.934800 -0.031630,-0.536500,-0.149500,-0.093580,-0.983100,0.157300 0.859100,0.357200,0.072510,-0.304200,-0.070330,0.950000 -0.264000,-0.529800,0.031910,0.204200,-0.977700,-0.049610 -0.666200,-0.541500,0.467400,-0.646600,-0.371700,0.666200 0.549100,-0.405400,0.341000,0.850400,-0.249200,0.463400 -0.869100,-0.237200,0.209100,-0.961300,-0.030980,0.273600 0.209600,0.042530,-0.649400,0.464700,0.307700,-0.830300 0.028070,-0.499900,0.533200,0.094470,-0.938600,0.331800 -0.082090,0.666300,0.474200,-0.003848,0.866200,-0.499700 -0.737400,0.141400,-0.323700,-0.814200,0.356500,-0.458300 0.411900,0.698800,0.246100,0.601500,0.727800,0.329400 -0.478500,-0.517700,0.355300,-0.188400,-0.963300,0.191400 0.632200,-0.121100,0.137700,0.965400,0.079470,0.248300 0.128200,-0.146700,-0.728700,0.242900,0.096160,-0.965300 -0.462100,0.061870,-0.640200,-0.482600,0.346400,-0.804400 -0.005692,-0.485800,-0.572500,0.004793,-0.998000,-0.062770 -0.475000,-0.326700,0.684100,-0.490200,-0.112700,0.864300 0.442600,0.618400,-0.227100,0.961900,0.022720,-0.272300 -0.111500,-0.520600,0.491400,0.003696,-0.965400,0.260600 0.592300,-0.306800,-0.288400,0.960100,-0.107600,-0.258000 -0.566800,0.522200,0.423400,-0.700900,0.071550,0.709700 -0.283300,-0.547400,0.605400,0.000252,-1.000000,-0.000554 -0.112400,0.684900,0.600400,0.014960,0.508400,0.861000 0.602300,-0.416600,-0.187700,0.938400,-0.227800,-0.259700 -0.381500,0.033160,0.693100,-0.227400,0.270800,0.935400 0.179700,-0.526800,-0.650200,0.457400,-0.352500,-0.816400 -0.450900,0.527300,0.518700,-0.496000,0.071070,0.865400 -0.866300,-0.014350,-0.112600,-0.940100,0.238100,-0.243900 -0.648400,-0.487600,-0.253500,-0.208100,-0.965800,-0.154800 -0.292300,0.042220,-0.710600,-0.261100,0.305600,-0.915700 -0.218000,0.060410,-0.722000,-0.028670,0.351500,-0.935700 0.306600,0.709500,0.285200,-0.388500,0.899100,-0.201700 -0.597600,0.289600,0.444200,-0.682900,0.242400,0.689100 0.397400,0.246900,0.411100,0.687400,0.285200,0.667900 0.521800,0.032210,-0.347300,0.821500,0.281700,-0.495700 0.455600,-0.126600,-0.505700,0.705600,0.088130,-0.703200 -0.615000,0.690000,0.006382,0.803900,0.594600,-0.011120 0.915500,0.187000,-0.045230,0.854300,-0.175600,-0.489200 -0.275600,-0.439900,-0.730200,-0.265500,-0.252900,-0.930300 -0.533900,0.547400,0.453400,-0.696400,0.038300,0.716700 -0.757600,-0.516300,0.347500,-0.805000,-0.349000,0.479800 0.470800,-0.126700,-0.490700,0.693500,0.087290,-0.715100 0.318100,0.243900,-0.488900,0.659700,0.294200,-0.691600 0.693900,0.531600,-0.064040,-0.118200,-0.564500,-0.816900 0.838300,0.390000,-0.062890,-0.561800,-0.203400,-0.801900 -0.754500,-0.457200,0.390400,-0.822400,-0.286100,0.491700 0.450700,-0.547300,0.404000,0.098750,-0.992900,0.066580 -0.872600,-0.086730,-0.148000,-0.958100,0.159100,-0.238100 0.419900,-0.486400,-0.490000,0.663700,-0.301200,-0.684700 0.484500,0.517100,0.090520,0.968200,0.059930,0.242800 -0.102200,-0.541600,-0.210300,-0.010470,-0.993700,0.111500 0.386000,0.072420,-0.506500,0.648800,0.336700,-0.682400 -0.528700,-0.498400,0.385400,-0.247700,-0.934200,0.256700 0.354400,-0.016500,-0.575600,0.678700,0.206000,-0.704900 -0.630800,0.456600,-0.357900,-0.867600,0.120100,-0.482500 0.196700,0.547500,0.520100,0.503800,0.063100,0.861500 -0.769100,-0.256900,0.428700,-0.858300,-0.032500,0.512200 0.278900,0.449800,0.473600,0.721700,0.095790,0.685500 0.351200,0.360400,-0.418800,0.682100,0.183200,-0.707900 0.008458,-0.546200,0.233200,-0.020520,-0.999200,-0.034050 -0.504600,0.662100,-0.028390,0.013790,0.999900,-0.002752 -0.333700,0.662800,-0.330200,-0.016500,0.999900,-0.000023 0.219700,0.662500,0.243200,0.013750,0.999900,0.005528 -0.166100,0.673600,0.606500,0.013350,0.336500,0.941600 0.484000,0.628400,0.022030,0.999700,-0.022650,-0.003266 -0.524800,0.662500,-0.139100,0.016500,0.999900,0.000000 0.531600,-0.547400,0.203000,0.000946,-1.000000,0.000895 -0.504600,0.662100,-0.169200,0.016500,0.999900,0.000007 0.229800,0.662100,-0.249700,0.000000,1.000000,0.000000 0.219700,0.662100,-0.118900,0.000050,1.000000,0.000000 0.410800,-0.547400,0.414300,0.000000,-1.000000,0.000000 -0.313500,0.662500,-0.269800,0.016520,0.999900,0.000000 -0.373900,0.662100,0.263400,-0.000050,1.000000,0.000000 -0.202900,0.662100,0.243200,-0.016540,0.999900,0.000000 0.048670,-0.547400,0.625500,0.000000,-1.000000,0.000000 -0.212900,-0.547400,0.645700,0.000000,-1.000000,0.000000 0.079420,-0.542700,-0.089030,-0.101600,-0.993700,0.046490 -0.132600,0.476500,0.616600,0.014670,0.111700,0.993600 0.378800,-0.541500,-0.501900,0.647900,-0.437800,-0.623400 -0.243400,-0.526500,0.052300,0.231000,-0.968000,-0.097790 -0.132400,-0.530300,-0.143200,0.008097,-0.978600,0.205400 0.642000,0.537100,0.069880,0.059780,-0.464100,0.883800 -0.610200,-0.486100,0.549800,-0.665100,-0.297800,0.684800 -0.777000,0.073340,-0.306300,-0.818400,0.349900,-0.455900 -0.062050,0.662500,0.223100,-0.016510,0.999900,0.000000 0.350800,0.666400,-0.381700,0.716600,0.221200,-0.661500 -0.092140,-0.306800,-0.768000,-0.014270,-0.097220,-0.995200 0.447900,-0.491700,-0.068610,0.396900,-0.917700,-0.018420 -0.648000,0.006205,-0.524000,-0.689900,0.274100,-0.670000 -0.062040,0.662500,-0.108900,0.000000,1.000000,0.000000 -0.051870,0.059890,-0.724600,0.012200,0.345000,-0.938500 0.829200,-0.160400,0.073600,0.166800,0.101900,0.980700 -0.481800,0.081830,-0.619800,-0.480000,0.350500,-0.804200 0.377200,0.162100,-0.467500,0.666300,0.315300,-0.675800 0.485300,0.405900,-0.137300,0.953500,0.140700,-0.266500 0.008424,-0.547400,-0.611900,-0.000000,-1.000000,0.000050 0.209100,-0.543900,0.152400,0.087250,-0.995000,0.048860 0.616200,0.012750,0.032050,0.955000,0.296100,-0.014200 0.209500,-0.546000,0.001796,0.039220,-0.999200,-0.000580 -0.112300,0.497600,0.614700,0.013710,0.067010,0.997700 0.078840,0.662500,0.001793,0.016450,0.999900,0.000000 -0.855300,-0.220100,-0.262100,-0.969200,0.008548,-0.246200 0.320200,0.662500,0.021910,-0.016560,0.999900,0.000000 -0.534900,0.662600,-0.088750,-0.000018,1.000000,0.008335 -0.051990,-0.236800,0.773600,0.017030,-0.056540,0.998300 -0.092180,0.662100,0.092340,-0.000017,1.000000,-0.000017 0.068750,0.662500,-0.239700,-0.000050,1.000000,-0.000000 -0.806500,-0.547400,0.062160,0.000000,-1.000000,0.000000 -0.786300,-0.547400,-0.028390,0.000000,-1.000000,0.000000 -0.041880,-0.547400,0.655700,0.000000,-1.000000,0.000000 -0.062000,-0.547400,-0.622000,0.000582,-0.999900,0.010970 -0.062040,0.662500,-0.018330,0.000017,1.000000,0.000017 -0.282600,0.172700,0.665300,-0.231700,0.341600,0.910800 -0.795400,0.207900,0.011780,-0.954300,0.298500,0.013730 0.482000,-0.508500,0.021890,-0.999900,0.003917,0.014260 -0.092180,0.662100,0.011850,0.000000,1.000000,-0.000050 0.068750,0.662500,0.031970,0.000000,1.000000,0.000000 -0.871900,-0.016810,0.031890,-0.973300,0.229200,0.013940 -0.031840,-0.546700,-0.300000,0.008618,-0.999300,-0.035040 -0.843200,0.073700,0.072160,-0.937300,0.348200,0.013440 -0.441900,-0.186700,-0.708300,-0.508200,0.033130,-0.860600 0.411400,0.716100,0.062130,-0.137300,0.990500,0.000809 0.290500,-0.343400,0.644000,0.509900,-0.158100,0.845600 -0.844300,-0.267000,0.292900,-0.961800,-0.041680,0.270700 -0.384000,-0.546400,-0.078720,0.036460,-0.999300,0.009213 -0.448500,-0.243400,-0.704900,-0.512300,-0.032640,-0.858200 -0.555900,-0.230000,-0.641300,-0.513000,-0.017190,-0.858200 -0.172700,-0.508500,-0.603800,0.011560,-0.007915,0.999900 0.390600,0.716500,-0.189300,0.044980,0.998900,-0.015070 -0.142600,-0.067010,0.760800,0.022340,0.189900,0.981500 -0.474500,0.662500,-0.048510,0.000000,1.000000,0.000000 0.280000,0.662500,0.072220,0.000050,1.000000,0.000000 -0.142500,-0.186700,0.774600,0.017060,0.027720,0.999500 0.048620,-0.546500,-0.269800,0.018450,-0.999300,-0.032710 -0.231700,-0.466600,0.734400,-0.239600,-0.291700,0.926000 -0.112200,-0.117100,-0.765500,-0.012780,0.118500,-0.992900 -0.142400,0.547600,-0.608200,-0.014270,0.054850,-0.998400 0.139200,-0.547100,-0.149100,0.013590,-0.999900,-0.008254 -0.715300,-0.511900,-0.133700,0.960700,-0.081020,0.265700 -0.172800,0.344800,0.637400,0.014060,0.182200,0.983200 -0.594600,-0.525600,0.042020,-0.257400,-0.966300,0.003686 0.642700,-0.270200,0.117700,0.967700,-0.031810,0.249900 0.209500,-0.546000,0.042020,0.040230,-0.999200,0.005704 0.400800,-0.547400,0.353900,-0.001648,-1.000000,-0.001597 -0.112300,-0.540900,0.393100,0.001596,-0.993100,0.116900 -0.353800,0.662600,-0.229600,-0.011020,0.999900,-0.002763 -0.102300,0.205100,0.673300,0.007958,0.308000,0.951400 -0.142500,-0.547300,-0.700700,-0.001498,-0.979200,-0.202900 -0.112300,-0.547400,0.655700,0.000000,-1.000000,0.000000 -0.313500,0.662500,-0.350300,0.033040,0.999500,0.000000 0.340400,-0.547400,0.504800,0.001440,-1.000000,0.001439 -0.343800,0.662500,-0.259800,-0.016560,0.999900,0.000000 -0.223000,0.662100,0.303600,0.000000,1.000000,0.000000 0.149300,0.662100,0.283500,0.000000,1.000000,0.000000 0.229800,0.662100,-0.159200,0.000050,1.000000,0.000000 -0.112300,0.662100,-0.430800,0.000000,1.000000,0.000000 -0.313500,0.662500,0.253300,0.000050,1.000000,0.000000 -0.665600,-0.547400,-0.370400,0.000000,-1.000000,0.000000 -0.434200,-0.547400,-0.591800,0.000000,-1.000000,0.000000 -0.162600,0.662100,-0.149100,-0.000050,1.000000,0.000000 -0.152600,0.662500,0.233200,-0.008316,1.000000,0.000033 -0.615300,-0.547400,0.404200,0.000000,-1.000000,0.000000 -0.263200,0.662100,-0.259800,0.000000,1.000000,0.000000 -0.062020,0.662500,-0.279900,0.016500,0.999900,0.000001 -0.665600,-0.547400,0.364000,0.000000,-1.000000,0.000000 0.028550,0.662100,0.263400,0.000000,1.000000,0.000000 -0.162600,0.662100,-0.330200,-0.000050,1.000000,0.000000 0.098970,0.662100,-0.249700,-0.000050,1.000000,0.000000 0.088840,0.662800,0.303600,-0.000001,1.000000,0.000000 -0.655600,-0.547400,0.333800,0.000033,-1.000000,-0.000017 -0.474500,0.662100,-0.239700,-0.016540,0.999900,0.000000 0.410800,-0.547400,0.374000,0.000000,-1.000000,0.000000 0.491300,-0.547400,-0.179300,0.000000,-1.000000,0.000000 -0.444300,-0.547400,0.555100,0.000000,-1.000000,0.000000 -0.192800,0.662500,0.303600,-0.016530,0.999900,-0.000017 -0.041860,0.662100,-0.310100,0.016490,0.999900,0.000000 0.340400,-0.547400,0.454500,0.000000,-1.000000,0.000000 0.531600,-0.547400,0.122500,0.000000,-1.000000,0.000000 -0.544900,0.662500,-0.028390,0.000000,1.000000,0.000000 0.129200,0.662100,0.223100,0.016490,0.999900,0.000000 -0.233000,-0.547400,0.675800,0.000000,-1.000000,0.000000 -0.756200,-0.547400,-0.249700,0.000000,-1.000000,0.000000 -0.062020,0.662500,-0.320100,0.016500,0.999900,0.000000 0.189500,-0.547400,-0.551500,0.000000,-1.000000,0.000000 -0.172700,0.662500,0.273400,0.000000,1.000000,0.000000 -0.575100,0.662500,0.042040,-0.001535,1.000000,0.000264 -0.891100,-0.126800,0.082180,-0.994600,0.102700,0.014220 0.058700,0.662100,0.313700,-0.016540,0.999900,0.000000 -0.776300,-0.547400,-0.118900,0.000000,-1.000000,0.000000 0.008858,-0.542000,0.173400,-0.067020,-0.993700,-0.089490 -0.222700,-0.514800,-0.500100,-0.081700,-0.953200,-0.291200 -0.803400,0.062320,0.261400,-0.902000,0.348000,0.255600 -0.668600,-0.491500,-0.251400,0.468000,-0.816500,0.338200 0.290600,-0.213600,0.654300,0.516400,0.004465,0.856300 0.902400,0.130000,0.043270,0.845800,-0.302000,0.439800 0.048640,0.662100,0.011850,-0.016600,0.999900,0.000000 -0.082120,0.662100,0.353900,0.000050,1.000000,0.000000 0.088920,0.662100,-0.350300,0.016510,0.999900,0.000005 -0.854900,0.046170,-0.048660,-0.950000,0.312000,0.015230 -0.082120,0.662100,0.303600,0.000050,1.000000,0.000000 -0.072020,-0.026420,-0.749500,-0.014260,0.224600,-0.974300 -0.221500,-0.027020,0.750600,-0.222700,0.213400,0.951300 0.148800,-0.543200,0.252800,0.077480,-0.994100,0.075320 0.320300,0.716200,0.313700,-0.043700,0.998800,-0.023040 0.685300,0.585300,0.059830,0.068890,0.713000,0.697700 0.067410,-0.506600,-0.500300,0.100700,-0.941800,-0.320800 0.558000,-0.123700,0.353400,0.872700,0.107800,0.476300 0.461100,0.077880,0.426600,0.820100,0.342600,0.458400 -0.785500,0.045170,-0.311900,-0.828900,0.308600,-0.466700 -0.242800,-0.524200,0.463300,-0.063510,-0.966100,0.250300 0.559700,-0.539900,0.202300,0.836500,-0.508300,0.204700 -0.172800,0.073440,0.721800,-0.003078,0.344800,0.938700 0.275800,0.489800,0.470500,0.726200,0.099680,0.680200 -0.162700,0.436700,0.622100,0.008580,0.112100,0.993700 0.068610,-0.545200,0.293300,0.036060,-0.997600,0.058510 0.314600,0.152700,0.539500,0.677100,0.357100,0.643500 0.158400,-0.480200,0.683700,0.291400,-0.282000,0.914100 0.620400,-0.176800,-0.201500,0.960800,0.052340,-0.272400 -0.455200,-0.220100,-0.701500,-0.512900,0.006177,-0.858400 -0.333700,-0.546300,-0.169300,0.028070,-0.999300,0.026630 -0.313600,-0.546300,-0.189400,0.027840,-0.999200,0.027090 -0.464000,-0.544400,0.122400,-0.094290,-0.995200,0.026790 0.276700,-0.286700,0.660300,0.521900,-0.091150,0.848100 -0.092240,-0.256900,0.773500,0.014290,-0.024130,0.999600 0.001188,-0.540100,-0.377300,0.031520,-0.991800,-0.123600 0.189400,-0.546700,-0.048500,0.035590,-0.999300,-0.006163 0.280400,-0.521900,0.454700,-0.717100,0.000001,-0.696900 -0.403900,0.662600,0.373900,0.184700,0.965300,-0.184500 -0.894300,-0.156700,0.062100,-0.996100,0.087460,0.014250 -0.052000,-0.176800,0.772800,0.017020,0.022400,0.999600 -0.849100,-0.316600,0.261100,-0.956200,-0.101300,0.274700 -0.529300,0.470400,-0.465500,-0.713200,0.104200,-0.693200 0.219700,-0.537600,-0.229600,0.154600,-0.983700,-0.091650 -0.786100,0.236800,-0.082460,-0.932700,0.295800,-0.206400 -0.893200,-0.306900,0.011780,-0.995200,-0.097260,0.014260 0.547400,-0.475500,-0.305400,0.823300,-0.282800,-0.492100 0.457700,0.608200,0.182100,0.974300,0.007024,0.225200 -0.561200,0.701500,-0.244700,0.568600,0.760000,0.314900 0.380300,0.451500,0.366000,0.866600,0.103800,0.488100 0.339000,-0.523700,-0.118600,0.249300,-0.965900,-0.070580 0.380000,-0.516400,-0.058560,0.287000,-0.957900,-0.012250 0.066800,0.708600,-0.478100,-0.172000,0.884200,0.434400 -0.747100,0.355500,0.127600,-0.943500,0.196600,0.266900 0.077290,0.446400,-0.586000,0.242000,0.128400,-0.961700 -0.273800,-0.542500,0.163200,0.078080,-0.993600,-0.081150 0.780400,-0.396200,-0.036440,0.327600,-0.850000,-0.412500 -0.082200,-0.540900,-0.389700,0.010040,-0.993300,-0.115100 -0.505600,-0.486200,-0.451900,0.095480,-0.990300,0.100900 -0.805000,-0.477500,0.291000,-0.884700,-0.305500,0.352200 0.880600,0.396300,-0.066470,0.466100,0.159900,-0.870100 0.837200,-0.371600,0.001737,0.664800,-0.746800,0.018860 -0.883100,-0.286900,0.151500,-0.959500,-0.083330,0.269200 -0.850700,-0.346500,0.241400,-0.950500,-0.154900,0.269200 0.772400,0.070490,-0.022350,-0.866100,0.427900,-0.258500 -0.814300,0.136500,-0.107600,-0.906500,0.356200,-0.226900 0.808500,0.430100,-0.053430,-0.672500,-0.374200,-0.638600 0.431600,0.067610,-0.464000,0.651000,0.347200,-0.675000 0.311500,-0.527900,-0.158600,0.242500,-0.967600,-0.069990 -0.031900,-0.545000,-0.340000,0.020110,-0.996700,-0.078820 0.054180,-0.116800,-0.744200,0.244400,0.120000,-0.962200 -0.751500,0.162100,0.288500,-0.808800,0.343600,0.477200 0.120000,0.713300,0.466200,-0.152900,0.954800,-0.254700 0.646900,-0.166900,-0.028310,0.996500,0.083050,-0.005943 -0.288500,-0.177000,0.756100,-0.245800,0.030410,0.968800 -0.152600,-0.267000,0.773700,0.005994,-0.041980,0.999100 -0.569200,-0.196800,0.637600,-0.500400,0.013140,0.865700 -0.824200,-0.240000,-0.330400,-0.872500,-0.030240,-0.487700 0.250300,-0.543100,-0.603400,0.400200,-0.535500,-0.743700 -0.061890,-0.544600,0.233500,-0.023870,-0.996100,-0.084540 -0.564900,0.662400,-0.139000,0.176300,0.983000,0.052110 0.398000,-0.511100,0.052110,0.325300,-0.945600,0.005249 0.329900,-0.421800,-0.602400,0.618400,-0.201300,-0.759600 -0.617900,-0.486700,0.314600,-0.256600,-0.947900,0.189100 -0.446300,-0.079210,-0.692300,-0.505700,0.161700,-0.847400 -0.202800,-0.545200,-0.340000,-0.019080,-0.997400,-0.068900 -0.011880,-0.543400,0.353300,0.029540,-0.994200,0.103000 -0.404100,-0.538000,0.303600,-0.122900,-0.984500,0.125000 -0.648500,-0.516600,0.497600,-0.653100,-0.349400,0.671900 0.621000,-0.003123,0.055520,0.974700,0.223100,-0.011080 -0.534300,-0.525700,-0.229400,-0.225800,-0.966100,-0.125000 -0.587400,-0.527900,-0.041840,-0.245500,-0.969400,-0.005374 -0.630300,0.042550,-0.526400,-0.682900,0.305600,-0.663500 -0.820900,0.082910,0.171300,-0.901400,0.349800,0.255300 -0.724600,0.658600,0.111500,-0.952400,0.115300,0.282200 -0.565800,-0.527100,-0.151200,-0.245200,-0.967500,-0.062060 -0.420200,0.657900,0.532400,-0.496400,0.108000,0.861400 -0.609200,0.409600,-0.394600,-0.708400,0.154700,-0.688600 -0.488000,-0.333300,-0.673500,-0.507900,-0.129300,-0.851700 -0.690400,0.476800,-0.246700,-0.869400,0.098720,-0.484200 -0.478700,-0.186800,0.688000,-0.487100,0.032910,0.872700 -0.032450,0.467400,-0.611000,0.241100,0.109500,-0.964300 -0.637700,0.345700,0.381700,-0.841500,0.198000,0.502700 0.002014,0.689700,0.585300,0.209400,0.600400,0.771800 -0.697200,0.707600,0.091730,-0.494100,0.864100,0.095970 0.859800,-0.286000,0.067520,0.528000,-0.187900,0.828200 -0.671900,-0.528600,0.267100,0.857800,0.028170,-0.513200 -0.804200,-0.547100,-0.178700,-0.236500,-0.970500,-0.046350 -0.288200,-0.528600,0.585100,0.247000,-0.010650,-0.969000 -0.240600,0.668800,-0.460700,0.150100,0.817200,0.556500 -0.685800,0.444600,-0.262600,-0.865800,0.129600,-0.483300 0.588100,-0.086580,-0.278900,0.959000,0.133700,-0.249900 0.584700,0.509200,0.062150,0.281900,-0.639500,0.715300 -0.813800,0.154500,-0.018380,-0.943400,0.331400,0.013510 -0.082150,0.417000,0.624000,0.022850,0.122600,0.992200 0.844200,-0.356200,0.034830,0.679300,-0.652200,0.336500 -0.544600,-0.226700,0.652400,-0.479400,0.000112,0.877600 0.842800,0.269500,-0.041800,-0.885300,-0.008467,-0.464900 -0.332100,-0.445900,0.715800,-0.230000,-0.256400,0.938800 -0.786600,-0.009109,-0.342700,-0.848400,0.238700,-0.472400 -0.726000,-0.547400,0.333800,0.000000,-1.000000,0.000000 -0.763700,-0.107100,0.424200,-0.850400,0.142200,0.506600 -0.679000,-0.035770,-0.507100,-0.697800,0.225400,-0.679900 -0.122400,-0.086490,0.763600,0.010710,0.146600,0.989100 -0.022340,-0.416600,0.750700,0.052540,-0.219500,0.974200 0.476400,0.497100,-0.127600,0.963200,0.069670,-0.259600 0.489000,-0.133700,0.472500,0.705400,0.102700,0.701400 -0.775900,0.278600,-0.068230,-0.965600,0.254500,-0.054020 -0.052070,-0.516600,0.504200,0.037830,-0.958700,0.281800 0.876700,0.391200,0.071670,0.345000,0.099970,0.933300 -0.671900,-0.317700,0.540600,-0.693200,-0.100100,0.713800 -0.152700,-0.316700,0.769900,0.008735,-0.097850,0.995200 -0.132300,0.139800,-0.693000,-0.013440,0.358000,-0.933600 0.853500,0.293100,-0.057870,-0.697200,-0.051260,-0.715000 0.638700,-0.086590,0.062190,0.980900,0.192200,-0.030350 -0.169900,-0.434300,-0.744600,-0.015730,-0.236000,-0.971600 -0.232500,-0.266900,-0.768800,-0.103300,-0.041340,-0.993800 -0.461700,0.638400,0.509900,-0.497400,-0.020580,0.867300 -0.192700,0.198000,-0.671800,-0.013720,0.303000,-0.952900 -0.152500,-0.103100,-0.763000,-0.014080,0.154700,-0.987900 -0.362000,-0.476100,0.698600,-0.234500,-0.305900,0.922700 -0.042660,0.446400,0.619300,0.051820,0.113600,0.992200 -0.528900,-0.518900,0.290600,-0.226700,-0.964500,0.135400 -0.876900,-0.043030,0.102200,-0.972700,0.225000,0.057350 -0.816100,0.147400,0.001731,-0.939500,0.342400,0.013390 0.603700,-0.057650,0.210800,0.948100,0.220400,0.229200 -0.894900,-0.277000,-0.098220,-0.977700,-0.062660,-0.200400 -0.022140,-0.356900,0.762500,0.043360,-0.166800,0.985000 -0.255500,-0.486500,-0.573500,0.036410,-0.992000,0.120900 -0.102300,-0.540900,-0.389700,-0.001626,-0.993100,-0.117500 -0.475100,0.345400,0.533100,-0.479600,0.173800,0.860100 -0.112400,0.325500,0.641300,0.011290,0.216600,0.976200 -0.082250,0.132100,0.698000,0.010970,0.377500,0.925900 -0.387100,-0.431500,-0.700800,-0.266300,-0.231600,-0.935700 -0.565400,0.327600,-0.461500,-0.702600,0.205800,-0.681200 0.152300,-0.082120,0.714100,0.267200,0.188500,0.945000 0.833100,-0.176700,-0.070580,0.072660,0.017380,-0.997200 -0.653100,-0.489400,0.243200,-0.352000,-0.914900,0.197500 -0.392300,0.119500,-0.652600,-0.258200,0.363000,-0.895300 -0.418000,0.045700,-0.672800,-0.402600,0.291900,-0.867600 0.572000,0.475900,0.006546,0.592000,-0.805700,0.020800 -0.028990,-0.509600,-0.516200,0.080940,-0.942500,-0.324300 -0.784100,0.072370,0.299900,-0.807300,0.348200,0.476400 0.475200,0.517200,-0.127200,0.957800,0.084980,-0.274600 -0.464500,0.675800,0.502200,-0.459800,0.383300,0.801100 0.629400,0.526500,-0.059540,0.127900,-0.675000,-0.726600 -0.457400,0.032390,0.655600,-0.479700,0.273100,0.833800 0.474500,0.638400,-0.116900,0.964700,-0.011850,-0.263000 -0.668100,0.477000,0.291300,-0.853900,0.098470,0.511000 0.886300,0.367100,-0.068010,0.372800,0.099410,-0.922600 -0.292700,0.694600,-0.464900,0.192600,0.667600,0.719200 0.016340,0.152800,0.678500,0.269400,0.369300,0.889400 0.502300,-0.300000,0.457900,0.862600,-0.090930,0.497700 0.066820,-0.457400,0.716700,0.251100,-0.292100,0.922800 -0.678000,0.497100,0.271100,-0.854500,0.091910,0.511300 -0.692200,0.711600,0.001715,-0.378700,0.925500,0.002200 0.620400,-0.116700,-0.181400,0.949500,0.105700,-0.295300 -0.102200,-0.417300,-0.749500,-0.013100,-0.224400,-0.974400 -0.489100,-0.306900,0.678400,-0.482000,-0.099150,0.870600 0.153300,-0.537400,-0.537700,-0.474500,0.006215,0.880200 -0.736600,0.511400,-0.007993,-0.997100,0.074750,0.015860 0.122500,0.707500,-0.521100,0.195000,0.888900,-0.414500 0.452700,0.568600,-0.195000,0.955300,0.040500,-0.292900 0.646000,0.586100,0.060180,-0.054090,0.710000,0.702100 -0.192700,0.342400,-0.633700,-0.015090,0.201200,-0.979400 -0.838100,-0.523800,-0.104900,-0.908500,-0.348800,-0.230300 0.231300,0.712800,0.385600,-0.215100,0.954000,-0.208900 0.089740,0.035440,0.702600,0.253400,0.308600,0.916800 0.167100,0.345700,-0.563800,0.478100,0.197700,-0.855800 -0.162600,-0.489800,0.579600,0.005579,-0.915100,0.403200 0.888300,0.192800,0.072450,0.299700,-0.065790,0.951800 0.333200,-0.526600,-0.554200,0.651700,-0.350700,-0.672500 -0.499500,0.518300,0.489700,-0.683900,0.073920,0.725900 -0.322300,0.023180,0.711200,-0.231100,0.269800,0.934800 0.794100,-0.229600,-0.011040,-0.982200,-0.139400,-0.125900 -0.495700,0.714700,0.375100,0.197400,0.959100,-0.202800 0.024800,-0.322000,-0.752500,0.245300,-0.106600,-0.963600 0.334400,-0.528900,-0.007415,0.228400,-0.973600,-0.003417 -0.783600,0.112600,0.261500,-0.894700,0.365200,0.257200 -0.484500,-0.080400,-0.669800,-0.506600,0.162500,-0.846800 -0.394700,-0.526700,-0.380500,-0.130300,-0.966800,-0.219600 0.882600,-0.293200,0.034820,0.895700,-0.269300,0.354000 -0.872600,-0.276900,0.191600,-0.960800,-0.062160,0.270200 -0.644100,-0.100500,-0.560400,-0.708300,0.155300,-0.688600 -0.292000,-0.056930,-0.737800,-0.264400,0.193600,-0.944800 -0.817200,-0.133600,-0.333600,-0.869200,0.096870,-0.484900 0.200800,0.713500,-0.412100,-0.217600,0.943200,0.251300 0.593200,0.515500,-0.059490,0.270600,-0.616400,-0.739500 -0.866800,-0.372000,0.169000,-0.948700,-0.164800,0.269700 0.057930,-0.206800,0.753200,0.265000,0.031320,0.963700 0.387200,-0.534900,0.328600,-0.871100,-0.048960,-0.488700 -0.585700,0.241900,-0.471700,-0.690100,0.271500,-0.670800 0.640000,-0.226800,-0.138600,0.967200,-0.004199,-0.253900 0.585500,-0.007276,-0.227700,0.926800,0.266000,-0.265200 0.477300,-0.490200,-0.001559,-0.738400,-0.674300,0.006681 0.391700,0.603200,-0.320300,0.862700,-0.012380,-0.505500 -0.288500,-0.541100,-0.581800,0.334700,-0.115700,0.935200 -0.269600,0.431500,0.605000,-0.253800,0.152200,0.955200 -0.572100,0.233100,0.491500,-0.673600,0.278700,0.684500 -0.463600,-0.504900,0.423400,-0.224700,-0.945400,0.235900 -0.483100,0.289300,0.542800,-0.467600,0.235200,0.852100 0.063900,0.697200,-0.462200,-0.281900,0.692300,0.664200 -0.794000,-0.147900,-0.378100,-0.869000,0.097480,-0.485200 -0.517700,-0.505300,-0.463700,0.688300,-0.214300,0.693100 -0.482400,0.558800,-0.494200,-0.515400,0.042890,-0.855900 0.467200,0.695200,0.045470,0.720600,0.692800,-0.027020 0.136800,-0.529300,-0.375800,0.109100,-0.974100,-0.197800 0.505400,0.264400,-0.177600,0.930700,0.254700,-0.262700 -0.836900,-0.226700,0.316700,-0.884400,-0.008062,0.466700 0.484800,0.547500,-0.058540,0.952800,0.226600,-0.202100 0.212000,0.689700,-0.493100,0.410400,0.571700,-0.710500 0.422500,0.416000,-0.297800,0.856500,0.122700,-0.501400 0.650700,-0.338200,-0.073340,0.480800,0.059280,-0.874800 0.353400,-0.270200,0.616000,0.540100,-0.048360,0.840200 -0.862800,0.013480,0.092270,-0.958000,0.286200,0.017650 -0.271400,0.103700,-0.693200,-0.254900,0.358800,-0.897900 0.826700,0.205100,-0.007987,-0.976600,0.189100,-0.102900 0.889400,-0.226900,-0.036270,0.924800,0.057100,-0.376200 -0.736900,0.021000,-0.414000,-0.835500,0.286900,-0.468600 0.356300,0.709500,-0.190100,-0.413100,0.900400,0.136100 -0.552900,0.684800,0.235200,0.750300,0.509200,-0.421700 0.122600,-0.503900,0.685100,0.258400,-0.357700,0.897400 -0.354600,-0.537800,-0.341100,-0.093010,-0.983800,-0.153000 -0.301300,-0.096750,0.744400,-0.238700,0.161100,0.957600 0.843400,0.095090,0.074670,0.063540,-0.035320,0.997400 -0.865300,-0.239100,-0.221300,-0.969000,-0.029070,-0.245400 -0.855400,0.015170,-0.122500,-0.927000,0.289500,-0.238400 -0.447000,0.697200,-0.492300,-0.351200,0.699400,-0.622500 0.128300,0.713900,-0.499800,0.132400,0.958700,-0.251900 -0.366900,-0.086290,-0.721800,-0.270400,0.160400,-0.949300 0.445300,-0.508500,-0.210800,-0.971700,-0.036190,0.233300 0.590800,0.037920,-0.160000,0.928000,0.255700,-0.270800 -0.599500,0.675700,-0.375000,-0.668500,0.362300,-0.649600 -0.423700,-0.541900,-0.239100,-0.081370,-0.993600,-0.078620 -0.032890,0.275100,-0.647700,0.228100,0.255100,-0.939600 -0.331800,0.284500,0.618600,-0.244500,0.266800,0.932200 0.529200,-0.544300,-0.288100,0.567200,-0.770800,-0.290100 0.157300,-0.126900,0.719300,0.275800,0.099480,0.956000 0.416200,-0.488000,-0.223800,0.380200,-0.914100,-0.140900 0.147900,-0.496700,0.681000,0.259600,-0.346400,0.901500 -0.399700,0.038400,0.686400,-0.337300,0.269000,0.902200 -0.455800,-0.547000,-0.513700,0.134500,-0.978900,0.153800 0.151000,0.648400,-0.541400,0.486400,0.041770,-0.872800 -0.132500,-0.489600,0.579600,0.005752,-0.914600,0.404200 0.344600,-0.509300,0.242100,0.289600,-0.943700,0.159900 -0.583300,0.198800,0.495300,-0.662500,0.310600,0.681600 0.057870,-0.186700,-0.749200,0.244100,0.031670,-0.969200 0.613100,0.603600,0.001830,-0.187800,0.982200,0.007500 -0.806500,-0.547400,0.042030,0.000000,-1.000000,0.000000 -0.880500,-0.266900,-0.157500,-0.968100,-0.039490,-0.247400 -0.243100,0.716600,0.534900,-0.009237,0.999400,0.032380 -0.497300,0.485100,-0.491400,-0.510000,0.095490,-0.854900 -0.665600,-0.547200,-0.300000,0.077610,-0.995100,0.060590 0.300600,0.289800,-0.488900,0.669600,0.256100,-0.697200 -0.212000,0.657800,-0.604100,-0.116500,0.114900,-0.986500 -0.473900,-0.349700,-0.679100,-0.506600,-0.160600,-0.847100 -0.387200,0.303100,-0.592400,-0.451400,0.227500,-0.862900 -0.233700,-0.528800,0.447600,-0.055230,-0.972400,0.226500 -0.861300,-0.306800,0.221400,-0.957800,-0.096830,0.270500 -0.509000,-0.518600,0.320400,-0.187500,-0.967200,0.171400 -0.115700,0.671700,-0.478400,0.014710,0.707300,0.706700 -0.696900,-0.138700,-0.512500,-0.714100,0.097430,-0.693300 0.452100,0.457000,-0.229200,0.951400,0.137500,-0.275600 0.790300,-0.385200,0.050850,0.352700,-0.773800,0.526100 0.147700,0.022960,0.690200,0.267000,0.319000,0.909400 0.832200,0.331600,-0.032610,-0.913000,-0.185400,-0.363400 -0.584300,0.677300,-0.389900,-0.640000,0.452700,-0.620800 -0.522300,-0.540000,-0.046130,-0.123200,-0.992200,-0.016580 0.580300,-0.272100,-0.322800,0.859400,-0.019610,-0.511000 0.822900,-0.268000,0.070000,-0.455100,0.150600,0.877600 -0.522300,-0.540000,0.024410,-0.125300,-0.992100,0.001965 0.309000,-0.488600,0.413000,-0.279900,-0.919200,-0.276800 -0.172300,0.228900,-0.662500,-0.014110,0.289400,-0.957100 0.827500,-0.374600,-0.026220,0.576500,-0.762400,-0.294000 0.478600,0.032670,-0.420600,0.810100,0.289200,-0.510000 0.056550,-0.538200,0.049870,-0.168400,-0.984900,-0.041140 0.470300,-0.547200,0.373500,0.138200,-0.986700,0.085880 0.508100,0.447800,0.068150,0.579900,-0.280000,0.765100 0.481900,0.648100,-0.087030,0.989000,0.047200,-0.139900 0.403700,0.343700,0.359300,0.851800,0.206400,0.481400 -0.717300,-0.526300,0.407800,-0.804900,-0.349200,0.479800 -0.665700,0.716500,-0.068610,0.005476,1.000000,-0.004652 0.260600,-0.511900,0.475100,-0.690600,0.001271,-0.723200 0.416600,0.587900,0.281100,0.876700,0.038480,0.479500 0.171200,-0.518100,-0.404600,0.152000,-0.962400,-0.225100 0.542900,-0.521100,-0.282500,0.883000,-0.356300,-0.305400 -0.818200,-0.503300,-0.214900,-0.911700,-0.340800,-0.229600 -0.426400,0.292600,-0.571900,-0.499000,0.235400,-0.834000 0.423100,-0.487500,0.213200,0.173300,-0.980200,0.095830 0.043610,-0.180200,0.756600,0.265400,0.005985,0.964100 -0.357500,0.267300,-0.611900,-0.264200,0.261600,-0.928300 0.383500,-0.471300,-0.531700,0.667300,-0.288100,-0.686900 -0.637000,-0.461800,0.534000,-0.667500,-0.288300,0.686600 0.539800,-0.363500,0.374500,0.867600,-0.153300,0.473000 0.856400,-0.325100,-0.051600,0.679100,-0.406900,-0.610900 -0.821100,-0.097080,-0.317200,-0.862700,0.156800,-0.480700 0.596300,0.002925,0.181500,0.928200,0.279200,0.245800 -0.695300,-0.066180,0.504600,-0.697500,0.201500,0.687700 -0.136900,0.708500,0.577500,0.008872,0.859900,0.510400 0.373400,0.701700,0.082890,-0.606200,0.779700,-0.156800 0.008424,-0.547400,0.675800,0.000895,-1.000000,0.000947 -0.082040,-0.526300,-0.716400,-0.013360,-0.349900,-0.936700 -0.102300,0.254100,0.658800,0.024530,0.279500,0.959800 0.068230,-0.513100,0.482800,0.086650,-0.950500,0.298400 0.611400,0.026920,-0.004878,0.956500,0.290600,-0.024950 -0.835700,-0.540500,0.028540,-0.859200,-0.511500,0.012270 -0.093000,-0.529200,0.458500,0.002872,-0.974300,0.225200 -0.189500,0.036910,0.735400,0.009952,0.272500,0.962100 -0.515900,0.170600,-0.560700,-0.484000,0.329600,-0.810600 -0.727400,0.631700,-0.094270,-0.968800,-0.008855,-0.247800 0.569600,-0.016270,-0.291600,0.911300,0.217400,-0.349800 -0.262600,0.712100,0.552400,-0.094130,0.931000,0.352700 -0.735300,0.504000,-0.081180,-0.968600,0.083480,-0.234200 -0.262100,0.029760,-0.723100,-0.263000,0.290900,-0.919900 0.337300,0.375200,-0.427500,0.686300,0.193400,-0.701100 0.271700,-0.518700,-0.304400,0.213200,-0.965500,-0.149800 -0.861000,-0.416500,-0.147600,-0.944800,-0.224100,-0.239000 -0.579300,0.550900,-0.404900,-0.716100,0.052980,-0.695900 0.501000,0.087780,-0.344700,0.799000,0.340700,-0.495400 0.618100,-0.015130,0.112800,0.948200,0.212600,0.235900 0.631200,-0.053290,-0.055160,0.972300,0.233500,-0.013830 0.176600,-0.196900,0.719500,0.276700,0.059820,0.959100 -0.558400,0.036100,-0.592900,-0.489900,0.291200,-0.821700 0.137700,-0.346700,0.721100,0.265700,-0.153300,0.951800 -0.725200,0.503800,-0.121400,-0.966200,0.083970,-0.243600 0.411600,-0.534100,0.475500,0.681300,-0.311400,0.662400 0.354500,0.709200,-0.317000,0.418200,0.879000,-0.229200 0.261600,0.178200,-0.563000,0.461200,0.327800,-0.824600 -0.391300,-0.510600,-0.447400,-0.167300,-0.945200,-0.280300 -0.382000,0.697000,0.427400,0.331800,0.694400,-0.638500 0.617700,-0.286900,0.211900,0.965500,-0.081810,0.247200 0.293600,-0.030380,0.626900,0.504900,0.238100,0.829700 -0.592000,-0.511900,-0.387200,0.711400,-0.061910,0.700100 0.568900,-0.365500,0.320700,0.872500,-0.141500,0.467600 0.339400,-0.525100,-0.098600,0.246600,-0.966600,-0.069670 0.458700,-0.386200,-0.488600,0.686600,-0.188500,-0.702200 -0.677400,0.365700,0.307400,-0.843900,0.190100,0.501800 -0.422600,0.037280,0.673600,-0.473900,0.253600,0.843300 0.631700,-0.202900,0.165700,0.970500,0.039550,0.237900 -0.578300,0.631700,-0.404000,-0.717100,-0.008843,-0.696900 -0.696800,0.217100,-0.343800,-0.833200,0.299600,-0.464800 0.832300,0.255200,0.007349,-0.998100,0.037220,0.049360 -0.600900,0.193700,0.480000,-0.665800,0.307300,0.679900 -0.472800,-0.488900,0.469300,-0.231700,-0.923000,0.307300 0.729000,-0.406100,-0.038490,0.072910,-0.904100,-0.421000 0.375000,0.507000,-0.357100,0.854600,0.098610,-0.509800 0.237100,-0.489600,0.482400,-0.255600,-0.866500,-0.428800 0.608800,0.535100,-0.068110,0.110700,-0.369600,-0.922600 -0.800300,0.193600,-0.018420,-0.950500,0.310500,0.013610 0.712600,0.547800,0.074090,0.006681,-0.017020,0.999800 -0.575100,-0.100500,-0.619600,-0.507600,0.156900,-0.847200 -0.547000,0.237500,-0.513500,-0.685700,0.282600,-0.670800 -0.748100,0.148100,0.305300,-0.804500,0.365800,0.467900 -0.446900,-0.148800,-0.702500,-0.510000,0.097740,-0.854600 -0.695400,0.574600,-0.221800,-0.940900,0.023880,-0.337900 -0.777900,-0.346600,0.397800,-0.849200,-0.152400,0.505700 0.448000,-0.491900,-0.028340,0.397000,-0.917800,-0.005734 -0.716700,0.419500,-0.194700,-0.957100,0.151800,-0.246700 0.256100,0.122200,-0.588800,0.474900,0.325600,-0.817600 0.209600,0.608200,-0.508700,0.487500,0.005067,-0.873100 -0.444000,-0.137100,0.702800,-0.481800,0.099880,0.870600 0.487600,-0.500900,-0.391900,0.819100,-0.311100,-0.482000 0.137400,-0.246700,0.730500,0.276000,-0.018650,0.961000 -0.872100,-0.336800,0.171400,-0.953700,-0.136800,0.267800 0.287200,-0.491800,0.441500,-0.477600,-0.707300,-0.521300 0.481300,0.290000,0.246300,0.871300,0.251000,0.421700 -0.092220,-0.492500,0.572500,0.005724,-0.916600,0.399800 0.356300,-0.516300,-0.537100,0.653000,-0.349500,-0.671900 0.216000,-0.437500,0.667100,0.485500,-0.239400,0.840800 -0.364400,0.628400,0.563300,-0.503000,-0.006231,0.864300 0.367800,-0.518600,-0.356100,-0.858400,-0.000074,0.512900 -0.590200,0.012430,0.580000,-0.661800,0.322100,0.677000 0.541600,0.129200,-0.211000,0.903200,0.342200,-0.259100 0.501100,0.392600,-0.061840,0.982500,0.185800,-0.015640 -0.551800,-0.078150,-0.629200,-0.505200,0.162800,-0.847500 0.398500,0.375700,-0.350400,0.843200,0.193900,-0.501400 0.208000,0.174600,-0.594400,0.460100,0.329700,-0.824400 0.523900,-0.100100,0.408600,0.863100,0.184700,0.470100 -0.637800,0.207200,-0.433300,-0.683900,0.300700,-0.664700 -0.564600,0.160400,-0.531100,-0.676500,0.331400,-0.657600 -0.478800,-0.246800,0.688100,-0.476100,-0.032470,0.878800 0.115400,-0.497900,-0.504000,0.179500,-0.929800,-0.321300 0.007377,0.416400,-0.607800,0.241200,0.147300,-0.959200 -0.513200,0.668200,0.277800,0.556200,0.779400,-0.288400 0.601400,0.056850,-0.045110,0.926100,0.377200,-0.010700 0.511700,-0.325100,0.437300,0.870300,-0.123100,0.476900 0.227200,-0.206900,-0.687800,0.487400,0.028140,-0.872700 -0.648200,0.227500,-0.413500,-0.685800,0.292200,-0.666500 0.386200,0.707500,-0.013360,-0.518800,0.854800,0.008517 0.645100,-0.326900,0.090240,0.911700,-0.075200,0.403900 0.599900,-0.166900,-0.271800,0.957100,0.095680,-0.273500 -0.552300,0.253700,0.501900,-0.663800,0.287100,0.690600 -0.803300,-0.018280,-0.317100,-0.850400,0.229300,-0.473600 -0.172600,0.308900,-0.641300,-0.013860,0.231200,-0.972800 0.833000,0.253100,-0.012210,-0.985800,0.050030,-0.160400 0.126300,0.638400,0.560500,0.508500,-0.018610,0.860800 0.157600,0.598400,-0.537900,0.487400,0.016300,-0.873000 -0.835700,-0.367700,0.281500,-0.949800,-0.160900,0.268300 0.093500,0.546700,-0.572600,0.267300,0.059900,-0.961700 -0.556200,-0.186800,0.645100,-0.494200,0.019180,0.869200 -0.650200,0.082080,0.489100,-0.644900,0.342800,0.683000 -0.230700,-0.495100,-0.725000,-0.130400,-0.309000,-0.942100 0.750100,-0.083740,-0.034210,-0.922700,-0.102600,-0.371700 0.857900,0.158400,-0.069880,-0.251100,0.082400,-0.964500 0.833100,-0.355200,0.051840,0.571500,-0.624600,0.532300 -0.490800,-0.295800,-0.676400,-0.510000,-0.096430,-0.854700 0.405900,0.577900,-0.297200,0.858300,0.034390,-0.512000 0.761800,0.008066,0.052360,-0.793800,0.194800,0.576100 0.544900,0.072310,-0.277500,0.889500,0.343200,-0.301700 -0.323200,0.264200,0.626400,-0.245000,0.244600,0.938100 0.535900,0.244300,0.001857,0.958500,0.284300,-0.021890 0.570800,0.047770,-0.220400,0.903500,0.331400,-0.271800 -0.538700,-0.383400,-0.633900,-0.503900,-0.182200,-0.844300 -0.284100,0.097540,0.694100,-0.225000,0.334200,0.915300 0.125800,0.638400,-0.555700,0.487800,0.002761,-0.873000 -0.569100,-0.487100,-0.394600,0.382000,-0.843500,0.377500 0.621600,-0.226800,-0.201800,0.961800,-0.025530,-0.272700 0.533100,0.251400,-0.021620,0.962800,0.270000,-0.012370 -0.870500,-0.007281,-0.028480,-0.969100,0.246300,0.013840 0.546700,-0.336700,-0.367500,0.844700,-0.134300,-0.518100 -0.844700,-0.369500,-0.251200,-0.957000,-0.161700,-0.240800 0.540400,-0.508300,0.295100,0.817900,-0.371800,0.439100 -0.792000,-0.206900,0.391500,-0.858400,0.028190,0.512200 0.427900,-0.508500,-0.255300,-0.833700,-0.065650,0.548300 0.927900,0.335500,-0.017040,0.965700,0.166400,-0.199400 -0.726200,-0.511400,0.403800,-0.804800,-0.349000,0.480100 -0.828900,-0.444700,-0.246500,-0.935700,-0.263400,-0.234600 0.607000,-0.036850,-0.177900,0.937800,0.233100,-0.257200 -0.377400,0.657800,0.556000,-0.484800,0.108000,0.867900 -0.246800,0.272300,-0.641800,-0.266500,0.259100,-0.928300 -0.112200,-0.516300,-0.089410,-0.038360,-0.959400,0.279300 -0.884900,-0.246900,0.152200,-0.962200,-0.032560,0.270500 0.098160,-0.246900,-0.739400,0.242500,-0.031410,-0.969700 -0.777500,-0.522100,-0.302900,-0.818300,-0.349300,-0.456400 -0.365400,0.664200,-0.560000,-0.400700,0.203500,-0.893300 -0.192700,0.690800,-0.592700,-0.011510,0.601700,-0.798600 0.495800,-0.126900,-0.457700,0.862200,0.091360,-0.498200 0.174100,-0.309900,0.715600,0.293800,-0.072320,0.953100 0.913200,0.269500,0.060910,0.707000,0.013670,0.707100 0.203900,-0.126700,-0.694800,0.485700,0.102600,-0.868100 -0.847200,-0.107000,0.258300,-0.951900,0.136900,0.274200 -0.673500,0.392500,-0.300300,-0.861100,0.163600,-0.481300 0.173600,-0.529700,0.348000,0.154300,-0.976300,0.151600 -0.446800,0.669400,-0.510900,-0.499400,0.260100,-0.826400 0.118400,0.033870,-0.693900,0.234600,0.288900,-0.928200 -0.842600,-0.467000,0.171600,-0.922400,-0.286400,0.259100 -0.775600,-0.367600,0.395000,-0.847500,-0.161800,0.505600 0.002978,-0.369700,0.755500,0.263600,-0.136900,0.954900 -0.639000,0.188800,0.445300,-0.650800,0.359300,0.668900 0.500100,0.198700,-0.265200,0.892200,0.308500,-0.329900 -0.250800,0.234500,0.653300,-0.217900,0.279900,0.935000 0.486300,-0.524200,0.380000,0.816600,-0.337200,0.468500 0.552600,0.102500,-0.208900,0.892000,0.363800,-0.268200 -0.877700,-0.283400,-0.164600,-0.965900,-0.077750,-0.246800 0.496800,-0.266900,0.470200,0.735400,-0.033070,0.676800 -0.469700,0.158800,0.596000,-0.469400,0.334100,0.817400 0.420100,-0.398600,0.524400,0.696100,-0.210900,0.686200 -0.704700,0.704700,-0.028480,-0.578100,0.816000,0.006614 0.915500,0.391600,-0.011510,0.943700,0.300700,-0.138000 -0.715700,0.648400,0.145100,-0.961100,0.041310,0.273000 0.875600,-0.201000,0.054820,0.774500,0.165100,0.610600 -0.581200,-0.286500,0.629000,-0.489300,-0.080640,0.868400 -0.615500,-0.547200,-0.380700,0.075710,-0.994400,0.073650 0.452800,0.496700,0.220800,0.962700,0.093050,0.254000 -0.243700,-0.544400,-0.597300,0.145400,-0.690500,0.708600 0.479500,-0.478500,0.425700,0.836300,-0.271400,0.476400 0.908100,0.414600,0.011240,0.938100,0.330200,0.104500 -0.629300,-0.046840,0.562900,-0.682900,0.229000,0.693700 -0.367000,-0.510700,0.685900,-0.217100,-0.393500,0.893300 0.102200,0.279400,-0.612400,0.237800,0.248100,-0.939100 -0.497100,-0.371900,0.663700,-0.486400,-0.169400,0.857200 0.256600,-0.476300,0.630000,0.485600,-0.292600,0.823800 0.490200,-0.493700,0.395800,0.815100,-0.361100,0.453000 -0.229100,-0.111900,0.765200,-0.239900,0.109300,0.964600 0.895700,0.444100,-0.008766,0.906300,0.411200,-0.097160 0.172500,-0.538000,-0.527000,-0.483500,-0.001819,0.875300 -0.802100,-0.086800,-0.347900,-0.861500,0.160400,-0.481800 0.138000,-0.501800,-0.479100,0.163900,-0.942200,-0.292200 -0.667900,0.006110,-0.503600,-0.689500,0.275300,-0.670000 0.617600,0.003141,-0.078620,0.956800,0.290400,-0.011070 -0.890500,-0.336500,-0.028500,-0.990500,-0.137100,0.014100 0.556800,0.094260,0.213100,0.918000,0.328300,0.222600 0.366000,-0.520100,-0.068440,0.259100,-0.965200,-0.034560 -0.850800,0.022900,0.141000,-0.921300,0.288200,0.261000 -0.257100,-0.481900,0.723800,-0.224600,-0.254400,0.940700 0.424500,0.609000,-0.264800,0.859500,0.025950,-0.510400 0.057080,-0.438300,-0.721800,0.241300,-0.252400,-0.937000 0.050220,-0.540400,0.103600,-0.104200,-0.992800,-0.059120 0.401400,0.355200,-0.353500,0.844900,0.175500,-0.505300 0.117900,0.184200,-0.637500,0.263900,0.319600,-0.910100 0.239400,-0.356300,-0.669000,0.482000,-0.162800,-0.860900 -0.192900,-0.343500,0.767700,0.000423,-0.153300,0.988200 -0.708500,0.225400,-0.317500,-0.834600,0.291700,-0.467200 0.483400,-0.006297,-0.434800,0.837200,0.267600,-0.477000 0.324100,-0.487000,0.377800,0.069150,-0.994200,0.082460 0.420700,-0.424100,0.514800,0.704900,-0.217000,0.675200 -0.544200,0.564300,-0.440300,-0.716700,0.034110,-0.696500 0.470400,0.047520,-0.424900,0.803500,0.352900,-0.479500 0.346400,0.651100,0.390300,0.717200,0.016330,0.696700 0.260900,0.577800,-0.471900,0.696600,0.026150,-0.717000 0.262900,0.564400,0.477700,0.706700,0.042530,0.706200 0.315900,-0.518600,-0.416500,-0.699600,0.013940,0.714400 0.301500,0.625000,0.436000,0.718100,-0.003320,0.696000 0.037120,0.446500,-0.596100,0.242900,0.127200,-0.961700 -0.712200,0.416600,0.212000,-0.952400,0.145800,0.267900 0.344300,0.443300,0.408100,0.708800,0.162100,0.686600 0.355800,-0.017020,0.580700,0.720200,0.188800,0.667500 0.769800,0.569300,-0.045200,0.382900,0.793500,-0.473000 0.490300,0.528200,0.072250,0.812900,0.300900,0.498600 0.800200,0.076190,-0.060120,-0.577100,0.314800,-0.753600 -0.152600,0.657900,0.610000,0.014140,0.131900,0.991200 0.312100,0.564300,0.426400,0.717700,0.028820,0.695800 0.104100,-0.300000,0.737000,0.280500,-0.094410,0.955200 -0.697300,-0.137000,0.516200,-0.694300,0.081430,0.715100 -0.766300,-0.260900,-0.432800,-0.873100,-0.032650,-0.486500 -0.383800,-0.528100,0.385900,-0.123300,-0.968000,0.218700 0.429400,0.208400,-0.379200,0.827800,0.282200,-0.484800 0.454000,-0.216800,-0.514200,0.696300,0.046720,-0.716300 -0.536400,-0.044860,-0.631100,-0.498900,0.223100,-0.837500 0.272400,0.574500,0.467100,0.715600,0.064610,0.695500 0.499800,-0.152100,-0.454600,0.854800,0.099280,-0.509400 0.520400,0.279500,0.105900,0.948400,0.204800,0.242100 0.394700,-0.507600,0.117300,0.322200,-0.943100,0.082100 0.272200,0.068020,0.605700,0.489100,0.350200,0.798900 0.589600,-0.408700,0.246500,0.948600,-0.205400,0.240900 -0.467600,-0.538400,-0.223200,-0.147200,-0.985700,-0.082330 0.484300,-0.544300,-0.075300,-0.655100,-0.753900,0.049080 0.208200,0.696700,0.372500,-0.491300,0.728200,-0.477900 0.231800,0.411100,0.514900,0.514000,0.141000,0.846100 0.105700,0.466600,-0.575400,0.351900,0.113700,-0.929100 0.391300,-0.487200,0.293900,-0.218500,-0.972600,-0.079870 0.736300,0.496500,0.048610,-0.427200,-0.758100,0.492800 0.890200,-0.286400,0.001844,0.968700,-0.248400,-0.003925 -0.276900,0.211600,-0.651500,-0.263200,0.297300,-0.917800 0.402600,0.443200,0.327700,0.863200,0.108000,0.493100 -0.717300,0.067290,0.415600,-0.808200,0.339100,0.481500 0.241800,-0.021910,0.655700,0.496700,0.215800,0.840700 -0.494700,0.382500,-0.509200,-0.505900,0.168900,-0.845900 -0.461300,0.144400,-0.604100,-0.482400,0.350000,-0.803000 0.241000,-0.022380,-0.652900,0.474800,0.225500,-0.850700 -0.392900,-0.035620,-0.704300,-0.267400,0.226100,-0.936700 0.839600,0.377800,0.065210,-0.577500,-0.202000,0.791000 0.502800,0.069350,0.357800,0.820100,0.328500,0.468600 0.052280,0.219300,0.645400,0.258500,0.288900,0.921800 0.598500,-0.075090,0.243700,0.960700,0.121700,0.249300 0.071730,0.238800,0.633400,0.256400,0.261400,0.930600 -0.613400,-0.150400,-0.600100,-0.703200,0.097140,-0.704300 0.175300,-0.456400,-0.679500,0.468300,-0.285100,-0.836300 0.301700,0.584500,0.436100,0.711500,0.027900,0.702100 -0.794800,-0.481100,-0.301300,-0.835900,-0.288900,-0.466700 0.382600,-0.206900,-0.583600,0.684100,0.067310,-0.726300 0.448800,-0.123700,0.512800,0.720600,0.104200,0.685500 -0.684800,0.206100,-0.372200,-0.833100,0.296700,-0.466900 -0.480900,-0.006067,-0.653500,-0.491400,0.252800,-0.833400 -0.687900,0.107800,0.436100,-0.788600,0.369200,0.491700 0.471800,-0.284600,0.495400,0.718700,-0.099960,0.688100 0.328700,0.547300,-0.408900,0.684200,0.060250,-0.726800 -0.593200,0.426000,0.412000,-0.687000,0.168900,0.706800 -0.583000,0.486700,0.411900,-0.692700,0.064530,0.718300 -0.397500,0.470000,-0.552700,-0.510100,0.104800,-0.853700 -0.689600,-0.276800,0.528600,-0.695400,-0.062090,0.715900 -0.675200,-0.226700,0.544400,-0.699600,0.021970,0.714200 0.189800,0.116700,0.632800,0.471500,0.391300,0.790300 -0.710800,-0.246800,0.509600,-0.696500,-0.032450,0.716800 0.570600,-0.418800,0.295100,0.856500,-0.205600,0.473500 0.008435,-0.526800,-0.704600,0.228500,-0.349700,-0.908600 -0.489600,0.038280,0.636000,-0.473900,0.295800,0.829400 0.326100,-0.487200,-0.373700,0.281600,-0.907500,-0.311800 0.560800,0.107800,0.176300,0.899800,0.372000,0.227800 0.372600,0.698800,-0.074400,-0.674700,0.731300,0.100100 0.015010,0.212100,0.657700,0.256400,0.293300,0.921000 0.378300,-0.064030,0.573100,0.694900,0.162300,0.700600 0.288900,0.355300,-0.479800,0.689400,0.174700,-0.703000 -0.233900,0.127800,0.694600,-0.212900,0.324300,0.921700 -0.698700,0.134600,-0.398400,-0.814800,0.358600,-0.455600 0.428200,-0.186900,-0.538600,0.690800,0.035430,-0.722200 -0.238200,-0.322700,-0.763500,-0.165700,-0.104800,-0.980600 0.571400,-0.102100,-0.324500,0.852900,0.185100,-0.488200 0.040950,0.410100,0.603000,0.266700,0.158700,0.950600 0.294200,0.517300,-0.444900,0.706900,0.065160,-0.704300 -0.609000,-0.226800,0.609000,-0.685500,0.010800,0.728000 -0.415400,-0.246700,0.723700,-0.441000,-0.043410,0.896500 -0.551000,-0.485300,-0.596000,-0.489900,-0.295800,-0.820100 -0.828600,-0.537000,0.132400,-0.899600,-0.355600,0.253300 0.423700,-0.226800,-0.544200,0.696800,0.024820,-0.716900 -0.409300,-0.042070,0.705700,-0.404500,0.259000,0.877100 0.023460,-0.389800,0.746700,0.256000,-0.209200,0.943800 0.114500,-0.166900,-0.734000,0.247800,0.065810,-0.966600 0.004985,0.384200,0.617700,0.270200,0.206800,0.940300 0.431900,0.395700,-0.287400,0.849100,0.175400,-0.498200 -0.619000,-0.065540,-0.577900,-0.706000,0.175200,-0.686300 -0.639400,-0.343500,-0.565600,-0.708800,-0.151200,-0.689000 0.428300,-0.333000,0.532500,0.706600,-0.139200,0.693800 -0.407500,0.254200,0.596000,-0.462000,0.288300,0.838700 0.787900,-0.386400,-0.048560,0.345800,-0.745200,-0.570200 -0.606500,0.237100,-0.452300,-0.688200,0.281600,-0.668700 -0.784800,0.098590,0.277300,-0.884800,0.359000,0.297000 -0.454800,0.274700,0.563200,-0.462300,0.254000,0.849600 -0.631600,-0.017990,0.551100,-0.684300,0.223800,0.694000 -0.739500,-0.455000,-0.416400,-0.836200,-0.287000,-0.467300 -0.598200,-0.106900,0.608200,-0.688000,0.158400,0.708200 -0.862100,-0.256800,0.231700,-0.962200,-0.032510,0.270400 -0.662900,0.229100,0.396100,-0.821800,0.288400,0.491300 0.387100,-0.186900,-0.578000,0.693900,0.021520,-0.719700 -0.714600,-0.286600,0.503300,-0.694500,-0.083920,0.714600 -0.772600,-0.468200,-0.349000,-0.835800,-0.288700,-0.467000 0.547000,0.164700,0.142800,0.910900,0.331400,0.245900 0.573600,0.093230,-0.148900,0.913000,0.319500,-0.253600 0.350300,0.067170,-0.543700,0.634700,0.387800,-0.668400 -0.733100,-0.008244,-0.437900,-0.833200,0.245900,-0.495200 0.487900,-0.332900,0.471400,0.717800,-0.147800,0.680400 0.139900,-0.501200,-0.681200,0.295600,-0.347300,-0.889900 0.548000,-0.057520,-0.349500,0.828100,0.192000,-0.526700 -0.623600,-0.499900,0.243400,-0.295900,-0.938800,0.176200 0.781000,-0.332700,0.072490,-0.172900,0.266600,0.948200 0.293300,-0.380000,0.636400,0.505000,-0.197700,0.840200 -0.198800,0.679100,0.603500,-0.135600,0.443500,0.885900 0.428900,-0.067280,-0.519200,0.668800,0.200400,-0.715900 -0.336000,-0.230000,-0.742100,-0.274000,-0.017110,-0.961600 -0.413700,0.432800,-0.548400,-0.508500,0.131400,-0.851000 -0.646800,-0.401800,-0.542900,-0.698700,-0.225700,-0.678900 -0.576900,0.318200,-0.452800,-0.697900,0.230100,-0.678200 0.291900,0.638400,-0.442600,0.696900,0.003121,-0.717200 0.225600,-0.506800,0.636200,0.462500,-0.347700,0.815600 -0.895800,-0.210200,-0.101100,-0.969300,0.025670,-0.244500 -0.555700,-0.506200,-0.321000,-0.260600,-0.944300,-0.201000 -0.879400,-0.147100,0.160500,-0.957500,0.097710,0.271300 0.364200,0.685800,-0.008328,-0.852600,0.522400,0.011870 -0.518400,0.027280,0.623500,-0.469200,0.267700,0.841500 -0.747200,0.080990,-0.353700,-0.817800,0.348700,-0.457800 0.582900,0.109700,0.038740,0.930100,0.366000,-0.029990 0.132200,0.249100,0.613700,0.294600,0.307500,0.904800 -0.533100,0.106800,0.582700,-0.442300,0.383100,0.810900 0.384100,-0.039950,0.558700,0.697800,0.230700,0.678100 -0.733500,0.081730,-0.377700,-0.817700,0.350500,-0.456600 -0.616700,0.213300,0.455700,-0.668400,0.269200,0.693400 -0.646000,0.566900,0.316000,-0.858900,0.033370,0.511100 -0.697200,0.658100,0.208300,-0.954200,0.117700,0.275200 -0.778000,-0.443300,-0.354300,-0.842000,-0.263000,-0.471000 -0.000808,0.709500,0.501100,-0.128600,0.900300,-0.415900 -0.886500,-0.350500,0.098980,-0.986100,-0.164200,0.025860 -0.672300,0.127100,0.444000,-0.665400,0.338900,0.665100 0.275800,0.254200,-0.526200,0.651700,0.267900,-0.709600 0.316600,0.651100,0.420800,0.716500,0.040840,0.696400 0.309600,-0.253400,0.642200,0.518000,-0.024210,0.855000 -0.557800,-0.507800,0.309900,-0.287100,-0.942600,0.170700 -0.020940,-0.547200,0.608400,-0.096230,-0.961100,-0.259000 -0.437600,-0.306600,0.706600,-0.482500,-0.102400,0.869900 -0.051990,0.043080,0.731500,0.004164,0.293500,0.956000 -0.686700,0.198400,0.375100,-0.826700,0.297000,0.477900 -0.705900,0.515400,-0.194200,-0.965600,0.077970,-0.248100 -0.337400,-0.511500,0.693000,-0.224200,-0.370100,0.901500 0.565700,0.473700,-0.017320,0.619800,-0.756100,-0.210300 0.184800,-0.109400,0.708900,0.404700,0.120700,0.906500 0.788800,-0.194300,-0.035960,-0.814900,-0.422900,-0.396300 0.316900,0.657600,-0.417100,0.683300,0.108100,-0.722100 -0.673000,-0.501200,0.041990,-0.335700,-0.941900,0.004792 0.008406,0.124500,0.691400,0.251100,0.345000,0.904400 0.461700,0.304700,-0.273000,0.836000,0.209800,-0.507000 0.678300,-0.399000,-0.041370,-0.248500,-0.858000,-0.449500 -0.599100,0.305400,0.438000,-0.667000,0.221200,0.711500 0.331300,0.118100,-0.534900,0.645100,0.370000,-0.668500 0.307500,0.277400,0.492200,0.699300,0.221300,0.679700 -0.603800,-0.450000,-0.570300,-0.688500,-0.279700,-0.669100 -0.882600,-0.086740,0.121300,-0.960900,0.162800,0.224100 0.330400,0.168100,0.515000,0.682500,0.307000,0.663300 -0.011710,-0.486900,-0.724500,0.232500,-0.296300,-0.926400 0.410600,0.557800,-0.291300,0.859500,0.025050,-0.510500 0.553900,0.546100,0.070160,-0.240600,0.448300,0.860900 0.239400,-0.391700,-0.662000,0.476800,-0.206000,-0.854500 0.225300,-0.490200,-0.489900,-0.537700,-0.515600,0.667200 -0.622600,0.608200,0.353600,-0.858900,0.005149,0.512100 0.151900,0.189000,-0.620100,0.462000,0.314600,-0.829200 0.254500,-0.507700,-0.475900,-0.666300,-0.001071,0.745700 -0.796800,0.170100,-0.127500,-0.913700,0.333500,-0.232300 0.441200,-0.394200,0.505100,0.705100,-0.245000,0.665400 -0.773600,-0.436600,0.369700,-0.831600,-0.245500,0.498200 -0.531600,-0.536400,-0.586200,-0.471700,-0.382400,-0.794500 -0.655100,-0.110200,-0.551200,-0.710400,0.136300,-0.690500 0.389700,-0.433400,0.544100,0.694900,-0.236000,0.679300 0.192300,0.260400,0.576100,0.482200,0.254400,0.838300 -0.864500,-0.358700,-0.180100,-0.957100,-0.161400,-0.240500 0.764800,-0.095120,0.060190,-0.715800,-0.124100,0.687200 -0.669600,-0.488400,0.205500,-0.392200,-0.912700,0.114700 0.126000,-0.442900,-0.703200,0.229600,-0.261100,-0.937600 0.247400,-0.086780,-0.664100,0.481400,0.161900,-0.861400 0.538000,-0.386200,-0.366000,0.840700,-0.189000,-0.507400 0.795800,0.426500,-0.030430,-0.819200,-0.468000,-0.331500 0.267600,0.194200,-0.553500,0.464400,0.307700,-0.830400 0.656800,-0.399900,-0.014820,-0.344800,-0.926600,-0.150200 0.001680,-0.191700,-0.763600,0.246900,0.031940,-0.968500 0.642300,-0.112900,0.035190,0.995500,0.093900,-0.011990 -0.415900,-0.399900,-0.700100,-0.289600,-0.227400,-0.929700 0.196700,-0.006963,-0.673400,0.472000,0.245100,-0.846800 -0.715900,0.665600,-0.132900,-0.953300,0.182600,-0.240500 -0.559800,0.676100,-0.415600,-0.666900,0.367000,-0.648500 -0.042460,0.703800,0.581600,0.057140,0.812000,0.580900 0.147100,-0.537100,0.665800,0.273800,-0.379800,0.883600 -0.475800,0.064700,-0.630800,-0.481600,0.350500,-0.803200 -0.341800,0.245300,-0.622600,-0.264900,0.273700,-0.924600 -0.192700,0.704300,-0.578300,-0.004669,0.809900,-0.586500 0.192100,-0.419500,0.685700,0.520000,-0.225200,0.823900 0.528100,0.244100,-0.116300,0.924600,0.290000,-0.247100 0.060200,0.696700,0.466500,-0.190800,0.696500,-0.691700 0.465400,0.598000,-0.147400,0.961600,0.030250,-0.272700 -0.685800,-0.009436,-0.491300,-0.696300,0.238400,-0.677000 0.399100,-0.361700,-0.552300,0.687800,-0.161100,-0.707800 0.498200,-0.405200,0.431200,0.857400,-0.224500,0.463200 0.107100,0.335200,0.598900,0.270400,0.206000,0.940400 -0.847800,0.059540,0.101700,-0.933300,0.349500,0.082730 0.110700,0.706200,0.454100,-0.282400,0.842800,-0.458200 -0.005325,0.696800,0.484400,-0.169900,0.689600,-0.704000 0.412800,-0.107200,-0.543300,0.698200,0.141700,-0.701700 -0.856100,-0.216800,0.255600,-0.961900,0.013010,0.273100 0.239400,-0.536400,-0.209300,0.157800,-0.983000,-0.094150 -0.724000,0.279900,0.266200,-0.864200,0.243600,0.440200 0.791300,0.034720,0.070980,-0.386600,0.132500,0.912700 -0.833900,-0.011710,0.236800,-0.934700,0.236100,0.265800 0.558700,-0.451300,-0.301700,0.832700,-0.291500,-0.470700 0.041520,0.309600,0.623300,0.277700,0.210800,0.937300 0.067280,0.385900,0.600100,0.264200,0.171500,0.949100 -0.817600,-0.536200,0.172300,-0.895700,-0.361700,0.258500 -0.690200,-0.543900,-0.231600,0.645500,-0.679600,0.348600 0.108100,-0.513200,0.462900,0.157700,-0.950900,0.266400 -0.789500,0.223600,0.082170,-0.954200,0.298500,0.018870 0.048070,-0.512300,-0.489000,0.080120,-0.946800,-0.311800 0.136100,0.254300,-0.606200,0.469900,0.265200,-0.841900 0.348300,-0.493300,0.381800,-0.530400,-0.678800,-0.508000 0.426500,0.677300,0.251600,0.810900,0.369900,0.453500 0.422800,0.667000,-0.263800,0.856600,0.196200,-0.477300 0.495500,-0.076930,0.451400,0.860800,0.170600,0.479600 0.810500,0.401000,-0.034210,-0.845800,-0.378800,-0.375700 -0.358100,-0.499100,-0.505000,-0.182600,-0.934400,-0.305800 -0.628800,0.184100,0.457700,-0.645700,0.344600,0.681500 -0.623300,0.375600,0.393200,-0.763600,0.182000,0.619500 0.082480,0.451600,0.585000,0.272300,0.126900,0.953800 0.270400,-0.036990,-0.640300,0.475100,0.225100,-0.850700 -0.558500,0.063250,0.587100,-0.502400,0.328800,0.799700 0.493300,0.415700,0.100300,0.961300,0.122400,0.246700 0.096730,0.405700,0.587700,0.271700,0.171400,0.947000 0.441000,-0.307600,-0.521700,0.693400,-0.096530,-0.714000 0.811600,0.554600,-0.013920,0.572700,0.800800,-0.175000 0.045490,-0.402900,-0.733300,0.239600,-0.225800,-0.944300 -0.824800,-0.461100,-0.243000,-0.928400,-0.288100,-0.234500 -0.301400,-0.386300,-0.735600,-0.265900,-0.187600,-0.945600 0.092280,0.107900,0.675000,0.252600,0.362000,0.897300 -0.568000,0.188500,0.515200,-0.660100,0.301800,0.687900 -0.578100,0.259300,0.475000,-0.666300,0.277500,0.692100 0.190700,0.299500,-0.562400,0.474000,0.231500,-0.849500 0.445400,-0.367900,-0.505900,0.687600,-0.160600,-0.708100 0.051310,0.036880,0.713200,0.255700,0.277900,0.926000 -0.861000,-0.446400,-0.117500,-0.932900,-0.270300,-0.238000 -0.757800,0.027680,0.375500,-0.822400,0.288100,0.490600 0.250900,-0.152100,0.674200,0.503800,0.121300,0.855300 -0.492900,0.577800,0.491400,-0.633400,0.025720,0.773400 -0.826400,-0.471800,-0.223400,-0.928100,-0.288800,-0.235000 -0.852100,-0.466900,-0.127900,-0.928800,-0.287500,-0.233800 0.403100,0.019510,0.517300,0.677200,0.288200,0.677100 0.277300,0.419100,0.482100,0.714200,0.136500,0.686500 -0.303600,0.686000,-0.455600,0.240900,0.513700,0.823500 0.510600,0.259500,0.166400,0.935700,0.242900,0.255700 0.808700,0.001539,0.073360,0.253500,-0.069370,0.964800 -0.660400,-0.525900,-0.476000,-0.671800,-0.349800,-0.652900 0.073200,0.169500,0.656200,0.248900,0.339100,0.907200 -0.352200,0.144500,-0.653900,-0.258400,0.353100,-0.899200 -0.367100,-0.361600,-0.721400,-0.269800,-0.161000,-0.949400 -0.650600,0.284700,-0.386900,-0.804300,0.242000,-0.542700 0.101100,-0.543400,-0.674300,0.176200,-0.593700,-0.785100 -0.468100,-0.393200,-0.673800,-0.502300,-0.207500,-0.839400 0.580000,0.097450,0.115700,0.919100,0.316600,0.234800 -0.529000,-0.509800,-0.334500,-0.237400,-0.943500,-0.231200 0.184300,-0.126600,-0.705700,0.485500,0.103000,-0.868200 0.607400,0.023350,0.111300,0.928200,0.295800,0.225800 0.234900,0.628400,-0.494700,0.513900,-0.008795,-0.857800 0.492500,0.280300,0.217200,0.941200,0.241900,0.235900 -0.875500,-0.066710,0.134600,-0.947000,0.174500,0.269700 -0.488000,0.267700,-0.542600,-0.494400,0.263200,-0.828400 0.572100,0.089390,0.157800,0.907700,0.360500,0.214800 -0.401600,0.528900,-0.544400,-0.511900,0.062890,-0.856800 -0.319100,-0.539600,-0.023430,0.132800,-0.990800,0.025320 0.192300,0.229800,0.586700,0.489900,0.303600,0.817200 0.925000,0.201600,-0.031190,0.937600,-0.133600,-0.321100 -0.845300,-0.391600,-0.233000,-0.949000,-0.203700,-0.240700 0.825200,0.539400,0.026690,0.682100,0.679500,0.270100 -0.874100,-0.378000,-0.129100,-0.955100,-0.170900,-0.242200 0.590800,-0.031970,0.236800,0.945200,0.220200,0.241300 0.251300,-0.042260,0.654800,0.491500,0.233700,0.838900 0.412400,0.138500,0.446100,0.673100,0.329300,0.662200 -0.712000,0.567800,-0.158200,-0.970000,0.031040,-0.240900 -0.332200,-0.316900,-0.737700,-0.270000,-0.099650,-0.957700 -0.876000,-0.401500,-0.102400,-0.945000,-0.223800,-0.238500 -0.537200,-0.242400,-0.652100,-0.511500,-0.032150,-0.858700 0.476900,-0.490100,-0.041790,-0.751700,-0.659500,0.006925 0.032240,-0.141700,0.756200,0.266000,0.084240,0.960300 0.230900,-0.072130,0.674500,0.514400,0.126000,0.848200 0.434300,0.577800,0.249500,0.879800,0.047910,0.473000 0.786700,0.560200,-0.044240,0.495700,0.753000,-0.432600 0.026790,0.092640,0.699600,0.269700,0.314900,0.910000 0.503800,-0.306800,-0.445200,0.853300,-0.096010,-0.512500 -0.050920,0.676300,0.481900,-0.161900,0.637600,-0.753100 -0.634100,-0.131700,0.576400,-0.689800,0.069670,0.720700 0.853100,0.227800,-0.058590,-0.684600,0.084070,-0.724100 -0.592400,0.676000,-0.120900,0.782500,0.597700,0.174700 0.496900,0.064090,0.372300,0.807500,0.379800,0.451300 0.424600,0.213500,0.390600,0.848900,0.287200,0.443800 -0.470100,0.365400,0.531700,-0.480600,0.204600,0.852700 0.834100,-0.038610,0.045420,0.882800,-0.059910,0.465900 -0.441200,0.212700,-0.589000,-0.488700,0.299200,-0.819500 -0.579900,-0.529300,0.055420,-0.222400,-0.974900,0.007694 -0.347100,-0.391600,-0.721600,-0.267900,-0.203700,-0.941600 -0.579600,-0.529000,-0.064130,-0.220900,-0.974000,-0.050560 -0.003954,0.344900,0.627600,0.282900,0.210900,0.935700 -0.776000,-0.521300,0.313000,-0.804500,-0.349300,0.480400 0.465500,0.365700,0.240200,0.893400,0.165700,0.417700 0.918100,0.276100,-0.053320,0.800100,0.017650,-0.599600 -0.760900,-0.396600,-0.407700,-0.851500,-0.219000,-0.476400 -0.521400,0.692200,-0.295600,0.612800,0.634200,0.471400 -0.544700,0.087890,0.585300,-0.467200,0.345600,0.813800 0.601300,0.533300,0.072260,0.110500,-0.314500,0.942800 -0.487000,-0.391900,-0.662800,-0.500800,-0.205700,-0.840700 -0.436700,0.090810,-0.642800,-0.480800,0.349100,-0.804400 -0.453100,-0.408700,-0.678600,-0.500500,-0.224800,-0.836000 -0.817100,-0.313300,-0.333500,-0.869200,-0.098080,-0.484700 0.441900,0.564300,0.236600,0.885100,0.029700,0.464400 0.596500,0.073070,0.062210,0.921000,0.388500,-0.027190 -0.868900,-0.244800,-0.206300,-0.968600,-0.033420,-0.246200 0.238600,-0.487300,0.466100,0.023590,-0.997400,0.068650 -0.078760,-0.544400,0.610000,-0.007211,-0.706700,-0.707500 0.451800,0.239700,0.326300,0.836200,0.282000,0.470400 -0.635300,-0.495300,-0.240300,-0.338600,-0.921700,-0.189300 0.544000,-0.038920,0.348900,0.842300,0.223200,0.490600 -0.247500,-0.497700,-0.544200,-0.100300,-0.929900,-0.354000 0.001411,-0.022290,0.744200,0.290500,0.199200,0.935900 0.405400,-0.508500,0.296100,-0.874000,0.016430,-0.485600 -0.082070,0.325700,-0.638800,-0.014190,0.211900,-0.977200 -0.774600,-0.490900,-0.331400,-0.831400,-0.306000,-0.463800 0.219100,0.419200,0.521700,0.513900,0.109600,0.850800 -0.541400,-0.466200,0.613000,-0.461700,-0.316100,0.828800 0.181200,0.684900,-0.382000,-0.589800,0.529700,0.609600 0.824700,-0.237000,0.068850,-0.512100,0.021240,0.858700 0.422200,0.523900,0.277100,0.868600,0.060750,0.491700 0.492100,0.461900,0.085160,0.815200,-0.002274,0.579100 0.844900,-0.004198,-0.033100,0.906500,-0.235800,-0.350100 -0.570000,0.537700,0.419100,-0.699600,0.049220,0.712800 -0.673600,0.422800,-0.290300,-0.865000,0.138000,-0.482400 0.438400,0.248600,0.344600,0.836700,0.280900,0.470200 0.566100,0.153500,0.062170,0.943200,0.329600,-0.040340 0.423200,0.625000,0.267600,0.876400,-0.000764,0.481500 0.161200,-0.233300,0.723800,0.272400,-0.047780,0.961000 -0.808700,-0.363600,-0.334400,-0.861500,-0.161500,-0.481400 0.213600,-0.160300,0.698000,0.511100,0.115200,0.851800 -0.517000,-0.541800,-0.592200,-0.414000,-0.583300,-0.698900 0.212600,-0.080590,0.686400,0.500300,0.142800,0.854000 0.372500,0.696800,0.063010,-0.700400,0.708400,-0.087450 0.571700,-0.081800,0.315800,0.860900,0.185900,0.473600 -0.408900,0.168600,0.625500,-0.464900,0.323300,0.824200 0.256500,-0.076920,0.659900,0.506800,0.156200,0.847800 -0.331400,0.680700,0.441800,0.447800,0.491600,-0.746900 -0.492300,0.082290,0.616500,-0.451600,0.339700,0.825000 -0.747600,-0.426700,0.417900,-0.837400,-0.227000,0.497300 0.505000,0.164000,0.280700,0.819200,0.357600,0.448300 -0.484900,0.688600,-0.330400,0.583900,0.564200,0.583700 0.518700,0.016980,0.364600,0.831400,0.282800,0.478300 0.214400,0.614900,0.508100,0.501300,-0.014040,0.865200 0.301200,-0.547000,0.445400,-0.148200,-0.978500,-0.143700 -0.101300,0.704600,-0.579500,-0.008449,0.789400,-0.613800 0.448600,0.193900,-0.356300,0.814000,0.316300,-0.487300 -0.470200,0.143000,0.602300,-0.462300,0.356300,0.812000 0.853900,0.509200,-0.024890,0.782400,0.566800,-0.258000 -0.795200,-0.320300,-0.371300,-0.868600,-0.101500,-0.485000 -0.648500,-0.533500,-0.484200,-0.669000,-0.359900,-0.650300 -0.539100,-0.191800,0.654600,-0.495300,0.013110,0.868600 -0.450000,-0.425200,-0.676000,-0.499600,-0.226900,-0.836000 0.296800,-0.246700,0.650100,0.514600,-0.018640,0.857200 0.316900,-0.336600,0.629800,0.507300,-0.174600,0.843900 -0.487600,0.135800,-0.592200,-0.478600,0.360500,-0.800600 0.473300,0.683000,-0.091050,0.868400,0.459100,-0.187300 -0.052640,0.673500,-0.602900,0.085670,0.338600,-0.937000 -0.192600,-0.524800,0.473500,-0.054980,-0.966600,0.250500 0.117800,0.003056,-0.703600,0.234400,0.271600,-0.933400 -0.482000,0.032010,-0.639900,-0.491400,0.290800,-0.821000 0.082260,0.340300,-0.602900,0.240200,0.197700,-0.950400 0.752700,0.007868,0.034420,-0.923700,0.219100,0.314200 0.500200,0.380900,-0.099640,0.950900,0.177200,-0.253700 0.022050,-0.021940,-0.734300,0.238700,0.225200,-0.944600 0.391900,0.476800,-0.333700,0.850500,0.100500,-0.516200 0.212800,-0.517600,0.373900,0.199200,-0.960100,0.196500 0.263600,0.099510,0.596900,0.476300,0.347000,0.807900 0.177100,0.194200,-0.604000,0.464200,0.307700,-0.830600 0.531500,-0.369800,0.387000,0.867500,-0.152900,0.473300 0.588200,0.093690,-0.008219,0.933600,0.358300,-0.002870 0.436900,0.084540,0.450600,0.673500,0.343600,0.654400 -0.754200,-0.506600,0.360100,-0.804800,-0.347300,0.481400 -0.482000,-0.516600,0.627200,-0.456400,-0.321500,0.829700 0.086690,0.517100,0.577800,0.273300,0.049130,0.960700 0.314800,0.213500,0.509600,0.682400,0.289200,0.671400 -0.847000,0.052390,0.120800,-0.917600,0.321800,0.233600 -0.739600,0.345200,-0.157500,-0.949600,0.199700,-0.241800 0.237100,0.113100,-0.603400,0.473400,0.335500,-0.814500 -0.687000,-0.496200,-0.021720,-0.382400,-0.924000,0.005427 -0.807300,0.103700,-0.187700,-0.904900,0.359000,-0.228500 0.513400,-0.340100,0.428400,0.861300,-0.170700,0.478600 -0.011320,-0.105700,0.764500,0.169500,0.168900,0.971000 0.090860,0.166600,0.652500,0.255600,0.336100,0.906500 0.518100,-0.395300,0.400900,0.852000,-0.233500,0.468600 -0.482000,0.458200,-0.503900,-0.510200,0.120000,-0.851600 -0.613700,0.466700,0.383600,-0.790100,0.118400,0.601500 -0.739000,0.324800,-0.177500,-0.946400,0.215700,-0.240600 0.092850,0.138700,-0.660500,0.230100,0.354700,-0.906200 0.423400,0.163800,-0.418800,0.801700,0.323400,-0.502700 0.397300,-0.276600,-0.568000,0.697800,-0.059760,-0.713800 0.422700,-0.027300,-0.513000,0.698000,0.216600,-0.682600 -0.500200,-0.539700,-0.145100,-0.128200,-0.990600,-0.047970 0.847300,0.522400,-0.001124,0.758900,0.651100,-0.014580 -0.248200,0.480200,-0.602500,-0.276400,0.097600,-0.956100 0.509200,0.178000,-0.260200,0.895000,0.322200,-0.308400 -0.328800,0.631700,-0.572600,-0.275800,-0.008759,-0.961200 -0.311400,0.436600,0.593700,-0.244200,0.105100,0.964000 -0.877300,-0.063710,-0.114100,-0.953300,0.176900,-0.244900 0.546100,0.023890,0.311300,0.827900,0.325100,0.457000 -0.477200,-0.544000,-0.495800,0.387300,-0.700300,0.599700 -0.343000,-0.196800,-0.739600,-0.269700,0.032440,-0.962400 0.238100,-0.512200,0.372400,0.226500,-0.948800,0.220200 0.477800,0.306800,0.242600,0.882200,0.244500,0.402400 0.225900,-0.427300,-0.660200,0.475800,-0.230000,-0.849000 0.505600,0.284800,-0.157500,0.932200,0.246300,-0.265000 0.145700,-0.312000,-0.722900,0.245300,-0.093220,-0.965000 0.591200,-0.071800,-0.260800,0.947900,0.163600,-0.273400 0.485500,0.053210,0.401700,0.815300,0.360600,0.453100 0.749700,0.578500,-0.044790,0.352400,0.795200,-0.493500 -0.013050,0.072870,-0.713300,0.229200,0.349700,-0.908400 -0.338500,0.683200,-0.437900,0.445100,0.515500,0.732200 -0.408600,-0.518900,0.410800,-0.130200,-0.965300,0.226500 0.435800,0.284700,-0.327200,0.829300,0.240300,-0.504400 -0.429200,0.587900,0.528200,-0.469400,0.018480,0.882800 -0.361900,-0.097300,0.728800,-0.252800,0.160700,0.954100 -0.864700,-0.457700,-0.008303,-0.958100,-0.286100,0.013720 0.121100,-0.508500,0.560200,-0.437800,0.002935,-0.899100 0.471300,0.269700,-0.274600,0.838200,0.231100,-0.494100 0.773400,0.020290,-0.057540,-0.681200,0.202000,-0.703700 0.037880,-0.146400,-0.751500,0.243500,0.097600,-0.965000 -0.007624,0.209600,-0.660800,0.233900,0.298400,-0.925400 0.198700,-0.524200,0.353100,0.184900,-0.966200,0.179700 0.632300,-0.251900,-0.162100,0.961500,-0.065620,-0.266700 0.416900,0.024980,0.501000,0.679300,0.304500,0.667700 -0.183600,0.679400,0.485900,0.097300,0.491700,-0.865300 0.286000,0.429100,0.470700,0.706400,0.173900,0.686100 0.800300,0.563400,0.011710,0.551600,0.826800,0.110200 0.200600,0.127200,-0.617400,0.450500,0.359100,-0.817400 -0.514400,-0.081860,0.655600,-0.474300,0.138300,0.869400 0.072810,0.209500,-0.640500,0.233700,0.298500,-0.925400 -0.032890,0.683100,-0.594400,0.192600,0.487900,-0.851400 0.620600,-0.362000,-0.163300,0.946700,-0.178100,-0.268400 -0.735700,-0.301700,0.478900,-0.820600,-0.115000,0.559800 0.501600,-0.077550,-0.433800,0.851600,0.135200,-0.506500 -0.346600,-0.391200,0.725100,-0.236300,-0.185700,0.953800 -0.409400,-0.091880,0.715900,-0.378800,0.212900,0.900600 -0.857700,-0.483400,-0.065380,-0.955700,-0.294000,0.010720 0.623800,-0.018690,-0.039540,0.978500,0.206100,-0.006214 0.143100,-0.499400,0.487700,0.181900,-0.935500,0.302900 0.507500,-0.173700,0.453800,0.876500,0.022130,0.480900 0.834200,-0.112600,-0.056300,0.698400,0.183000,-0.691900 0.540700,0.219000,-0.099620,0.925300,0.291000,-0.243400 -0.312200,0.224400,-0.637400,-0.258300,0.289900,-0.921500 0.795500,-0.398400,0.006691,0.369200,-0.927300,0.061790 -0.832000,-0.544900,-0.085710,-0.505300,-0.858200,-0.090250 -0.411200,-0.376800,0.710400,-0.385200,-0.173300,0.906400 0.769800,0.464200,-0.032750,-0.669200,-0.640900,-0.376200 0.315000,-0.421700,-0.611900,0.474900,-0.224900,-0.850800 -0.687200,0.691300,-0.198100,-0.780900,0.593900,-0.193500 0.497100,0.437000,-0.077640,0.941000,0.024950,-0.337400 -0.571000,-0.505200,-0.576200,-0.509500,-0.348000,-0.787000 -0.539300,0.017770,0.614800,-0.477800,0.268900,0.836300 -0.397600,-0.511600,-0.672100,-0.254700,-0.350800,-0.901100 0.540400,0.047400,-0.308800,0.798300,0.316300,-0.512500 -0.867000,-0.102300,0.185800,-0.950400,0.152300,0.271300 0.261800,0.279600,-0.528200,0.531400,0.249200,-0.809600 0.754900,-0.408600,-0.022590,0.132300,-0.961700,-0.239900 0.323800,0.677100,-0.403700,0.676700,0.369100,-0.637000 0.683300,-0.309700,-0.037920,0.435800,0.776900,-0.454400 0.810700,0.113100,0.054940,-0.710000,0.364500,0.602500 0.115500,0.252600,0.617200,0.264300,0.300400,0.916500 -0.826800,0.118900,0.021730,-0.931000,0.364800,0.012870 0.590300,-0.346700,-0.278400,0.948300,-0.194900,-0.250300 -0.573300,0.671000,0.176000,0.636600,0.700300,-0.323000 -0.459800,-0.509700,-0.406100,-0.232900,-0.943900,-0.234200 -0.788400,0.114100,0.242500,-0.896600,0.362600,0.254300 -0.247100,-0.372000,0.754100,-0.234100,-0.140700,0.962000 -0.751400,0.325400,-0.127800,-0.948700,0.211200,-0.235300 -0.443500,-0.504000,0.443100,-0.180200,-0.945000,0.272900 0.601800,-0.474400,0.126400,0.934800,-0.272600,0.227600 0.396500,-0.508100,-0.103400,0.320200,-0.943000,-0.090380 -0.018410,0.279500,-0.642900,0.238000,0.248100,-0.939000 0.001685,0.299700,-0.632700,0.238300,0.231500,-0.943200 0.844600,0.469400,0.069940,0.397600,0.236900,0.886500 0.102000,0.077450,0.684200,0.258600,0.364200,0.894700 -0.552300,-0.116800,0.640700,-0.481300,0.131900,0.866600 0.314800,-0.528200,0.147600,0.232000,-0.971100,0.056630 0.591800,-0.431300,-0.212400,0.935900,-0.238200,-0.259600 -0.832000,-0.517400,-0.138600,-0.907900,-0.351100,-0.229000 0.601700,-0.341200,-0.242500,0.949700,-0.156700,-0.271300 0.450600,0.551000,0.215500,0.967800,0.022870,0.250600 0.693300,-0.408100,0.027310,-0.123900,-0.959400,0.253300 0.415400,0.255500,0.381800,0.853900,0.257200,0.452500 0.285000,-0.501500,-0.602100,0.451900,-0.338600,-0.825300 0.460800,0.542600,-0.170400,0.961400,0.039770,-0.272400 0.051950,0.188300,-0.652700,0.229700,0.317500,-0.920000 0.381100,-0.547300,0.364200,-0.045920,-0.998500,-0.030300 0.487600,-0.266800,-0.479300,0.831600,-0.040000,-0.553900 0.466100,0.336700,0.251200,0.865500,0.210500,0.454500 -0.811100,-0.446500,0.300600,-0.878400,-0.265400,0.397500 0.168600,-0.514200,0.423100,0.155900,-0.952100,0.263000 0.379700,0.329900,-0.398800,0.746000,0.211400,-0.631500 -0.277300,-0.462100,0.724300,-0.239900,-0.276400,0.930600 0.338100,-0.481300,-0.571700,0.667000,-0.289600,-0.686500 0.164300,-0.538900,0.288500,0.113800,-0.987400,0.110400 0.601400,-0.401000,-0.202200,0.939700,-0.205900,-0.273000 -0.322500,-0.467000,0.711700,-0.232600,-0.294100,0.927000 0.824800,-0.014610,-0.059730,0.674200,-0.143600,-0.724400 -0.626200,0.294300,0.414900,-0.678600,0.247100,0.691800 -0.317700,-0.382100,0.734500,-0.243900,-0.196500,0.949700 0.187700,-0.176500,-0.708700,0.487100,0.045180,-0.872200 -0.865400,-0.061500,0.166700,-0.945400,0.183800,0.269200 -0.435900,-0.270300,-0.711400,-0.450500,-0.046050,-0.891600 -0.466700,0.469300,-0.511500,-0.508400,0.102400,-0.855000 -0.655200,0.707300,0.236700,-0.453300,0.865400,0.213500 0.586600,-0.526700,-0.117500,0.909800,-0.323700,-0.259800 -0.563900,-0.514500,0.262600,-0.257800,-0.953800,0.154000 -0.152600,0.395600,0.628100,0.016550,0.162500,0.986600 -0.766900,0.037320,0.354700,-0.819000,0.311700,0.481800 0.025680,-0.490600,0.583800,-0.134500,-0.762900,-0.632400 0.642600,-0.322700,-0.083380,0.961600,-0.153600,-0.227400 -0.337000,-0.341400,0.736800,-0.245200,-0.133100,0.960300 -0.573800,0.714000,0.343000,-0.232200,0.960400,0.154200 0.489300,-0.066920,-0.451200,0.824400,0.195700,-0.531100 -0.199200,0.487600,0.616000,-0.105700,0.056550,0.992800 -0.672800,0.173000,0.413900,-0.821300,0.319300,0.472700 -0.434400,0.362100,-0.549500,-0.503300,0.191000,-0.842700 0.510300,0.531200,-0.058290,-0.254000,0.690300,-0.677400 -0.402800,0.712600,-0.489100,-0.165700,0.946700,-0.276100 -0.420200,-0.544900,-0.646600,-0.287800,-0.841200,-0.457800 0.470500,-0.076840,-0.480400,0.707800,0.139500,-0.692500 0.424600,0.232800,0.379900,0.845000,0.284300,0.452900 -0.715800,0.692200,-0.082450,-0.742400,0.633000,-0.219500 0.456200,-0.097270,0.500200,0.701700,0.176800,0.690100 -0.498300,-0.538800,-0.163500,-0.141000,-0.987000,-0.077220 -0.568900,-0.007026,0.607100,-0.480500,0.251700,0.840100 -0.785500,0.219800,0.116500,-0.918400,0.297700,0.260600 0.255600,0.202500,0.558800,0.471000,0.329000,0.818500 0.367500,0.669500,0.362800,0.795800,0.256800,0.548400 -0.057470,-0.529600,0.127400,-0.107800,-0.976200,-0.188200 -0.023050,0.214200,-0.663200,0.233300,0.298300,-0.925500 -0.729300,0.666800,-0.077530,-0.952000,0.232000,-0.199700 0.097770,0.093250,-0.677400,0.228700,0.352000,-0.907600 -0.720600,0.406000,-0.188000,-0.957300,0.158600,-0.241700 -0.546800,-0.547000,-0.442700,0.150800,-0.977200,0.149700 -0.185200,-0.507100,0.022290,0.297000,-0.949100,-0.105200 -0.612400,-0.309800,-0.599100,-0.702300,-0.097540,-0.705100 -0.592200,0.700400,0.360900,-0.525100,0.778600,0.343600 0.799600,0.543100,-0.053710,0.452900,0.633000,-0.627800 -0.059350,0.146000,0.693000,0.006052,0.345600,0.938300 0.027010,-0.037100,-0.736700,0.238600,0.225300,-0.944600 -0.498000,0.358700,-0.512400,-0.502900,0.194300,-0.842200 0.631300,0.526000,0.063480,0.130600,-0.668000,0.732600 -0.632800,0.335200,0.394000,-0.804400,0.206100,0.557200 0.297000,-0.086980,-0.636400,0.480900,0.161700,-0.861700 -0.311500,0.355000,0.607700,-0.256300,0.198600,0.946000 -0.447300,0.282800,-0.562300,-0.498300,0.245600,-0.831500 0.274800,-0.391800,-0.642200,0.478000,-0.202500,-0.854700 -0.795100,-0.091720,0.366700,-0.847800,0.161800,0.505000 0.097110,0.667100,-0.567200,0.321800,0.218800,-0.921200 0.394500,0.618300,0.320200,0.877000,0.008389,0.480500 -0.619200,-0.519000,0.047900,-0.264000,-0.964500,0.001712 0.529700,-0.263500,0.414800,0.873700,-0.024630,0.485800 0.334200,0.322400,0.448400,0.704100,0.218300,0.675700 0.584800,0.102300,0.011950,0.932900,0.359900,-0.010190 0.163000,0.677100,-0.391700,-0.442800,0.542100,0.714200 0.023370,-0.518000,0.479000,0.072810,-0.961500,0.264800 -0.511900,-0.397000,0.649600,-0.477400,-0.197500,0.856200 -0.271600,-0.539300,0.127800,0.101000,-0.990400,-0.094330 0.343600,-0.518300,0.183300,0.252500,-0.963300,0.091330 -0.622300,0.523900,-0.360300,-0.855200,0.066030,-0.514100 0.314500,0.264000,0.489100,0.701900,0.229500,0.674200 -0.397200,-0.431700,0.702700,-0.292900,-0.212000,0.932300 -0.803100,-0.516400,0.250400,-0.902000,-0.348500,0.254800 -0.478000,0.490200,-0.502400,-0.509700,0.094630,-0.855100 -0.497700,-0.153700,-0.672800,-0.509600,0.093950,-0.855200 -0.273600,-0.478400,-0.718900,-0.261200,-0.288200,-0.921300 0.922000,0.359400,0.024680,0.947600,0.216100,0.235300 -0.775900,-0.501100,0.328000,-0.809800,-0.334400,0.482100 0.121400,0.689700,-0.544100,0.421100,0.570500,-0.705100 0.538000,-0.342900,0.383600,0.858800,-0.159100,0.487100 0.372300,0.446400,-0.374200,0.849900,0.125000,-0.511900 -0.658900,-0.493500,-0.494600,-0.679600,-0.318800,-0.660600 0.568400,0.144200,0.021950,0.945400,0.325800,-0.013360 0.672900,-0.374800,0.067870,-0.191300,-0.521400,0.831600 0.126000,0.703500,0.530800,0.308300,0.793300,0.525000 -0.675500,0.554400,-0.261200,-0.872800,0.044950,-0.486100 0.562900,0.060490,0.239800,0.896800,0.380900,0.225200 -0.643900,-0.486400,0.271200,0.004958,-0.999300,0.036280 0.035470,0.061310,0.709100,0.262800,0.373500,0.889600 -0.437900,0.439700,-0.532900,-0.507900,0.129300,-0.851600 0.519300,-0.463100,0.364200,0.831700,-0.287500,0.475000 -0.670500,0.335400,0.330700,-0.842000,0.201900,0.500300 0.213100,-0.359900,0.687100,0.504400,-0.146900,0.850900 -0.667500,0.449800,-0.294000,-0.865800,0.125400,-0.484400 -0.869400,-0.414900,-0.115800,-0.944400,-0.225300,-0.239400 0.327400,-0.167000,0.630700,0.505100,0.049760,0.861600 0.127000,0.244700,-0.614000,0.395100,0.268600,-0.878500 0.233400,0.463300,0.506400,0.505500,0.078620,0.859200 -0.261400,-0.057230,-0.746500,-0.268500,0.198400,-0.942600 0.579700,-0.273500,0.324000,0.872600,-0.022470,0.487800 0.298000,0.134100,0.560300,0.477100,0.346900,0.807500 -0.866600,-0.000999,0.107300,-0.957000,0.271500,0.102600 -0.626200,0.324800,0.405500,-0.697400,0.228400,0.679300 -0.673900,0.002474,0.502900,-0.662100,0.298700,0.687300 -0.668200,0.708600,-0.188500,-0.440300,0.889000,-0.125900 0.107100,-0.367800,0.726700,0.271400,-0.147000,0.951200 0.593400,0.079870,0.048830,0.927400,0.374000,-0.005240 -0.265300,-0.180100,-0.761000,-0.273500,0.039500,-0.961100 -0.685600,0.490100,-0.252600,-0.868600,0.099280,-0.485400 0.463900,0.131200,0.379300,0.817200,0.335900,0.468400 -0.779400,-0.153500,-0.405400,-0.869600,0.091470,-0.485200 -0.511700,-0.246700,-0.667100,-0.512100,-0.032490,-0.858300 -0.333900,-0.488300,-0.698700,-0.260200,-0.302200,-0.917000 0.481100,0.594600,0.087400,0.963900,-0.004109,0.266100 0.355500,0.702400,0.340400,0.554600,0.782600,0.282800 0.187500,0.204500,-0.594500,0.465200,0.299900,-0.832900 0.470900,-0.511800,0.119800,-0.969200,0.006011,-0.246300 0.710500,0.600500,0.020120,0.203400,0.957400,0.204900 -0.811500,-0.106900,-0.337600,-0.864800,0.141000,-0.481900 -0.627700,-0.303400,-0.584200,-0.713800,-0.097240,-0.693600 0.067490,0.691400,-0.563300,0.219300,0.594100,-0.773900 0.590500,0.086710,-0.024980,0.939900,0.341000,-0.019090 -0.694100,0.372500,-0.270400,-0.859900,0.175400,-0.479400 0.511000,0.339300,-0.075280,0.976000,0.217700,-0.001871 -0.412100,0.705400,-0.501200,-0.286000,0.839900,-0.461300 0.534400,-0.068620,0.379300,0.872700,0.160300,0.461100 0.135300,0.232400,0.617800,0.295500,0.250700,0.921900 0.416200,0.628300,0.280900,0.872400,-0.014480,0.488600 0.268100,0.540700,0.472900,0.732600,0.043820,0.679200 -0.690400,0.264400,-0.327300,-0.843300,0.261400,-0.469700 -0.075520,0.402700,0.625500,0.016890,0.150400,0.988500 0.401700,-0.532000,0.302600,-0.873000,-0.006779,-0.487600 -0.281300,-0.525300,-0.583400,0.268900,0.017420,0.963000 -0.199500,0.177000,0.683700,-0.065170,0.325800,0.943200 0.555300,-0.216900,0.370400,0.871600,0.022680,0.489700 0.469000,0.660400,0.134000,0.960000,0.116300,0.254700 -0.252000,0.195200,-0.664000,-0.262300,0.312600,-0.913000 0.183500,0.564400,0.527100,0.510900,0.028490,0.859100 -0.836500,-0.492900,0.164100,-0.914100,-0.313000,0.257800 -0.645400,0.654500,-0.311800,-0.868500,0.083930,-0.488600 -0.441700,0.466800,-0.526800,-0.507200,0.108100,-0.855000 -0.507500,0.706000,0.337700,0.411700,0.805200,-0.426700 -0.455900,-0.497500,0.507600,0.391000,-0.342900,-0.854100 0.634400,-0.266800,0.150600,0.969000,-0.006366,0.247200 -0.692100,-0.518300,-0.447500,-0.671800,-0.349600,-0.653000 -0.673500,-0.493100,0.152000,-0.384100,-0.916900,0.108800 -0.513200,-0.388800,-0.647900,-0.503100,-0.195300,-0.841900 0.329600,0.517200,-0.409900,0.695100,0.069810,-0.715500 -0.387800,-0.541900,-0.662800,-0.228400,-0.584700,-0.778400 0.530400,0.047390,0.325300,0.834600,0.299300,0.462500 -0.524000,0.584600,-0.460300,-0.716900,0.025200,-0.696700 0.823200,-0.216100,0.069450,-0.464700,-0.104700,0.879300 -0.531200,-0.226700,-0.656100,-0.511500,-0.008405,-0.859200 0.491000,-0.424300,0.436500,0.863800,-0.198900,0.462900 0.453100,0.382700,0.257400,0.859800,0.177800,0.478700 -0.411400,0.385900,0.560000,-0.485900,0.184000,0.854400 0.522200,-0.170300,0.427700,0.870200,0.059060,0.489100 -0.545900,0.520500,-0.442000,-0.715500,0.069070,-0.695200 -0.262400,-0.036500,0.742500,-0.230500,0.240700,0.942800 -0.328800,-0.243400,-0.743800,-0.275400,-0.032440,-0.960800 0.489800,-0.146900,-0.471500,0.854400,0.085230,-0.512600 -0.706200,-0.531700,-0.423200,-0.798800,-0.355800,-0.485100 0.278400,0.185200,0.551200,0.495000,0.289900,0.819100 -0.454800,0.688500,-0.360700,0.594000,0.560300,0.577300 0.778400,0.451000,-0.026820,-0.751500,-0.589800,-0.295700 -0.101900,-0.105700,-0.764100,-0.012430,0.141600,-0.989800 0.153500,0.436500,-0.553800,0.483900,0.129900,-0.865400 0.486800,0.365900,-0.157900,0.948600,0.173700,-0.264500 0.371600,-0.424600,0.566300,0.710500,-0.183000,0.679500 -0.587200,0.075870,-0.553800,-0.671700,0.349900,-0.653000 0.508000,0.126500,0.303800,0.809200,0.390200,0.439300 0.437100,0.103700,0.440900,0.676100,0.333200,0.657100 -0.693200,-0.492300,-0.078080,-0.386900,-0.917700,-0.090450 -0.319000,0.679200,0.573300,-0.233400,0.434200,0.870100 -0.152200,0.346700,-0.633400,-0.014060,0.200200,-0.979600 -0.401800,0.102700,-0.656500,-0.314000,0.353200,-0.881300 0.222500,0.707000,-0.465800,0.320600,0.847500,-0.423100 0.457400,0.703900,-0.028350,0.604600,0.796500,-0.007637 -0.272500,0.648300,-0.588500,-0.272300,0.036240,-0.961500 0.427400,0.705900,-0.177100,0.536100,0.828800,-0.160600 0.145700,0.244100,0.609200,0.471600,0.303300,0.828000 -0.346100,-0.106200,0.734400,-0.236500,0.160800,0.958200 -0.517300,0.500300,-0.473700,-0.713800,0.090290,-0.694500 0.261200,-0.062210,0.654500,0.509300,0.193700,0.838500 -0.312400,-0.107900,-0.740800,-0.271000,0.139100,-0.952500 -0.169400,0.359300,0.635100,0.008470,0.172300,0.985000 0.873700,0.094860,0.061420,0.646000,-0.324100,0.691200 0.422500,-0.260100,0.546800,0.724800,-0.037960,0.687900 0.511100,0.304400,-0.118000,0.932900,0.230800,-0.276600 -0.746600,0.255400,-0.217800,-0.933100,0.268800,-0.238900 -0.112200,0.223500,-0.665000,-0.013670,0.299000,-0.954200 0.572400,0.029270,-0.236300,0.938100,0.266400,-0.221400 -0.237000,0.181700,-0.672800,-0.259300,0.327400,-0.908600 -0.328600,-0.173600,-0.742900,-0.275300,0.045820,-0.960300 0.474300,-0.397500,-0.468700,0.785200,-0.218000,-0.579600 -0.715700,0.090460,-0.402800,-0.817200,0.349200,-0.458600 0.596800,-0.496500,0.121200,0.918900,-0.327500,0.219800 -0.285000,0.690200,0.575200,-0.197000,0.594000,0.779900 -0.322800,0.366100,-0.598400,-0.264700,0.185600,-0.946300 0.851000,-0.124400,-0.037600,0.835200,0.354600,-0.420300 -0.261000,-0.544300,0.593000,0.196600,-0.504100,-0.841000 0.390900,-0.012160,-0.539000,0.679100,0.225300,-0.698600 0.668500,-0.303100,0.047780,0.479400,0.733400,0.481900 -0.537400,0.208600,0.534900,-0.659100,0.297700,0.690600 0.438000,-0.243300,0.532100,0.721100,-0.040720,0.691600 0.398200,-0.233300,0.572800,0.713000,-0.038130,0.700100 -0.473400,0.067280,0.634200,-0.476300,0.350400,0.806500 0.423300,-0.220100,0.547600,0.717100,0.002432,0.697000 -0.247900,-0.488400,-0.586300,0.279700,-0.835300,0.473300 -0.747300,-0.262000,0.465000,-0.858400,-0.032580,0.511900 -0.758800,-0.135300,-0.438500,-0.868600,0.098050,-0.485700 0.220200,-0.266900,-0.690700,0.487300,-0.041570,-0.872300 0.222800,0.638400,-0.501600,0.487200,0.003548,-0.873300 0.271100,-0.166900,-0.661500,0.486300,0.066400,-0.871300 -0.747300,-0.113700,-0.454500,-0.847300,0.126800,-0.515800 0.125500,0.405800,0.578900,0.384500,0.146900,0.911400 0.425800,0.194900,0.401800,0.811100,0.329200,0.483600 -0.262200,0.265100,0.641400,-0.222300,0.233100,0.946700 0.521400,-0.052010,0.396300,0.847100,0.249200,0.469400 0.579800,-0.123400,0.314000,0.870400,0.078560,0.486000 0.850000,0.259300,-0.052660,-0.781100,0.021750,-0.624100 0.284100,-0.356800,-0.643900,0.481500,-0.161000,-0.861600 -0.491900,-0.096990,0.670800,-0.483100,0.155300,0.861700 0.482100,0.664300,-0.051820,0.987400,0.156400,-0.025390 0.483600,0.304400,-0.217300,0.932600,0.214300,-0.290300 -0.426500,0.105500,-0.642400,-0.477800,0.359700,-0.801500 0.501100,-0.230100,0.466300,0.815300,-0.042920,0.577500 0.610300,-0.156900,-0.231700,0.956800,0.085860,-0.277800 0.030710,-0.323800,0.755100,0.272300,-0.088150,0.958200 0.425500,0.436400,-0.286800,0.852100,0.147300,-0.502300 0.350300,0.380600,-0.413000,0.691600,0.190800,-0.696700 0.358800,-0.522500,0.001809,0.262400,-0.965000,-0.003754 0.464500,0.365400,-0.237700,0.933500,0.207000,-0.292900 0.317500,-0.196800,-0.637000,0.487300,0.032440,-0.872600 -0.434500,-0.226800,0.713800,-0.474700,-0.022700,0.879900 0.504400,-0.127800,0.450200,0.880000,0.068160,0.470100 0.686100,0.543200,-0.069220,-0.041940,-0.301700,-0.952500 -0.854100,-0.166600,-0.259200,-0.968100,0.065420,-0.241700 -0.538600,-0.336700,0.647000,-0.473800,-0.119500,0.872500 0.792200,0.544800,0.058780,0.401500,0.617700,0.676200 0.222300,0.411200,-0.519500,0.481500,0.154300,-0.862800 0.537700,0.082450,-0.285700,0.847000,0.338900,-0.409600 -0.183500,-0.523400,-0.100100,0.131200,-0.965900,0.223300 -0.684500,0.677700,-0.231100,-0.787000,0.442600,-0.429900 -0.605900,0.509600,-0.381300,-0.716100,0.075810,-0.693900 -0.454600,-0.350000,-0.690500,-0.506100,-0.161200,-0.847300 0.487200,-0.287500,-0.478100,0.795000,-0.079050,-0.601500 -0.581600,-0.500900,-0.307400,-0.295000,-0.941100,-0.165200 -0.102200,0.059650,-0.724000,-0.013430,0.343400,-0.939100 0.304600,0.393200,0.459000,0.706200,0.139900,0.694000 -0.769600,-0.273600,-0.425800,-0.871500,-0.055220,-0.487300 0.440200,-0.487200,0.163000,0.030970,-0.999400,-0.018450 -0.777300,0.097250,0.294600,-0.810700,0.362000,0.460200 -0.271200,0.537600,0.593700,-0.231700,0.063570,0.970700 0.217200,0.437200,0.520200,0.508900,0.150800,0.847500 0.311800,-0.062140,-0.623500,0.478800,0.181100,-0.859000 0.887000,0.178000,0.072020,0.331000,-0.039510,0.942800 0.272300,-0.234900,0.665300,0.516800,-0.008060,0.856100 0.385100,-0.499100,-0.228400,0.308300,-0.937000,-0.164000 -0.020490,-0.540300,0.174400,-0.062030,-0.992700,-0.103100 0.880800,-0.197800,-0.043880,0.837600,0.190400,-0.512100 -0.393400,-0.067640,0.716300,-0.250100,0.163500,0.954300 -0.323100,0.476700,0.585500,-0.266800,0.110200,0.957400 -0.809800,-0.166800,0.358700,-0.856300,0.066550,0.512200 -0.142400,0.666500,0.474400,-0.013160,0.882000,-0.471000 -0.822300,-0.368300,-0.308500,-0.861500,-0.162000,-0.481200 -0.607200,-0.043960,-0.583700,-0.699100,0.225000,-0.678700 0.765700,0.558200,-0.060210,0.322900,0.592300,-0.738200 0.276300,0.122200,0.579400,0.480100,0.389200,0.786200 0.609900,-0.176600,-0.239700,0.965500,0.046750,-0.256200 0.447500,0.375400,-0.269100,0.838900,0.192100,-0.509200 0.478600,0.527400,-0.110600,0.963800,0.082600,-0.253400 0.779500,-0.192500,-0.006287,-0.880500,-0.465700,-0.088350 0.633400,-0.266900,-0.154400,0.961600,-0.029980,-0.272900 -0.726400,0.608200,0.107400,-0.961600,0.005087,0.274500 -0.504700,0.564400,-0.480000,-0.616900,0.033920,-0.786300 0.817800,0.461700,-0.069860,-0.198400,-0.131500,-0.971300 0.283600,0.214300,-0.534700,0.676400,0.295800,-0.674500 0.850400,0.007541,-0.026160,0.918000,-0.291300,-0.269200 0.082380,0.391000,0.594700,0.266300,0.195800,0.943800 -0.207300,0.691900,-0.591500,-0.106200,0.616600,-0.780100 -0.008630,-0.530000,-0.436700,0.052100,-0.977300,-0.205200 0.479400,-0.463200,0.434800,0.843200,-0.275100,0.461900 0.005252,-0.528500,0.047900,-0.223700,-0.971800,-0.074250 -0.401500,-0.136700,0.724200,-0.271600,0.074780,0.959500 0.058070,-0.538700,-0.049940,-0.162400,-0.985600,0.046850 0.604100,-0.493800,-0.038310,0.940700,-0.339000,-0.011060 -0.296900,0.297400,-0.621200,-0.269000,0.233400,-0.934400 -0.363800,-0.537300,0.343600,-0.091690,-0.984500,0.149800 0.283600,-0.399800,0.636900,0.516000,-0.213600,0.829600 0.800500,-0.212400,-0.042880,-0.827800,-0.276700,-0.487900 0.499200,-0.103800,0.454800,0.853900,0.159000,0.495600 0.029180,-0.528600,-0.585000,-0.239500,0.009991,0.970800 -0.463900,-0.419700,-0.669200,-0.499400,-0.225700,-0.836500 -0.743400,-0.469500,-0.400500,-0.836100,-0.288400,-0.466600 -0.026450,0.547500,-0.602800,0.247000,0.055100,-0.967500 0.470800,0.289800,0.265400,0.853000,0.246000,0.460300 0.830300,0.402000,-0.060670,-0.579200,-0.250700,-0.775700 -0.091140,-0.503100,0.043460,-0.203000,-0.945000,-0.256400 -0.795500,-0.381700,-0.352000,-0.859600,-0.176500,-0.479600 0.371200,0.690000,0.336300,0.691700,0.604600,0.394900 0.180800,-0.487800,-0.494200,0.195700,-0.910200,-0.365000 0.117300,-0.417700,-0.711600,0.238300,-0.223100,-0.945200 0.665800,0.515600,-0.042570,-0.030950,-0.878600,-0.476500 0.642600,-0.121300,-0.034500,0.994300,0.106200,-0.001570 0.562100,0.069260,0.228200,0.900200,0.369200,0.231000 -0.192300,0.405200,0.626800,-0.061740,0.148000,0.987100 0.852000,-0.321200,0.059780,0.625600,-0.378500,0.682100 0.356100,0.711000,0.310500,0.334200,0.924400,0.183600 -0.728300,-0.473500,-0.425100,-0.836500,-0.287400,-0.466500 -0.506100,0.448900,-0.490800,-0.548000,0.128600,-0.826500 0.253800,0.342200,0.516800,0.487800,0.237800,0.840000 0.224200,0.527400,-0.504000,0.487000,0.062640,-0.871200 0.243500,0.291600,0.536700,0.500300,0.243300,0.831000 0.231400,-0.146100,-0.681600,0.485000,0.097350,-0.869100 -0.554000,-0.002413,0.614000,-0.461000,0.280700,0.841800 -0.626200,-0.547300,0.354300,0.171700,-0.975900,-0.134800 -0.442000,-0.437800,-0.677300,-0.498100,-0.244400,-0.832000 0.445900,0.326400,0.291400,0.857300,0.203400,0.472900 -0.560800,-0.543000,0.422600,0.686200,-0.187200,-0.703000 -0.092250,-0.400300,0.755100,0.016680,-0.220000,0.975400 -0.618300,0.006321,-0.554600,-0.690200,0.274600,-0.669500 -0.311900,-0.426500,0.725900,-0.240800,-0.239300,0.940600 -0.745800,-0.491400,-0.382600,-0.830800,-0.308900,-0.462900 0.571900,0.478000,0.020890,0.572400,-0.796800,0.193600 -0.222000,-0.506800,0.724000,-0.226900,-0.369200,0.901200 0.430100,0.421000,0.285200,0.864700,0.111300,0.489700 0.462500,0.554200,0.168200,0.965600,0.039260,0.257200 0.914900,0.391700,0.017310,0.939100,0.298000,0.170900 0.452600,0.291600,0.297300,0.845400,0.243200,0.475500 0.467700,0.685200,-0.106000,0.824800,0.507100,-0.249900 0.512900,-0.286800,-0.434400,0.861100,-0.107000,-0.497100 -0.072110,-0.539900,-0.189000,-0.031900,-0.991900,0.123000 -0.798200,0.094140,-0.238700,-0.906500,0.354100,-0.230000 -0.502200,-0.507100,-0.616500,-0.481800,-0.346900,-0.804700 0.544100,0.152700,0.170900,0.909000,0.336900,0.245200 0.528500,0.267700,0.083970,0.948900,0.247400,0.196100 0.346000,0.165100,0.500500,0.670700,0.319200,0.669500 0.287400,-0.517100,-0.289300,0.239400,-0.960300,-0.143300 -0.807100,0.158000,0.115500,-0.908700,0.330500,0.255000 -0.543100,-0.521000,0.252200,-0.226800,-0.964600,0.134800 -0.152600,0.685000,0.600500,0.011880,0.539700,0.841800 -0.351800,-0.077220,0.728700,-0.255200,0.153100,0.954700 0.269000,0.257200,0.531100,0.489700,0.299200,0.819000 0.231200,-0.369000,0.674800,0.508100,-0.107100,0.854600 0.320400,0.350300,0.454600,0.704800,0.179000,0.686500 0.268100,-0.116100,-0.657700,0.485900,0.122500,-0.865400 0.001112,0.017150,0.733200,0.279200,0.306600,0.910000 -0.308700,-0.323400,-0.743700,-0.272300,-0.106100,-0.956300 -0.159400,-0.539900,0.196700,0.028110,-0.991400,-0.128000 -0.515500,-0.300200,-0.661200,-0.510100,-0.096260,-0.854700 0.183500,0.241200,0.587500,0.487800,0.294500,0.821800 -0.526700,-0.321800,-0.652000,-0.509200,-0.103400,-0.854400 -0.665900,-0.461300,-0.501600,-0.686800,-0.287800,-0.667400 -0.643500,0.402600,-0.350700,-0.861800,0.161600,-0.480800 -0.244000,-0.532600,-0.099690,0.140000,-0.981800,0.128200 0.806400,-0.040020,0.072050,0.357600,-0.016290,0.933700 0.117400,0.102500,0.670000,0.241500,0.336600,0.910100 0.298900,0.064760,0.591500,0.476800,0.388500,0.788500 0.512400,0.138600,0.286200,0.818100,0.334800,0.467600 0.208800,0.398900,0.531300,0.497900,0.178400,0.848700 -0.607800,0.598100,0.378000,-0.811100,0.020870,0.584500 -0.435400,-0.547300,0.526900,0.150500,-0.946700,-0.284800 -0.752300,0.234900,-0.218600,-0.932200,0.277200,-0.232700 -0.558200,0.085810,-0.572500,-0.479500,0.350600,-0.804500 -0.587400,-0.538100,0.396500,0.704100,-0.068260,-0.706800 0.305900,0.234200,0.510600,0.687000,0.287600,0.667300 -0.229500,0.320500,0.635900,-0.236700,0.215100,0.947500 -0.626700,0.263900,0.425400,-0.673000,0.237500,0.700500 -0.240100,-0.544400,0.600100,0.151200,-0.665500,-0.730900 0.455200,0.587900,0.191300,0.968100,0.007261,0.250600 -0.424100,-0.536700,-0.289700,-0.130800,-0.983100,-0.128300 0.521100,0.497800,-0.071180,0.054720,-0.055670,-0.996900 0.094140,0.563300,-0.571600,0.278700,0.030870,-0.959900 -0.620200,-0.509100,-0.185100,-0.319800,-0.943200,-0.089620 0.273600,0.008834,0.627300,0.484500,0.288500,0.825900 -0.095640,0.690500,-0.490600,0.014070,0.586300,0.810000 -0.834000,0.092610,0.111000,-0.911500,0.364700,0.190200 0.310700,0.664900,0.183100,-0.224400,0.959700,-0.169200 0.916700,0.343300,0.046840,0.854800,0.164200,0.492200 -0.696700,0.308100,-0.293500,-0.847900,0.232800,-0.476300 -0.355600,-0.527200,-0.401800,-0.129600,-0.967700,-0.216300 -0.092180,-0.539000,0.407300,0.001946,-0.987400,0.157900 -0.654800,0.468800,-0.312000,-0.869400,0.100500,-0.483800 0.323500,0.039120,0.586200,0.484400,0.267900,0.832800 -0.251300,0.346500,-0.622700,-0.270200,0.202500,-0.941300 0.396400,0.143100,0.460300,0.673500,0.343400,0.654600 0.331300,-0.132000,0.623900,0.516200,0.109800,0.849400 0.358300,0.449500,0.392100,0.718600,0.127200,0.683700 -0.243100,0.662500,-0.199400,-0.013790,0.999900,-0.005492 0.092760,0.431600,0.585800,0.282700,0.131500,0.950100 -0.414100,0.662800,0.343800,0.016490,0.999900,0.000000 -0.854600,-0.456800,0.140200,-0.922300,-0.285400,0.260700 -0.630900,-0.506100,0.520200,-0.654100,-0.344700,0.673300 0.418800,-0.546800,0.452400,0.178200,-0.968300,0.174900 -0.676900,-0.411700,0.513400,-0.679200,-0.225000,0.698700 -0.580500,0.676100,0.399400,-0.651000,0.355400,0.670700 -0.628400,0.227600,-0.433900,-0.686200,0.289500,-0.667300 0.376600,-0.024670,0.561400,0.692800,0.208000,0.690500 -0.625600,-0.531100,0.512400,-0.652800,-0.350500,0.671600 -0.689000,-0.343400,-0.514600,-0.708700,-0.153100,-0.688700 0.291800,0.415900,-0.462500,0.700100,0.121800,-0.703600 0.383700,-0.210300,0.588400,0.716400,0.043340,0.696300 -0.579800,-0.525800,0.559700,-0.652900,-0.349800,0.671800 -0.695600,-0.321700,0.516900,-0.693200,-0.104000,0.713200 0.149200,0.662600,-0.179300,-0.011020,0.999900,-0.002764 -0.602900,0.496700,0.391500,-0.707600,0.080580,0.702000 0.218000,-0.512100,-0.388900,0.230200,-0.943900,-0.236800 -0.513300,-0.502800,-0.379200,-0.238300,-0.943200,-0.231400 -0.494600,-0.547400,0.575200,0.000000,-1.000000,0.000000 -0.323600,0.662500,-0.129000,-0.000001,1.000000,-0.008308 -0.494600,-0.547400,0.535000,0.000000,-1.000000,0.000000 -0.112300,0.662100,0.243200,-0.000050,1.000000,-0.000000 -0.102200,0.662100,0.444500,-0.000017,1.000000,0.000033 -0.313500,0.662500,0.152700,0.000000,1.000000,0.000000 -0.705900,-0.547400,0.384100,-0.000615,-1.000000,0.000312 0.209600,0.662100,-0.129000,-0.000050,1.000000,0.000000 0.370600,-0.547400,-0.430800,0.000000,-1.000000,0.000000 -0.192800,-0.547400,-0.642100,0.000000,-1.000000,0.000000 -0.202800,-0.547400,0.685900,-0.000000,-1.000000,0.000050 0.281700,0.198700,0.544400,0.499200,0.311400,0.808600 0.391400,0.672200,-0.315100,0.813800,0.298700,-0.498500 -0.817700,-0.043880,-0.303700,-0.851700,0.220200,-0.475600 -0.431300,0.669600,-0.367400,0.453600,0.765300,0.456700 -0.427300,-0.411900,-0.692900,-0.426200,-0.219700,-0.877500 -0.021810,0.662500,0.213100,-0.016570,0.999900,0.000002 0.483900,0.567700,-0.068530,0.998800,0.048630,-0.006056 0.018480,0.662100,0.323700,0.000000,1.000000,0.000000 0.234400,0.700100,-0.347600,-0.450800,0.749100,0.485400 0.609000,-0.075010,0.203600,0.959400,0.145300,0.241600 -0.454400,0.662100,0.052100,-0.016610,0.999900,0.000000 0.300200,0.662100,-0.038450,0.005482,1.000000,-0.002709 0.600000,-0.143400,0.275400,0.968100,0.095940,0.231400 -0.072110,0.662800,-0.420700,-0.016510,0.999900,0.000000 -0.897400,-0.186600,-0.038460,-0.999300,0.033250,0.014200 0.088970,-0.546400,-0.169300,-0.028980,-0.999300,0.023640 0.058690,0.662500,-0.229600,0.000000,1.000000,0.000000 -0.524800,0.662500,0.031970,0.000000,1.000000,0.000000 0.531600,-0.547400,0.011850,0.000000,-1.000000,0.000000 -0.434300,0.662500,-0.028390,0.000000,1.000000,0.000000 -0.011700,-0.547400,0.665800,0.000000,-1.000000,0.000000 -0.031820,-0.547400,0.635600,0.000000,-1.000000,0.000000 -0.732800,0.588000,0.001735,-0.999600,0.023990,0.014300 0.526600,-0.316800,0.411600,0.874400,-0.088480,0.477100 0.280000,0.662500,0.011850,0.000000,1.000000,0.000000 0.026790,0.092520,-0.695600,0.229100,0.350900,-0.908000 0.851300,0.036130,0.051610,0.714500,-0.396600,0.576400 0.078790,0.662500,0.333800,-0.016570,0.999800,-0.008258 0.039000,-0.543500,-0.159600,-0.078700,-0.993600,0.080500 -0.737500,0.355700,0.161400,-0.943300,0.196700,0.267400 0.088920,0.662100,0.062160,0.016490,0.999900,-0.000000 0.138800,-0.516300,-0.430300,0.136200,-0.959900,-0.245200 -0.457300,-0.024010,-0.672600,-0.500800,0.226700,-0.835400 0.383100,-0.518600,-0.330300,-0.859100,0.000042,0.511700 -0.304700,0.667800,0.444400,0.218100,0.845700,-0.487100 0.076430,-0.236600,0.748100,0.277900,-0.036870,0.959900 0.586900,-0.036870,-0.248300,0.940200,0.211200,-0.267300 -0.261400,-0.535900,0.703000,-0.235300,-0.337800,0.911300 0.315600,-0.199200,0.639300,0.518300,0.069200,0.852400 0.051440,0.299400,0.622800,0.256900,0.239800,0.936200 -0.001636,0.662100,-0.179300,0.000050,1.000000,0.000000 -0.112300,0.517500,0.613300,0.008645,0.073050,0.997300 -0.763900,-0.420400,-0.391100,-0.850500,-0.225500,-0.475300 0.468500,0.345500,-0.237100,0.952500,0.164900,-0.256100 -0.071960,0.466700,-0.615700,-0.013920,0.109500,-0.993900 -0.767700,0.195000,-0.208000,-0.919200,0.314300,-0.237100 -0.383600,-0.535300,-0.339700,-0.100800,-0.983000,-0.153500 0.574600,-0.456000,-0.247700,0.913500,-0.307400,-0.266400 -0.172800,-0.126900,0.770500,0.008752,0.097050,0.995200 0.001768,-0.419100,0.745100,0.287700,-0.199500,0.936700 -0.293100,-0.543100,0.333200,-0.054920,-0.993600,0.098300 -0.414100,0.662100,-0.169200,0.016490,0.999900,0.000000 -0.414100,0.662100,-0.209500,0.016490,0.999900,0.000000 -0.394000,0.662100,0.333800,0.016510,0.999900,0.000000 -0.213000,-0.545200,-0.229900,0.020650,-0.997500,0.067520 -0.283300,0.662100,0.414300,0.016540,0.999800,0.008277 -0.072090,0.662100,0.092340,-0.016540,0.999900,0.000000 0.348100,0.177000,0.492600,0.670100,0.323900,0.667800 0.421500,-0.011990,-0.509200,0.671000,0.250800,-0.697700 -0.329700,0.037890,0.704600,-0.259300,0.286600,0.922300 0.169300,0.662800,-0.179300,0.000007,1.000000,0.000007 -0.172700,-0.546400,-0.320100,-0.006002,-0.999300,-0.036720 0.139200,0.716400,-0.471100,-0.020410,0.999100,0.036390 0.159300,0.662500,-0.310100,-0.033130,0.999500,0.000000 -0.081920,-0.542000,0.213800,-0.026740,-0.993700,-0.108700 -0.507500,0.598100,0.477200,-0.688400,0.000149,0.725300 -0.661000,0.132800,-0.446500,-0.669200,0.359600,-0.650300 -0.645500,-0.401200,0.547300,-0.679300,-0.224400,0.698700 -0.573500,0.219000,0.495600,-0.664600,0.282800,0.691600 0.346500,0.418900,0.410500,0.712700,0.112400,0.692400 -0.586500,0.115600,-0.532900,-0.668300,0.362600,-0.649500 0.406200,-0.396500,-0.536700,0.680400,-0.216100,-0.700300 -0.646700,0.211800,-0.422000,-0.684600,0.298200,-0.665200 -0.258300,0.651400,-0.592400,-0.273300,0.055070,-0.960300 -0.647300,0.096990,0.483800,-0.644200,0.383600,0.661700 0.368300,-0.034160,0.573100,0.698900,0.224000,0.679200 -0.724200,-0.190200,-0.489500,-0.716800,0.032700,-0.696500 0.320000,-0.521900,0.413900,-0.717100,-0.000011,-0.696900 0.296000,0.256500,0.510900,0.711500,0.262700,0.651700 0.337100,0.277300,0.461500,0.694500,0.248100,0.675400 -0.558400,0.275000,0.487900,-0.670400,0.251300,0.698100 -0.684900,-0.441000,-0.490500,-0.693500,-0.254700,-0.673900 0.179300,-0.545900,0.152600,0.042640,-0.998800,0.023350 0.159200,-0.546300,-0.159100,0.032320,-0.999300,-0.019270 0.478000,-0.114100,0.481600,0.718400,0.093890,0.689300 0.380700,-0.538400,0.505000,0.614200,-0.528700,0.585900 0.430100,-0.518100,0.463900,0.679800,-0.356300,0.641000 -0.639100,-0.256900,0.578700,-0.696600,-0.032470,0.716800 -0.703200,-0.389400,-0.488700,-0.703000,-0.194900,-0.683900 0.406000,-0.456100,-0.516300,0.668000,-0.285200,-0.687300 -0.532700,-0.492100,-0.398600,-0.288500,-0.915500,-0.280400 -0.733400,-0.100800,-0.468600,-0.708700,0.157300,-0.687800 -0.557400,0.441300,0.444200,-0.688600,0.118500,0.715400 -0.713800,-0.157200,0.502400,-0.693100,0.103900,0.713300 -0.696700,-0.361900,-0.502200,-0.707500,-0.163500,-0.687600 -0.313500,-0.546200,-0.269800,-0.020460,-0.999200,-0.033740 -0.112300,-0.528600,0.607400,-0.014340,-0.013730,-0.999800 0.519700,0.224600,-0.166900,0.933300,0.259600,-0.248200 0.643900,-0.137100,-0.038360,0.997300,0.071320,-0.016080 -0.223000,-0.547400,0.615500,0.000881,-1.000000,-0.006276 0.330400,-0.547400,0.464600,0.000000,-1.000000,0.000000 0.431700,0.178900,-0.395600,0.822300,0.319800,-0.470700 0.163600,-0.529700,0.358100,0.143600,-0.976600,0.160300 -0.243100,-0.547400,-0.622000,0.000000,-1.000000,0.000050 -0.434300,0.662500,-0.169200,0.011010,0.999900,0.002783 -0.434300,0.662500,0.243200,-0.016580,0.999900,0.000000 -0.751100,0.305100,-0.147900,-0.945100,0.227500,-0.234400 -0.598000,0.163500,0.497300,-0.653800,0.348000,0.671900 -0.514700,-0.547400,0.535000,0.000000,-1.000000,0.000000 -0.233000,-0.547400,-0.672300,0.000000,-1.000000,0.000000 -0.605300,-0.547400,0.414300,0.000000,-1.000000,0.000000 -0.333700,0.662500,-0.189400,0.000000,1.000000,0.000000 -0.655600,-0.547400,0.353900,0.000000,-1.000000,0.000000 0.491300,-0.547400,-0.199400,0.000000,-1.000000,0.000000 0.129100,0.662100,-0.249700,0.000050,1.000000,0.000000 -0.142500,0.662100,-0.189400,0.000000,1.000000,0.000000 0.341600,0.441500,-0.409200,0.701200,0.090700,-0.707200 -0.474500,0.662100,0.263400,-0.000050,1.000000,-0.000000 -0.263200,0.662100,-0.400600,0.000000,1.000000,0.000000 0.584400,-0.406100,0.271500,0.936700,-0.237500,0.257300 -0.283400,0.662500,0.263400,-0.000050,1.000000,0.000000 0.088570,-0.543600,0.303000,0.053850,-0.994500,0.090030 -0.696300,0.540700,-0.224200,-0.938600,0.059660,-0.339800 -0.822900,-0.280000,-0.329600,-0.871000,-0.068200,-0.486600 -0.051920,0.662500,-0.400600,0.033040,0.999500,0.000000 -0.589800,-0.498900,0.305700,-0.304300,-0.934700,0.183500 0.008422,-0.547100,-0.269900,0.005114,-0.999900,-0.009185 0.098960,0.662100,0.072210,-0.002792,1.000000,-0.002737 -0.132500,0.385800,0.629600,0.011370,0.172000,0.985000 -0.062080,-0.166800,0.772600,0.011410,0.072080,0.997300 0.101800,0.369700,0.592900,0.269100,0.145200,0.952100 -0.023080,0.335500,-0.630600,0.240000,0.200100,-0.949900 -0.102300,0.662100,-0.340300,-0.016540,0.999900,0.000000 -0.367700,-0.532000,-0.672700,-0.254300,-0.355000,-0.899600 0.159300,0.662100,-0.008267,0.016560,0.999900,0.000000 0.018480,0.662100,0.293500,0.000000,1.000000,0.000000 -0.082150,0.662100,-0.048510,-0.016610,0.999900,0.000000 0.139300,-0.546000,0.011850,-0.039960,-0.999200,0.000596 0.649900,-0.226800,0.031970,0.999500,-0.022760,-0.019780 -0.041900,-0.546500,-0.310000,0.009228,-0.999300,-0.036480 -0.092180,-0.547400,0.645700,0.000000,-1.000000,0.000000 -0.021760,0.662100,-0.269800,0.000000,1.000000,0.000000 0.038610,0.662100,0.233200,0.000000,1.000000,0.000000 -0.786300,-0.547400,-0.088750,0.000000,-1.000000,0.000000 -0.494600,0.662100,-0.078690,-0.016610,0.999900,0.000000 0.159300,0.662100,-0.058560,0.002793,0.999900,0.011030 0.058660,-0.546000,-0.279800,0.018600,-0.999300,-0.032770 -0.647000,-0.133600,-0.563200,-0.713700,0.098900,-0.693400 0.088920,0.662100,-0.239700,0.016490,0.999900,0.000000 -0.544900,0.662500,-0.078680,-0.002769,1.000000,0.005532 0.151900,0.462500,0.555500,0.494500,0.111900,0.862000 -0.383000,-0.521800,-0.409100,-0.133600,-0.965100,-0.225100 0.158200,-0.520900,0.402300,0.133700,-0.965300,0.224500 -0.822100,-0.486800,0.221800,-0.919000,-0.299200,0.256800 -0.699900,0.466700,0.231500,-0.955200,0.107200,0.276000 0.241400,0.208600,-0.562900,0.465600,0.297900,-0.833400 -0.271700,0.476800,-0.596300,-0.270400,0.099160,-0.957600 -0.022010,-0.533900,-0.419900,0.045830,-0.982400,-0.181300 0.088820,0.662900,0.404100,-0.055920,0.991500,-0.117500 -0.052030,-0.156900,0.771300,0.016970,0.115000,0.993200 0.008097,-0.532500,-0.419600,0.045820,-0.982400,-0.181300 0.792600,-0.220500,0.018910,-0.953400,-0.255500,0.160300 0.048200,-0.541000,0.353100,0.059000,-0.993100,0.101700 0.506000,0.375800,0.032040,0.985600,0.167500,-0.022570 0.485000,0.314800,0.211400,0.947900,0.193500,0.253100 -0.273000,-0.544200,0.333300,-0.048680,-0.994500,0.092870 0.269900,0.663000,-0.199400,-0.005524,1.000000,0.002761 -0.406000,0.114600,-0.650100,-0.382400,0.387400,-0.838900 -0.212900,0.662100,-0.139100,-0.000001,1.000000,0.000000 -0.112300,-0.546500,-0.320100,-0.000542,-0.999300,-0.037610 -0.373900,0.662100,-0.199400,-0.016540,0.999900,0.000000 -0.142500,-0.277000,0.773400,0.014300,-0.045790,0.998800 -0.122400,0.662400,-0.460800,0.000482,0.978200,0.207900 -0.534900,-0.515900,-0.300300,-0.242200,-0.955900,-0.166200 0.293200,0.332100,0.487900,0.698300,0.225800,0.679300 0.310200,0.662100,-0.108900,-0.016510,0.999900,-0.000038 -0.132400,-0.528600,0.607700,-0.014270,-0.013670,-0.999800 -0.892600,-0.126700,-0.028460,-0.994600,0.102900,0.014240 -0.692400,-0.299700,-0.518200,-0.713800,-0.097580,-0.693500 0.390200,-0.306800,-0.571100,0.693600,-0.096940,-0.713800 -0.192700,0.436600,-0.617700,-0.014250,0.129900,-0.991400 0.159300,-0.547400,0.595400,0.000000,-1.000000,0.000000 0.129100,-0.547400,0.625500,0.000000,-1.000000,0.000000 0.159300,0.662100,0.293500,0.000050,1.000000,0.000000 -0.263200,0.662100,-0.219500,0.000017,1.000000,0.000017 -0.283300,0.662100,-0.400600,-0.000017,1.000000,-0.000017 -0.152500,-0.547400,-0.682300,-0.000000,-1.000000,-0.000050 -0.253100,-0.547400,-0.672300,-0.000000,-1.000000,-0.000050 -0.766200,-0.547400,-0.108900,0.000000,-1.000000,0.000000 0.342700,0.048910,0.567500,0.678700,0.324300,0.659000 -0.494600,0.662100,-0.199400,-0.000033,1.000000,0.000017 -0.635400,-0.547400,0.474600,-0.002826,-1.000000,0.002819 0.153000,-0.490200,0.507600,0.155700,-0.944800,0.288400 -0.406000,-0.441300,0.697200,-0.407100,-0.246500,0.879500 0.444700,0.507000,-0.236900,0.940200,0.089600,-0.328600 0.377700,0.439500,0.373000,0.811200,0.150300,0.565100 -0.828000,-0.006198,0.252500,-0.933000,0.245800,0.262700 -0.222900,-0.544800,-0.339900,-0.023240,-0.996500,-0.080610 0.516600,0.084040,0.321800,0.807400,0.379200,0.452000 -0.581500,-0.532000,-0.396900,0.708700,0.026570,0.705000 0.789900,-0.361000,-0.068270,0.183800,-0.349200,-0.918900 -0.571600,-0.532000,-0.407100,0.717700,0.015230,0.696200 -0.840600,-0.077010,-0.268300,-0.953800,0.161200,-0.253500 0.008197,-0.542900,-0.349700,0.035590,-0.993700,-0.105800 -0.429900,-0.203500,-0.715000,-0.349000,0.029070,-0.936700 0.019010,-0.542000,-0.159800,-0.076650,-0.993700,0.082060 -0.062070,-0.545500,0.343600,0.015920,-0.998200,0.058510 0.510300,0.127500,-0.298900,0.800800,0.333900,-0.497300 -0.150600,0.704700,0.583000,-0.005674,0.795000,0.606600 0.017660,0.711300,-0.548400,0.103200,0.924000,-0.368200 0.329000,0.714800,0.332900,0.181600,0.975800,0.121400 -0.707600,0.083060,0.421600,-0.815300,0.312000,0.487800 -0.604100,0.715200,-0.279300,-0.177800,0.978700,-0.102300 0.617100,-0.386900,-0.157900,0.945200,-0.175000,-0.275600 -0.327500,-0.372000,0.733700,-0.236200,-0.179600,0.955000 -0.132400,-0.544300,0.363500,0.001298,-0.995000,0.099610 0.122800,-0.474400,0.695900,0.261600,-0.254600,0.931000 -0.142500,-0.267000,-0.770500,-0.014310,-0.041910,-0.999000 -0.233200,-0.545200,0.223300,0.033650,-0.997500,-0.062020 -0.068810,0.695700,0.592000,0.018580,0.662900,0.748500 0.301300,0.209200,0.526200,0.682900,0.303200,0.664700 0.027630,-0.347000,0.752700,0.255000,-0.180300,0.950000 -0.222900,-0.166800,-0.768700,-0.036000,0.066450,-0.997100 0.056930,-0.376600,-0.735900,0.242700,-0.171400,-0.954800 -0.667200,0.456600,0.297200,-0.852800,0.121500,0.507900 0.646100,-0.157100,-0.018230,0.995900,0.089980,-0.011430 -0.383700,-0.545000,0.243000,-0.057520,-0.996600,0.059300 -0.112300,-0.186600,-0.771200,-0.014290,0.033270,-0.999300 -0.696500,-0.014400,-0.482000,-0.696700,0.233600,-0.678200 -0.840000,-0.386400,-0.258000,-0.952700,-0.188500,-0.238400 -0.811200,-0.476700,0.271800,-0.922100,-0.287200,0.259400 0.197400,-0.506400,-0.429600,0.198500,-0.941700,-0.271800 -0.677600,0.671900,0.255000,-0.815600,0.293500,0.498600 0.595500,-0.506000,0.110900,0.904500,-0.364000,0.222400 -0.463900,-0.543300,-0.148800,-0.094520,-0.994100,-0.052300 -0.311700,0.264300,-0.625800,-0.263600,0.262700,-0.928200 0.087670,-0.306900,-0.738200,0.241100,-0.096530,-0.965700 -0.731000,0.658000,0.062070,-0.993200,0.115600,0.014120 0.051720,0.087530,0.694300,0.244300,0.338600,0.908700 -0.071900,-0.543400,0.223700,-0.029450,-0.994100,-0.104000 -0.686000,0.130500,-0.421900,-0.710700,0.357300,-0.606000 -0.746600,0.232100,-0.243200,-0.904000,0.273300,-0.328800 -0.061190,-0.530600,-0.130800,-0.087920,-0.979600,0.180600 -0.275600,0.700700,0.567900,-0.165400,0.748600,0.642100 0.763300,0.584900,0.004753,0.430200,0.902500,0.020760 -0.643100,0.712300,-0.228300,-0.288600,0.945100,-0.153300 -0.634800,0.413600,-0.362300,-0.861200,0.156100,-0.483700 0.326300,0.052940,0.579700,0.516400,0.333000,0.788900 -0.730500,0.153100,-0.327200,-0.822700,0.337200,-0.457700 -0.717100,-0.088880,-0.482500,-0.708000,0.161700,-0.687400 0.260300,0.441200,0.493200,0.543700,0.145600,0.826500 -0.882800,-0.377000,0.062080,-0.985200,-0.170900,0.014100 -0.363600,-0.545400,-0.249500,-0.046510,-0.997900,-0.045220 0.445700,0.608200,-0.218000,0.960000,0.029560,-0.278300 0.249400,0.176600,0.571700,0.487000,0.348900,0.800700 -0.360900,-0.266000,0.737600,-0.248100,-0.049670,0.967500 -0.182600,-0.516900,0.504900,-0.031340,-0.959900,0.278500 -0.092100,-0.426800,-0.747500,-0.013010,-0.225100,-0.974300 0.590800,-0.323700,0.294400,0.884900,-0.086270,0.457800 -0.192800,-0.367100,0.762900,0.014110,-0.174600,0.984500 -0.643300,0.709000,0.251200,-0.390700,0.892200,0.226700 -0.011580,-0.545400,-0.219800,-0.031620,-0.997900,0.057110 0.280000,-0.537700,-0.088710,0.175200,-0.983300,-0.049510 -0.341100,0.062840,0.692900,-0.233300,0.333400,0.913500 -0.241400,0.618300,0.599000,-0.245400,0.019770,0.969200 -0.023080,0.487100,0.611300,0.257400,0.094080,0.961700 -0.763500,0.326000,0.031920,-0.977900,0.208500,0.013950 -0.132500,-0.076650,0.762400,0.018990,0.158400,0.987200 0.479300,0.127200,0.355000,0.821700,0.350600,0.449200 -0.403700,-0.544300,0.232800,-0.077770,-0.994600,0.068600 -0.882200,-0.386800,-0.028480,-0.981400,-0.191600,0.014070 -0.764300,0.326200,-0.028430,-0.978000,0.208100,0.013970 -0.722600,0.686000,-0.008336,-0.851200,0.524700,0.014730 -0.675000,0.691700,-0.231400,-0.692300,0.597000,-0.405400 -0.264600,-0.544200,-0.589800,0.118300,-0.616100,0.778800 -0.413800,-0.544700,0.212800,-0.078150,-0.995700,0.050400 0.354700,0.692800,0.359400,0.592900,0.650600,0.474600 0.221300,-0.022160,-0.663800,0.475400,0.225800,-0.850300 -0.784600,-0.041880,0.366400,-0.836900,0.225200,0.498900 -0.860400,-0.186800,-0.238000,-0.968300,0.033020,-0.247700 -0.172700,-0.367100,0.762800,0.005865,-0.174600,0.984600 -0.223000,-0.186700,-0.769600,-0.036450,0.033090,-0.998800 0.815400,0.549300,0.026320,0.625800,0.739900,0.246900 0.358800,-0.513700,-0.178900,0.300600,-0.949900,-0.085530 -0.714600,-0.111700,0.495800,-0.691600,0.142000,0.708100 0.263300,0.396100,-0.494500,0.723400,0.145800,-0.674900 -0.303000,-0.537600,-0.038220,0.172000,-0.984100,0.044840 -0.693000,0.709800,-0.078100,-0.403600,0.910100,-0.094000 0.068760,0.716400,0.514800,0.011980,0.998600,0.051440 0.622000,-0.304500,0.186700,0.964100,-0.132800,0.229900 -0.284300,-0.534200,-0.038680,0.181100,-0.982400,0.045480 0.627200,-0.406700,-0.078610,0.975000,-0.222300,0.002663 -0.645600,0.603800,-0.312200,-0.873800,0.008445,-0.486300 -0.392500,-0.246800,0.730600,-0.242100,-0.065500,0.968000 -0.205400,0.139700,0.696500,-0.094860,0.360300,0.928000 -0.142500,-0.537200,-0.179500,0.011540,-0.983500,0.180700 -0.043070,0.697900,-0.491600,-0.174900,0.701800,0.690600 0.638400,-0.256900,-0.138100,0.961800,-0.048410,-0.269600 -0.552800,0.210200,-0.519400,-0.683700,0.298400,-0.666000 -0.462600,0.671500,-0.338400,0.461000,0.761400,0.455800 0.567100,0.023200,0.271400,0.906500,0.291900,0.304900 0.253400,0.392500,0.506200,0.510900,0.201400,0.835700 -0.286100,-0.539300,0.107600,0.124500,-0.989000,-0.079630 -0.319700,0.178400,0.654400,-0.219600,0.317000,0.922700 -0.371000,0.699000,0.435600,0.311100,0.736800,-0.600200 -0.662800,-0.501200,-0.108200,-0.324900,-0.942000,-0.084260 -0.607200,0.490100,-0.382600,-0.713900,0.095170,-0.693800 0.255000,0.702000,0.449700,0.466500,0.766300,0.441900 -0.507000,0.669900,-0.473000,-0.661500,0.263400,-0.702100 -0.696000,0.414200,-0.252700,-0.861700,0.155200,-0.483200 0.068810,0.285800,0.621200,0.264600,0.222500,0.938300 0.285000,0.705100,-0.302400,-0.495800,0.805300,0.325100 -0.526400,0.206100,-0.540700,-0.489000,0.296700,-0.820300 -0.192300,0.466600,0.618600,-0.053530,0.119700,0.991400 0.136500,0.072370,-0.675600,0.266300,0.347100,-0.899200 -0.405300,0.347600,-0.570200,-0.501900,0.195400,-0.842500 -0.092100,0.254400,-0.656400,-0.014080,0.263900,-0.964500 -0.597100,0.212100,-0.473000,-0.684800,0.297900,-0.665100 -0.685700,0.657900,0.246000,-0.900800,0.088310,0.425200 -0.759600,0.335100,-0.087030,-0.952500,0.205100,-0.224900 -0.322800,-0.326900,-0.739300,-0.270600,-0.116700,-0.955600 -0.456100,0.090250,-0.631400,-0.480600,0.349600,-0.804200 0.298800,-0.547300,-0.569700,0.197000,-0.934100,-0.297700 0.401500,0.706600,-0.244900,0.487300,0.824400,-0.288000 0.460300,0.117700,0.395900,0.807400,0.386900,0.445300 -0.383000,-0.226700,-0.728900,-0.271500,-0.010630,-0.962400 -0.707000,0.070680,-0.432600,-0.743700,0.338200,-0.576600 -0.412600,0.711800,0.492000,-0.196600,0.916400,0.348800 -0.192800,-0.457300,0.742800,0.016260,-0.316200,0.948500 -0.042370,-0.531400,0.442800,0.050990,-0.980900,0.187500 -0.257900,-0.038820,-0.743200,-0.269200,0.226400,-0.936100 -0.698900,0.547400,0.211000,-0.960600,0.054970,0.272300 -0.513200,0.697600,0.445400,-0.499300,0.682700,0.533500 0.497100,-0.116200,0.461400,0.805300,0.106600,0.583200 0.260100,0.512000,0.484000,0.636000,0.050590,0.770000 -0.723900,0.638400,-0.108500,-0.970200,0.002619,-0.242400 0.068030,0.527500,0.582400,0.269700,0.070360,0.960400 -0.312200,-0.236700,0.751300,-0.233800,-0.026080,0.971900 -0.042080,-0.528600,0.606100,-0.063910,-0.014290,-0.997900 0.209500,0.716200,-0.440600,0.069980,0.994900,-0.072560 0.633300,0.518100,-0.049420,0.126100,-0.796100,-0.591900 -0.311500,-0.027410,-0.725400,-0.266700,0.226000,-0.936900 -0.799600,0.193200,0.041880,-0.950300,0.310900,0.013630 -0.487000,-0.531700,0.618300,-0.473000,-0.332500,0.815900 0.777500,-0.144800,-0.054440,-0.708100,-0.269000,-0.652900 0.573200,0.130800,0.089390,0.915300,0.354200,0.191700 -0.003079,-0.206900,0.770500,0.216600,0.048280,0.975100 0.795200,-0.263800,0.035060,-0.888600,0.305300,0.342300 0.375300,0.705900,-0.099840,-0.537000,0.829200,0.155000 -0.202800,0.618300,-0.605600,-0.050190,-0.004837,-0.998700 -0.002471,0.667800,-0.592600,0.233500,0.216900,-0.947900 0.588700,0.093900,0.062190,0.948400,0.316500,-0.018920 -0.871000,-0.017000,0.101800,-0.970700,0.234100,0.054950 0.412800,-0.509400,0.486800,0.661900,-0.360700,0.657100 0.166900,-0.137100,0.717700,0.284300,0.117600,0.951500 0.139900,-0.518500,-0.545700,-0.491700,0.013330,0.870600 -0.726000,0.005276,-0.442800,-0.790700,0.293400,-0.537300 0.598700,0.063770,-0.028350,0.930200,0.366700,-0.013400 -0.725900,-0.337500,0.484800,-0.722200,-0.147800,0.675700 0.429900,0.715800,-0.018320,0.181500,0.983400,-0.002798 0.482200,0.618300,-0.085110,0.989700,0.015120,-0.142600 0.515900,0.549700,0.045010,-0.510100,0.729300,0.455900 0.075680,0.683700,0.568300,0.249000,0.503800,0.827100 -0.765800,-0.206800,0.435400,-0.858300,0.028180,0.512400 0.144000,-0.485000,0.686800,0.264900,-0.283500,0.921700 0.531500,-0.547400,-0.249700,0.013310,-0.999900,-0.004605 -0.211900,0.052360,0.729500,-0.144400,0.330600,0.932700 0.431100,-0.394200,0.515100,0.698300,-0.227800,0.678600 0.464900,-0.528600,0.143500,-0.969700,-0.012760,-0.243800 0.468500,0.638400,-0.138500,0.959200,0.008395,-0.282700 -0.878900,-0.394800,0.094850,-0.977000,-0.212900,0.014010 -0.840200,-0.356400,-0.277200,-0.942200,-0.157400,-0.295800 -0.383700,-0.526000,-0.390100,-0.131400,-0.966400,-0.221000 -0.462000,0.357000,-0.534200,-0.501300,0.194400,-0.843100 -0.547300,0.147700,0.554800,-0.636500,0.380000,0.671200 -0.614700,0.715800,0.263000,-0.155500,0.983500,0.092690 -0.687800,-0.017170,0.496600,-0.674900,0.203500,0.709300 -0.808200,-0.516300,0.232800,-0.900600,-0.351400,0.255900 -0.071320,-0.522600,0.103900,-0.121200,-0.966100,-0.227800 -0.882900,-0.226800,0.161500,-0.962500,-0.009057,0.271000 0.389300,0.315700,-0.391100,0.826200,0.218600,-0.519300 -0.732600,0.366100,-0.168500,-0.954300,0.183400,-0.236100 0.795200,0.101400,-0.036270,-0.786700,0.451800,-0.420600 0.429600,0.680300,-0.244300,0.778000,0.431600,-0.456500 0.554800,0.112500,-0.187400,0.897300,0.366500,-0.245900 0.507200,0.355700,-0.088280,0.977500,0.173100,-0.120400 -0.842200,-0.256800,0.301800,-0.951700,-0.025210,0.305900 0.018460,-0.547300,0.685800,0.010340,-0.999400,0.031950 0.447700,0.136600,0.404400,0.819700,0.350100,0.453300 -0.613600,0.142700,0.492900,-0.658900,0.367100,0.656500 0.392500,-0.107200,-0.563300,0.692800,0.132700,-0.708900 -0.667900,-0.356500,0.537000,-0.687500,-0.162200,0.707800 -0.413300,0.701000,0.511200,-0.311000,0.771700,0.554800 -0.572700,0.709300,-0.358000,-0.291500,0.913600,-0.283400 -0.051890,-0.517700,-0.720000,0.009788,-0.347800,-0.937500 0.110300,0.712100,-0.463300,-0.185200,0.926700,0.326900 -0.816500,-0.547400,0.052090,-0.005304,-1.000000,0.000830 0.887700,-0.265900,0.038930,0.905200,-0.162200,0.392900 -0.061900,0.193300,-0.675200,-0.009279,0.312500,-0.949900 -0.658500,0.003026,0.517600,-0.669700,0.292000,0.682800 0.458900,-0.466200,-0.459800,0.768300,-0.307200,-0.561600 -0.710900,-0.538000,0.154200,0.966000,-0.034090,-0.256400 0.491300,-0.102000,0.465400,0.735400,0.164400,0.657400 -0.317600,0.693500,-0.456600,0.267600,0.654400,0.707200 0.173000,0.002792,-0.683500,0.470500,0.269600,-0.840200 -0.534900,0.032690,0.612700,-0.478200,0.269500,0.835900 -0.092180,-0.547400,-0.622000,0.000009,-1.000000,0.005285 0.311200,0.087100,0.573600,0.464200,0.336800,0.819200 -0.617300,0.705600,-0.303400,-0.479700,0.837000,-0.263200 0.362300,0.681400,-0.356000,0.794800,0.445500,-0.412000 -0.779300,-0.286900,0.408700,-0.855700,-0.084260,0.510600 0.784900,0.468200,-0.055820,-0.547000,-0.477900,-0.687300 0.068140,0.712900,0.532700,0.087630,0.955900,0.280200 -0.694000,0.305700,0.304400,-0.835500,0.231500,0.498400 0.109200,-0.529800,-0.388600,0.103800,-0.977000,-0.186100 0.242700,0.401300,-0.510000,0.481000,0.163400,-0.861400 -0.583700,0.082440,0.553500,-0.659800,0.322600,0.678600 -0.152500,-0.530700,-0.448000,-0.003217,-0.979900,-0.199500 -0.596300,0.715400,0.243800,0.192400,0.974700,-0.113800 -0.152600,-0.490300,-0.599400,0.011990,-0.715900,0.698100 0.831200,-0.317200,0.072940,0.222700,-0.170500,0.959900 -0.841500,-0.396700,0.241700,-0.940600,-0.212000,0.265100 0.371700,0.698600,-0.315500,0.623300,0.694900,-0.358500 0.909500,0.405600,0.020680,0.920600,0.329400,0.209500 0.863100,0.296500,0.069680,-0.481200,-0.050240,0.875200 0.608800,-0.477500,-0.088730,0.965200,-0.260200,-0.025610 0.038250,-0.547200,0.684500,0.027460,-0.972800,0.229800 0.209900,0.716300,-0.421000,-0.063440,0.995000,0.076530 -0.603100,0.712600,-0.298800,-0.275100,0.950200,-0.146500 0.474700,-0.430300,0.458100,0.705400,-0.217700,0.674600 0.584000,0.500200,0.052790,0.377400,-0.730400,0.569200 0.285700,0.426700,-0.466400,0.685100,0.157500,-0.711200 -0.408400,0.667100,0.537300,-0.453000,0.218200,0.864400 0.335000,0.694400,-0.191300,-0.698400,0.662400,0.271000 -0.172400,0.488900,-0.612000,-0.014540,0.093220,-0.995500 -0.521400,0.686100,-0.447700,-0.611300,0.525700,-0.591500 -0.352800,-0.518600,0.567300,0.396100,0.000280,-0.918200 0.849300,0.276200,0.056820,-0.767200,-0.023160,0.640900 0.470500,0.007146,0.453800,0.706400,0.287400,0.646800 -0.566300,0.100200,-0.561100,-0.568900,0.349800,-0.744300 -0.618800,0.711400,-0.160100,0.336600,0.938900,0.071790 -0.182700,0.073250,-0.717700,-0.013540,0.349400,-0.936900 -0.496500,0.256800,-0.541100,-0.493900,0.263100,-0.828800 0.268500,0.294400,-0.518600,0.657000,0.228100,-0.718500 0.616500,-0.186800,-0.217900,0.959500,0.033310,-0.279700 -0.565200,-0.457000,0.603300,-0.486600,-0.304700,0.818800 0.617800,-0.446900,-0.078620,0.955000,-0.296500,0.006613 -0.714100,0.033610,0.445300,-0.818700,0.304900,0.486600 -0.822400,-0.546400,-0.117900,-0.362600,-0.925500,-0.109200 -0.508000,0.694300,-0.313300,0.544300,0.656400,0.522400 0.442800,0.132800,-0.408700,0.809800,0.336700,-0.480500 0.482100,0.183000,-0.307400,0.822000,0.295200,-0.487000 -0.302900,0.375100,0.605600,-0.266600,0.197600,0.943300 -0.514000,0.057330,0.614600,-0.446900,0.351100,0.822800 -0.308300,0.242600,-0.632900,-0.266500,0.275900,-0.923500 -0.027200,-0.519600,-0.035610,-0.248200,-0.963800,0.097280 -0.498400,0.278100,-0.533200,-0.495700,0.252400,-0.831000 -0.753400,0.376300,0.041990,-0.984900,0.172500,0.014180 -0.723900,0.548500,0.122700,-0.961300,0.054240,0.270100 -0.524700,-0.050710,-0.639600,-0.502000,0.212500,-0.838300 -0.514300,-0.493500,-0.460500,0.594600,-0.541400,0.594400 -0.002193,-0.521600,0.472700,0.070710,-0.965100,0.252300 0.443500,0.275100,-0.318400,0.837900,0.230100,-0.494900 -0.281700,0.144400,-0.673900,-0.259300,0.353100,-0.898900 -0.420400,0.252800,-0.587700,-0.493800,0.265500,-0.828100 -0.296800,0.196200,-0.650900,-0.262900,0.304300,-0.915600 -0.192700,0.221300,-0.664500,-0.014290,0.299200,-0.954100 0.579400,0.013170,-0.227200,0.929300,0.268500,-0.253500 -0.522600,0.375400,0.492400,-0.679100,0.188700,0.709400 -0.674300,0.517200,0.273900,-0.856400,0.070460,0.511500 0.362500,-0.507000,0.539600,0.670700,-0.350600,0.653700 0.539200,0.183900,-0.146600,0.918800,0.300500,-0.255800 -0.873300,-0.146700,0.181900,-0.958100,0.096820,0.269700 0.141900,0.667100,-0.393200,-0.262300,0.859500,0.438700 0.458300,0.693500,-0.116200,0.710000,0.676100,-0.197100 -0.132600,-0.511000,-0.073380,0.036060,-0.945400,0.323800 -0.182800,-0.526000,0.719300,0.004906,-0.349300,0.937000 0.012250,-0.444500,0.736700,0.241100,-0.246400,0.938700 0.210500,0.547500,-0.510200,0.487100,0.054700,-0.871600 -0.092280,-0.503000,0.726800,0.010600,-0.375800,0.926600 -0.371200,0.608200,0.560200,-0.480900,0.018770,0.876600 0.147900,-0.116800,0.721200,0.265600,0.084450,0.960400 0.188300,-0.522600,0.372800,0.186200,-0.965600,0.181300 0.084730,-0.510800,-0.691500,0.229900,-0.351000,-0.907700 -0.580800,0.032860,0.580700,-0.679500,0.263300,0.684700 -0.397900,0.557600,0.546700,-0.487400,0.027050,0.872800 0.906700,0.365900,-0.052170,0.816100,0.169300,-0.552600 0.547700,-0.243300,0.383400,0.869200,-0.035680,0.493100 0.136400,0.416200,-0.566600,0.482000,0.148200,-0.863500 -0.092110,0.147000,-0.690800,-0.013450,0.343000,-0.939200 -0.821000,0.133200,0.031930,-0.931300,0.364100,0.012680 -0.728000,-0.498600,0.092420,0.961200,-0.183200,-0.206300 -0.714000,0.588300,0.152700,-0.962300,0.024390,0.271000 -0.212900,0.080100,-0.714800,-0.021890,0.349500,-0.936700 -0.816400,0.147500,-0.028450,-0.939500,0.342200,0.013440 -0.493000,-0.485400,0.461600,0.067780,-0.995900,-0.060640 -0.587700,0.163400,0.507100,-0.647400,0.356100,0.673900 -0.832300,0.103500,0.052020,-0.933500,0.358300,0.013430 -0.736400,0.519300,-0.027600,-0.997900,0.063240,0.013260 -0.655500,-0.547300,0.464500,-0.018710,-0.999700,0.017020 -0.850700,-0.326700,0.251500,-0.955800,-0.115400,0.270400 -0.513200,0.466600,0.483000,-0.691700,0.125000,0.711300 0.630100,-0.126800,-0.151000,0.961600,0.065390,-0.266500 0.459700,0.567800,-0.171400,0.959500,0.034840,-0.279700 -0.002124,-0.500500,0.540200,0.093590,-0.938800,0.331400 -0.349000,0.490300,-0.573000,-0.274700,0.095280,-0.956800 0.189300,0.476700,-0.528400,0.485300,0.099030,-0.868700 -0.766700,-0.376500,0.407200,-0.848200,-0.164600,0.503500 -0.002364,0.517400,-0.598700,0.243100,0.069710,-0.967500 0.356200,-0.517800,-0.374700,-0.813300,0.014180,0.581600 0.371300,0.628400,-0.353500,0.858700,-0.008790,-0.512400 -0.142600,-0.510300,0.724800,0.018900,-0.352800,0.935500 -0.072020,0.214700,-0.668300,-0.013530,0.296400,-0.955000 -0.817500,-0.266800,0.347100,-0.858400,-0.041450,0.511300 0.553600,0.143300,-0.148900,0.899800,0.349800,-0.260900 0.327800,0.466500,-0.418100,0.687200,0.139600,-0.713000 -0.666800,-0.137100,0.546000,-0.691200,0.102800,0.715300 -0.071980,0.200600,-0.672700,-0.013600,0.304200,-0.952500 -0.645900,0.405700,0.346700,-0.848000,0.162000,0.504700 0.220400,0.486900,-0.509900,0.485600,0.094600,-0.869100 0.416500,0.052600,-0.486700,0.648700,0.361700,-0.669600 0.166500,0.274600,-0.582900,0.472400,0.254200,-0.844000 0.200300,-0.276800,-0.701200,0.486900,-0.062080,-0.871300 0.295600,-0.496100,-0.598400,0.464000,-0.325900,-0.823700 0.344600,0.112000,-0.525500,0.636700,0.373900,-0.674500 0.494600,-0.176900,-0.467100,0.858300,0.051800,-0.510500 -0.268600,0.517300,0.596100,-0.260500,0.082760,0.961900 -0.669400,0.547600,0.278500,-0.857100,0.055090,0.512200 0.641700,-0.236800,-0.131400,0.961200,-0.042590,-0.272500 0.246900,-0.226800,-0.677100,0.487400,-0.008809,-0.873100 0.076900,-0.226800,-0.745400,0.247200,-0.009295,-0.968900 0.332600,-0.528300,-0.078360,0.236600,-0.969900,-0.058420 0.281600,0.273600,-0.512800,0.680700,0.262900,-0.683800 -0.875800,-0.033240,0.021840,-0.974200,0.225300,0.013940 -0.518100,-0.186800,0.666300,-0.480700,0.029920,0.876400 0.271700,0.273600,-0.522400,0.634300,0.271000,-0.724000 -0.668400,-0.518600,0.273600,0.858700,0.016790,-0.512200 -0.626800,-0.082340,0.574000,-0.688500,0.173600,0.704200 -0.427800,-0.236700,0.717200,-0.496700,-0.042880,0.866900 -0.142400,0.275700,-0.649900,-0.013930,0.248900,-0.968400 0.602800,-0.246800,-0.265000,0.960200,-0.049420,-0.275000 0.325900,-0.494700,0.581500,0.503300,-0.333800,0.797100 0.126900,0.537600,-0.557600,0.486400,0.060410,-0.871600 0.346100,-0.346600,-0.607300,0.682000,-0.155000,-0.714800 -0.002672,-0.116700,-0.758600,0.242900,0.118500,-0.962800 -0.122300,0.043660,-0.729200,-0.013690,0.307200,-0.951500 -0.857000,0.038280,-0.017650,-0.955800,0.293800,0.014190 0.091270,-0.226700,-0.741700,0.245300,-0.008876,-0.969400 -0.031930,-0.433500,0.747100,0.020180,-0.211600,0.977100 -0.701000,-0.466200,0.469900,-0.686200,-0.286200,0.668800 -0.472000,-0.266900,0.691400,-0.487500,-0.024830,0.872800 -0.302200,0.002079,-0.720300,-0.263400,0.274000,-0.925000 -0.719900,-0.498600,0.123500,0.917300,-0.209200,-0.338800 -0.428000,-0.216800,0.717500,-0.494000,0.024370,0.869100 0.920900,0.269500,0.051220,0.835800,0.002639,0.549100 0.529300,0.470600,-0.060680,0.470600,-0.412300,-0.780100 -0.563300,0.608200,0.422400,-0.705100,0.021520,0.708800 -0.292600,-0.146700,0.752700,-0.238800,0.105000,0.965400 -0.232100,0.628300,0.601200,-0.235400,-0.005808,0.971900 0.082820,0.690500,-0.560000,0.174100,0.625300,-0.760800 0.481400,0.517200,-0.103900,0.954600,0.085460,-0.285400 -0.051990,-0.447600,0.743800,0.016100,-0.308800,0.951000 -0.533600,0.698000,0.425500,-0.526300,0.679700,0.510900 0.380100,-0.516700,0.011860,0.284700,-0.958600,-0.004095 -0.641700,0.648100,0.321600,-0.858300,0.041180,0.511600 0.276200,-0.539700,-0.048400,0.133400,-0.991000,-0.008855 -0.748700,-0.046850,0.428700,-0.838600,0.216900,0.499800 0.862200,0.125900,0.074240,0.153200,-0.066160,0.986000 -0.507300,0.375700,0.506700,-0.622200,0.196900,0.757700 0.274500,0.384600,-0.485600,0.685800,0.174700,-0.706500 0.630000,-0.206900,-0.171200,0.960800,0.053450,-0.271900 0.264400,-0.086780,-0.654600,0.481500,0.161600,-0.861400 -0.375300,-0.001645,0.705300,-0.231600,0.300800,0.925100 0.106100,0.638400,-0.566300,0.398500,0.002971,-0.917200 0.067590,-0.346800,-0.738300,0.239000,-0.152900,-0.958900 0.165500,0.172800,-0.618800,0.460400,0.330100,-0.824000 -0.042120,0.066720,-0.721600,0.081790,0.351700,-0.932500 -0.745600,0.427800,0.002099,-0.991700,0.127700,0.015680 -0.429600,0.570800,-0.525200,-0.512800,0.028380,-0.858100 -0.705200,0.487100,0.205200,-0.957600,0.094460,0.272200 0.550300,-0.547300,-0.199100,0.207000,-0.977800,-0.032060 0.149400,0.284700,-0.589500,0.474900,0.238800,-0.847100 -0.528700,0.557700,0.458200,-0.696600,0.027110,0.717000 0.574000,-0.086770,-0.314200,0.844100,0.154400,-0.513500 -0.262200,-0.506700,0.713600,-0.220200,-0.382200,0.897500 -0.603000,-0.495600,0.552600,-0.654600,-0.325000,0.682500 -0.072120,-0.539900,0.400400,0.011540,-0.991200,0.132100 0.031620,-0.135900,-0.752000,0.244200,0.097330,-0.964800 -0.648300,0.578100,0.311700,-0.858400,0.026010,0.512400 -0.165900,-0.540100,-0.709900,-0.014290,-0.471600,-0.881700 0.819000,-0.185400,0.072170,-0.263300,-0.126900,0.956300 -0.643500,0.253900,0.412800,-0.718600,0.256400,0.646400 0.425500,-0.499200,0.091790,0.341500,-0.936000,0.085620 -0.409300,-0.236700,0.727000,-0.323900,-0.028670,0.945700 -0.794800,0.133600,0.191900,-0.897700,0.360100,0.254000 -0.241800,-0.459900,0.734000,-0.229600,-0.313600,0.921400 -0.612200,-0.544800,-0.367200,0.464400,-0.788000,0.404300 0.048180,-0.532100,0.413100,0.065150,-0.981600,0.179700 -0.710300,-0.267000,0.509100,-0.696300,-0.041750,0.716500 -0.673700,-0.167100,0.542900,-0.692300,0.068900,0.718300 0.408200,0.711000,-0.210200,0.374100,0.919900,-0.117800 0.221400,0.680600,-0.339600,-0.598000,0.504500,0.622800 0.419300,0.157600,-0.428300,0.704200,0.343300,-0.621500 -0.707900,0.264800,0.301100,-0.828400,0.262700,0.494700 -0.718300,0.691900,0.021840,-0.802600,0.596400,0.011170 -0.051960,0.710900,-0.566900,0.066030,0.921600,-0.382400 0.298500,0.675500,-0.232400,-0.695200,0.587800,0.413700 -0.258500,-0.529300,0.042600,0.213300,-0.974800,-0.064850 0.807400,-0.390400,-0.017190,0.505700,-0.844600,-0.175800 -0.777700,-0.026930,0.371100,-0.836800,0.225100,0.499200 -0.684000,-0.489400,0.223600,0.623100,-0.779700,-0.061810 -0.429500,0.698400,0.505600,-0.336100,0.699700,0.630400 0.240500,0.608200,-0.491000,0.577700,0.005120,-0.816300 -0.453700,-0.246700,0.702000,-0.488000,-0.033530,0.872200 0.820600,-0.332900,-0.069350,0.216100,-0.222700,-0.950600 0.101000,0.537500,-0.570900,0.346900,0.062400,-0.935800 -0.898000,-0.236000,-0.027050,-0.999600,-0.022980,0.013830 0.003142,-0.528600,-0.591600,-0.251600,0.022690,0.967600 0.217600,0.466700,-0.513700,0.487300,0.108800,-0.866500 0.743900,0.516700,0.069930,-0.231600,-0.414900,0.879900 0.201300,-0.545000,-0.513200,-0.357500,-0.696000,0.622700 0.435100,-0.126600,-0.525400,0.687900,0.104900,-0.718200 0.045080,0.444700,0.597000,0.261000,0.145000,0.954400 0.257400,0.305200,-0.523500,0.501600,0.230600,-0.833800 -0.504700,-0.547400,0.585300,-0.003909,-1.000000,0.005164 0.821700,0.350100,-0.006235,-0.963700,-0.253600,-0.083600 0.900600,0.206200,-0.065040,0.548900,-0.080970,-0.831900 0.146400,-0.528600,-0.541700,-0.487100,0.030330,0.872800 -0.313400,0.497400,0.586300,-0.250500,0.080430,0.964800 0.069780,0.709500,0.481400,-0.141700,0.897700,-0.417100 -0.773700,-0.186400,0.420900,-0.858400,0.033030,0.511900 -0.122500,-0.508400,-0.066370,-0.000466,-0.945500,0.325700 -0.322000,-0.047110,-0.727100,-0.266000,0.216400,-0.939400 -0.381500,0.346900,-0.584200,-0.408500,0.193200,-0.892100 0.249200,-0.537500,-0.480500,-0.639300,-0.093520,0.763300 0.453600,-0.107000,-0.503700,0.686000,0.175100,-0.706200 -0.213300,-0.112000,-0.763500,-0.014440,0.132800,-0.991000 -0.002655,0.376200,0.621600,0.264600,0.193000,0.944800 -0.142400,-0.426600,-0.746800,-0.013990,-0.226500,-0.973900 0.589400,0.597800,0.001683,-0.258600,0.966000,-0.004119 -0.191900,-0.111700,-0.763700,-0.013670,0.135300,-0.990700 -0.769800,-0.216800,0.429300,-0.858100,0.013230,0.513200 0.411600,0.243900,-0.387800,0.822300,0.281600,-0.494600 0.841900,-0.023890,0.030510,0.939000,-0.139000,0.314700 -0.575100,-0.356600,0.622800,-0.494200,-0.182900,0.849900 -0.473700,-0.540700,0.182400,-0.100800,-0.993000,0.060820 0.551900,0.048170,-0.286100,0.902100,0.321300,-0.288000 0.156000,0.416000,-0.555700,0.483700,0.149700,-0.862400 -0.747300,0.154100,-0.296500,-0.821500,0.338900,-0.458600 0.810400,0.524700,-0.060640,0.452300,0.470100,-0.757900 -0.474300,0.681100,0.495000,-0.477600,0.455000,0.751600 0.562100,0.485800,0.051590,0.527700,-0.672100,0.519400 0.717700,0.598300,-0.020180,0.244800,0.949300,-0.197000 0.281800,0.706700,-0.409800,0.357100,0.845600,-0.396800 -0.122600,-0.497800,-0.036440,-0.006616,-0.938700,0.344600 -0.231700,0.062940,0.720700,-0.236300,0.360900,0.902200 -0.411400,-0.500900,-0.467500,-0.173400,-0.941100,-0.290400 -0.858900,-0.216800,-0.247700,-0.968700,0.017620,-0.247600 0.138600,-0.540800,-0.289300,0.080490,-0.993300,-0.082780 -0.808300,-0.015770,-0.307000,-0.848800,0.233900,-0.474100 -0.551400,-0.536400,0.579400,-0.517700,-0.358600,0.776800 -0.472100,-0.501200,-0.428300,-0.226500,-0.942600,-0.245200 0.227600,-0.476300,-0.643500,0.466000,-0.287600,-0.836700 0.501700,0.122000,-0.317100,0.803700,0.366700,-0.468600 -0.582000,-0.045840,-0.604000,-0.500300,0.219600,-0.837500 -0.251000,-0.406100,-0.745400,-0.261500,-0.225500,-0.938500 0.156900,0.699900,-0.513800,0.329400,0.743700,-0.581800 0.488400,0.122500,-0.339900,0.805400,0.361800,-0.469500 -0.481500,-0.095740,-0.674500,-0.506700,0.159800,-0.847200 -0.806700,-0.505700,0.252500,-0.903800,-0.341900,0.257200 0.604900,-0.426300,0.170900,0.942400,-0.233700,0.239400 0.619900,-0.126700,-0.187000,0.959300,0.093460,-0.266300 -0.634100,-0.506500,0.161100,-0.316700,-0.944100,0.091450 -0.101800,-0.499200,-0.033600,-0.204600,-0.928100,0.311000 0.511800,0.162800,-0.268200,0.889000,0.317000,-0.330400 0.175900,0.666400,-0.525100,0.466800,0.218900,-0.856800 -0.122400,-0.486600,-0.592000,-0.001433,-0.975700,0.219100 0.578900,-0.026810,-0.267200,0.951500,0.189300,-0.242500 -0.360400,0.416200,0.582900,-0.454100,0.165800,0.875400 -0.618300,0.320100,0.414700,-0.674200,0.224400,0.703600 -0.632100,0.212800,0.440900,-0.674300,0.272700,0.686300 -0.582100,-0.068130,-0.609200,-0.504600,0.170600,-0.846400 0.882400,0.425100,-0.056690,0.654000,0.299200,-0.694900 -0.615400,-0.531000,0.522300,-0.652700,-0.350700,0.671500 -0.535600,-0.181200,0.656700,-0.487000,0.034120,0.872700 -0.434900,0.665200,-0.350900,0.260300,0.946600,0.190400 0.602800,0.567900,-0.066540,-0.149700,0.503400,-0.851000 0.207500,-0.506000,-0.643600,0.456600,-0.343000,-0.820900 -0.808100,-0.466700,0.292500,-0.903100,-0.279100,0.326300 -0.301600,-0.105800,-0.743500,-0.270400,0.146300,-0.951600 -0.424000,0.229200,0.595400,-0.482000,0.278200,0.830800 0.477100,-0.543600,-0.377300,0.660600,-0.625200,-0.415700 0.824500,0.030170,-0.068290,0.343100,-0.118500,-0.931800 -0.242000,0.255000,-0.648200,-0.261600,0.263700,-0.928400 -0.222000,0.477000,0.611300,-0.249700,0.126500,0.960000 -0.875600,-0.367600,0.140600,-0.949800,-0.160800,0.268300 -0.798400,-0.065710,-0.347300,-0.859700,0.177100,-0.479100 -0.303800,-0.517600,0.472700,-0.085420,-0.960200,0.266000 -0.847600,-0.015820,-0.187700,-0.942100,0.233600,-0.240400 0.229400,-0.520100,0.343500,0.187500,-0.965200,0.182100 0.030030,-0.301900,-0.753200,0.246000,-0.099450,-0.964200 -0.774000,-0.446300,0.364000,-0.824800,-0.270800,0.496400 0.231600,0.168400,-0.583700,0.460000,0.331200,-0.823800 -0.248400,0.345900,0.625300,-0.245000,0.228700,0.942200 -0.695500,-0.521100,0.448200,-0.748400,-0.379900,0.543700 0.612800,-0.467500,0.091190,0.945800,-0.282700,0.160200 0.276700,0.183500,-0.552400,0.483700,0.320400,-0.814500 0.336700,-0.509100,-0.254100,0.286900,-0.942100,-0.173500 0.311000,0.137900,-0.544600,0.654700,0.334100,-0.678100 -0.406300,-0.531500,0.663100,-0.471400,-0.321200,0.821300 -0.495700,-0.500500,0.625900,-0.444600,-0.343900,0.827100 0.580100,0.027690,-0.210100,0.921000,0.281500,-0.269300 0.456100,-0.476800,-0.457400,0.764900,-0.286700,-0.576800 -0.774800,0.153000,-0.239200,-0.912000,0.336100,-0.235300 -0.343400,0.557800,-0.569700,-0.268200,0.044240,-0.962400 -0.292300,0.405100,-0.600100,-0.266300,0.159500,-0.950600 -0.330000,0.300200,0.615200,-0.235000,0.202100,0.950800 -0.856100,0.020570,-0.112700,-0.927900,0.287000,-0.238100 -0.012670,0.386300,-0.617900,0.240900,0.164700,-0.956500 -0.835400,0.080220,-0.112400,-0.908500,0.349900,-0.228400 -0.046390,-0.528600,-0.112500,-0.134600,-0.971900,0.193100 -0.546400,-0.508500,0.436000,0.693600,-0.098930,-0.713500 -0.625500,0.705600,-0.288200,-0.471200,0.840500,-0.267300 0.490600,0.077540,-0.369600,0.812300,0.341300,-0.473000 0.072000,-0.379100,0.734700,0.274300,-0.189100,0.942900 0.141300,0.684400,-0.409300,-0.405500,0.523900,0.749100 0.221700,0.269500,-0.553700,0.470800,0.261100,-0.842700 -0.548400,0.703400,0.275500,0.536800,0.783100,-0.314000 0.410200,-0.500100,-0.139000,0.326900,-0.940400,-0.093960 -0.578300,0.208900,0.495400,-0.659200,0.310700,0.684800 -0.741100,0.365800,0.141300,-0.945200,0.186300,0.268300 0.510900,0.077650,-0.334500,0.799500,0.350400,-0.487900 0.340300,-0.032350,-0.594000,0.688400,0.236400,-0.685800 -0.461700,0.526400,-0.508700,-0.510700,0.063560,-0.857400 -0.718300,0.209000,0.315600,-0.819700,0.298700,0.488800 0.604600,0.041890,0.100500,0.934800,0.265300,0.236000 -0.498200,0.223800,0.555900,-0.467300,0.304800,0.829900 -0.484700,0.224400,0.562900,-0.459300,0.302700,0.835100 0.582200,-0.067640,-0.289100,0.951100,0.163600,-0.262100 0.258300,-0.377300,-0.654500,0.479500,-0.169000,-0.861100 0.591700,-0.011770,-0.210700,0.932500,0.243200,-0.267000 -0.461700,0.324700,0.545300,-0.480600,0.233700,0.845200 0.461700,0.426100,-0.208900,0.941600,0.165700,-0.293200 0.086970,-0.472900,0.705800,0.278700,-0.292600,0.914700 -0.498300,0.700000,0.336300,0.446700,0.761500,-0.469600 0.883600,0.146500,-0.066590,0.492800,-0.174600,-0.852500 0.840200,0.037050,-0.060980,0.564800,-0.276500,-0.777500 0.263900,-0.487500,0.438300,0.200000,-0.955100,0.218400 0.258900,-0.538800,-0.139300,0.160300,-0.986000,-0.046400 0.469900,0.007343,-0.449700,0.831100,0.288700,-0.475400 -0.417400,0.676400,-0.386700,0.444800,0.592400,0.671700 0.760300,0.574600,-0.043380,0.358900,0.788300,-0.499700 -0.565300,-0.505200,-0.311000,-0.288300,-0.943700,-0.162400 -0.737600,-0.356500,0.462300,-0.847100,-0.162700,0.505800 -0.665100,0.487100,0.294500,-0.854700,0.094730,0.510300 0.491600,0.436200,-0.098550,0.951300,0.149400,-0.269700 0.884700,-0.179200,-0.018390,0.927100,0.325200,-0.186100 0.572200,-0.351300,-0.320800,0.840800,-0.200900,-0.502700 -0.878500,-0.324200,-0.145200,-0.963600,-0.109700,-0.243800 0.261500,0.701100,-0.323100,-0.437400,0.792500,0.425000 -0.518600,-0.517800,0.315200,-0.211200,-0.960800,0.179600 -0.656600,-0.486800,-0.260700,0.122900,-0.984100,0.128300 -0.754600,0.286100,-0.152600,-0.940800,0.237300,-0.242000 -0.379800,-0.501000,-0.549200,0.513700,-0.343100,0.786400 -0.187800,-0.509300,0.032670,0.312300,-0.937400,-0.154300 -0.659000,0.148400,0.445200,-0.642000,0.363900,0.674800 -0.793800,-0.476300,0.313400,-0.821700,-0.289200,0.491100 -0.315800,-0.126600,0.744600,-0.224300,0.082030,0.971100 -0.242200,-0.057230,-0.751800,-0.230300,0.209300,-0.950300 0.166600,0.194100,-0.609900,0.463900,0.307200,-0.830900 0.153200,-0.486200,0.518100,-0.049700,-0.998000,0.037790 0.572100,-0.434800,0.286400,0.870400,-0.216200,0.442400 -0.763700,-0.096710,0.421000,-0.847700,0.157500,0.506600 -0.527400,-0.486700,0.424500,-0.311500,-0.893200,0.324300 -0.482800,-0.106900,0.677800,-0.478000,0.142000,0.866800 0.183800,-0.507100,0.438300,0.170800,-0.943100,0.285400 -0.687100,-0.331900,0.523600,-0.692400,-0.129200,0.709900 -0.882900,-0.356900,0.121500,-0.962500,-0.160000,0.219100 -0.304800,-0.239300,-0.750700,-0.272100,-0.029860,-0.961800 0.396700,-0.497200,-0.507600,0.659400,-0.325200,-0.677900 0.219200,-0.525800,0.323300,0.184000,-0.966500,0.179000 0.877900,0.386100,-0.068940,0.295800,0.089570,-0.951000 -0.857500,-0.056910,0.191400,-0.944600,0.192900,0.265600 -0.398000,-0.382100,0.714000,-0.258700,-0.152600,0.953800 0.741700,-0.056060,0.012600,-0.998200,-0.017380,0.057790 -0.373200,-0.519100,0.429700,-0.128900,-0.964400,0.231100 0.583400,-0.537600,0.111400,0.899200,-0.364700,0.241800 -0.677700,0.239200,0.365700,-0.826200,0.275300,0.491600 -0.452800,0.709400,-0.468400,-0.211500,0.914500,-0.344800 0.475500,-0.416500,-0.457600,0.846000,-0.235700,-0.478200 -0.714000,0.406000,0.211500,-0.950000,0.159600,0.268300 0.027160,0.052770,-0.710700,0.232400,0.333100,-0.913800 -0.510900,0.385100,0.500800,-0.668200,0.182800,0.721200 0.058310,-0.326700,-0.743500,0.244900,-0.115800,-0.962600 -0.801000,0.183900,0.101200,-0.938700,0.318100,0.132700 -0.302200,-0.466700,0.717000,-0.239200,-0.277800,0.930400 -0.023450,0.072530,-0.716000,0.217300,0.350400,-0.911000 -0.261900,-0.466600,0.726800,-0.233000,-0.297000,0.926000 -0.464200,-0.476200,0.652700,-0.447900,-0.281500,0.848600 -0.430300,-0.406100,0.692600,-0.475100,-0.238000,0.847100 -0.446400,0.679300,-0.362300,0.621800,0.491500,0.609800 -0.420000,0.466500,0.542200,-0.479000,0.099410,0.872200 -0.382300,-0.526200,0.675700,-0.230800,-0.342800,0.910600 -0.740500,0.355500,0.151100,-0.943300,0.196200,0.267800 -0.746900,0.365700,0.120900,-0.944500,0.189900,0.268100 0.723100,-0.314200,0.029540,0.004769,0.964300,0.264800 -0.488300,0.693800,0.337500,0.510500,0.663300,-0.547100 -0.391500,0.121800,0.655300,-0.410100,0.341100,0.845900 -0.687100,0.325200,0.307100,-0.839000,0.217900,0.498700 0.388700,-0.037440,-0.549500,0.671000,0.242100,-0.700800 0.087720,0.073250,-0.687600,0.229700,0.349700,-0.908300 0.583100,-0.536800,-0.117600,0.903700,-0.348500,-0.248800 0.249700,-0.126900,-0.669300,0.485600,0.102200,-0.868200 -0.314400,-0.540900,-0.079060,0.108100,-0.993000,0.047310 0.339800,0.218300,-0.477700,0.668500,0.294400,-0.683000 0.508500,0.400300,0.011440,0.944800,-0.322100,0.059300 -0.696800,0.193500,0.360800,-0.816900,0.287800,0.499800 -0.012940,-0.476900,-0.727900,0.231900,-0.285800,-0.929800 0.874300,0.054100,-0.021680,0.859900,-0.473800,-0.190100 -0.468900,-0.316900,0.688300,-0.488100,-0.078120,0.869300 -0.733500,-0.466500,0.420100,-0.822200,-0.288400,0.490600 0.634000,-0.230100,0.158300,0.967600,-0.032620,0.250500 -0.728000,0.023030,0.428200,-0.822400,0.288000,0.490600 0.400300,0.167800,-0.442800,0.665700,0.301200,-0.682700 0.369800,0.027200,-0.543000,0.664500,0.300800,-0.684100 -0.858100,-0.046910,0.181500,-0.939600,0.217000,0.264500 0.077460,0.082860,-0.686500,0.229400,0.349800,-0.908300 0.250100,0.264400,-0.539400,0.470600,0.262100,-0.842500 -0.410700,0.285400,-0.583400,-0.500000,0.241000,-0.831800 -0.059940,-0.509300,-0.028040,-0.314500,-0.938700,0.141200 -0.686500,0.269000,0.334700,-0.828800,0.261100,0.494800 0.605200,-0.486000,0.100600,0.928200,-0.294400,0.227700 -0.656600,-0.441600,0.523200,-0.673900,-0.258900,0.692000 0.129300,0.003544,0.701800,0.260300,0.258300,0.930300 -0.301500,-0.017280,-0.725800,-0.266300,0.233500,-0.935200 -0.251200,0.335000,-0.625200,-0.268000,0.204600,-0.941400 -0.592500,0.284100,0.451600,-0.674800,0.248000,0.695100 0.109200,-0.509700,-0.469200,0.163500,-0.941900,-0.293500 0.589700,-0.530000,-0.098400,0.938600,-0.329300,-0.102600 -0.735200,0.302600,-0.213200,-0.942500,0.230400,-0.242200 -0.679800,0.486800,0.269900,-0.854800,0.094860,0.510200 0.014870,-0.501700,-0.712600,0.224500,-0.340700,-0.913000 0.036390,-0.406100,0.738800,0.273900,-0.256700,0.926800 0.147200,-0.157200,-0.725000,0.245000,0.086660,-0.965600 -0.322400,0.230900,-0.632400,-0.266600,0.293900,-0.917900 0.548800,-0.355400,0.361000,0.861800,-0.163300,0.480200 0.553400,-0.486800,-0.288100,0.897700,-0.265800,-0.351300 0.370500,0.037530,-0.538700,0.669300,0.280600,-0.687900 -0.031140,-0.490100,-0.569200,0.100100,-0.914500,-0.391900 -0.333000,0.193200,0.645400,-0.235700,0.354500,0.904900 0.517100,-0.495200,-0.345500,0.824300,-0.279300,-0.492500 0.276700,-0.366600,-0.646300,0.481300,-0.161400,-0.861600 0.016480,-0.426400,0.739500,0.271000,-0.210000,0.939400 -0.635800,0.706600,0.271600,-0.476900,0.834000,0.277500 0.581800,-0.487200,0.191000,0.921600,-0.317200,0.223900 0.241700,-0.534000,0.615300,0.500000,-0.326400,0.802100 -0.268100,0.328300,-0.621900,-0.269400,0.216500,-0.938400 -0.433500,-0.516900,0.402200,-0.185900,-0.958600,0.215500 0.860500,0.414700,0.073600,0.138200,0.072980,0.987700 0.340600,0.047450,-0.564100,0.649900,0.310600,-0.693700 0.056710,-0.376500,0.739500,0.285500,-0.164400,0.944200 -0.676900,0.298100,-0.333900,-0.848600,0.233900,-0.474500 -0.830400,-0.526300,0.140800,-0.902500,-0.348000,0.253900 0.585300,0.022580,-0.197500,0.920000,0.294300,-0.259000 0.647900,-0.256800,0.001847,0.999900,0.014620,-0.006084 -0.401100,0.325200,0.579900,-0.473300,0.222400,0.852400 -0.651400,-0.137300,0.560800,-0.687700,0.108500,0.717900 0.816700,-0.267100,-0.061800,-0.576000,0.168400,-0.800000 -0.491700,0.365600,0.519500,-0.491200,0.199800,0.847800 -0.551400,0.093730,-0.573100,-0.477600,0.352700,-0.804700 -0.777900,-0.416400,0.371800,-0.836700,-0.225500,0.499100 -0.815400,-0.500600,0.228800,-0.904900,-0.338600,0.257900 -0.529200,-0.539100,0.037920,-0.153800,-0.988100,0.003878 0.395800,-0.510200,0.081820,0.319800,-0.944100,0.079670 0.550100,-0.413400,0.334400,0.857200,-0.225900,0.462800 0.325000,0.507400,-0.415400,0.697500,0.082160,-0.711800 -0.036440,0.456700,-0.613300,0.241100,0.122700,-0.962700 -0.545900,0.696200,-0.411800,-0.503600,0.711800,-0.489600 -0.770700,0.193800,-0.198100,-0.922600,0.308200,-0.231800 -0.519700,0.254300,0.532300,-0.591800,0.277500,0.756800 0.043970,0.456700,-0.593000,0.242400,0.123600,-0.962300 0.222300,-0.489100,0.645500,0.492200,-0.297500,0.818100 -0.405400,-0.528100,0.538400,0.488500,-0.015840,-0.872400 -0.030210,0.686000,0.483100,-0.230100,0.527300,-0.817900 -0.689800,-0.125400,-0.517900,-0.712300,0.104200,-0.694100 -0.241700,0.684800,0.589600,-0.217100,0.493100,0.842500 -0.723700,0.315000,0.241500,-0.936900,0.226300,0.266500 0.837900,-0.167600,-0.069180,0.258500,0.117300,-0.958900 -0.791100,-0.087000,-0.367600,-0.862700,0.160900,-0.479500 -0.735600,0.010340,-0.422800,-0.837700,0.283200,-0.467100 -0.382700,0.063030,-0.677600,-0.255100,0.343000,-0.904000 0.595500,0.052440,-0.127100,0.909400,0.336500,-0.244500 -0.591700,-0.147000,-0.615900,-0.509800,0.098310,-0.854600 -0.312100,-0.086900,-0.737500,-0.267200,0.159900,-0.950300 0.311200,0.350500,-0.459300,0.687800,0.176600,-0.704100 0.309500,-0.525500,0.192500,0.224500,-0.966500,0.124800 0.058390,-0.386600,-0.733700,0.240700,-0.186900,-0.952400 0.422900,-0.500600,-0.480500,0.656200,-0.334300,-0.676500 -0.050960,0.697000,0.496500,-0.106700,0.709300,-0.696800 -0.312200,0.062860,0.700600,-0.233100,0.346200,0.908700 -0.062070,0.662600,0.464400,-0.070020,0.974700,-0.212100 0.581400,-0.396400,-0.278100,0.941800,-0.231000,-0.244300 0.474800,-0.377000,-0.474800,0.760000,-0.162200,-0.629400 -0.745500,-0.321800,0.458700,-0.853800,-0.103800,0.510100 -0.835200,0.042390,-0.168400,-0.922600,0.306300,-0.234600 0.604800,-0.336400,0.241300,0.952000,-0.169500,0.255000 0.390400,-0.528100,-0.318100,-0.858200,-0.005103,0.513300 0.764800,0.034920,-0.039830,-0.835800,0.313100,-0.451000 0.475800,-0.007075,-0.447700,0.830400,0.260300,-0.492600 0.166000,0.693200,-0.515500,0.374000,0.636600,-0.674400 -0.511000,-0.539700,0.105600,-0.130000,-0.990800,0.036440 0.017300,0.244700,-0.643600,0.236500,0.269800,-0.933400 0.767900,0.062700,-0.017370,-0.894800,0.398400,-0.201400 0.002732,0.401500,-0.611400,0.241600,0.164200,-0.956400 -0.322500,0.415100,-0.589900,-0.263500,0.148800,-0.953100 0.127900,-0.345600,0.724000,0.263400,-0.162100,0.951000 0.417900,0.657800,-0.275500,0.852600,0.112500,-0.510200 -0.755800,-0.381800,0.423600,-0.844600,-0.179000,0.504500 -0.637400,-0.142000,0.574600,-0.686800,0.121600,0.716600 -0.173400,-0.517300,-0.079940,0.147300,-0.959200,0.241500 -0.341800,0.365300,0.598100,-0.255600,0.209600,0.943800 0.339000,-0.504000,0.282700,0.291400,-0.942600,0.163000 0.027060,-0.246800,0.761400,0.262300,-0.044610,0.963900 -0.023140,0.052830,-0.723400,0.217200,0.322900,-0.921200 0.058830,-0.510400,0.493800,0.089570,-0.946100,0.311100 -0.807800,-0.486300,0.272900,-0.918500,-0.296300,0.261800 -0.261800,-0.516200,0.709800,-0.227400,-0.354200,0.907100 -0.714500,0.365800,0.235200,-0.945400,0.185000,0.268400 0.703700,0.501900,0.030120,-0.277700,-0.920700,0.274400 -0.371400,0.567700,0.560700,-0.480400,0.045640,0.875900 0.545200,-0.067240,-0.356700,0.841000,0.159300,-0.517100 -0.702600,-0.067020,0.497500,-0.690600,0.175200,0.701700 -0.397700,0.065630,-0.672300,-0.255300,0.351100,-0.900900 -0.653700,0.224500,0.414200,-0.766800,0.299100,0.567900 -0.362800,0.275200,-0.608200,-0.261900,0.252100,-0.931600 -0.622700,0.598000,0.353700,-0.858700,0.016590,0.512200 0.597700,-0.046720,-0.218400,0.940700,0.214200,-0.263100 -0.152700,-0.541700,0.213800,0.016380,-0.993800,-0.110400 -0.211600,0.213800,0.669400,-0.208000,0.303100,0.930000 -0.244400,-0.524200,0.012000,0.254800,-0.966700,-0.022000 0.286600,0.222700,-0.527700,0.683500,0.281900,-0.673400 0.289900,0.102400,-0.578700,0.446400,0.392200,-0.804300 0.018590,-0.529800,0.433300,0.058740,-0.977900,0.200600 0.836900,-0.045580,0.038560,0.923100,-0.025230,0.383700 -0.081630,-0.523900,-0.110100,-0.090960,-0.966800,0.238700 -0.746000,-0.004346,-0.412900,-0.841300,0.260200,-0.473900 0.228600,-0.531100,-0.279000,0.149700,-0.981200,-0.121500 -0.221300,0.628900,0.603800,-0.233900,-0.008267,0.972200 0.206600,0.062690,-0.643100,0.457400,0.347000,-0.818800 0.591000,-0.091970,-0.270800,0.950900,0.147400,-0.272100 0.831400,-0.374500,-0.016850,0.606000,-0.778400,-0.163800 -0.213800,-0.515600,0.001808,0.292900,-0.956100,-0.005566 0.118300,0.043560,-0.690900,0.233800,0.307400,-0.922400 0.453300,-0.487700,0.092630,0.185600,-0.980200,0.068810 0.421400,0.534000,0.276700,0.869900,0.085080,0.485800 0.152300,0.574500,0.545600,0.521900,0.045360,0.851800 -0.502300,0.577800,0.482000,-0.710400,0.028810,0.703200 0.405400,0.638400,0.300600,0.872300,0.000885,0.488900 -0.052600,0.547600,-0.608600,0.115600,0.054800,-0.991800 -0.201900,0.547500,0.610800,-0.190100,0.048880,0.980500 0.088860,0.663000,0.343800,0.005513,1.000000,-0.002740 -0.162800,-0.534400,0.163600,0.044980,-0.982400,-0.181300 -0.588800,0.628300,0.397700,-0.696300,-0.042060,0.716500 0.484900,0.507000,0.090640,0.950600,0.085190,0.298600 -0.850800,-0.256800,0.271600,-0.961700,-0.032310,0.272200 0.320500,-0.153700,0.633800,0.506700,0.110300,0.855000 -0.444300,0.662500,-0.048510,-0.016570,0.999900,0.000000 -0.212800,-0.206700,0.775100,-0.081090,0.036290,0.996000 -0.708500,-0.508500,-0.159800,0.970400,-0.009351,0.241500 0.249900,0.662100,0.092340,0.016560,0.999900,0.000000 -0.454300,-0.545800,0.082250,-0.041800,-0.999100,0.011400 -0.609900,0.102300,-0.516100,-0.669600,0.357900,-0.650800 -0.436100,-0.260200,-0.711700,-0.450600,-0.031880,-0.892200 -0.697400,0.446500,0.247700,-0.918800,0.119600,0.376200 0.620300,-0.266900,-0.201500,0.964300,-0.041520,-0.261600 -0.152500,-0.186600,-0.770600,-0.014310,0.033240,-0.999300 -0.152600,0.577900,0.610700,0.011570,0.015030,0.999800 0.239800,0.662600,-0.048530,-0.011010,0.999900,-0.002760 0.626900,-0.256800,0.181400,0.971100,-0.029780,0.237000 0.822000,-0.206100,0.070250,-0.435500,-0.138600,0.889400 0.506300,-0.256800,-0.447900,0.853000,-0.007614,-0.521800 0.196400,0.557600,0.519700,0.515100,0.027180,0.856700 -0.665600,0.716300,-0.078710,-0.034660,0.999300,-0.011170 -0.403500,-0.504700,0.463400,-0.159800,-0.944900,0.285600 -0.152600,0.715800,0.535900,-0.024640,0.990000,-0.138700 -0.724000,0.588000,-0.108500,-0.969900,0.024250,-0.242300 0.119200,-0.546100,-0.108900,-0.033720,-0.999300,0.016230 -0.142500,-0.226800,-0.771600,-0.014300,-0.008727,-0.999900 0.301700,0.614900,0.436100,0.725300,-0.003326,0.688400 0.412600,0.614900,0.287500,0.873700,0.002735,0.486500 -0.132400,0.671900,0.481600,-0.012910,0.697200,-0.716700 -0.721500,0.628400,-0.117800,-0.970000,-0.008839,-0.242800 -0.670700,0.618300,-0.267100,-0.873600,-0.005457,-0.486600 0.503300,0.222200,0.239900,0.931400,0.282400,0.229800 -0.152600,0.497600,-0.611500,-0.012090,0.088010,-0.996000 0.027110,-0.196800,0.761300,0.268800,0.027620,0.962800 0.400700,-0.547300,-0.320100,-0.109700,-0.992100,0.060050 0.321400,-0.253500,0.635200,0.512700,-0.011050,0.858500 0.397800,0.628400,-0.310100,0.853800,-0.009440,-0.520400 -0.615300,0.716300,-0.239700,-0.055890,0.998200,-0.021620 -0.142600,-0.525900,0.719100,0.016440,-0.346100,0.938000 0.252500,-0.270200,0.675800,0.520900,-0.021060,0.853400 -0.524800,0.662800,-0.189400,0.013610,0.999900,0.005339 -0.155900,-0.538900,-0.403800,-0.001937,-0.987400,-0.158000 -0.011710,0.662600,0.253300,0.010960,0.999900,0.002778 -0.182700,0.409900,-0.621600,-0.014270,0.156500,-0.987600 -0.202800,-0.156900,-0.768200,-0.014240,0.087380,-0.996100 -0.733200,0.618300,-0.048570,-0.999900,-0.004791,0.014250 0.189500,0.662500,-0.068640,0.019210,0.999800,-0.005495 0.018480,0.662100,0.414300,0.000000,1.000000,0.000000 0.227100,0.618300,0.500300,0.510700,0.005470,0.859700 -0.162600,0.662500,0.293500,0.000000,1.000000,0.000000 0.511400,-0.547400,0.021910,-0.000050,-1.000000,0.000000 0.521500,-0.547400,0.142600,0.000000,-1.000000,0.000000 -0.071990,0.608200,-0.607400,-0.013980,0.005004,-0.999900 -0.645500,-0.547400,-0.370400,0.000000,-1.000000,0.000000 0.310100,-0.532000,0.424100,-0.719300,-0.010320,-0.694600 -0.746100,-0.547400,-0.139100,0.000000,-1.000000,0.000000 -0.202900,0.662100,0.404200,-0.016540,0.999900,0.000000 0.370600,-0.547400,0.414300,0.000000,-1.000000,0.000000 -0.253100,0.662100,0.213100,0.016490,0.999900,0.000000 -0.746100,-0.547400,-0.249700,0.000000,-1.000000,0.000000 -0.504600,0.662100,-0.129000,0.016490,0.999900,-0.000000 0.109000,-0.547400,0.615500,0.000000,-1.000000,0.000000 -0.132400,0.716000,0.535900,-0.000136,0.988300,-0.152700 -0.011700,0.662100,-0.249700,0.000000,1.000000,0.000000 0.028510,0.662500,-0.118900,0.000017,1.000000,-0.000033 -0.142500,0.662400,0.464300,-0.001694,0.976700,-0.214500 -0.112300,0.662100,-0.259800,-0.016540,0.999900,0.000000 0.179400,0.662800,-0.300000,0.016490,0.999900,0.000000 -0.615300,-0.547400,0.394100,0.000033,-1.000000,-0.000017 0.330400,-0.547400,-0.521300,0.000050,-1.000000,-0.000050 0.058660,0.662800,-0.300000,-0.000001,1.000000,0.000000 -0.273300,0.662100,-0.360400,0.000000,1.000000,0.000000 -0.213000,0.662500,-0.320100,-0.016560,0.999900,0.000000 -0.082120,-0.547400,0.665800,0.000000,-1.000000,0.000000 -0.192800,-0.547400,-0.632000,0.000000,-1.000000,0.000000 -0.129200,0.066380,0.724200,0.002380,0.331200,0.943600 -0.879300,-0.057490,0.111400,-0.975700,0.183300,0.120200 0.555000,-0.196900,0.370300,0.865600,0.015870,0.500500 -0.373900,0.662500,-0.098810,-0.016510,0.999900,0.000000 -0.076190,-0.518900,-0.495000,0.007772,-0.964400,-0.264400 0.467200,-0.518600,0.134100,-0.968800,-0.000046,-0.247800 -0.251000,-0.186800,-0.765400,-0.256800,0.032910,-0.965900 0.613500,-0.276700,0.230900,0.966400,-0.085210,0.242400 -0.098920,0.708300,-0.510000,0.020220,0.858000,0.513300 0.018430,0.662500,-0.129000,-0.016510,0.999900,0.000002 -0.552100,-0.066980,-0.626900,-0.502000,0.172000,-0.847600 -0.701400,0.071340,0.439500,-0.815100,0.344900,0.465500 0.590400,0.086700,0.005228,0.937900,0.347000,0.003238 -0.301700,0.507000,0.588400,-0.248500,0.089860,0.964500 -0.721000,0.456600,-0.157900,-0.962900,0.120100,-0.241800 -0.344300,-0.544000,-0.078860,0.094970,-0.995000,0.030290 -0.558800,-0.518000,-0.244000,-0.238500,-0.962200,-0.131200 -0.412300,-0.156800,0.722600,-0.398200,0.107300,0.911000 -0.730000,-0.508500,0.032030,0.999800,0.011540,-0.014330 0.259100,-0.541800,0.001798,0.112800,-0.993600,-0.001606 -0.528600,-0.539000,0.058400,-0.155100,-0.987700,0.018470 0.577200,0.123500,0.052140,0.916900,0.399000,-0.008613 -0.263200,0.662500,-0.028400,-0.013790,0.999900,-0.005492 0.442200,0.554200,0.236800,0.880400,0.023750,0.473600 -0.404100,-0.547000,-0.088770,0.010940,-0.999900,0.003027 -0.162600,0.662100,0.042040,-0.000033,1.000000,0.000017 0.349400,-0.524900,-0.038440,0.260000,-0.965600,-0.003802 0.483500,0.577800,-0.068530,0.999300,0.036930,-0.002895 -0.072110,0.662500,-0.038450,-0.016510,0.999900,0.000000 -0.849500,-0.505700,-0.008371,-0.939500,-0.342300,0.014250 0.569500,-0.353200,0.323900,0.866100,-0.175800,0.468000 -0.810500,0.163300,0.001693,-0.943500,0.331000,0.013490 -0.733700,0.567900,-0.018380,-0.999400,0.031950,0.014290 -0.709700,0.456500,0.201100,-0.955100,0.120900,0.270400 -0.051990,-0.036390,0.752700,0.024900,0.227700,0.973400 -0.072020,0.245300,-0.659200,-0.013760,0.263800,-0.964500 0.532900,0.251400,-0.031680,0.963300,0.268100,-0.013750 -0.464400,0.662500,-0.018330,0.016570,0.999900,-0.000019 -0.088750,-0.533400,-0.713600,-0.013430,-0.361600,-0.932200 0.179400,-0.547100,-0.018340,0.012840,-0.999900,-0.000149 0.129200,-0.546200,0.092340,-0.036340,-0.999300,-0.010890 -0.062000,0.716600,-0.541500,0.004967,0.999900,-0.011570 0.249200,-0.543000,0.031970,0.112400,-0.993700,0.001045 0.058730,-0.547400,0.655700,0.000017,-1.000000,0.000017 0.259900,0.662100,0.082280,-0.016610,0.999900,-0.000002 -0.766200,-0.547400,-0.048510,0.000000,-1.000000,0.000000 0.320300,0.662500,0.052090,0.002886,1.000000,0.002825 -0.494600,0.662100,-0.038450,-0.016600,0.999900,0.000003 -0.001636,0.662100,-0.209500,0.000000,1.000000,0.000000 -0.404200,-0.546700,-0.018330,0.036080,-0.999300,0.000280 0.551700,-0.547400,-0.018330,0.000000,-1.000000,0.000000 -0.444300,0.662500,0.072220,-0.016510,0.999900,0.000000 -0.303500,0.662500,0.042040,0.016450,0.999900,0.000000 0.259900,0.662100,0.062160,-0.005497,1.000000,0.002710 0.078840,0.662500,0.062160,0.016450,0.999900,0.000000 -0.813700,0.154500,-0.008321,-0.943400,0.331500,0.013470 0.593700,-0.523500,-0.018270,0.953300,-0.300200,-0.032550 0.154200,0.514100,0.548500,0.505900,0.091760,0.857700 0.058320,-0.542400,0.333100,0.057560,-0.993700,0.096520 -0.663500,0.713400,-0.158700,-0.289800,0.954400,-0.071950 0.008424,0.662100,0.323700,-0.000050,1.000000,0.000000 0.477400,-0.490200,0.008496,-0.735100,-0.677900,0.006808 0.648400,-0.196800,0.001824,0.999100,0.040720,-0.014320 0.512900,0.334800,-0.028290,0.969700,0.243400,-0.022750 0.481600,-0.508500,-0.008276,-0.999900,0.004004,0.014260 -0.082160,0.662600,-0.380500,-0.027610,0.999600,-0.002755 -0.492200,0.628400,-0.487100,-0.511900,-0.008811,-0.859000 -0.062010,-0.216800,-0.772800,-0.014300,0.012960,-0.999800 0.018440,-0.546400,-0.289900,0.018290,-0.999300,-0.032880 -0.894800,-0.297100,-0.028420,-0.995300,-0.096260,0.014230 0.507600,0.366000,0.042080,0.985800,0.167200,-0.014040 -0.072180,-0.393400,0.756400,0.008659,-0.230200,0.973100 -0.857600,-0.483300,-0.055330,-0.955500,-0.294600,0.013660 -0.098980,0.066190,0.723700,0.021600,0.342400,0.939300 0.623900,-0.017520,0.032100,0.969600,0.244600,-0.008493 -0.062030,-0.545900,-0.330100,0.010120,-0.999200,-0.039350 -0.732200,0.608200,0.021850,-0.999900,0.005049,0.014310 0.552000,0.189100,-0.071890,0.949500,0.313800,-0.002305 0.038580,0.662500,-0.189400,0.005585,1.000000,-0.002827 -0.082180,0.662500,-0.350300,-0.016560,0.999900,0.000000 -0.021460,-0.543200,-0.200000,-0.054040,-0.993600,0.098770 -0.895600,-0.287100,-0.018360,-0.996300,-0.084390,0.014230 -0.728400,-0.147000,0.487300,-0.683800,0.096860,0.723200 -0.611700,-0.319800,-0.598400,-0.702500,-0.099030,-0.704700 0.350100,-0.296700,-0.611500,0.693400,-0.096380,-0.714100 -0.707600,0.308400,-0.273800,-0.850000,0.230900,-0.473500 0.145600,-0.088790,0.717500,0.277100,0.198900,0.940000 0.018500,-0.547000,0.253300,-0.010250,-0.999800,-0.016750 -0.303000,0.714000,-0.529800,-0.084010,0.961700,-0.260900 0.343800,-0.136800,-0.615000,0.707700,0.080150,-0.701900 -0.893600,-0.136700,-0.088320,-0.988700,0.097110,-0.113900 -0.463800,-0.542300,0.172400,-0.097040,-0.993600,0.057350 -0.102300,-0.276900,0.772900,0.005964,-0.062330,0.998000 -0.575100,0.662500,0.052090,-0.005158,1.000000,-0.002553 -0.487600,0.449600,-0.501800,-0.507800,0.128800,-0.851800 0.289900,-0.537100,0.062050,0.176700,-0.983500,0.038180 0.027490,0.567800,0.591300,0.272200,0.029560,0.961800 0.008841,0.407900,0.612500,0.267300,0.127400,0.955200 -0.418000,0.449800,-0.543300,-0.507200,0.126500,-0.852500 -0.252600,0.712800,0.552900,-0.070880,0.945700,0.317100 -0.718400,0.657800,-0.127100,-0.962100,0.128800,-0.240500 0.529300,0.238600,0.115600,0.939700,0.249600,0.233900 0.008397,0.662100,-0.179300,-0.016540,0.999900,-0.000012 0.343100,0.453200,0.407000,0.712000,0.119300,0.692000 -0.021690,-0.545600,-0.229800,-0.023140,-0.998600,0.047070 -0.675000,0.507200,0.274300,-0.855200,0.079520,0.512100 -0.648300,-0.093650,-0.554400,-0.707900,0.160100,-0.687900 0.148700,-0.542500,0.262800,0.080320,-0.993700,0.078000 -0.583500,0.476700,0.412400,-0.698800,0.101000,0.708200 -0.368300,0.530700,-0.563500,-0.394900,0.060850,-0.916700 0.607600,0.014510,0.122600,0.920900,0.326300,0.213100 -0.193800,-0.522800,0.093590,0.157600,-0.965300,-0.208100 -0.758200,-0.113600,-0.435000,-0.866500,0.126900,-0.482700 -0.583200,-0.521400,-0.168800,-0.252700,-0.965200,-0.067090 -0.549900,-0.509200,0.315900,-0.286600,-0.941900,0.175100 -0.341900,-0.137000,0.739300,-0.246700,0.086070,0.965300 0.672300,0.607200,0.001758,0.071990,0.997400,-0.001148 0.644500,-0.147100,-0.038360,0.995000,0.097270,-0.022510 -0.896600,-0.166500,-0.048520,-0.997700,0.066990,0.014250 -0.659000,0.527500,0.298400,-0.856200,0.062020,0.512900 -0.593200,0.486700,0.402000,-0.695600,0.061730,0.715700 0.019140,-0.540400,-0.139800,-0.085860,-0.992500,0.087370 0.643300,-0.240100,0.117900,0.966800,-0.060500,0.248100 -0.606700,0.389000,-0.402200,-0.706800,0.169200,-0.686900 -0.433600,-0.542400,-0.219200,-0.095270,-0.993700,-0.058540 0.209000,-0.543400,0.162400,0.093380,-0.994300,0.052380 0.649700,-0.226800,0.021930,0.999700,-0.003346,-0.025330 0.047350,0.667400,-0.580200,0.252000,0.229700,-0.940100 0.279600,-0.536300,0.122400,0.177500,-0.983100,0.044490 -0.288700,-0.206900,0.757100,-0.248600,0.044960,0.967600 -0.242000,0.537500,0.601000,-0.232000,0.059250,0.970900 -0.253000,-0.544100,0.343300,-0.033720,-0.994400,0.099660 0.139300,-0.546000,0.021910,-0.040030,-0.999200,-0.000818 0.430600,0.493400,0.266100,0.869500,0.112200,0.481100 -0.508400,-0.313500,-0.663900,-0.509700,-0.097240,-0.854800 -0.222900,0.716300,-0.541200,-0.018040,0.996400,-0.083150 0.491200,0.560000,0.005178,0.579900,0.814600,-0.013150 0.269900,0.662800,-0.189300,-0.002770,1.000000,0.005531 -0.243000,-0.544300,-0.339900,-0.025450,-0.995400,-0.092470 0.642500,-0.260100,0.117700,0.968700,-0.007620,0.248100 -0.414200,-0.547000,-0.028390,0.020630,-0.999800,-0.000101 0.163200,0.473500,0.547000,0.513200,0.139400,0.846800 -0.353700,-0.546100,0.243200,-0.026220,-0.999300,0.026950 0.068720,-0.546400,0.263300,0.019260,-0.999300,0.031250 -0.012370,-0.489900,0.569700,0.109100,-0.915100,0.388300 -0.434100,0.662600,0.343800,0.145200,0.975400,-0.166100 -0.112400,0.205000,0.673200,0.005551,0.303800,0.952700 0.139100,0.587900,-0.548500,0.487600,0.024010,-0.872700 0.088880,-0.547200,-0.209500,0.003036,-1.000000,-0.003268 0.058790,-0.546400,-0.199500,-0.026170,-0.999300,0.027000 -0.353700,-0.546300,-0.229600,-0.027200,-0.999300,-0.026460 -0.112300,0.662100,-0.290000,-0.011040,0.999900,-0.002727 -0.675300,-0.236700,0.544500,-0.696800,-0.009446,0.717200 -0.162700,-0.526000,0.719300,0.007983,-0.346200,0.938100 0.649700,-0.216800,0.031960,0.999100,0.026900,-0.033630 -0.635500,-0.547400,-0.360400,0.008713,-0.999900,0.005408 -0.132400,-0.186700,0.774300,0.019860,0.030430,0.999300 0.284200,-0.230100,0.658000,0.517700,-0.019590,0.855300 0.405900,0.587900,-0.297100,0.864400,0.015730,-0.502600 -0.313500,-0.547400,0.645700,0.000000,-1.000000,0.000000 -0.454400,-0.547400,0.595400,0.000000,-1.000000,0.000000 -0.394000,0.662100,-0.310100,0.000000,1.000000,0.000000 -0.323600,-0.547400,-0.652100,-0.000000,-1.000000,-0.000050 0.179400,0.662500,0.273400,-0.016580,0.999900,0.000000 0.008424,0.662100,-0.259800,0.000050,1.000000,0.000000 0.451100,-0.547400,0.333800,0.000000,-1.000000,0.000000 -0.766200,-0.547400,0.213100,0.000000,-1.000000,0.000000 0.491300,-0.547400,-0.149100,0.000000,-1.000000,0.000000 0.219700,0.662100,-0.219500,0.000000,1.000000,0.000000 -0.152500,0.662100,0.001793,0.000050,1.000000,0.000000 -0.343700,0.662500,-0.159200,0.000000,1.000000,0.000000 -0.736000,-0.547400,-0.149100,0.002008,-1.000000,0.001953 -0.162600,0.662100,0.192900,-0.000001,1.000000,0.000000 -0.394000,0.662100,-0.108900,0.000050,1.000000,0.000000 0.561700,-0.547400,-0.108900,0.000050,-1.000000,-0.000000 -0.062040,0.662500,-0.118900,-0.000000,1.000000,0.000000 -0.223000,-0.547400,0.675800,0.000000,-1.000000,0.000000 -0.011700,0.662100,-0.189400,0.000000,1.000000,0.000000 -0.494600,0.662100,-0.189400,0.000000,1.000000,0.000000 -0.484500,0.662100,-0.209500,0.000050,1.000000,0.000000 0.235700,-0.505200,0.492500,-0.497400,-0.067020,-0.864900 -0.112300,-0.518600,0.607400,-0.014380,0.000031,-0.999900 0.048630,0.662500,-0.199400,0.000000,1.000000,0.000000 -0.333700,0.662500,-0.199400,-0.000019,1.000000,0.008331 -0.202900,0.662100,0.353900,-0.016540,0.999900,0.000000 -0.223000,0.662100,-0.400600,-0.016530,0.999800,-0.008308 -0.786300,-0.547400,0.082280,0.000000,-1.000000,0.000000 -0.233000,0.662100,0.283500,0.000000,1.000000,0.000000 -0.464400,-0.547400,0.605400,0.000000,-1.000000,0.000000 -0.404100,-0.547400,-0.591800,0.000000,-1.000000,0.000000 -0.142500,0.662100,0.343900,0.016520,0.999800,0.008281 0.287500,0.365100,-0.478400,0.682000,0.184300,-0.707700 0.276500,-0.406300,0.639600,0.505400,-0.227000,0.832500 0.018350,0.716100,-0.531000,0.041420,0.990300,-0.132600 0.294000,-0.370100,0.637600,0.500300,-0.132600,0.855700 0.068600,-0.536700,-0.370200,0.088110,-0.983200,-0.159700 -0.553900,-0.533000,0.092020,-0.179900,-0.982400,0.050960 -0.577200,0.683700,-0.392800,-0.645900,0.433200,-0.628600 -0.593900,0.069290,-0.550400,-0.671900,0.349600,-0.652900 0.393600,-0.380200,0.558100,0.704000,-0.190800,0.684100 -0.072130,0.436500,0.620900,0.022490,0.138200,0.990200 -0.736900,0.156400,-0.313600,-0.821600,0.337100,-0.459800 0.602700,-0.130100,0.258600,0.965700,0.071000,0.249600 0.118400,0.715100,-0.500200,0.112000,0.972800,-0.203000 -0.874700,-0.057080,0.130900,-0.942600,0.195500,0.270800 0.276500,0.479800,0.471300,0.724400,0.121300,0.678600 -0.082250,0.395500,0.627000,0.021890,0.188200,0.981900 -0.479400,-0.263600,-0.685800,-0.512200,-0.035430,-0.858200 -0.587000,-0.250800,-0.622100,-0.511500,-0.032650,-0.858700 0.427800,0.667600,-0.255200,0.831900,0.224700,-0.507300 -0.125800,0.029540,0.736300,0.010880,0.296600,0.955000 -0.617000,0.348500,-0.402400,-0.702400,0.201500,-0.682600 -0.052160,-0.541300,-0.379700,0.028040,-0.993500,-0.110200 -0.061790,-0.541500,0.203800,-0.031050,-0.993600,-0.108700 -0.687500,-0.087190,0.516400,-0.684700,0.137900,0.715700 0.222200,-0.429500,0.665500,0.505300,-0.203200,0.838700 -0.246200,-0.517700,-0.483500,-0.073430,-0.961300,-0.265600 0.512900,0.332200,-0.082000,0.971000,0.236100,-0.036590 0.553100,0.130800,0.169400,0.898900,0.373200,0.229300 0.349200,-0.514600,-0.199000,0.275900,-0.954800,-0.110500 -0.541900,-0.296600,0.650200,-0.494700,-0.104200,0.862800 0.325400,-0.529600,0.081820,0.211600,-0.975900,0.052890 -0.850000,-0.306600,0.261400,-0.956500,-0.098110,0.274600 -0.738100,0.496700,-0.018450,-0.995100,0.097900,0.014880 0.007858,-0.509800,0.509800,0.088980,-0.943700,0.318700 0.328400,-0.512600,-0.248700,0.279600,-0.945500,-0.166800 -0.484700,0.483500,-0.499200,-0.510300,0.094920,-0.854700 0.921800,0.348300,0.032890,0.923000,0.182600,0.338800 0.117800,-0.511500,-0.458800,0.162000,-0.943100,-0.290400 0.138500,-0.504600,0.473500,0.171600,-0.943000,0.285100 -0.523900,-0.533400,0.182400,-0.166000,-0.982600,0.083260 -0.818400,-0.103600,-0.324200,-0.864400,0.144800,-0.481500 0.483100,-0.516700,-0.388000,0.804600,-0.349500,-0.480100 -0.837900,-0.474000,-0.175300,-0.928200,-0.288100,-0.235300 -0.871400,-0.366700,-0.147700,-0.957400,-0.160000,-0.240200 -0.358700,-0.153700,-0.732800,-0.273300,0.097290,-0.957000 0.644000,-0.276700,0.110300,0.964500,-0.068870,0.254800 0.252300,0.405900,-0.503100,0.590900,0.161800,-0.790400 -0.583600,-0.503400,-0.289100,-0.289000,-0.943700,-0.160700 -0.032600,-0.156800,-0.769600,0.126700,0.086900,-0.988100 0.210000,-0.423500,0.674200,0.496800,-0.199700,0.844600 0.118500,-0.540800,-0.309400,0.074490,-0.993400,-0.087240 0.509400,-0.471700,-0.372900,0.830600,-0.281600,-0.480400 0.230300,0.429800,0.513600,0.519400,0.124800,0.845300 0.601700,0.058180,0.016310,0.941700,0.336500,-0.001017 0.068240,-0.533700,0.393200,0.095480,-0.982400,0.160300 -0.513700,-0.532200,0.212400,-0.160600,-0.982400,0.095820 -0.383500,-0.533700,-0.349500,-0.096020,-0.982400,-0.160400 -0.192900,-0.376900,0.761300,0.014140,-0.154200,0.987900 -0.172600,-0.086500,-0.760000,-0.014120,0.158800,-0.987200 0.451100,-0.547300,0.243200,-0.047050,-0.998400,-0.032130 -0.336000,-0.210200,-0.742000,-0.272600,0.026200,-0.961800 0.109400,-0.544700,0.062240,-0.082350,-0.996400,-0.021270 0.219400,-0.545700,0.011860,0.053230,-0.998600,-0.000881 -0.162600,-0.545100,0.353600,-0.006123,-0.997200,0.075070 -0.209100,-0.519700,-0.486400,-0.067270,-0.964600,-0.254900 0.626100,-0.276800,0.181200,0.967000,-0.044890,0.250900 -0.002975,0.699300,-0.573200,0.169100,0.748600,-0.641100 0.304300,0.517300,-0.434900,0.701100,0.066960,-0.709900 0.185300,-0.505200,0.522500,-0.497700,-0.064660,-0.864900 -0.725500,0.604800,-0.101400,-0.969600,0.009177,-0.244500 0.465200,-0.498600,0.143700,-0.937800,-0.264000,-0.225300 -0.755900,-0.547300,0.313500,-0.098280,-0.993700,0.053040 -0.769800,-0.226800,0.429300,-0.858200,-0.008561,0.513200 -0.817100,-0.213500,-0.343600,-0.873600,0.021160,-0.486200 0.897000,-0.236700,0.001763,1.000000,-0.005372,0.003999 -0.333600,0.662100,0.404200,-0.008927,0.999900,-0.007174 -0.564900,0.716300,-0.330100,-0.052170,0.997700,-0.042320 0.566000,-0.276700,-0.346900,0.858300,-0.035430,-0.511900 0.423800,-0.236700,-0.544300,0.696800,-0.009468,-0.717200 -0.554900,0.716300,-0.340200,-0.051280,0.997400,-0.049690 -0.888000,-0.343400,0.075470,-0.987500,-0.156900,0.014080 -0.797600,-0.333300,-0.364000,-0.866700,-0.128300,-0.482000 -0.614600,-0.000253,-0.561000,-0.690500,0.269800,-0.671200 -0.042890,0.131200,0.698100,0.007721,0.324300,0.945900 0.158400,-0.287000,0.722600,0.270000,-0.119000,0.955500 0.428300,0.304800,-0.330000,0.836800,0.222900,-0.500100 -0.738700,-0.326800,0.468900,-0.852600,-0.116900,0.509300 0.068300,-0.503400,-0.509600,0.097870,-0.944300,-0.314100 -0.222400,0.264000,-0.650700,-0.179900,0.278300,-0.943500 -0.453900,-0.346300,0.692400,-0.481800,-0.186800,0.856200 0.596100,0.072780,0.021940,0.930400,0.366300,-0.010840 0.569300,-0.546900,0.131900,0.271100,-0.960500,0.062400 0.203400,-0.390000,0.687800,0.479100,-0.203200,0.853900 -0.596100,-0.506000,-0.251400,-0.289000,-0.943500,-0.162300 0.552100,-0.543900,0.227000,0.672500,-0.692800,0.260400 -0.550000,0.541000,-0.435900,-0.715300,0.059490,-0.696300 -0.623800,-0.503100,-0.218700,-0.290400,-0.943300,-0.160600 -0.709200,-0.183400,-0.504700,-0.716800,0.033220,-0.696500 -0.762000,-0.316900,0.431900,-0.854200,-0.101000,0.510000 0.424400,0.405700,0.299900,0.865600,0.178900,0.467700 0.268600,-0.523000,-0.279100,0.222400,-0.965700,-0.134100 0.138400,-0.494700,-0.499900,0.191100,-0.920600,-0.340500 0.598200,-0.116700,0.272500,0.963300,0.101300,0.248800 -0.768400,-0.153600,-0.425000,-0.869700,0.093750,-0.484700 0.498500,-0.276800,-0.460700,0.858900,-0.041050,-0.510400 0.197800,0.477500,-0.523500,0.486100,0.098420,-0.868400 -0.574600,0.301900,-0.460600,-0.697900,0.230100,-0.678200 0.026760,-0.167000,-0.756200,0.246500,0.065220,-0.966900 0.619800,-0.448600,0.072630,0.953600,-0.301100,-0.006503 0.328800,-0.523000,0.172400,0.248900,-0.965700,0.073710 0.423200,0.362500,0.318000,0.868300,0.189500,0.458500 -0.721400,0.386000,-0.198300,-0.957200,0.164100,-0.238400 0.094480,0.700700,0.547900,0.194500,0.754300,0.627000 0.112300,0.658000,-0.562300,0.472000,0.094330,-0.876500 -0.804900,-0.547200,-0.168900,-0.163100,-0.985900,-0.036250 -0.596900,-0.097250,0.606900,-0.688800,0.192000,0.699100 0.625800,-0.027170,-0.008194,0.973500,0.228000,-0.019440 -0.242800,-0.495400,0.553900,-0.093700,-0.921500,0.376900 -0.604900,-0.270200,-0.610200,-0.593600,-0.044300,-0.803600 -0.042110,-0.457400,-0.739600,0.056870,-0.289800,-0.955400 0.296600,0.631800,0.441100,0.716200,0.002186,0.697900 -0.896100,-0.197200,-0.098110,-0.974700,0.039720,-0.220200 -0.331800,0.022380,0.708900,-0.242700,0.289300,0.926000 -0.364600,-0.495500,-0.511400,-0.199800,-0.922100,-0.331300 -0.760200,0.345300,-0.018420,-0.980200,0.197700,0.014020 0.017110,-0.156900,-0.757800,0.242600,0.088860,-0.966000 0.857100,-0.231100,0.072470,0.337000,0.026100,0.941200 0.634800,-0.077190,-0.088630,0.990600,0.136500,0.010660 -0.172700,0.638400,0.610800,0.008782,-0.026720,0.999600 -0.082170,0.426700,0.622600,0.019640,0.146500,0.989000 -0.709100,0.587900,-0.167500,-0.968600,0.023920,-0.247600 -0.776500,0.065420,-0.313200,-0.819300,0.345700,-0.457500 0.393000,0.305400,-0.388700,0.853200,0.199000,-0.482200 -0.791000,-0.326600,-0.377500,-0.867900,-0.110800,-0.484100 0.290800,0.188600,-0.539500,0.670000,0.294000,-0.681600 0.421900,0.707600,-0.185500,0.493800,0.858600,-0.137900 0.456700,-0.456400,-0.466700,0.697200,-0.287200,-0.656900 -0.312100,-0.036940,-0.727500,-0.262900,0.222700,-0.938800 0.834700,0.204900,0.042930,-0.886000,0.173800,0.430000 0.532000,-0.080530,0.387300,0.865100,0.140600,0.481500 -0.627300,-0.312000,0.584600,-0.694000,-0.097610,0.713300 -0.881000,-0.386600,0.062050,-0.981700,-0.189800,0.013780 0.583700,-0.027630,0.261200,0.948700,0.229200,0.217800 -0.002654,-0.497100,-0.718700,0.233100,-0.325500,-0.916400 -0.734300,0.527600,0.081940,-0.996100,0.062070,0.062830 0.071960,-0.540000,0.034770,-0.126000,-0.991700,-0.027350 -0.042240,0.713100,0.563000,0.030580,0.955200,0.294300 -0.453300,-0.523100,-0.349200,-0.186000,-0.965800,-0.180900 -0.443600,-0.524800,-0.349700,-0.185300,-0.966000,-0.180200 -0.373100,-0.523100,-0.409400,-0.133200,-0.965800,-0.222500 -0.860800,-0.107000,-0.207900,-0.959200,0.142400,-0.244300 0.232000,-0.409300,0.665100,0.483200,-0.263600,0.834900 -0.321700,-0.445900,0.718400,-0.230200,-0.258500,0.938200 0.157900,-0.501500,0.472200,0.172200,-0.941700,0.289000 -0.862200,-0.066800,0.181600,-0.947700,0.174000,0.267500 -0.830200,-0.396400,0.281600,-0.939300,-0.214600,0.267800 0.741600,-0.065390,0.001742,-0.999500,-0.030230,-0.000373 -0.251700,-0.057100,0.750500,-0.237100,0.204700,0.949700 0.586500,-0.406600,0.262000,0.951700,-0.220600,0.213600 -0.219000,0.601500,-0.603700,-0.214900,0.013060,-0.976600 -0.709900,-0.213400,-0.505300,-0.717000,0.020450,-0.696700 0.248800,-0.488700,0.473400,-0.253600,-0.923600,-0.287500 -0.568900,-0.393300,-0.613600,-0.500700,-0.210200,-0.839700 0.168700,-0.523900,0.383000,0.142600,-0.966300,0.214300 0.626800,-0.146900,0.171400,0.965400,0.085380,0.246300 0.626300,-0.136900,-0.167500,0.960700,0.096490,-0.260100 -0.719800,-0.213500,-0.495100,-0.717000,0.020420,-0.696800 0.640500,-0.096140,0.062170,0.981800,0.187800,-0.027470 -0.886100,-0.085960,0.021890,-0.987300,0.158100,0.014980 0.236500,0.507500,-0.498700,0.506000,0.084520,-0.858400 -0.292400,0.275200,-0.628200,-0.262100,0.252100,-0.931500 0.522000,0.118300,0.286000,0.805900,0.393100,0.442600 -0.430400,-0.234300,-0.715000,-0.352100,-0.021770,-0.935700 0.501000,-0.547300,0.313500,0.097380,-0.993100,0.065700 -0.627800,-0.525300,-0.340100,0.873100,0.028630,0.486700 -0.860100,-0.176900,-0.237900,-0.968200,0.044840,-0.246100 -0.162300,-0.547200,-0.613100,-0.028630,-0.969500,0.243300 -0.771900,-0.527800,-0.308400,-0.817600,-0.350100,-0.457000 0.465100,-0.140100,0.498800,0.712200,0.117100,0.692100 -0.139200,0.666300,-0.471100,-0.006711,0.877500,0.479500 -0.374500,0.117200,0.663100,-0.225200,0.343800,0.911600 0.225300,-0.038550,0.669300,0.499800,0.225300,0.836300 -0.206200,-0.339400,-0.762700,-0.012690,-0.152500,-0.988200 -0.251300,0.547400,0.598300,-0.250400,0.039150,0.967300 0.701600,0.604300,-0.007735,0.168400,0.981400,-0.092030 -0.014190,0.701200,-0.488000,-0.154300,0.769900,0.619200 0.297600,0.560800,0.442000,0.724300,0.050940,0.687600 -0.311600,-0.416200,0.728400,-0.233100,-0.220100,0.947200 0.856700,-0.351100,0.001738,0.736200,-0.676700,0.009312 0.197300,0.043840,0.660700,0.483000,0.266600,0.834000 -0.072030,-0.538100,0.607100,-0.013410,-0.197100,-0.980300 -0.780100,-0.326100,-0.397200,-0.867900,-0.110700,-0.484300 -0.851700,-0.316800,0.251800,-0.957900,-0.100600,0.268900 0.923500,0.305600,-0.041510,0.890600,0.081540,-0.447500 -0.162800,-0.536200,0.173300,0.043160,-0.983200,-0.177600 -0.008822,0.248900,0.653200,0.281400,0.284200,0.916500 0.505300,0.152000,0.289500,0.824900,0.324000,0.463300 0.629000,-0.397200,-0.108100,0.961500,-0.234800,-0.142500 0.440900,0.239400,0.346000,0.832000,0.305100,0.463400 0.913100,0.133300,0.001698,0.951500,-0.307600,-0.004178 -0.392400,-0.176900,0.729900,-0.252000,0.052340,0.966300 0.790200,0.056470,-0.060300,-0.593900,0.267900,-0.758600 -0.830700,-0.406400,0.271600,-0.937300,-0.225400,0.265800 -0.678000,-0.293300,-0.533900,-0.713800,-0.095750,-0.693800 -0.515900,0.714500,0.355100,0.195700,0.955500,-0.220600 0.478400,-0.123700,0.482000,0.714800,0.081680,0.694600 0.708600,0.496600,0.004975,-0.338000,-0.941000,0.015630 0.634600,-0.127000,0.130500,0.963300,0.107200,0.246100 -0.525200,0.332700,-0.501100,-0.638300,0.195800,-0.744400 0.910600,0.126300,-0.007707,0.946500,-0.310200,-0.089230 -0.526000,0.696900,0.299500,0.602800,0.697700,-0.387200 0.722500,-0.414200,0.001743,0.003488,-0.999900,0.010640 -0.000851,-0.525300,-0.018520,-0.249700,-0.967500,0.040490 0.592900,-0.266900,-0.298500,0.951300,-0.009166,-0.308100 -0.730300,0.365600,-0.177800,-0.952300,0.186900,-0.241000 -0.608100,-0.143600,-0.604300,-0.652300,0.101500,-0.751100 0.626000,-0.216800,-0.187600,0.960200,0.017960,-0.278700 0.165600,-0.037580,-0.699000,0.461800,0.227300,-0.857400 -0.723700,0.648400,-0.108400,-0.968800,0.036740,-0.245000 0.485500,-0.544200,0.055430,-0.704800,-0.709300,0.007259 -0.015350,0.678800,0.474700,-0.238500,0.557600,-0.795100 -0.851600,-0.066950,-0.218200,-0.955600,0.172500,-0.238900 0.494000,0.253900,-0.227400,0.925100,0.259200,-0.277500 0.097610,-0.531000,0.391900,0.101500,-0.980500,0.168400 0.846100,0.283200,-0.047890,-0.830600,-0.040010,-0.555500 0.412800,-0.540900,0.283100,-0.846200,-0.240700,-0.475400 -0.302900,-0.236800,0.753500,-0.241800,-0.026340,0.970000 0.480200,0.653200,-0.094930,0.967200,0.069540,-0.244300 0.437700,0.651300,0.242900,0.879400,0.037530,0.474700 -0.687900,-0.293300,-0.523700,-0.713900,-0.095680,-0.693700 -0.646300,0.379000,-0.353800,-0.858600,0.173100,-0.482600 -0.465400,-0.150200,-0.691600,-0.509800,0.096670,-0.854800 0.370800,0.716500,-0.219600,-0.050290,0.998200,0.032210 0.481100,0.673200,0.068430,0.955600,0.289100,0.057120 -0.724900,-0.070300,-0.470100,-0.707200,0.165800,-0.687300 -0.397400,0.247500,-0.603100,-0.476500,0.267000,-0.837600 0.277900,0.675400,-0.265800,-0.694600,0.598500,0.399100 -0.321700,0.032370,0.708700,-0.252400,0.287000,0.924100 -0.032850,0.013250,-0.738100,0.154200,0.290000,-0.944500 -0.629100,-0.283600,-0.585500,-0.714800,-0.079950,-0.694700 0.635900,-0.256800,-0.147300,0.962300,-0.057080,-0.265800 -0.422500,-0.186800,-0.716800,-0.282800,0.032960,-0.958600 -0.450200,-0.485200,-0.656200,-0.489600,-0.295700,-0.820300 0.256000,0.172700,-0.568400,0.460300,0.330200,-0.824100 0.211500,-0.488500,-0.475300,0.206600,-0.909800,-0.359900 0.579000,-0.086970,-0.306100,0.868200,0.151900,-0.472400 0.476300,0.618200,-0.107500,0.963700,-0.001278,-0.267100 0.603800,0.601600,0.001821,-0.234700,0.972100,0.005202 0.027830,-0.437300,-0.729400,0.237600,-0.245300,-0.939900 0.541400,-0.223000,0.395800,0.874700,-0.008608,0.484700 -0.192500,0.547600,0.612200,-0.088880,0.051680,0.994700 -0.726500,0.510500,-0.114200,-0.965500,0.081370,-0.247500 0.833200,0.262600,-0.011410,-0.987900,0.014290,-0.154400 -0.683900,0.664200,-0.240200,-0.850400,0.203100,-0.485400 -0.032430,0.174300,0.682300,0.060730,0.319300,0.945700 0.376600,0.337800,0.400300,0.704400,0.217000,0.675800 -0.682300,0.365100,0.299300,-0.843800,0.189600,0.502100 -0.163500,0.402700,0.626900,0.004666,0.161500,0.986900 -0.646100,0.015300,-0.522100,-0.687600,0.287600,-0.666800 0.887900,-0.295600,0.001834,0.961800,-0.273600,0.004996 0.333800,-0.490000,0.578200,0.587400,-0.310600,0.747300 0.543300,-0.461300,-0.321700,0.823000,-0.325500,-0.465500 0.756100,-0.107900,-0.038960,-0.882900,-0.190900,-0.428900 -0.654600,-0.491800,0.289400,0.702800,-0.533200,-0.470900 0.508400,-0.515700,-0.346300,0.804500,-0.349200,-0.480400 0.082470,-0.041830,0.725800,0.265600,0.226900,0.937000 0.537100,0.214400,-0.117600,0.926600,0.275000,-0.256400 -0.737700,0.012820,0.418000,-0.823300,0.285300,0.490800 -0.172700,0.184200,0.681200,0.013540,0.335600,0.941900 -0.862600,0.013390,0.101800,-0.955300,0.287100,0.070110 0.752200,-0.404100,-0.036560,0.134300,-0.916700,-0.376200 -0.566500,0.713800,0.284300,0.282400,0.945500,-0.162200 -0.268600,-0.316800,0.757100,-0.242200,-0.075710,0.967300 -0.842500,0.073450,0.101700,-0.933200,0.346800,0.094280 -0.696400,-0.401600,-0.491900,-0.698500,-0.225200,-0.679200 -0.719900,0.608200,0.130700,-0.962200,0.005258,0.272500 0.319000,0.693000,0.220000,-0.701200,0.581700,-0.412300 -0.765100,-0.009984,-0.381400,-0.844900,0.247200,-0.474400 0.370300,0.562600,0.365400,0.824700,0.022120,0.565100 -0.530100,-0.494800,-0.604900,-0.485200,-0.320500,-0.813500 -0.727300,0.133100,0.350800,-0.809200,0.344900,0.475700 -0.704200,0.079460,-0.430700,-0.743100,0.359800,-0.564200 -0.366300,0.654500,-0.561100,-0.397500,0.086970,-0.913500 0.800700,-0.268100,0.049390,-0.802100,0.294000,0.519800 0.108700,0.716000,-0.500700,0.084480,0.986800,-0.137800 -0.660300,-0.538000,0.286200,0.864800,-0.014380,-0.501800 0.254000,0.244500,-0.543500,0.469800,0.271200,-0.840100 0.236900,0.092960,-0.613100,0.450400,0.385800,-0.805200 0.227600,0.568500,0.500800,0.522800,0.011290,0.852400 -0.012310,-0.206800,0.772200,0.116100,0.044570,0.992200 0.092110,0.057510,0.694700,0.250800,0.338300,0.907000 -0.527400,-0.518000,0.299800,-0.230700,-0.962600,0.142300 0.567600,0.143900,-0.068590,0.936600,0.350000,-0.015860 -0.460200,-0.485600,0.651800,-0.465000,-0.298400,0.833500 0.877800,0.147900,0.072330,0.334000,-0.092640,0.938000 -0.004732,-0.539300,-0.384500,0.039830,-0.988700,-0.144800 -0.474300,-0.536700,-0.229500,-0.161300,-0.982900,-0.089360 0.138100,0.479900,0.560900,0.528400,0.113600,0.841400 -0.681000,0.705300,-0.158100,-0.559400,0.818500,-0.130800 -0.199500,-0.544400,0.610100,0.105100,-0.688900,-0.717200 -0.880800,-0.356600,-0.117400,-0.957000,-0.160800,-0.241600 -0.310700,-0.375700,-0.734900,-0.269100,-0.164700,-0.948900 -0.252600,-0.521100,-0.469100,-0.071180,-0.964900,-0.252800 0.584500,0.042170,-0.177200,0.914500,0.302200,-0.269100 0.241700,0.340400,-0.523300,0.478300,0.197800,-0.855600 0.192500,0.058530,0.657400,0.474500,0.388100,0.790100 0.736000,-0.373200,-0.069640,0.030580,-0.270100,-0.962400 0.391100,-0.424300,0.545600,0.692300,-0.233900,0.682600 -0.211400,-0.525800,0.718700,-0.132000,-0.344600,0.929400 0.311100,0.188800,0.525900,0.692500,0.317800,0.647700 0.015790,0.051610,0.718900,0.250400,0.336200,0.907900 -0.857100,-0.266100,0.248100,-0.961500,-0.036420,0.272200 0.500100,0.269400,0.196400,0.945000,0.231900,0.230700 0.559800,-0.443300,0.304000,0.839900,-0.278400,0.465800 0.632000,0.548900,-0.070730,0.015320,-0.119500,-0.992700 -0.487300,-0.512000,-0.623200,-0.479200,-0.349200,-0.805200 0.369600,0.631700,0.364100,0.829200,0.002724,0.559000 0.092610,0.370900,0.595400,0.273800,0.137000,0.952000 0.608500,0.033740,-0.058530,0.966500,0.256300,-0.016060 -0.159300,0.679300,0.603800,0.012560,0.457500,0.889100 -0.656600,0.193200,0.425800,-0.701000,0.323700,0.635500 0.206400,0.416200,0.529500,0.506800,0.120200,0.853600 0.524900,0.284500,0.080870,0.961200,0.237600,0.140000 -0.848600,-0.315800,-0.267200,-0.964300,-0.099420,-0.245500 -0.001956,-0.515800,0.493900,0.081030,-0.955600,0.283100 -0.857700,-0.362800,-0.204200,-0.956300,-0.162600,-0.243100 -0.243800,0.711800,0.507500,0.097370,0.928600,-0.358100 0.417900,-0.495200,-0.488000,0.661500,-0.320200,-0.678200 0.370100,0.705600,0.304800,0.481500,0.836300,0.262000 0.468800,-0.546900,0.382700,0.284000,-0.952800,0.107400 0.057240,-0.538000,0.040660,-0.170400,-0.984400,-0.044980 0.758700,0.513900,-0.068490,-0.189100,-0.299600,-0.935100 -0.212800,-0.487100,-0.728500,-0.015320,-0.300800,-0.953600 0.872000,0.487700,0.014390,0.848500,0.512100,0.133300 -0.394200,0.716100,-0.461400,0.052940,0.994100,0.094380 0.416900,0.627500,-0.278100,0.858300,-0.037440,-0.511700 0.484500,0.547400,-0.078120,0.997200,0.041320,-0.062950 -0.543000,-0.546800,-0.568400,-0.152900,-0.957700,-0.243800 0.890900,0.166300,0.068510,0.525600,-0.126700,0.841300 -0.544700,-0.515900,0.592300,-0.449100,-0.371900,0.812400 0.438800,0.713200,-0.058560,0.296200,0.955100,-0.009034 -0.409900,0.335200,0.572100,-0.480800,0.224800,0.847500 -0.484400,-0.504900,-0.400500,-0.237700,-0.943500,-0.230900 0.475000,0.676200,-0.096970,0.911400,0.327500,-0.249200 -0.139200,0.679200,0.603500,0.001615,0.446600,0.894700 -0.462200,0.152600,-0.600100,-0.481700,0.336800,-0.809100 0.629700,-0.397500,-0.048610,0.934300,-0.322700,-0.151700 0.297100,0.676100,0.235700,-0.656600,0.656000,-0.372200 0.373300,0.711900,-0.149900,-0.359400,0.927000,0.107200 -0.592600,0.673900,-0.112000,0.748500,0.644300,0.157000 0.762900,-0.357400,0.074580,0.018060,-0.060940,0.998000 0.481700,0.233500,-0.276900,0.829000,0.286800,-0.480100 0.206800,0.696300,-0.489500,0.358500,0.676300,-0.643500 -0.454400,-0.399800,-0.680200,-0.499900,-0.223100,-0.836900 -0.812900,-0.259200,-0.349500,-0.872300,-0.032300,-0.488000 0.817400,0.377800,-0.027800,-0.896000,-0.323300,-0.304300 -0.714900,-0.346500,0.493600,-0.687500,-0.156000,0.709200 0.081980,0.168200,0.654200,0.248000,0.339900,0.907200 -0.774200,-0.486800,0.339900,-0.817700,-0.302200,0.489900 0.226400,-0.515000,0.632400,0.474900,-0.349700,0.807600 -0.654200,0.714700,0.182500,-0.245000,0.965900,0.083100 0.471900,0.467500,-0.154500,0.949000,0.128400,-0.288000 0.762300,0.001654,-0.050280,-0.802000,0.147200,-0.578900 -0.352700,0.152900,-0.650600,-0.256400,0.334400,-0.906900 0.479400,-0.396600,-0.461300,0.843400,-0.236900,-0.482200 -0.875000,-0.277100,0.182900,-0.960500,-0.061750,0.271400 0.348000,0.691900,0.143700,-0.777300,0.598000,-0.195700 -0.127900,0.708500,0.577100,0.011290,0.859300,0.511300 0.378900,0.238200,0.432800,0.693100,0.256800,0.673600 0.430900,0.007491,0.494900,0.685600,0.274300,0.674400 -0.001214,-0.526300,0.042070,-0.244500,-0.966900,-0.072430 0.279000,-0.488700,0.443400,-0.285200,-0.925200,-0.250300 0.851500,0.330700,-0.060350,-0.632000,-0.121400,-0.765400 0.466400,0.356900,0.241600,0.880200,0.182500,0.438000 -0.445600,-0.491500,-0.503300,0.359500,-0.807100,0.468300 0.842700,0.446800,-0.070580,0.064140,0.033630,-0.997400 0.471100,0.118100,0.376200,0.807900,0.364400,0.463100 0.830000,0.327900,0.029550,-0.946200,-0.179400,0.269100 0.617000,-0.456600,0.081900,0.954600,-0.293900,0.048090 -0.266800,-0.401500,-0.742000,-0.267100,-0.223200,-0.937500 0.412200,-0.100700,0.546600,0.706300,0.174100,0.686200 0.824400,-0.297900,-0.070790,-0.133500,0.077720,-0.988000 -0.524200,-0.494300,-0.400100,-0.283900,-0.918200,-0.276300 -0.764800,0.203400,-0.208600,-0.925600,0.298400,-0.233000 -0.092210,-0.547300,-0.613100,-0.024250,-0.972300,0.232600 -0.423000,0.667400,-0.370000,0.297700,0.876500,0.378500 0.330600,-0.526400,0.113100,0.247100,-0.966900,0.063040 -0.481700,-0.526600,0.623300,-0.467800,-0.324800,0.822000 0.060510,0.696400,0.563000,0.206600,0.703800,0.679600 -0.528700,-0.539000,-0.052210,-0.153000,-0.987800,-0.029580 -0.242900,-0.541100,-0.369600,-0.031210,-0.993400,-0.110100 0.174000,-0.539900,0.268000,0.096470,-0.990900,0.093510 0.718800,0.497200,0.032990,-0.381100,-0.878900,0.286700 0.326700,0.676300,-0.181100,-0.801100,0.542500,0.252900 0.050370,0.688400,0.572600,0.213100,0.543200,0.812100 0.314700,-0.170200,0.638200,0.497400,0.045110,0.866400 0.682800,0.600600,-0.033550,0.074370,0.938300,-0.337800 -0.598900,-0.489600,0.375400,0.354400,-0.879800,-0.316800 0.874300,-0.192300,0.053930,0.769900,0.225100,0.597100 -0.353300,0.314600,-0.600900,-0.264800,0.225300,-0.937600 0.028170,0.164700,0.670400,0.255400,0.322000,0.911600 -0.633900,-0.494000,-0.248900,-0.345600,-0.918400,-0.192700 -0.553800,-0.547100,-0.559600,-0.086510,-0.983300,-0.160200 -0.816500,-0.547400,0.042030,-0.003412,-1.000000,-0.000010 -0.033800,0.455500,0.617200,0.140200,0.101000,0.985000 0.595200,0.062350,0.110700,0.900800,0.370100,0.227300 -0.232000,-0.316600,-0.764700,-0.081100,-0.092350,-0.992400 0.125700,-0.018720,0.708100,0.265400,0.241200,0.933500 0.741800,-0.030830,0.006632,-0.996900,0.070220,0.036150 -0.543200,-0.490100,0.430100,0.596700,-0.524800,-0.607100 -0.622600,-0.518800,-0.518700,-0.671900,-0.349700,-0.652900 0.080580,0.670100,0.572700,0.281200,0.285200,0.916300 0.036720,0.446400,0.599000,0.263800,0.131200,0.955600 0.269900,0.056080,0.612100,0.484400,0.331600,0.809600 0.137300,-0.087080,0.719700,0.271800,0.186900,0.944000 0.054810,0.020270,0.717000,0.269700,0.279300,0.921600 0.811000,0.391800,-0.024850,-0.888000,-0.373700,-0.267800 0.006718,0.052390,-0.716000,0.230600,0.324200,-0.917400 0.140200,-0.543200,-0.663900,0.283500,-0.573000,-0.769000 -0.534800,-0.547400,-0.561600,-0.008656,-0.999900,-0.014910 0.622300,-0.126900,-0.178600,0.955900,0.085460,-0.281000 -0.416800,0.656200,-0.531600,-0.504800,0.075040,-0.860000 0.476400,0.296200,0.251300,0.842300,0.258200,0.473200 -0.393000,-0.512700,-0.439100,-0.160000,-0.949800,-0.268700 0.464800,0.345200,0.249700,0.858300,0.222000,0.462600 0.583800,0.090930,0.109200,0.916500,0.322400,0.236700 -0.648200,-0.393300,-0.544300,-0.701300,-0.209500,-0.681400 0.805900,0.406600,-0.029350,-0.854900,-0.402800,-0.327000 0.129600,-0.095120,0.723200,0.267400,0.175100,0.947500 0.668600,-0.295300,-0.027700,0.533200,0.797000,-0.283800 0.152800,-0.191600,0.725500,0.272600,0.061220,0.960200 0.218300,0.428600,0.521000,0.511000,0.115500,0.851800 0.587400,-0.035420,0.253500,0.944900,0.232900,0.229900 -0.801700,-0.537000,-0.228500,-0.895700,-0.385700,-0.221500 -0.863300,-0.427300,-0.128200,-0.944200,-0.228000,-0.237700 0.382400,0.159300,0.466400,0.663700,0.334400,0.669100 -0.797400,-0.486000,0.301400,-0.849800,-0.292800,0.438300 -0.008458,0.431300,0.614000,0.269900,0.172700,0.947300 0.510900,0.243700,-0.178400,0.915500,0.288100,-0.280900 0.453900,0.434700,0.238700,0.877800,0.148900,0.455400 0.809600,-0.376200,0.047940,0.462000,-0.722600,0.514100 0.168200,-0.196800,0.721700,0.259900,0.059120,0.963800 0.456600,0.306400,0.281700,0.841800,0.265300,0.470100 0.456800,0.155700,0.373100,0.822200,0.347600,0.450700 0.044950,0.161200,0.666900,0.255800,0.320700,0.912000 0.518700,0.307100,0.082830,0.949700,0.233000,0.209200 0.809000,-0.109100,0.073530,0.197700,0.056980,0.978600 -0.520400,-0.530200,-0.216400,-0.180900,-0.978200,-0.102100 0.475300,0.103500,0.381500,0.806500,0.387700,0.446500 -0.619800,0.711400,-0.151500,0.359400,0.930500,0.070630 -0.321800,-0.476300,-0.706000,-0.262100,-0.288700,-0.920800 0.072110,-0.141900,0.745200,0.263100,0.069290,0.962300 0.119100,-0.025370,0.711700,0.261700,0.251500,0.931800 0.204800,-0.028630,0.678800,0.500900,0.219300,0.837300 0.097460,0.002978,0.710700,0.271700,0.269000,0.924000 0.539400,-0.053880,0.364300,0.850100,0.214600,0.480900 0.284400,0.323700,0.499200,0.696400,0.199400,0.689400 -0.605500,0.681000,-0.074960,0.857000,0.469800,0.211700 -0.692800,-0.491500,-0.088070,-0.384900,-0.917500,-0.099940 -0.596300,-0.461700,-0.572900,-0.686200,-0.288800,-0.667600 -0.102200,-0.547400,-0.622000,-0.007169,-0.999700,0.021400 -0.003496,0.062520,0.719900,0.251400,0.375300,0.892200 0.446100,0.437900,0.251200,0.869200,0.159100,0.468200 0.087040,0.676000,0.568500,0.252900,0.342900,0.904700 0.565700,0.052610,0.241800,0.906200,0.360300,0.221200 0.361300,-0.021860,0.576200,0.706800,0.198300,0.679100 -0.706600,-0.501300,-0.441600,-0.696700,-0.339900,-0.631700 -0.132400,-0.486600,-0.592000,-0.001753,-0.975100,0.221900 -0.401400,-0.395600,-0.705300,-0.265700,-0.212800,-0.940300 0.112400,0.118000,0.665000,0.246700,0.391700,0.886400 0.460300,0.279500,-0.289000,0.832800,0.244300,-0.496800 -0.347700,-0.382200,-0.723300,-0.268100,-0.179100,-0.946600 -0.642800,0.263800,0.409100,-0.749000,0.254700,0.611700 0.680000,-0.302400,0.031040,0.504400,0.815500,0.283800 0.072020,0.097730,0.684800,0.266400,0.351100,0.897600 0.375600,0.072410,0.520100,0.671700,0.334600,0.661000 0.851700,0.497400,-0.045950,0.648700,0.509900,-0.564900 -0.694300,-0.510100,-0.449600,-0.671800,-0.349400,-0.653100 0.099440,-0.547300,0.576800,-0.023170,-0.979600,-0.199700 0.437000,0.264100,-0.335200,0.828900,0.267200,-0.491400 0.109100,-0.015210,0.711900,0.268900,0.218800,0.938000 0.528200,0.055330,0.323300,0.819800,0.318900,0.475600 0.461600,0.092040,-0.407700,0.801400,0.359400,-0.478100 -0.550500,0.062470,0.592000,-0.466000,0.335800,0.818600 -0.345500,-0.495400,-0.521800,-0.136100,-0.922200,-0.361900 -0.845800,-0.491400,-0.122500,-0.921800,-0.309500,-0.233600 0.131100,-0.103600,0.724400,0.261000,0.145400,0.954300 0.489700,-0.547000,0.343000,0.241600,-0.966000,0.092120 0.573800,-0.097030,-0.318200,0.849200,0.180400,-0.496200 -0.272000,0.162600,-0.669900,-0.256100,0.330600,-0.908400 -0.433700,-0.538300,0.271600,-0.122200,-0.984500,0.125600 0.308600,-0.487000,-0.594500,0.481400,-0.295500,-0.825200 0.859100,-0.127800,0.021500,0.880700,0.428400,0.201900 -0.413200,0.097490,0.654600,-0.487100,0.355800,0.797600 0.038240,-0.494800,0.543500,0.107300,-0.920300,0.376100 0.529400,-0.092330,0.395200,0.855800,0.173900,0.487200 0.906500,0.355500,-0.055040,0.767300,0.171500,-0.617900 -0.784800,0.243700,-0.077830,-0.946500,0.286500,-0.148500 0.002532,0.199800,-0.661400,0.235300,0.300400,-0.924400 -0.795600,0.110500,-0.223200,-0.904000,0.361800,-0.227700 -0.753400,-0.439600,-0.400500,-0.845600,-0.250400,-0.471500 0.021110,-0.531000,0.032610,-0.191800,-0.980300,-0.046770 -0.798100,-0.483300,-0.293900,-0.835500,-0.290800,-0.466300 0.319000,-0.532100,0.051970,0.187300,-0.982100,0.018870 -0.092090,-0.526200,-0.716300,-0.013370,-0.349900,-0.936700 -0.357600,0.171500,-0.642400,-0.259700,0.330100,-0.907500 0.861800,0.405800,0.073870,0.079090,0.049080,0.995700 -0.431900,0.042430,0.666800,-0.461600,0.268900,0.845400 0.368800,-0.004140,0.563500,0.691200,0.247200,0.679000 -0.495000,-0.510200,-0.619400,-0.479900,-0.349700,-0.804700 -0.377700,0.481800,0.563500,-0.483400,0.129200,0.865800 0.507300,-0.183500,0.453700,0.882600,0.009480,0.470100 0.860000,-0.136500,0.032530,0.837900,0.434500,0.330400 0.437400,0.364600,-0.289200,0.849900,0.164800,-0.500500 -0.321600,-0.206900,-0.746000,-0.274400,0.028820,-0.961200 -0.593900,0.269600,0.455600,-0.661700,0.273100,0.698300 0.180500,0.228500,0.593800,0.481900,0.288600,0.827400 -0.568200,-0.486800,0.384500,-0.300400,-0.898500,0.320100 -0.321500,0.275200,0.623900,-0.233200,0.272600,0.933400 0.043760,0.452900,0.596300,0.274300,0.120300,0.954100 0.596700,0.033180,0.141400,0.928000,0.296700,0.225300 0.121100,-0.528700,0.560200,-0.440100,-0.010410,-0.897900 -0.374900,-0.042010,0.715100,-0.236100,0.218100,0.946900 -0.641800,0.706600,0.261900,-0.488300,0.824200,0.286900 0.583400,0.109900,0.068930,0.934600,0.355600,-0.003484 -0.218100,-0.521900,-0.601900,0.207100,0.016670,0.978200 -0.756800,-0.302600,-0.443800,-0.869200,-0.097080,-0.484900 0.841100,-0.188100,0.074040,0.094040,0.045980,0.994500 0.590100,0.033500,-0.167000,0.932000,0.259600,-0.253100 -0.142500,-0.547400,-0.692400,-0.000006,-1.000000,-0.003820 0.080850,0.146600,0.662300,0.261200,0.331300,0.906700 0.428400,0.480100,0.273500,0.871700,0.109400,0.477700 -0.324900,-0.309400,-0.740600,-0.270400,-0.096860,-0.957900 0.596800,0.063560,0.101700,0.897200,0.386400,0.213800 -0.640200,-0.499200,0.215700,-0.330500,-0.937000,0.113000 0.115100,0.702000,0.539400,0.289000,0.771300,0.567100 -0.550300,-0.518900,0.255700,-0.229000,-0.963700,0.137000 0.518700,0.126800,0.284000,0.807200,0.387700,0.445100 -0.845900,-0.024490,-0.203100,-0.943200,0.226900,-0.242700 0.240600,-0.497400,-0.424100,0.258200,-0.928900,-0.265500 0.816300,-0.215400,0.064680,-0.608400,-0.138800,0.781400 -0.494700,-0.329900,-0.670100,-0.507400,-0.120900,-0.853200 0.445600,0.557600,0.230100,0.917300,0.030210,0.397000 -0.142400,-0.492500,-0.569000,-0.005730,-0.916500,-0.400100 0.685400,-0.409200,-0.015560,-0.170600,-0.974300,-0.147000 -0.650600,0.705200,0.251000,-0.507200,0.807900,0.300200 -0.713400,-0.528600,-0.141000,0.968500,0.019000,0.248400 0.232700,-0.090530,0.676300,0.496200,0.181100,0.849100 -0.664600,0.554200,-0.280900,-0.872500,0.048360,-0.486200 -0.635100,-0.505300,-0.169800,-0.320500,-0.943700,-0.081520 0.266600,-0.518100,-0.314200,0.197100,-0.963700,-0.180100 -0.491400,-0.157000,-0.676900,-0.511800,0.089640,-0.854400 -0.471700,0.486900,-0.506500,-0.510000,0.094790,-0.854900 0.145900,0.456600,0.559500,0.493700,0.090990,0.864800 0.139200,0.601400,0.552800,0.499600,0.004984,0.866200 0.526400,-0.095610,0.402100,0.858900,0.190100,0.475600 0.303400,-0.051470,0.626800,0.509200,0.202500,0.836500 -0.448400,-0.498100,-0.454400,-0.184500,-0.931200,-0.314300 -0.203100,0.477300,0.616000,-0.142300,0.093110,0.985400 0.096620,0.486700,0.577400,0.269200,0.130900,0.954200 -0.301300,0.517100,-0.584100,-0.275100,0.070280,-0.958800 0.601200,-0.424300,0.186600,0.950500,-0.208700,0.230000 -0.766300,0.305900,-0.086910,-0.947700,0.231700,-0.219300 -0.537100,-0.491600,-0.602100,-0.486700,-0.309700,-0.816800 0.236600,-0.316700,0.680500,0.508200,-0.095010,0.856000 -0.791700,-0.126800,-0.377900,-0.869100,0.102100,-0.483900 0.559400,0.492200,0.060580,0.438800,-0.595900,0.672500 -0.544700,-0.110400,-0.639500,-0.509900,0.138100,-0.849100 -0.396000,-0.516800,-0.422300,-0.147300,-0.958300,-0.244700 -0.518200,-0.243400,-0.663400,-0.511800,-0.032470,-0.858500 0.519100,-0.341700,-0.412800,0.850900,-0.163900,-0.499100 -0.212300,-0.521500,-0.479100,-0.070350,-0.964900,-0.253000 0.454800,0.343900,0.269200,0.854600,0.225400,0.467700 0.609700,0.007250,0.125700,0.931600,0.287700,0.222100 0.233300,-0.170300,0.687300,0.509100,0.062890,0.858400 0.222900,0.442900,0.515700,0.512600,0.168100,0.842000 0.260000,0.389200,0.502700,0.530200,0.196000,0.824900 -0.798600,-0.323500,-0.364600,-0.868700,-0.106100,-0.483800 -0.216200,-0.510000,-0.720600,-0.023060,-0.352600,-0.935500 0.291300,-0.547100,0.455600,-0.145600,-0.978100,-0.148500 0.296200,-0.276800,0.649100,0.510100,-0.079870,0.856400 0.913000,0.399300,0.015030,0.934700,0.323900,0.146400 0.219300,-0.083770,0.683000,0.503900,0.146600,0.851200 -0.707200,-0.487000,0.038640,-0.188100,-0.982100,0.005267 -0.189500,0.066520,0.724500,0.013720,0.349800,0.936700 -0.258700,-0.518900,-0.475700,-0.072100,-0.964000,-0.256000 -0.889100,-0.346200,-0.028520,-0.987300,-0.158000,0.014090 0.403300,0.683100,0.288300,0.766000,0.479600,0.428000 0.470700,0.218900,0.305600,0.826800,0.318400,0.463700 0.253800,0.675900,-0.303400,-0.606100,0.581700,0.542400 -0.563700,-0.458500,-0.597900,-0.491500,-0.288200,-0.821800 -0.205400,0.169800,0.685600,-0.092790,0.313500,0.945100 0.546600,0.113800,0.222500,0.889800,0.397500,0.224200 -0.287300,-0.512000,-0.703200,-0.255700,-0.349600,-0.901300 -0.705000,0.372700,-0.250800,-0.859900,0.175700,-0.479200 0.125900,0.657800,0.559800,0.491000,0.104900,0.864800 -0.580000,-0.354300,-0.614900,-0.505900,-0.161800,-0.847300 -0.540100,0.143100,0.562700,-0.543600,0.361800,0.757400 -0.403600,-0.176900,0.727000,-0.250400,0.047830,0.967000 0.022280,0.128500,0.686300,0.254500,0.338100,0.906000 0.030620,0.055950,0.712800,0.268300,0.365200,0.891500 -0.687400,0.429600,-0.263700,-0.864600,0.132000,-0.484900 0.565500,-0.356400,0.330200,0.863400,-0.162000,0.477900 -0.102200,0.094080,0.713300,0.013230,0.351900,0.935900 -0.369800,-0.519500,-0.426300,-0.135700,-0.964600,-0.226300 -0.727300,0.500300,-0.114400,-0.964500,0.090160,-0.248100 0.191900,-0.538100,0.518900,-0.510800,-0.131700,-0.849500 -0.647600,0.399400,-0.344500,-0.862100,0.162200,-0.480100 -0.079570,-0.520800,-0.487900,0.003117,-0.965900,-0.259100 0.188200,0.712600,0.472500,0.151900,0.953200,0.261400 -0.185400,0.711500,-0.515900,0.016590,0.925700,0.377900 -0.830700,-0.386100,-0.287000,-0.875000,-0.194000,-0.443600 0.793500,-0.199100,-0.040460,-0.807600,-0.385900,-0.446100 0.001880,0.137900,-0.683800,0.229000,0.356600,-0.905800 0.532300,-0.051850,0.376600,0.849700,0.225300,0.476800 0.042320,-0.496200,-0.577300,-0.199400,-0.422300,0.884300 -0.867300,-0.223500,-0.214700,-0.969100,-0.000353,-0.246800 0.519400,-0.383400,0.404500,0.850200,-0.218300,0.479100 -0.353400,-0.538500,0.341900,-0.087890,-0.984600,0.151200 0.229700,-0.547400,-0.601800,0.004256,-1.000000,-0.008049 -0.865000,-0.458200,-0.038840,-0.957800,-0.287100,0.014300 0.043310,-0.505200,0.583900,-0.258200,-0.045550,-0.965000 0.515100,0.141800,0.279300,0.824300,0.321200,0.466100 -0.612900,0.708700,-0.154700,0.474900,0.873800,0.104600 0.795800,0.024750,-0.069830,-0.239900,0.085160,-0.967100 0.262400,-0.479200,0.625200,0.494800,-0.290300,0.819100 0.342000,0.028330,0.576900,0.694200,0.277300,0.664200 -0.626400,0.512000,0.354900,-0.856300,0.077460,0.510600 -0.013300,0.042440,0.729700,0.161600,0.274400,0.947900 -0.693800,0.203100,-0.358200,-0.832600,0.300200,-0.465500 0.042170,0.168600,0.665300,0.246400,0.319600,0.915000 -0.259500,0.057910,0.715700,-0.210700,0.363100,0.907600 0.495500,0.042890,0.391300,0.838200,0.285200,0.464900 -0.534800,-0.080370,-0.639800,-0.506600,0.162800,-0.846700 0.029270,-0.498600,0.588300,-0.301900,-0.242000,-0.922100 0.007884,-0.505700,-0.712800,0.232200,-0.342400,-0.910400 -0.001680,0.024570,0.731800,0.278900,0.286900,0.916500 -0.780100,-0.525100,-0.295900,-0.818000,-0.349400,-0.457000 0.316600,0.145200,0.541600,0.667400,0.356900,0.653700 0.513600,0.560200,0.011360,-0.489100,0.870300,0.058770 0.612300,-0.190200,0.238400,0.968400,0.001947,0.249400 0.272300,0.199000,-0.549100,0.474900,0.307200,-0.824700 0.533400,-0.296800,-0.398100,0.847000,-0.097020,-0.522600 -0.036170,0.699600,0.586400,0.105700,0.752000,0.650600 -0.493000,0.706700,-0.348600,0.394900,0.844900,0.360700 0.387900,-0.542800,0.329800,-0.691200,-0.577600,-0.434300 0.108200,0.507400,0.572100,0.281200,0.060570,0.957700 -0.623000,-0.299800,-0.589600,-0.713800,-0.096890,-0.693600 -0.159300,-0.043160,0.755600,0.005661,0.199500,0.979900 0.041750,0.671800,0.583800,0.268000,0.308600,0.912600 0.309900,-0.203600,0.642800,0.505800,0.050390,0.861200 0.472700,0.210600,0.307400,0.825400,0.311200,0.471000 0.285700,0.131600,0.568800,0.476200,0.368600,0.798300 0.224000,-0.310200,0.688300,0.512200,-0.081200,0.855000 -0.261500,-0.045920,-0.743900,-0.268300,0.218500,-0.938200 0.523500,0.283600,0.089620,0.948800,0.233900,0.212400 -0.505000,-0.527100,-0.270800,-0.215600,-0.967700,-0.130900 0.883300,-0.173100,-0.010820,0.901700,0.417700,-0.111200 -0.437600,0.234000,0.585800,-0.467000,0.281300,0.838300 0.885800,-0.230400,0.046150,0.887400,0.035580,0.459500 0.664800,-0.392300,-0.044410,-0.306600,-0.811800,-0.496900 -0.265500,0.645100,-0.590600,-0.275800,0.022490,-0.960900 0.092240,0.330000,-0.602600,0.240300,0.207800,-0.948200 -0.673300,0.244000,0.370300,-0.827300,0.269900,0.492700 -0.437500,0.111100,-0.633300,-0.478400,0.360500,-0.800700 -0.415000,0.483600,-0.540700,-0.509700,0.094240,-0.855200 0.602300,-0.367800,0.231400,0.956400,-0.147600,0.252100 0.561300,-0.121200,0.346600,0.873500,0.089030,0.478700 0.653300,-0.295400,-0.048450,0.687200,0.563200,-0.458900 -0.321200,0.365800,0.603000,-0.228100,0.199000,0.953100 0.359200,0.501800,-0.382500,0.752000,0.097260,-0.652000 0.502100,0.311100,0.147300,0.943000,0.240800,0.229900 0.493600,0.283000,0.209800,0.936500,0.262900,0.231900 0.109400,0.418000,0.582300,0.259000,0.122800,0.958000 -0.167500,-0.500300,-0.008704,0.329300,-0.941400,0.072520 -0.520000,-0.324400,-0.655700,-0.509700,-0.109100,-0.853400 -0.618400,-0.353400,-0.584900,-0.707800,-0.161200,-0.687800 -0.048660,-0.003158,0.745100,0.024850,0.248600,0.968300 0.794200,-0.236800,0.011630,-0.997000,-0.022830,0.074340 0.592200,-0.171700,-0.301100,0.942800,0.038820,-0.331100 0.449600,0.380600,-0.263500,0.843600,0.196200,-0.499900 0.453500,-0.120300,0.507400,0.718500,0.092360,0.689400 -0.752100,-0.266900,-0.457700,-0.848600,-0.039870,-0.527500 0.594200,-0.128500,0.288800,0.913000,0.088520,0.398200 0.257800,0.704400,0.442500,0.421000,0.808500,0.411200 -0.691800,-0.398600,-0.497600,-0.699300,-0.220800,-0.679800 0.471800,-0.170400,0.495500,0.716800,0.034540,0.696400 0.307500,0.560800,0.431800,0.723700,0.045450,0.688600 -0.013020,-0.127300,0.766700,0.111600,0.077760,0.990700 -0.827200,-0.042320,0.286600,-0.937400,0.225200,0.265600 -0.745600,-0.421500,0.423500,-0.836800,-0.225400,0.498900 0.024720,-0.019050,0.737100,0.264000,0.190700,0.945500 0.344200,0.172600,0.498800,0.676100,0.315800,0.665700 0.384100,-0.547000,0.345800,-0.257200,-0.955600,-0.143800 -0.526600,0.510400,-0.462900,-0.714900,0.079530,-0.694600 -0.866100,-0.421600,-0.122600,-0.944500,-0.224500,-0.239700 -0.317900,-0.497700,-0.524100,-0.100800,-0.930000,-0.353500 -0.321600,0.223500,-0.635000,-0.262900,0.296200,-0.918200 0.409600,0.330000,-0.349200,0.846500,0.208100,-0.490100 0.380000,0.167600,-0.462600,0.653500,0.322200,-0.685000 0.408200,0.135400,0.452000,0.678300,0.355100,0.643200 -0.377000,-0.531000,-0.670500,-0.255100,-0.350500,-0.901100 0.429600,0.198400,-0.384300,0.819000,0.313700,-0.480400 -0.061210,0.685300,-0.485800,-0.146700,0.536300,0.831200 0.875600,0.307300,-0.070620,-0.128900,-0.011160,-0.991600 0.845300,0.230300,0.053940,-0.794000,0.045380,0.606200 0.403700,-0.330000,0.558100,0.714200,-0.134400,0.686900 -0.675900,-0.311700,0.537500,-0.693500,-0.097460,0.713900 0.471600,0.690500,0.028720,0.796400,0.604700,0.010550 0.273000,0.544100,0.467800,0.716900,0.025500,0.696700 -0.697500,0.571100,-0.215100,-0.962300,0.029590,-0.270500 -0.606900,-0.515200,-0.371900,0.746100,0.005862,0.665800 -0.774300,-0.496200,0.333900,-0.809900,-0.324900,0.488400 0.622000,-0.111800,-0.175500,0.955200,0.104800,-0.276900 -0.365100,-0.161900,0.735500,-0.238600,0.101000,0.965800 0.215300,0.212500,0.578900,0.486500,0.288600,0.824600 -0.573100,-0.497900,-0.578000,-0.514400,-0.332100,-0.790600 0.275400,-0.505200,0.459800,-0.711700,-0.048560,-0.700800 -0.411500,0.671100,0.389500,0.436200,0.679000,-0.590500 0.321500,0.675500,-0.191400,-0.776200,0.539900,0.325700 0.418100,0.135400,0.441800,0.675200,0.336900,0.656200 0.435800,0.668400,0.241100,0.847200,0.240600,0.473600 0.343600,-0.511200,-0.552100,0.652800,-0.349700,-0.672000 -0.536100,-0.537900,0.041290,-0.177400,-0.984100,0.005663 0.352700,0.179800,0.487000,0.675500,0.317800,0.665300 0.054960,-0.341700,-0.742300,0.242900,-0.147400,-0.958800 -0.561700,0.503400,-0.427700,-0.714600,0.084840,-0.694400 -0.522300,-0.540000,0.034480,-0.125600,-0.992100,0.001810 0.225600,-0.417400,0.666400,0.499200,-0.228200,0.835900 0.501100,-0.141800,-0.450400,0.857300,0.065720,-0.510600 -0.403600,0.657700,0.541600,-0.488700,0.087120,0.868100 -0.528500,-0.538700,-0.062450,-0.158300,-0.986600,-0.038380 -0.517500,-0.044190,-0.642200,-0.499000,0.223600,-0.837200 -0.703900,-0.060590,-0.489300,-0.703900,0.191900,-0.683900 0.511700,-0.509100,0.347000,0.817500,-0.346900,0.459600 -0.647700,0.056990,0.504300,-0.652000,0.365800,0.664100 0.532300,0.118500,0.266600,0.828200,0.378000,0.413900 0.493700,-0.130200,0.467500,0.734800,0.091770,0.672100 0.525400,-0.186800,-0.417100,0.855000,0.027590,-0.517800 0.360800,0.689800,0.355800,0.678200,0.589200,0.439100 0.241400,0.680400,0.484000,0.467300,0.433900,0.770300 -0.576500,-0.535000,-0.401900,0.714300,-0.088400,0.694200 -0.593200,-0.446000,0.583100,-0.667600,-0.272000,0.693100 0.283200,-0.439500,0.626200,0.483600,-0.255800,0.837100 0.117700,0.177000,-0.640100,0.254900,0.329400,-0.909100 0.037300,0.177100,-0.660400,0.230600,0.329500,-0.915600 -0.437800,0.207200,-0.593100,-0.488300,0.301500,-0.819000 -0.807900,0.170500,0.001706,-0.942900,0.332900,0.013520 -0.192700,0.214000,-0.666800,-0.013860,0.297800,-0.954500 -0.623900,0.699400,-0.001500,0.679700,0.733400,-0.009334 -0.014770,-0.119400,0.766600,0.104800,0.066490,0.992300 -0.618400,0.338800,-0.403800,-0.702800,0.199000,-0.683000 -0.641500,0.193900,0.440200,-0.654100,0.342300,0.674500 -0.700500,-0.405100,-0.486500,-0.698300,-0.225500,-0.679300 0.311200,0.381000,0.455600,0.707400,0.197800,0.678600 0.007836,-0.499600,0.539900,0.094650,-0.936400,0.337900 0.388600,-0.512700,0.081750,0.304200,-0.949600,0.076300 0.208400,-0.522500,0.352700,0.186000,-0.965800,0.180900 -0.298600,0.577800,0.585200,-0.244200,0.020360,0.969500 0.803000,0.129100,-0.016490,-0.894200,0.411400,-0.176800 0.698200,-0.406900,-0.031390,-0.117400,-0.935700,-0.332800 -0.018540,0.370400,-0.622200,0.241400,0.182800,-0.953100 -0.879400,-0.326500,0.150500,-0.955300,-0.115200,0.272400 0.426400,0.072560,-0.466500,0.661100,0.336600,-0.670500 0.168100,-0.511700,0.432300,0.163400,-0.949100,0.269200 -0.644500,0.342300,-0.371400,-0.850900,0.196900,-0.487000 0.266100,-0.454700,0.631500,0.500800,-0.287500,0.816400 0.613100,-0.463400,-0.048450,0.967500,-0.251700,-0.024630 -0.848300,-0.266900,0.278800,-0.960600,-0.041650,0.274800 0.072350,-0.081900,-0.734200,0.241800,0.161300,-0.956800 0.795500,-0.247100,-0.017760,-0.978200,0.091680,-0.186500 0.434900,0.214700,0.371400,0.833200,0.283400,0.474800 0.858700,0.504400,0.022070,0.782300,0.593700,0.188600 0.163700,0.352400,0.567800,0.504500,0.163300,0.847800 0.895500,-0.218400,0.010160,0.988600,0.129300,0.077570 -0.553700,-0.510200,0.304000,-0.287300,-0.942500,0.170600 0.090700,-0.502900,-0.693000,0.230700,-0.340300,-0.911600 0.592000,-0.361500,-0.262700,0.947600,-0.146400,-0.283800 0.342600,0.179800,0.497100,0.687100,0.304700,0.659600 -0.517900,-0.256800,0.666100,-0.486900,-0.040770,0.872500 -0.575500,-0.176900,0.633500,-0.487500,0.044410,0.872000 0.229300,0.618300,-0.497700,0.487700,-0.004538,-0.873000 0.220800,0.477000,-0.510700,0.486400,0.096150,-0.868400 0.022410,0.219400,-0.650000,0.234000,0.298200,-0.925400 -0.622900,0.230000,-0.438500,-0.687800,0.283500,-0.668300 0.231600,0.680800,-0.329500,-0.615600,0.499200,0.609800 -0.750400,-0.295800,-0.456500,-0.847000,-0.095880,-0.522900 -0.411100,-0.027040,0.700400,-0.452700,0.227500,0.862100 -0.815500,-0.110000,-0.331200,-0.864700,0.138100,-0.482800 -0.268400,0.527300,0.595100,-0.241000,0.077090,0.967500 -0.775600,0.221700,-0.142700,-0.925300,0.297100,-0.235800 -0.581000,0.685700,-0.386600,-0.613700,0.516900,-0.596900 -0.671100,0.456700,0.290700,-0.852900,0.120000,0.508000 0.491200,0.335100,-0.164100,0.937500,0.207300,-0.279500 0.394700,0.375600,-0.356900,0.843900,0.195000,-0.499900 0.570200,-0.086870,-0.320700,0.850000,0.157400,-0.502700 0.613700,-0.196900,-0.227200,0.957300,0.021080,-0.288300 0.471500,0.657800,-0.124000,0.955200,0.102700,-0.277700 -0.693500,0.544100,-0.230300,-0.894800,0.065990,-0.441600 -0.508600,-0.136900,0.667300,-0.485100,0.095920,0.869200 0.183000,-0.107000,-0.703700,0.484800,0.139000,-0.863500 0.207700,0.487700,-0.516900,0.485200,0.095330,-0.869200 -0.692200,-0.316400,0.521000,-0.692800,-0.099830,0.714200 -0.580600,0.193600,0.500000,-0.667100,0.312100,0.676400 -0.824500,0.126600,-0.028480,-0.931400,0.363700,0.013320 -0.713400,-0.537600,0.145400,0.962300,0.011210,-0.271900 -0.708400,0.496800,0.190700,-0.957700,0.093680,0.272000 -0.626400,0.171200,-0.462100,-0.676700,0.331000,-0.657600 -0.630300,-0.538000,0.336600,0.857500,-0.035680,-0.513200 0.478900,0.299400,0.245000,0.873900,0.260200,0.410600 0.559900,-0.407300,-0.321000,0.838200,-0.262500,-0.478000 -0.758400,-0.216800,0.448400,-0.858800,0.013160,0.512100 0.841600,-0.004919,-0.039790,0.872100,-0.225700,-0.434200 0.313600,-0.490500,0.377400,0.229200,-0.946700,0.226400 0.603700,-0.336200,-0.237300,0.952000,-0.154700,-0.264000 0.086260,0.546600,-0.574500,0.246800,0.057080,-0.967400 -0.192800,-0.510600,0.725800,0.010020,-0.386900,0.922100 0.200000,-0.286700,-0.700500,0.486000,-0.083870,-0.870000 0.119200,0.648300,-0.559200,0.486600,0.041700,-0.872600 0.291500,-0.236700,-0.652000,0.487400,-0.026160,-0.872800 0.262400,-0.528400,-0.249800,0.211700,-0.969300,-0.125200 0.160500,0.420900,-0.552300,0.482300,0.143100,-0.864200 -0.495400,-0.136700,0.674400,-0.480000,0.100400,0.871500 -0.621900,0.086860,0.513700,-0.661100,0.365300,0.655300 -0.404200,0.304800,0.582700,-0.453500,0.198400,0.868900 -0.728600,0.013830,0.432600,-0.822800,0.287000,0.490600 -0.266600,-0.521000,0.706700,-0.225800,-0.332500,0.915700 0.606100,-0.456500,-0.137500,0.914200,-0.312100,-0.258700 0.338600,0.677000,-0.140400,-0.788100,0.575600,0.218400 -0.591000,0.684200,-0.141300,0.837900,0.504600,0.208200 -0.750000,-0.176700,0.460000,-0.857700,0.044220,0.512200 -0.307300,-0.441800,0.723400,-0.257600,-0.251900,0.932800 -0.713500,-0.526100,0.414200,-0.803100,-0.352000,0.480700 -0.678100,0.517300,0.267500,-0.857100,0.070880,0.510300 -0.421400,-0.236700,0.721000,-0.501500,-0.040170,0.864200 -0.649900,0.557600,0.310200,-0.858000,0.044330,0.511800 0.402200,0.587900,-0.303600,0.864400,0.015690,-0.502600 0.406200,-0.154100,0.560800,0.710700,0.134900,0.690400 0.565300,-0.366500,-0.326400,0.848100,-0.171600,-0.501400 -0.655500,0.135000,-0.451000,-0.669700,0.357500,-0.650900 0.484800,-0.388300,0.460900,0.747300,-0.200000,0.633600 0.337500,-0.511500,0.241900,0.277700,-0.947900,0.155900 -0.299600,0.669600,0.449500,0.220100,0.707200,-0.671900 -0.716000,-0.508600,0.137700,0.956700,-0.168500,-0.237200 -0.471400,0.507000,0.509300,-0.485200,0.098550,0.868800 0.424100,-0.006855,-0.504500,0.675600,0.260200,-0.689800 0.324000,-0.196800,-0.633400,0.487500,0.032360,-0.872500 0.310800,-0.436600,-0.610200,0.477300,-0.246100,-0.843600 0.152900,-0.528600,-0.538100,-0.487100,0.029700,0.872800 -0.295100,-0.544300,-0.580700,0.142600,-0.549300,0.823400 0.032060,0.067600,-0.703900,0.229700,0.349100,-0.908500 -0.038420,0.259400,-0.653500,0.201900,0.261900,-0.943700 -0.024550,0.693500,0.589700,0.212700,0.652900,0.727000 -0.821900,0.133600,-0.038530,-0.931700,0.363000,0.013290 -0.102200,0.066660,-0.721400,-0.013390,0.349700,-0.936800 0.702200,0.556400,0.073840,0.025670,0.095410,0.995100 -0.446700,0.687900,-0.501700,-0.412900,0.593500,-0.690800 0.461400,0.436300,-0.204500,0.947000,0.120600,-0.297800 -0.877000,-0.189600,-0.172600,-0.968600,0.033010,-0.246500 -0.601100,0.507500,-0.386500,-0.714800,0.082930,-0.694400 -0.717900,0.598100,0.138000,-0.961300,0.016470,0.275000 -0.855300,-0.256800,0.255400,-0.961600,-0.032140,0.272400 0.469000,0.670900,0.125100,0.926800,0.296200,0.231000 0.299600,-0.547300,0.564100,0.086920,-0.987300,0.133100 0.348800,-0.546900,0.523300,0.160000,-0.974600,0.156800 0.419000,0.667100,-0.270100,0.829000,0.219500,-0.514500 -0.691800,-0.407000,0.500400,-0.678900,-0.225000,0.698900 -0.807400,0.109700,-0.177900,-0.903600,0.362300,-0.228700 0.275700,-0.539500,0.061880,0.137300,-0.990100,0.029270 -0.065450,0.690600,0.596100,0.013960,0.586900,0.809500 0.820400,-0.383400,-0.007815,0.553900,-0.828200,-0.085030 0.108100,-0.494200,0.523400,0.183900,-0.918900,0.349000 -0.371100,0.667100,-0.556400,-0.437500,0.249700,-0.863800 0.592200,-0.216900,-0.304700,0.934600,0.041140,-0.353300 -0.690900,0.486900,0.250500,-0.897100,0.099020,0.430600 0.835000,0.214700,0.039220,-0.903600,0.155800,0.399100 0.347700,0.081740,-0.538500,0.656000,0.324900,-0.681300 0.003148,-0.538000,-0.591400,-0.287800,-0.038860,0.956900 0.500100,-0.306900,-0.451500,0.851200,-0.086060,-0.517800 0.413400,0.691700,0.257800,0.686100,0.631200,0.361600 0.546200,-0.536700,-0.248300,0.907600,-0.321600,-0.270000 -0.733100,-0.296500,0.483300,-0.770700,-0.106000,0.628400 -0.819600,-0.283600,-0.335000,-0.870500,-0.081920,-0.485300 0.327300,-0.530500,-0.007417,0.200300,-0.979700,-0.003031 0.353500,-0.339900,0.607100,0.575700,-0.161200,0.801600 0.174300,-0.538800,0.278400,0.114100,-0.987300,0.110800 -0.536400,-0.541100,0.586600,-0.470900,-0.346600,0.811300 -0.854500,0.044060,0.021880,-0.951200,0.308200,0.013590 -0.002237,0.396700,-0.613500,0.241400,0.163700,-0.956500 0.286800,0.648100,-0.447400,0.696300,0.048370,-0.716100 0.218100,-0.529700,0.302100,0.152900,-0.977000,0.148700 0.323500,-0.435900,-0.603000,0.542700,-0.241300,-0.804500 -0.014780,-0.528700,-0.444400,0.059440,-0.971800,-0.228100 -0.220600,-0.517800,0.011890,0.266200,-0.963500,-0.028470 -0.678700,0.695500,0.212600,-0.704200,0.681500,0.198900 -0.388500,-0.528600,0.380500,-0.124300,-0.971400,0.202400 0.529600,0.448000,0.048080,0.682100,-0.549100,0.482900 -0.536700,-0.491300,0.607200,-0.464000,-0.298300,0.834100 0.323100,0.244500,-0.483800,0.674000,0.280400,-0.683400 0.705500,0.542000,-0.070000,-0.055280,-0.210000,-0.976100 0.927200,0.296000,-0.035100,0.923900,0.061570,-0.377600 0.373200,-0.518600,0.011860,0.267600,-0.963500,-0.003799 -0.593100,-0.107300,0.613200,-0.674800,0.160400,0.720300 0.419100,-0.376500,-0.529500,0.686900,-0.169600,-0.706700 0.676000,-0.335200,0.070780,0.172500,0.363500,0.915500 0.259300,0.497000,-0.480500,0.711500,0.060070,-0.700100 -0.701200,-0.316100,-0.506700,-0.712400,-0.098640,-0.694800 -0.292000,-0.506200,0.706300,-0.226500,-0.360600,0.904800 -0.684500,-0.176900,0.533600,-0.690000,0.058240,0.721500 0.388100,-0.216900,-0.579000,0.699300,0.032860,-0.714100 -0.613600,-0.206900,0.603500,-0.695500,0.061540,0.715900 -0.634000,-0.256800,0.583700,-0.696600,-0.032470,0.716800 0.453700,-0.196900,-0.513800,0.696900,-0.000730,-0.717100 0.048030,0.447200,-0.593200,0.243000,0.128400,-0.961500 0.148900,-0.327200,-0.720500,0.262700,-0.113300,-0.958200 -0.509200,0.581300,-0.475500,-0.687200,0.025740,-0.726000 -0.504800,0.688800,-0.310100,0.598800,0.566700,0.565900 0.547900,-0.481300,-0.301300,0.825500,-0.266700,-0.497500 -0.814100,0.012700,0.281700,-0.918500,0.289500,0.269200 0.398100,0.022140,-0.518600,0.657500,0.301400,-0.690500 0.380000,-0.516600,0.001796,0.285100,-0.958500,-0.004092 -0.092280,-0.393400,0.756700,0.013870,-0.234000,0.972100 -0.012310,0.356200,-0.623500,0.240000,0.196300,-0.950700 -0.886700,-0.342500,0.114600,-0.976000,-0.169000,0.137000 -0.726800,0.319900,0.226300,-0.938000,0.222600,0.265700 0.691800,0.597100,-0.039760,0.119300,0.891100,-0.437900 -0.523900,0.406000,0.483500,-0.684600,0.131200,0.717000 -0.682700,-0.147300,0.531700,-0.700200,0.083760,0.709000 -0.578500,0.476900,0.417400,-0.701300,0.106600,0.704800 -0.556600,-0.528600,0.426000,0.696900,-0.013450,-0.717100 -0.674100,-0.176900,0.543300,-0.687000,0.061080,0.724100 -0.602900,-0.276700,0.612900,-0.695700,-0.061680,0.715700 0.072080,0.309700,-0.612400,0.238400,0.231400,-0.943200 0.631000,-0.390500,-0.088670,0.976700,-0.213200,0.022750 -0.732800,0.122100,0.349600,-0.804200,0.375200,0.460900 -0.491400,-0.506100,0.626000,-0.450200,-0.329900,0.829700 0.532900,-0.521000,-0.301400,0.804600,-0.349100,-0.480300 -0.267000,-0.531600,0.703100,-0.240000,-0.323400,0.915300 0.934300,0.257000,0.001715,0.999300,-0.038330,0.005442 0.556700,0.472900,-0.035350,0.616900,-0.684300,-0.388800 -0.887900,-0.306700,0.127700,-0.959300,-0.097740,0.265000 -0.707400,0.077420,0.425800,-0.809800,0.314900,0.495000 -0.715800,0.035170,-0.441500,-0.738200,0.298000,-0.605200 0.852600,0.357300,0.069840,-0.474900,-0.117100,0.872200 0.876700,-0.269600,0.055780,0.781600,-0.177700,0.598000 0.765300,-0.391500,-0.052680,0.220900,-0.763800,-0.606500 0.238000,-0.146100,-0.678000,0.485100,0.097570,-0.869000 0.087920,0.676400,-0.567000,0.237300,0.375400,-0.896000 0.353100,0.416100,-0.403200,0.689000,0.175400,-0.703200 -0.594100,-0.376700,0.604100,-0.686400,-0.170800,0.706900 0.027070,-0.066850,-0.743100,0.242600,0.167700,-0.955500 -0.511600,-0.476400,0.626200,-0.465500,-0.281400,0.839100 0.479100,0.679100,0.055500,0.913200,0.407200,-0.015570 -0.486200,-0.511000,0.627000,-0.466100,-0.321700,0.824200 -0.407100,-0.371900,0.713200,-0.335100,-0.163600,0.927900 0.257800,0.581200,0.481200,0.642900,0.047930,0.764400 0.794500,-0.279600,0.048240,-0.754300,0.424800,0.500500 0.672800,-0.356500,0.074150,-0.037430,-0.035110,0.998700 -0.331800,-0.515600,0.692600,-0.229400,-0.349600,0.908400 -0.233000,-0.527100,0.454300,-0.061010,-0.967400,0.245800 0.858200,0.102700,0.072490,0.285600,-0.126300,0.950000 -0.037390,0.472200,-0.611700,0.243400,0.101600,-0.964600 -0.518900,0.419900,-0.485400,-0.690700,0.143300,-0.708800 0.589500,0.597300,-0.007787,-0.259600,0.961200,-0.092880 0.348700,0.710800,-0.320400,0.341200,0.914900,-0.215700 0.454500,0.701200,0.098190,0.627700,0.758200,0.176300 0.503400,0.547400,0.040360,-0.001049,0.959500,0.281800 0.775400,-0.329400,0.070160,-0.249200,0.417600,0.873800 0.141900,0.690500,0.536200,0.408300,0.612600,0.676800 -0.053970,-0.498200,-0.555400,0.053930,-0.934600,-0.351500 0.057310,0.163400,-0.660300,0.231800,0.331100,-0.914700 -0.865400,-0.086260,0.181900,-0.949400,0.161500,0.269200 -0.773100,0.122400,0.280600,-0.846600,0.368300,0.384300 0.068700,-0.417000,-0.724100,0.240500,-0.227300,-0.943700 -0.697000,0.131200,-0.404100,-0.812800,0.363200,-0.455400 0.529900,0.455400,-0.049640,0.653100,-0.480300,-0.585500 -0.512200,0.233200,-0.539300,-0.489000,0.281700,-0.825500 0.442000,0.507100,-0.243700,0.904700,0.079440,-0.418600 -0.611500,0.598900,0.372300,-0.845600,0.017460,0.533600 -0.028340,-0.052180,-0.754200,0.191200,0.205600,-0.959800 0.038600,0.694400,0.570900,0.189800,0.670300,0.717400 0.194100,-0.544400,0.520300,-0.314100,-0.748400,-0.584100 0.097490,0.284300,-0.612300,0.238700,0.242900,-0.940200 0.325200,0.667300,0.409200,0.714100,0.228300,0.661800 0.476000,-0.317900,-0.486300,0.699100,-0.098760,-0.708200 0.580500,-0.309200,0.315200,0.872600,-0.076930,0.482300 0.311600,-0.453700,0.604200,0.491600,-0.298400,0.818100 -0.512300,0.375300,0.502200,-0.672700,0.191000,0.714800 0.779100,-0.055760,0.072230,-0.348900,-0.012870,0.937100 -0.336200,0.685300,0.442600,0.402800,0.557100,-0.726200 -0.354900,0.048000,0.695300,-0.239100,0.352700,0.904700 0.630800,-0.066030,-0.116500,0.961800,0.153800,-0.226600 0.097380,0.557500,-0.570800,0.325500,0.046110,-0.944400 -0.724900,-0.541200,-0.382100,-0.749000,-0.516300,-0.415200 -0.693000,0.162300,-0.387700,-0.823400,0.332800,-0.459700 0.368200,0.691900,-0.018400,-0.797600,0.603100,0.008618 -0.721100,-0.337900,0.489400,-0.690900,-0.142900,0.708700 0.894400,0.149000,0.062250,0.672700,-0.214800,0.708100 0.847200,0.451600,-0.069600,0.226200,0.130600,-0.965300 0.544700,0.572500,-0.035540,-0.433700,0.822000,-0.369100 -0.439000,-0.539100,0.260700,-0.115500,-0.988500,0.097610 0.551600,0.128300,-0.175500,0.893600,0.357600,-0.271200 -0.745100,0.074910,-0.362100,-0.817200,0.349000,-0.458600 0.551300,0.108100,-0.205600,0.895100,0.354800,-0.270100 0.856300,0.093630,0.071740,0.329100,-0.216300,0.919200 0.392700,0.691200,0.296900,0.693000,0.597600,0.403200 -0.707000,0.161500,-0.363300,-0.822600,0.332300,-0.461400 0.385600,0.314900,-0.396500,0.775800,0.217200,-0.592400 -0.785300,-0.071530,0.376800,-0.848100,0.163100,0.504200 0.490800,-0.287600,-0.472600,0.855700,-0.090800,-0.509400 -0.516400,0.145200,-0.570900,-0.480400,0.342600,-0.807400 -0.519600,0.699300,0.436600,-0.473800,0.702800,0.530700 -0.703700,0.052190,0.450000,-0.780000,0.346900,0.520900 0.009090,0.707400,0.494000,-0.148000,0.844500,-0.514800 0.741700,-0.045160,0.012140,-0.997900,0.018080,0.061730 0.077480,-0.375700,0.733700,0.251000,-0.165400,0.953800 -0.367700,0.191700,-0.632300,-0.263500,0.315000,-0.911800 -0.254000,0.228900,0.654200,-0.261100,0.284600,0.922400 0.180400,-0.528600,-0.343800,0.169900,-0.970200,-0.172800 -0.062200,0.679700,-0.600900,0.035340,0.454800,-0.889900 0.871600,0.386200,-0.070560,0.099290,0.045710,-0.994000 -0.592400,-0.539000,-0.538900,-0.652500,-0.415200,-0.633900 -0.694800,0.401300,0.266200,-0.847500,0.163700,0.504900 -0.317200,-0.064330,-0.732100,-0.273000,0.174300,-0.946100 0.375900,0.693700,-0.317300,0.661600,0.635600,-0.397900 -0.013190,0.696400,-0.579400,0.190700,0.690600,-0.697700 -0.633800,0.708100,0.080650,0.446300,0.893700,-0.046670 -0.480300,0.153300,0.592200,-0.453900,0.333100,0.826400 -0.587800,-0.266800,0.626200,-0.539100,-0.035620,0.841500 -0.786300,0.211800,-0.112800,-0.924900,0.297000,-0.237200 -0.704500,-0.541200,0.418000,-0.785200,-0.392500,0.478900 -0.279300,-0.022070,0.734400,-0.244200,0.218800,0.944700 0.120200,-0.451600,-0.702100,0.234400,-0.284300,-0.929600 -0.230800,0.023300,0.733900,-0.236900,0.269200,0.933500 -0.676600,0.491800,0.274400,-0.855000,0.095120,0.509900 -0.544200,-0.246700,0.651600,-0.490700,-0.052180,0.869800 0.730600,0.498100,0.046480,-0.401700,-0.795100,0.454400 0.145600,-0.491900,-0.682900,0.280400,-0.314600,-0.906900 0.611100,0.514000,0.056130,0.225600,-0.751000,0.620600 0.500500,0.396400,-0.076820,0.990300,0.137500,-0.020640 0.791200,-0.381100,0.055450,0.328600,-0.691800,0.643000 -0.580300,0.681600,0.396600,-0.598900,0.453200,0.660200 -0.589100,-0.116700,0.618800,-0.620900,0.135300,0.772100 0.352700,0.577900,-0.383200,0.703400,0.034700,-0.710000 0.478800,0.052830,-0.406700,0.801700,0.356300,-0.479900 0.755700,-0.026220,0.051350,-0.833100,0.090020,0.545700 0.641900,-0.126500,-0.096950,0.997200,0.068480,-0.028770 -0.322300,-0.529500,0.413100,-0.106300,-0.976300,0.188700 0.077270,0.692800,-0.559200,0.196500,0.651200,-0.733000 -0.107200,-0.529100,-0.137300,-0.023600,-0.974600,0.222500 -0.400900,0.043660,0.683700,-0.422500,0.325900,0.845700 0.276200,-0.397200,-0.640000,0.478100,-0.215300,-0.851500 -0.272100,-0.543100,0.697500,-0.228500,-0.513800,0.826900 0.858200,0.296400,0.066280,-0.603800,-0.052350,0.795400 0.382200,0.324800,-0.397000,0.780200,0.229200,-0.582000 -0.424500,0.234700,0.593200,-0.467900,0.281300,0.837800 -0.243300,-0.490500,-0.589400,0.059060,-0.768900,0.636700 -0.685000,0.427200,0.274800,-0.850400,0.133000,0.509100 0.571000,-0.021950,-0.290800,0.909500,0.220600,-0.352300 0.598800,0.500300,-0.036080,0.352500,-0.839000,-0.414600 0.051700,0.457600,-0.590900,0.244400,0.118400,-0.962400 0.621500,0.530500,0.068510,0.104300,-0.510600,0.853500 0.389300,0.330000,-0.384300,0.839000,0.239900,-0.488300 0.665500,-0.295500,-0.034100,0.546500,0.768700,-0.332400 0.600500,-0.439000,0.176300,0.930700,-0.271200,0.245600 -0.392500,-0.529600,0.373300,-0.113600,-0.978100,0.174600 -0.029900,-0.487800,-0.574400,0.098480,-0.908700,-0.405600 -0.500100,0.264200,0.541300,-0.483600,0.252600,0.838000 0.591200,-0.166100,-0.302200,0.934700,0.086640,-0.344600 -0.284000,0.177900,0.663200,-0.204700,0.315400,0.926600 -0.519700,0.032370,0.621100,-0.464300,0.271000,0.843200 -0.429200,0.118200,0.635900,-0.429500,0.356700,0.829600 0.204700,-0.511700,-0.642700,0.455700,-0.351900,-0.817600 0.508800,0.248900,-0.179700,0.909800,0.293000,-0.293900 0.508300,0.082640,-0.335700,0.816200,0.327900,-0.475600 0.164800,-0.526100,-0.658700,0.456000,-0.351600,-0.817600 -0.765800,0.020420,-0.362400,-0.836200,0.287300,-0.467200 0.490900,0.158300,-0.309400,0.803900,0.350700,-0.480400 -0.736100,0.326100,-0.187500,-0.943800,0.220700,-0.246100 -0.287100,0.040870,-0.712600,-0.265400,0.294000,-0.918200 0.538000,-0.494900,0.310300,0.814700,-0.330600,0.476500 0.841300,-0.107500,-0.044270,0.831000,0.237300,-0.503100 0.531800,0.057900,-0.314900,0.808500,0.363600,-0.462700 -0.543400,-0.519300,0.263800,-0.227400,-0.964100,0.137400 -0.424000,0.512300,0.535000,-0.487400,0.047770,0.871900 -0.736800,0.346500,-0.167600,-0.948500,0.202600,-0.243500 0.145400,-0.526300,-0.669000,0.382000,-0.368500,-0.847500 0.440900,0.178500,-0.380000,0.810400,0.327100,-0.486200 -0.302300,-0.037900,-0.730400,-0.263400,0.224300,-0.938300 -0.798400,-0.095760,-0.357400,-0.861400,0.159000,-0.482300 -0.552600,-0.097210,0.636500,-0.485900,0.165600,0.858200 -0.723700,0.142100,-0.347700,-0.819800,0.349400,-0.453700 -0.531700,-0.045860,-0.634100,-0.500500,0.219500,-0.837400 0.497600,0.203700,-0.266100,0.853100,0.327700,-0.405900 0.620800,-0.305700,0.192100,0.969000,-0.092760,0.229100 -0.410700,-0.086830,0.713700,-0.437800,0.183700,0.880100 -0.253100,0.042760,-0.721500,-0.262900,0.308800,-0.914100 -0.788800,-0.105600,-0.377800,-0.864400,0.146600,-0.480900 0.138700,-0.496100,-0.683300,0.256900,-0.313600,-0.914100 0.340800,0.683400,0.149000,-0.827800,0.514900,-0.222700 -0.583100,0.230400,-0.479200,-0.688000,0.283200,-0.668200 -0.795300,0.128900,0.196900,-0.896300,0.363400,0.254100 -0.674400,0.229600,0.376700,-0.822600,0.287600,0.490600 0.321100,0.486400,-0.421400,0.691200,0.088410,-0.717200 0.590700,-0.016390,-0.217500,0.939200,0.226400,-0.258300 -0.025430,-0.471900,-0.732500,0.215300,-0.287400,-0.933300 -0.261500,-0.529000,0.026980,0.221500,-0.974400,-0.039080 -0.291000,-0.076760,0.743500,-0.221100,0.150300,0.963600 -0.487100,0.559500,-0.491300,-0.510200,0.035560,-0.859300 0.388800,0.426400,-0.350700,0.843900,0.153900,-0.514000 -0.648000,0.387400,-0.347800,-0.861200,0.166400,-0.480200 -0.488800,-0.518500,0.340500,-0.187400,-0.964500,0.185900 0.774800,0.071630,-0.027180,-0.837500,0.445500,-0.316400 -0.756100,-0.134300,-0.443200,-0.869000,0.096950,-0.485200 -0.477300,-0.531900,0.623900,-0.457500,-0.334100,0.824100 0.605200,0.510000,0.053340,0.227400,-0.771800,0.593800 -0.796700,-0.148700,-0.373400,-0.869000,0.097660,-0.485100 -0.117200,-0.508900,-0.067650,-0.034460,-0.944000,0.328100 -0.522400,-0.529600,0.223000,-0.184100,-0.976700,0.110700 -0.743800,-0.426600,0.424300,-0.835600,-0.228800,0.499400 -0.357600,0.479400,-0.571600,-0.283600,0.097660,-0.954000 -0.375400,0.709400,0.450400,0.218000,0.897900,-0.382400 0.611100,-0.191700,-0.235600,0.959900,0.011450,-0.280100 -0.506900,0.267100,-0.531600,-0.495500,0.261200,-0.828400 0.322200,0.706800,-0.369700,0.375400,0.851100,-0.367100 0.400200,0.370600,-0.349600,0.839700,0.208600,-0.501300 0.201300,0.400900,-0.533200,0.480800,0.163300,-0.861500 0.621300,-0.042060,-0.130000,0.932900,0.251900,-0.257200 -0.687000,-0.316600,0.526000,-0.694000,-0.099120,0.713100 0.633500,-0.392500,-0.043470,0.774200,-0.564700,-0.285800 0.339900,0.446500,-0.410200,0.699300,0.111700,-0.706000 -0.397300,0.120300,-0.650800,-0.286300,0.374300,-0.882000 -0.627200,0.268900,0.423500,-0.675900,0.241300,0.696400 -0.674900,0.456700,0.284300,-0.852200,0.119000,0.509500 -0.498700,0.228700,0.553800,-0.465900,0.316700,0.826200 0.391000,0.310100,-0.390300,0.843300,0.184400,-0.504700 0.622600,-0.117000,-0.174400,0.955800,0.100300,-0.276500 -0.623000,0.345100,0.402600,-0.688200,0.180900,0.702600 -0.773700,-0.526100,0.313500,-0.804300,-0.349800,0.480400 -0.643100,-0.032250,0.545000,-0.675600,0.224800,0.702200 0.822100,0.185300,-0.007924,-0.960200,0.258800,-0.105000 -0.784600,-0.037020,0.364200,-0.836600,0.225000,0.499500 -0.474000,0.340400,0.534500,-0.495000,0.184400,0.849100 0.482400,-0.296500,-0.482600,0.744300,-0.097390,-0.660700 -0.237000,-0.462100,0.734400,-0.243200,-0.300700,0.922200 0.402500,0.163000,-0.442500,0.662800,0.308400,-0.682300 -0.348700,-0.386400,0.725500,-0.242800,-0.178900,0.953400 -0.466700,-0.471600,0.653100,-0.451100,-0.270000,0.850700 -0.577800,0.254500,0.477100,-0.661800,0.275200,0.697300 -0.677900,0.234500,0.368000,-0.823900,0.284200,0.490300 0.313900,-0.066920,-0.623200,0.482700,0.166700,-0.859800 -0.425400,-0.401100,0.696600,-0.496100,-0.245900,0.832700 0.343600,-0.506600,-0.554500,0.652600,-0.345700,-0.674300 0.321700,-0.493700,0.584300,0.471800,-0.343600,0.812000 -0.446300,0.489100,-0.521400,-0.509600,0.094870,-0.855200 0.519900,0.305100,0.013340,0.978600,0.205600,-0.003897 -0.498200,-0.496100,0.626500,-0.446500,-0.327500,0.832700 -0.728700,0.004425,-0.438600,-0.834200,0.273500,-0.478800 -0.515600,0.674600,-0.462000,-0.677600,0.325200,-0.659600 0.394100,0.708700,-0.251100,0.418000,0.874700,-0.245200 -0.497300,0.363600,-0.511600,-0.503500,0.193100,-0.842200 0.752400,0.003281,0.036370,-0.922100,0.182400,0.341100 -0.496000,0.423500,-0.500700,-0.507200,0.136300,-0.851000 0.469900,-0.473600,0.444400,0.745400,-0.266300,0.611100 -0.657100,0.288200,-0.374300,-0.847700,0.239900,-0.473200 0.391300,-0.474200,0.525600,0.680000,-0.296500,0.670600 -0.775300,0.069990,-0.311800,-0.818000,0.348500,-0.457500 -0.380400,0.708500,0.517700,-0.206700,0.877800,0.432100 -0.676200,0.302800,-0.332800,-0.849100,0.231900,-0.474600 -0.696000,0.312800,-0.292400,-0.849300,0.230700,-0.474900 0.489000,0.278400,-0.220000,0.929900,0.271400,-0.248200 -0.264300,0.108000,0.695200,-0.230300,0.384800,0.893800 -0.684600,0.256600,-0.342000,-0.842300,0.263000,-0.470500 -0.775500,0.025170,-0.342200,-0.836700,0.286100,-0.467000 0.801500,0.080780,-0.059280,-0.613500,0.326000,-0.719300 0.574100,0.523200,-0.068820,0.151900,-0.297400,-0.942600 0.282900,-0.359700,0.645900,0.507300,-0.151900,0.848300 -0.495300,0.261400,-0.540300,-0.494600,0.263300,-0.828300 -0.595200,0.327400,-0.431000,-0.701700,0.206100,-0.682000 -0.367200,0.196300,-0.631000,-0.262800,0.304200,-0.915600 0.221300,-0.434200,0.665100,0.493800,-0.191300,0.848300 -0.378900,-0.113700,-0.722800,-0.273000,0.126500,-0.953700 -0.725400,0.453600,-0.141600,-0.962300,0.123000,-0.242700 -0.266500,0.256800,-0.640700,-0.266100,0.266400,-0.926400 -0.588700,-0.498300,0.310300,-0.312400,-0.932400,0.181600 0.825000,0.175900,-0.031150,-0.894600,0.278000,-0.350000 0.205800,-0.497700,-0.453600,0.207500,-0.927200,-0.311900 -0.379900,-0.002270,0.704300,-0.230100,0.302500,0.925000 0.581200,0.028060,-0.205500,0.934500,0.277400,-0.223000 -0.436600,0.211700,-0.592200,-0.489100,0.299100,-0.819300 0.029520,-0.521400,-0.701400,0.228700,-0.350600,-0.908200 -0.726200,0.444300,-0.143100,-0.960600,0.131300,-0.245000 -0.297200,0.191700,-0.652300,-0.263600,0.315200,-0.911700 0.281700,-0.369100,0.645000,0.509100,-0.115800,0.852900 -0.038390,0.698000,-0.491000,-0.153500,0.704400,0.693000 -0.279500,0.239300,0.644500,-0.248400,0.279100,0.927600 -0.297200,0.292800,-0.622200,-0.269100,0.234600,-0.934100 0.420800,0.662800,-0.269400,0.846400,0.181100,-0.500800 0.580100,0.017600,-0.220200,0.917400,0.282500,-0.280200 0.622300,-0.300000,0.188000,0.963100,-0.112200,0.244600 -0.665100,-0.004815,-0.510900,-0.693100,0.256800,-0.673600 0.271800,-0.464000,0.625200,0.499400,-0.272000,0.822500 -0.686000,0.201700,-0.372900,-0.830800,0.302400,-0.467200 0.570200,-0.528600,0.176200,0.922500,-0.323800,0.210100 0.327900,-0.541200,-0.551600,0.648100,-0.420100,-0.635200 -0.350200,-0.061670,0.726200,-0.215300,0.217600,0.952000 0.180900,-0.448600,0.684900,0.460200,-0.281900,0.841800 -0.716100,0.408700,-0.203500,-0.956600,0.157200,-0.245400 0.372000,-0.494400,0.536500,0.670800,-0.363400,0.646500 0.353300,0.708600,-0.321300,0.422300,0.867500,-0.263000 0.350900,-0.518600,0.545600,0.675100,-0.314900,0.667100 -0.028670,-0.102200,-0.763100,0.164700,0.173500,-0.971000 -0.695700,0.418600,-0.252000,-0.865000,0.141600,-0.481400 -0.665900,0.464900,-0.293000,-0.866400,0.116100,-0.485700 -0.517100,0.141000,-0.572200,-0.480700,0.357100,-0.800900 0.583100,0.525300,-0.068160,0.178200,-0.351000,-0.919300 -0.412800,0.167800,0.623600,-0.438100,0.324100,0.838500 0.550400,0.047620,-0.290200,0.837500,0.324100,-0.439900 0.174900,-0.502000,-0.663500,0.452000,-0.339700,-0.824800 -0.535600,0.529900,-0.451800,-0.715900,0.059000,-0.695700 -0.694600,-0.540900,-0.214100,0.925100,-0.130300,0.356700 -0.414800,0.103900,-0.650100,-0.458000,0.361400,-0.812200 -0.438200,-0.538800,0.264600,-0.119200,-0.985400,0.121800 0.510800,0.158400,-0.274800,0.852300,0.341400,-0.396300 0.853000,0.498400,-0.042840,0.705600,0.540800,-0.457900 ================================================ FILE: visualization/table_0250.txt ================================================ -0.007806,0.454500,0.219200,0.000000,-1.000000,0.000000 0.409800,-0.665000,-0.622300,0.188600,-0.637800,-0.746700 -0.423300,-0.665800,0.613400,0.400700,-0.807400,-0.433000 0.524400,0.472200,-0.708700,0.507100,0.525800,-0.682900 -0.526000,0.469600,-0.703600,-0.951300,0.304600,-0.047170 0.390900,-0.291900,0.521500,-0.999200,-0.028140,-0.028240 -0.394500,-0.367000,-0.511200,-0.959300,0.040880,0.279300 0.526500,0.456700,0.708600,0.518600,-0.762200,0.387400 -0.522700,0.469200,0.710400,-0.312700,0.366700,0.876200 0.523400,0.454800,-0.093930,0.261000,-0.965300,0.000000 0.330100,-0.072430,-0.533600,0.853500,-0.159300,-0.496200 -0.518800,0.482300,-0.101800,-0.764200,0.645000,0.000273 -0.368100,-0.077230,0.510300,0.084490,0.126700,-0.988300 0.007853,0.454500,-0.391400,0.000000,-1.000000,0.000000 0.031340,0.457400,0.710100,0.000000,-0.675200,0.737600 -0.364800,0.084940,-0.524000,0.457700,0.039110,0.888300 0.394800,0.320900,0.310000,0.803500,-0.496600,-0.328300 -0.414900,0.496600,0.305400,0.000000,1.000000,0.000000 0.364600,0.099590,0.634700,-0.103000,-0.142300,0.984500 0.399100,-0.661500,0.622200,0.031650,-0.336200,0.941200 0.354800,0.298700,-0.414900,-1.000000,0.000000,0.000000 -0.250500,0.269800,0.555900,0.000000,-0.999900,-0.014990 -0.156600,0.469700,-0.710600,0.000000,0.318500,-0.947900 -0.172200,0.454500,-0.093930,0.000000,-1.000000,0.000000 -0.336600,0.454500,-0.414900,-0.004194,-1.000000,0.000000 0.164400,0.496600,-0.070440,0.000000,1.000000,0.000000 0.182700,0.457600,-0.710300,0.000000,-0.675700,-0.737200 -0.314000,-0.382600,0.540300,-0.984700,0.159400,0.069920 0.316300,-0.383300,-0.523800,0.938300,0.177000,-0.297000 -0.371100,-0.661900,-0.602100,0.954900,-0.264400,-0.134800 0.187900,0.496600,0.446300,0.000000,1.000000,0.000000 -0.109600,0.496600,0.477600,0.000000,1.000000,0.000000 0.424600,0.158400,-0.629600,-0.540900,-0.020590,0.840800 -0.355000,0.384800,0.078290,0.999600,-0.019050,-0.022460 -0.266200,0.475600,0.708100,0.000240,0.438200,0.898900 0.516000,0.485300,-0.349700,0.686200,0.727400,-0.000031 0.242700,0.495600,0.172300,0.000000,1.000000,0.000000 -0.338000,0.314300,-0.630100,0.183400,0.014290,-0.982900 0.312400,0.345700,0.605200,-0.974100,-0.000005,0.226000 0.516000,0.485300,0.456700,0.709800,0.704400,0.000000 0.516300,0.485000,0.151400,0.701800,0.712400,-0.000010 0.258400,0.496600,-0.305300,0.000000,1.000000,0.000000 -0.438900,0.126800,0.620500,-0.809800,-0.015790,0.586400 -0.319300,-0.147800,-0.575400,0.937300,0.037260,-0.346600 -0.357900,0.352200,-0.200600,0.227500,-0.926000,0.301300 0.336700,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.441000,0.386800,0.517300,0.948100,-0.000040,0.317900 0.339800,-0.084910,0.514700,-0.600300,0.184500,-0.778200 0.174400,0.325400,-0.543200,-0.447700,-0.583400,0.677600 0.361200,0.373500,0.047160,-0.119200,-0.992300,-0.033960 -0.203500,0.496600,0.281900,0.000000,1.000000,0.000000 -0.134600,0.347100,-0.542200,0.342200,-0.682900,0.645400 -0.516000,0.485300,-0.313200,-0.675200,0.737600,-0.001205 -0.172200,0.496600,-0.297500,0.000000,1.000000,0.000000 0.361100,0.351400,-0.204800,-0.086890,-0.976000,0.199500 0.335800,-0.487400,0.529500,-0.897900,-0.257100,-0.357300 0.007851,0.496600,-0.595000,0.000000,1.000000,0.000000 0.007851,0.496600,-0.195700,0.000000,1.000000,0.000000 -0.368000,0.302400,0.353700,0.008016,-0.921100,-0.389200 -0.527200,0.457300,0.143600,-0.848000,-0.530000,0.000000 0.120300,0.351200,0.557800,-0.354900,-0.934900,-0.000778 -0.524400,0.473700,-0.508900,-0.908400,0.418000,0.000000 0.450700,0.228200,0.518800,0.876800,-0.055050,-0.477800 -0.383600,0.269800,-0.446300,-0.016850,-0.999900,0.000000 -0.015640,0.496600,0.031340,0.000000,1.000000,0.000000 0.344400,0.337800,-0.633200,0.040130,-0.003473,0.999200 0.211400,0.496600,0.665400,0.000000,0.999900,0.015990 -0.313200,0.496600,-0.602800,0.000000,1.000000,0.000000 0.336700,0.495600,0.328800,0.000000,1.000000,0.000000 -0.281800,0.454500,0.446300,0.000000,-1.000000,0.000000 -0.180100,0.454500,0.086150,0.000000,-1.000000,0.000000 0.524600,0.472600,-0.527200,0.908900,0.417100,0.000020 0.352300,0.496600,-0.093930,0.000000,1.000000,0.000000 0.360200,0.496600,0.532400,0.000000,1.000000,0.000000 0.164400,0.496600,-0.516700,0.000000,1.000000,0.000000 0.031340,0.454500,0.391500,0.000000,-1.000000,0.000000 -0.336600,0.495600,-0.109600,0.000000,1.000000,0.000000 -0.187900,0.496600,-0.485400,0.000000,1.000000,0.000000 0.412500,-0.521200,-0.533200,0.798600,0.069760,0.597800 -0.405700,-0.523200,0.527500,-0.432900,-0.104900,-0.895300 -0.318800,-0.220300,0.579400,0.423300,-0.081620,0.902300 0.394100,-0.225300,-0.524500,0.993600,-0.112400,0.006859 -0.086410,0.363100,0.571500,0.258800,-0.965600,0.023740 0.047000,0.496600,0.548100,0.000000,1.000000,0.000000 -0.335200,-0.503100,-0.574900,0.972400,-0.166500,-0.163600 -0.454300,0.207400,-0.577200,0.996700,0.010360,0.080360 0.360200,0.480400,-0.705000,0.000000,0.590600,-0.807000 0.368000,0.462600,0.712200,0.000000,-0.040070,0.999200 -0.409400,0.283000,0.627700,0.333500,-0.111200,-0.936200 0.148800,0.496600,0.297500,0.000000,1.000000,0.000000 -0.527200,0.457300,0.401900,-0.847700,-0.530500,0.000000 -0.118100,0.495800,0.679000,0.000000,0.990100,0.140600 0.438000,0.033990,-0.542300,-0.967900,0.110600,-0.225800 0.446200,0.280300,-0.533700,-0.994400,-0.085380,-0.062550 0.477600,0.454500,0.297500,0.000000,-1.000000,0.000000 -0.428300,-0.045400,-0.563200,-0.962300,-0.228600,-0.147700 0.449500,0.377000,0.547600,0.995500,0.014270,0.093590 -0.397000,0.361300,0.219200,-1.000000,-0.005248,-0.000446 -0.336600,0.495600,-0.258400,0.000000,1.000000,0.000000 0.125300,0.495600,0.078310,0.000000,1.000000,0.000000 0.429500,0.032560,0.519300,0.336700,-0.012730,-0.941500 -0.336600,0.496600,0.172300,0.000000,1.000000,0.000000 0.446300,0.496600,-0.211400,0.000000,1.000000,0.000000 -0.383600,0.496600,0.595100,0.000000,1.000000,0.000000 0.117500,0.454500,-0.281800,0.000000,-1.000000,0.000000 0.354800,0.400500,0.187900,-1.000000,0.000000,0.000000 -0.367400,0.196100,0.519000,-0.153200,0.136000,0.978800 -0.360900,0.009645,0.626000,0.033720,-0.227100,0.973300 -0.430600,0.496600,0.039170,0.000000,1.000000,0.000000 -0.430400,0.421300,-0.610600,-0.704100,-0.000553,-0.710100 -0.395100,0.374200,-0.068000,-0.658400,-0.751900,0.034620 0.396800,0.416100,-0.321000,0.999900,-0.007117,-0.007109 -0.281800,0.400500,0.580600,-0.000877,0.000021,1.000000 0.354800,0.306500,0.462000,-1.000000,0.000000,0.000000 0.338100,0.197800,-0.528500,-0.713700,-0.229600,0.661700 0.469800,0.495600,0.023500,-0.021260,0.999800,0.000000 0.250600,0.495600,0.031330,0.000000,1.000000,0.000000 -0.086100,0.496600,0.344500,0.000000,1.000000,0.000000 -0.243500,0.270000,-0.548000,0.089780,-0.987900,0.126100 -0.385000,-0.233900,-0.498700,0.626000,-0.006757,-0.779800 0.250600,0.454500,-0.180100,0.000000,-1.000000,0.000000 -0.354800,0.337800,-0.336600,1.000000,0.000000,0.000000 0.492300,0.496100,0.587200,0.075270,0.997200,0.000000 0.047000,0.384800,-0.539500,-0.002075,0.007594,1.000000 -0.297500,0.496600,0.047000,0.000000,1.000000,0.000000 -0.333800,0.181800,-0.616800,0.963300,-0.099970,-0.249000 0.258400,0.454500,-0.430600,0.000000,-1.000000,0.000000 0.341900,0.051210,-0.626900,-0.525900,-0.103100,-0.844300 -0.519300,0.481700,0.555900,-0.782500,0.622700,0.000044 0.329700,0.224300,0.560700,0.981400,0.163100,0.101300 -0.321100,0.374400,-0.518400,-0.947800,-0.000011,-0.318800 0.432400,0.431800,-0.605800,0.840000,-0.013480,-0.542500 0.321900,-0.194200,0.576600,-0.530300,-0.068740,0.845000 0.250600,0.424000,-0.581600,0.000000,0.000000,-1.000000 -0.195700,0.496600,0.579400,0.000000,1.000000,0.000000 -0.431100,0.037870,0.525400,-0.499700,-0.028700,-0.865700 0.031340,0.462800,-0.712300,0.000000,-0.027170,-0.999600 -0.117400,0.496600,-0.587200,0.000000,1.000000,0.000000 -0.031290,0.454500,-0.086100,0.000000,-1.000000,0.000000 0.401300,0.395200,-0.491900,0.710400,0.000030,0.703800 0.234900,0.416100,0.539500,0.000000,0.000000,-1.000000 0.356700,0.373200,-0.083710,-0.716500,-0.695200,0.057880 -0.527200,0.457300,0.276700,-0.847900,-0.530200,-0.000003 0.432000,-0.566000,0.553300,0.972800,0.212700,-0.091420 -0.397000,0.431800,0.407100,-1.000000,0.000320,0.000000 0.396600,0.423900,0.407100,0.999600,-0.028540,0.003555 0.417100,0.278600,0.626000,0.418300,0.125600,0.899600 -0.391400,0.457400,0.710100,0.000000,-0.675200,0.737600 0.221300,0.285300,0.545200,-0.685400,-0.709300,-0.164300 -0.445800,0.353500,-0.508000,-0.878000,-0.000009,0.478700 -0.375800,0.480400,-0.704900,0.000348,0.594000,-0.804400 0.360200,-0.021570,0.615000,-0.029050,-0.170400,0.984900 -0.227000,0.416100,-0.581600,0.000000,0.000000,-1.000000 0.141000,0.496600,-0.391400,0.000000,1.000000,0.000000 -0.305300,0.454500,0.328900,0.000000,-1.000000,0.000000 -0.354800,0.314300,0.477600,1.000000,0.000000,0.001093 0.399300,0.496600,-0.422800,0.000000,1.000000,0.000000 -0.446300,0.495600,-0.211400,0.000000,1.000000,0.000000 -0.334700,0.183400,0.633900,0.632000,-0.018450,0.774800 -0.062610,0.496600,-0.477600,0.000000,1.000000,0.000000 0.316600,-0.374400,0.562400,-0.939100,-0.080780,0.334000 0.399300,0.495600,0.117500,0.000000,1.000000,0.000000 -0.454100,0.454500,-0.407100,0.000000,-1.000000,0.000000 -0.313600,-0.296300,-0.564100,0.860300,-0.023050,-0.509300 -0.425100,0.067300,-0.619600,-0.537200,-0.174500,-0.825200 -0.399300,0.495600,-0.501100,0.000000,1.000000,0.000000 -0.360800,-0.288900,0.495600,0.082750,0.021280,0.996300 -0.422500,-0.562500,-0.533600,-0.566600,-0.062920,0.821600 -0.180100,0.454500,0.391500,0.000000,-1.000000,0.000000 -0.109600,0.454500,-0.187900,0.000000,-1.000000,0.000000 -0.109600,0.496600,0.195800,0.000000,1.000000,0.000000 0.109600,0.454500,-0.618500,0.000000,-1.000000,0.000000 -0.219200,0.495600,-0.195700,0.000000,1.000000,0.000000 0.101800,0.496600,0.187900,0.000000,1.000000,0.000000 0.383900,0.134700,0.519700,-0.094350,-0.102800,-0.990200 -0.356400,-0.573300,0.613500,0.525400,0.061280,0.848700 -0.117400,0.454500,-0.391400,0.000000,-1.000000,0.000000 -0.413600,0.393300,0.623300,-0.536700,0.003613,0.843800 0.317100,0.306500,-0.531800,0.996100,-0.000027,-0.088420 -0.336700,0.094910,0.561900,0.995100,0.025370,-0.095380 -0.031290,0.454500,-0.289700,0.000000,-1.000000,0.000000 0.316700,-0.286800,-0.574400,-0.418500,0.000167,-0.908200 0.062660,0.454500,-0.031290,0.000000,-1.000000,0.000000 -0.039120,0.454500,0.618500,0.000000,-1.000000,0.000000 -0.263600,0.457600,-0.710300,0.000000,-0.675700,-0.737200 0.133100,0.454500,-0.164400,0.000000,-1.000000,0.000000 -0.337500,0.009127,-0.599500,-0.952300,-0.054890,0.300100 0.344000,0.228400,-0.637200,0.261300,0.024950,0.964900 0.445700,0.168500,-0.525200,0.727800,-0.079690,0.681100 0.023510,0.392600,0.539500,0.000000,0.000000,-1.000000 -0.446300,0.496600,0.203600,0.000000,1.000000,0.000000 0.342200,-0.471100,-0.594400,-0.260300,0.204200,-0.943700 -0.399200,-0.179900,0.523900,-0.989900,-0.125500,-0.066090 -0.369000,0.189800,-0.514300,0.152000,-0.128200,0.980000 -0.109600,0.454500,0.007854,0.000000,-1.000000,0.000000 -0.258300,0.454500,-0.344500,0.000000,-1.000000,0.000000 0.397800,-0.186900,0.504000,0.848200,-0.087980,-0.522300 0.449200,0.155100,0.606900,0.883200,0.011870,0.468800 0.133100,0.454500,0.610700,0.000000,-1.000000,0.000000 0.399300,0.495600,0.242700,0.000000,1.000000,0.000000 -0.070440,0.454500,0.109600,0.000000,-1.000000,0.000000 -0.438400,0.496600,0.493300,0.000000,1.000000,0.000000 0.297500,0.454500,0.415000,0.000000,-1.000000,0.000000 0.391500,-0.038770,-0.608900,-0.367300,0.269600,0.890100 0.329700,0.400500,0.503400,-0.366200,-0.000535,-0.930500 0.394900,0.412800,0.626600,0.149000,-0.000012,0.988800 -0.400000,-0.132700,-0.502600,-0.530000,0.045580,0.846800 0.350400,0.452200,-0.237500,-0.613500,-0.789700,0.000000 0.360200,0.495600,0.007861,0.000000,0.999800,0.021220 -0.297500,0.496600,0.540300,0.000000,1.000000,0.000000 -0.326200,-0.114300,0.595500,0.471200,-0.141600,0.870600 -0.297500,0.496600,-0.501100,0.000000,1.000000,0.000000 -0.523400,0.454800,0.039160,-0.261200,-0.965300,0.000000 -0.187900,0.361300,0.581300,-0.003572,0.039050,0.999200 0.351300,-0.584300,-0.584400,0.971500,0.229600,-0.059300 -0.437100,0.304500,-0.599900,0.847700,-0.128500,0.514700 0.322500,-0.186600,-0.584200,-0.377100,-0.085630,-0.922200 -0.329300,-0.478500,0.575400,-0.908300,0.285500,-0.305800 -0.414900,0.495600,-0.321000,0.000000,1.000000,0.000000 0.023510,0.496600,0.125300,0.000000,1.000000,0.000000 0.266200,0.496400,-0.672800,0.000000,0.998300,-0.058930 0.047000,0.496600,0.289700,0.000000,1.000000,0.000000 -0.274000,0.454500,-0.039120,0.000000,-1.000000,0.000000 -0.234900,0.496600,0.156600,0.000000,1.000000,0.000000 0.234900,0.454500,0.321000,0.000000,-1.000000,0.000000 -0.441700,0.283100,0.511600,-0.900200,-0.000788,-0.435500 -0.046950,0.416100,-0.581600,0.000000,0.000000,-1.000000 -0.317300,0.316900,0.623000,-0.741100,0.000353,-0.671400 0.400100,-0.401500,0.518900,0.986300,0.106300,-0.126100 0.351700,0.079290,-0.533000,-0.600300,0.037950,0.798900 -0.340800,-0.056500,-0.520900,0.670500,0.172600,0.721600 -0.062620,0.490500,-0.693700,-0.000025,0.865100,-0.501600 -0.329000,-0.406200,-0.577200,0.530400,0.051680,-0.846200 0.101800,0.454500,0.462000,0.000000,-1.000000,0.000000 0.297400,0.454500,0.602900,-0.135300,-0.990600,0.022060 0.426000,-0.060430,0.555400,0.970700,-0.223300,0.088640 0.031340,0.496600,-0.501100,0.000000,1.000000,0.000000 0.313200,0.454500,0.101800,0.000000,-1.000000,0.000000 0.266200,0.454500,-0.054780,0.000000,-1.000000,0.000000 0.384200,0.322000,-0.303000,0.019870,-0.933700,0.357500 0.400300,-0.130700,-0.574200,0.835200,-0.235100,-0.497200 0.396000,0.431800,-0.156600,1.000000,0.000449,0.000000 -0.451100,0.204700,0.564000,0.998800,-0.001270,-0.048110 0.062660,0.496600,-0.117400,0.000000,1.000000,0.000000 -0.397000,0.408300,-0.289700,-1.000000,0.000000,0.000000 -0.438400,0.454500,-0.046950,0.000000,-1.000000,0.000000 0.501100,0.454500,-0.438400,0.000000,-1.000000,0.000000 -0.388000,-0.460300,-0.508100,-0.202300,-0.112300,0.972900 0.348300,-0.554200,0.593700,-0.946600,-0.130100,0.295000 0.342900,0.050900,0.548800,0.950700,-0.031100,0.308500 -0.397000,0.384800,0.321000,-1.000000,0.000000,0.000000 0.397200,-0.428700,-0.531700,-0.982600,-0.132400,-0.129900 0.374500,-0.311800,-0.497100,0.292400,-0.043070,0.955300 0.396800,0.408300,0.274000,0.999800,-0.014180,-0.014260 -0.327400,0.408300,-0.626400,0.404500,-0.000017,-0.914500 0.141000,0.457400,0.710100,0.000000,-0.675200,0.737600 0.297500,0.454500,0.234900,0.000000,-1.000000,0.000000 -0.355500,0.439500,-0.000027,0.996600,-0.072320,-0.039010 0.344500,0.496600,-0.336600,0.000000,1.000000,0.000000 0.430600,0.496600,-0.508900,0.000000,1.000000,0.000000 0.243500,0.269900,-0.571500,-0.089660,-0.995800,-0.019320 -0.393300,-0.419200,0.513900,-0.828800,0.024510,-0.559000 -0.343600,0.416800,0.501300,0.322700,0.000014,-0.946500 -0.397000,0.423900,0.148800,-1.000000,0.000000,0.000000 0.523400,0.454800,-0.234900,0.261000,-0.965300,0.000000 0.446300,0.496600,-0.070440,0.000000,1.000000,0.000000 -0.219200,0.496600,-0.642000,0.000000,1.000000,0.000000 0.318200,0.408300,-0.524000,0.980200,-0.000016,-0.197900 0.429100,0.036080,0.609300,0.689000,-0.193400,0.698500 -0.187900,0.496000,-0.007861,-0.000000,0.999100,-0.042550 0.195800,0.496600,0.548100,0.000000,1.000000,0.000000 -0.461900,0.495600,-0.571500,-0.000064,1.000000,0.000000 -0.407600,-0.072080,0.590600,-0.731800,-0.294600,0.614600 -0.148700,0.431800,0.539500,0.000000,0.000000,-1.000000 0.344500,0.496600,-0.618500,0.000000,1.000000,0.000000 0.415200,-0.050440,-0.517400,0.584600,-0.007016,0.811300 -0.414900,0.454500,-0.133100,0.003810,-1.000000,0.000000 0.187900,0.496600,-0.602800,0.000000,1.000000,0.000000 0.141000,0.454500,0.375800,0.000000,-1.000000,0.000000 0.354800,0.408300,-0.399300,-1.000000,0.000000,0.000000 0.427600,0.274600,-0.620600,0.672600,0.134400,-0.727700 0.093980,0.454500,-0.454100,0.000000,-1.000000,0.000000 0.332800,0.142500,-0.617400,-0.975400,-0.107200,-0.192400 0.438500,0.496600,0.657700,0.000000,1.000000,0.000258 -0.031290,0.454500,0.454100,0.000000,-1.000000,0.000000 0.426200,-0.619100,-0.548500,0.311000,-0.134500,0.940800 0.376500,-0.125800,0.588900,-0.226200,0.216600,-0.949700 -0.281800,0.454500,0.227100,0.000000,-1.000000,0.000000 0.438500,0.454500,0.485300,0.031090,-0.989900,-0.138400 -0.397000,0.353500,-0.422800,-1.000000,0.000000,0.000000 0.047000,0.496600,-0.313200,0.000000,1.000000,0.000000 -0.438300,0.036740,-0.523500,-0.652600,-0.110600,0.749600 0.172300,0.454500,0.219200,0.000000,-1.000000,0.000000 0.337700,-0.155900,-0.503300,-0.303800,0.157100,0.939700 -0.211400,0.496600,0.477600,0.000000,1.000000,0.000000 0.430600,0.496600,-0.297500,0.000000,1.000000,0.000000 -0.305300,0.454500,-0.187900,0.000000,-1.000000,0.000000 -0.325600,0.267600,-0.511300,0.830800,-0.327100,0.450300 -0.399400,-0.608600,0.543600,0.053780,-0.246100,-0.967800 0.324200,-0.242100,0.497300,-0.534500,0.099210,-0.839300 0.274100,0.457400,0.710100,0.000000,-0.675200,0.737600 -0.339900,0.000384,0.535500,0.781500,0.180600,-0.597200 -0.305300,0.496600,0.634200,0.000000,1.000000,0.000000 -0.343600,0.094920,-0.618200,-0.902900,0.047280,0.427200 -0.454900,0.126400,-0.548200,0.996800,0.038640,-0.069300 -0.383700,-0.566500,-0.610200,0.009197,-0.235100,0.971900 -0.336700,-0.304200,0.578400,-0.008613,0.029080,0.999500 -0.446300,0.496600,0.657700,0.000000,1.000000,0.000258 -0.354800,0.423900,0.258400,1.000000,-0.007097,0.003549 -0.454100,0.496600,0.383700,0.000000,1.000000,0.000000 -0.526400,0.468500,-0.203600,-0.954200,0.299200,-0.000177 0.156600,0.408300,-0.539500,0.000000,0.000000,1.000000 -0.442500,-0.647100,-0.558700,-0.836300,-0.306600,0.454600 -0.411400,0.152500,-0.634600,-0.205600,0.008244,-0.978600 -0.350600,-0.074420,-0.604300,0.100900,-0.197500,-0.975100 0.492100,0.495800,-0.634200,0.128800,0.991700,-0.000076 0.415000,0.495600,0.360200,0.000000,1.000000,0.000000 -0.109600,0.496600,0.595100,0.000000,1.000000,0.000000 -0.227000,0.454500,-0.422800,0.000000,-1.000000,0.000000 -0.451000,0.267400,-0.518400,-0.931000,0.015550,0.364700 0.519300,0.481200,0.365400,0.817400,0.576000,-0.000023 0.180100,0.496600,-0.219200,0.000000,1.000000,0.000000 0.180100,0.454500,0.125300,0.000000,-1.000000,0.000000 0.435800,0.314300,0.495600,0.405600,-0.000842,-0.914100 0.320400,-0.280600,0.570200,-0.504700,-0.015010,0.863200 -0.448800,0.127500,0.535100,-0.919900,-0.051950,-0.388600 0.156600,0.454500,0.000024,0.000000,-1.000000,0.000000 0.454100,0.454500,0.195800,0.000000,-1.000000,0.000000 0.054830,0.496600,0.642000,0.000000,1.000000,0.000000 -0.315100,-0.155800,0.525700,0.945100,0.153600,-0.288500 -0.366700,-0.217700,-0.576700,-0.272800,-0.128800,-0.953400 -0.336600,0.496600,0.391500,0.000000,1.000000,0.000000 0.321900,0.418700,-0.626900,0.493100,-0.006639,0.869900 -0.402700,0.233800,-0.634500,-0.167000,0.111900,-0.979600 0.376600,-0.625700,0.550500,-0.526700,-0.320500,-0.787300 0.343400,0.189200,0.632900,-0.483400,-0.038990,0.874500 -0.109600,0.495600,-0.062620,0.000000,1.000000,0.000000 -0.187900,0.454500,0.681200,0.000000,-1.000000,0.000000 0.311100,-0.234100,-0.513000,-0.906900,0.087360,0.412100 -0.453400,0.495800,-0.679000,0.000000,0.990000,-0.141400 -0.046950,0.439600,0.539500,0.000000,0.003618,-1.000000 0.289700,0.496600,0.493300,0.000000,1.000000,0.000000 -0.391400,0.496600,0.109600,0.000000,1.000000,0.000000 0.432900,0.079570,-0.616300,0.771000,-0.166600,-0.614700 0.354800,0.369100,0.360200,-1.000000,0.000000,0.000000 0.258400,0.496600,-0.540200,0.000000,1.000000,0.000000 0.410800,-0.477600,0.555000,0.965300,0.205800,0.160800 0.336700,0.496600,-0.172200,0.000000,1.000000,0.000000 -0.039130,0.490500,0.693600,0.000036,0.866800,0.498600 0.315200,0.314300,0.532600,-0.898400,-0.000020,-0.439100 0.445600,0.361300,-0.548000,0.997800,-0.000020,-0.065850 -0.314900,-0.202600,-0.517700,0.953900,0.068280,0.292100 -0.180100,0.454500,0.219200,0.000000,-1.000000,0.000000 0.389900,0.366400,0.125800,0.149600,-0.982700,-0.109500 -0.093930,0.496600,-0.266200,0.000000,1.000000,0.000000 0.148800,0.424000,0.539500,0.000000,0.000000,-1.000000 -0.062610,0.454500,0.281900,0.000000,-1.000000,0.000000 0.438500,0.487500,-0.698000,0.000000,0.790900,-0.611900 0.180100,0.496600,-0.313200,0.000000,1.000000,0.000000 0.455100,0.107400,0.544700,0.979500,-0.130100,-0.153800 0.324600,-0.326700,0.497900,-0.486200,-0.063540,-0.871500 -0.242700,0.454500,-0.258300,0.000000,-1.000000,0.000000 -0.418100,0.204700,0.635100,-0.429200,0.021810,0.902900 0.396500,0.377000,0.469800,0.999100,-0.003503,0.042170 0.337700,0.275300,0.628300,0.353300,-0.015940,-0.935400 0.526100,0.468400,0.227100,0.937200,0.348800,0.000080 0.430500,0.454500,0.563700,-0.106400,-0.994000,-0.026100 0.093980,0.454600,-0.532200,0.000000,-0.984500,0.175500 -0.339900,-0.314400,-0.492700,0.114000,-0.065470,0.991300 -0.508900,0.454500,0.477600,0.000000,-1.000000,0.000000 0.377300,-0.358700,-0.565100,-0.731700,-0.046120,0.680100 0.390600,0.270100,-0.477600,0.175300,-0.984500,-0.000262 0.250600,0.345600,-0.540000,0.049760,-0.035500,0.998100 -0.227000,0.337800,-0.581600,0.000000,0.000000,-1.000000 -0.429900,0.035790,0.602700,0.849100,0.184600,-0.494900 -0.442500,0.431800,-0.506700,0.797200,0.000398,-0.603700 0.195800,0.496600,-0.140900,0.000000,1.000000,0.000000 -0.360500,0.111000,0.640300,0.152400,-0.118400,0.981200 -0.317000,0.337800,0.540100,-0.999500,0.000000,-0.031610 0.331300,0.000815,-0.556100,-0.984100,0.121200,0.130000 -0.355300,0.408300,-0.148700,0.999300,0.035450,0.014150 -0.227000,0.439600,0.539500,0.000000,0.003617,-1.000000 0.396000,0.431800,-0.054790,1.000000,0.000449,0.000000 -0.336000,0.416100,0.631500,-0.186600,0.000000,-0.982400 -0.289700,0.454500,0.125300,0.000000,-1.000000,0.000000 -0.101800,0.454500,0.415000,0.000000,-1.000000,0.000000 -0.454100,0.454500,0.595100,-0.066470,-0.997200,0.033440 0.527200,0.457300,0.054820,0.849200,-0.528100,0.000000 -0.325700,0.259100,0.523900,-0.871100,0.315300,0.376500 0.396500,0.314300,0.399300,0.998500,-0.024800,0.049600 -0.527200,0.457300,-0.388800,-0.848400,-0.529400,0.000000 -0.321000,0.495600,-0.352300,0.000000,1.000000,0.000000 0.062660,0.454500,0.070490,0.000000,-1.000000,0.000000 -0.354800,0.353500,0.407100,1.000000,-0.003544,0.007088 -0.148700,0.447200,-0.540200,0.000000,-0.229600,0.973300 -0.375800,0.454500,-0.571500,0.000000,-1.000000,0.000000 -0.512000,0.488500,-0.626300,-0.570700,0.821200,0.000000 -0.516000,0.485300,0.634200,-0.686400,0.727200,0.000000 0.368000,0.340900,0.243600,-0.016180,-0.959400,-0.281500 -0.397000,0.431800,-0.219200,-1.000000,0.000320,0.000000 0.093970,0.496600,-0.211400,0.000000,1.000000,0.000000 0.180100,0.454500,-0.438400,0.000000,-1.000000,0.000000 0.326400,-0.112500,-0.595800,-0.522500,-0.087750,-0.848100 0.451200,0.212500,-0.586700,0.988800,0.013990,-0.148600 -0.375800,0.496600,0.234900,0.000000,1.000000,0.000000 -0.258400,0.495600,-0.133100,0.000000,1.000000,0.000000 0.353800,0.447200,-0.469700,-0.942900,-0.333000,0.000000 -0.408700,-0.497900,-0.573100,0.889300,-0.260100,0.376200 -0.390600,0.375200,0.007896,-0.077130,-0.996700,-0.027100 0.346700,-0.490700,-0.521200,-0.302400,-0.272500,0.913400 -0.387000,-0.351400,0.553600,-0.935900,0.042830,0.349600 -0.357100,0.334500,0.274500,0.787700,-0.596000,-0.156100 -0.320400,0.247400,-0.587300,0.976800,-0.214300,0.005107 0.462000,0.454500,-0.133100,0.000000,-1.000000,0.000000 0.382400,-0.231800,0.561700,-0.720400,0.158400,-0.675300 0.366200,-0.424000,0.580500,-0.157400,-0.157500,-0.974900 0.446300,0.454500,0.078320,0.000000,-1.000000,0.000000 0.078310,0.416100,0.580600,-0.003514,0.006979,1.000000 0.397000,0.431800,0.023490,1.000000,0.000320,0.000000 0.383700,0.495600,0.461900,0.000000,1.000000,0.000000 -0.393300,-0.146700,-0.573300,0.706600,0.253100,0.660700 0.420400,0.361300,-0.616500,-0.665300,-0.001793,0.746500 0.375700,-0.022170,0.515400,0.083200,-0.117900,0.989500 -0.397000,0.392600,-0.360200,-1.000000,0.000000,0.000000 0.297500,0.454500,-0.125200,0.000000,-1.000000,0.000000 0.375800,0.496600,0.602900,0.000000,1.000000,0.000000 -0.461900,0.496600,0.133100,0.000000,1.000000,0.000000 0.462000,0.454500,0.407200,0.000000,-1.000000,0.000000 0.410600,-0.115800,0.511700,0.884400,-0.134000,-0.447000 -0.046950,0.496600,-0.148700,0.000000,1.000000,0.000000 0.352300,0.495600,0.172300,0.000000,1.000000,0.000000 -0.015640,0.496600,0.328900,0.000000,1.000000,0.000000 -0.266200,0.496600,0.375800,0.000000,1.000000,0.000000 0.211400,0.454500,0.391500,0.000000,-1.000000,0.000000 -0.078270,0.496600,-0.336600,0.000000,1.000000,0.000000 -0.383300,-0.252700,0.559300,-0.842000,-0.155000,0.516700 0.508900,0.454500,-0.023460,0.000000,-1.000000,0.000000 0.187900,0.345700,0.581600,0.000000,0.000000,1.000000 -0.440500,0.322200,0.571800,0.991600,-0.028650,-0.125800 -0.492200,0.495800,-0.023480,-0.103400,0.994600,-0.000057 -0.383900,-0.305200,-0.554500,0.802400,-0.025560,0.596300 -0.377800,-0.616800,-0.546500,0.383200,-0.303900,0.872200 -0.318500,0.251100,0.595100,-0.978800,0.203400,-0.025930 0.446300,0.496600,-0.579400,0.000000,1.000000,0.000000 0.101800,0.454800,-0.704900,0.000000,-0.974500,-0.224400 0.527900,0.462100,-0.164400,0.996300,0.085940,0.000078 -0.344500,0.496600,0.462000,0.000000,1.000000,0.000000 -0.046950,0.496600,-0.407100,0.000000,1.000000,0.000000 -0.399300,0.454500,0.540300,0.000000,-1.000000,0.000000 0.117500,0.496600,0.516800,0.000000,1.000000,0.000000 0.446500,-0.637000,0.575600,-0.969100,0.242800,0.042990 -0.187900,0.454500,-0.352300,0.000000,-1.000000,0.000000 -0.394200,0.290700,-0.379500,-0.221100,-0.853800,0.471300 -0.219200,0.496600,-0.571500,0.000000,1.000000,0.000000 0.397000,0.361300,-0.368000,1.000000,0.000000,0.000000 -0.148700,0.496600,0.133100,0.000000,1.000000,0.000000 0.062660,0.496600,-0.407100,0.000000,1.000000,0.000000 -0.023460,0.454500,-0.642000,0.000000,-1.000000,0.000000 0.078320,0.496600,0.360200,0.000000,1.000000,0.000000 0.418800,-0.580300,-0.606800,0.677600,0.348100,-0.647800 -0.391500,0.495600,-0.399300,0.000000,1.000000,0.000000 -0.389800,0.335900,-0.261100,-0.055240,-0.960500,0.272600 -0.397000,0.439500,0.062640,-0.998200,-0.060390,0.000000 -0.319600,-0.233100,0.506900,-0.688500,-0.104800,0.717600 0.219300,0.495600,0.266200,0.017660,0.999700,-0.014110 -0.407100,0.496600,-0.626300,0.000000,1.000000,0.000000 0.031340,0.454500,0.485400,0.000000,-1.000000,0.000000 0.289700,0.454500,-0.368000,0.000000,-1.000000,0.000000 -0.397000,0.416100,-0.454100,-1.000000,0.000000,0.000000 0.114800,0.353200,-0.567000,-0.340800,-0.940100,-0.003698 0.281900,0.454500,-0.250500,0.000000,-1.000000,0.000000 -0.039130,0.496600,0.399300,0.000000,1.000000,0.000000 0.140900,0.496600,-0.665400,0.000000,0.999900,-0.016000 -0.125200,0.454500,-0.642000,0.000000,-1.000000,0.000000 0.203600,0.454500,0.602900,0.000000,-1.000000,-0.004194 -0.299200,0.361300,-0.583600,0.362600,0.000000,-0.931900 0.070490,0.496600,-0.657600,0.000000,1.000000,-0.000322 0.375900,0.212600,0.510400,-0.090080,-0.127400,-0.987800 0.274100,0.496100,0.360100,0.049570,0.998100,-0.035370 0.448600,0.306000,0.563100,0.990100,0.071750,0.120600 -0.109600,0.496600,0.062660,0.000000,1.000000,0.000000 0.297500,0.496600,0.657700,0.000000,1.000000,0.000258 -0.493200,0.454500,0.336700,0.000000,-1.000000,0.000000 -0.395100,0.271900,0.441100,-0.700600,-0.713500,0.000000 -0.328000,-0.407300,-0.508300,0.685100,-0.184800,0.704600 -0.015640,0.496600,0.516800,0.000000,1.000000,0.000000 -0.420100,-0.561000,0.588600,0.874600,-0.310200,-0.372700 -0.355400,0.369900,0.156600,0.991200,-0.129400,-0.026870 -0.400100,0.361300,-0.623900,0.254200,-0.000002,0.967200 0.387600,0.340400,0.625200,-0.142100,0.000000,-0.989800 0.311800,0.265000,-0.589100,-0.923600,-0.359500,-0.132800 0.328200,-0.077330,0.590700,-0.932500,0.036000,0.359300 -0.397800,-0.460000,0.568300,0.887700,-0.205300,-0.412200 -0.381500,0.129500,0.524100,0.114200,-0.107900,-0.987600 0.396000,0.353500,-0.438400,0.999800,-0.021320,0.000000 0.414800,0.103000,-0.524100,0.000736,-0.018800,-0.999800 -0.347700,0.451000,-0.503500,-0.156600,-0.742700,-0.651100 -0.351100,-0.561100,0.543600,0.799400,-0.301900,-0.519500 -0.375800,0.337800,-0.502500,0.000000,0.000000,-1.000000 0.369000,-0.546200,0.527200,-0.207400,-0.252100,-0.945200 0.368100,-0.651900,-0.570800,-0.883200,-0.224500,0.411800 0.516800,0.454500,0.634200,0.019410,-0.999800,0.000000 0.390400,0.364000,-0.141300,0.167100,-0.978700,0.118900 -0.242700,0.496600,0.086150,0.000000,1.000000,0.000000 -0.133100,0.454500,0.321000,0.000000,-1.000000,0.000000 0.422800,0.454500,-0.375800,0.000000,-1.000000,0.000000 0.234900,0.454500,0.469800,0.000000,-1.000000,0.000000 -0.046950,0.496600,0.156600,0.000000,1.000000,0.000000 0.015680,0.454500,-0.140900,0.000000,-1.000000,0.000000 0.454100,0.457400,0.710100,0.000000,-0.675200,0.737600 -0.388700,-0.146600,0.581400,-0.629500,-0.249700,0.735800 0.341600,0.126100,0.571200,0.993100,0.046430,0.108000 -0.234900,0.337800,0.539500,0.000000,0.000000,-1.000000 0.281900,0.496600,-0.477600,0.000000,1.000000,0.000000 0.331800,-0.405100,0.505000,-0.507500,-0.206000,-0.836700 -0.393400,-0.421700,-0.568300,-0.798100,0.201700,-0.567700 0.354800,0.431800,0.336700,-1.000000,0.000320,0.000000 -0.312500,0.494800,-0.684200,0.000000,0.960800,-0.277200 -0.469700,0.454500,-0.258300,0.000000,-1.000000,0.000000 -0.502100,0.493500,-0.438500,-0.340100,0.940400,0.000138 -0.421700,-0.040670,0.523600,-0.838000,-0.126800,-0.530800 -0.328800,0.454500,0.689000,0.000000,-1.000000,0.000000 0.450400,0.236400,0.587900,-0.976300,-0.099370,-0.192400 -0.326700,-0.048540,0.599100,0.936800,0.033650,0.348200 0.415300,0.330000,-0.498800,-0.053210,0.000000,-0.998600 -0.329100,-0.121300,-0.516100,0.771400,0.187000,0.608200 0.219200,0.454500,-0.508900,0.000000,-1.000000,0.000000 -0.234900,0.454500,0.321000,0.000000,-1.000000,0.000000 0.007851,0.496600,-0.054780,0.000000,1.000000,0.000000 -0.365700,0.003927,-0.517300,0.225600,0.155200,0.961800 0.297500,0.496600,-0.015640,0.000000,0.999800,0.021310 0.062660,0.454500,0.156600,0.000000,-1.000000,0.000000 0.399700,-0.129000,-0.508800,0.608700,-0.024170,0.793000 0.527200,0.457300,0.548100,0.849300,-0.527900,0.000000 0.527200,0.457300,-0.595000,0.848500,-0.529200,0.000000 -0.344500,0.495600,-0.031300,0.000000,1.000000,0.000000 0.330900,-0.149300,0.510200,0.688900,-0.205100,0.695200 -0.363200,-0.640300,0.587500,0.974300,-0.212000,-0.076110 -0.422800,0.454500,0.250600,0.000000,-1.000000,0.000000 -0.140900,0.454500,-0.250500,0.000000,-1.000000,0.000000 -0.355500,0.439500,-0.328800,0.998300,-0.058020,0.007143 -0.355000,0.416100,0.360200,0.999900,-0.003591,-0.014200 0.397000,0.408300,-0.227100,0.999800,0.021290,0.000000 -0.419700,0.001628,-0.607000,-0.596800,-0.266700,-0.756700 -0.274000,0.431700,-0.540000,-0.010600,-0.021320,0.999700 -0.046950,0.454500,-0.227000,0.000000,-1.000000,0.000000 -0.477600,0.454500,-0.148700,0.000000,-1.000000,0.000000 0.446200,0.423900,-0.532400,0.999700,-0.000043,0.024670 0.399300,0.496600,-0.156600,0.000000,1.000000,0.000000 0.274100,0.496600,0.555900,0.000000,1.000000,0.000000 -0.023710,0.375000,0.580800,0.038750,-0.632800,0.773300 -0.071900,0.366400,-0.549000,0.210500,-0.977000,0.035510 -0.125300,0.495600,-0.140900,0.000043,1.000000,-0.000021 0.000016,0.431800,-0.540500,0.000000,0.000064,1.000000 0.399200,0.212200,-0.514500,0.041680,0.129500,-0.990700 -0.141400,0.346500,0.539600,0.153900,-0.303200,-0.940400 -0.309200,-0.319600,0.517900,0.971300,-0.050150,-0.232400 -0.332500,0.172800,0.571100,-0.987800,0.126900,0.090230 -0.313200,0.496600,0.281900,0.000000,1.000000,0.000000 0.093980,0.454500,0.234900,0.000000,-1.000000,0.000000 -0.522200,0.477700,0.203600,-0.849500,0.527600,0.000086 0.298000,0.337800,-0.583700,-0.420800,0.000000,-0.907100 -0.086100,0.454600,-0.532200,0.000000,-0.984500,0.175500 0.133100,0.454500,-0.344500,0.000000,-1.000000,0.000000 0.250600,0.496600,0.422800,0.000000,1.000000,0.000000 0.409900,-0.599100,0.618400,0.256100,0.289500,0.922300 0.368000,0.374700,-0.015890,-0.015490,-0.999000,0.040830 0.354800,0.322200,-0.477600,-1.000000,0.000000,-0.001027 0.000024,0.454500,-0.454100,0.000000,-1.000000,0.000000 -0.352800,-0.467700,0.513800,0.124600,-0.190300,-0.973800 0.336700,0.496600,-0.399300,0.000000,1.000000,0.000000 -0.109600,0.454500,-0.454100,0.000000,-1.000000,0.000000 0.234900,0.495600,0.109600,0.000000,1.000000,0.000000 0.219200,0.496600,-0.023470,0.000000,1.000000,0.000000 -0.397000,0.400400,0.461900,-1.000000,0.000000,0.000000 0.023510,0.454500,-0.258300,0.000000,-1.000000,0.000000 0.211400,0.454500,-0.086100,0.000000,-1.000000,0.000000 0.352300,0.495600,0.070480,0.000000,1.000000,0.000000 0.101800,0.454500,0.297500,0.000000,-1.000000,0.000000 -0.156600,0.495600,-0.203500,-0.031920,0.999300,0.021260 0.227100,0.454500,-0.375800,0.000000,-1.000000,0.000000 -0.454100,0.454500,0.430600,0.000000,-1.000000,0.000000 -0.454100,0.462600,0.712200,0.000000,-0.040070,0.999200 -0.360100,-0.358800,0.497300,-0.010070,-0.057970,-0.998300 0.354800,0.377000,0.422800,-1.000000,0.000000,0.000000 0.375400,-0.531700,-0.608600,0.081340,0.233900,-0.968900 0.109600,0.496000,0.000034,0.000000,0.999100,0.042510 0.364100,-0.489100,0.595200,0.000002,0.227800,0.973700 0.427600,0.096960,0.623900,0.577200,-0.171700,0.798300 -0.354800,0.424000,0.195800,1.000000,0.000000,0.000000 -0.409000,-0.068830,-0.508700,-0.316900,0.035220,0.947800 -0.417800,-0.628400,-0.626100,-0.283800,0.282100,-0.916500 -0.361200,-0.527600,-0.523900,0.249600,-0.241300,0.937800 0.070490,0.454500,-0.172200,0.000000,-1.000000,0.000000 -0.062610,0.496600,-0.618500,0.000000,1.000000,0.000000 -0.353800,0.447200,0.109600,0.942500,-0.334300,0.000000 -0.133100,0.454500,-0.321000,0.000000,-1.000000,0.000000 0.054830,0.496600,0.446300,0.000000,1.000000,0.000000 0.125300,0.454500,-0.093930,0.000000,-1.000000,0.000000 -0.015640,0.496600,0.579400,0.000000,1.000000,0.000000 0.354800,0.377000,-0.297500,-1.000000,0.000000,0.000000 -0.148700,0.392600,-0.581600,0.000000,0.000000,-1.000000 -0.352700,-0.405500,0.582600,0.084160,-0.155600,-0.984200 -0.342300,0.126300,-0.563600,-0.991800,0.055250,-0.115100 -0.429900,0.197100,-0.511300,-0.181200,-0.088890,0.979400 0.372400,-0.376900,-0.499700,0.198800,-0.076770,0.977000 0.438500,0.454500,-0.015630,0.000000,-1.000000,0.000000 -0.391500,0.495600,-0.172200,0.000000,1.000000,0.000000 -0.219200,0.454500,-0.524500,0.000000,-1.000000,-0.004194 -0.281800,0.454500,-0.649800,0.000000,-1.000000,0.000000 -0.250500,0.496600,-0.461900,0.000000,1.000000,0.000000 0.336700,0.454500,0.462000,0.003810,-1.000000,0.000000 -0.164400,0.496600,0.516800,0.000000,1.000000,0.000000 0.462000,0.454500,-0.266200,0.000000,-1.000000,0.000000 0.187900,0.496600,0.344500,0.000000,1.000000,0.000000 -0.070450,0.495600,-0.015670,0.000000,0.999800,-0.021260 -0.461900,0.454500,0.070490,0.000000,-1.000000,0.000000 0.375800,0.454500,-0.649800,0.000000,-1.000000,0.003810 -0.164400,0.454500,0.610700,0.000000,-1.000000,0.000000 -0.227000,0.454500,0.610700,0.000000,-1.000000,0.000000 -0.133100,0.496600,0.383700,0.000000,1.000000,0.000000 0.344300,0.454600,0.274100,-0.169400,-0.985600,0.000000 0.515900,0.485300,-0.287100,0.709100,0.705100,0.000072 -0.320300,0.452800,0.585500,-0.406400,-0.886900,0.219400 0.400200,0.029140,-0.626100,0.274200,-0.170600,-0.946400 -0.446700,0.394600,-0.554700,0.994200,0.007316,0.106900 -0.408900,-0.116500,0.532400,0.984300,0.169300,0.049720 0.358000,-0.328100,0.573200,0.188900,0.039200,0.981200 -0.446300,0.495600,-0.461900,0.000000,1.000000,0.000000 -0.446300,0.495600,-0.101800,0.000000,1.000000,0.000000 0.497600,0.495300,0.091350,0.225200,0.974300,0.000000 -0.383400,0.258700,0.505900,-0.072340,0.219800,0.972900 -0.305300,0.454500,-0.289700,0.000000,-1.000000,0.000000 -0.354500,0.447200,-0.078280,0.926100,-0.377300,0.000000 -0.360500,0.361300,0.631900,0.075850,0.000000,-0.997100 0.361900,0.142800,-0.525800,-0.362500,-0.190900,0.912200 0.148800,0.496600,0.665400,0.000000,0.999900,0.015990 0.355000,0.308500,0.353100,-0.978300,-0.187600,-0.087730 -0.383500,0.452200,0.636100,-0.029150,-0.790800,0.611300 0.093980,0.454500,0.673400,0.000000,-1.000000,0.000000 -0.314300,-0.262000,-0.511700,-0.939400,-0.083820,-0.332400 -0.086100,0.454500,-0.109600,0.000000,-1.000000,0.000000 0.195800,0.454500,-0.274000,0.000000,-1.000000,0.000000 0.234900,0.496600,-0.242700,0.000000,1.000000,0.000000 0.289700,0.439600,0.539500,0.000000,0.003618,-1.000000 -0.039130,0.496600,-0.532400,0.000000,1.000000,0.000000 0.078320,0.496600,-0.571500,0.000000,1.000000,0.000000 -0.039120,0.454500,-0.352300,0.000000,-1.000000,0.000000 -0.180100,0.496600,0.336700,0.000000,1.000000,0.000000 -0.368000,0.496600,0.054830,0.000000,1.000000,0.000000 0.172300,0.454500,0.485400,0.000000,-1.000000,0.000000 0.274000,0.495600,0.289700,0.000000,1.000000,0.000000 0.211400,0.457400,0.710100,0.000000,-0.675200,0.737600 0.440000,0.158000,0.517600,0.349100,-0.109400,-0.930700 0.227100,0.454500,-0.657600,0.000000,-1.000000,0.000000 0.313200,0.454500,-0.673300,0.000000,-1.000000,0.000000 0.403700,-0.533700,0.598100,0.453400,0.300200,0.839200 0.399000,-0.482000,-0.582100,0.755800,0.310300,-0.576600 0.398600,0.149900,0.636900,0.135000,-0.001920,0.990800 0.333400,0.263900,0.508000,-0.314600,-0.294200,-0.902500 -0.242700,0.454500,-0.093930,0.000000,-1.000000,0.000000 0.140900,0.495600,0.140900,0.000000,1.000000,0.000000 -0.187900,0.322200,-0.539500,0.056210,-0.097210,0.993700 -0.203500,0.454500,-0.156600,0.000000,-1.000000,0.000000 -0.395100,0.365300,-0.146400,-0.708200,-0.697700,0.108100 -0.516700,0.454500,-0.563700,-0.020180,-0.999800,0.000000 -0.329100,-0.463200,-0.532600,0.952900,-0.229300,0.198600 0.180100,0.369100,-0.581600,0.000000,0.000000,-1.000000 0.396900,0.345900,-0.250600,0.991200,-0.131000,0.019850 0.337900,0.400400,0.627300,0.191300,-0.003213,-0.981500 0.383500,0.024740,-0.523700,0.092070,-0.077540,-0.992700 0.375800,0.110900,-0.640800,0.035830,-0.125100,-0.991500 -0.367800,-0.516800,0.605500,-0.036410,0.229700,0.972600 0.337200,-0.413800,-0.586000,-0.178200,0.125000,-0.976000 0.407000,0.260600,0.498400,0.007641,-0.209500,-0.977800 -0.406900,-0.665600,0.557700,-0.020250,-0.418400,0.908000 -0.360100,0.496600,0.532400,0.000000,1.000000,0.000000 -0.266200,0.496600,-0.383600,-0.017740,0.999700,0.014190 0.491900,0.495800,-0.485400,0.127800,0.991800,-0.000069 -0.469700,0.454500,-0.328800,0.000000,-1.000000,0.000000 0.376700,-0.351400,0.497000,-0.300900,0.035810,0.953000 0.375900,-0.452200,0.506100,0.008994,-0.144600,-0.989500 0.354900,0.439600,-0.101800,-0.997900,-0.064910,0.000000 0.000161,0.375000,-0.571500,-0.001158,-0.999900,-0.011360 -0.203500,0.496600,-0.391400,0.000000,1.000000,0.000000 0.360200,0.454500,-0.555900,0.000000,-1.000000,0.000000 -0.031300,0.496600,0.250600,0.000000,1.000000,0.000000 -0.172200,0.454500,0.477600,0.000000,-1.000000,0.000000 -0.258300,0.454500,0.047000,0.000000,-1.000000,0.000000 0.430600,0.454500,-0.469700,0.000000,-1.000000,0.000000 0.031340,0.496600,0.219200,0.000000,1.000000,0.000000 0.000022,0.496600,-0.352300,0.000000,1.000000,0.000000 -0.422800,0.454500,0.360200,0.000000,-1.000000,0.000000 -0.321000,0.496600,0.101800,0.000000,1.000000,0.000000 0.039170,0.454500,-0.086100,0.000000,-1.000000,0.000000 -0.444300,0.260200,0.588200,0.972400,-0.103000,-0.209400 -0.266200,0.495600,-0.305300,0.000000,1.000000,0.000000 0.439200,0.350900,0.597600,0.868200,0.000011,0.496200 -0.031290,0.454500,-0.007805,0.000000,-1.000000,0.000000 0.367500,-0.620100,-0.626000,-0.568400,0.093180,-0.817400 0.311400,-0.327400,-0.512700,-0.921500,-0.065090,0.382800 0.343400,0.032930,0.619100,-0.649400,-0.083880,0.755800 0.392300,-0.174500,0.563500,-0.799600,0.203300,-0.565100 0.446300,0.454500,0.618600,0.054140,-0.997000,0.054410 0.195700,0.495600,0.046990,0.000000,1.000000,0.000000 -0.485200,0.496200,-0.383600,-0.010490,0.999900,-0.000027 0.359500,-0.249200,-0.577300,0.257100,-0.120000,-0.958900 -0.250500,0.496000,-0.007861,0.000000,0.999100,-0.042550 -0.227000,0.454500,0.430600,0.000000,-1.000000,0.000000 0.454100,0.496600,-0.407100,0.000000,1.000000,0.000000 -0.430600,0.495600,-0.266200,0.000000,1.000000,0.000000 -0.164400,0.454500,0.023510,0.000000,-1.000000,0.000000 -0.172200,0.454500,-0.438400,0.000000,-1.000000,0.000000 0.383700,0.496600,-0.211400,0.000000,1.000000,0.000000 0.328900,0.496600,-0.281800,0.000000,1.000000,0.000000 -0.390800,0.290300,-0.629900,-0.129700,0.107900,-0.985700 -0.203600,0.495600,-0.062620,0.000000,1.000000,0.000000 0.415800,0.220500,0.630200,-0.290400,-0.057680,-0.955200 -0.355800,0.314300,-0.422800,1.000000,-0.000107,0.000021 0.354800,0.431800,0.133100,-1.000000,0.000320,0.000000 0.452400,0.118800,-0.563600,0.993100,-0.113700,-0.027520 0.242700,0.454500,0.211400,0.000000,-1.000000,0.000000 -0.274000,0.495600,-0.234900,0.000000,1.000000,0.000000 -0.390300,0.283000,-0.502500,-0.029760,-0.000159,-0.999600 0.390400,-0.067690,0.601900,0.320100,-0.270800,0.907800 0.354900,0.439600,0.062650,-0.997900,-0.064920,0.000000 -0.148700,0.454500,0.266200,0.000000,-1.000000,0.000000 -0.374700,-0.226000,0.496500,-0.219000,0.025290,-0.975400 -0.140900,0.392600,0.581000,-0.003583,0.007084,1.000000 -0.242700,0.496600,0.524600,0.000000,1.000000,0.000000 -0.407100,0.496600,0.415000,0.000000,1.000000,0.000000 0.266200,0.369100,0.539500,0.000000,0.000000,-1.000000 0.062660,0.496600,-0.258300,0.000000,1.000000,0.000000 0.383700,0.496600,-0.477600,0.000000,1.000000,0.000000 0.399700,0.220400,-0.637200,-0.172300,-0.053410,0.983600 -0.443600,-0.626100,0.579200,-0.980900,0.194500,0.003263 -0.492200,0.495800,0.430600,-0.129500,0.991600,0.000000 -0.086100,0.447100,0.583000,0.000000,-0.493900,0.869500 -0.369100,-0.367700,-0.569600,0.443000,-0.111300,0.889600 0.274000,0.269800,0.555900,0.000000,-0.999900,-0.014720 -0.313200,-0.359000,-0.532300,0.994900,-0.067590,0.074330 0.376300,0.392600,-0.630200,-0.108600,-0.021230,0.993900 -0.418200,0.337800,0.620300,-0.505500,0.013940,0.862700 -0.461900,0.454500,-0.642000,0.000000,-1.000000,0.000000 0.093980,0.416100,-0.581600,0.000000,0.000000,-1.000000 0.180100,0.454500,0.274100,0.000000,-1.000000,0.000000 -0.180100,0.454500,-0.634200,0.000000,-1.000000,0.000000 0.344000,0.250700,-0.513000,0.316600,0.276300,-0.907400 -0.266200,0.454500,0.649900,0.000000,-1.000000,0.000000 -0.242700,0.496600,0.242700,0.000000,1.000000,0.000000 -0.109600,0.454500,0.148800,0.000000,-1.000000,0.000000 0.384200,-0.584400,-0.538400,-0.083500,-0.254800,0.963400 0.415000,0.454500,0.156600,-0.004194,-1.000000,0.000000 0.344500,0.495600,0.422800,0.000000,1.000000,0.000000 -0.399300,0.496600,0.164400,0.000000,1.000000,0.000000 -0.391500,0.496300,-0.000029,0.000000,0.999100,-0.042480 0.407100,0.495600,0.062650,0.000000,1.000000,0.000000 0.396500,0.306500,-0.375800,0.999900,0.006714,-0.014190 0.446300,0.454500,0.250600,0.000000,-1.000000,0.000000 -0.383600,0.392600,-0.502500,-0.001235,0.000000,-1.000000 0.015680,0.454500,0.610700,0.000000,-1.000000,0.000000 0.007853,0.447300,0.539600,0.000000,-0.179800,-0.983700 0.320000,-0.139700,0.563600,0.994100,-0.091150,-0.059490 -0.355900,0.290900,0.407100,0.999800,-0.004569,-0.018540 0.133100,0.454500,-0.493200,0.000000,-1.000000,0.000000 -0.527900,0.462100,-0.258400,-0.997200,0.074330,-0.000076 0.376500,0.291500,-0.632700,-0.102200,-0.102600,0.989500 0.397300,0.447200,-0.266200,0.929400,-0.369000,0.000000 -0.274000,0.454600,-0.595200,0.000000,-0.987100,-0.160200 0.461900,0.495600,0.454100,0.000064,1.000000,0.000000 0.368000,0.454500,0.657700,0.000000,-1.000000,0.000000 0.414500,-0.078210,-0.565400,-0.949800,0.230300,0.211700 0.396100,0.362900,0.180400,0.968100,-0.248700,0.032050 -0.370600,-0.201700,0.579900,-0.424200,-0.118800,0.897700 -0.421900,0.189700,0.514900,-0.108400,-0.105600,-0.988500 0.337900,-0.026580,-0.610000,0.640800,0.085580,0.763000 0.383600,0.330000,0.502500,0.001124,-0.010900,0.999900 0.461900,0.495600,0.133100,0.000064,1.000000,0.000000 -0.317800,0.298700,-0.555900,-1.000000,0.000000,0.000000 0.334600,-0.007415,0.548700,-0.982200,0.125300,-0.140000 -0.397000,0.330000,0.446300,-1.000000,0.000000,0.000000 0.125300,0.496600,0.407200,0.000000,1.000000,0.000000 0.156600,0.454500,0.054830,0.000000,-1.000000,0.000000 -0.007806,0.454500,0.281900,0.000000,-1.000000,0.000000 -0.454300,0.454600,0.540300,-0.176100,-0.984400,0.000436 0.258400,0.496600,-0.595000,0.000000,1.000000,0.000000 0.250600,0.496600,-0.140900,0.000000,1.000000,0.000000 -0.070440,0.496600,0.516800,0.000000,1.000000,0.000000 -0.281800,0.322200,0.581600,-0.000706,0.000000,1.000000 -0.203600,0.495600,-0.117400,0.000000,1.000000,0.000000 0.289700,0.454500,-0.516700,0.000000,-1.000000,0.000000 -0.070440,0.496600,0.634200,0.000000,1.000000,0.000000 0.054830,0.454500,-0.618500,0.000000,-1.000000,0.000000 0.000024,0.454500,0.062660,0.000000,-1.000000,0.000000 0.477600,0.454500,-0.195700,0.000000,-1.000000,0.000000 0.125300,0.454500,-0.227000,0.000000,-1.000000,0.000000 0.297500,0.496600,-0.219200,0.000000,1.000000,0.000000 -0.454100,0.496600,0.266200,0.000000,1.000000,0.000000 0.195800,0.496600,-0.391400,0.000000,1.000000,0.000000 0.258400,0.496600,-0.391400,0.000000,1.000000,0.000000 -0.367700,-0.139200,0.504500,-0.038830,-0.119300,0.992100 0.326500,-0.436700,-0.519000,-0.824300,-0.196900,0.530900 -0.317800,0.424000,-0.571500,-1.000000,0.000000,-0.003040 -0.446700,0.065510,-0.569600,0.987400,0.140600,0.073210 0.390600,0.270100,0.430600,0.177800,-0.983500,-0.033470 -0.492200,0.495800,0.508900,-0.129500,0.991600,0.000000 -0.527900,0.462100,-0.046970,-0.997900,0.065450,-0.000044 0.391300,-0.242000,0.499900,0.826000,-0.067510,-0.559600 -0.430500,-0.584900,-0.589700,0.852700,-0.340200,0.396400 0.421300,-0.021010,0.592400,-0.765000,0.261300,-0.588700 -0.007159,0.493000,-0.688900,0.000000,0.910800,-0.412900 0.376500,-0.304500,-0.564700,0.735000,0.051030,-0.676200 -0.352300,0.496600,-0.532400,0.000000,1.000000,0.000000 -0.450300,0.111500,-0.601000,-0.925900,-0.144000,-0.349200 -0.133100,0.496600,-0.524500,0.000000,1.000000,0.000000 0.354800,0.416100,-0.187900,-1.000000,0.000000,0.000000 -0.354800,0.377000,-0.258400,1.000000,0.000000,0.000000 -0.187900,0.454500,-0.219200,0.000000,-1.000000,0.000000 0.281900,0.454500,0.047000,0.000000,-1.000000,0.000000 -0.219200,0.454500,-0.031290,0.000000,-1.000000,0.000000 -0.274000,0.495600,-0.078280,0.000000,1.000000,0.000000 -0.485400,0.454500,0.242700,0.000000,-1.000000,0.000000 -0.116800,0.494800,-0.684200,0.000000,0.960800,-0.277200 -0.400200,-0.191400,-0.544000,-0.974000,-0.116100,-0.194400 -0.348500,0.243900,-0.632900,-0.243200,-0.074470,0.967100 -0.086100,0.496600,-0.211400,0.000000,1.000000,0.000000 -0.062610,0.454500,0.368000,0.000000,-1.000000,0.000000 0.321000,0.454500,-0.039120,0.000000,-1.000000,0.000000 -0.401300,0.452200,0.475000,-0.619100,-0.785300,0.001036 0.164400,0.454500,-0.642000,0.000000,-1.000000,0.000000 -0.086100,0.454500,0.219200,0.000000,-1.000000,0.000000 -0.485300,0.496500,0.046990,-0.060600,0.998200,0.000000 -0.209500,0.296600,0.577400,0.688200,-0.721000,0.080780 0.354900,0.439600,-0.344500,-0.997900,-0.064910,0.000000 0.477600,0.454500,-0.328800,0.000000,-1.000000,0.000000 -0.360300,0.048890,0.526000,0.453800,0.040630,-0.890200 -0.375600,0.048980,-0.628100,-0.032440,-0.141600,-0.989400 -0.381500,0.449700,-0.624800,0.292000,-0.451000,0.843400 0.438700,0.322300,-0.584900,-0.981400,-0.017870,0.191100 0.211400,0.322200,-0.581600,-0.000044,-0.000107,-1.000000 -0.391100,0.141600,-0.520700,-0.093160,0.127000,-0.987500 0.446000,0.058300,0.563800,-0.989300,0.135500,-0.053980 0.354800,0.392600,0.242700,-1.000000,0.000000,0.000000 0.441900,0.408300,0.592600,0.910800,-0.003347,0.412900 -0.445700,0.084100,0.565700,0.990800,0.134900,-0.007272 -0.349000,-0.555600,-0.571400,-0.975400,0.215300,-0.047170 0.507100,0.491400,0.673300,0.469900,0.882700,-0.003987 -0.274000,0.345700,-0.539500,0.000000,0.000000,1.000000 -0.203600,0.416100,0.581000,0.010630,0.021230,0.999700 0.109600,0.454500,-0.399300,0.000000,-1.000000,0.000000 0.397000,0.439500,0.101800,0.998100,-0.060810,0.000000 -0.023470,0.496600,-0.258300,0.000000,1.000000,0.000000 -0.101800,0.454500,0.649900,0.000000,-1.000000,0.000000 0.352300,0.454500,0.563700,0.000000,-1.000000,0.000000 0.141000,0.496600,-0.133100,0.000000,1.000000,0.000000 -0.187900,0.496600,0.054830,0.000000,1.000000,0.000000 -0.203600,0.392600,-0.540200,-0.003521,-0.024850,0.999700 -0.250500,0.454500,0.493300,0.000000,-1.000000,0.000000 -0.281800,0.454500,-0.469700,0.000000,-1.000000,0.000000 -0.101800,0.496600,-0.422800,0.000000,1.000000,0.000000 -0.156600,0.496600,0.642000,0.000000,1.000000,0.000000 0.172300,0.496600,0.610700,0.000000,1.000000,0.000000 0.187900,0.454500,-0.187900,0.000000,-1.000000,0.000000 0.187900,0.447200,-0.583600,0.000000,-0.457200,-0.889400 -0.088710,0.452100,-0.588100,0.000000,-0.841200,-0.540700 0.493300,0.454500,0.493300,0.000000,-1.000000,0.000000 0.502400,0.493700,-0.130500,0.374200,0.927300,0.000000 -0.423100,-0.018390,-0.516000,-0.517200,-0.055110,0.854100 0.258400,0.454500,0.133100,0.000000,-1.000000,0.000000 0.219200,0.337800,0.539500,0.000000,0.000000,-1.000000 0.507100,0.491400,0.274000,0.485200,0.874400,0.000000 0.446300,0.454500,-0.657600,0.000000,-1.000000,0.000000 0.335500,0.111000,-0.571900,-0.995300,0.027540,0.093210 0.396500,0.400400,0.352300,0.999800,-0.021290,-0.000021 -0.427900,0.339200,0.498900,-0.278200,0.008824,-0.960500 -0.352300,0.496600,-0.649800,0.000000,1.000000,0.000000 0.354800,0.384800,-0.469700,-1.000000,0.000000,0.000000 0.422800,0.495600,0.289700,0.000000,1.000000,0.000000 -0.305300,0.454500,0.493300,0.000000,-1.000000,0.000000 -0.211400,0.454500,-0.305300,0.000000,-1.000000,0.000000 -0.289700,0.454500,-0.117400,0.000000,-1.000000,0.000000 0.086140,0.496600,-0.070440,0.000000,1.000000,0.000000 0.086150,0.454500,0.516800,0.000000,-1.000000,0.000000 0.031340,0.496600,0.062660,0.000000,1.000000,0.000000 0.047000,0.454500,0.321000,0.000000,-1.000000,0.000000 0.101800,0.496600,0.610700,0.000000,1.000000,0.000000 0.321000,0.496600,0.579400,0.000000,1.000000,0.000000 0.141000,0.496600,0.469800,0.000000,1.000000,0.000000 -0.397000,0.377000,0.125300,-1.000000,-0.009669,-0.002357 -0.274000,0.496600,0.587200,0.000000,1.000000,0.000000 -0.354900,0.439500,0.454100,0.996500,-0.083100,0.003507 0.430600,0.495600,0.516800,0.000000,1.000000,0.000000 0.227100,0.454500,0.054830,0.000000,-1.000000,0.000000 0.422800,0.495600,0.187900,0.000000,1.000000,0.000000 0.321000,0.454500,0.180100,0.000000,-1.000000,0.000000 -0.140900,0.462600,0.712200,0.000296,-0.041000,0.999200 -0.325600,-0.084520,0.539700,-0.956600,-0.152400,0.248400 0.407300,0.454600,0.328900,0.169200,-0.985600,0.000000 -0.383600,0.157700,0.641800,-0.064770,-0.001751,0.997900 0.441300,-0.627000,-0.601400,0.919600,0.275400,-0.280300 0.477600,0.454500,-0.579400,0.000000,-1.000000,0.000000 -0.334900,0.048160,0.602800,-0.997300,-0.011590,-0.073200 -0.007806,0.454500,0.673400,0.000000,-1.000000,0.000000 0.313200,0.454500,-0.438400,0.000000,-1.000000,0.000000 -0.342600,0.037840,-0.548800,-0.950200,-0.033830,-0.309700 0.141000,0.454500,0.172300,0.000000,-1.000000,0.000000 0.313200,0.495600,0.133100,0.000000,1.000000,0.000000 0.297500,0.495600,0.203600,0.000000,1.000000,0.000000 -0.358800,-0.609100,-0.594900,0.973700,-0.223000,-0.046440 -0.414400,-0.104700,-0.552000,0.960200,0.250700,0.123400 -0.408200,0.086560,0.630500,0.283000,0.160900,-0.945500 0.527900,0.462100,-0.649800,0.997900,0.064270,0.000036 -0.321000,0.454500,0.070490,0.000000,-1.000000,0.000000 0.497600,0.495300,0.529800,0.225200,0.974300,0.000000 0.354800,0.330000,-0.344500,-1.000000,0.000000,0.000000 -0.397000,0.423900,-0.046980,-1.000000,0.000000,0.000000 -0.376400,0.495500,0.678900,0.000000,0.990100,0.140600 0.333400,0.165100,-0.571200,0.986400,0.134300,-0.095190 0.071580,0.366500,0.563700,-0.211200,-0.977500,0.000112 0.354800,0.431800,-0.007810,-1.000000,0.000320,0.000000 0.335000,-0.521600,-0.578600,-0.979100,-0.201300,-0.029720 0.313000,-0.144800,-0.556000,-0.990900,0.126900,0.045940 0.385800,-0.178900,-0.504300,-0.556000,0.014160,-0.831100 -0.355000,0.392600,-0.093930,0.999600,0.024790,0.014210 -0.414800,0.095210,-0.520400,0.010330,-0.023450,-0.999700 -0.396100,-0.051030,-0.604500,-0.327300,-0.236200,-0.914900 -0.350700,0.452100,-0.211400,0.587000,-0.809600,0.000000 -0.360000,0.274800,0.638000,-0.042210,0.092250,0.994800 0.310700,-0.233600,-0.564100,0.948400,-0.016080,0.316800 0.383800,0.055900,0.518800,-0.090780,0.029730,-0.995400 -0.477600,0.454500,-0.477600,0.000000,-1.000000,0.000000 -0.350400,0.452200,0.305400,0.612300,-0.790600,0.000000 0.397900,0.447200,0.227100,0.945800,-0.324700,0.000000 -0.516700,0.454500,0.093980,-0.020180,-0.999800,0.000000 -0.397000,0.330000,0.391500,-1.000000,0.000000,0.000000 -0.164400,0.454500,0.156600,0.000000,-1.000000,0.000000 0.148800,0.496600,0.234900,0.000000,1.000000,0.000000 -0.086100,0.496600,0.266200,0.000000,1.000000,0.000000 0.242700,0.454500,-0.007805,0.000000,-1.000000,0.000000 -0.461900,0.454500,0.180100,0.000000,-1.000000,0.000000 -0.133100,0.496600,-0.469700,0.000000,1.000000,0.000000 -0.477600,0.496600,0.313200,-0.006633,1.000000,0.000000 -0.322100,-0.432600,0.539900,-0.977100,0.164200,0.135400 -0.477600,0.454800,-0.704900,0.000000,-0.974500,-0.224400 0.354800,0.392600,0.297500,-1.000000,0.000000,0.000000 -0.318800,-0.233400,-0.572300,0.621900,-0.050340,-0.781500 0.431400,0.400500,0.497800,-0.429500,0.000078,0.903100 0.334500,0.174200,0.556500,-0.985700,-0.128500,-0.109100 0.047000,0.496300,-0.007793,0.000000,0.999100,0.042530 -0.355200,0.369100,-0.446300,0.999100,-0.042480,0.000000 0.332800,0.453400,0.512200,0.278900,-0.891100,0.358000 -0.390500,-0.665700,-0.555800,-0.065810,-0.967600,-0.243700 0.430500,-0.017530,0.523200,0.871000,-0.158700,-0.465000 -0.313200,0.496100,-0.430600,-0.049580,0.998100,0.035400 -0.408800,-0.510500,0.577200,0.897200,-0.278000,-0.343300 0.430600,0.454500,-0.093930,0.000000,-1.000000,0.000000 0.031340,0.496600,-0.446300,0.000000,1.000000,0.000000 -0.258300,0.496600,-0.532400,0.000000,1.000000,0.000000 -0.266200,0.496600,0.195800,0.000000,1.000000,0.000000 -0.195700,0.496600,0.187900,0.000000,1.000000,0.000000 0.227100,0.496600,-0.430600,0.000000,1.000000,0.000000 0.393100,-0.178900,-0.562400,0.895600,-0.183600,-0.405100 -0.062610,0.454500,0.031340,0.000000,-1.000000,0.000000 -0.070440,0.496600,0.446300,0.000000,1.000000,0.000000 0.313200,0.454500,-0.321000,0.000000,-1.000000,0.000000 -0.070440,0.454500,0.485400,0.000000,-1.000000,0.000000 0.023510,0.496600,0.360200,0.000000,1.000000,0.000000 0.078320,0.496600,-0.352300,0.000000,1.000000,0.000000 0.219200,0.496600,-0.344500,0.000000,1.000000,0.000000 0.375800,0.496600,-0.579400,0.000000,1.000000,0.000000 0.281900,0.496600,-0.101800,0.000000,1.000000,0.000000 -0.375800,0.496600,0.336700,0.000000,1.000000,0.000000 0.274000,0.495600,0.078310,0.000000,1.000000,0.000000 0.258400,0.454500,0.634200,0.000000,-1.000000,0.000000 0.456600,0.189100,0.571100,0.995800,0.013590,0.090590 0.258400,0.431800,0.581600,0.000000,0.000964,1.000000 0.368000,0.495600,0.289700,0.000000,1.000000,0.000000 -0.352500,-0.179100,-0.494900,0.084720,0.081230,0.993100 -0.312100,0.361300,0.587800,-0.919800,0.000000,0.392500 -0.421800,0.087260,0.522100,-0.135100,0.007493,-0.990800 -0.413000,-0.023500,0.600200,0.684000,0.261600,-0.681000 -0.258300,0.496400,-0.672800,0.000000,0.998300,-0.058930 -0.391900,0.102100,-0.632200,0.099880,0.148700,0.983800 0.211400,0.416100,-0.539500,0.000000,0.000000,1.000000 -0.491600,0.495900,-0.172200,-0.100200,0.995000,0.001367 -0.330000,0.204800,-0.563800,0.990400,-0.112700,0.079720 -0.469700,0.454500,-0.007805,0.000000,-1.000000,0.000000 0.070490,0.454500,-0.297500,0.000000,-1.000000,0.000000 -0.397000,0.431800,0.305300,-1.000000,0.000320,0.000000 -0.397000,0.431800,-0.407100,-1.000000,0.000320,0.000000 0.462000,0.496600,-0.164400,0.000000,1.000000,0.000000 0.187900,0.495600,0.156600,0.000000,1.000000,0.000000 -0.297500,0.454500,0.399300,0.000000,-1.000000,0.000000 0.446300,0.496600,-0.344500,0.000000,1.000000,0.000000 -0.187900,0.322100,0.539500,0.063250,-0.108800,-0.992000 -0.414900,0.454500,-0.289700,0.003810,-1.000000,0.000000 0.078320,0.454500,0.626400,0.000000,-1.000000,0.000000 0.399300,0.496600,-0.054780,0.000000,1.000000,0.000000 0.000022,0.496600,0.172300,0.000000,1.000000,0.000000 0.078310,0.495600,0.046990,0.000000,1.000000,0.000000 0.477600,0.454500,0.360200,0.000000,-1.000000,0.000000 -0.172200,0.496600,-0.555900,0.000000,1.000000,0.000000 -0.422800,0.454500,-0.555900,-0.002122,-1.000000,-0.000706 -0.093930,0.454500,-0.039120,0.000000,-1.000000,0.000000 0.227100,0.479100,-0.706000,0.000000,0.581000,-0.813900 0.315100,0.412900,0.582700,0.968900,-0.004226,0.247300 -0.125300,0.495600,-0.015670,0.000000,0.999800,-0.021260 -0.070440,0.454500,-0.657600,0.000000,-1.000000,0.000000 -0.355900,0.400400,0.422800,0.999900,-0.010720,0.000106 -0.101800,0.416100,0.539500,0.000000,0.000000,-1.000000 -0.203500,0.496600,0.657700,0.000000,1.000000,0.000258 -0.031290,0.454500,-0.180100,0.000000,-1.000000,0.000000 -0.195700,0.454500,-0.681100,0.000000,-1.000000,0.000000 0.172300,0.392600,0.581600,0.000000,0.000000,1.000000 -0.148700,0.454500,0.430600,0.000000,-1.000000,0.000000 -0.164400,0.345700,-0.581600,0.001917,-0.003828,-1.000000 0.141000,0.431800,-0.581600,0.000000,0.000964,-1.000000 -0.452600,0.157700,0.579100,-0.995500,0.004413,0.094370 0.341200,0.141700,0.619600,0.921800,0.098420,-0.375000 0.373900,-0.665500,0.579500,0.897500,-0.428600,0.103600 0.355000,0.285600,0.400500,-0.974800,-0.198700,-0.101100 -0.389500,-0.304300,0.532300,-0.996600,0.032830,0.075380 -0.502400,0.493400,0.375800,-0.344300,0.938900,0.000000 -0.313400,0.392600,0.531200,0.899700,0.005631,-0.436500 -0.219200,0.454500,0.250600,0.000000,-1.000000,0.000000 0.313200,0.454500,-0.180100,0.000000,-1.000000,0.000000 0.234900,0.454500,-0.313200,0.000000,-1.000000,0.000000 -0.397000,0.416100,0.234900,-1.000000,0.000000,0.000000 -0.054780,0.454500,0.180100,0.000000,-1.000000,0.000000 0.101800,0.496600,-0.477600,0.000000,1.000000,0.000000 -0.289700,0.496600,0.422800,0.000000,1.000000,0.000000 -0.140900,0.496600,0.297500,0.000000,1.000000,0.000000 0.227100,0.392600,0.581600,0.000000,0.000000,1.000000 -0.039120,0.454500,-0.485400,0.000000,-1.000000,0.000000 -0.117400,0.454500,0.086150,0.000000,-1.000000,0.000000 0.354800,0.408300,-0.258400,-1.000000,0.000000,0.000000 0.438500,0.496500,0.595000,0.038990,0.998900,-0.024800 0.318200,-0.280600,-0.500000,-0.499200,-0.025250,0.866100 0.117500,0.496600,-0.540200,0.000000,1.000000,0.000000 0.195800,0.454500,-0.031290,0.000000,-1.000000,0.000000 0.507100,0.491400,-0.407100,0.444100,0.896000,0.000031 0.323900,-0.422300,0.556500,0.985500,0.134800,-0.103000 -0.431300,-0.006907,0.557300,0.985100,0.167000,-0.040040 0.401300,0.452200,0.446300,0.618400,-0.785900,-0.000024 -0.355600,0.141800,-0.633500,-0.382700,0.036640,0.923200 0.424100,-0.031200,-0.572500,-0.961100,0.218400,0.169400 -0.355300,0.377000,0.469800,0.999200,-0.003529,0.038840 0.242700,0.369100,-0.581600,0.000000,0.000000,-1.000000 0.015680,0.447200,-0.583600,0.000000,-0.457200,-0.889400 0.397000,0.408300,0.148800,0.999900,-0.010650,0.010660 0.172300,0.454500,0.673400,0.000000,-1.000000,0.000000 -0.447200,0.348300,-0.568500,-0.991200,-0.000253,-0.132500 0.397000,0.392600,-0.101800,0.999700,0.021290,0.010650 -0.328200,-0.042700,-0.575700,0.994200,0.106700,-0.015050 0.093970,0.496600,0.258400,0.000000,1.000000,0.000000 -0.078270,0.454500,-0.313200,0.000000,-1.000000,0.000000 0.219200,0.454500,-0.140900,0.000000,-1.000000,0.000000 0.312500,-0.186800,-0.532500,0.993100,-0.075400,-0.089640 -0.375300,-0.410700,-0.500200,-0.068720,-0.146100,0.986900 0.298000,0.416100,-0.583700,-0.420800,0.000000,-0.907100 0.374700,-0.083640,-0.604900,0.179900,-0.225200,-0.957600 0.425300,-0.665600,-0.560600,-0.339300,-0.691500,-0.637800 0.389600,-0.373100,0.556200,0.863500,0.130600,0.487100 0.396000,0.345700,0.352300,1.000000,0.000000,0.000000 0.383500,-0.432200,-0.577600,-0.661200,-0.113700,0.741500 0.387600,0.053670,0.625800,-0.075200,0.150900,-0.985700 -0.274000,0.424000,0.539500,0.000000,0.000000,-1.000000 -0.195700,0.495600,-0.242700,0.000064,1.000000,-0.000064 0.313200,0.454500,0.321000,0.000000,-1.000000,0.000000 -0.379800,-0.018450,0.516400,0.092720,0.117200,-0.988800 0.064610,0.493000,0.688800,0.000000,0.910700,0.413000 -0.397000,0.377000,0.415000,-1.000000,0.000000,0.000000 0.461900,0.495600,0.219200,0.000064,1.000000,0.000000 -0.156600,0.496600,-0.657600,0.000000,1.000000,-0.000322 -0.374000,-0.280800,-0.492900,0.287800,0.027620,-0.957300 0.401900,0.457600,-0.710300,0.000000,-0.675700,-0.737200 0.317300,0.369100,0.563700,0.999400,0.017770,0.028790 0.477600,0.454500,0.555900,0.000000,-1.000000,0.000000 -0.336500,-0.506200,0.537200,0.899600,-0.262700,-0.348900 0.407200,0.496600,-0.101800,0.000000,1.000000,0.000000 -0.422800,0.454500,-0.469700,0.000213,-1.000000,-0.000427 -0.344500,0.495600,-0.156600,0.000000,1.000000,0.000000 -0.227000,0.454500,0.368000,0.000000,-1.000000,0.000000 0.501100,0.454500,0.187900,0.000000,-1.000000,0.000000 -0.281800,0.496600,0.469800,0.000000,1.000000,0.000000 -0.354800,0.392600,-0.305300,1.000000,0.000000,0.000000 -0.344500,-0.351200,0.579300,-0.062780,0.030350,0.997600 0.109600,0.454500,0.047000,0.000000,-1.000000,0.000000 0.422800,0.495600,0.015670,0.000000,1.000000,-0.000064 0.369100,-0.085210,-0.509400,-0.065270,0.084620,0.994300 -0.355000,0.345600,-0.383600,0.999500,-0.021260,-0.021260 -0.328800,0.496600,0.227100,0.000000,1.000000,0.000000 0.266200,0.495600,0.242700,0.000000,1.000000,0.000000 -0.250500,0.496600,0.289700,0.000000,1.000000,0.000000 -0.391500,0.495600,-0.454100,0.000000,1.000000,0.000000 -0.187900,0.454500,0.313200,0.000000,-1.000000,0.000000 0.321000,0.495600,0.281900,0.000000,1.000000,0.000000 -0.399300,0.495600,-0.109600,0.000000,1.000000,0.000000 -0.117400,0.496600,0.548100,0.000000,1.000000,0.000000 -0.266200,0.495600,-0.187900,0.000000,1.000000,0.000000 0.180100,0.454500,-0.352300,0.000000,-1.000000,0.000000 -0.523400,0.454800,0.595000,-0.261200,-0.965300,0.000000 -0.361700,-0.265600,-0.568900,0.301700,0.108800,0.947200 0.344500,0.496600,0.665400,0.000000,0.999900,0.015990 0.117500,0.454500,-0.046950,0.000000,-1.000000,0.000000 0.015680,0.454500,0.000024,0.000000,-1.000000,0.000000 -0.219200,0.454500,0.172300,0.000000,-1.000000,0.000000 0.274100,0.454500,-0.610700,0.000000,-1.000000,0.000000 -0.062610,0.454500,-0.422800,0.000000,-1.000000,0.000000 0.070490,0.496600,0.501100,0.000000,1.000000,0.000000 -0.438400,0.496600,0.610700,0.000000,1.000000,0.000000 -0.321000,0.496600,0.344500,0.000000,1.000000,0.000000 0.446300,0.496600,-0.454100,0.000000,1.000000,0.000000 0.359800,-0.147200,-0.592900,0.122100,-0.206900,-0.970700 -0.305300,0.496600,-0.555900,0.000000,1.000000,0.000000 0.375800,0.496600,-0.289700,0.000000,1.000000,0.000000 -0.054780,0.496600,-0.101800,0.000000,1.000000,0.000000 -0.469700,0.495600,-0.524600,0.021220,0.999800,0.000000 0.508900,0.454500,0.415000,0.000000,-1.000000,0.000000 -0.093940,0.469700,0.710600,0.000000,0.303300,0.952900 0.417900,-0.522900,0.539500,-0.941700,-0.132100,0.309400 -0.414900,0.495600,-0.046960,0.000000,1.000000,0.000000 0.426000,-0.563300,-0.550100,0.949200,0.149600,0.277000 -0.336700,0.454500,-0.610700,-0.031700,-0.997400,0.064490 0.502200,0.493400,-0.568900,0.342200,0.939600,0.000140 -0.498500,0.494700,0.677000,-0.255800,0.962400,0.091120 0.516300,0.485000,0.018280,0.704100,0.710100,-0.000022 -0.400900,-0.466300,0.521700,-0.854400,0.045950,-0.517600 0.344600,-0.202400,-0.500200,0.093460,-0.064070,-0.993600 0.266200,0.454500,-0.696800,0.000000,-0.999900,-0.016280 -0.355300,0.369200,0.242700,0.998700,0.049660,-0.014190 -0.407100,0.454500,-0.681100,0.000000,-1.000000,0.000000 -0.355500,0.416100,-0.391500,0.999900,-0.010670,0.000051 -0.319600,-0.158200,0.580000,-0.788000,0.006799,-0.615600 0.396600,0.361300,0.399300,0.998200,0.042530,-0.042530 0.354800,0.431800,0.383700,-1.000000,0.000320,0.000000 -0.321000,0.454500,-0.039120,0.000000,-1.000000,0.000000 0.101800,0.454500,0.415000,0.000000,-1.000000,0.000000 0.430600,0.454500,-0.328800,0.000000,-1.000000,0.000000 0.344300,0.454600,0.227100,-0.169400,-0.985600,0.000000 -0.211400,0.454500,0.023510,0.000000,-1.000000,0.000000 0.391500,0.496600,-0.336600,0.000000,1.000000,0.000000 0.289700,0.496600,-0.172200,0.000000,1.000000,0.000000 -0.023460,0.454500,0.109600,0.000000,-1.000000,0.000000 0.007851,0.496600,0.642000,0.000000,1.000000,0.000000 0.497000,0.495100,-0.245300,0.225500,0.974200,0.000068 -0.281800,0.314300,-0.581600,-0.000342,0.000043,-1.000000 -0.156600,0.454500,-0.156600,0.000000,-1.000000,0.000000 0.141000,0.496600,0.344500,0.000000,1.000000,0.000000 0.383700,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.368000,0.495600,-0.321000,0.000000,1.000000,0.000000 0.391500,0.454500,-0.602800,0.000000,-1.000000,0.000000 0.322800,0.220500,-0.579500,-0.984500,-0.158900,0.073680 0.252500,0.493000,0.688800,0.000000,0.910700,0.413100 -0.109600,0.392600,-0.540300,0.010570,0.021250,0.999700 -0.156600,0.495600,-0.078280,0.000000,1.000000,0.000000 -0.330300,-0.452800,-0.579100,0.846800,-0.069290,-0.527400 0.314000,0.301900,-0.617500,0.905000,0.048150,0.422700 -0.443200,0.416100,0.571100,-0.991400,0.000000,0.130800 0.312700,-0.203000,0.531800,-0.993600,0.064820,-0.092910 -0.442000,0.258900,-0.608000,-0.839200,0.128200,-0.528500 -0.430900,0.235200,0.510900,-0.291000,-0.160800,-0.943100 -0.397000,0.369100,-0.219200,-1.000000,0.000000,0.000000 0.336300,0.361300,-0.505200,0.280400,-0.002339,-0.959900 -0.350700,0.452100,-0.266200,0.587000,-0.809600,0.000000 -0.401300,0.452200,0.185300,-0.619200,-0.785200,0.000000 0.321200,0.454600,-0.595100,0.192900,-0.980000,-0.048310 0.493300,0.454500,-0.375800,0.000000,-1.000000,0.000000 0.213100,0.300300,-0.540000,-0.144600,-0.212900,0.966300 -0.405600,-0.515100,-0.520800,-0.299600,-0.123100,0.946100 0.314300,-0.323800,0.555000,0.960400,0.056030,-0.272900 0.435300,0.031720,-0.588300,-0.947900,0.163600,0.273300 -0.329000,0.454600,0.540300,-0.165600,-0.986200,-0.002838 -0.391000,-0.319800,-0.510400,0.975300,0.006606,-0.220600 0.354900,0.092630,0.533900,0.678500,-0.018820,0.734300 0.344500,0.322200,0.628100,0.054510,-0.000577,-0.998500 0.407200,0.454600,-0.509100,0.059860,-0.979900,-0.190500 0.407200,-0.474200,-0.537700,0.980400,0.180700,0.079100 -0.330300,-0.343300,-0.571800,-0.295900,-0.007529,0.955200 0.317200,0.274500,0.587400,0.982900,0.183900,-0.008125 0.354800,0.330000,0.422800,-1.000000,0.000000,0.000000 -0.211400,0.377000,0.539500,0.000000,0.000000,-1.000000 -0.227000,0.496600,0.399300,0.000000,1.000000,0.000000 -0.281800,0.454500,0.289700,0.000000,-1.000000,0.000000 0.156600,0.496600,-0.274000,0.000000,1.000000,0.000000 -0.195700,0.496600,0.133100,0.000000,1.000000,0.000000 0.315800,-0.368400,-0.567000,0.829100,0.014850,0.558900 0.377000,0.252400,0.632700,-0.062700,-0.105600,-0.992400 0.148800,0.495600,0.023500,0.000000,1.000000,0.000000 0.321000,0.495600,0.031330,0.000000,1.000000,0.000000 -0.317800,0.298700,0.563700,-1.000000,0.000000,0.000256 -0.305300,0.496000,-0.007861,0.000000,0.999100,-0.042550 0.289700,0.369200,-0.539500,-0.024240,0.014290,0.999600 -0.461900,0.454500,-0.086100,0.000000,-1.000000,0.000000 0.007853,0.454500,0.344500,0.000000,-1.000000,0.000000 0.039170,0.454500,-0.477600,0.000000,-1.000000,0.000000 0.031340,0.454500,0.258400,0.000000,-1.000000,0.000000 -0.354800,0.416100,0.039170,1.000000,0.000000,0.000000 0.219200,0.496600,0.508900,0.000000,1.000000,0.000000 0.054830,0.496600,-0.187900,0.000000,1.000000,0.000000 -0.438400,0.496600,0.093970,0.000000,1.000000,0.000000 -0.336100,0.126300,0.595000,-0.997400,0.057500,0.044540 -0.397000,0.361300,0.281900,-1.000000,0.000000,0.000000 -0.430600,0.454500,0.634200,0.000771,-1.000000,-0.000964 0.305400,0.496600,-0.642000,0.000000,1.000000,0.000000 0.156600,0.496600,-0.180100,0.000000,1.000000,0.000000 0.219200,0.495600,0.211400,0.000000,1.000000,0.000000 0.117500,0.496600,-0.250500,0.000000,1.000000,0.000000 -0.039120,0.454500,0.321000,0.000000,-1.000000,0.000000 0.086150,0.454500,0.117500,0.000000,-1.000000,0.000000 0.078320,0.496600,0.407200,0.000000,1.000000,0.000000 0.353800,0.447200,-0.148700,-0.942900,-0.333000,0.000000 0.093970,0.496600,0.313200,0.000000,1.000000,0.000000 -0.023470,0.400500,0.539500,0.000000,0.000000,-1.000000 0.031340,0.454500,0.195800,0.000000,-1.000000,0.000000 -0.172200,0.454500,-0.493200,0.000000,-1.000000,0.000000 0.430600,0.454500,-0.219200,0.000000,-1.000000,0.000000 0.297500,0.496600,-0.328800,0.000000,1.000000,0.000000 -0.117400,0.496600,-0.313200,0.000000,1.000000,0.000000 0.031340,0.496600,0.602900,0.000000,1.000000,0.000000 -0.469700,0.454500,0.375800,0.000000,-1.000000,0.000000 0.156600,0.454500,-0.399300,0.000000,-1.000000,0.000000 -0.234900,0.322200,-0.539500,0.000000,0.000000,1.000000 -0.242700,0.496600,0.039170,0.000000,1.000000,0.000000 -0.375800,0.220400,0.641500,-0.035790,0.015690,0.999200 -0.397000,0.400400,-0.117400,-1.000000,0.000000,0.000000 -0.125200,0.454500,0.469800,0.000000,-1.000000,0.000000 -0.377400,-0.640100,0.630800,0.315200,-0.222100,0.922700 -0.148700,0.496600,0.219200,0.000000,1.000000,0.000000 -0.391400,0.496600,0.477600,0.000000,1.000000,0.000000 -0.382200,0.403100,-0.626200,0.090360,0.000044,0.995900 -0.266200,0.392600,-0.581600,0.000000,0.000000,-1.000000 -0.367900,0.243700,-0.507500,-0.093920,0.225400,-0.969700 0.351400,-0.552900,-0.539300,-0.648700,-0.273200,0.710400 -0.203500,0.454600,-0.595200,0.000000,-0.987100,-0.160200 0.492300,0.496100,-0.031300,0.103300,0.994700,-0.000014 0.172300,0.454600,-0.532200,0.000000,-0.984200,0.177000 0.523400,0.454800,-0.485400,0.261000,-0.965300,0.000000 0.383700,-0.262700,-0.500900,0.749800,-0.033320,0.660900 -0.441800,0.017820,-0.570800,-0.973500,-0.196100,-0.117500 0.421700,0.252500,-0.505500,0.200200,-0.176900,0.963700 0.310000,0.377000,-0.603200,0.995100,0.014170,0.098080 -0.452800,0.267200,-0.563600,-0.990400,0.102800,-0.092930 -0.359900,-0.085270,0.603400,0.059720,0.197600,-0.978500 -0.036510,0.457600,-0.710300,0.000000,-0.675700,-0.737200 0.375800,0.400500,0.502200,0.010790,0.010640,0.999900 -0.355300,0.337800,0.328900,0.998700,-0.014180,0.049560 -0.393200,-0.264200,-0.531000,-0.989600,-0.104200,-0.098720 -0.454600,0.155100,-0.590600,-0.981100,0.004445,-0.193500 -0.133100,0.454600,-0.595200,0.000000,-0.987100,-0.160200 0.141000,0.454500,-0.681100,0.000000,-1.000000,0.000000 -0.172200,0.496600,-0.352300,0.000000,1.000000,0.000000 0.054830,0.454500,0.430600,0.000000,-1.000000,0.000000 -0.477600,0.454500,0.133100,0.000000,-1.000000,0.000000 -0.234900,0.496600,0.336700,0.000000,1.000000,0.000000 0.391500,0.454500,0.602900,-0.000021,-1.000000,0.003854 0.336700,0.496600,-0.039120,0.000000,1.000000,0.000000 0.391500,0.496600,-0.649800,0.000000,1.000000,0.000000 -0.430600,0.454500,0.023510,0.000000,-1.000000,0.000000 -0.070440,0.496600,0.219200,0.000000,1.000000,0.000000 -0.242700,0.454500,0.101800,0.000000,-1.000000,0.000000 -0.458100,0.173400,-0.548100,-0.999800,-0.003072,0.020080 -0.357100,0.353100,0.200300,0.804300,-0.539600,-0.248700 -0.321000,0.454500,0.172300,0.000000,-1.000000,0.000000 -0.101800,0.454500,-0.696800,0.000000,-0.999900,-0.016280 -0.390600,0.311500,-0.330900,-0.095590,-0.936200,0.338300 0.396600,0.290900,-0.438400,0.999100,0.042570,0.000016 0.354800,0.416100,-0.062620,-1.000000,0.000000,0.000000 0.354800,0.361300,-0.422800,-1.000000,0.000000,0.000000 0.344300,0.454600,-0.281800,-0.169400,-0.985600,0.000000 0.015670,0.408300,0.580600,0.000000,-0.000064,1.000000 0.289700,0.454500,0.281900,0.000000,-1.000000,0.000000 -0.289700,0.454500,-0.242700,0.000000,-1.000000,0.000000 -0.438400,0.495600,-0.399300,0.000000,1.000000,0.000000 -0.305300,0.454500,-0.344500,0.000000,-1.000000,0.000000 -0.102200,0.362600,-0.581600,0.043280,-0.105200,-0.993500 -0.031300,0.431800,0.580600,0.000000,0.001221,1.000000 -0.391600,0.040260,-0.517600,0.082410,0.028370,0.996200 0.367500,-0.123400,0.503200,0.079750,-0.137600,0.987300 0.449600,0.236300,-0.540000,-0.991400,-0.063070,-0.114800 0.360200,-0.288300,0.489400,-0.013660,-0.054930,-0.998400 -0.436800,-0.602200,-0.547900,-0.848200,0.110400,0.518100 -0.450700,0.306300,-0.540100,-0.997600,0.060250,-0.034140 -0.361200,0.066820,0.634700,0.035750,-0.123400,0.991700 0.415000,0.454500,0.689000,0.000000,-1.000000,0.000000 -0.407300,0.454600,-0.336600,-0.169900,-0.985500,0.000000 0.407300,0.454600,0.281900,0.169200,-0.985600,0.000000 0.178200,0.321000,0.543800,-0.522500,-0.737000,-0.428800 0.449000,0.283200,0.524500,-0.983600,-0.051100,0.173200 0.343600,-0.202100,0.496900,0.172800,-0.070840,0.982400 -0.401300,0.452200,0.114800,-0.619200,-0.785200,0.000000 -0.423100,-0.539700,-0.577600,-0.929700,0.266000,-0.254600 -0.497500,0.494900,0.595000,-0.226200,0.974100,0.000000 -0.491900,0.495800,-0.485400,-0.100700,0.994900,-0.000097 -0.109600,0.496600,-0.368000,0.000000,1.000000,0.000000 0.366800,-0.272600,0.569300,0.403600,-0.035190,0.914200 0.305400,0.495800,0.391500,0.038980,0.998900,-0.024780 -0.446300,0.495600,-0.352300,0.000000,1.000000,0.000000 -0.339100,0.079340,-0.564000,0.992300,0.018990,0.122200 -0.446300,0.495600,-0.015670,0.000000,0.999800,-0.021260 -0.523400,0.454800,0.665500,-0.261200,-0.965300,0.000000 0.039170,0.454500,-0.203500,0.000000,-1.000000,0.000000 0.039170,0.454500,-0.360100,0.000000,-1.000000,0.000000 0.000024,0.454500,0.422800,0.000000,-1.000000,0.000000 0.396500,0.392600,-0.399300,0.999900,0.007063,-0.014200 -0.354800,0.345700,-0.289700,1.000000,0.000000,0.000000 0.430600,0.495600,0.422800,0.000000,1.000000,0.000000 -0.086100,0.496600,-0.555900,0.000000,1.000000,0.000000 -0.086100,0.454500,-0.360100,0.000000,-1.000000,0.000000 0.187900,0.369100,0.539500,0.000000,0.000000,-1.000000 0.227100,0.454500,-0.461900,0.000000,-1.000000,0.000000 -0.187900,0.496600,-0.602800,0.000000,1.000000,0.000000 0.227100,0.454500,0.164400,0.000000,-1.000000,0.000000 0.508900,0.454500,0.328900,0.000000,-1.000000,0.000000 0.477600,0.454500,0.109600,0.000000,-1.000000,0.000000 -0.039130,0.452200,-0.537500,0.000000,-0.737700,0.675100 0.086150,0.400500,0.539500,0.000000,0.000000,-1.000000 0.203600,0.447300,0.539600,0.000000,-0.179800,-0.983700 0.396500,0.400400,0.203600,0.999800,-0.017730,0.003534 -0.485400,0.454500,-0.195700,0.000000,-1.000000,0.000000 -0.355600,-0.595200,0.571100,-0.951200,0.254100,0.175200 0.445800,0.255900,-0.581800,-0.980200,-0.113200,0.162800 -0.399300,0.454500,0.595100,0.000000,-1.000000,0.000000 -0.485400,0.454500,-0.524500,0.000000,-1.000000,0.000000 0.180100,0.495600,0.109600,0.000000,1.000000,0.000000 -0.354800,0.408300,-0.211400,0.999800,0.021310,0.000000 -0.258300,0.454500,-0.148700,0.000000,-1.000000,0.000000 0.352800,0.173400,-0.641400,-0.218200,-0.025920,-0.975600 0.354900,0.369600,0.156700,-0.993400,-0.113100,-0.020170 0.354800,0.392600,0.086140,-1.000000,0.000000,0.000000 -0.217200,0.289200,-0.577400,0.683600,-0.725400,-0.080490 -0.325400,0.311100,-0.505900,0.550800,0.000000,0.834600 -0.332700,0.230700,0.631200,-0.690900,0.086630,-0.717700 0.450200,0.157700,-0.594100,0.978700,0.003488,-0.205500 0.420700,-0.007158,-0.520800,0.404600,0.033160,0.913900 -0.339000,-0.194400,0.500700,-0.188300,-0.068690,0.979700 -0.214400,0.478800,0.706000,0.006403,0.579700,0.814800 -0.356700,0.271900,0.461900,0.717700,-0.696200,-0.014730 0.461900,0.495600,0.555900,0.000064,1.000000,0.000000 -0.354800,0.384800,-0.352300,1.000000,0.000000,0.000000 -0.344500,0.454500,-0.689000,0.000000,-1.000000,0.000000 -0.469700,0.495600,-0.618500,0.021280,0.999800,-0.000028 -0.086100,0.454500,-0.258300,0.000000,-1.000000,0.000000 -0.258300,0.454500,-0.391400,0.000000,-1.000000,0.000000 0.125300,0.496600,-0.336600,0.000000,1.000000,0.000000 -0.289700,0.496600,-0.642000,0.000000,1.000000,0.000000 -0.352300,0.495600,-0.211400,0.000000,1.000000,0.000000 0.258400,0.496600,-0.062610,0.000000,1.000000,0.000000 0.203600,0.496600,-0.093930,0.000000,1.000000,0.000000 -0.023470,0.496600,0.446300,0.000000,1.000000,0.000000 -0.203500,0.454500,0.125300,0.000000,-1.000000,0.000000 -0.101800,0.496600,0.141000,0.000000,1.000000,0.000000 -0.389200,-0.107500,-0.591700,-0.430100,-0.252800,-0.866700 -0.167700,0.494500,0.684000,0.000000,0.969500,0.245100 -0.360600,-0.093400,-0.505200,0.105000,0.134700,0.985300 0.200800,0.304300,0.578800,-0.599400,-0.733700,0.320000 0.344300,0.454600,-0.407100,-0.169400,-0.985500,0.000000 0.450200,0.423900,0.540100,0.998800,-0.000004,0.049800 0.332900,-0.469100,0.572700,0.942600,0.083630,-0.323300 0.367300,-0.601600,0.611600,0.724200,-0.023230,-0.689200 0.396000,0.353500,0.274000,1.000000,0.000149,0.000021 -0.314500,0.287400,-0.605800,0.957400,-0.171900,-0.232100 -0.336600,0.454500,-0.461900,-0.004194,-1.000000,0.000000 -0.274000,0.377000,0.539500,0.000000,0.000000,-1.000000 0.387500,-0.063230,0.509200,0.043370,-0.116800,0.992200 0.407100,0.149500,-0.521900,0.036630,0.121400,-0.991900 0.258400,0.306500,0.539500,0.000000,0.000000,-1.000000 -0.271400,0.271900,-0.580800,0.000000,-0.559000,-0.829200 0.330900,-0.052960,0.555300,0.988000,-0.122300,0.094800 0.266200,0.454500,0.352300,0.000000,-1.000000,0.000000 0.391000,-0.332000,0.537000,-0.983600,-0.036170,-0.176600 -0.336800,-0.186800,-0.579900,-0.114600,0.089970,0.989300 -0.326600,-0.092520,-0.547900,-0.988100,-0.128400,-0.085050 -0.438000,0.183800,-0.617900,0.685700,-0.016290,0.727700 0.507300,0.491400,-0.078280,0.473800,0.880600,0.000131 -0.368100,-0.031060,0.614500,0.053530,0.207800,-0.976700 -0.399300,0.496400,-0.672800,0.000000,0.998300,-0.058930 0.362300,-0.202900,-0.580100,-0.229600,0.137400,0.963500 -0.321600,0.495500,0.678900,0.000000,0.990100,0.140600 0.000024,0.454500,-0.054780,0.000000,-1.000000,0.000000 0.415000,0.496600,-0.375800,0.000000,1.000000,0.000000 0.281900,0.454500,0.493300,0.000000,-1.000000,0.000000 0.250600,0.454500,0.415000,0.000000,-1.000000,0.000000 -0.336600,0.454500,0.227100,-0.004194,-1.000000,0.000000 -0.289700,0.496600,0.133100,0.000000,1.000000,0.000000 0.054830,0.496600,-0.610700,0.000000,1.000000,0.000000 0.446300,0.496600,-0.649800,0.000000,1.000000,0.000000 0.444600,0.079960,-0.547400,-0.963200,0.168000,-0.209700 0.318500,0.252900,-0.548600,-0.961700,-0.257300,0.094830 0.330800,-0.446500,0.518000,-0.817000,-0.204800,-0.539000 0.333000,0.017100,-0.595600,0.994100,-0.087390,0.064380 -0.415000,0.495800,-0.563700,-0.038990,0.998900,0.024830 0.340500,0.324800,0.499800,-0.388400,0.000000,-0.921500 -0.485300,0.496500,0.234900,-0.060600,0.998200,0.000000 -0.328700,0.212600,0.556100,-0.982500,0.145000,0.116800 0.354900,0.345600,-0.258300,-0.995700,-0.085460,0.036090 0.242700,0.290900,0.581600,0.004807,-0.006140,1.000000 0.469800,0.495600,0.399300,-0.021260,0.999800,0.000000 0.462000,0.496600,-0.117400,0.000000,1.000000,0.000000 -0.321100,0.421300,-0.518400,-0.951300,-0.002341,-0.308100 0.325800,-0.053330,-0.579200,0.994800,-0.098010,0.028140 -0.445000,0.361300,0.555700,-0.995800,0.000000,0.091840 0.047150,0.378200,-0.581500,-0.007688,-0.075810,-0.997100 -0.438200,0.170000,0.621100,-0.775800,-0.022430,0.630600 0.397000,0.306500,0.469800,1.000000,0.000000,0.003614 0.418000,-0.532600,-0.578200,0.921200,0.279900,-0.270200 0.281900,0.298700,-0.581600,0.000642,0.000000,-1.000000 -0.457500,0.227900,-0.540300,-0.997300,0.060770,0.040280 -0.435800,0.314300,-0.495600,-0.404900,-0.000825,0.914300 -0.140900,0.496600,-0.242700,0.000000,1.000000,0.000000 -0.062600,0.377000,0.539500,0.044750,-0.115100,-0.992300 -0.148700,0.454500,0.649900,0.000000,-1.000000,0.000000 -0.164400,0.454500,0.352300,0.000000,-1.000000,0.000000 0.133100,0.454500,0.501100,0.000000,-1.000000,0.000000 -0.352300,0.496600,0.133100,0.000000,1.000000,0.000000 -0.219200,0.496600,-0.430600,0.000000,1.000000,0.000000 -0.397000,0.369100,0.360200,-1.000000,0.000000,0.000000 -0.469700,0.454500,0.493300,0.000000,-1.000000,0.000000 0.432500,-0.635800,0.619700,0.589200,-0.027370,0.807600 0.415300,-0.610600,0.543000,-0.103900,0.216900,0.970700 -0.148700,0.496600,0.039170,0.000000,1.000000,0.000000 0.309500,-0.241800,0.548100,-0.997900,0.052940,0.038570 0.109600,0.496600,-0.172200,0.000000,1.000000,0.000000 0.352300,0.496600,-0.665400,0.000000,0.999900,-0.016000 -0.258300,0.454500,-0.297500,0.000000,-1.000000,0.000000 0.354800,0.400500,-0.148700,-1.000000,0.000000,0.000000 0.462000,0.454500,0.148800,0.000000,-1.000000,0.000000 -0.117400,0.496600,-0.642000,0.000000,1.000000,0.000000 -0.477600,0.454500,0.297500,0.000000,-1.000000,0.000000 0.086150,0.454500,-0.242700,0.000000,-1.000000,0.000000 -0.023460,0.454500,0.383700,0.000000,-1.000000,0.000000 -0.274000,0.454500,0.007854,0.000000,-1.000000,0.000000 -0.512300,0.488200,0.015670,-0.574400,0.818600,-0.000018 -0.023470,0.496600,-0.461900,0.000000,1.000000,0.000000 -0.054780,0.496600,0.313200,0.000000,1.000000,0.000000 0.448600,0.094770,0.587400,-0.972900,0.141700,-0.182800 0.007851,0.496600,0.266200,0.000000,1.000000,0.000000 -0.454100,0.496600,0.532400,0.000000,1.000000,0.000000 0.399300,0.496600,0.548100,0.017780,0.999700,-0.014240 0.172300,0.454500,0.407200,0.000000,-1.000000,0.000000 -0.242700,0.384800,0.580600,-0.000000,-0.000064,1.000000 -0.234900,0.496600,0.602900,0.000000,1.000000,0.000000 0.180100,0.454500,-0.125200,0.000000,-1.000000,0.000000 0.141000,0.454500,0.258400,0.000000,-1.000000,0.000000 0.164400,0.496600,0.391500,0.000000,1.000000,0.000000 -0.414900,0.496600,0.250600,0.000000,1.000000,0.000000 0.430600,0.496600,-0.250500,0.000000,1.000000,0.000000 -0.117400,0.496600,0.422800,0.000000,1.000000,0.000000 0.164400,0.454500,-0.313200,0.000000,-1.000000,0.000000 0.203600,0.496600,-0.563700,0.000000,1.000000,0.000000 0.141000,0.384800,-0.581600,0.000000,0.000000,-1.000000 -0.180100,0.454500,-0.046950,0.000000,-1.000000,0.000000 0.015680,0.496600,-0.391400,0.000000,1.000000,0.000000 0.454100,0.454500,-0.407100,0.000000,-1.000000,0.000000 0.180100,0.369100,-0.539500,0.000000,0.000000,1.000000 0.180100,0.496600,-0.438400,0.000000,1.000000,0.000000 -0.203500,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.148700,0.496600,0.462000,0.000000,1.000000,0.000000 -0.305300,0.495600,-0.203500,0.000000,1.000000,0.000000 -0.305300,0.462800,-0.712300,0.000000,-0.027180,-0.999600 -0.397000,0.306500,-0.461900,-1.000000,0.000000,0.000000 -0.318100,0.337800,-0.540400,-0.998400,0.000000,-0.056730 -0.330100,-0.042820,0.537200,0.852700,0.190600,-0.486300 -0.397000,0.416100,0.360200,-1.000000,0.000000,0.000000 0.297500,0.486000,-0.698800,0.007060,0.767000,-0.641600 -0.354800,0.408300,0.125300,0.999900,-0.014160,-0.003555 -0.164400,0.408300,-0.540000,0.003489,0.014200,0.999900 -0.355800,0.423900,-0.039130,1.000000,0.000000,0.000000 -0.336800,-0.002341,-0.559100,-0.987700,-0.124200,-0.094830 0.317500,-0.366200,0.511000,-0.933900,-0.086610,-0.346800 0.422100,-0.661600,0.552100,0.162000,-0.286600,-0.944300 -0.148700,0.454500,-0.203500,0.000000,-1.000000,0.000000 0.446300,0.495600,0.086140,0.000000,1.000000,0.000000 -0.395100,0.374000,0.073240,-0.690800,-0.721800,-0.043020 -0.368300,-0.483300,-0.591100,0.077330,-0.236500,0.968600 -0.297500,0.454500,-0.508900,-0.003764,-1.000000,-0.000216 -0.333900,0.032130,0.564200,0.995700,0.039670,-0.083800 -0.343200,0.150700,0.537300,0.824400,-0.188400,-0.533600 -0.445100,-0.623800,-0.594000,-0.930600,0.301100,-0.208300 0.107000,0.480900,0.704500,-0.000283,0.601300,0.799000 0.462000,0.454500,-0.508900,-0.004389,-1.000000,-0.000064 -0.310200,-0.272700,0.515800,-0.951100,-0.008036,0.308800 0.442200,0.361300,0.506800,-0.810000,-0.000043,0.586400 0.396200,0.378500,0.086470,0.981200,-0.192800,-0.005586 -0.308400,-0.194800,0.548200,0.996700,0.071500,-0.037630 -0.429500,0.243300,0.624900,-0.577700,0.119400,0.807500 -0.311100,-0.343500,0.555900,-0.990900,0.050420,-0.124400 -0.355500,0.384800,0.321000,0.999100,-0.038930,0.014150 0.439500,0.400500,-0.579500,-0.989900,0.000004,0.141700 -0.023460,0.454600,-0.595200,0.000000,-0.987100,-0.160200 -0.340200,-0.532300,0.571400,-0.977800,0.208800,0.016080 0.527900,0.462100,0.595000,0.994700,0.102500,0.000000 -0.307000,-0.256700,0.563500,0.946500,0.037330,0.320400 -0.195700,0.454500,0.516800,0.000000,-1.000000,0.000000 0.367400,0.172700,0.519700,0.285900,0.138600,0.948200 0.397300,0.447200,-0.195700,0.929600,-0.368600,0.000000 0.335100,0.452800,0.619900,0.208100,-0.891600,-0.402100 -0.355800,0.322200,-0.469800,1.000000,0.000000,0.000000 0.454100,0.496600,-0.015640,0.000000,0.999800,0.021310 -0.352300,-0.445700,0.591400,-0.022820,0.149000,0.988600 0.274100,0.424000,-0.539500,0.000000,0.000000,1.000000 0.344600,-0.249500,-0.494600,-0.084090,0.063950,0.994400 0.349500,-0.037770,-0.522900,0.425600,-0.149300,-0.892500 -0.344300,0.454600,-0.117400,0.165600,-0.986200,0.000000 -0.492200,0.495900,-0.665500,-0.104700,0.994400,0.017470 -0.397000,0.330000,0.344500,-1.000000,-0.000021,-0.000021 -0.367900,0.189100,-0.638500,-0.002885,-0.003082,-1.000000 0.397000,0.369100,-0.195700,1.000000,-0.000535,0.000235 -0.400200,0.429800,-0.498100,-0.490300,0.002870,-0.871500 -0.386800,-0.526400,-0.602500,-0.163500,0.250300,-0.954300 0.359900,-0.163100,0.585900,0.109700,-0.202300,0.973200 -0.366700,-0.572500,-0.538600,-0.424400,0.296900,-0.855400 0.227100,0.454600,-0.595200,0.000000,-0.987100,-0.160200 -0.406400,-0.459700,-0.558700,-0.944500,0.198400,-0.261900 0.391300,-0.385400,-0.534900,-0.986200,-0.159300,0.045380 0.359800,0.290400,-0.502700,0.035990,0.053170,-0.997900 -0.344600,-0.418500,0.508900,-0.142200,0.197600,0.969900 -0.527900,0.462100,-0.344500,-0.997200,0.074480,0.000019 0.436300,-0.593300,0.588000,0.917500,0.318800,0.237900 -0.430600,0.469700,-0.710600,-0.000046,0.315500,-0.948900 -0.359200,0.315300,0.634500,-0.053140,0.025640,0.998300 0.397900,0.447200,-0.407100,0.945800,-0.324600,0.000015 0.375200,-0.576800,-0.616400,0.088030,-0.225100,0.970300 0.336100,0.009016,0.587100,0.994500,-0.104200,0.007912 -0.502200,0.493400,-0.587200,-0.342700,0.939500,0.000141 0.502400,0.493700,0.198400,0.374400,0.927300,0.000000 0.355700,-0.577600,0.549200,-0.870200,-0.322100,-0.372800 0.380400,0.494800,0.684100,0.000000,0.961000,0.276500 0.182700,0.484600,0.701300,-0.000154,0.699100,0.715000 0.511900,0.488600,-0.190500,0.569700,0.821800,-0.000074 0.418800,0.314100,-0.621200,0.532500,0.085940,-0.842100 0.437200,0.235400,-0.618600,0.796900,0.131700,-0.589600 -0.461900,0.454500,0.673400,0.000000,-1.000000,0.000000 -0.394300,-0.421800,0.555700,0.957400,-0.160300,-0.240300 0.406800,-0.095790,0.578000,-0.771100,0.253300,-0.584200 0.289600,0.322200,0.581600,-0.131400,0.000030,0.991300 0.403500,-0.487800,0.516700,0.473400,-0.115700,-0.873200 0.477600,0.496600,-0.281800,0.006646,1.000000,0.000000 -0.485200,0.496200,-0.289700,-0.009163,1.000000,-0.000028 -0.355200,0.392600,-0.000013,0.999000,0.031760,-0.031890 0.321000,0.454500,-0.086100,0.000000,-1.000000,0.000000 -0.354900,0.439600,0.156600,0.997900,-0.065340,0.000000 0.437900,0.071390,0.525500,-0.595600,0.032460,0.802600 0.371300,-0.665700,-0.610800,0.775200,-0.580700,0.248600 -0.339300,-0.112000,-0.595700,0.222500,-0.156400,-0.962300 -0.354800,0.369200,-0.164400,0.999900,-0.014540,0.002095 0.344700,-0.234200,0.575100,-0.035170,0.109500,-0.993400 0.406600,-0.140000,0.549000,-0.948100,0.242900,-0.205100 -0.324500,0.205100,0.595200,0.992500,-0.122000,0.000176 -0.344200,-0.264900,0.578000,-0.075610,-0.092500,0.992800 0.375800,0.212500,0.635700,-0.042030,-0.014160,-0.999000 0.360200,0.495600,0.133100,0.000000,1.000000,0.000000 -0.234900,0.496600,0.438500,0.000000,1.000000,0.000000 0.289700,0.454500,0.673400,0.000000,-1.000000,0.000000 -0.078270,0.496600,-0.516700,0.000000,1.000000,0.000000 0.354800,0.400500,-0.360100,-1.000000,0.000000,0.000000 0.383700,0.495600,0.415000,0.000000,1.000000,0.000000 0.344500,0.496600,-0.219200,0.000000,1.000000,0.000000 -0.407100,0.495600,-0.219200,0.000000,1.000000,0.000000 -0.274000,0.454500,0.610700,0.000000,-1.000000,0.000000 0.156600,0.454500,-0.266200,0.000000,-1.000000,0.000000 -0.101800,0.454500,0.360200,0.000000,-1.000000,0.000000 0.109600,0.496600,0.657700,0.000000,1.000000,0.000258 -0.415200,-0.559900,0.540100,0.629100,0.019450,0.777100 -0.031300,0.496600,0.649900,0.000000,1.000000,0.000000 0.397000,0.423900,0.062640,1.000000,0.000000,0.000000 0.039170,0.496600,0.399300,0.000000,1.000000,0.000000 0.007851,0.496600,-0.305300,0.000000,1.000000,0.000000 -0.219200,0.462800,-0.712300,0.000000,-0.027170,-0.999600 0.419200,0.317200,0.616000,-0.520700,-0.075500,-0.850400 0.070490,0.454500,0.031340,0.000000,-1.000000,0.000000 -0.031300,0.496000,-0.007861,-0.000000,0.999100,-0.042550 -0.039130,0.496600,-0.344500,0.000000,1.000000,0.000000 -0.313200,0.454500,0.031340,0.000000,-1.000000,0.000000 0.031340,0.496600,0.493300,0.000000,1.000000,0.000000 0.438500,0.454500,0.039170,0.000000,-1.000000,0.000000 0.039170,0.496600,-0.563700,0.000000,1.000000,0.000000 -0.355300,0.298900,-0.375900,0.995700,-0.083570,0.038840 -0.101800,0.454500,0.047000,0.000000,-1.000000,0.000000 0.527200,0.457300,-0.313200,0.848800,-0.528700,0.000000 -0.477600,0.496600,0.086150,-0.006633,1.000000,0.000000 -0.331700,0.353500,-0.626100,-0.300700,-0.015570,0.953600 0.397000,0.392600,-0.446300,0.999800,0.014210,0.014200 0.047000,0.439600,0.539500,0.000000,0.003618,-1.000000 0.336700,0.496600,-0.571500,0.000000,1.000000,0.000000 0.352300,0.496600,0.493300,0.000000,1.000000,0.000000 -0.397000,0.400400,0.274000,-1.000000,0.000000,0.000000 0.397000,0.400400,-0.266200,1.000000,0.000000,0.000000 -0.438400,0.495600,-0.140900,0.000000,1.000000,0.000000 -0.336600,0.454500,0.407200,-0.004194,-1.000000,0.000000 0.141000,0.454500,-0.446300,0.000000,-1.000000,0.000000 -0.497600,0.494900,-0.070450,-0.227000,0.973900,-0.000064 -0.355800,0.345700,0.368000,0.999500,0.021210,-0.021210 -0.062610,0.496600,0.555900,0.000000,1.000000,0.000000 -0.148700,0.353500,0.581600,0.003704,0.014070,0.999900 -0.281800,0.496600,0.093970,0.000000,1.000000,0.000000 0.274100,0.454500,0.093980,0.000000,-1.000000,0.000000 -0.281800,0.392600,-0.540500,0.000000,0.000000,1.000000 0.360100,-0.414100,-0.507100,0.032670,0.147000,-0.988600 0.258400,0.306500,-0.539700,0.042550,-0.021230,0.998900 0.397000,0.377000,-0.313200,1.000000,0.000000,0.000000 0.297500,0.454500,-0.477600,0.000000,-1.000000,0.000000 0.297500,0.496600,-0.548000,0.000000,1.000000,0.000000 -0.156600,0.496600,0.180100,0.000000,1.000000,0.000000 -0.164400,0.495600,-0.164400,0.000000,1.000000,0.000000 0.461900,0.495600,0.297500,0.000064,1.000000,0.000000 0.454100,0.454500,0.657700,0.000000,-1.000000,0.000000 -0.344500,0.496600,-0.571500,0.000000,1.000000,0.000000 0.407200,0.454500,0.649900,-0.000469,-1.000000,-0.000469 -0.397000,0.361300,-0.461900,-1.000000,0.000000,0.000000 0.411700,-0.092500,-0.519200,0.887900,-0.124700,0.442800 0.415000,0.188600,0.513100,-0.008779,0.122800,0.992400 -0.383800,-0.600500,0.623000,-0.005880,-0.254200,-0.967100 0.195800,0.408300,-0.581600,0.000000,0.000000,-1.000000 -0.359900,-0.036640,-0.612300,0.029480,-0.198300,-0.979700 -0.401000,-0.407000,-0.532200,-0.987300,0.155600,-0.033170 0.328200,0.220900,0.614500,-0.958600,-0.126000,0.255400 -0.350700,0.452200,-0.375800,0.599000,-0.800700,0.007224 0.402300,0.453000,0.501400,0.503300,-0.857900,0.103200 0.062650,0.431800,-0.540500,0.000000,0.000064,1.000000 0.406300,-0.626400,-0.631000,0.180300,0.221600,-0.958300 0.527200,0.457300,0.274000,0.849300,-0.527900,0.000000 -0.336800,0.048570,-0.602400,0.988300,-0.005639,-0.152400 0.334800,0.103000,-0.617000,-0.977900,0.000015,-0.208900 0.441100,0.117900,-0.611100,-0.869100,0.114300,0.481300 0.338800,0.063930,0.595000,0.998900,-0.016530,-0.043040 0.457600,0.142100,0.563400,0.998700,0.000881,0.051740 -0.388300,-0.264800,0.510500,-0.960000,-0.071530,-0.270600 0.376900,0.071830,-0.635200,0.048580,-0.137900,-0.989300 -0.419400,-0.076420,0.540200,-0.980600,-0.195900,-0.005409 -0.391400,0.024800,0.523000,-0.069830,-0.072520,0.994900 0.407200,0.102900,0.518300,-0.053490,0.027480,-0.998200 0.527900,0.462100,0.093960,0.995300,0.096330,0.000031 0.368700,0.016480,0.518400,-0.214800,0.117600,-0.969600 -0.317800,0.416100,0.571500,-1.000000,0.000000,0.003862 0.070490,0.454500,-0.681100,0.000000,-1.000000,0.000000 0.384100,0.353500,-0.629400,-0.110600,-0.007214,0.993800 -0.439500,0.040180,0.563700,0.990400,0.132900,-0.038460 0.354900,0.439600,0.430600,-0.997900,-0.064920,0.000000 0.421200,0.181500,0.631500,0.365700,-0.007175,0.930700 -0.172200,0.369100,-0.539700,-0.010620,0.031920,0.999400 0.469800,0.454500,-0.689000,0.000000,-1.000000,0.000000 0.109600,0.496600,-0.414900,0.000000,1.000000,0.000000 0.125300,0.454500,0.328900,0.000000,-1.000000,0.000000 -0.180100,0.408300,0.539500,0.000000,0.000000,-1.000000 0.360000,-0.123900,-0.507300,0.083500,-0.127700,-0.988300 0.338400,0.267200,-0.637100,-0.239800,0.033430,-0.970300 -0.133100,0.496600,0.344500,0.000000,1.000000,0.000000 -0.397000,0.369100,-0.289700,-1.000000,0.000000,0.000000 -0.527200,0.457300,0.441100,-0.847600,-0.530600,-0.000003 -0.266200,0.496600,-0.422800,0.000000,1.000000,0.000000 -0.442500,0.392600,-0.506700,0.795300,0.010320,-0.606200 0.133100,0.454500,0.649900,0.000000,-1.000000,0.000000 -0.352300,0.495600,-0.399300,0.000000,1.000000,0.000000 -0.321000,0.454500,-0.649800,0.000000,-1.000000,0.000000 0.148800,0.384800,0.539500,0.000000,0.000000,-1.000000 0.492300,0.496100,0.626400,0.075270,0.997200,0.000000 0.313200,0.454500,0.141000,0.000000,-1.000000,0.000000 -0.023460,0.454500,0.148800,0.000000,-1.000000,0.000000 0.195800,0.496600,-0.180100,0.000000,1.000000,0.000000 0.258400,0.454500,-0.140900,0.000000,-1.000000,0.000000 0.375800,0.495600,0.360200,0.000000,1.000000,0.000000 0.396800,0.416100,-0.360200,0.999800,-0.017770,-0.007092 -0.368400,0.087230,0.525300,0.246700,0.038890,-0.968300 0.086140,0.496600,-0.516700,0.000000,1.000000,0.000000 -0.414900,0.454500,-0.093930,0.003810,-1.000000,0.000000 0.438500,0.495600,0.250600,0.000000,1.000000,0.000000 -0.507200,0.491400,-0.242700,-0.437300,0.899300,-0.000002 0.047000,0.496600,-0.046950,0.000000,1.000000,0.000000 0.454100,0.454500,-0.062610,0.000000,-1.000000,0.000000 0.172300,0.454500,-0.062610,0.000000,-1.000000,0.000000 0.062660,0.454500,0.368000,0.000000,-1.000000,0.000000 -0.062610,0.454500,-0.156600,0.000000,-1.000000,0.000000 0.485400,0.454500,0.007854,0.000000,-1.000000,0.000000 -0.007806,0.454500,-0.508900,0.000000,-1.000000,0.000000 -0.023470,0.496600,-0.078270,0.000000,1.000000,0.000000 -0.046950,0.496600,-0.211400,0.000000,1.000000,0.000000 -0.015640,0.496600,0.133100,0.000000,1.000000,0.000000 0.109600,0.454500,0.007854,0.000000,-1.000000,0.000000 0.195800,0.454500,0.007854,0.000000,-1.000000,0.000000 0.396000,0.337800,0.430600,0.999400,0.010650,-0.032070 -0.046950,0.496600,0.054830,0.000000,1.000000,0.000000 -0.414900,0.496600,0.524600,0.000000,1.000000,0.000000 0.203600,0.496600,0.587200,0.000000,1.000000,0.000000 0.148800,0.496600,0.540300,0.000000,1.000000,0.000000 -0.164400,0.454500,-0.383600,0.000000,-1.000000,0.000000 0.172300,0.496600,-0.360100,0.000000,1.000000,0.000000 0.305400,0.454500,-0.219200,0.000000,-1.000000,0.000000 -0.219200,0.454500,0.657700,0.000000,-1.000000,0.000000 0.368000,0.495600,0.219200,0.000000,1.000000,0.000000 0.396000,0.330000,-0.407100,1.000000,-0.003561,-0.003561 -0.203500,0.496600,-0.328800,0.000000,1.000000,0.000000 0.289700,0.496600,-0.281800,0.000000,1.000000,0.000000 -0.242700,0.496600,-0.602800,0.000000,1.000000,0.000000 0.446300,0.454500,0.321000,0.000000,-1.000000,0.000000 -0.211400,0.454500,-0.383600,0.000000,-1.000000,0.000000 -0.397000,0.400400,-0.195700,-1.000000,0.000000,0.000000 0.354800,0.322200,-0.383600,-1.000000,0.000000,0.000000 -0.328800,0.454500,-0.156600,0.000000,-1.000000,0.000000 -0.227000,0.454500,-0.187900,0.000000,-1.000000,0.000000 -0.430600,0.496600,0.446300,0.000000,1.000000,0.000000 -0.219200,0.454500,-0.649800,0.000000,-1.000000,0.000000 -0.133100,0.392600,0.539500,0.000000,0.000000,-1.000000 0.101800,0.454500,-0.140900,0.000000,-1.000000,0.000000 0.101800,0.454500,-0.195700,0.000000,-1.000000,0.000000 -0.023460,0.454500,-0.140900,0.000000,-1.000000,0.000000 0.219200,0.454500,0.242700,0.000000,-1.000000,0.000000 -0.164400,0.496600,0.407200,0.000000,1.000000,0.000000 0.211400,0.454500,0.352300,0.000000,-1.000000,0.000000 0.023510,0.496600,0.321000,0.000000,1.000000,0.000000 0.086150,0.454500,0.187900,0.000000,-1.000000,0.000000 -0.234900,0.495600,-0.086110,0.000000,1.000000,0.000000 0.101800,0.495600,0.109600,0.031880,0.999300,-0.021270 0.078320,0.496600,0.579400,0.000000,1.000000,0.000000 0.078320,0.496600,0.219200,0.000000,1.000000,0.000000 0.109600,0.496600,-0.595000,0.000000,1.000000,0.000000 -0.070450,0.495600,-0.054790,0.000000,1.000000,0.000000 -0.266200,0.495600,-0.344500,0.000150,1.000000,-0.000107 0.250600,0.496600,0.649900,0.000000,1.000000,0.000000 0.339100,0.048200,-0.553100,0.937900,-0.061860,-0.341300 -0.125300,0.496300,-0.180000,-0.042500,0.998600,0.031840 0.093970,0.496600,-0.313200,0.000000,1.000000,0.000000 -0.305300,0.495600,-0.046960,0.000000,1.000000,0.000000 0.141000,0.496600,-0.626300,0.000000,1.000000,0.000000 -0.375800,0.496600,0.375800,0.000000,1.000000,0.000000 0.438500,0.454500,0.360200,0.000000,-1.000000,0.000000 -0.242700,0.322200,0.581600,0.000000,0.000000,1.000000 -0.242700,0.454500,-0.469700,0.000000,-1.000000,0.000000 -0.438400,0.496600,0.164400,0.000000,1.000000,0.000000 0.250600,0.454500,0.673400,0.000000,-1.000000,0.000000 0.491900,0.495800,-0.446300,0.127500,0.991800,-0.000078 0.289700,0.454500,-0.407100,0.000000,-1.000000,0.000000 -0.187900,0.454500,0.430600,0.000000,-1.000000,0.000000 0.368000,-0.390500,0.499500,-0.054780,0.128900,0.990100 0.211400,0.345700,-0.539700,-0.007083,-0.007083,0.999900 0.274100,0.454500,0.446300,0.000000,-1.000000,0.000000 0.396600,0.400500,0.438400,0.999600,0.021190,-0.021140 0.375800,0.496600,0.642000,0.000000,1.000000,0.000000 -0.117400,0.454500,0.195800,0.000000,-1.000000,0.000000 -0.336600,0.454500,0.352300,-0.004194,-1.000000,0.000000 0.039160,0.439500,0.580600,0.000000,-0.150600,0.988600 -0.397000,0.408300,0.039150,-1.000000,0.000000,0.000000 0.383900,0.149900,-0.639500,-0.086490,-0.015730,0.996100 -0.336000,-0.233400,-0.496400,-0.265900,-0.074600,-0.961100 -0.414900,0.454500,0.438500,0.003810,-1.000000,0.000000 -0.501100,0.454500,-0.642000,0.000000,-1.000000,0.000000 0.172300,0.454500,-0.493200,0.000000,-1.000000,0.000000 -0.454100,0.495600,-0.313200,0.000000,1.000000,0.000000 -0.394800,-0.171200,-0.499500,-0.497800,-0.007166,0.867300 0.339300,0.221900,0.519900,-0.639000,-0.264900,-0.722200 0.354800,0.416100,-0.446300,-1.000000,0.000000,0.000000 0.156600,0.484900,-0.700900,0.000156,0.698200,-0.715900 -0.315400,-0.358600,0.509700,0.831100,-0.081510,-0.550200 -0.355400,0.283100,-0.485300,0.978500,0.037770,0.202800 -0.086110,0.408300,0.580600,0.000000,0.000000,1.000000 0.326400,-0.109200,-0.521600,-0.752700,0.168900,0.636300 0.023510,0.496600,-0.665400,0.000000,0.999900,-0.016000 0.485400,0.454500,-0.477600,0.000000,-1.000000,0.000000 -0.330100,0.008847,0.594900,0.993600,0.105200,0.040890 0.392100,0.071660,-0.524500,0.081790,-0.029030,-0.996200 0.368000,0.269800,0.462000,-0.017000,-0.999900,0.000000 0.397800,-0.433900,0.560500,-0.894900,-0.195200,-0.401200 0.345100,-0.535300,0.560100,0.970200,0.227100,0.083850 -0.376300,0.400500,0.630200,0.119000,0.000000,-0.992900 -0.396500,-0.108900,0.584000,0.676900,0.260900,-0.688300 -0.313700,-0.306600,-0.519900,-0.982000,0.074650,-0.173600 0.317900,0.400500,0.540100,0.998400,0.000000,0.056850 -0.516300,0.485000,0.117500,-0.682000,0.731400,0.000006 -0.433500,-0.587400,0.564100,-0.970000,0.230200,-0.078280 -0.320300,-0.157500,-0.525500,-0.963700,-0.149300,-0.221600 0.361100,0.359500,-0.165700,-0.080230,-0.977400,0.195300 -0.447200,0.167600,0.533400,0.882200,0.080020,0.464000 0.328900,0.454500,0.657700,0.000000,-1.000000,0.000000 -0.355100,0.370700,-0.125400,0.981700,-0.190500,0.001699 -0.317400,0.306500,0.518000,0.953000,0.000000,-0.302900 0.335300,0.071640,-0.595000,0.999500,-0.023640,-0.022310 -0.439800,0.088160,0.608900,-0.869000,-0.163600,0.466900 -0.305200,-0.296400,0.548100,0.999300,-0.029880,0.022280 -0.439200,0.222500,-0.619400,-0.708900,0.064320,-0.702300 0.422200,0.379600,0.616200,0.544300,-0.003923,0.838900 -0.195700,0.490500,-0.693700,-0.000024,0.863200,-0.504800 -0.294900,0.271900,0.542400,-0.001383,-0.803200,-0.595700 0.410000,-0.005653,-0.612600,0.504100,-0.248800,-0.827000 0.330400,-0.485800,-0.555300,0.966900,0.243100,-0.077370 0.438500,0.454500,0.438500,0.000000,-1.000000,0.000000 0.367800,-0.508700,0.520700,0.119300,0.225700,0.966900 0.039800,0.378900,0.581300,-0.015960,-0.096400,0.995200 0.485400,0.454500,-0.234900,0.000000,-1.000000,0.000000 -0.379000,0.322000,0.302900,-0.000127,-0.933200,-0.359300 -0.375700,-0.500600,0.521900,-0.040210,0.211300,0.976600 -0.328000,0.242100,-0.539300,-0.962600,0.235300,-0.134500 0.323100,-0.446100,-0.555600,0.988800,0.149500,-0.005625 0.315900,-0.290100,0.502800,-0.817800,-0.071310,-0.571100 0.344500,-0.351200,-0.500200,0.088800,0.052580,-0.994700 0.441000,0.392600,-0.511700,0.891900,-0.005052,0.452200 -0.337400,0.146900,-0.595000,-0.991200,0.132600,-0.002527 0.470400,0.495800,-0.679000,-0.000016,0.990000,-0.141400 0.485400,0.454500,0.689000,0.000000,-1.000000,0.000000 0.401000,0.452100,-0.117400,0.592100,-0.805900,0.000000 -0.522300,0.477400,0.344500,-0.850600,0.525900,0.000105 0.354900,0.439600,0.172300,-0.997900,-0.064920,0.000000 0.461900,0.490500,0.693600,0.000035,0.860400,0.509600 -0.422800,0.454500,0.321000,0.000000,-1.000000,0.000000 -0.447100,0.452100,-0.596500,-0.422700,-0.894100,-0.148200 0.361100,0.270100,-0.454100,-0.177600,-0.984100,0.000000 0.376000,-0.519900,-0.523800,-0.072800,-0.211300,0.974700 -0.437000,0.384800,0.591200,0.953200,-0.000104,-0.302400 -0.390400,-0.382900,0.523300,0.959000,-0.177800,0.220700 -0.512000,0.488500,0.461900,-0.570700,0.821200,0.000000 -0.414000,-0.079470,-0.579800,-0.818000,-0.252100,-0.517000 -0.383600,-0.602900,-0.622300,0.030350,0.250900,-0.967500 -0.070440,0.384800,-0.581600,0.000021,-0.000043,-1.000000 -0.527900,0.462100,0.508900,-0.999200,0.040090,-0.000051 0.438100,0.011850,0.582300,0.940000,-0.237300,0.245100 0.329100,0.195800,0.586500,-0.991400,-0.123900,-0.042680 -0.405100,0.191000,-0.635700,-0.165400,0.003969,-0.986200 -0.397000,0.322200,-0.399300,-1.000000,0.000000,0.000000 0.317800,0.298700,-0.571500,0.997800,0.010880,-0.065950 0.396800,0.378600,-0.039210,0.986400,-0.164600,0.000528 -0.413700,-0.632700,0.627200,0.325100,-0.053300,-0.944200 -0.354800,0.416100,-0.258400,0.999800,0.021310,0.000000 -0.501100,0.454500,-0.414900,0.000000,-1.000000,0.000000 0.336000,0.384800,-0.631500,0.192900,-0.013910,0.981100 -0.360200,0.123900,-0.530700,-0.585700,0.031020,-0.810000 0.507200,0.491400,0.415000,0.491500,0.870900,0.001147 -0.369100,-0.001200,-0.617000,0.012750,0.224300,0.974400 0.289700,0.283000,-0.539500,-0.013600,-0.015300,0.999800 0.323900,0.447700,-0.504600,-0.396700,-0.383100,0.834200 0.328600,0.363900,0.508000,0.600300,-0.012730,0.799600 -0.448300,0.282400,0.547900,-0.995100,0.092440,0.034770 -0.438400,0.490200,0.693400,0.000000,0.843500,0.537100 -0.062620,0.423900,-0.540500,0.000000,0.000000,1.000000 -0.349700,0.483600,0.701400,0.000278,0.695700,0.718400 -0.404500,-0.156600,-0.532600,0.977700,0.208000,0.027320 0.416900,0.493000,0.688800,0.000000,0.910700,0.413100 0.211400,0.454500,0.673400,0.000000,-1.000000,0.000000 -0.428300,0.416100,0.499000,-0.328800,-0.000371,-0.944400 0.448500,0.452200,-0.555800,0.635000,-0.771700,-0.034150 -0.436300,-0.659300,-0.597900,0.885500,0.328200,0.328900 -0.448900,0.204700,0.600700,-0.971400,0.003066,0.237500 -0.314000,0.390000,0.617900,-0.895600,0.000000,-0.444900 -0.441300,0.161800,-0.517600,-0.309900,-0.103100,0.945200 0.133100,0.369100,-0.539500,-0.003090,-0.003156,1.000000 -0.339200,0.452100,0.625600,-0.017910,-0.842600,-0.538200 0.398400,0.258900,-0.636100,0.139200,0.104100,-0.984800 -0.426400,0.114000,-0.628600,-0.477700,-0.135800,-0.868000 0.391700,-0.632600,-0.550600,-0.115100,-0.225900,0.967300 -0.400500,0.290600,0.500700,-0.168800,0.028560,0.985200 -0.007814,0.392600,-0.540500,0.000030,0.021190,0.999800 0.317500,0.361300,-0.563700,0.999700,0.021460,-0.010900 0.383400,0.017580,0.622600,0.071420,-0.205100,0.976100 0.399600,-0.204100,0.536100,0.985400,-0.110100,0.130000 0.344500,0.447100,-0.630300,0.056130,-0.474200,0.878600 -0.516700,0.454500,-0.125200,-0.020180,-0.999800,0.000000 -0.397900,0.447200,-0.164400,-0.946200,-0.323500,0.000000 -0.375900,-0.483500,0.593400,0.269200,-0.277300,-0.922300 -0.355900,0.369100,-0.501400,0.157200,0.000000,-0.987600 0.354800,0.424000,0.469800,-1.000000,0.000000,0.000000 0.527900,0.462100,0.485400,0.994800,0.102000,0.000085 0.420000,0.288400,-0.501000,-0.228700,0.161100,-0.960100 -0.348700,-0.531400,-0.598300,0.650200,0.027520,-0.759300 -0.330400,-0.361800,-0.500600,-0.436700,0.074200,-0.896500 -0.414900,0.142500,0.520000,-0.009867,-0.119300,-0.992800 -0.322900,-0.117300,0.524900,0.805000,0.218200,-0.551700 -0.328900,0.369200,0.508600,-0.497000,-0.009568,0.867700 -0.297500,0.270000,-0.548000,-0.009229,-0.989200,0.146300 -0.440000,0.298100,0.598500,-0.916700,0.106100,0.385300 -0.312900,0.284300,0.607700,-0.970200,0.150000,-0.190200 0.313300,-0.322400,-0.571800,-0.721300,-0.015240,-0.692400 -0.519400,0.481600,0.062640,-0.776800,0.629700,0.000061 -0.391600,-0.553900,0.609100,0.273400,-0.280300,-0.920100 0.396000,0.322200,-0.469700,1.000000,0.000000,-0.000320 0.364700,-0.631900,0.587600,-0.971700,-0.227300,-0.064250 -0.337000,-0.327500,0.496900,0.129600,-0.058950,-0.989800 -0.382200,0.324800,-0.626600,0.097720,0.020580,0.995000 -0.521700,0.478400,-0.164400,-0.836500,0.548000,0.000132 0.368200,0.181400,-0.518600,-0.152900,-0.135300,0.978900 0.015680,0.454500,-0.618500,0.000000,-1.000000,0.000000 -0.344600,-0.257300,0.494100,0.078470,0.063800,-0.994900 -0.352900,0.346300,0.492900,0.922500,0.000000,-0.386000 0.485200,0.496200,0.164400,-0.007012,1.000000,0.000000 -0.375800,0.274600,-0.412000,0.000029,-0.905900,0.423600 -0.341100,0.210500,-0.521600,0.630300,-0.205200,0.748700 -0.437200,0.236600,-0.507500,-0.269400,-0.195700,0.942900 -0.399100,0.219800,0.513400,-0.048530,0.160500,0.985800 -0.399600,0.215200,-0.508700,0.084320,-0.174100,0.981100 -0.322500,-0.429300,-0.540300,0.985300,-0.154400,0.073220 0.361800,-0.389600,-0.578500,-0.285600,-0.186600,0.940000 -0.357400,-0.137200,-0.502200,-0.117900,-0.139900,-0.983100 0.361100,0.367100,-0.118200,-0.084950,-0.989600,0.116500 -0.527200,0.457300,-0.294900,-0.848400,-0.529400,0.000000 -0.325300,-0.467700,0.540900,0.968900,-0.199700,-0.146300 -0.062610,0.454600,0.704800,0.000000,-0.976800,0.214200 -0.502000,0.493500,-0.344500,-0.338500,0.940900,0.000137 0.360000,-0.604000,-0.556500,-0.779600,-0.286300,0.557000 -0.414900,-0.104100,-0.516600,-0.914500,-0.126400,0.384300 0.354800,0.369100,0.203600,-1.000000,-0.006780,-0.000804 0.211400,0.424000,0.581600,0.000000,0.000000,1.000000 -0.446300,0.495600,-0.062620,0.000000,1.000000,0.000000 -0.086100,0.454500,0.516800,0.000000,-1.000000,0.000000 -0.109600,0.496600,0.015680,0.000000,1.000000,0.000000 0.396600,0.423900,0.305400,0.999900,-0.010700,0.000026 -0.469700,0.496600,0.352300,0.000000,1.000000,0.000000 0.516800,0.454500,0.673400,0.019410,-0.999800,0.000000 -0.397000,0.377000,-0.328800,-1.000000,0.000000,0.000000 -0.227000,0.495600,-0.148700,0.000000,1.000000,0.000000 -0.341400,0.219700,0.524200,-0.537200,0.222100,0.813700 0.312500,0.266900,0.553500,-0.530900,-0.846200,-0.045610 0.101800,0.496600,-0.101800,0.000000,1.000000,0.000000 -0.390900,0.048680,0.630600,-0.126800,-0.158700,0.979200 0.441000,0.345000,-0.517300,-0.955000,0.000000,-0.296500 -0.086150,0.496100,-0.117400,-0.049580,0.998100,0.035400 0.384100,0.189100,-0.639300,-0.073900,-0.002883,0.997300 0.062660,0.454500,0.274100,0.000000,-1.000000,0.000000 -0.031290,0.454500,-0.407100,0.000000,-1.000000,0.000000 -0.477600,0.454500,0.039170,0.000000,-1.000000,0.000000 -0.477600,0.454500,-0.054780,0.000000,-1.000000,0.000000 0.047000,0.454500,-0.125200,0.000000,-1.000000,0.000000 -0.070440,0.454500,0.634200,0.000000,-1.000000,0.000000 0.015690,0.496600,0.015660,0.031920,0.999300,-0.021250 -0.046950,0.496600,0.595100,0.000000,1.000000,0.000000 0.383000,0.305900,0.629100,0.108600,0.088850,0.990100 0.234900,0.454500,-0.211400,0.000000,-1.000000,0.000000 0.266200,0.496600,-0.344500,0.000000,1.000000,0.000000 0.313200,0.496600,-0.461900,0.000000,1.000000,0.000000 -0.101800,0.454500,-0.227000,0.000000,-1.000000,0.000000 -0.219200,0.454500,0.289700,0.000000,-1.000000,0.000000 0.219200,0.454500,0.289700,0.000000,-1.000000,0.000000 -0.397000,0.416100,-0.250500,-1.000000,0.000000,0.000000 0.493300,0.454500,0.587200,0.000000,-1.000000,0.000000 -0.414900,0.454500,0.665500,0.000000,-1.000000,0.000000 0.297500,0.454500,-0.289700,0.000000,-1.000000,0.000000 0.516800,0.454500,-0.407100,0.019410,-0.999800,0.000000 0.397000,0.345600,-0.336700,1.000000,0.000000,0.000000 0.422800,0.496600,0.626400,0.000000,1.000000,0.000000 0.203600,0.496600,0.626400,0.000000,1.000000,0.000000 -0.164400,0.496600,0.595100,0.000000,1.000000,0.000000 0.461900,0.495600,0.501100,0.000064,1.000000,0.000000 -0.414900,0.496600,0.579400,0.000000,1.000000,0.000000 0.258400,0.454500,0.242700,0.000000,-1.000000,0.000000 -0.321000,0.454500,0.462000,0.000000,-1.000000,0.000000 0.313200,0.495600,0.234900,0.000000,1.000000,0.000000 0.227100,0.496600,-0.610700,0.000000,1.000000,0.000000 -0.078270,0.454500,-0.070440,0.000000,-1.000000,0.000000 0.399700,-0.147600,0.501900,0.530600,0.008845,-0.847600 0.219200,0.495600,0.078310,0.000000,1.000000,0.000000 0.047000,0.454500,0.101800,0.000000,-1.000000,0.000000 -0.439300,0.043790,-0.597900,-0.875200,-0.163400,-0.455300 -0.211400,0.454500,-0.109600,0.000000,-1.000000,0.000000 -0.397000,0.416100,-0.086120,-1.000000,0.000000,0.000000 -0.023470,0.496600,-0.501100,0.000000,1.000000,0.000000 -0.070440,0.496600,-0.180100,0.000000,1.000000,0.000000 0.117500,0.495600,0.039160,0.000000,1.000000,0.000000 0.227100,0.454500,-0.046950,0.000000,-1.000000,0.000000 0.133100,0.496600,-0.054780,0.000000,1.000000,0.000000 0.078320,0.454500,-0.485400,0.000000,-1.000000,0.000000 0.354800,0.400500,0.007849,-1.000000,0.000000,0.000000 0.007853,0.454500,-0.227000,0.000000,-1.000000,0.000000 0.062680,0.496500,0.078290,0.038990,0.998900,-0.024800 -0.007808,0.496600,0.383700,0.000000,1.000000,0.000000 0.007851,0.496600,-0.242700,0.000000,1.000000,0.000000 -0.195700,0.454500,0.054830,0.000000,-1.000000,0.000000 -0.203500,0.496600,0.023510,0.000000,1.000000,0.000000 -0.156600,0.495600,-0.031300,0.000000,1.000000,0.000000 -0.046950,0.496600,0.117500,0.000000,1.000000,0.000000 -0.355000,0.416100,0.305400,0.999800,-0.017730,-0.007101 -0.352300,0.496600,0.610700,0.000000,1.000000,0.000000 -0.493200,0.454500,0.689000,0.000000,-1.000000,0.000000 -0.328800,0.496600,0.516800,0.000000,1.000000,0.000000 -0.180100,0.496600,0.548100,0.000000,1.000000,0.000000 0.219200,0.496600,-0.532400,0.000000,1.000000,0.000000 -0.344500,0.496600,0.563700,0.000000,1.000000,0.000000 -0.234900,0.377000,-0.581600,0.000000,0.000000,-1.000000 -0.203500,0.454500,-0.477600,0.000000,-1.000000,0.000000 -0.305300,0.495600,-0.274000,0.000000,1.000000,0.000000 0.133100,0.496600,-0.219200,0.000000,1.000000,0.000000 -0.164400,0.377000,0.539500,0.000000,0.000000,-1.000000 -0.266200,0.454500,0.258400,0.000000,-1.000000,0.000000 -0.422800,0.496600,0.133100,0.000000,1.000000,0.000000 -0.195700,0.322200,-0.581600,0.000408,-0.000500,-1.000000 -0.430600,0.495600,-0.516700,0.000000,1.000000,0.000000 0.227100,0.496600,-0.289700,0.000000,1.000000,0.000000 -0.125200,0.496600,0.508900,0.000000,1.000000,0.000000 -0.422800,0.495600,-0.430600,0.000000,1.000000,0.000000 -0.454100,0.454500,-0.297500,0.000000,-1.000000,0.000000 -0.438400,0.454500,0.281900,0.000000,-1.000000,0.000000 0.352300,0.496600,-0.430600,0.000000,1.000000,0.000000 -0.187900,0.496600,0.250600,0.000000,1.000000,0.000000 0.141000,0.439600,-0.539500,0.000000,0.003164,1.000000 -0.375800,0.496600,-0.610700,0.000000,1.000000,0.000000 0.375800,0.495600,0.039160,0.000000,1.000000,0.000000 0.452300,0.252400,0.556900,-0.991300,-0.105800,-0.078550 -0.469700,0.495600,-0.258400,0.021220,0.999800,0.000000 0.164400,0.454600,0.595200,0.000000,-0.987200,0.159600 -0.387000,-0.335400,0.516600,0.961800,-0.006657,0.273800 0.250600,0.447300,0.539600,0.000000,-0.179800,-0.983700 0.448000,0.202200,0.602300,-0.918500,-0.009739,-0.395400 0.354800,0.384800,0.125300,-1.000000,-0.000128,0.000000 -0.383600,0.447100,0.504600,0.022960,-0.508300,0.860800 -0.397900,0.447200,-0.438400,-0.946200,-0.323500,0.000000 0.398500,-0.553600,-0.530600,0.095320,-0.190100,0.977100 0.397300,0.447200,-0.305300,0.937700,-0.347400,0.000000 -0.353800,0.447200,0.054830,0.942500,-0.334300,0.000000 -0.360100,0.454500,0.555900,0.000000,-1.000000,0.000000 -0.485400,0.454500,0.555900,0.000000,-1.000000,0.000000 -0.522000,0.478000,-0.665500,-0.839200,0.543800,0.000000 -0.415500,-0.006529,0.521800,0.337800,-0.043920,0.940200 -0.367600,-0.437700,-0.585200,-0.145500,0.160200,-0.976300 -0.389100,-0.236100,-0.551000,0.890000,0.153700,0.429300 0.512300,0.488200,0.060040,0.575100,0.818100,0.000015 0.453800,0.196900,-0.555900,0.999500,0.002377,-0.032600 -0.430600,0.454500,0.203600,0.000000,-1.000000,0.000000 0.356600,-0.196800,0.578700,-0.126200,0.149700,-0.980600 0.434300,0.214700,-0.517700,-0.476500,0.114300,-0.871700 -0.445600,0.070590,-0.535400,0.912100,0.102600,-0.397000 -0.477600,0.496600,0.007843,-0.003054,1.000000,-0.007099 0.078600,0.370800,-0.540100,-0.021710,-0.308900,0.950900 0.350000,0.013680,-0.625500,-0.283500,-0.168900,-0.944000 -0.320500,-0.408800,0.570500,-0.909400,0.055040,-0.412300 -0.448100,0.431800,-0.562000,-0.992600,0.000997,-0.121400 0.350400,0.452200,-0.182700,-0.613500,-0.789700,0.000000 0.337900,-0.131500,0.591900,-0.247700,-0.134400,0.959500 0.419700,-0.070020,0.522900,-0.897500,0.144600,0.416700 -0.449300,0.236300,0.540000,0.990400,-0.064660,0.122500 -0.418300,0.369100,-0.494400,0.142100,0.000004,-0.989800 -0.352600,-0.156800,-0.585800,0.014910,0.235100,0.971900 -0.417500,0.324600,-0.619800,-0.513600,0.032130,-0.857400 -0.315300,-0.186400,-0.548000,-0.998200,-0.059570,0.004986 -0.346300,0.142200,0.638200,0.386100,-0.036170,0.921800 0.485300,0.496500,-0.360100,0.056940,0.998400,-0.000015 0.411600,-0.506900,0.572800,-0.865000,-0.290800,-0.408800 -0.336800,0.080850,0.615200,-0.949500,0.003806,-0.313800 -0.399600,0.173900,-0.513200,0.075230,-0.125800,0.989200 -0.219200,0.424000,-0.540000,0.007040,0.028330,0.999600 -0.169800,0.326600,0.580500,0.563800,-0.761000,0.321000 0.508900,0.454500,-0.274000,0.000000,-1.000000,0.000000 0.390400,0.369100,0.502500,0.037020,-0.000201,0.999300 0.443900,0.452200,0.522000,-0.626100,-0.775700,0.080010 0.062660,0.454500,0.696800,0.000000,-1.000000,0.005074 -0.391600,-0.030410,-0.510600,0.048560,0.114100,0.992300 0.399400,-0.561700,0.528300,0.017720,-0.209200,-0.977700 0.358900,0.315900,0.320000,-0.297100,-0.882400,-0.364900 -0.516700,0.454500,-0.015630,-0.020180,-0.999800,0.000000 -0.492200,0.495800,0.148800,-0.129500,0.991600,0.000000 -0.497500,0.494900,-0.125300,-0.226200,0.974100,0.000000 0.355200,-0.593100,0.579600,-0.967500,-0.247400,-0.051290 0.439700,0.004099,0.547900,0.975900,-0.218200,-0.007952 -0.355300,0.384800,0.187900,0.999900,0.010610,0.000095 0.516800,0.454500,-0.133100,0.019410,-0.999800,0.000000 0.493300,0.484200,-0.701700,0.000228,0.698700,-0.715400 0.353100,-0.060790,0.607000,-0.098070,-0.177400,0.979200 0.330000,0.194700,-0.627900,-0.943300,-0.100100,-0.316600 -0.250500,0.298700,-0.581600,0.000000,0.000000,-1.000000 -0.319200,0.447200,-0.540300,-0.937300,-0.347600,-0.024920 -0.337300,-0.280600,-0.490600,0.159800,-0.041420,0.986300 -0.395100,-0.209700,0.539600,-0.986800,-0.118000,0.111100 0.493300,0.454500,-0.078270,0.000000,-1.000000,0.000000 0.415500,0.110500,-0.632100,-0.400600,0.167700,0.900800 0.367500,-0.493000,-0.599900,0.083080,0.233900,-0.968700 -0.363600,0.368300,0.106600,0.198600,-0.966600,-0.162200 -0.367700,0.369100,-0.629900,-0.081910,0.000000,-0.996600 -0.385500,-0.389900,0.562800,0.817200,-0.186300,-0.545300 -0.437600,-0.658300,0.569900,-0.912200,-0.336300,-0.234100 -0.356600,-0.129100,0.594500,0.081560,0.207300,-0.974900 0.434200,0.189700,-0.621100,-0.725500,-0.006595,0.688200 0.350400,0.145700,0.530900,-0.644100,-0.191800,-0.740500 -0.426600,0.379600,-0.613600,-0.590000,-0.000018,-0.807400 -0.450500,0.111300,0.586700,-0.982500,-0.127000,0.136200 -0.330000,0.212600,-0.603400,-0.985100,0.132700,0.109800 0.322500,0.452100,0.579400,0.561400,-0.826100,0.049360 0.406300,-0.140600,-0.539800,0.978500,-0.200000,-0.050690 -0.361000,-0.530400,0.527700,0.202300,-0.234800,-0.950800 0.415500,0.181900,-0.517900,-0.057620,0.137400,-0.988800 -0.292300,0.452200,0.537200,-0.003351,-0.710700,-0.703500 0.375800,-0.475400,-0.513900,0.024750,-0.189800,0.981500 0.360700,0.282800,0.502400,0.036750,0.035520,0.998700 0.000016,0.469700,0.710600,-0.002202,0.308200,0.951300 0.305200,-0.256100,-0.539700,-0.996700,0.059600,0.054240 -0.375200,0.322000,-0.302900,-0.000037,-0.933200,0.359300 -0.485300,0.496500,0.563700,-0.060600,0.998200,0.000000 0.386800,-0.304100,-0.532700,-0.996000,-0.035090,0.082260 0.337100,0.102900,0.595100,-0.999600,0.024080,-0.016760 0.353800,0.447200,-0.039130,-0.942900,-0.333000,0.000000 0.317600,0.431800,-0.548000,0.997500,-0.006550,0.070810 0.376400,-0.117400,-0.593700,-0.342600,0.265400,0.901200 0.354900,0.339000,0.274400,-0.987900,-0.153700,-0.021210 0.388800,-0.249100,-0.547400,0.955500,-0.123700,-0.268000 0.327100,-0.038800,-0.549100,-0.984200,0.119800,0.130800 0.423900,-0.559100,0.590000,0.836500,0.273000,0.475000 0.371500,-0.457300,0.588000,0.176900,0.184900,0.966700 -0.469700,0.495600,-0.430600,0.021220,0.999800,0.000000 0.242700,0.469700,0.710600,0.000000,0.303200,0.952900 0.146200,0.487900,0.697600,0.000066,0.794200,0.607600 -0.354900,0.424000,-0.485300,0.976500,0.000000,0.215400 0.407300,0.454600,0.070490,0.169200,-0.985600,0.000000 -0.313800,0.330000,-0.610800,0.967500,0.000000,-0.252900 0.404800,-0.548100,-0.604500,0.547600,0.276800,-0.789700 0.305400,0.496600,-0.078270,0.000000,1.000000,0.000000 0.093970,0.496600,0.540300,0.000000,1.000000,0.000000 0.394500,-0.027450,0.611000,0.250600,-0.222100,0.942300 -0.367900,-0.335200,-0.492100,-0.042070,-0.059180,0.997400 -0.078270,0.454500,0.070490,0.000000,-1.000000,0.000000 0.408100,-0.456400,0.526600,0.980300,0.119400,-0.157100 -0.355200,0.400400,0.219200,0.999900,-0.010650,-0.000009 -0.391500,0.496100,-0.540200,-0.049560,0.998100,0.035450 0.336700,0.454500,0.039170,0.003810,-1.000000,0.000000 0.250600,0.496600,-0.454100,0.000000,1.000000,0.000000 -0.140900,0.496600,-0.610700,0.000000,1.000000,0.000000 0.148800,0.496600,0.587200,0.000000,1.000000,0.000000 0.266200,0.454500,-0.493200,0.000000,-1.000000,0.000000 0.469800,0.496600,-0.555900,0.000000,1.000000,0.000000 -0.258300,0.454500,-0.626300,0.000000,-1.000000,0.000000 0.227100,0.496600,0.399300,0.000000,1.000000,0.000000 -0.289700,0.495600,-0.164400,0.000000,1.000000,0.000000 0.227100,0.496600,-0.164400,0.000000,1.000000,0.000000 0.485400,0.454500,0.438500,0.000000,-1.000000,0.000000 -0.250500,0.495600,-0.258400,0.000000,1.000000,0.000000 0.211400,0.496600,0.469800,0.000000,1.000000,0.000000 0.281900,0.454500,-0.164400,0.000000,-1.000000,0.000000 -0.313200,0.496600,0.446300,0.000000,1.000000,0.000000 -0.461900,0.496600,0.469800,0.000000,1.000000,0.000000 0.313200,0.496600,0.516800,0.000000,1.000000,0.000000 -0.397000,0.384800,0.195700,-1.000000,0.000000,0.000000 -0.187900,0.454500,-0.407100,0.000000,-1.000000,0.000000 0.354800,0.392600,-0.211400,-1.000000,0.000000,0.000000 -0.344500,0.495600,-0.297500,0.000000,1.000000,0.000000 0.360200,0.496600,-0.148700,0.000000,1.000000,0.000000 -0.187900,0.454500,0.634200,0.000000,-1.000000,0.000000 -0.062610,0.496600,-0.579400,0.000000,1.000000,0.000000 -0.140900,0.454500,0.062660,0.000000,-1.000000,0.000000 -0.344500,0.496600,0.031340,0.000000,1.000000,0.000000 -0.062610,0.454500,-0.383600,0.000000,-1.000000,0.000000 0.469800,0.454500,0.054830,0.000000,-1.000000,0.000000 0.054830,0.496600,0.242700,0.000000,1.000000,0.000000 -0.007806,0.454500,-0.313200,0.000000,-1.000000,0.000000 -0.140900,0.454500,0.109600,0.000000,-1.000000,0.000000 -0.352900,-0.319000,-0.572200,0.072500,-0.006687,0.997300 0.359100,-0.615600,-0.592200,0.969600,0.240700,-0.043800 -0.156600,0.454500,-0.681100,0.000000,-1.000000,0.000000 -0.297300,0.272100,0.580600,0.242800,-0.673500,0.698200 0.375200,0.439500,0.629000,0.102100,-0.140700,0.984800 0.498500,0.480500,0.704900,-0.000237,0.591300,0.806500 -0.391000,0.172800,0.519700,-0.083550,0.141300,0.986400 -0.461900,0.496600,0.587200,0.000000,1.000000,0.000000 -0.336600,0.496600,0.305400,0.000000,1.000000,0.000000 -0.187900,0.369100,-0.581600,0.000000,0.000000,-1.000000 0.125300,0.496600,0.274100,0.000000,1.000000,0.000000 -0.305300,0.454500,-0.446300,0.000000,-1.000000,0.000000 0.274100,0.454500,0.391500,0.000000,-1.000000,0.000000 -0.391500,0.495600,-0.297500,0.000000,1.000000,0.000000 0.354800,0.345700,0.336700,-1.000000,0.000000,0.000000 -0.446300,0.454500,-0.352300,0.000000,-1.000000,0.000000 -0.446300,0.454500,0.469800,0.000000,-1.000000,0.000000 0.407200,0.496600,-0.274000,0.000000,1.000000,0.000000 -0.281800,0.454500,0.352300,0.000000,-1.000000,0.000000 0.297500,0.454500,-0.634200,-0.023690,-0.999400,-0.024840 0.148800,0.496600,0.430600,0.000000,1.000000,0.000000 -0.203500,0.454500,-0.070440,0.000000,-1.000000,0.000000 -0.313200,0.495600,-0.086110,0.000000,1.000000,0.000000 0.195800,0.496600,-0.046950,0.000000,1.000000,0.000000 0.324200,-0.085410,0.556100,-0.988800,0.128000,-0.076780 -0.398700,-0.150300,0.509000,-0.765800,-0.085040,-0.637400 -0.370300,-0.665300,0.610500,0.723400,-0.650500,0.231200 -0.354800,0.314300,0.383700,1.000000,-0.000021,0.000043 -0.414500,0.260700,-0.498900,-0.044460,-0.189900,0.980800 0.236700,0.277100,-0.539800,-0.183800,-0.200000,0.962400 -0.062610,0.454500,-0.508900,0.000000,-1.000000,0.000000 -0.220000,0.291700,-0.539600,0.236600,-0.232000,0.943500 -0.378000,-0.288300,0.558800,0.798500,-0.043530,-0.600400 -0.414300,0.369100,0.495900,-0.136500,-0.000011,-0.990600 0.330400,-0.022540,0.579400,-0.994200,0.107000,-0.012420 -0.392100,-0.182400,0.564000,-0.868800,-0.128900,0.478000 -0.383800,0.251900,0.636000,0.096370,-0.102100,-0.990100 0.399300,0.111300,0.632800,-0.136600,0.153700,-0.978600 0.361300,-0.007176,-0.519800,-0.250300,0.141700,0.957800 -0.234900,0.487800,-0.697700,-0.000065,0.792200,-0.610200 -0.046950,0.496600,-0.665400,0.000000,0.999900,-0.016000 0.148400,0.338500,0.546400,-0.465100,-0.838700,-0.283300 -0.375800,0.343000,0.236400,-0.000003,-0.958700,-0.284400 0.395800,-0.367100,0.524500,0.997900,0.064690,0.008035 -0.519500,0.481500,0.164400,-0.779500,0.626400,0.000089 0.507100,0.491400,0.336700,0.485200,0.874400,0.000000 0.266200,0.330000,-0.581600,0.000000,0.000000,-1.000000 0.337600,-0.503400,0.560900,0.972200,0.233500,0.014170 -0.031610,0.373200,-0.563700,0.079460,-0.996800,-0.000084 0.321600,0.283800,-0.508700,-0.676600,-0.148200,0.721300 -0.148700,0.447100,0.583000,0.000000,-0.493900,0.869500 -0.391400,0.496600,0.649900,0.000000,1.000000,0.000000 -0.103000,0.358200,-0.543300,0.284700,-0.837400,0.466500 -0.384100,-0.553300,0.530600,0.067640,-0.224900,-0.972000 0.401300,0.452200,0.391500,0.618000,-0.786100,0.000000 -0.397900,0.337800,0.486100,-0.958100,0.000000,-0.286500 -0.344600,0.178000,-0.532400,-0.770000,0.152500,-0.619500 0.317700,-0.170800,0.532100,0.986500,-0.108200,0.122600 0.387500,0.122700,-0.524200,-0.057960,-0.061080,0.996400 -0.340500,0.340400,-0.502400,-0.313000,-0.000020,-0.949800 0.341900,0.480600,0.704700,-0.000293,0.595300,0.803500 0.355900,0.431800,0.501400,-0.174000,0.011360,0.984700 0.342700,-0.521800,-0.535100,-0.794900,-0.279000,0.538800 0.389400,-0.264300,0.547400,0.912900,-0.119200,0.390300 0.400200,0.292400,0.499100,0.461300,0.084010,0.883300 0.349700,-0.063690,-0.610700,-0.058240,-0.203600,-0.977300 -0.357600,0.375000,0.047410,0.675600,-0.736600,-0.030550 0.527200,0.457300,0.164400,0.849300,-0.528000,0.000000 0.445500,0.113600,-0.532300,0.834000,-0.105500,0.541600 0.368400,0.244000,0.507100,0.113600,0.212900,0.970400 0.311300,0.306500,0.599900,-0.985100,0.005358,0.172000 0.524500,0.472800,-0.378400,0.908800,0.417200,0.000041 0.133100,0.369100,0.581600,-0.002874,-0.003078,1.000000 0.328400,0.330000,-0.507900,0.458600,0.004097,-0.888600 -0.480200,0.480300,0.704800,-0.006899,0.616600,0.787200 0.242700,0.377000,-0.539500,0.000000,0.000000,1.000000 -0.172200,0.424000,0.580600,-0.000000,0.021190,0.999800 0.383700,0.495600,0.164400,0.000000,1.000000,0.000000 0.354800,0.400500,0.352300,-1.000000,0.000000,0.000000 -0.368000,0.495600,-0.250500,0.000000,1.000000,0.000000 0.397000,0.314300,0.360100,0.999400,0.003316,-0.033240 -0.031290,0.454500,0.649900,0.000000,-1.000000,0.000000 0.338400,-0.406600,0.580800,-0.203900,0.112800,0.972500 -0.219200,0.454500,0.462000,0.000000,-1.000000,0.000000 0.195800,0.454500,-0.634200,0.000000,-1.000000,0.000000 -0.407100,0.496600,0.219200,0.000000,1.000000,0.000000 0.242700,0.431800,-0.539500,0.000000,0.000000,1.000000 0.250600,0.496600,0.501100,0.000000,1.000000,0.000000 0.422800,0.495600,0.328800,0.000000,1.000000,0.000000 0.354800,0.392600,0.477600,-1.000000,0.000000,0.002643 0.407200,0.454500,-0.642000,0.034790,-0.997000,-0.069130 0.485400,0.454500,0.626400,0.000000,-1.000000,0.000000 -0.419900,-0.054840,0.564300,0.964300,0.225800,-0.138100 -0.422600,0.423900,0.617900,-0.609200,-0.000052,0.793000 0.433000,-0.587700,-0.578700,0.948600,0.292600,-0.120600 -0.394100,-0.650400,-0.625800,0.015500,-0.312600,-0.949800 0.360200,0.377000,0.627800,-0.055400,0.000000,-0.998500 0.485400,0.454500,-0.109600,0.000000,-1.000000,0.000000 -0.412900,0.449700,-0.617200,0.455600,-0.468700,0.756800 0.031340,0.496600,-0.266200,0.000000,1.000000,0.000000 -0.054780,0.496600,0.274100,0.000000,1.000000,0.000000 -0.117400,0.439500,0.580600,0.000000,-0.150600,0.988600 0.000024,0.454500,-0.172200,0.000000,-1.000000,0.000000 0.007853,0.454500,0.117500,0.000000,-1.000000,0.000000 -0.078270,0.496600,-0.375800,0.000000,1.000000,0.000000 -0.477600,0.496000,-0.203500,0.036280,0.999300,0.000000 -0.031290,0.454500,0.039170,0.000000,-1.000000,0.000000 0.446300,0.454500,0.117500,0.000000,-1.000000,0.000000 0.354800,0.369100,0.454100,-1.000000,0.000000,0.000000 -0.125200,0.454500,-0.289700,0.000000,-1.000000,0.000000 0.141000,0.454500,0.469800,0.000000,-1.000000,0.000000 -0.258300,0.345700,-0.581600,0.000000,0.000000,-1.000000 0.354800,0.377000,-0.250500,-1.000000,0.000000,0.000000 -0.258300,0.496600,0.407200,0.000000,1.000000,0.000000 0.407200,0.496600,-0.454100,0.000000,1.000000,0.000000 0.266200,0.454500,-0.281800,0.000000,-1.000000,0.000000 0.133100,0.496600,0.195800,0.000000,1.000000,0.000000 0.101800,0.454500,-0.336600,0.000000,-1.000000,0.000000 -0.250500,0.454500,0.164400,0.000000,-1.000000,0.000000 -0.242700,0.495600,-0.227000,0.000000,1.000000,0.000000 0.133100,0.454500,0.141000,0.000000,-1.000000,0.000000 0.172300,0.496600,-0.634200,0.000000,1.000000,0.000000 -0.227000,0.496600,0.195800,0.000000,1.000000,0.000000 -0.274000,0.496600,-0.610700,0.000000,1.000000,0.000000 -0.422800,0.496600,0.336700,0.000000,1.000000,0.000000 0.415000,0.496600,-0.203500,0.000000,1.000000,0.000000 -0.508900,0.454500,0.305400,0.000000,-1.000000,0.000000 -0.508900,0.454500,-0.469700,0.000000,-1.000000,0.000000 -0.321000,0.496600,0.141000,0.000000,1.000000,0.000000 0.172300,0.496600,-0.548000,0.000000,1.000000,0.000000 0.031340,0.454500,0.054830,0.000000,-1.000000,0.000000 0.000024,0.454500,-0.093930,0.000000,-1.000000,0.000000 -0.023470,0.496600,-0.297500,0.000000,1.000000,0.000000 0.172300,0.454500,0.093980,0.000000,-1.000000,0.000000 0.062660,0.454500,0.477600,0.000000,-1.000000,0.000000 -0.407100,0.495600,-0.078280,0.000000,1.000000,0.000000 0.000022,0.496600,0.211400,0.000000,1.000000,0.000000 -0.093930,0.384800,0.539500,0.000000,0.000000,-1.000000 0.156600,0.454500,-0.101800,0.000000,-1.000000,0.000000 0.234900,0.496600,-0.101800,0.000000,1.000000,0.000000 -0.140900,0.454500,-0.101800,0.000000,-1.000000,0.000000 -0.156600,0.454500,-0.007805,0.000000,-1.000000,0.000000 0.469800,0.496600,-0.508900,0.000000,1.000000,0.000000 -0.039130,0.496600,0.211400,0.000000,1.000000,0.000000 0.433200,0.436900,-0.501900,0.548700,-0.067690,0.833300 -0.354800,0.423900,-0.422800,0.999700,-0.021240,-0.010600 0.227100,0.496300,0.297500,0.046000,0.998200,-0.038930 -0.355500,0.416100,-0.180100,0.999200,0.038960,0.007100 0.039170,0.496600,-0.234900,0.000000,1.000000,0.000000 -0.078270,0.496600,0.415000,0.000000,1.000000,0.000000 0.187900,0.454500,0.047000,0.000000,-1.000000,0.000000 0.047000,0.496600,-0.156600,0.000000,1.000000,0.000000 -0.093930,0.496600,0.297500,0.000000,1.000000,0.000000 0.422800,0.496600,-0.023470,0.000000,1.000000,0.000000 -0.140900,0.496600,0.070490,0.000000,1.000000,0.000000 0.148800,0.454500,-0.039120,0.000000,-1.000000,0.000000 -0.015630,0.454500,0.250600,0.000000,-1.000000,0.000000 -0.046950,0.496600,0.368000,0.000000,1.000000,0.000000 -0.234900,0.495800,-0.313100,-0.038990,0.998900,0.024830 -0.355300,0.361300,-0.415000,0.999600,-0.024740,-0.014210 0.344500,0.454500,-0.665500,0.000000,-1.000000,0.000000 0.360200,0.454500,0.595100,0.000000,-1.000000,0.000000 0.180100,0.496600,0.313200,0.000000,1.000000,0.000000 -0.446300,0.454500,-0.438400,0.000000,-1.000000,0.000000 0.454100,0.496600,-0.610700,0.000000,1.000000,0.000000 0.469800,0.454500,-0.610700,0.000000,-1.000000,0.000000 -0.469700,0.454500,0.211400,0.000000,-1.000000,0.000000 0.360200,0.495600,0.258400,0.000000,1.000000,0.000000 -0.355000,0.423900,0.391500,0.999600,-0.028370,0.003584 -0.250500,0.496600,-0.501100,0.000000,1.000000,0.000000 0.281900,0.454500,0.313200,0.000000,-1.000000,0.000000 -0.125200,0.454500,-0.360100,0.000000,-1.000000,0.000000 -0.397000,0.361300,-0.368000,-1.000000,0.000000,0.000000 -0.125200,0.496600,-0.555900,0.000000,1.000000,0.000000 -0.397000,0.298700,0.399300,-1.000000,-0.001350,-0.000789 0.321000,0.454500,-0.375800,0.000000,-1.000000,0.000000 -0.422800,0.454500,-0.414900,0.000000,-1.000000,0.000000 0.211400,0.454500,0.117500,0.000000,-1.000000,0.000000 -0.140900,0.454500,0.234900,0.000000,-1.000000,0.000000 0.109600,0.496600,0.156600,0.000000,1.000000,0.000000 -0.321000,0.454500,0.657700,0.000000,-1.000000,0.000000 -0.508900,0.454500,-0.610700,0.000000,-1.000000,0.000000 0.422800,0.495600,0.391500,0.000000,1.000000,0.000000 0.354800,0.408300,-0.305300,-1.000000,0.000000,0.000000 0.211400,0.454500,-0.344500,0.000000,-1.000000,0.000000 -0.305300,0.496600,0.313200,0.000000,1.000000,0.000000 -0.266200,0.496600,0.548100,0.000000,1.000000,0.000000 -0.109600,0.496600,-0.234900,0.000000,1.000000,0.000000 0.125300,0.496600,-0.281800,0.000000,1.000000,0.000000 0.227100,0.496600,-0.211400,0.000000,1.000000,0.000000 0.203600,0.454500,-0.242700,0.000000,-1.000000,0.000000 0.164400,0.454500,-0.156600,0.000000,-1.000000,0.000000 0.203600,0.496600,-0.250500,0.000000,1.000000,0.000000 -0.187900,0.495600,-0.187900,0.000000,1.000000,0.000000 0.469800,0.454500,-0.164400,0.000000,-1.000000,0.000000 0.172300,0.454500,-0.673300,0.000000,-1.000000,0.000000 0.242700,0.454500,0.383700,0.000000,-1.000000,0.000000 0.219200,0.496600,0.352300,0.000000,1.000000,0.000000 0.250600,0.454500,-0.242700,0.000000,-1.000000,0.000000 -0.375800,0.454500,-0.673300,0.000000,-1.000000,0.000000 -0.328800,0.496600,-0.508900,0.000000,1.000000,0.000000 0.195800,0.454500,0.634200,0.000000,-1.000000,0.000000 0.281900,0.496600,0.524600,0.000000,1.000000,0.000000 -0.406400,0.040710,-0.623300,-0.261800,-0.155100,-0.952600 0.440200,0.304500,0.594200,-0.906600,-0.116800,-0.405500 -0.031290,0.454500,0.078320,0.000000,-1.000000,0.000000 0.447700,0.322200,0.524500,-0.997900,-0.000224,0.065130 0.234900,0.454600,0.595200,0.000000,-0.987200,0.159600 -0.117400,0.495600,-0.109600,0.000000,1.000000,0.000000 -0.274000,0.431700,0.581100,-0.010640,-0.020490,0.999700 -0.109600,0.447300,0.539600,0.000000,-0.179800,-0.983700 0.336700,0.496600,0.634200,0.000000,1.000000,0.000000 0.351800,0.431800,-0.502900,0.082320,0.001150,-0.996600 0.455100,0.204700,0.540300,-0.994400,0.011750,0.105100 0.086150,0.447200,-0.583600,0.000000,-0.457200,-0.889400 0.383300,0.423900,-0.632000,0.127000,-0.000045,-0.991900 0.352100,-0.288800,-0.496100,0.022990,0.055060,-0.998200 0.289700,0.447200,-0.583600,-0.036310,-0.444300,-0.895100 -0.373500,-0.662200,0.566400,0.817500,-0.263500,-0.512200 0.390000,-0.343400,-0.539900,0.989800,0.036000,-0.137600 0.352300,0.454500,-0.587200,0.000000,-1.000000,0.000000 0.340700,0.166600,-0.535500,-0.837800,-0.183200,0.514300 -0.446000,0.322200,0.540200,-0.999300,0.003906,0.037400 0.070480,0.447100,0.583000,0.000000,-0.493900,0.869500 0.125300,0.454600,0.532200,0.000000,-0.984100,-0.177900 -0.195700,0.447100,0.583000,-0.000078,-0.494100,0.869400 -0.317500,0.424100,0.518400,0.946100,0.015570,-0.323400 -0.376100,0.260100,-0.632100,0.053930,-0.083160,0.995100 -0.512000,0.488500,-0.399300,-0.570700,0.821200,0.000000 0.316700,-0.389700,0.532700,-0.984400,-0.158600,-0.076220 -0.523400,0.454800,-0.086110,-0.261200,-0.965300,0.000000 -0.323400,-0.445500,0.577700,0.927000,-0.082250,0.365900 0.491800,0.495800,-0.328800,0.126700,0.991900,-0.000033 -0.343800,-0.162800,0.501100,0.145200,0.142400,-0.979100 -0.386200,0.361700,0.154500,-0.025270,-0.980700,-0.194000 0.413900,-0.056610,-0.588900,0.805500,-0.253300,-0.535700 0.383600,0.330000,-0.502500,0.000483,0.000000,-1.000000 -0.180100,0.452200,-0.537500,0.000000,-0.737700,0.675100 0.305400,0.454600,0.704800,0.000000,-0.976800,0.214200 -0.446600,0.208300,0.522600,-0.837200,-0.054660,-0.544100 0.396600,0.400400,0.109600,0.999700,-0.021320,0.010670 -0.360400,-0.475900,-0.511200,0.091470,-0.206900,0.974100 0.291700,0.493000,0.688800,0.000000,0.910700,0.413100 0.157900,0.335100,0.580600,-0.159100,-0.445400,0.881100 0.321300,-0.089040,-0.574900,0.992200,-0.121000,-0.031520 0.353200,0.134300,-0.640400,-0.279000,-0.032320,-0.959800 0.000021,0.496400,0.672800,0.000000,0.998300,0.058890 -0.507200,0.491400,-0.555900,-0.447700,0.894200,0.000040 0.367800,0.251400,-0.639900,0.049710,0.096740,-0.994100 -0.524700,0.473200,0.234900,-0.908100,0.418800,-0.000160 0.345300,-0.556000,-0.571400,0.968600,0.240300,-0.064550 -0.344500,0.484200,-0.701700,0.000420,0.694100,-0.719800 0.442000,0.291200,-0.579800,-0.985200,-0.103900,0.136300 0.125300,0.488200,-0.697300,-0.000042,0.793500,-0.608600 0.353000,0.025130,-0.532200,0.549800,-0.115500,-0.827300 -0.360100,0.454500,-0.532400,0.000000,-1.000000,0.000000 -0.368000,0.454500,0.689000,0.000000,-1.000000,0.000000 -0.344000,-0.501800,-0.530200,-0.835300,0.273400,-0.477100 0.413600,0.437000,0.618800,-0.438900,-0.002268,-0.898600 -0.337900,0.188300,0.538200,-0.860000,0.182200,0.476600 0.527200,0.457300,0.007848,0.849200,-0.528100,0.000000 -0.007808,0.496600,-0.657600,0.000000,1.000000,-0.000322 0.437400,0.126700,0.520100,0.274600,-0.070550,-0.959000 0.314900,-0.351500,0.540000,0.997800,0.065860,0.003105 -0.374100,-0.201900,-0.492900,-0.111600,0.068600,0.991400 0.372600,-0.533900,0.602800,0.015440,-0.218000,-0.975800 0.344400,-0.374900,0.577100,-0.009472,0.108700,0.994000 -0.349800,-0.225600,0.579600,0.112200,0.111200,-0.987400 0.311000,-0.311700,0.525100,-0.994000,-0.058920,-0.091820 0.420900,0.053320,-0.524400,-0.205800,0.002584,-0.978600 -0.383600,0.189100,0.641500,-0.074430,0.010090,0.997200 -0.101800,0.454500,0.618500,0.000000,-1.000000,0.000000 0.462000,0.496600,-0.250500,0.000000,1.000000,0.000000 -0.180100,0.454500,0.250600,0.000000,-1.000000,0.000000 0.007853,0.454500,-0.422800,0.000000,-1.000000,0.000000 -0.164400,0.496600,0.375800,0.000000,1.000000,0.000000 -0.422800,0.454500,-0.524500,0.000000,-1.000000,0.000000 0.054990,0.377800,0.539600,-0.019330,-0.230100,-0.973000 -0.070440,0.416100,0.539500,0.000000,0.000000,-1.000000 -0.230300,0.494500,0.684000,0.000000,0.969500,0.245100 -0.217300,0.289000,0.548000,0.689000,-0.723000,-0.050150 0.328500,0.193300,-0.558000,-0.986900,-0.130800,0.093990 -0.023470,0.496600,-0.595000,0.000000,1.000000,0.000000 -0.023480,0.496600,-0.046950,-0.021290,0.999500,0.021300 -0.039120,0.454500,0.485400,0.000000,-1.000000,0.000000 -0.062610,0.496600,-0.266200,0.000000,1.000000,0.000000 -0.338000,0.283000,-0.631100,0.291800,0.031580,-0.955900 0.070490,0.454500,0.000024,0.000000,-1.000000,0.000000 -0.039120,0.454500,0.219200,0.000000,-1.000000,0.000000 0.383400,0.258800,-0.505900,0.069100,0.208600,-0.975600 0.297500,0.496600,-0.046950,0.000000,1.000000,0.000000 0.086140,0.496600,0.446300,0.000000,1.000000,0.000000 -0.355000,0.416100,-0.360200,0.999800,-0.017670,-0.007127 -0.437900,0.152500,-0.617900,0.708200,-0.005943,0.706000 -0.274000,0.496600,0.634200,0.000000,1.000000,0.000000 0.375800,0.454500,-0.681100,0.000000,-1.000000,0.000000 0.354800,0.408300,0.422800,-1.000000,0.000000,0.000000 0.396500,0.400400,0.383600,0.999500,0.024870,-0.017730 0.211400,0.353500,-0.581600,0.000000,0.000000,-1.000000 -0.383600,0.496600,0.305400,0.000000,1.000000,0.000000 0.234900,0.454500,0.501100,0.000000,-1.000000,0.000000 -0.242700,0.454500,-0.227000,0.000000,-1.000000,0.000000 0.368000,0.496600,-0.054780,0.000000,1.000000,0.000000 -0.266200,0.337800,0.539500,0.000000,0.000000,-1.000000 0.180100,0.454500,0.305400,0.000000,-1.000000,0.000000 -0.368000,0.454500,0.595100,0.000000,-1.000000,0.000000 0.234900,0.496400,-0.672800,0.000000,0.998300,-0.058930 0.007853,0.454500,0.313200,0.000000,-1.000000,0.000000 0.430600,0.495600,0.548100,-0.000064,1.000000,0.000064 0.397300,0.447200,-0.234900,0.929500,-0.368900,-0.000020 -0.344500,0.496600,-0.610700,0.000000,1.000000,0.000000 -0.031290,0.454500,-0.438400,0.000000,-1.000000,0.000000 0.477600,0.454500,0.266200,0.000000,-1.000000,0.000000 0.312400,0.377000,0.605200,-0.974100,-0.000019,0.226000 0.007851,0.496600,-0.164400,0.000000,1.000000,0.000000 -0.156600,0.454500,0.681200,0.000000,-1.000000,0.000000 0.354800,0.400500,-0.117400,-1.000000,0.000000,0.000000 -0.109600,0.454500,0.117500,0.000000,-1.000000,0.000000 0.133100,0.454500,0.415000,0.000000,-1.000000,0.000000 0.117500,0.496600,0.234900,0.000000,1.000000,0.000000 -0.477600,0.454500,-0.117400,0.000000,-1.000000,0.000000 -0.172200,0.454500,-0.250500,0.000000,-1.000000,0.000000 -0.180100,0.454500,0.187900,0.000000,-1.000000,0.000000 -0.289700,0.454500,0.156600,0.000000,-1.000000,0.000000 0.172300,0.454500,0.375800,0.000000,-1.000000,0.000000 -0.219200,0.496600,-0.461900,0.000000,1.000000,0.000000 0.187900,0.495600,0.211400,-0.000064,1.000000,0.000064 0.109600,0.496600,-0.140900,0.000000,1.000000,0.000000 -0.070440,0.454500,0.454100,0.000000,-1.000000,0.000000 0.445600,0.330000,-0.548000,0.997800,-0.000009,-0.065890 0.477600,0.454500,0.328900,0.000000,-1.000000,0.000000 0.281900,0.496600,-0.140900,0.000000,1.000000,0.000000 -0.485400,0.454500,0.595100,0.000000,-1.000000,0.000000 -0.397000,0.431800,-0.375800,-1.000000,0.000320,0.000000 0.258400,0.496600,-0.626300,0.000000,1.000000,0.000000 -0.438000,0.354100,0.597200,-0.903800,0.000000,0.427900 -0.133200,0.348000,-0.581000,0.201300,-0.421900,-0.884000 -0.430600,0.496600,-0.657600,0.000000,1.000000,-0.000322 0.354800,0.330000,0.375800,-1.000000,0.000000,0.000000 0.352600,0.110500,-0.534300,-0.571400,0.031350,0.820100 -0.413100,-0.500300,0.548000,-0.976700,0.211700,-0.035980 0.354800,0.384800,-0.054790,-1.000000,-0.005344,0.000107 -0.339300,0.126000,0.562600,-0.981200,0.055490,0.184900 -0.355200,0.408300,0.454100,0.999700,-0.017720,0.014160 0.402800,-0.628700,0.626100,-0.114700,-0.164500,-0.979700 0.289600,0.431800,0.581600,-0.112800,0.000693,0.993600 -0.501100,0.487500,-0.698000,-0.002150,0.791400,-0.611300 0.477600,0.496600,-0.086100,0.006642,1.000000,0.000000 0.450900,0.149900,-0.563900,-0.999300,0.000111,0.038580 0.447000,0.452100,-0.586900,0.535700,-0.837000,-0.111800 0.372000,-0.442800,-0.508500,0.024960,-0.164200,0.986100 -0.347100,-0.544500,0.599100,-0.817500,0.083450,-0.569800 -0.406300,-0.484200,-0.518100,-0.643600,-0.038770,0.764400 0.428500,0.392600,-0.607400,-0.803300,-0.003488,0.595500 -0.311300,0.408300,-0.599900,0.984100,0.000000,-0.177700 -0.281800,0.361300,0.581300,-0.000705,0.042530,0.999100 0.172600,0.324100,-0.574100,-0.565200,-0.824500,-0.027190 0.426800,0.139500,0.629400,0.471400,0.024200,0.881600 -0.376100,-0.188200,-0.577400,-0.421800,-0.144000,-0.895200 0.328900,0.454500,0.422800,0.000000,-1.000000,0.000000 0.335400,0.165500,0.587200,0.993300,0.107500,0.042550 -0.414900,-0.634000,0.552100,0.041110,0.207400,0.977400 -0.318600,-0.132700,-0.548400,0.989600,0.126900,0.068180 -0.312100,0.322200,0.587800,-0.919800,0.000000,0.392500 0.350900,-0.040520,0.516300,-0.528100,0.161900,-0.833600 -0.394400,-0.047540,0.605500,0.385000,0.227800,-0.894300 -0.397000,0.439500,0.258400,-0.998200,-0.060390,0.000000 -0.477600,0.496600,0.618500,-0.006633,1.000000,0.000000 -0.397000,0.283000,0.469800,-1.000000,-0.004764,0.000045 -0.446200,0.299400,-0.570900,0.984300,-0.121400,0.128000 0.322700,0.220400,-0.610300,-0.980100,-0.145800,-0.134600 -0.148700,0.431800,-0.581600,0.000000,0.000964,-1.000000 -0.322500,-0.061700,0.571600,0.993800,0.101400,-0.045210 0.360200,-0.100800,0.596400,-0.039120,0.197200,-0.979600 0.368000,0.284700,-0.390900,-0.015280,-0.900200,0.435300 0.142600,0.340900,-0.571500,-0.468900,-0.883200,-0.008954 -0.353200,-0.038110,0.517500,0.366000,0.160200,-0.916700 0.289600,0.384800,-0.581600,-0.122500,-0.001056,-0.992500 -0.409000,-0.089940,0.514700,-0.665200,-0.046000,-0.745200 -0.317500,-0.382100,-0.562100,0.953400,-0.118000,-0.277600 -0.368000,0.220400,-0.635800,0.014980,-0.038320,0.999200 -0.317800,0.384800,-0.577200,-0.983800,-0.000040,-0.179400 -0.352300,-0.028280,-0.517800,0.534300,0.152700,0.831400 -0.367900,-0.438300,0.510600,0.012790,0.156500,0.987600 0.317700,0.283700,0.525300,-0.969700,-0.111500,-0.217200 -0.354100,-0.601900,0.602800,0.972800,-0.187400,0.136500 0.055470,0.494800,-0.684200,0.000000,0.960800,-0.277200 -0.439400,-0.640100,0.609400,-0.919300,-0.163700,0.357900 0.325600,-0.452200,0.548300,-0.986900,-0.152600,-0.052240 0.396400,0.162500,0.517500,0.092540,0.127000,0.987600 0.502100,0.493400,-0.514100,0.341300,0.940000,0.000185 0.502300,0.493400,-0.662900,0.348800,0.937100,0.010990 -0.317800,0.369100,-0.548300,-0.999900,0.000001,-0.014520 0.329100,-0.119500,0.516600,-0.772400,0.183800,-0.607900 -0.297300,0.314300,0.539600,0.134300,0.000000,-0.990900 -0.418800,0.007580,0.606100,0.692600,0.265200,-0.670800 0.325700,0.245400,0.533800,-0.950000,-0.249100,-0.188200 0.347900,0.243700,0.635500,-0.230100,0.038900,0.972400 -0.427800,-0.588300,0.599800,-0.834400,0.351800,0.424300 -0.341600,-0.530100,-0.556400,0.968100,-0.233200,0.091440 0.507100,0.491400,0.501100,0.477900,0.878400,0.000000 -0.375200,-0.623100,0.555100,-0.473100,0.396100,0.787000 0.429500,0.067430,0.616700,0.600500,-0.183600,0.778200 -0.399500,0.000559,-0.513700,0.040570,0.110900,0.993000 -0.373800,-0.168700,0.500900,0.104100,-0.074230,0.991800 0.367400,-0.257400,0.489400,0.064960,0.046230,-0.996800 0.438700,0.262900,0.611700,0.778600,0.152700,0.608700 0.430500,-0.010230,-0.551600,-0.979600,0.198800,0.029020 -0.399300,0.462800,-0.712300,0.000000,-0.027270,-0.999600 -0.323300,0.345600,0.630400,0.418000,0.003005,0.908400 -0.355200,0.276500,-0.438400,0.984900,-0.172800,-0.007169 0.379700,-0.597800,0.539400,-0.225800,-0.284300,-0.931800 -0.309400,0.447100,-0.600200,0.865100,-0.485000,-0.127800 -0.319600,0.258600,0.624300,0.924000,-0.150100,0.351600 0.422800,0.454500,-0.540200,0.004329,-1.000000,0.000000 -0.368300,-0.109100,0.506000,0.070170,0.127000,-0.989400 0.349500,0.393300,-0.498100,-0.664400,0.000000,0.747400 -0.308700,0.439500,0.609900,0.975100,-0.122900,0.184900 -0.395400,-0.429500,-0.512400,0.728200,0.002196,-0.685300 -0.447600,0.337800,-0.540300,0.998600,0.000000,0.052030 0.336700,0.454500,0.000024,0.003810,-1.000000,0.000000 0.422100,0.360700,-0.500000,-0.276800,0.000000,-0.960900 0.367800,-0.092530,0.507000,0.059870,-0.117000,0.991300 -0.187900,0.496600,-0.665400,0.000000,0.999900,-0.016000 0.320900,0.426600,0.518400,0.952100,0.003003,0.305700 -0.318600,0.259800,0.563500,-0.988900,0.146300,0.024650 0.354800,0.400500,-0.023470,-1.000000,0.000000,0.000000 -0.258400,0.283000,0.581600,-0.000006,-0.028140,0.999600 -0.306600,-0.241600,0.532500,0.994400,0.063550,-0.083970 -0.414900,0.454500,-0.211400,0.003810,-1.000000,0.000000 0.328400,0.225100,-0.536000,-0.899600,-0.236800,0.366900 0.385900,-0.338100,-0.505700,0.833600,-0.012890,0.552300 0.407300,0.454600,-0.039120,0.166300,-0.986100,0.000000 0.354900,0.439600,-0.383600,-0.997900,-0.064910,0.000000 -0.441400,0.064330,0.534500,-0.915000,-0.108900,-0.388600 -0.378300,-0.333100,-0.565500,-0.590900,0.048410,-0.805300 -0.352100,-0.580800,-0.587000,0.969600,-0.243800,-0.022200 -0.289700,0.457400,0.710100,0.000000,-0.675200,0.737600 -0.445700,0.076280,-0.597300,-0.920400,-0.172400,-0.350900 0.447200,0.335200,0.568500,0.991200,0.000006,0.132500 0.437700,-0.664500,0.582500,-0.990900,0.062970,-0.119200 -0.424600,-0.533200,-0.548700,-0.977200,0.209600,0.032710 -0.391800,-0.592700,-0.536400,0.071740,-0.240000,0.968100 -0.361300,0.306500,-0.502500,0.090520,0.000000,-0.995900 -0.350400,0.452200,0.187900,0.612300,-0.790600,0.000000 0.344300,0.454600,0.321000,-0.169400,-0.985600,0.000000 -0.075660,0.457600,-0.710300,0.000000,-0.675700,-0.737200 0.411100,0.056580,-0.627400,0.342400,-0.148100,-0.927800 0.396800,0.431800,0.344500,1.000000,-0.003262,-0.003561 -0.361700,0.155200,-0.524700,-0.415000,0.153200,-0.896800 -0.434000,0.016210,0.580000,0.966200,0.197300,-0.166300 0.361100,0.270100,0.430600,-0.175900,-0.983700,-0.036680 0.439100,-0.597800,0.554800,0.945300,0.223700,-0.237400 -0.395500,-0.375200,-0.539500,-0.980500,0.123100,-0.153300 0.386600,-0.652900,0.555900,0.423100,0.165500,0.890800 0.324100,0.242800,0.595200,0.977300,0.202700,-0.062040 -0.502400,0.493400,0.328800,-0.344300,0.938900,0.000000 0.211400,0.452200,-0.537200,0.000000,-0.709100,0.705100 0.455000,0.165500,0.541800,-0.987600,0.003042,0.157100 0.435600,0.283800,0.498300,0.363300,-0.157500,-0.918300 0.335700,0.200000,0.542400,0.954400,0.150500,0.257700 -0.279900,0.493000,0.688800,-0.000009,0.923200,0.384400 0.141000,0.462800,-0.712300,0.000000,-0.027170,-0.999600 -0.443000,0.118700,-0.522500,-0.364900,-0.042160,0.930100 -0.368000,0.304600,-0.348300,0.014430,-0.927200,0.374300 0.319100,-0.116100,-0.555800,0.992300,-0.108000,-0.060850 -0.344300,-0.288700,-0.573800,-0.049130,0.029950,-0.998300 -0.317800,0.377000,0.563700,-1.000000,0.000000,0.000256 -0.396900,0.371000,-0.117700,-0.969100,-0.238900,0.060930 -0.359600,0.242600,0.511700,-0.132000,0.259200,0.956800 0.430600,0.475600,0.708000,-0.000054,0.470300,0.882500 -0.407000,-0.618300,-0.544700,-0.049150,0.245300,-0.968200 0.289700,0.392600,0.539500,0.000000,0.000000,-1.000000 0.354800,0.298700,-0.454100,-1.000000,0.000000,0.000000 -0.333000,0.373000,0.633900,0.124900,-0.020020,0.992000 -0.485300,0.496500,0.399300,-0.060600,0.998200,0.000000 0.385600,-0.405100,-0.566900,-0.824400,-0.201800,0.528900 0.411300,-0.101600,-0.548200,-0.977700,0.199400,0.065950 0.255800,0.452100,-0.588100,0.000000,-0.841200,-0.540700 -0.312700,-0.241600,-0.532500,-0.995900,-0.060330,-0.067980 0.507100,0.491400,0.227100,0.485200,0.874400,0.000000 -0.399400,-0.152400,0.554900,0.947500,0.230600,-0.221300 -0.046960,0.392600,0.580600,0.000021,-0.000107,1.000000 0.516000,0.485300,0.613300,0.709800,0.704400,0.000000 -0.329500,-0.018240,0.584200,-0.993500,-0.113500,0.011500 0.328900,0.184200,-0.592700,0.990300,0.135700,-0.029930 -0.434700,-0.021500,-0.547900,-0.978600,-0.204300,-0.023080 0.347900,-0.523300,0.591700,0.713300,0.064450,-0.697900 -0.344400,0.431800,-0.628100,-0.053000,0.000247,0.998600 0.266200,0.482900,-0.702800,0.000000,0.695400,-0.718600 0.519000,0.481600,0.122700,0.818000,0.575200,-0.000032 -0.367400,-0.053100,-0.509800,0.100000,0.123000,0.987400 -0.358400,0.019830,0.524500,0.385700,0.149300,-0.910500 0.311300,0.358700,0.537300,-0.573600,0.000000,-0.819100 0.345400,-0.091780,-0.605000,-0.055440,-0.189900,-0.980200 -0.086100,0.424000,-0.581600,0.000000,0.000000,-1.000000 0.397600,-0.499300,-0.521500,0.284900,-0.133100,0.949300 -0.383900,-0.545500,-0.525400,0.070890,-0.227300,0.971200 0.327100,-0.409100,-0.510300,-0.592800,-0.120800,0.796200 0.444300,0.377000,0.586200,0.961400,0.000000,0.275000 0.501100,0.454500,-0.642000,0.000000,-1.000000,0.000000 -0.404500,0.313700,0.628500,-0.336500,0.083870,0.937900 0.355600,-0.557100,-0.608500,0.573700,-0.101800,0.812700 -0.469700,0.495600,-0.133100,0.021220,0.999800,0.000000 0.351800,-0.335900,0.494800,0.081490,0.051160,0.995400 0.415000,-0.112500,0.546600,0.979300,-0.184700,0.082360 0.392100,-0.006190,-0.517200,-0.054130,0.124800,0.990700 -0.405400,-0.437600,-0.540200,-0.987100,0.148300,-0.060400 0.317200,0.329400,0.577400,0.979900,0.000062,0.199600 0.354800,0.400500,0.054830,-1.000000,0.000000,0.000000 -0.330700,-0.060760,-0.547500,-0.980000,-0.125100,-0.155000 -0.322400,-0.186500,0.584100,0.346300,-0.072880,0.935300 0.519100,0.481600,0.561100,0.799700,0.600400,0.006879 0.422500,-0.560900,-0.580000,-0.929400,-0.281600,0.238800 -0.357600,-0.387200,0.500400,0.032370,-0.156300,-0.987200 0.311600,-0.359100,-0.540200,0.996500,0.061620,-0.055740 -0.350700,0.452100,-0.039130,0.587000,-0.809600,0.000000 -0.407500,-0.534300,0.593100,0.728800,-0.322100,-0.604200 0.485300,0.496500,-0.219200,0.055290,0.998500,-0.000018 -0.422100,0.271800,-0.624000,-0.535200,0.128100,-0.835000 -0.349900,0.385500,0.498100,0.639300,-0.000017,-0.769000 -0.093940,0.480900,-0.704400,0.000282,0.601600,-0.798800 -0.516300,0.485000,0.399300,-0.686400,0.727200,0.000000 -0.230400,0.277400,0.580800,0.398200,-0.449100,0.799800 0.340300,-0.461700,-0.518300,0.450000,0.229400,-0.863100 0.340700,0.079560,0.571200,0.995000,-0.019320,0.097830 -0.345200,-0.502200,0.596000,-0.498400,-0.053060,-0.865300 -0.343900,0.100100,-0.545100,0.904300,0.038860,0.425100 0.383000,-0.005580,-0.621600,0.122800,-0.220400,-0.967600 0.432000,0.004341,-0.576000,-0.965200,0.213000,0.151800 -0.335900,-0.434600,-0.509700,0.543200,-0.216500,0.811200 -0.357600,0.335500,-0.263300,0.280400,-0.892000,0.354500 -0.395000,0.344600,-0.233500,-0.515300,-0.826900,0.225100 0.390600,0.332100,-0.274600,0.139600,-0.956500,0.256200 -0.372100,-0.501300,-0.516100,0.087490,-0.226400,0.970100 -0.315800,0.332600,-0.582600,-0.947300,0.000005,-0.320400 0.430800,-0.633100,0.550700,-0.439300,0.192300,0.877500 0.485200,0.496200,0.062650,-0.007012,1.000000,0.000000 0.375800,-0.045840,-0.516000,0.081400,-0.115400,-0.990000 0.336600,0.032880,0.571800,-0.996000,0.037230,-0.081810 -0.445700,0.408300,-0.579500,-0.985000,-0.000012,-0.172400 -0.370900,-0.408500,-0.579400,-0.269200,0.178700,-0.946400 -0.418300,0.408300,-0.494400,0.142100,0.000000,-0.989800 -0.172200,0.345700,0.539500,0.000000,0.000000,-1.000000 -0.355300,0.361300,0.446200,0.998500,0.024820,-0.049660 -0.367000,-0.636100,-0.613100,0.937600,-0.217900,-0.271000 -0.341400,-0.085700,0.514600,0.488600,0.161700,-0.857400 0.317800,0.424000,0.555900,0.999900,0.000000,-0.010680 -0.338600,0.032740,-0.579000,-0.996800,-0.044600,-0.065850 0.516000,0.485300,-0.435800,0.686200,0.727400,0.000000 -0.344800,-0.226100,0.496100,0.088140,0.063940,-0.994100 0.399300,-0.006559,0.515500,0.036460,-0.108100,0.993500 -0.219200,0.496300,-0.000029,-0.000000,0.999100,-0.042480 0.289700,0.496600,0.415000,0.000000,1.000000,0.000000 -0.439200,0.332600,-0.597600,-0.867200,0.005123,-0.498000 -0.375800,0.496600,-0.563700,0.000000,1.000000,0.000000 0.477600,0.496000,0.274000,-0.036260,0.999300,0.000000 0.317800,0.408300,-0.563700,0.999800,-0.003540,0.017670 -0.133100,0.408300,-0.540500,-0.000021,0.021160,0.999800 0.446300,0.496600,-0.532400,0.000000,1.000000,0.000000 0.242700,0.496600,-0.563700,0.000000,1.000000,0.000000 -0.219200,0.496600,0.305400,0.000000,1.000000,0.000000 -0.344500,0.496600,0.250600,0.000000,1.000000,0.000000 0.375800,0.496600,-0.626300,0.000000,1.000000,0.000000 0.493300,0.454500,0.383700,0.000000,-1.000000,0.000000 0.321000,0.496600,-0.595000,0.000000,1.000000,0.000000 -0.352300,0.495600,-0.344500,0.000000,1.000000,0.000000 -0.187900,0.454500,-0.321000,0.000000,-1.000000,0.000000 -0.266200,0.454500,0.516800,0.000000,-1.000000,0.000000 -0.407100,0.495600,-0.250500,0.000000,1.000000,0.000000 -0.501100,0.454500,-0.219200,0.000000,-1.000000,0.000000 -0.321000,0.495600,-0.227000,0.000000,1.000000,0.000000 0.266200,0.454500,-0.352300,0.000000,-1.000000,0.000000 -0.321000,0.454500,-0.266200,0.000000,-1.000000,0.000000 -0.397000,0.431800,0.336700,-1.000000,0.000320,0.000000 0.354800,0.384800,-0.336600,-1.000000,0.000000,0.000000 -0.360100,0.496600,0.407200,0.000000,1.000000,0.000000 -0.321000,0.454500,-0.313200,0.000000,-1.000000,0.000000 0.397000,0.384800,-0.352300,1.000000,0.000000,0.000000 0.313200,0.454500,0.446300,0.000000,-1.000000,0.000000 0.397000,0.376900,-0.469800,0.999800,-0.021350,-0.000157 -0.368000,0.496600,0.156600,0.000000,1.000000,0.000000 0.354800,0.377000,-0.399300,-1.000000,0.000000,0.000000 -0.438400,0.496600,0.234900,0.000000,1.000000,0.000000 0.321000,0.454500,0.250600,0.000000,-1.000000,0.000000 -0.250500,0.454500,0.446300,0.000000,-1.000000,0.000000 0.446300,0.454500,-0.242700,0.000000,-1.000000,0.000000 0.203600,0.454500,-0.477600,0.000000,-1.000000,0.000000 -0.438400,0.496600,0.407200,0.000000,1.000000,0.000000 0.360200,0.496600,-0.187900,0.000000,1.000000,0.000000 -0.258300,0.454500,0.368000,0.000000,-1.000000,0.000000 0.219200,0.495600,0.133100,0.000000,1.000000,0.000000 0.125300,0.454500,-0.375800,0.000000,-1.000000,0.000000 0.501100,0.454500,0.125300,0.000000,-1.000000,0.000000 0.172300,0.496600,-0.407100,0.000000,1.000000,0.000000 0.172300,0.496600,-0.156600,0.000000,1.000000,0.000000 -0.125200,0.496600,0.234900,0.000000,1.000000,0.000000 -0.219200,0.495600,-0.258400,0.000000,1.000000,0.000000 0.211400,0.496600,-0.313200,0.000000,1.000000,0.000000 0.354800,0.424000,0.203600,-1.000000,0.000000,0.000000 0.117500,0.496600,-0.454100,0.000000,1.000000,0.000000 0.141000,0.496600,0.501100,0.000000,1.000000,0.000000 0.493300,0.454500,-0.305300,0.000000,-1.000000,0.000000 0.354800,0.345700,0.399300,-1.000000,0.000000,0.000000 0.354800,0.416100,0.313200,-1.000000,0.000000,0.000000 -0.414900,0.496600,0.626400,0.000000,1.000000,0.000000 0.297500,0.495600,0.266200,0.000000,1.000000,0.000000 -0.274000,0.454500,-0.172200,0.000000,-1.000000,0.000000 -0.266200,0.496600,0.438500,0.000000,1.000000,0.000000 -0.352300,0.496600,0.501100,0.000000,1.000000,0.000000 -0.289700,0.496600,0.266200,0.000000,1.000000,0.000000 0.313200,0.496600,0.477600,0.000000,1.000000,0.000000 0.360200,0.496600,-0.242700,0.000000,1.000000,0.000000 -0.289700,0.454500,0.634200,-0.002057,-1.000000,-0.000706 -0.485400,0.454500,-0.665500,0.000000,-1.000000,0.000000 0.354900,0.439600,0.023510,-0.997900,-0.064920,0.000000 0.133100,0.496600,-0.015640,0.000000,0.999800,0.021310 -0.446300,0.496600,0.062660,0.000000,1.000000,0.000000 -0.078270,0.454500,0.164400,0.000000,-1.000000,0.000000 0.234900,0.495600,0.054820,0.000000,1.000000,0.000000 0.141000,0.454500,-0.070440,0.000000,-1.000000,0.000000 -0.258300,0.454500,-0.062610,0.000000,-1.000000,0.000000 0.007851,0.496600,-0.430600,0.000000,1.000000,0.000000 -0.140900,0.454500,0.524600,0.000000,-1.000000,0.004914 0.000024,0.454500,-0.274000,0.000000,-1.000000,0.000000 0.015680,0.454500,0.657700,0.000000,-1.000000,0.000000 0.093970,0.496600,0.485400,0.000000,1.000000,0.000000 0.101800,0.454500,0.610700,0.000000,-1.000000,0.000000 -0.031300,0.496600,0.297500,0.000000,1.000000,0.000000 -0.093930,0.454500,-0.164400,0.000000,-1.000000,0.000000 -0.345700,-0.570600,0.587500,0.972700,-0.229800,0.033100 0.391700,-0.523600,0.522800,-0.056760,0.166600,0.984400 0.344100,-0.280600,-0.577300,0.090940,0.006729,-0.995800 0.039170,0.454500,0.454100,0.000000,-1.000000,0.000000 -0.078270,0.454500,0.391500,0.000000,-1.000000,0.000000 -0.054780,0.496600,0.469800,0.000000,1.000000,0.000000 -0.180100,0.495600,-0.046960,0.000000,1.000000,0.000000 -0.297500,0.454500,-0.054780,0.000000,-1.000000,0.000000 -0.070440,0.496600,-0.234900,0.000000,1.000000,0.000000 -0.078270,0.496600,-0.289700,0.000000,1.000000,0.000000 0.086140,0.496600,0.634200,0.000000,1.000000,0.000000 0.133100,0.454500,-0.015630,0.000000,-1.000000,0.000000 0.101800,0.377000,0.539500,-0.000804,-0.001448,-1.000000 -0.414900,0.496600,0.078320,0.000000,1.000000,0.000000 -0.422100,-0.601800,-0.610700,0.573000,-0.333400,0.748700 -0.078270,0.496600,0.156600,0.000000,1.000000,0.000000 0.039170,0.454500,-0.015630,0.000000,-1.000000,0.000000 0.396000,0.384800,0.258400,1.000000,0.000004,-0.000000 0.375500,0.227500,-0.513900,0.092420,0.197100,-0.976000 0.367900,0.322200,-0.633800,0.110200,0.004548,-0.993900 0.101800,0.400500,0.581500,-0.017720,0.035460,0.999200 0.062650,0.495600,0.015670,0.000000,1.000000,-0.000064 -0.297500,0.416100,-0.540500,-0.004068,-0.000001,1.000000 0.250600,0.496600,0.344500,0.017780,0.999700,-0.014240 -0.355800,0.384800,0.399300,0.999500,-0.028550,0.014350 0.396500,0.400400,0.321000,1.000000,-0.000043,0.000021 -0.258300,0.496600,0.501100,0.000000,1.000000,0.000000 0.407200,0.496600,0.649900,0.000000,1.000000,0.000000 -0.352300,0.454500,-0.587200,0.000000,-1.000000,0.000000 -0.446300,0.495600,-0.595000,-0.006983,1.000000,0.003467 -0.430600,0.454500,0.415000,0.000000,-1.000000,0.000000 -0.117400,0.454500,0.383700,0.000000,-1.000000,0.000000 0.438500,0.454500,-0.148700,0.000000,-1.000000,0.000000 0.156600,0.454500,0.352300,0.000000,-1.000000,0.000000 0.305400,0.495600,0.305400,0.000000,1.000000,0.000000 0.117500,0.454500,-0.665500,0.000000,-1.000000,0.000000 -0.289700,0.496600,-0.587200,0.000000,1.000000,0.000000 -0.156600,0.454500,-0.649800,0.000000,-1.000000,0.000000 -0.422800,0.496600,0.187900,0.000000,1.000000,0.000000 -0.354800,0.384800,-0.187900,1.000000,0.000000,0.000000 0.195800,0.454500,0.422800,0.000000,-1.000000,0.000000 -0.242700,0.454500,0.391500,0.000000,-1.000000,0.000000 -0.180100,0.496600,0.156600,0.000000,1.000000,0.000000 0.117500,0.454500,-0.469700,0.000000,-1.000000,0.000000 -0.234900,0.454500,0.516800,0.000000,-1.000000,0.000000 0.313200,0.454500,0.477600,0.000000,-1.000000,0.000000 0.187900,0.400500,-0.539500,0.000000,0.000000,1.000000 -0.266200,0.454500,0.313200,0.000000,-1.000000,0.000000 -0.313200,0.454500,0.141000,0.000000,-1.000000,0.000000 -0.368000,0.495600,-0.469700,0.000000,1.000000,0.000000 0.354800,0.416100,-0.227000,-1.000000,0.000000,0.000000 -0.234900,0.454500,-0.368000,0.000000,-1.000000,0.000000 0.477600,0.454500,0.172300,0.000000,-1.000000,0.000000 -0.156600,0.454500,-0.336600,0.000000,-1.000000,0.000000 0.477600,0.454500,0.211400,0.000000,-1.000000,0.000000 0.258400,0.496600,-0.493200,0.000000,1.000000,0.000000 0.446300,0.495600,0.477600,0.000000,1.000000,0.000000 0.172300,0.439600,0.539500,0.000000,0.003618,-1.000000 -0.156600,0.454500,-0.274000,0.000000,-1.000000,0.000000 -0.266200,0.454500,-0.493200,0.000000,-1.000000,0.000000 0.328800,0.495600,0.211400,0.000000,1.000000,0.000000 -0.493200,0.454500,0.508900,0.000000,-1.000000,0.000000 0.462000,0.454500,-0.352300,0.000000,-1.000000,0.000000 -0.156600,0.454500,0.305400,0.000000,-1.000000,0.000000 -0.281800,0.454500,0.673400,0.000000,-1.000000,0.000000 -0.117400,0.454500,0.673400,0.000000,-1.000000,0.000000 0.507200,0.491400,-0.007821,0.466900,0.884300,0.005245 0.305400,0.495600,0.054820,0.000000,1.000000,0.000000 0.141000,0.454500,0.031340,0.000000,-1.000000,0.000000 -0.360100,0.495600,-0.054790,0.000000,1.000000,0.000000 -0.397000,0.439500,-0.023490,-0.998200,-0.060390,0.000000 0.493300,0.454500,-0.046950,0.000000,-1.000000,0.000000 -0.086100,0.454500,-0.438400,0.000000,-1.000000,0.000000 0.305400,0.454500,-0.062610,0.000000,-1.000000,0.000000 0.047000,0.496600,-0.642000,0.000000,1.000000,0.000000 -0.015630,0.454500,0.602900,0.000000,-1.000000,-0.004194 -0.400800,-0.201800,-0.517800,-0.992800,-0.107800,0.052950 -0.125200,0.454500,-0.015630,0.000000,-1.000000,0.000000 0.357000,0.366300,-0.634900,0.052200,0.000000,-0.998600 0.381500,-0.317600,0.561700,0.726800,0.042450,0.685600 0.086140,0.496600,-0.242700,0.000000,1.000000,0.000000 -0.336600,0.496600,0.078320,0.000000,1.000000,0.000000 -0.023470,0.400500,-0.581600,0.000000,0.000000,-1.000000 -0.046950,0.496600,-0.446300,0.000000,1.000000,0.000000 0.336700,0.496600,-0.117400,0.000000,1.000000,0.000000 -0.093930,0.496600,-0.657600,0.000000,1.000000,-0.000322 0.266200,0.495600,0.007861,0.000000,0.999800,0.021220 0.141000,0.454500,-0.626300,0.000000,-1.000000,0.000000 0.266200,0.400500,-0.581600,0.000000,0.000000,-1.000000 -0.397000,0.361300,0.438400,-1.000000,0.000000,0.000000 -0.313200,0.454500,-0.477600,0.000000,-1.000000,0.000000 -0.397000,0.439500,0.219200,-0.998200,-0.060390,0.000000 -0.313200,0.496600,0.563700,0.000000,1.000000,0.000000 0.219200,0.496600,-0.125200,0.000000,1.000000,0.000000 -0.203600,0.495600,-0.164400,0.000000,1.000000,0.000000 0.164400,0.454500,0.156600,0.000000,-1.000000,0.000000 0.164400,0.496600,0.360200,0.000000,1.000000,0.000000 -0.383700,0.142100,-0.635400,0.045930,0.009777,0.998900 0.086150,0.454500,-0.414900,0.000000,-1.000000,0.000000 -0.007808,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.397000,0.439500,-0.070460,-0.998200,-0.060390,0.000000 -0.336600,0.454500,0.015680,-0.004194,-1.000000,0.000000 -0.125200,0.454500,0.031340,0.000000,-1.000000,0.000000 0.141000,0.496600,-0.086100,0.000000,1.000000,0.000000 0.383700,0.495600,0.078310,0.000000,1.000000,0.000000 -0.396900,0.330000,-0.477400,-0.974500,0.000000,0.224200 -0.407300,0.454600,0.383700,-0.169900,-0.985500,0.000000 -0.015640,0.431800,0.539500,0.000000,0.000000,-1.000000 -0.062610,0.439500,-0.581600,0.000000,-0.129400,-0.991600 -0.397000,0.439500,-0.117400,-0.998200,-0.060390,0.000000 0.383900,0.087190,0.519700,-0.090920,0.029820,-0.995400 -0.054790,0.447100,0.583000,0.000000,-0.493900,0.869500 -0.054780,0.496600,0.665400,0.000000,0.999900,0.015990 0.442400,0.252200,0.506700,0.483700,-0.106600,-0.868700 0.164400,0.496600,0.485400,0.000000,1.000000,0.000000 0.353800,0.447200,0.109600,-0.942900,-0.333000,0.000000 0.125300,0.454600,-0.595200,0.000000,-0.987100,-0.160200 -0.354800,0.431800,0.086140,1.000000,0.000320,0.000000 0.418300,0.369100,0.494300,-0.179100,0.006947,0.983800 -0.344500,0.454600,0.516900,-0.000962,-0.987400,0.158400 -0.329300,-0.395000,0.509000,-0.536000,0.311800,0.784500 0.430600,0.454500,0.297500,0.000000,-1.000000,0.000000 0.266200,0.424000,0.539500,0.000000,0.000000,-1.000000 0.397500,-0.194400,-0.524500,0.992900,-0.108200,0.049010 0.360300,0.369300,0.100700,-0.286900,-0.946800,-0.145900 -0.416900,0.060570,0.624700,-0.542200,-0.140600,0.828400 0.397000,0.369100,-0.234900,1.000000,0.000000,0.000000 0.357500,-0.416400,0.501400,-0.074660,-0.159900,-0.984300 -0.447000,0.235400,0.600900,-0.955500,0.121000,0.269000 -0.031300,0.469700,0.710600,0.000000,0.303300,0.952900 0.320300,-0.395600,-0.571700,0.849100,0.049820,0.525900 0.451000,0.118900,0.601300,0.941600,-0.106400,0.319400 -0.340600,0.294400,0.633500,-0.133700,-0.086080,-0.987300 -0.319000,-0.093340,0.578500,0.991500,0.109400,0.070190 -0.348300,0.034540,0.625000,-0.493700,0.125500,-0.860500 0.307200,-0.327600,-0.540300,-0.997100,-0.057290,0.050890 -0.331200,-0.021680,0.555400,-0.982000,-0.119400,0.146600 -0.360900,0.114400,-0.633400,-0.255800,0.116200,0.959700 -0.344500,-0.154800,0.592100,-0.012260,-0.187100,0.982300 -0.339800,0.095230,-0.586900,-0.998200,-0.027950,-0.052320 0.485300,0.496500,-0.187900,0.054870,0.998500,-0.000029 0.376000,-0.483600,0.511800,-0.036180,-0.209800,-0.977100 -0.391600,0.377000,0.628300,0.138600,-0.000081,-0.990300 -0.366600,-0.375100,0.576800,-0.370400,0.133700,0.919200 -0.384200,-0.324000,0.557200,-0.887200,0.065580,0.456800 -0.457600,0.149900,-0.563500,-0.998500,0.001157,-0.054790 -0.388900,0.483600,0.701300,0.000236,0.696500,0.717600 0.317400,0.377000,-0.518100,-0.953200,-0.000007,0.302300 -0.398700,0.111200,0.639000,-0.149600,-0.134000,0.979600 0.329300,-0.022240,-0.571400,0.990700,-0.112800,-0.075680 0.311700,-0.296400,0.548200,0.997500,0.047300,-0.052460 -0.344900,0.384800,-0.630900,0.046950,0.000000,-0.998900 0.396500,0.377000,0.156600,1.000000,0.004055,-0.008585 -0.379400,-0.453800,0.588000,-0.366700,0.179800,0.912800 0.401600,-0.090250,-0.586700,-0.709900,0.320500,0.627100 0.323000,0.493000,0.688800,0.000000,0.910700,0.413000 0.375900,0.165600,0.635700,-0.031650,0.002069,-0.999500 0.352200,-0.163100,0.499300,0.108800,-0.122000,0.986600 0.390800,-0.206200,-0.558900,0.887400,-0.117200,-0.445800 0.344300,-0.304200,0.571800,-0.027400,-0.031340,-0.999100 -0.408900,-0.131300,-0.547200,0.973000,0.202200,0.111200 0.289700,0.269800,-0.563700,0.000107,-1.000000,-0.000085 -0.345800,0.110600,0.540700,0.845500,0.013690,-0.533900 -0.515700,0.485500,-0.039140,-0.678700,0.734500,0.000066 -0.323900,0.258600,-0.612200,-0.925600,0.160600,0.342700 -0.336600,0.454500,-0.015630,-0.004194,-1.000000,0.000000 0.365500,-0.335800,-0.574700,0.380700,0.043930,-0.923700 0.433400,0.054920,-0.602900,-0.870700,0.179100,0.458000 0.429000,-0.661900,0.608400,-0.693400,0.271400,-0.667500 0.329300,-0.139200,-0.590200,0.439600,0.146600,0.886200 -0.340500,0.405700,-0.499800,0.389000,0.000000,0.921200 0.369800,-0.358800,0.568600,-0.449900,-0.051550,-0.891600 0.204700,0.300500,-0.566300,-0.645800,-0.763500,-0.000182 -0.422600,-0.665600,-0.555300,0.095820,-0.753700,-0.650200 0.361800,0.126700,0.637200,-0.185700,-0.075030,0.979700 -0.523400,0.454800,-0.180100,-0.261200,-0.965300,0.000000 0.390800,-0.429500,0.509500,-0.475000,0.051470,0.878500 0.093960,0.481000,-0.704200,0.000249,0.606400,-0.795200 -0.350400,0.452200,-0.438400,0.612700,-0.790300,-0.000049 -0.406200,0.416100,-0.624600,-0.274700,-0.000015,-0.961500 -0.325700,-0.069730,-0.578700,0.990200,0.083130,-0.111900 -0.449600,0.322200,-0.517800,-0.984100,0.001720,0.177500 -0.332300,-0.477400,-0.555700,-0.979000,0.201100,-0.032330 0.442200,0.423900,0.506800,-0.811900,-0.000107,0.583800 0.485300,0.496500,-0.391500,0.057270,0.998400,-0.000015 0.312300,-0.227600,0.520000,-0.982400,0.090000,-0.163800 -0.373700,-0.640700,-0.559000,0.820000,-0.225300,0.526100 -0.360100,0.454500,0.649900,0.000085,-1.000000,-0.004367 0.419800,-0.042170,0.518600,-0.654600,0.012310,0.755900 -0.399100,-0.662000,0.625300,-0.060150,-0.402800,0.913300 0.420200,-0.608100,-0.616400,-0.513500,-0.353300,0.782000 -0.522500,0.477000,0.681200,-0.846700,0.532100,0.000087 -0.355700,0.298700,-0.454100,0.999100,0.038970,-0.014170 -0.242700,0.462600,0.712200,0.000000,-0.040070,0.999200 -0.343600,0.307200,0.501300,0.331000,-0.001140,-0.943600 -0.423100,-0.061760,-0.530800,0.970900,0.167900,-0.171000 -0.422400,0.306600,0.499500,0.272500,0.013270,0.962100 0.422800,0.454500,0.219200,0.000000,-1.000000,0.000000 -0.047330,0.371400,0.563700,0.153700,-0.988100,0.000113 -0.434000,-0.614800,0.552600,-0.764800,0.040580,-0.642900 0.054820,0.475600,-0.708000,0.000048,0.490200,-0.871600 0.336200,0.297600,-0.632400,0.259700,-0.077590,0.962600 0.397800,-0.457700,-0.518400,0.699400,-0.018070,0.714500 0.401300,0.452200,0.125300,0.618000,-0.786100,0.000000 -0.360100,-0.606700,-0.568000,0.954200,-0.271900,0.124400 0.314500,-0.218000,0.559900,0.956700,-0.028160,-0.289800 0.413000,0.196900,-0.637400,0.272500,0.006310,-0.962100 0.440400,0.197000,0.516500,-0.418900,0.129000,0.898800 0.336400,0.169100,0.613900,0.958800,0.052820,-0.279300 -0.242700,0.452200,-0.537500,0.002879,-0.728700,0.684800 0.370600,0.055470,-0.523700,-0.129000,0.030990,0.991200 0.337300,0.139000,-0.565900,0.977300,0.147300,-0.152400 0.350400,0.452200,0.201000,-0.613500,-0.789700,0.000000 0.449400,0.400400,0.517800,0.987700,-0.014090,-0.155500 -0.394400,-0.234100,-0.524700,0.994100,0.108600,0.008235 -0.298100,0.298800,0.583600,0.414900,-0.013250,0.909800 0.523600,0.473800,0.185300,0.892200,0.451700,0.000077 0.375400,-0.399900,0.573000,-0.396700,-0.193300,-0.897400 -0.417400,-0.501200,-0.547900,-0.973300,0.228300,-0.024950 0.346300,-0.467700,0.512400,-0.310800,-0.225300,-0.923400 0.342900,0.063940,0.621500,-0.781800,-0.075140,0.619000 -0.392000,-0.238200,0.538500,-0.987400,-0.121400,0.101700 -0.452700,0.204600,-0.528000,0.909200,0.064590,-0.411400 0.377600,-0.645800,0.619300,0.591100,0.335800,-0.733400 -0.384900,-0.010430,0.617500,0.159300,0.219000,-0.962600 0.391600,-0.474700,0.585100,0.474400,0.298100,0.828300 -0.414900,0.490500,-0.693700,-0.000023,0.860500,-0.509500 0.411400,-0.045400,0.597100,0.598100,-0.258300,0.758600 -0.364300,0.161100,0.524600,-0.241200,0.131300,0.961500 -0.320800,-0.399100,-0.532700,-0.984300,0.155200,-0.084260 0.441100,0.047670,0.587800,-0.953900,0.154500,-0.257200 -0.447200,0.447200,-0.532500,0.957200,-0.289100,0.013260 0.434200,-0.611400,0.607500,0.737600,0.344000,0.581100 -0.193100,0.457600,-0.710300,0.000000,-0.675700,-0.737200 -0.453000,0.087450,-0.555800,-0.990700,-0.135100,-0.012810 -0.330000,-0.257600,-0.572700,-0.163200,0.082540,0.983100 0.427300,-0.029620,-0.533600,0.947600,-0.167800,0.272000 0.507100,0.491400,-0.595000,0.449000,0.893500,0.000032 0.448600,0.194800,-0.528200,0.916200,-0.029660,0.399600 0.516000,0.485300,-0.639400,0.686200,0.727400,0.000000 -0.397000,0.400400,0.070460,-1.000000,0.000000,0.000000 0.497600,0.495300,-0.104400,0.225900,0.974200,0.000204 0.353900,-0.516600,-0.604700,-0.170900,0.159900,-0.972200 0.419000,0.410900,0.615600,-0.529600,-0.000030,-0.848300 0.424300,0.007187,0.604500,0.670400,-0.285200,0.685000 -0.485300,0.496200,-0.093940,-0.015090,0.999900,0.000019 0.415300,-0.511700,-0.562100,0.964800,0.246500,-0.091620 -0.523400,0.454800,0.375800,-0.261200,-0.965300,0.000000 0.400900,-0.128000,0.571900,-0.789100,0.254700,-0.559000 0.360400,-0.067170,0.508700,-0.141500,0.142800,-0.979600 -0.512000,0.488500,-0.469800,-0.570700,0.821200,0.000000 -0.365500,-0.335800,0.574600,-0.389000,0.030130,0.920700 -0.502400,0.493400,0.211400,-0.344300,0.938900,0.000000 0.427700,-0.646200,-0.617300,-0.680500,0.212300,0.701300 0.326300,-0.074570,-0.598900,-0.861200,-0.016410,-0.508100 0.416800,-0.029060,-0.597800,0.765700,-0.271900,-0.583000 -0.446900,-0.622600,-0.567700,-0.970500,0.234000,0.057620 -0.400400,-0.485900,0.581700,-0.749100,0.305300,0.587900 -0.315100,-0.327800,-0.556900,-0.924900,0.057170,0.375800 0.361100,0.326700,-0.291300,-0.112400,-0.942000,0.316100 0.402600,-0.178200,0.539500,0.977600,-0.163100,0.133200 -0.336100,0.124000,0.622200,0.954200,-0.086270,0.286400 -0.516200,0.485100,0.430600,-0.686800,0.726900,0.000665 -0.443300,0.291300,0.572100,0.986600,-0.119100,-0.111900 -0.305200,0.361200,0.538600,0.286400,-0.008198,-0.958100 -0.512000,0.488500,0.493300,-0.570700,0.821200,0.000000 0.447600,0.259600,-0.555900,-0.994500,-0.094640,0.043800 -0.185300,0.484900,0.700900,-0.000160,0.699000,0.715100 0.274100,0.454500,0.524600,0.000000,-1.000000,0.004914 -0.448200,0.103900,0.548700,0.984200,0.093350,0.150400 0.527900,0.462100,-0.438400,0.997300,0.073540,0.000044 0.527900,0.462100,0.454100,0.994700,0.102500,0.000000 -0.376200,-0.309500,0.500500,0.459800,0.043740,0.887000 0.325800,0.252600,0.623000,-0.887500,-0.117400,0.445600 0.375800,0.347800,0.219600,-0.000022,-0.969700,-0.244400 0.016010,0.374300,0.571500,-0.066410,-0.997100,0.037610 0.397000,0.431800,0.375800,0.999900,-0.013940,0.007109 0.330000,-0.256800,0.574800,-0.139700,-0.095960,0.985500 -0.368000,0.269800,0.438500,0.031970,-0.999500,0.000074 -0.133100,0.496600,0.657700,0.000000,1.000000,0.000258 -0.508900,0.454500,0.422800,0.000000,-1.000000,0.000000 0.314900,-0.261200,-0.570100,0.691800,0.051590,0.720300 0.394700,0.306500,-0.502200,0.195000,-0.000008,-0.980800 -0.425000,0.337800,-0.493100,-0.202900,-0.000004,0.979200 0.527200,0.457300,-0.548000,0.848600,-0.529100,0.000000 -0.436500,0.022120,0.545300,0.971500,0.185900,0.147100 0.330800,-0.170800,0.583400,-0.302300,-0.128100,0.944600 -0.430600,0.454600,0.704800,0.000000,-0.976800,0.214200 0.421200,-0.084750,0.548000,0.975500,-0.208500,0.069540 -0.441500,0.071160,0.587700,0.971600,0.145900,-0.186100 -0.502400,0.493400,0.540200,-0.344300,0.938900,0.000000 0.187900,0.447200,0.583700,0.000000,-0.458100,0.888900 0.518900,0.481800,0.294900,0.815900,0.578200,0.000016 0.318200,-0.133000,-0.527400,-0.936200,0.161000,0.312300 0.330700,-0.226300,-0.498100,-0.286300,0.092400,0.953700 -0.368500,0.431800,0.631100,0.104900,0.000964,-0.994500 0.441300,0.298600,-0.511400,0.910700,-0.000443,0.413000 0.419200,-0.076370,-0.540100,0.979400,-0.200400,0.023390 -0.515900,0.485300,-0.266200,-0.673700,0.739000,0.000072 -0.391800,-0.100300,-0.505800,0.116000,-0.088710,-0.989300 -0.337200,-0.476500,-0.586500,0.646100,0.037400,-0.762400 -0.351400,0.212500,0.639000,-0.194500,0.007412,-0.980900 0.516800,0.454500,-0.336600,0.019410,-0.999800,0.000000 0.381500,-0.237100,-0.502500,-0.657200,0.015340,-0.753500 0.439400,0.273000,-0.508000,0.684100,-0.057430,0.727100 -0.429100,0.260400,0.506000,-0.276000,-0.164600,-0.947000 -0.508900,0.454500,-0.360100,0.000000,-1.000000,0.000000 -0.522500,0.477100,0.610700,-0.846200,0.532900,0.000097 -0.347900,0.204600,-0.633000,-0.405000,0.034960,0.913600 -0.375600,0.087900,0.637600,-0.039960,-0.138600,0.989500 -0.435500,0.001497,-0.526500,-0.900100,-0.134100,0.414500 -0.420700,0.296800,-0.618100,0.505000,-0.125000,0.854000 0.307800,0.291200,-0.595000,-0.953100,-0.115100,-0.280100 -0.527900,0.462100,0.117400,-0.998300,0.058250,-0.000046 -0.329400,-0.140800,0.510600,0.579900,0.187000,-0.792900 -0.441000,0.308100,0.517200,0.948600,-0.008737,0.316300 -0.361000,0.346600,-0.225400,0.177900,-0.948500,0.262200 -0.384200,-0.077520,0.601100,0.341500,0.241300,-0.908400 -0.320800,-0.329300,-0.501000,0.699000,-0.086790,0.709800 0.340700,0.149400,0.555300,0.976900,0.134800,0.166100 -0.335900,-0.096640,-0.516100,0.705200,0.194400,0.681800 0.357600,0.209400,-0.516700,-0.191400,-0.167300,0.967100 -0.402500,-0.445900,0.547500,-0.984200,0.156100,0.083370 0.338100,0.087750,-0.561600,0.977200,-0.036510,-0.209100 0.354600,0.097980,-0.634800,0.313400,0.097180,0.944600 -0.519300,0.481700,-0.422800,-0.768400,0.640000,0.000000 -0.368200,-0.444500,-0.505100,0.047460,-0.153600,0.987000 0.341300,0.017170,0.547700,0.947000,-0.124800,0.295900 0.348600,-0.062090,-0.515300,-0.341900,0.124800,0.931400 0.342100,0.103200,0.623300,-0.916600,-0.031520,0.398500 0.320100,0.332600,0.512900,-0.953500,0.000022,-0.301400 0.399600,-0.154300,-0.561800,0.922900,-0.235700,-0.304600 -0.397900,0.392600,0.486100,-0.958100,0.000000,-0.286500 -0.368000,0.423900,0.501800,-0.022990,0.000003,0.999700 0.415900,-0.495500,0.537700,0.970800,0.223300,-0.087530 -0.338600,-0.061560,0.522000,0.634800,0.161400,-0.755600 -0.313400,-0.139300,0.564200,0.993300,0.114500,0.014500 0.348600,-0.236000,0.493900,0.089410,-0.059180,0.994200 0.404000,0.072990,0.626400,-0.211000,0.146800,-0.966400 0.416000,-0.578800,0.604500,-0.545800,-0.342400,-0.764700 0.385000,-0.153700,-0.501900,0.249800,0.079740,0.965000 0.407000,0.016530,-0.519300,0.036320,0.076470,0.996400 -0.448800,0.181200,0.587600,0.989000,-0.004673,-0.147600 -0.313700,-0.210900,-0.554000,-0.991300,-0.038640,0.125600 0.415800,-0.578900,0.536900,-0.304600,0.125700,0.944200 -0.392200,0.078800,0.524500,-0.080220,-0.045140,0.995800 -0.424800,0.242800,-0.623700,0.518000,-0.119500,0.847000 -0.415500,0.048190,-0.519500,0.065920,-0.010580,-0.997800 -0.329300,0.183200,0.606800,-0.985300,0.159200,-0.061940 0.387600,-0.459500,-0.581200,-0.612400,-0.222200,0.758700 0.308500,0.431800,-0.610000,-0.983600,0.000198,-0.180200 -0.397000,0.306800,-0.360300,-0.994400,-0.095090,0.045390 0.374400,0.111700,0.523700,0.156100,-0.017410,0.987600 0.444600,0.056200,-0.555800,0.992100,-0.125600,0.004653 0.375800,0.297400,-0.364700,-0.000016,-0.902800,0.430000 -0.312800,-0.293200,0.571900,0.660400,0.002273,0.750900 0.307000,-0.226000,-0.540400,-0.995900,0.060840,0.066320 -0.374900,-0.067950,-0.604900,-0.089410,-0.214400,-0.972600 0.370400,-0.179100,-0.580500,-0.349100,0.137500,0.926900 0.501100,0.462800,-0.712300,0.000012,-0.027220,-0.999600 0.400200,0.283500,-0.630400,-0.210200,-0.105300,0.972000 -0.394900,-0.351300,-0.531800,-0.995500,0.035280,-0.088330 -0.372100,-0.599300,0.547700,-0.469800,0.204500,0.858800 0.391100,-0.100800,0.502600,0.079400,0.092330,-0.992600 0.354800,0.361300,-0.227000,-1.000000,-0.000366,0.000151 0.355700,-0.011390,-0.619100,0.112000,0.191000,0.975200 0.442700,0.423900,-0.571000,0.989900,-0.010690,-0.141600 -0.516700,0.454500,0.195800,-0.020180,-0.999800,0.000000 0.396600,0.276500,0.454100,0.983800,-0.179300,-0.007450 0.354900,0.276300,-0.430600,-0.986700,-0.162600,0.000118 -0.448200,0.237400,-0.596700,0.953800,-0.106800,0.280700 -0.421700,-0.018930,-0.592800,0.770200,0.273200,0.576300 0.395000,0.358900,-0.172900,0.589800,-0.797900,0.124300 -0.323600,0.330000,0.512000,-0.742000,-0.004758,0.670400 -0.336900,-0.296300,0.495100,0.124600,-0.059100,-0.990400 -0.390600,-0.390200,-0.502700,-0.586000,-0.060140,0.808100 -0.414400,0.055930,0.520900,-0.091510,0.010540,-0.995700 0.524700,0.472500,-0.683700,0.909600,0.415500,0.006512 0.359900,0.353500,-0.502500,0.026730,0.000000,-0.999600 -0.422400,-0.637900,-0.546600,-0.072070,-0.243800,0.967100 0.414900,-0.641300,-0.553700,-0.047690,0.187000,-0.981200 0.383800,0.047740,-0.628900,-0.081270,0.139100,0.986900 0.515900,0.485300,-0.232300,0.708200,0.706000,0.000071 -0.342500,0.126400,-0.618900,-0.934600,0.073930,0.347900 0.351500,-0.225300,-0.581900,0.137400,-0.120100,-0.983200 -0.341500,-0.117200,0.508300,0.346500,0.154900,-0.925200 -0.348500,0.070470,-0.536100,0.751600,0.048840,0.657800 0.335500,-0.103800,0.595200,-0.404000,-0.118900,0.907000 0.527200,0.457300,0.203600,0.849300,-0.527900,0.000000 -0.317800,0.345700,0.563700,-1.000000,0.000000,0.000256 -0.375000,-0.405700,0.503800,-0.179900,-0.115200,-0.976900 -0.359500,0.290100,0.380400,0.204800,-0.859900,-0.467500 0.289700,0.454800,-0.704900,0.000000,-0.974500,-0.224400 -0.346900,0.056180,-0.623800,0.531200,-0.089730,-0.842500 0.328400,-0.450400,-0.579500,0.859500,0.055980,0.508100 0.408400,0.024680,0.617000,-0.402200,0.209900,-0.891200 -0.321500,0.283800,0.508800,0.756700,-0.139200,-0.638700 0.396500,0.376900,0.430700,0.998500,-0.024760,0.049580 -0.308600,-0.319700,0.562500,0.961300,-0.043220,0.272000 -0.327700,-0.172900,-0.507500,-0.694800,-0.137100,-0.706000 0.334800,0.040340,-0.587100,0.998200,-0.028280,-0.052740 -0.321700,0.236400,0.555800,0.969300,-0.229300,-0.088680 -0.407100,0.496600,-0.587200,0.000000,1.000000,0.000000 0.227100,0.496000,0.000034,0.000000,0.999100,0.042510 0.396600,0.337800,0.375800,0.998200,0.042530,-0.042530 -0.451700,0.181200,0.556100,0.999800,0.019850,0.001590 -0.355300,0.424000,-0.234900,0.999300,0.035400,0.014210 -0.355500,0.361300,0.266200,0.998200,-0.042460,0.042460 0.396800,0.400400,0.172300,0.999300,-0.035570,0.007124 0.352400,0.345700,0.628200,-0.015190,0.000001,-0.999900 0.242700,0.496600,0.524600,0.000000,1.000000,0.000000 0.493300,0.454500,0.462000,0.000000,-1.000000,0.000000 0.250600,0.454500,-0.665500,0.000000,-1.000000,0.000000 0.375800,0.495600,0.187900,0.000000,1.000000,0.000000 -0.258300,0.496600,0.172300,0.000000,1.000000,0.000000 0.211400,0.495600,0.242700,-0.000043,1.000000,0.000021 0.242700,0.377000,0.539500,0.000000,0.000000,-1.000000 -0.133100,0.496600,0.587200,0.000000,1.000000,0.000000 -0.469700,0.454500,0.109600,0.000000,-1.000000,0.000000 0.125300,0.369100,0.539500,-0.000803,-0.001240,-1.000000 -0.242700,0.454500,0.242700,0.000000,-1.000000,0.000000 -0.203500,0.353500,0.539500,0.000000,0.000000,-1.000000 -0.422800,0.495600,-0.297500,0.000000,1.000000,0.000000 -0.125200,0.454500,0.344500,0.000000,-1.000000,0.000000 0.321000,0.454500,-0.133100,0.000000,-1.000000,0.000000 0.164400,0.369100,0.581600,0.000000,0.000000,1.000000 -0.493200,0.454500,0.383700,0.000000,-1.000000,0.000000 0.156600,0.496600,-0.305300,0.000000,1.000000,0.000000 -0.305300,0.454500,0.360200,0.000000,-1.000000,0.000000 0.133100,0.408300,-0.581600,0.000000,0.000000,-1.000000 -0.397000,0.384800,-0.469800,-1.000000,0.000000,-0.003224 -0.305300,0.454500,0.219200,0.000000,-1.000000,0.000000 0.321000,0.496600,-0.305300,0.000000,1.000000,0.000000 0.454100,0.454500,-0.485400,-0.001931,-1.000000,-0.001803 0.156600,0.495600,0.117500,0.000000,1.000000,0.000000 0.289700,0.454500,0.133100,0.000000,-1.000000,0.000000 0.454100,0.454500,-0.289700,0.000000,-1.000000,0.000000 -0.438400,0.495600,-0.485400,0.000000,1.000000,0.000000 0.148800,0.495600,0.164400,-0.000149,1.000000,0.000107 0.141000,0.454500,0.673400,0.000000,-1.000000,0.000000 0.442500,0.039880,0.539100,-0.965200,0.123200,0.230700 -0.335800,0.055990,0.579300,-0.996300,-0.029360,0.081170 -0.391700,-0.222900,0.518900,0.981500,0.138300,0.132300 0.031340,0.496600,0.250600,0.000000,1.000000,0.000000 -0.070440,0.454500,-0.234900,0.000000,-1.000000,0.000000 0.219200,0.454500,0.031340,0.000000,-1.000000,0.000000 -0.062610,0.454500,-0.266200,0.000000,-1.000000,0.000000 -0.266200,0.454500,-0.101800,0.000000,-1.000000,0.000000 -0.093930,0.454500,0.438500,0.000000,-1.000000,0.000000 -0.438400,0.454500,-0.101800,0.000000,-1.000000,0.000000 0.310900,-0.194500,-0.556000,0.998100,-0.046740,0.041350 -0.133100,0.496600,0.007827,0.000000,0.999800,-0.021260 0.187900,0.496600,-0.023470,0.000000,1.000000,0.000000 -0.078270,0.384800,0.580600,0.014160,0.014160,0.999800 -0.007808,0.496600,0.305400,0.000000,1.000000,0.000000 0.031340,0.496600,-0.540200,0.000000,1.000000,0.000000 -0.454100,0.496600,0.031340,0.000000,1.000000,0.000000 -0.274000,0.496600,0.054830,0.000000,1.000000,0.000000 0.086140,0.496600,0.281900,0.000000,1.000000,0.000000 -0.093930,0.454500,0.493300,0.000000,-1.000000,0.000000 -0.407100,0.496600,0.031340,0.000000,1.000000,0.000000 0.031340,0.454500,-0.454100,0.000000,-1.000000,0.000000 0.062660,0.496600,0.477600,0.000000,1.000000,0.000000 -0.211400,0.496600,0.062660,0.000000,1.000000,0.000000 0.039170,0.454500,0.234900,0.000000,-1.000000,0.000000 -0.321000,0.496600,0.023510,0.000000,1.000000,0.000000 0.054830,0.454500,0.133100,0.000000,-1.000000,0.000000 -0.501100,0.454500,-0.062610,0.000000,-1.000000,0.000000 0.070490,0.496600,-0.281800,0.000000,1.000000,0.000000 -0.054780,0.454500,0.344500,0.000000,-1.000000,0.000000 0.070490,0.454500,0.344500,0.000000,-1.000000,0.000000 0.039170,0.454500,0.508900,0.000000,-1.000000,0.000000 0.258400,0.454500,0.054830,0.000000,-1.000000,0.000000 0.397000,0.408300,0.031320,1.000000,0.000000,0.000000 0.234900,0.454500,-0.078270,0.000000,-1.000000,0.000000 0.415000,0.454500,-0.007805,-0.004194,-1.000000,0.000000 0.023510,0.496600,-0.015640,0.000000,0.999800,0.021310 -0.219200,0.496600,0.093970,0.000000,1.000000,0.000000 0.086140,0.496600,0.383700,0.000000,1.000000,0.000000 0.086140,0.496600,0.336700,0.000000,1.000000,0.000000 0.070470,0.408300,-0.540500,-0.010640,0.031880,0.999400 0.336700,0.496100,0.446300,0.049570,0.998100,-0.035370 -0.355500,0.376900,0.211400,0.999300,-0.035430,0.007074 0.317800,0.337800,-0.555900,0.999900,0.000000,0.015440 0.396300,0.376900,0.211400,0.999300,-0.035440,0.007072 -0.101800,0.416100,-0.540500,0.000000,0.000000,1.000000 0.397000,0.431800,0.266200,1.000000,0.000320,0.000000 0.396600,0.298700,-0.399300,0.999100,0.042560,0.000023 0.352300,0.496600,-0.297500,0.000000,1.000000,0.000000 -0.180100,0.454500,0.454100,0.000000,-1.000000,0.000000 -0.172200,0.454500,0.524600,0.000000,-1.000000,0.004914 -0.164400,0.454500,-0.516700,0.000000,-1.000000,0.000000 -0.297500,0.495600,-0.242700,0.000000,1.000000,0.000000 0.305400,0.496600,-0.109600,0.000000,1.000000,0.000000 0.305400,0.496600,-0.148700,0.000000,1.000000,0.000000 0.101800,0.454500,-0.642000,0.000000,-1.000000,0.000000 -0.140900,0.454500,0.626400,0.000000,-1.000000,0.000000 0.396000,0.361300,0.297500,1.000000,0.007038,-0.003491 0.383700,0.454500,0.579400,0.000000,-1.000000,0.000000 0.227100,0.454500,0.422800,0.000000,-1.000000,0.000000 0.415000,0.495600,0.164400,0.000000,1.000000,0.000000 -0.493200,0.454500,-0.172200,0.000000,-1.000000,0.000000 0.250600,0.496600,0.391500,0.000000,1.000000,0.000000 -0.328800,0.454500,0.250600,0.000000,-1.000000,0.000000 -0.234900,0.496600,0.266200,0.000000,1.000000,0.000000 -0.438400,0.454500,0.681200,0.000000,-1.000000,0.000000 -0.438400,0.454500,-0.634200,0.001286,-1.000000,0.001222 -0.242700,0.496600,-0.634200,0.000000,1.000000,0.000000 0.250600,0.496600,0.563700,0.000000,1.000000,0.000000 -0.328800,0.496600,0.642000,0.000000,1.000000,0.000000 0.397000,0.384800,-0.078300,0.999800,0.017860,0.000155 -0.360100,0.496600,0.109600,0.000000,1.000000,0.000000 -0.086100,0.384800,-0.540300,0.014170,0.024810,0.999600 0.397000,0.384800,-0.125300,1.000000,0.000000,0.000000 -0.164400,0.496600,-0.595000,0.000000,1.000000,0.000000 0.250600,0.454500,-0.383600,0.000000,-1.000000,0.000000 0.180100,0.496600,-0.571500,0.000000,1.000000,0.000000 0.407100,0.495600,0.266200,0.000000,1.000000,0.000000 0.133100,0.496600,-0.164400,0.000000,1.000000,0.000000 0.141000,0.496600,-0.242700,0.000000,1.000000,0.000000 -0.140900,0.496600,0.109600,0.000000,1.000000,0.000000 0.289700,0.454500,0.211400,0.000000,-1.000000,0.000000 0.454100,0.496600,-0.274000,0.000000,1.000000,0.000000 0.422800,0.496600,-0.399300,0.000000,1.000000,0.000000 -0.328800,0.496600,0.415000,0.000000,1.000000,0.000000 -0.454100,0.495600,-0.187900,0.000000,1.000000,0.000000 0.266200,0.496600,-0.274000,0.000000,1.000000,0.000000 -0.430600,0.495600,-0.164400,0.000000,1.000000,0.000000 -0.397000,0.392600,0.344500,-1.000000,0.000000,0.000000 0.397000,0.337800,-0.360200,1.000000,-0.003552,-0.003552 0.396000,0.322200,-0.430600,1.000000,0.000000,0.000000 -0.397000,0.431800,-0.281900,-1.000000,0.000320,0.000000 -0.461900,0.496600,0.501100,0.000000,1.000000,0.000000 0.344500,0.495600,0.297500,0.000000,1.000000,0.000000 -0.422800,0.495600,-0.360100,0.000000,1.000000,0.000000 -0.397000,0.322200,0.415000,-1.000000,0.000000,0.000000 0.396000,0.424000,-0.133100,1.000000,0.003496,0.003555 0.187900,0.496600,-0.289700,0.000000,1.000000,0.000000 -0.297500,0.496600,0.156600,0.000000,1.000000,0.000000 -0.211400,0.314300,0.539500,0.000000,0.000000,-1.000000 -0.172200,0.454500,-0.195700,0.000000,-1.000000,0.000000 -0.250500,0.454500,0.415000,0.000000,-1.000000,0.000000 0.203600,0.454500,-0.321000,0.000000,-1.000000,0.000000 0.156600,0.496600,0.211400,0.021290,0.999500,-0.021310 -0.164400,0.454500,-0.461900,0.000000,-1.000000,0.000000 -0.156600,0.400500,0.539500,0.000000,0.000000,-1.000000 -0.187900,0.495600,-0.219200,0.000000,1.000000,0.000000 -0.375800,0.495600,-0.101800,0.000000,1.000000,0.000000 0.148800,0.454500,-0.219200,0.000000,-1.000000,0.000000 0.125300,0.454500,-0.321000,0.000000,-1.000000,0.000000 -0.219200,0.496600,0.125300,0.000000,1.000000,0.000000 0.501100,0.454500,-0.203500,0.000000,-1.000000,0.000000 0.211400,0.495600,0.164400,0.000000,1.000000,0.000000 -0.422800,0.495600,-0.117400,0.000000,1.000000,0.000000 0.156600,0.496600,-0.211400,0.000000,1.000000,0.000000 -0.156600,0.454500,-0.407100,0.000000,-1.000000,0.000000 -0.156600,0.454500,0.133100,0.000000,-1.000000,0.000000 0.219200,0.454500,0.203600,0.000000,-1.000000,0.000000 -0.281800,0.454500,-0.305300,0.000000,-1.000000,0.000000 -0.355800,0.337800,-0.430600,1.000000,0.000000,0.000000 0.281900,0.454500,0.626400,0.000000,-1.000000,0.000000 0.391500,0.496600,-0.383600,0.000000,1.000000,0.000000 -0.274000,0.496600,-0.446300,0.000000,1.000000,0.000000 -0.508900,0.454500,-0.242700,0.000000,-1.000000,0.000000 -0.422800,0.454500,0.548100,-0.004194,-1.000000,0.000000 -0.234900,0.496600,0.485400,0.000000,1.000000,0.000000 0.336700,0.496600,-0.258300,0.000000,1.000000,0.000000 0.508900,0.454500,-0.461900,0.000000,-1.000000,0.000000 -0.352300,0.495600,-0.133100,0.000000,1.000000,0.000000 0.407200,0.496600,-0.227000,0.000000,1.000000,0.000000 -0.281800,0.496600,-0.540200,0.000000,1.000000,0.000000 -0.274000,0.496600,-0.508900,0.000000,1.000000,0.000000 0.156600,0.454500,0.508900,0.000000,-1.000000,0.000000 0.297500,0.496600,0.587200,0.000000,1.000000,0.000000 0.360200,0.495600,0.321000,0.000000,1.000000,0.000000 0.354800,0.353500,0.430600,-1.000000,0.000000,0.000000 -0.485400,0.454500,-0.454100,0.000000,-1.000000,0.000000 -0.493200,0.454500,-0.321000,0.000000,-1.000000,0.000000 -0.397000,0.337800,0.368000,-1.000000,0.000000,0.000000 0.399300,0.496600,-0.587200,0.000000,1.000000,0.000000 -0.328800,0.496600,0.368000,0.000000,1.000000,0.000000 0.039170,0.496600,-0.070440,0.000000,1.000000,0.000000 -0.086100,0.454500,0.023510,0.000000,-1.000000,0.000000 0.289700,0.496600,-0.524500,0.000000,1.000000,0.000000 0.438500,0.496600,-0.555900,0.000000,1.000000,0.000000 -0.438400,0.495600,-0.540200,0.000000,1.000000,0.000000 -0.195700,0.496600,-0.626300,0.000000,1.000000,0.000000 -0.172200,0.496600,0.571600,0.000000,1.000000,0.000000 -0.007806,0.454500,-0.031290,0.000000,-1.000000,0.000000 0.015680,0.496600,-0.078270,0.000000,1.000000,0.000000 0.389700,-0.502300,-0.594100,-0.450000,-0.292300,0.843800 -0.023460,0.454500,0.015680,0.000000,-1.000000,0.000000 0.007851,0.496600,0.587200,0.000000,1.000000,0.000000 0.353800,0.447200,-0.078270,-0.942900,-0.333000,0.000000 -0.093930,0.496600,0.642000,0.000000,1.000000,0.000000 -0.078270,0.496600,0.321000,0.000000,1.000000,0.000000 0.031340,0.496600,-0.180100,0.000000,1.000000,0.000000 -0.093930,0.496600,-0.187900,0.000000,1.000000,0.000000 0.054830,0.496600,-0.360100,0.000000,1.000000,0.000000 0.469800,0.496600,-0.062610,0.000000,1.000000,0.000000 0.203600,0.454500,-0.054780,0.000000,-1.000000,0.000000 -0.031290,0.454500,0.172300,0.000000,-1.000000,0.000000 0.047000,0.454500,-0.305300,0.000000,-1.000000,0.000000 0.054830,0.496600,0.211400,0.000000,1.000000,0.000000 -0.062610,0.454500,0.610700,0.000000,-1.000000,0.000000 -0.086100,0.454500,-0.501100,0.000000,-1.000000,0.000000 -0.086100,0.496600,0.548100,0.000000,1.000000,0.000000 0.078320,0.454500,-0.610700,0.000000,-1.000000,0.000000 -0.397900,0.447200,0.281900,-0.946200,-0.323500,0.000000 -0.007814,0.400500,0.580600,0.000000,-0.000064,1.000000 0.101800,0.454500,-0.015630,0.000000,-1.000000,0.000000 0.394900,-0.217800,0.503600,0.900500,-0.057540,-0.431100 -0.400300,0.305200,-0.498100,-0.485100,0.021320,-0.874200 -0.023470,0.496600,0.360200,0.000000,1.000000,0.000000 -0.445600,0.384800,0.548000,-0.997800,0.000000,0.065940 -0.305300,0.454500,-0.689000,0.000000,-1.000000,0.000000 0.031340,0.454500,-0.689000,0.000000,-1.000000,0.000000 0.258400,0.454500,0.602900,0.000000,-1.000000,-0.004194 0.422800,0.454500,0.587200,-0.021970,-0.999500,-0.024190 -0.354800,0.377000,-0.469700,0.999800,-0.021260,-0.000005 -0.289700,0.369200,-0.540200,0.000000,0.042510,0.999100 -0.485300,0.496500,0.461900,-0.060600,0.998200,0.000000 -0.258300,0.314300,-0.539500,0.000000,0.000000,1.000000 0.397000,0.322200,-0.328800,1.000000,-0.005595,0.001724 -0.397000,0.400400,0.407100,-1.000000,0.000000,0.000000 -0.234900,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.101800,0.496600,0.516800,0.000000,1.000000,0.000000 0.308300,-0.265200,0.540300,-0.999000,0.038080,-0.022810 0.383600,-0.607300,-0.547600,0.155100,0.303000,-0.940300 -0.315200,0.291000,-0.532600,0.894800,-0.014110,0.446100 -0.015640,0.454500,0.696800,0.001886,-1.000000,0.006943 -0.031300,0.496600,-0.234900,0.000000,1.000000,0.000000 0.054830,0.454500,0.297500,0.000000,-1.000000,0.000000 0.274100,0.496600,-0.039120,0.000000,1.000000,0.000000 -0.086100,0.496600,-0.313200,0.000000,1.000000,0.000000 0.250600,0.495600,0.086140,0.000000,1.000000,0.000000 0.015680,0.454500,-0.368000,0.000000,-1.000000,0.000000 0.318700,0.261000,-0.623600,-0.925800,-0.161700,-0.341600 -0.355800,0.416100,-0.007840,0.999800,0.000000,-0.021260 -0.367700,0.423900,-0.629900,-0.081910,0.000001,-0.996600 -0.227000,0.384800,-0.540500,-0.003510,-0.014260,0.999900 0.328800,0.495600,0.399300,0.000000,1.000000,0.000000 0.454100,0.454500,-0.634200,0.000000,-1.000000,0.000000 0.368000,0.496600,-0.602800,0.000000,1.000000,0.000000 0.109600,0.454500,0.274100,0.000000,-1.000000,0.000000 0.156600,0.496600,0.642000,0.000000,1.000000,0.000000 -0.203500,0.496600,0.555900,0.000000,1.000000,0.000000 0.219200,0.400500,-0.581600,0.000000,0.000000,-1.000000 -0.125200,0.496600,-0.430600,0.000000,1.000000,0.000000 0.141000,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.328800,0.454500,0.430600,0.000000,-1.000000,0.000000 0.211400,0.496600,0.328900,0.000000,1.000000,0.000000 -0.219200,0.454500,0.407200,0.000000,-1.000000,0.000000 0.404800,-0.005165,0.613300,0.359900,-0.235100,0.902900 0.164400,0.496400,-0.672800,0.000000,0.998300,-0.058930 0.415000,0.454500,0.352300,-0.004194,-1.000000,0.000000 -0.383500,-0.364300,0.508700,0.791900,0.005990,0.610600 0.341200,-0.006159,0.612200,-0.465000,-0.101800,0.879400 0.315500,-0.162400,-0.531100,0.959300,-0.164800,-0.229200 0.373200,-0.226500,0.493700,-0.115300,-0.041400,0.992500 0.352400,0.298900,0.629100,0.028150,-0.077860,-0.996600 -0.397000,0.431800,0.461900,-1.000000,0.000320,0.000000 -0.397900,0.447200,0.140900,-0.946200,-0.323500,0.000000 -0.324600,0.393300,0.506100,0.424700,0.000083,-0.905300 0.314000,-0.267200,0.511600,0.936600,-0.087280,0.339400 -0.211400,0.454500,-0.618500,0.000000,-1.000000,0.000000 -0.164400,0.469700,0.710600,0.000000,0.303400,0.952900 0.354800,0.431800,-0.250500,-1.000000,0.000320,0.000000 -0.315100,-0.335900,-0.524100,-0.987300,0.059340,-0.147400 -0.015630,0.454500,-0.618500,0.000000,-1.000000,0.000000 0.407300,0.236600,0.503700,-0.018400,-0.207300,-0.978100 0.015680,0.424000,0.539500,0.000000,0.000000,-1.000000 0.321000,0.454500,-0.274000,0.000000,-1.000000,0.000000 -0.407000,0.439600,0.495300,-0.293400,-0.039980,-0.955200 -0.346400,-0.477700,0.596000,0.135100,0.192800,0.971900 0.401800,-0.414700,0.539500,0.983500,0.154600,0.093760 0.347100,0.197800,0.520800,-0.462400,-0.186600,-0.866800 -0.523400,0.454800,-0.673300,-0.261200,-0.965300,0.000000 -0.433000,0.110700,0.526800,0.440500,0.030920,0.897200 0.388000,-0.396100,-0.513100,-0.773600,-0.005802,-0.633700 0.446800,0.079530,-0.571800,0.989600,-0.135300,-0.049750 -0.344300,0.454600,-0.289700,0.165600,-0.986200,0.000000 -0.310400,0.416100,0.616900,0.965200,-0.000041,0.261600 -0.441500,0.439500,0.564100,0.992200,-0.059190,-0.109700 0.355500,0.055790,0.528400,-0.598200,0.036040,-0.800600 -0.390400,0.369100,-0.502500,-0.044910,0.000000,-0.999000 -0.309100,-0.351000,0.532700,0.994200,-0.058480,-0.089960 -0.321800,0.264000,-0.548200,-0.966600,0.236000,-0.099500 -0.523400,0.454800,0.070480,-0.261200,-0.965300,0.000000 -0.345800,0.262500,0.508600,-0.125600,0.236600,0.963400 0.388700,0.095810,-0.525600,0.101000,-0.031740,-0.994400 0.399500,0.395500,0.499300,0.487100,-0.000172,0.873300 0.338400,-0.013880,-0.538000,0.810700,-0.131200,-0.570600 0.398600,0.189000,0.636600,0.124700,0.004332,0.992200 -0.365200,-0.105500,-0.595300,0.066650,0.211400,0.975100 -0.391700,0.102800,-0.519500,0.089980,0.029630,0.995500 0.319700,-0.183500,-0.509500,-0.714800,0.122300,0.688600 0.028730,0.480900,0.704400,-0.000280,0.603400,0.797500 0.391600,0.283200,0.628000,-0.124300,-0.106200,-0.986500 0.444000,0.369100,-0.517900,0.948800,0.010460,0.315800 0.336700,0.454500,0.093980,0.003810,-1.000000,0.000000 0.243100,0.276200,0.539600,-0.022570,-0.249600,-0.968100 -0.332600,-0.045580,-0.599400,0.903200,-0.025810,-0.428500 0.353800,0.447200,0.477600,-0.943000,-0.332800,0.002048 0.367800,-0.202100,0.495100,-0.011890,-0.073380,0.997200 -0.353800,0.447200,0.211400,0.942500,-0.334300,0.000000 0.062660,0.454600,-0.532200,0.000000,-0.984500,0.175500 -0.367900,0.282900,-0.632800,-0.046860,0.096300,-0.994200 -0.446600,0.453700,0.500600,-0.224900,-0.963800,-0.143000 -0.398200,0.018010,-0.621200,-0.177200,-0.197500,-0.964100 0.394700,0.416100,-0.502200,0.195000,0.000000,-0.980800 0.326700,0.306500,0.623300,0.546000,0.017030,-0.837600 -0.338900,0.157400,-0.625500,0.894100,-0.095710,-0.437600 -0.414700,-0.078480,0.564600,0.940800,0.252500,-0.226100 -0.397900,0.447200,-0.305300,-0.946200,-0.323500,0.000000 0.313100,0.447300,-0.530000,-0.866800,-0.221300,0.446900 0.187900,0.462600,0.712200,0.000000,-0.040070,0.999200 -0.310100,0.291300,0.535300,0.643600,-0.044370,-0.764100 0.313600,-0.171200,0.555900,-0.995300,0.086110,0.044070 0.203600,0.469700,-0.710600,0.000937,0.314500,-0.949200 -0.526400,0.468500,-0.485400,-0.958000,0.286700,0.000000 0.092100,0.361400,-0.566300,-0.304800,-0.952400,-0.000145 0.396200,0.346500,0.250900,0.983600,-0.179800,0.013030 -0.015640,0.469700,-0.710600,0.000000,0.318600,-0.947900 -0.391400,0.212500,-0.634800,0.069800,-0.021240,0.997300 -0.368200,-0.249200,0.496900,0.221100,-0.036140,0.974600 0.337400,-0.280600,0.490600,-0.125300,-0.033100,-0.991600 -0.477600,0.490500,-0.693700,0.000020,0.859700,-0.510900 -0.298000,0.431800,0.583000,0.444600,-0.019070,0.895500 -0.415400,-0.554900,-0.594600,0.685700,-0.279200,0.672200 0.354900,0.298700,0.485300,-0.976200,0.000000,-0.217100 -0.521800,0.478200,-0.078290,-0.835700,0.549200,0.000141 -0.497500,0.494900,0.352300,-0.226200,0.974100,0.000000 -0.502400,0.493400,-0.148800,-0.344200,0.938900,0.000000 0.351300,-0.522700,0.531200,0.645700,0.312200,0.696800 -0.311800,-0.179600,0.526400,0.986300,0.064840,-0.151900 -0.370500,-0.542600,0.611300,-0.017960,0.225900,0.974000 0.384200,0.367600,-0.111600,0.015250,-0.992000,0.125600 0.413900,0.134300,-0.634900,-0.309000,0.020960,0.950800 -0.423000,0.165100,0.520500,0.145500,0.114700,0.982700 -0.355300,0.392600,0.164400,0.999800,-0.021340,0.000072 0.440800,0.431800,0.587900,-0.950000,-0.000005,-0.312300 -0.453300,0.149900,0.548400,-0.991600,-0.012000,-0.129000 -0.368000,0.374700,0.015890,0.020370,-0.999000,-0.039380 -0.390000,-0.264700,-0.500600,-0.851000,-0.051980,0.522600 -0.407100,-0.539500,-0.524900,-0.246000,-0.150400,0.957500 0.434600,0.361400,-0.597200,-0.896000,-0.006959,0.443900 0.394800,0.272100,-0.454100,0.690500,-0.723200,0.015000 -0.359900,-0.620900,0.573400,0.941600,-0.291700,-0.168500 0.110000,0.362800,0.581400,-0.015320,-0.090840,0.995700 0.406900,0.040430,0.519200,0.020330,-0.023960,0.999500 -0.386200,0.103100,0.523500,0.099230,0.030720,-0.994600 -0.391200,0.063900,-0.521000,-0.086640,-0.029370,-0.995800 -0.389400,-0.384500,-0.560600,-0.780200,0.191000,-0.595700 0.469800,0.495800,0.618500,0.017800,0.999500,-0.024800 -0.351800,-0.209900,-0.495500,-0.096960,-0.066140,-0.993100 -0.235000,0.273700,-0.580700,0.294900,-0.635600,-0.713500 0.417500,-0.532700,0.578700,-0.888100,-0.272900,-0.369800 -0.380000,-0.278100,-0.560200,-0.713500,0.014550,-0.700500 -0.441500,0.010030,-0.547900,-0.979900,-0.198700,0.016740 -0.361200,0.370900,-0.086370,0.177600,-0.978500,0.105000 0.396900,0.283000,0.477500,0.972600,-0.012800,-0.232300 -0.440100,0.291200,-0.499300,-0.643500,-0.066590,0.762500 -0.391900,-0.640000,0.552200,0.124500,-0.209900,-0.969800 0.213400,0.493000,0.688800,0.000000,0.910700,0.413100 0.438500,-0.658700,-0.579100,0.947800,-0.318200,0.018560 0.093970,0.462600,0.712200,0.000000,-0.040070,0.999200 0.314000,0.395200,-0.617900,0.894900,-0.001741,0.446400 -0.399300,0.496100,0.672700,0.000000,0.996500,0.083150 -0.376400,0.299200,0.631700,0.098910,-0.100100,-0.990100 -0.450300,0.228400,0.563900,0.996300,-0.071550,-0.048170 0.436900,0.103000,0.520700,0.284400,-0.011480,-0.958600 0.485300,0.496500,-0.587200,0.059560,0.998200,-0.000018 -0.329300,0.207500,0.627800,0.932100,-0.111800,0.344400 -0.388400,0.297500,0.364700,-0.052200,-0.902900,-0.426600 -0.367200,-0.138700,-0.590300,-0.138700,-0.209800,-0.967900 0.345200,0.141100,-0.542500,0.796700,0.148400,-0.585900 -0.367700,0.071290,-0.628700,-0.093630,0.113200,0.989200 0.329500,-0.479000,-0.532500,-0.880100,-0.268700,0.391400 0.371800,-0.543400,-0.532000,0.129800,0.244200,-0.961000 -0.414100,0.447200,0.618900,0.455900,-0.305500,-0.835900 -0.379000,-0.119500,-0.500600,0.040430,0.123300,0.991500 0.353600,0.220400,0.637500,-0.173200,0.019820,0.984700 0.441800,0.377000,-0.578600,0.991600,0.007161,-0.128800 -0.421700,-0.078520,-0.557500,-0.963200,-0.230900,-0.138000 0.337100,0.126500,0.595100,-0.997900,-0.057220,-0.028680 -0.414300,-0.585800,-0.534700,-0.161800,-0.206600,0.965000 0.338600,0.040350,0.595700,0.996600,-0.009513,-0.081590 -0.114800,0.353200,-0.563100,0.341600,-0.939800,-0.000118 0.412100,-0.092590,0.515600,-0.752300,0.054710,0.656600 -0.343400,0.032970,-0.618800,0.666300,-0.058350,-0.743400 0.401200,-0.460600,-0.556000,-0.974200,-0.162700,0.156700 -0.516700,0.454500,0.344500,-0.020180,-0.999800,0.000000 -0.320100,0.335200,-0.513000,0.932900,0.000000,0.360100 -0.242700,0.469700,-0.710600,0.000000,0.318500,-0.947900 0.318300,-0.184400,0.512900,-0.887800,0.081290,-0.453000 -0.101800,0.454500,-0.313200,0.000000,-1.000000,0.000000 -0.289700,0.495600,-0.383600,-0.017650,0.999700,0.014130 0.396800,0.337800,0.407100,0.998900,-0.021260,0.042530 -0.344400,0.036220,0.537800,0.777100,0.066700,-0.625800 0.377100,-0.327900,0.496600,-0.341700,0.035320,0.939100 -0.434300,0.362600,0.506400,0.662500,0.000000,0.749000 -0.354800,0.337800,0.305400,0.999400,-0.032530,-0.010680 0.396500,0.353500,-0.407100,0.999400,-0.024860,-0.024860 -0.354900,0.276300,-0.461900,0.988100,-0.154000,-0.004197 -0.148700,0.369200,-0.540000,0.010670,0.032000,0.999400 -0.452700,0.134200,0.579300,-0.996200,-0.006161,0.086850 0.415000,0.496600,0.595100,0.000000,1.000000,0.000000 -0.522400,0.477300,0.368000,-0.850700,0.525600,0.000091 0.451000,0.173400,-0.563900,-0.999200,0.000368,0.040770 0.337800,0.423900,0.627300,0.188100,0.004552,-0.982100 -0.070440,0.454500,0.657700,0.000000,-1.000000,0.000000 0.078320,0.496600,0.602900,0.000000,1.000000,0.000000 0.519300,0.481200,0.388900,0.817400,0.576100,0.000044 -0.454100,0.454500,0.634200,0.000000,-1.000000,0.000000 -0.461900,0.454500,-0.618500,0.000085,-1.000000,0.000085 -0.422800,0.495600,-0.454100,0.000000,1.000000,0.000000 0.195800,0.454500,-0.297500,0.000000,-1.000000,0.000000 0.321000,0.496600,0.555900,0.000000,1.000000,0.000000 0.321000,0.454500,-0.352300,0.000000,-1.000000,0.000000 -0.015640,0.496600,0.540300,0.000000,1.000000,0.000000 -0.219200,0.454500,0.681200,0.000000,-1.000000,0.000000 0.438500,0.454500,0.148800,0.000000,-1.000000,0.000000 0.507100,0.491400,0.649800,0.477900,0.878400,0.000000 0.354800,0.369100,0.383700,-1.000000,0.000000,0.000000 0.141000,0.454500,-0.657600,0.000000,-1.000000,0.000000 -0.523400,0.454800,0.689000,-0.261200,-0.965300,0.000000 -0.344500,0.496600,0.438500,0.000000,1.000000,0.000000 0.321000,0.454500,0.203600,0.000000,-1.000000,0.000000 0.250600,0.454500,0.164400,0.000000,-1.000000,0.000000 0.501100,0.454500,0.164400,0.000000,-1.000000,0.000000 -0.422800,0.454500,0.227100,0.000000,-1.000000,0.000000 0.164400,0.454500,-0.187900,0.000000,-1.000000,0.000000 0.070490,0.454500,-0.195700,0.000000,-1.000000,0.000000 -0.172200,0.454500,0.054830,0.000000,-1.000000,0.000000 0.242700,0.454500,-0.493200,0.000000,-1.000000,0.000000 -0.187900,0.454500,0.352300,0.000000,-1.000000,0.000000 -0.140300,0.494800,-0.684200,0.000000,0.960800,-0.277200 0.101800,0.454500,-0.117400,0.000000,-1.000000,0.000000 -0.086100,0.496600,0.015680,0.000000,1.000000,0.000000 0.117500,0.454500,0.375800,0.000000,-1.000000,0.000000 0.180100,0.495600,0.133100,0.000000,1.000000,0.000000 -0.109600,0.496600,-0.469700,0.000000,1.000000,0.000000 0.101800,0.495600,0.078310,0.000000,1.000000,0.000000 0.397000,0.408300,-0.203600,0.999700,0.021290,0.010650 0.328900,0.496600,-0.148700,0.000000,1.000000,0.000000 0.289700,0.454500,-0.438400,0.000000,-1.000000,0.000000 0.203600,0.454500,-0.219200,0.000000,-1.000000,0.000000 -0.314000,0.366500,0.617900,-0.895600,0.000016,-0.445000 -0.454100,0.454500,-0.148700,0.000000,-1.000000,0.000000 0.501100,0.454500,0.266200,0.000000,-1.000000,0.000000 0.383700,0.496600,-0.101800,0.000000,1.000000,0.000000 -0.446300,0.454500,0.250600,0.000000,-1.000000,0.000000 0.397000,0.345600,-0.313200,1.000000,0.000000,0.000000 0.399300,0.495600,0.391500,0.000000,1.000000,0.000000 -0.211400,0.496600,0.438500,0.000000,1.000000,0.000000 0.227100,0.496600,0.422800,0.000000,1.000000,0.000000 -0.397000,0.408300,-0.407100,-1.000000,0.000000,0.000000 0.469800,0.495600,0.477600,-0.021260,0.999800,0.000000 -0.397000,0.423900,0.125300,-1.000000,0.000000,0.000000 -0.242700,0.454500,-0.031290,0.000000,-1.000000,0.000000 0.234900,0.454500,0.133100,0.000000,-1.000000,0.000000 -0.266200,0.496600,0.133100,0.000000,1.000000,0.000000 0.396000,0.345700,-0.469700,1.000000,0.000000,-0.000320 0.000024,0.454500,-0.477600,0.000000,-1.000000,0.000000 -0.328800,0.454500,-0.344500,0.000000,-1.000000,0.000000 -0.354800,0.392600,-0.281800,1.000000,0.000000,0.000000 -0.203600,0.495600,-0.140900,0.000000,1.000000,0.000000 -0.250500,0.454500,0.007854,0.000000,-1.000000,0.000000 0.039170,0.454500,-0.227000,0.000000,-1.000000,0.000000 -0.203500,0.454500,-0.180100,0.000000,-1.000000,0.000000 0.354800,0.322200,-0.407100,-1.000000,0.000000,0.000000 -0.211400,0.454500,0.321000,0.000000,-1.000000,0.000000 -0.289700,0.496600,0.289700,0.000000,1.000000,0.000000 -0.328800,0.496000,-0.007861,-0.000000,0.999100,-0.042550 0.422800,0.495600,0.086140,0.000000,1.000000,0.000000 -0.477600,0.496600,0.532400,-0.006633,1.000000,0.000000 0.438500,0.496600,-0.375800,0.000000,1.000000,0.000000 0.274100,0.424000,-0.581600,0.000000,0.000000,-1.000000 0.354800,0.408300,0.383700,-1.000000,0.000000,0.000000 -0.133100,0.495600,-0.078280,0.000000,1.000000,0.000000 0.321000,0.496600,-0.336600,0.000000,1.000000,0.000000 0.354800,0.330000,-0.321000,-1.000000,-0.000367,0.000152 -0.508900,0.454500,-0.524500,0.000000,-1.000000,0.000000 -0.383600,0.134200,0.641800,-0.070430,0.006113,0.997500 -0.367900,0.165600,-0.638500,0.014880,-0.002280,-0.999900 -0.289700,0.496600,0.399300,0.000000,1.000000,0.000000 0.485400,0.454500,-0.274000,0.000000,-1.000000,0.000000 -0.109600,0.496600,0.454100,0.000000,1.000000,0.000000 -0.281800,0.454500,0.469800,0.000000,-1.000000,0.000000 -0.317800,0.322200,0.563700,-1.000000,0.000000,0.000256 0.266200,0.353500,-0.581600,0.000000,0.000000,-1.000000 0.141000,0.454500,0.234900,0.000000,-1.000000,0.000000 -0.391400,0.496600,0.501100,0.000000,1.000000,0.000000 -0.211400,0.454500,-0.360100,0.000000,-1.000000,0.000000 0.321000,0.454500,-0.399300,0.000000,-1.000000,0.000000 0.274000,0.495600,0.266200,0.000000,1.000000,0.000000 0.258400,0.454500,0.321000,0.000000,-1.000000,0.000000 0.031340,0.496600,-0.289700,0.000000,1.000000,0.000000 0.391500,0.495600,0.289700,0.000000,1.000000,0.000000 -0.227000,0.496600,-0.391400,0.000000,1.000000,0.000000 -0.391500,0.495600,-0.477600,0.000000,1.000000,0.000000 -0.354800,0.314300,0.454100,1.000000,0.000000,0.000000 0.313200,0.495600,0.328800,0.000000,1.000000,0.000000 0.354800,0.416100,0.289700,-1.000000,0.000000,0.000000 0.039170,0.454500,-0.383600,0.000000,-1.000000,0.000000 0.360200,0.496600,-0.125200,0.000000,1.000000,0.000000 -0.492200,0.495800,0.125300,-0.129500,0.991600,0.000000 0.227100,0.454500,-0.399300,0.000000,-1.000000,0.000000 0.172300,0.496600,-0.383600,0.000000,1.000000,0.000000 0.101800,0.454500,0.438500,0.000000,-1.000000,0.000000 -0.046950,0.496600,-0.125200,0.000000,1.000000,0.000000 0.396000,0.298700,-0.469700,0.999800,0.021280,-0.000095 -0.281800,0.496000,-0.007861,-0.000000,0.999100,-0.042550 0.289600,0.345700,0.581600,-0.115900,-0.003083,0.993300 -0.015630,0.454500,0.626400,0.000000,-1.000000,0.000000 -0.461900,0.454500,-0.665500,0.000000,-1.000000,0.000000 -0.305300,0.496600,-0.532400,0.000000,1.000000,0.000000 0.039170,0.496600,-0.587200,0.000000,1.000000,0.000000 -0.485400,0.454500,-0.548000,0.000000,-1.000000,0.000000 -0.274000,0.496600,0.610700,0.000000,1.000000,0.000000 0.518600,0.481900,-0.096560,0.810700,0.585500,0.000160 -0.172200,0.484600,-0.701300,0.000170,0.698200,-0.715900 -0.015640,0.496600,-0.195700,0.000000,1.000000,0.000000 0.125300,0.495600,0.101800,0.000000,1.000000,0.000000 0.015680,0.496600,0.399300,0.000000,1.000000,0.000000 -0.015630,0.454500,-0.352300,0.000000,-1.000000,0.000000 0.015680,0.496600,-0.563700,0.000000,1.000000,0.000000 -0.414900,0.495600,-0.023470,0.000000,1.000000,0.000064 -0.203600,0.495600,-0.039130,0.000000,1.000000,0.000000 0.039170,0.454500,0.610700,0.000000,-1.000000,0.000000 -0.046950,0.454500,-0.642000,0.000000,-1.000000,0.000000 -0.321000,0.454500,-0.062610,0.000000,-1.000000,0.000000 -0.046950,0.496600,0.031340,0.000000,1.000000,0.000000 0.438500,0.454500,0.015680,0.000000,-1.000000,0.000000 0.047000,0.496600,0.125300,0.000000,1.000000,0.000000 0.023510,0.496600,0.289700,0.000000,1.000000,0.000000 -0.397000,0.439500,0.039150,-0.998200,-0.060390,0.000000 0.054830,0.496600,0.602900,0.000000,1.000000,0.000000 0.352300,0.495600,0.046990,0.000000,1.000000,0.000000 -0.109600,0.496600,0.086150,0.000000,1.000000,0.000000 0.070490,0.454500,-0.454100,0.000000,-1.000000,0.000000 0.007851,0.496600,0.062660,0.000000,1.000000,0.000000 0.023510,0.496600,0.172300,0.000000,1.000000,0.000000 0.386300,0.352400,0.199100,0.020120,-0.979600,-0.200100 -0.007814,0.431800,0.580600,0.000000,0.001221,1.000000 0.015680,0.454500,0.219200,0.000000,-1.000000,0.000000 -0.031290,0.454500,-0.031290,0.000000,-1.000000,0.000000 0.453500,0.259400,0.526100,0.964000,0.074800,-0.255200 -0.023470,0.496600,-0.407100,0.000000,1.000000,0.000000 0.070490,0.496600,-0.211400,0.000000,1.000000,0.000000 -0.093930,0.454500,0.673400,0.000000,-1.000000,0.000000 0.109600,0.496600,-0.516700,0.000000,1.000000,0.000000 0.086140,0.496000,0.000034,0.000000,0.999100,0.042510 -0.313800,-0.359700,-0.556200,0.972100,-0.062890,-0.225800 -0.355500,0.322200,0.352300,0.998200,0.041160,-0.042530 -0.436900,0.087370,-0.520900,-0.309700,-0.017310,0.950700 0.328200,0.220900,0.587900,0.990200,0.135700,0.034160 -0.367100,-0.311800,-0.490900,-0.093370,-0.036520,0.995000 -0.156600,0.496000,-0.007861,-0.000000,0.999100,-0.042550 -0.360200,-0.335400,0.496000,-0.022900,-0.055270,-0.998200 -0.397000,0.384800,0.093950,-1.000000,-0.004756,-0.000127 0.392300,0.184400,-0.515900,-0.085420,-0.121300,0.988900 -0.337100,0.159400,-0.575200,-0.986600,0.130700,-0.097260 0.385300,-0.406300,0.501400,0.362100,-0.111400,-0.925500 -0.333100,-0.022890,-0.548500,0.980800,0.133500,0.142300 0.454400,0.212400,0.571400,-0.996600,-0.007841,-0.082100 0.317400,0.282800,-0.531700,0.987100,0.085960,-0.134700 0.433400,0.413500,-0.502000,0.526300,0.018250,0.850100 -0.438400,0.495600,-0.563700,0.000000,1.000000,0.000000 -0.354800,0.423900,0.219200,1.000000,-0.003551,-0.003553 -0.391500,0.495600,-0.321000,0.000000,1.000000,0.000000 -0.477600,0.454500,0.274100,0.000000,-1.000000,0.000000 -0.234900,0.496400,-0.672800,0.000000,0.998300,-0.058930 -0.446300,0.454500,-0.258300,0.000000,-1.000000,0.000000 0.234900,0.454500,-0.336600,0.000000,-1.000000,0.000000 -0.078270,0.454500,-0.336600,0.000000,-1.000000,0.000000 -0.234900,0.454500,-0.391400,0.000000,-1.000000,0.000000 -0.180100,0.496600,0.281900,0.000000,1.000000,0.000000 -0.180100,0.496600,-0.524500,0.000000,1.000000,0.000000 0.526100,0.468400,0.250500,0.937000,0.349400,0.000098 -0.527200,0.457300,0.167000,-0.848000,-0.530000,0.000000 0.164400,0.457400,0.710100,0.000000,-0.675200,0.737600 0.195800,0.454500,-0.508900,0.000000,-1.000000,0.000000 0.422200,0.340400,0.616200,0.580000,-0.003373,0.814600 -0.322500,0.384800,-0.624200,0.492500,0.000000,-0.870300 0.368100,-0.079740,0.602700,0.054810,-0.231300,0.971300 -0.368000,0.439500,-0.502500,0.002139,-0.144800,-0.989500 0.335000,-0.058130,0.532900,0.899900,-0.140000,0.413000 -0.368100,-0.109000,0.597500,0.147500,0.201000,-0.968400 -0.325200,-0.038510,0.571800,0.991300,0.115800,-0.062270 -0.383600,0.279700,0.401400,-0.012170,-0.900100,-0.435600 -0.446200,0.361300,0.532400,-0.999700,0.000000,-0.024840 -0.354800,0.392600,-0.117400,0.999800,0.021310,0.000000 0.340900,-0.379300,-0.579200,0.003352,-0.127100,0.991900 -0.461900,0.495600,-0.289700,-0.000064,1.000000,0.000000 -0.373400,-0.234400,0.569800,0.588900,0.137100,-0.796500 -0.422600,0.454600,0.595000,0.161500,-0.983800,-0.078050 0.227100,0.454500,-0.618500,0.000000,-1.000000,0.000000 0.093980,0.454500,-0.508900,0.000000,-1.000000,0.000000 0.234900,0.454500,0.618500,0.000000,-1.000000,0.000000 -0.365500,-0.240800,-0.573900,-0.269300,-0.129000,-0.954400 -0.367900,-0.063550,0.610100,-0.070350,-0.199500,0.977400 -0.375800,0.359300,-0.165700,-0.000033,-0.978600,0.205600 -0.485300,0.496200,-0.571500,-0.013430,0.999900,-0.000029 -0.314700,-0.405800,0.548200,0.987900,-0.150100,-0.038590 0.396300,0.400500,-0.046960,0.999400,0.031890,0.010650 -0.375800,0.454500,-0.602800,-0.000707,-1.000000,-0.002250 -0.352200,-0.412800,-0.501400,0.081980,-0.133800,0.987600 -0.172200,0.447100,0.583000,0.000000,-0.493900,0.869500 0.430400,0.345700,0.494300,0.223900,0.000014,-0.974600 -0.313100,0.307400,-0.594100,-0.996300,0.025880,-0.081890 0.432500,0.330000,-0.605900,0.835000,-0.006755,-0.550200 -0.398700,0.079950,-0.630900,-0.141100,-0.143400,-0.979600 -0.414200,0.016570,0.520100,-0.172300,0.052830,-0.983600 -0.379400,-0.407100,0.577100,-0.567400,0.193300,0.800400 0.443900,0.237900,0.610100,0.836100,0.125000,0.534100 0.434300,0.132100,-0.524000,0.287700,-0.097710,0.952700 -0.195700,0.307500,-0.563700,0.590200,-0.807200,-0.000029 0.446300,0.469700,-0.710600,0.000000,0.318300,-0.948000 -0.446300,0.484200,-0.701700,0.000392,0.696400,-0.717600 -0.328800,0.469700,-0.710600,0.000527,0.316500,-0.948600 0.362900,-0.563100,0.609300,-0.379600,0.167700,0.909800 -0.338500,-0.076880,0.606100,0.269600,-0.163700,0.949000 -0.394200,-0.442300,0.514900,-0.651300,-0.005797,-0.758800 0.365600,-0.166300,-0.501400,0.026920,-0.117800,-0.992700 -0.336000,0.198100,-0.542500,-0.961400,0.118800,-0.248100 0.380800,-0.140900,-0.585600,-0.502800,0.277900,0.818500 0.383600,0.384800,-0.502500,0.000483,0.000000,-1.000000 -0.437700,0.220800,0.616200,0.784500,-0.072430,-0.615900 0.392000,-0.343300,0.516900,-0.994600,-0.020760,0.101400 -0.311900,0.268800,-0.585800,0.783100,-0.466900,-0.410700 -0.411700,-0.582700,0.540700,0.287800,0.154300,0.945200 -0.451000,0.102200,-0.579900,0.975800,0.170200,0.137500 0.360100,0.275100,0.633700,0.016200,0.088410,0.996000 -0.433300,0.001965,0.534600,-0.934800,-0.147300,-0.323100 -0.330100,0.001022,0.571600,0.989500,0.119500,-0.080680 0.336700,-0.257800,-0.576500,0.007402,0.107900,0.994100 0.211400,0.490500,-0.693700,0.005054,0.840800,-0.541400 -0.395700,-0.074730,-0.597900,-0.426200,-0.244700,-0.870900 0.435200,0.118600,0.622800,0.628700,-0.123100,0.767900 0.164400,0.454500,-0.696800,0.000000,-0.999900,-0.016280 0.456900,0.134400,0.541800,0.979400,-0.042980,-0.197300 0.345100,-0.179500,-0.499100,-0.096110,0.077010,0.992400 0.336900,-0.366400,0.498800,0.245200,0.080990,0.966100 0.413800,0.087650,-0.631700,0.382100,-0.167100,-0.908900 0.337500,-0.089740,-0.516800,-0.606500,0.169300,0.776900 0.313800,0.324800,-0.618200,0.912100,0.000176,0.409900 -0.374100,-0.662500,-0.579400,-0.989500,0.058840,-0.132200 -0.512300,0.488200,0.140900,-0.574400,0.818600,0.000000 0.419000,-0.538100,-0.556000,-0.978700,-0.199100,-0.050840 0.337500,-0.429400,0.579300,0.417000,-0.032780,-0.908300 0.319300,0.251400,-0.571400,0.974100,0.216900,-0.064130 0.361000,0.002378,0.619800,-0.041740,-0.210500,0.976700 0.523700,0.473500,0.036550,0.893100,0.449900,0.000108 0.318200,-0.420800,-0.533100,-0.975100,-0.167900,0.145000 -0.392600,-0.207000,-0.558800,-0.857100,-0.134300,-0.497300 -0.411000,-0.059010,0.515300,-0.400900,0.020330,-0.915900 -0.447700,0.369100,-0.524500,0.998100,0.002975,-0.060920 -0.309000,-0.288300,-0.532600,0.996400,-0.056540,0.063300 -0.424500,0.376900,0.611900,0.720000,-0.002797,-0.694000 -0.322500,0.298700,-0.624300,0.496700,0.001442,-0.867900 0.417700,0.153600,0.517300,-0.039780,0.128300,0.990900 0.431100,0.288800,0.611300,-0.700900,-0.127600,-0.701800 -0.311400,0.452200,0.524900,0.602200,-0.786900,-0.134800 -0.452500,0.244500,-0.564300,0.990200,-0.106400,0.090800 -0.503700,0.480300,0.704800,0.013740,0.608900,0.793100 0.518700,0.481800,-0.120100,0.811400,0.584500,0.000163 0.391900,-0.084460,-0.511600,-0.132600,-0.095610,-0.986500 -0.508900,0.454500,-0.281800,0.000000,-1.000000,0.000000 0.395100,-0.607100,-0.627000,0.090920,0.277500,-0.956400 -0.360200,0.330000,-0.628200,0.059000,0.003591,0.998300 0.075700,0.480900,0.704400,-0.000242,0.602000,0.798500 0.309500,0.322200,-0.595400,0.999300,-0.000015,-0.037840 -0.392000,-0.520700,0.602400,-0.390300,0.290700,0.873600 -0.203500,0.454500,0.602900,0.000000,-1.000000,-0.004194 -0.425700,0.452100,-0.502200,0.127600,-0.815700,-0.564200 0.390400,-0.108000,0.588000,-0.464400,0.229900,-0.855300 0.435200,0.196900,0.622700,0.622500,0.016220,0.782500 0.350400,0.452200,-0.120000,-0.613500,-0.789700,0.000000 -0.335400,0.285700,-0.502000,0.330900,-0.119200,0.936100 -0.328700,-0.272800,0.498200,-0.274300,0.002617,0.961700 -0.368400,-0.054210,0.513100,0.095010,0.120600,-0.988100 0.344900,-0.500800,0.593400,-0.631800,0.099180,0.768700 0.356200,0.271400,-0.491100,-0.685700,-0.693700,0.220400 0.375700,0.072040,0.631200,0.019930,-0.127400,0.991600 0.335600,0.035030,-0.609000,0.960400,0.010540,0.278400 0.370600,0.484400,0.701500,-0.000138,0.699100,0.715100 0.356900,0.494800,0.684100,0.000000,0.961000,0.276500 -0.352300,-0.497400,0.523800,-0.228500,0.265800,0.936500 0.352100,-0.430400,-0.589000,0.032930,0.154800,-0.987400 -0.366900,-0.154400,0.590000,-0.196000,-0.220100,0.955600 0.423500,0.220900,-0.629000,-0.543800,-0.060020,0.837100 -0.507200,0.491400,0.234900,-0.459800,0.888000,0.000000 -0.400300,-0.160700,-0.554300,0.922700,0.232900,0.307200 0.345700,-0.496800,-0.596000,0.392100,-0.084150,0.916100 -0.368000,-0.389700,-0.497100,-0.022230,-0.134000,0.990700 0.441000,0.024220,0.563800,-0.983200,0.168600,-0.070050 -0.375800,0.354700,0.188000,-0.000016,-0.979900,-0.199700 0.364700,-0.243500,0.571000,-0.328900,0.144900,-0.933200 0.316700,-0.398900,-0.539900,0.985600,0.158100,-0.060220 0.352900,-0.140700,0.499600,-0.092870,0.135400,-0.986400 0.435700,0.290100,-0.606600,0.832000,0.119200,-0.541800 0.361900,0.433600,-0.634400,0.102400,0.000055,-0.994700 0.368000,0.369100,0.502500,-0.001241,-0.000058,1.000000 -0.414100,-0.101000,0.547700,-0.978400,-0.199600,0.054520 0.376300,-0.040440,0.610900,0.078320,-0.215400,0.973400 -0.382200,0.348200,-0.626700,0.093450,-0.014050,0.995500 0.445300,0.232300,-0.598000,-0.943000,-0.140700,0.301500 -0.319600,-0.299100,-0.499700,0.704500,-0.062820,0.706900 -0.320300,-0.417000,-0.558800,0.981600,-0.168000,-0.091090 0.331800,0.142400,-0.595100,-0.991600,-0.121500,0.044320 0.360100,-0.233500,-0.497300,-0.011430,-0.053760,-0.998500 -0.322200,0.394600,-0.509000,0.818400,-0.000601,0.574600 0.396700,-0.406400,-0.540100,0.987000,0.151600,-0.054260 0.268800,0.484500,0.701400,-0.000125,0.699100,0.715000 -0.344500,0.454600,0.704800,0.000000,-0.976800,0.214200 -0.519200,0.481700,-0.336700,-0.768200,0.640200,0.000143 -0.440700,0.447200,0.524300,0.902200,-0.420500,0.096330 0.016010,0.374200,-0.555900,-0.069650,-0.997600,0.002820 0.408100,-0.539700,0.528700,-0.345600,0.085530,0.934500 0.328900,0.454500,-0.242700,0.000000,-1.000000,0.000000 -0.292300,0.479100,0.706000,-0.003960,0.604400,0.796700 -0.360000,0.447200,-0.631800,-0.040140,-0.388000,-0.920800 0.439700,0.170500,0.619800,0.700700,0.014770,0.713300 0.329600,-0.007677,-0.601800,-0.962000,0.080810,-0.260700 -0.234900,0.496600,0.015680,0.000000,1.000000,0.000000 -0.355800,0.431800,-0.164400,1.000000,0.000514,0.000000 -0.375800,0.496300,-0.524500,-0.042500,0.998600,0.031840 0.289700,0.496600,-0.626300,0.000000,1.000000,0.000000 0.397000,0.376900,-0.430600,0.999900,-0.007176,0.014250 0.354800,0.431800,-0.172200,-1.000000,0.000320,0.000000 -0.397000,0.361300,-0.344500,-1.000000,0.000000,0.000000 -0.391400,0.496600,-0.642000,0.000000,1.000000,0.000000 0.250600,0.496600,-0.227000,0.000000,1.000000,0.000000 0.407100,0.495600,0.203600,0.000000,1.000000,0.000000 0.156600,0.408300,0.581600,0.000000,0.000000,1.000000 -0.164400,0.416100,-0.581600,0.000000,0.000000,-1.000000 0.141000,0.496600,0.391500,0.000000,1.000000,0.000000 -0.383600,0.496600,0.180100,0.000000,1.000000,0.000000 0.234900,0.495600,0.227100,0.000000,1.000000,0.000000 -0.430600,0.454500,-0.336600,0.000000,-1.000000,0.000000 -0.397000,0.400400,-0.438400,-1.000000,0.000000,0.000000 -0.164400,0.454500,0.234900,0.000000,-1.000000,0.000000 -0.336600,0.495600,-0.383600,0.000000,1.000000,0.000000 0.354800,0.424000,-0.321000,-1.000000,0.000000,0.000000 -0.274000,0.454500,-0.281800,0.000000,-1.000000,0.000000 -0.086100,0.454500,0.344500,0.000000,-1.000000,0.000000 -0.101800,0.496600,-0.540200,0.000000,1.000000,0.000000 -0.133100,0.454500,-0.407100,0.000000,-1.000000,0.000000 0.117500,0.496600,0.626400,0.000000,1.000000,0.000000 -0.164400,0.496600,0.321000,0.000000,1.000000,0.000000 0.234900,0.496600,-0.516700,0.000000,1.000000,0.000000 0.164400,0.384800,-0.539500,0.000000,0.000000,1.000000 0.493300,0.454500,-0.563700,0.000000,-1.000000,0.000000 0.399300,0.495600,0.344500,0.000000,1.000000,0.000000 -0.445300,0.039710,-0.572000,-0.982100,-0.150500,-0.112900 -0.086110,0.431800,-0.540500,0.000000,0.000064,1.000000 -0.101800,0.392600,0.580600,0.010590,0.021270,0.999700 0.047030,0.496100,0.046970,0.049570,0.998100,-0.035370 0.446000,0.196900,-0.601600,-0.958100,-0.002619,0.286400 -0.443000,0.423900,0.548400,0.998100,-0.014160,-0.060650 0.070490,0.496600,-0.172200,0.000000,1.000000,0.000000 0.015680,0.496600,-0.485400,0.000000,1.000000,0.000000 0.054830,0.454500,0.250600,0.000000,-1.000000,0.000000 0.062660,0.454500,-0.501100,0.000000,-1.000000,0.000000 -0.086100,0.431800,0.539500,0.000000,0.000000,-1.000000 0.054830,0.454500,-0.101800,0.000000,-1.000000,0.000000 -0.219200,0.454500,-0.054780,0.000000,-1.000000,0.000000 -0.039120,0.454500,-0.156600,0.000000,-1.000000,0.000000 0.281900,0.454500,-0.039120,0.000000,-1.000000,0.000000 0.078320,0.496600,-0.391400,0.000000,1.000000,0.000000 0.062660,0.454500,0.610700,0.000000,-1.000000,0.000000 0.007845,0.408300,-0.540500,0.000021,-0.000043,1.000000 0.023510,0.496600,-0.610700,0.000000,1.000000,0.000000 -0.368700,-0.264600,0.571000,-0.536100,-0.090570,0.839300 -0.046950,0.496600,0.634200,0.000000,1.000000,0.000000 0.078320,0.496600,0.242700,0.000000,1.000000,0.000000 0.086140,0.496600,0.516800,0.000000,1.000000,0.000000 0.093970,0.496600,-0.187900,0.000000,1.000000,0.000000 0.524500,0.472700,-0.472400,0.908900,0.417100,0.000059 0.156600,0.454500,0.109600,0.000000,-1.000000,0.000000 -0.368000,0.173400,0.642500,-0.030770,0.011320,0.999500 -0.519300,0.481700,-0.595000,-0.768400,0.640000,0.000000 0.349500,0.452500,-0.495400,-0.648700,-0.706900,0.281800 -0.318600,-0.202300,-0.573800,0.726600,-0.028310,-0.686500 -0.355200,0.408300,0.242700,0.999900,-0.014230,-0.003513 -0.187900,0.353500,-0.539500,-0.000013,0.021290,0.999800 0.354800,0.424000,-0.086100,-1.000000,0.000000,0.000000 -0.396900,0.290800,-0.477500,-0.988400,-0.012280,0.151100 0.281900,0.496600,-0.563700,0.000000,1.000000,0.000000 -0.399300,0.454500,0.681200,0.000000,-1.000000,0.000000 -0.422800,0.454500,-0.665500,0.000000,-1.000000,0.000000 -0.368000,0.496600,-0.665400,0.000000,0.999900,-0.016000 0.368000,0.454500,0.548100,0.000000,-1.000000,0.000000 -0.195700,0.454500,0.407200,0.000000,-1.000000,0.000000 -0.148700,0.496600,0.610700,0.000000,1.000000,0.000000 -0.203500,0.454500,0.368000,0.000000,-1.000000,0.000000 0.203600,0.496600,0.368000,0.000000,1.000000,0.000000 0.195800,0.496600,-0.422800,0.000000,1.000000,0.000000 0.258400,0.495600,0.187900,0.000000,1.000000,0.000000 0.354800,0.337800,-0.461900,-1.000000,0.000000,0.000000 0.446300,0.454500,-0.313200,0.000000,-1.000000,0.000000 0.422800,0.454500,0.454100,0.000000,-1.000000,0.000000 -0.397000,0.369100,-0.407100,-1.000000,0.000000,0.000000 0.297500,0.496600,0.540300,0.000000,1.000000,0.000000 0.203600,0.454500,0.305400,0.000000,-1.000000,0.000000 -0.438400,0.454500,-0.133100,0.000000,-1.000000,0.000000 0.125300,0.454500,-0.414900,0.000000,-1.000000,0.000000 -0.133100,0.496600,-0.328800,0.000000,1.000000,0.000000 -0.133100,0.423900,0.580600,-0.000021,-0.000021,1.000000 -0.305300,0.454500,0.109600,0.000000,-1.000000,0.000000 -0.117400,0.377000,0.539500,0.000000,0.000000,-1.000000 -0.187900,0.454500,0.109600,0.000000,-1.000000,0.000000 -0.195700,0.454500,-0.289700,0.000000,-1.000000,0.000000 -0.234900,0.454500,0.274100,0.000000,-1.000000,0.000000 -0.258400,0.495600,-0.211400,0.000000,1.000000,0.000000 -0.289700,0.495600,-0.219200,0.000000,1.000000,0.000000 0.203600,0.454500,-0.125200,0.000000,-1.000000,0.000000 0.211400,0.454500,0.148800,0.000000,-1.000000,0.000000 0.180100,0.496600,0.469800,0.000000,1.000000,0.000000 0.219200,0.400500,0.539500,0.000000,0.000000,-1.000000 -0.313200,0.454500,-0.140900,0.000000,-1.000000,0.000000 0.383700,0.495600,0.101800,0.000000,1.000000,0.000000 0.313200,0.454500,-0.109600,0.000000,-1.000000,0.000000 -0.219200,0.400400,0.581000,-0.003481,-0.024860,0.999700 -0.375800,0.454500,-0.548000,0.000000,-1.000000,0.000000 0.354800,0.424000,-0.274000,-1.000000,0.000000,0.000000 -0.454100,0.454500,0.391500,0.000000,-1.000000,0.000000 0.148800,0.454500,-0.297500,0.000000,-1.000000,0.000000 -0.328800,0.496600,-0.626300,0.000000,1.000000,0.000000 0.211400,0.496600,0.532400,0.000000,1.000000,0.000000 -0.117400,0.454500,0.634200,0.000000,-1.000000,0.000000 -0.354800,0.424000,0.140900,1.000000,0.000000,0.000000 -0.397000,0.416100,0.446300,-1.000000,0.000000,0.000000 -0.140900,0.496600,-0.642000,0.000000,1.000000,0.000000 0.469800,0.496600,-0.626300,0.000000,1.000000,0.000000 0.493300,0.454500,0.540300,0.000000,-1.000000,0.000000 -0.343900,0.098090,0.633400,0.523100,-0.093730,0.847100 -0.359800,0.322200,0.502500,-0.026680,0.000000,0.999600 0.000022,0.496600,0.117500,0.000000,1.000000,0.000000 0.354800,0.424000,0.078310,-1.000000,0.000000,0.000000 0.062660,0.496600,0.563700,0.000000,1.000000,0.000000 0.289700,0.454500,0.078320,0.000000,-1.000000,0.000000 -0.078270,0.454500,-0.281800,0.000000,-1.000000,0.000000 0.336700,0.495600,0.086140,0.000000,1.000000,0.000000 0.031340,0.496600,-0.328800,0.000000,1.000000,0.000000 0.415000,0.454500,-0.078270,-0.004194,-1.000000,0.000000 0.007853,0.454500,0.689000,0.000000,-1.000000,0.000000 0.227100,0.454500,-0.023460,0.000000,-1.000000,0.000000 -0.375600,0.330000,0.632700,-0.110400,-0.001935,0.993900 -0.031300,0.496600,0.610700,0.000000,1.000000,0.000000 0.317900,0.337800,0.540100,0.998400,0.000000,0.056840 0.422500,0.055970,0.517500,0.142800,0.008416,-0.989700 0.393300,0.237500,0.632800,-0.120700,-0.114500,-0.986100 0.203600,0.431800,-0.581600,0.000000,0.000964,-1.000000 0.289700,0.454500,0.109600,0.000000,-1.000000,0.000000 -0.354800,0.423900,-0.313200,0.999900,0.007093,0.007107 0.227100,0.306500,0.581000,0.022660,-0.009474,0.999700 0.396500,0.376900,0.281900,1.000000,-0.006997,0.003497 -0.350500,0.087490,0.538200,-0.717900,-0.052300,0.694100 0.446300,0.495600,0.281900,0.000000,1.000000,0.000000 -0.281800,0.496600,0.360200,0.000000,1.000000,0.000000 0.281900,0.496600,-0.313200,0.000000,1.000000,0.000000 0.266200,0.454500,0.689000,0.000000,-1.000000,0.000000 -0.454100,0.454500,0.360200,0.000000,-1.000000,0.000000 0.336700,0.454500,0.548100,-0.004194,-1.000000,0.000000 0.446300,0.495600,0.117500,0.000000,1.000000,0.000000 -0.397000,0.345600,0.407100,-1.000000,0.000000,0.000000 -0.203500,0.353500,-0.581600,0.000000,0.000000,-1.000000 -0.101800,0.496600,0.407200,0.000000,1.000000,0.000000 -0.117400,0.496600,0.156600,0.000000,1.000000,0.000000 0.399300,0.495600,0.446300,0.000000,1.000000,0.000000 -0.274000,0.495600,-0.148700,0.000000,1.000000,0.000000 0.141000,0.454500,-0.117400,0.000000,-1.000000,0.000000 -0.305300,0.496600,-0.657600,0.000000,1.000000,-0.000322 0.391400,-0.654500,-0.628400,0.017490,-0.313300,-0.949500 0.401900,-0.162200,-0.540000,0.976500,-0.204600,-0.068090 -0.405500,0.033210,0.624900,-0.349300,-0.176100,0.920300 -0.368300,0.000730,0.519800,0.121300,0.122800,-0.985000 0.469800,0.496600,-0.328800,0.000000,1.000000,0.000000 -0.332500,-0.507100,0.578700,0.976000,-0.174000,0.131000 0.325900,-0.362800,-0.502100,-0.417900,-0.029290,0.908000 0.117500,0.454600,0.595200,-0.001128,-0.987300,0.159100 -0.375800,0.372800,0.062770,0.000048,-0.998700,-0.050490 -0.401300,0.447200,-0.484700,-0.739100,-0.183400,0.648100 0.388600,-0.366700,-0.510500,0.893300,0.041230,0.447600 0.469800,0.495600,0.046990,-0.021260,0.999800,0.000000 -0.331700,0.164900,0.594900,-0.992100,0.119800,0.036660 -0.360100,-0.630300,0.606800,0.975700,-0.204400,0.078830 -0.452900,0.196900,0.540800,-0.981400,-0.021940,-0.190500 0.431300,0.495800,-0.679000,0.000000,0.990000,-0.141400 0.392000,-0.244500,0.538300,-0.978800,0.112000,-0.171700 0.353800,0.447200,0.352300,-0.942900,-0.333000,0.000000 0.346300,-0.477100,0.590700,-0.281100,0.122200,0.951900 0.316700,-0.335800,0.516200,0.951600,0.060650,0.301400 0.389200,-0.288600,-0.517400,0.993600,0.016440,0.111600 -0.330800,0.181500,-0.595100,0.993200,-0.115900,-0.011530 -0.527900,0.462100,0.485400,-0.999100,0.041250,-0.000051 -0.424300,0.295300,0.617400,0.645000,-0.208300,-0.735200 -0.313400,-0.159900,0.556800,-0.992400,-0.121600,0.016190 0.341300,0.405800,-0.634600,-0.102300,-0.000004,-0.994800 -0.322700,0.452100,0.561100,-0.597000,-0.802200,0.000000 0.411500,-0.493000,-0.548000,0.974200,0.225100,-0.016810 0.324500,-0.100300,0.572100,0.991300,-0.100400,-0.084610 0.524000,0.473400,0.435800,0.898800,0.438400,0.003647 -0.351800,0.439500,0.502900,-0.092690,-0.125400,0.987800 -0.347500,-0.018750,-0.610500,-0.421500,0.044790,0.905700 0.339200,0.119000,-0.631200,-0.841700,-0.067740,-0.535700 0.225100,0.281200,0.566300,-0.693800,-0.720200,0.000107 0.527900,0.462100,0.297500,0.994700,0.102600,0.000000 0.350400,0.452200,-0.261000,-0.613500,-0.789700,0.000000 -0.337500,0.126500,-0.587300,0.996400,-0.060490,0.059930 0.399000,0.165600,-0.640300,0.140800,0.006003,-0.990000 -0.360000,0.400500,-0.630400,-0.053390,-0.000002,-0.998600 0.125300,0.496400,0.672800,0.000000,0.998300,0.058890 0.354800,0.384800,0.172300,-1.000000,0.000064,-0.000000 0.320000,-0.411100,0.535000,-0.983200,-0.160200,-0.087380 0.457600,0.165600,0.563400,0.998500,0.008045,0.054460 -0.390200,-0.173100,-0.570600,-0.698100,-0.207800,-0.685200 -0.299200,0.416100,-0.583600,0.362600,0.000000,-0.931900 -0.379900,0.164100,-0.516800,0.096480,-0.117600,0.988400 -0.328800,0.454500,-0.438400,0.000000,-1.000000,0.000000 0.453000,0.134300,-0.548400,0.989300,-0.025700,0.143900 0.429600,-0.022460,0.572400,-0.936500,0.251100,-0.244900 0.398000,0.392600,-0.629900,0.190100,0.000003,-0.981800 0.192500,0.311600,-0.580800,-0.332700,-0.466100,-0.819800 -0.333800,0.236400,-0.519200,0.843200,-0.296500,0.448500 0.397000,0.290800,0.430600,0.999800,0.003512,-0.017810 -0.317800,0.322200,-0.563700,-1.000000,0.000000,-0.000192 0.325600,-0.390500,0.574000,-0.544900,0.022400,0.838200 0.395600,0.233300,-0.508300,-0.047380,-0.218700,0.974600 0.393200,0.361300,0.624300,-0.154100,0.000000,-0.988100 0.330100,-0.476800,0.547500,-0.972400,-0.218800,-0.080620 -0.357100,0.318700,-0.314300,0.606500,-0.749600,0.265100 0.363800,-0.272700,-0.573100,0.395700,-0.043100,-0.917400 0.424700,0.252100,-0.624300,-0.607400,-0.144900,0.781100 -0.387700,0.382200,-0.625900,0.109300,-0.017830,0.993900 -0.351200,0.257400,-0.506800,-0.220100,0.238800,-0.945800 -0.366000,-0.422200,0.585900,-0.225300,0.171100,0.959100 -0.405500,-0.464500,-0.526900,0.956500,-0.145000,-0.253200 -0.415800,-0.530300,0.572200,0.956700,-0.240200,-0.164400 0.453400,0.131300,0.583800,-0.988400,0.000458,-0.152200 -0.429300,-0.555000,-0.563700,-0.972400,0.225700,-0.059130 0.382100,-0.374300,0.497400,0.337000,-0.078440,-0.938200 -0.451500,0.173400,-0.601600,-0.930600,0.005124,-0.366000 -0.391000,-0.351200,0.532400,-0.997700,0.032510,0.058760 -0.352200,-0.312200,0.497400,-0.053160,0.067900,0.996300 0.385100,-0.319600,-0.547600,-0.967400,-0.020910,0.252200 0.431000,0.006203,-0.534200,-0.883400,0.103600,-0.457100 0.376500,0.339000,-0.250000,-0.000533,-0.959500,0.281800 -0.336400,-0.202800,0.582600,-0.059570,0.097780,-0.993400 0.324400,-0.220400,0.503700,0.686100,-0.089970,0.721900 0.522100,0.477100,-0.506300,0.861700,0.507500,-0.000033 -0.373800,0.335800,0.261000,0.000228,-0.959300,-0.282500 -0.298200,0.377000,0.583000,0.445500,0.013260,0.895200 0.383200,-0.515900,0.597700,-0.143400,-0.243800,-0.959200 0.192500,0.494800,0.684100,0.000000,0.961000,0.276500 0.419200,0.001290,0.517600,-0.299400,-0.046950,0.953000 0.355900,-0.488400,0.517700,0.221900,0.272300,0.936300 0.437300,-0.613700,-0.585000,-0.954000,-0.282000,0.101500 0.442500,-0.616300,0.571600,-0.971700,-0.229100,0.056850 0.518900,0.481500,-0.308000,0.817100,0.576500,0.000128 -0.524400,0.473700,-0.023480,-0.906100,0.423000,-0.000128 0.325400,-0.348300,0.499100,-0.479400,-0.066550,-0.875100 0.469800,0.496600,-0.657600,0.000000,1.000000,-0.000322 -0.328500,0.222800,-0.552300,0.975800,-0.205300,0.075200 -0.342600,0.007125,-0.540800,-0.891000,-0.145100,-0.430300 -0.350900,0.029360,-0.531000,0.713600,0.097670,0.693700 -0.398100,-0.121100,-0.577800,0.672200,0.258200,0.693900 0.391500,-0.204600,-0.506700,0.870100,-0.069290,0.488000 0.508900,0.454500,-0.501100,0.000000,-1.000000,0.000000 -0.355600,0.494500,0.684000,0.000000,0.969500,0.245100 0.306900,0.353500,-0.595100,-0.968400,0.000000,-0.249400 0.390700,0.088050,-0.636600,0.104200,-0.145000,-0.983900 0.358400,-0.572900,-0.541800,-0.574100,-0.257000,0.777400 0.309200,-0.210600,-0.525800,-0.984300,0.078260,0.158500 -0.423200,0.266900,0.625400,-0.503300,0.150800,0.850800 -0.393000,0.240000,0.509500,-0.062460,0.225500,0.972200 -0.438500,-0.606700,0.571800,-0.966100,0.257200,-0.023520 0.428800,0.006100,-0.597000,0.843100,-0.258400,-0.471500 -0.187900,0.337800,0.581600,0.000000,0.000000,1.000000 -0.396900,0.276300,-0.461900,-0.985700,-0.168600,0.000000 -0.391800,-0.321500,-0.543300,-0.964000,0.040630,-0.262900 -0.523400,0.454800,0.461900,-0.261200,-0.965300,0.000000 -0.329600,0.236400,-0.626600,0.838700,-0.142200,-0.525600 -0.354900,0.276600,0.423200,0.986900,-0.154000,-0.047050 0.512000,0.488500,-0.550700,0.570700,0.821200,0.000000 0.209200,0.296600,0.558500,-0.677100,-0.735900,-0.003984 0.330300,-0.320000,0.574000,-0.190200,0.015050,0.981600 -0.336000,0.322200,0.631500,-0.187800,-0.001672,-0.982200 -0.406600,0.259100,-0.630900,-0.175400,0.109000,-0.978400 0.502400,0.493700,0.362800,0.374400,0.927300,0.000000 -0.403100,-0.178400,-0.517600,-0.985100,-0.117300,0.125600 0.320400,0.260900,-0.529100,-0.905800,-0.278600,0.319200 0.446100,0.301100,-0.537600,0.998700,0.051100,-0.008939 -0.368000,0.475200,0.707900,-0.000099,0.489400,0.872000 -0.325900,-0.115900,-0.579800,-0.932800,0.007574,0.360300 -0.511900,0.488600,-0.180100,-0.568900,0.822400,-0.000086 -0.437200,0.260100,0.608100,0.858300,-0.130900,-0.496200 -0.445800,0.317900,-0.560800,0.993600,-0.032840,0.107900 0.396300,0.392600,-0.023470,0.999100,0.042510,-0.000004 -0.400200,0.328000,-0.498100,-0.490600,0.000014,-0.871400 -0.446200,0.400500,0.532400,-0.999700,0.000000,-0.024840 0.497600,0.495300,0.396700,0.225200,0.974300,0.000000 0.303900,0.452100,-0.613000,-0.564400,-0.824400,-0.042330 -0.331100,-0.030050,0.608100,0.812100,-0.035890,0.582400 -0.450300,0.400400,-0.524600,-0.998300,0.000000,0.058000 -0.407200,0.102900,0.524500,-0.036160,-0.022890,0.999100 -0.364000,-0.601700,-0.614800,0.713100,0.011250,-0.701000 -0.401300,0.452200,0.404500,-0.619200,-0.785200,0.000000 0.345900,0.387400,0.500700,0.159700,0.000001,0.987200 -0.328000,-0.455800,0.523800,0.820000,-0.244300,-0.517500 0.368000,0.363900,0.141300,-0.011150,-0.989500,-0.144100 -0.409700,-0.099510,-0.571800,0.860300,0.248700,0.445000 0.341500,0.094890,0.549900,-0.960400,0.036800,-0.276300 -0.391400,-0.244500,0.514800,-0.975700,-0.122800,-0.181300 0.418500,0.025630,-0.616500,0.607300,-0.205600,-0.767400 -0.350400,0.452200,-0.399300,0.612300,-0.790600,0.000000 -0.419400,0.358700,-0.616200,0.504100,0.000005,0.863600 0.375700,-0.555800,-0.614200,0.035760,0.224900,-0.973700 0.351400,-0.452300,0.585100,0.107200,-0.123700,-0.986500 -0.396000,-0.050710,-0.508300,-0.030330,0.115000,0.992900 0.304900,0.416100,-0.538100,-0.273900,-0.050040,0.960400 0.398600,-0.038390,-0.513500,0.085200,0.094140,0.991900 0.386500,-0.615700,0.625100,-0.072170,0.267800,0.960800 -0.391100,-0.303800,-0.523800,0.998700,-0.019700,0.047620 0.348600,-0.545600,0.542300,-0.896500,-0.275000,-0.347300 -0.330400,0.165700,0.618100,0.971900,-0.112100,0.206900 0.349500,-0.555400,0.563500,0.973800,0.216100,0.070880 0.401300,0.452200,0.023500,0.618100,-0.786100,0.000000 0.315200,0.282100,-0.623900,-0.818800,-0.118400,-0.561700 -0.441100,0.090130,0.529400,-0.674600,-0.066310,-0.735200 -0.358900,-0.570400,-0.603700,-0.717500,-0.018020,0.696400 0.172300,0.454600,-0.595200,0.000000,-0.987100,-0.160200 -0.335300,0.434400,-0.501700,0.336200,-0.003170,0.941800 0.440700,-0.628300,-0.560200,0.893900,0.049650,0.445500 0.391400,-0.312500,0.523900,-0.999500,-0.029250,-0.014200 -0.527900,0.462100,-0.579400,-0.997200,0.074450,0.000000 -0.316300,-0.124300,0.578200,0.971000,0.062410,0.230600 -0.083500,0.484800,0.701000,-0.000185,0.699100,0.715000 0.360300,-0.031120,-0.614800,0.005280,0.213800,0.976900 -0.448400,-0.639800,-0.579100,-0.985800,-0.166400,-0.024200 -0.337700,-0.516500,0.555100,-0.963000,0.238300,0.125800 -0.328900,-0.486900,0.547700,0.966000,-0.228400,-0.121300 0.414600,0.439500,0.491700,0.231300,-0.115900,-0.965900 0.015680,0.475600,-0.708000,0.000058,0.488700,-0.872400 -0.356000,-0.245300,0.578700,-0.202700,-0.094170,0.974700 0.383500,-0.143700,0.581300,-0.451100,0.236500,-0.860600 0.396900,-0.162700,-0.516200,-0.880400,0.155500,-0.448100 -0.392200,-0.485000,0.520600,0.373100,0.127000,0.919000 0.383600,-0.377700,-0.560100,-0.831100,-0.115500,0.544000 0.352300,0.462800,-0.712300,0.000000,-0.027170,-0.999600 -0.427100,-0.563300,0.556600,-0.975500,0.187900,-0.114500 -0.399300,0.266400,0.634600,-0.141300,0.117700,0.982900 0.354900,0.322200,0.485300,-0.976200,0.000000,-0.217100 0.516800,0.454500,0.579400,0.019410,-0.999800,0.000000 0.321100,0.262900,0.605800,0.936500,0.214000,-0.277700 -0.342400,-0.537400,-0.578400,0.980000,-0.186500,-0.068830 -0.352700,0.189400,0.641800,0.214600,-0.011990,0.976600 -0.354900,0.439600,0.321000,0.997900,-0.065260,-0.000022 -0.312200,-0.220400,-0.527600,0.992900,0.073520,0.094010 -0.406000,0.385500,-0.495600,-0.321300,0.000000,-0.947000 -0.438200,0.149900,0.616900,0.795500,-0.012310,-0.605900 0.319700,-0.312400,-0.501400,-0.556300,-0.062930,0.828600 0.386400,-0.417200,0.573600,0.600600,0.172900,0.780600 -0.392200,-0.632300,-0.547000,0.139900,-0.254000,0.957000 0.358300,0.061460,-0.633700,-0.141900,-0.149900,-0.978500 0.393000,0.447200,0.622400,-0.172100,-0.490000,-0.854600 -0.452700,0.189100,-0.588500,0.977000,0.011910,0.212700 0.439000,0.060940,-0.530200,0.812500,-0.076370,0.577900 -0.439600,0.285000,-0.605600,-0.846800,0.128300,-0.516200 0.527900,0.462100,-0.023480,0.995800,0.091710,0.000035 -0.527900,0.462100,0.305400,-0.998800,0.049700,-0.000061 -0.326200,0.235500,-0.602900,-0.976500,0.178900,0.120000 0.370000,-0.444200,-0.587200,-0.267600,-0.198900,0.942800 -0.406500,0.345600,-0.489200,-0.442400,0.000007,0.896800 0.372700,-0.379000,0.569900,-0.441600,-0.183900,-0.878200 0.395900,-0.453300,0.510200,0.542100,-0.061050,-0.838100 -0.234900,0.283000,0.539500,0.005652,-0.010990,-0.999900 0.413100,0.258900,0.629600,0.250800,0.112000,0.961500 -0.390900,-0.082480,0.508900,-0.089700,0.128300,-0.987700 0.352200,-0.453400,-0.592500,0.000170,0.139600,-0.990200 0.388400,-0.296200,0.541300,-0.963400,-0.048690,-0.263600 0.328000,-0.385200,0.502500,-0.515500,-0.203300,-0.832500 0.355900,0.169500,0.634500,0.254000,0.064450,-0.965100 -0.404300,0.361300,0.625400,0.374500,-0.010510,-0.927200 0.366500,-0.623200,-0.558800,-0.784000,-0.317200,0.533700 0.441800,0.040920,-0.571300,0.987500,-0.140100,-0.072560 0.391800,-0.393300,0.554600,-0.901500,-0.192800,-0.387500 -0.399300,0.454500,-0.602800,-0.001312,-1.000000,-0.004143 -0.396500,-0.492800,-0.588600,-0.475000,0.284400,-0.832800 0.405600,-0.107600,-0.576800,0.835800,-0.247100,-0.490200 0.523900,0.473400,0.670700,0.895000,0.446100,-0.000038 -0.391900,-0.441700,-0.571800,0.713100,-0.200900,0.671700 0.403900,0.362000,-0.628400,0.314500,-0.000063,-0.949300 0.319600,-0.304300,0.565200,0.703200,0.023890,-0.710600 0.402900,0.302300,0.626900,0.163100,0.107700,0.980700 -0.358500,-0.584200,0.546900,0.662300,-0.324600,-0.675300 0.400400,0.283000,-0.501100,0.147500,0.082270,-0.985600 -0.325000,-0.319900,-0.572800,0.371700,0.006719,-0.928300 0.351900,-0.440000,-0.509400,-0.121000,-0.141600,0.982500 -0.352200,-0.054200,-0.605600,-0.161000,0.156800,0.974400 0.368000,0.308800,0.337500,-0.016680,-0.933200,-0.359000 -0.345900,0.319600,-0.500700,-0.158700,0.000000,-0.987300 -0.335500,0.079480,0.595000,-0.999100,-0.024860,0.035490 -0.368400,-0.293500,-0.566500,0.428600,-0.055110,0.901800 0.512700,0.487100,-0.696600,0.401200,0.871000,-0.283500 0.409900,-0.507600,0.522600,0.587100,-0.019110,-0.809300 -0.352400,-0.571400,-0.552900,0.936100,-0.270600,0.224500 -0.316600,-0.350900,-0.510600,0.932800,-0.064330,0.354500 -0.329600,0.192400,0.575100,-0.987500,0.130100,0.089430 0.016330,0.494800,-0.684200,0.000000,0.960800,-0.277200 -0.398900,-0.621300,-0.626800,-0.039120,0.259800,-0.964900 -0.413500,-0.052780,0.591300,-0.773600,-0.263600,0.576300 0.402100,-0.461700,0.563900,-0.908200,-0.194200,-0.370700 0.446600,0.063460,0.541900,-0.979000,0.121700,0.163700 0.416100,0.157800,0.630700,-0.298400,-0.006740,-0.954400 -0.384700,-0.166100,0.578300,-0.651300,-0.203500,0.731100 0.439300,0.020330,0.535500,-0.947600,0.181600,0.262700 -0.414900,0.454500,-0.446300,0.003810,-1.000000,0.000000 -0.318100,-0.178700,-0.524200,-0.976000,-0.084930,-0.200800 -0.327100,0.447200,-0.626800,0.355700,-0.233900,-0.904900 -0.322500,0.232900,0.602600,-0.974600,0.216700,-0.056930 0.403300,-0.510600,0.590700,0.589100,0.284300,0.756400 0.341200,0.087290,0.611100,0.967600,0.024080,-0.251200 -0.330400,0.235000,0.531100,-0.842300,0.266100,0.468700 0.352300,0.454500,0.516800,0.024810,-0.992600,0.118600 -0.364600,-0.074330,-0.509900,-0.141800,-0.136400,-0.980500 -0.335100,0.377000,-0.504300,-0.430500,0.011050,-0.902500 0.337200,-0.022420,0.601200,0.838100,0.005084,-0.545500 -0.426700,-0.037600,-0.520300,-0.868100,-0.124100,0.480600 0.434900,0.331600,-0.502500,0.661800,0.011140,0.749600 -0.450200,0.236000,-0.522700,0.877300,-0.016750,-0.479700 -0.439300,0.267900,-0.502200,-0.351200,-0.159600,0.922600 -0.336000,0.392600,0.631500,-0.186700,0.000000,-0.982400 0.344300,0.454600,0.070490,-0.169400,-0.985500,0.000000 -0.403700,-0.602700,-0.618400,0.163100,-0.291500,0.942600 -0.321400,-0.435700,0.559600,-0.983400,0.174200,-0.051630 0.407300,0.454600,-0.289700,0.166300,-0.986100,0.000000 0.402200,-0.665100,0.553500,-0.057570,-0.503300,-0.862200 0.400500,-0.106000,-0.509700,0.351600,0.044840,0.935100 0.368400,-0.650800,0.592800,-0.979400,-0.199400,-0.032130 -0.376300,0.213100,0.513600,0.096470,-0.140700,-0.985300 -0.352200,-0.414500,-0.582800,-0.027000,0.149800,-0.988300 0.326000,0.243200,0.555600,0.966300,0.240200,0.092480 -0.400100,0.307100,-0.624600,0.213300,-0.101800,0.971700 0.435100,-0.608600,-0.562900,-0.935100,-0.165900,-0.313300 0.203600,0.475600,0.708000,-0.000080,0.479500,0.877600 0.366200,-0.105100,-0.509200,0.092780,-0.133000,-0.986800 -0.408100,-0.484900,0.563400,-0.955800,0.244300,0.163400 -0.397000,0.439500,-0.328800,-0.998200,-0.060390,0.000000 -0.390700,0.017590,-0.518900,-0.082180,-0.108200,-0.990700 0.442000,-0.647500,0.558500,0.828300,-0.334600,-0.449400 0.402700,-0.445800,-0.540100,0.987800,0.154300,-0.022860 -0.356800,0.357800,-0.180500,0.678300,-0.727300,0.104800 -0.320700,-0.385600,-0.518200,-0.945600,0.153400,-0.287000 0.381100,-0.335900,-0.562500,0.785300,0.051620,-0.617000 -0.391700,0.197200,-0.511100,0.087260,-0.105100,0.990600 0.379600,-0.272800,0.491700,0.344800,-0.018890,-0.938500 -0.404300,0.423900,0.625400,0.362200,0.000000,-0.932100 -0.407800,-0.014150,-0.606300,0.488400,0.266300,0.831000 -0.312900,-0.303200,0.507500,0.797600,-0.037250,-0.602000 0.448200,0.306500,0.512500,0.936900,-0.009029,-0.349600 0.444200,0.166400,-0.610800,0.873100,-0.000012,-0.487500 -0.344300,0.454600,0.039170,0.168700,-0.985700,0.000000 0.369200,-0.594600,-0.622500,-0.238000,0.184000,-0.953700 -0.367900,0.017410,-0.623500,0.018560,-0.186600,-0.982300 0.386200,0.360500,0.160000,0.014550,-0.978800,-0.204200 -0.440400,0.109900,0.610400,0.861500,0.168300,-0.479100 0.331300,-0.485800,-0.587000,-0.871400,-0.093380,-0.481600 -0.397900,0.447200,0.368000,-0.946200,-0.323500,0.000000 0.407300,0.454600,-0.391400,0.169200,-0.985600,0.000000 -0.431100,-0.002728,0.584700,-0.940600,-0.242700,0.237400 -0.438500,0.021480,-0.589900,-0.919900,-0.209400,-0.331600 -0.435800,0.056170,-0.521200,-0.403100,-0.023560,0.914900 0.353800,0.447200,0.289700,-0.942900,-0.333000,0.000000 -0.384900,-0.253900,-0.558300,-0.801100,-0.142200,-0.581400 -0.397000,0.353500,-0.266200,-1.000000,-0.000043,0.000021 0.391500,-0.592400,0.616500,-0.053220,-0.281600,-0.958100 -0.438700,-0.628500,-0.612000,-0.753500,0.294000,-0.588000 0.363900,-0.504400,-0.523600,0.120800,0.241200,-0.962900 -0.337900,-0.436800,0.511500,0.317100,-0.184800,-0.930200 -0.319900,0.314300,-0.524500,-0.986500,-0.000029,-0.163800 0.317900,0.377000,0.540100,0.998400,0.000000,0.056840 -0.352800,-0.241900,-0.490800,0.081400,0.063370,0.994700 0.417500,0.291300,-0.622600,-0.547000,-0.126200,0.827600 0.321600,0.382200,0.508900,-0.837300,0.000177,-0.546700 0.379600,0.208500,-0.516500,0.093860,0.128800,-0.987200 -0.358100,-0.280700,0.574600,-0.249300,-0.009621,0.968400 -0.361100,0.104600,-0.527400,0.529300,0.021690,0.848100 -0.401100,-0.114000,0.514600,0.676000,0.038520,0.735900 -0.447400,0.292700,0.527700,-0.987400,0.070830,-0.141700 -0.317800,0.298700,-0.577200,-0.988500,0.002336,-0.151200 0.337900,0.070260,-0.624800,-0.836700,-0.037470,-0.546300 -0.317200,0.261200,0.541400,0.882800,-0.431500,-0.185500 0.368000,0.372800,-0.062780,-0.016770,-0.998600,0.050310 -0.404900,-0.531500,-0.597300,-0.465900,0.286500,-0.837200 -0.347600,0.119400,-0.544900,-0.868200,-0.000842,-0.496200 0.501100,0.462600,0.712200,0.000011,-0.040110,0.999200 -0.397000,0.384800,-0.007830,-1.000000,-0.008183,0.000376 0.439600,-0.647400,-0.601900,0.926100,-0.303400,-0.224400 -0.378900,-0.040680,-0.610700,-0.098530,-0.216800,-0.971200 -0.373100,-0.169500,-0.582000,-0.282700,-0.207500,-0.936500 -0.326800,-0.163000,0.510600,-0.632500,-0.156400,0.758600 -0.343200,0.340100,0.634100,0.026040,0.009771,0.999600 0.347000,0.131800,0.544100,0.869600,0.123300,0.478000 0.326500,-0.091870,-0.532700,0.906000,-0.163200,-0.390500 0.413700,0.056410,0.623600,0.354100,-0.170300,0.919600 -0.445800,0.269500,-0.592200,0.935900,-0.151300,0.318200 -0.441900,0.447200,-0.572000,0.875000,-0.455100,0.164800 0.438600,0.213000,-0.619800,0.817200,0.023440,-0.575900 -0.338000,-0.484500,-0.523900,0.770400,-0.295300,0.565100 0.411400,0.243400,-0.635300,0.294200,0.099370,-0.950600 -0.497500,0.494900,0.657700,-0.226200,0.974100,0.000021 -0.310700,-0.233900,-0.554800,0.988100,0.052360,-0.144400 -0.435500,0.401100,0.601400,-0.842800,0.000029,0.538200 0.411000,-0.125000,0.532500,-0.980900,0.194100,0.011660 0.126300,0.351100,0.580800,-0.138500,-0.482000,0.865200 -0.319500,0.451300,0.505900,0.577100,-0.531000,-0.620500 -0.373100,-0.594100,-0.540700,0.365900,-0.297100,0.882000 -0.442100,0.134300,-0.613300,0.788500,0.002310,0.615000 -0.524900,0.472800,0.524600,-0.908900,0.416900,-0.000024 0.417300,0.358700,0.619500,0.532400,0.014120,0.846400 -0.508900,0.454500,0.281900,0.000000,-1.000000,0.000000 -0.353600,-0.203700,-0.578100,0.114800,0.142900,0.983000 -0.369000,-0.640900,-0.594600,-0.975000,0.222000,-0.007878 -0.345500,0.053550,0.625100,-0.565000,0.087320,-0.820500 0.348500,-0.267100,0.571300,-0.096900,0.093260,-0.990900 0.440700,0.275400,-0.595300,-0.954100,-0.117400,0.275500 0.352400,-0.145500,0.587500,-0.011930,0.204100,-0.978900 -0.410400,0.209400,-0.634600,-0.184000,0.006911,-0.982900 0.336300,0.015910,-0.545400,-0.881900,0.141000,0.449800 -0.203500,0.314300,0.581600,0.000518,-0.000699,1.000000 -0.452700,0.228600,-0.580300,0.981600,-0.122900,0.146000 -0.332100,-0.380800,-0.502100,-0.497800,0.202500,-0.843300 0.408900,-0.146000,0.518600,0.973400,-0.171200,-0.152500 -0.101800,0.447200,-0.540200,0.000000,-0.229600,0.973300 0.309500,-0.312200,-0.556100,0.977000,0.039040,0.209400 -0.410900,-0.131300,-0.518200,-0.955100,-0.154000,0.253000 -0.010420,0.452200,0.537200,0.000000,-0.707700,-0.706500 0.360200,0.454500,0.696800,0.000000,-1.000000,0.005074 -0.376500,-0.351400,-0.497300,0.296900,0.043020,-0.953900 0.346100,-0.043740,-0.611300,0.212900,0.168800,0.962400 -0.336200,-0.226400,-0.575700,-0.113000,0.096110,0.988900 0.307000,-0.272800,-0.548700,0.998700,0.006896,0.051290 0.350300,0.149700,0.634300,-0.388900,-0.035750,0.920600 0.527200,0.457300,0.657700,0.849300,-0.527900,0.000000 -0.023460,0.454500,-0.696800,0.000000,-0.999900,-0.016280 -0.212000,0.495500,0.678900,0.000000,0.990100,0.140600 -0.401300,0.452200,-0.198300,-0.619200,-0.785200,0.000000 0.321100,-0.138600,0.522500,-0.897400,0.209600,-0.388200 0.402700,0.011840,-0.618600,-0.354300,0.215300,0.910000 -0.336000,0.172900,0.549200,-0.940400,0.142300,0.308800 -0.356700,-0.547300,-0.605000,0.437600,0.100400,-0.893600 0.339700,0.102800,-0.550100,-0.905700,0.035720,0.422400 0.310000,0.376900,-0.535600,-0.648900,0.000605,0.760900 0.310800,0.361300,0.594500,-0.917900,-0.000018,0.396700 0.338800,-0.501200,-0.534900,0.764900,0.313300,-0.562900 0.368100,-0.046050,0.510500,-0.095550,0.120600,-0.988100 0.373500,-0.217600,-0.575800,0.502600,-0.152800,-0.850900 0.377700,-0.216200,0.571400,0.478200,-0.100600,0.872500 0.391200,-0.440000,-0.516800,-0.596200,0.004265,-0.802800 -0.324000,-0.077240,0.593900,0.921700,0.022790,0.387200 -0.312100,0.408300,0.587800,-0.919800,0.000000,0.392500 -0.374800,-0.391500,-0.572000,0.404700,-0.149800,0.902100 0.405800,-0.526400,-0.591300,-0.691500,-0.276600,0.667300 -0.430500,0.384800,-0.494300,-0.223400,-0.000038,0.974700 -0.397400,-0.507000,0.522300,-0.267400,-0.137600,-0.953700 0.344800,-0.004108,0.533100,0.783000,-0.169300,0.598600 0.519000,0.481500,0.631600,0.806600,0.591000,-0.010460 -0.516000,0.485300,0.665500,-0.686400,0.727200,0.000040 -0.399400,-0.574700,-0.531300,0.032140,-0.239200,0.970400 0.521600,0.477800,0.417600,0.867200,0.498000,-0.000536 0.321200,0.400400,0.618500,0.767600,-0.006509,-0.640800 0.350900,0.227000,-0.517900,0.323600,0.259800,-0.909800 0.415300,0.431800,-0.498800,-0.054030,-0.000353,-0.998500 -0.361700,0.327200,0.291400,0.208700,-0.932900,-0.293600 -0.427900,0.397800,-0.608800,0.715500,-0.010160,0.698500 0.391600,0.165700,-0.518300,-0.085120,-0.127300,0.988200 -0.491900,0.495800,-0.422800,-0.100100,0.995000,-0.000092 -0.315100,0.290700,0.582600,-0.893900,0.017200,0.448000 0.521600,0.477800,0.542800,0.857500,0.514400,-0.006986 -0.402300,-0.569500,-0.610900,-0.250200,0.296700,-0.921600 0.431300,0.156500,-0.523200,-0.226200,0.091140,-0.969800 0.335700,0.177100,-0.634400,-0.647200,-0.063180,-0.759700 -0.167500,0.328000,0.543800,0.551100,-0.800400,-0.235900 0.334100,-0.428700,0.512900,0.675600,0.207500,0.707500 -0.422500,0.191700,-0.628600,0.405600,0.005728,0.914100 0.436400,-0.014110,0.540700,0.982100,-0.174400,-0.071020 -0.418800,-0.053690,-0.513900,-0.558600,-0.028020,0.829000 -0.344000,-0.109100,0.598400,-0.107500,0.170200,-0.979500 -0.395300,-0.187300,0.540700,0.988100,0.110800,-0.106700 0.168200,0.327000,0.558500,-0.529000,-0.848600,-0.004101 -0.016030,0.374200,0.563700,0.068230,-0.997700,0.000346 0.430500,0.454600,0.509100,-0.122000,-0.977200,0.173700 -0.507300,0.491400,-0.086110,-0.446500,0.894800,0.000121 0.527200,0.457300,-0.516700,0.848600,-0.529000,0.000003 0.416400,-0.508800,0.554800,-0.970100,-0.237800,-0.048170 0.435500,0.332600,0.598900,-0.839600,-0.003213,-0.543200 0.328200,0.314300,-0.629700,0.305000,0.034690,0.951700 -0.336600,0.454500,0.109600,-0.004194,-1.000000,0.000000 -0.334600,-0.039830,-0.540800,-0.953200,-0.125200,-0.275400 0.446200,0.101300,0.605200,0.858500,-0.179400,0.480300 -0.361200,0.308900,0.337600,0.211200,-0.924000,-0.318700 -0.313800,0.322200,0.530400,0.894700,0.017070,-0.446400 0.524000,0.473100,-0.135700,0.894100,0.447900,0.000105 -0.399300,0.484200,-0.701700,0.000377,0.695400,-0.718600 0.521900,0.477200,-0.334000,0.860400,0.509300,0.014030 0.435500,0.387400,0.598900,-0.839600,-0.000017,-0.543100 0.261000,0.271900,0.542400,0.000000,-0.803300,-0.595600 -0.351500,-0.491300,-0.591500,-0.310400,-0.146400,0.939200 -0.519300,0.481700,-0.642000,-0.768400,0.640000,0.000000 0.448900,0.157700,-0.540000,-0.946700,0.034930,-0.320300 -0.390500,-0.498800,-0.515200,-0.067580,-0.178700,0.981600 -0.399900,0.149900,0.637600,0.149800,-0.003967,-0.988700 -0.447700,0.149900,0.595200,0.981100,-0.004633,-0.193600 -0.405400,-0.035320,0.516600,0.203000,-0.062870,0.977200 -0.424800,0.322400,0.612400,0.720200,-0.073060,-0.689900 0.417400,-0.083480,0.569100,0.916500,-0.244900,0.316300 0.353000,0.304800,-0.635400,0.020510,0.073950,-0.997100 0.243400,0.493000,-0.688900,0.000000,0.910700,-0.413100 0.508900,0.454500,0.007854,0.000000,-1.000000,0.000000 0.527200,0.457300,-0.461900,0.848600,-0.529000,0.000000 -0.289600,0.377000,-0.581600,0.112800,0.000000,-0.993600 0.445700,0.444400,0.560700,-0.972100,-0.164600,-0.166900 -0.331600,0.142400,0.602900,0.993000,-0.118000,0.000471 0.367900,-0.398100,-0.502100,0.070930,-0.129500,0.989000 0.368500,-0.101600,-0.599100,-0.126300,0.212900,0.968900 0.384100,0.330000,-0.629600,-0.117300,0.017700,0.992900 -0.462100,0.454600,-0.524500,-0.165900,-0.986100,-0.000399 -0.401800,-0.155100,-0.505200,-0.833600,-0.078720,0.546700 0.389900,0.369500,0.101300,0.263700,-0.958700,-0.106600 -0.344300,0.454600,0.454100,0.168700,-0.985700,0.000000 0.328000,-0.054470,-0.537200,-0.896400,0.147100,0.418100 -0.332300,-0.014920,-0.571800,0.990800,0.126400,0.049200 -0.512300,0.488200,0.046980,-0.574400,0.818600,0.000000 -0.431200,-0.018980,0.543400,-0.977200,-0.205300,-0.054850 -0.391800,-0.390300,0.540100,0.986900,-0.129000,-0.097330 0.375800,-0.132200,-0.502800,0.005042,0.104700,0.994500 0.142600,0.340900,0.563700,-0.469000,-0.883200,-0.000021 -0.315800,-0.279700,-0.506900,-0.833500,0.045220,-0.550700 0.325300,-0.430100,0.539900,0.984800,0.156600,0.074550 0.376600,-0.514700,-0.601700,-0.138500,-0.293500,0.945900 -0.164400,0.447300,0.539600,0.000000,-0.179800,-0.983700 0.314800,-0.194400,0.547900,0.998300,-0.057990,-0.004303 0.344300,0.454600,-0.344500,-0.169400,-0.985500,0.000000 0.344300,0.454600,-0.101800,-0.169400,-0.985500,0.000000 0.394400,-0.623100,0.546800,0.134600,0.280600,0.950300 0.397200,0.170800,0.634600,-0.108700,-0.002147,-0.994100 -0.434100,-0.585100,-0.571700,0.960100,-0.269200,0.076150 -0.455100,0.119900,-0.585400,-0.986400,-0.072430,-0.147700 -0.337000,-0.521000,0.589800,0.941100,-0.158800,0.298600 -0.394100,0.275500,-0.411100,-0.194200,-0.862400,0.467500 -0.039130,0.475600,-0.708000,0.000079,0.486600,-0.873700 0.440500,0.084030,-0.530000,0.736100,-0.074500,0.672700 0.390200,-0.257100,-0.517100,0.988100,-0.094450,0.121100 0.330300,0.008762,-0.579500,-0.991800,0.112300,0.061210 0.328300,-0.069290,0.563800,0.992200,-0.111900,0.054470 0.381900,0.028180,-0.626300,-0.076120,0.169400,0.982600 -0.321100,0.266200,-0.529000,0.931800,-0.297000,0.208800 0.026720,0.374900,0.542900,-0.028840,-0.855400,-0.517200 0.060050,0.452200,0.537200,0.000000,-0.707700,-0.706500 -0.324000,0.220700,0.571800,0.979500,-0.169400,-0.109300 0.125900,0.355100,-0.581400,-0.026020,-0.077270,-0.996700 -0.316700,-0.375200,-0.540000,-0.992800,0.115200,-0.033850 0.324700,0.266200,0.523900,0.892400,0.272600,0.359500 -0.429900,0.494800,-0.684200,0.000000,0.960800,-0.277200 0.356800,-0.290900,0.572400,0.197200,0.021310,0.980100 -0.435100,-0.625400,-0.550500,0.554900,0.124200,-0.822600 -0.446600,0.292400,-0.590100,-0.947700,0.132200,-0.290300 0.369900,0.335800,0.261000,-0.005114,-0.959600,-0.281400 -0.385200,-0.288500,0.540300,0.990900,-0.038070,-0.129400 -0.281800,0.290900,0.581600,-0.000427,0.000085,1.000000 0.342200,0.160900,0.536700,-0.866200,-0.179900,-0.466100 -0.418800,0.231500,0.633700,-0.467300,0.112900,0.876800 0.407400,0.330000,0.621300,-0.310000,-0.004365,-0.950700 0.335500,0.281100,0.502500,-0.313800,-0.154800,-0.936800 -0.315800,-0.356500,0.567700,-0.790900,0.021460,-0.611600 0.309500,0.408300,-0.595400,0.998800,-0.000011,-0.048240 0.172300,0.490500,-0.693700,0.000002,0.867900,-0.496800 0.353300,-0.163300,-0.587600,-0.072770,0.199500,0.977200 0.391600,0.439600,-0.628300,-0.160300,-0.062610,0.985100 0.438900,0.305800,-0.598100,0.910800,0.096740,-0.401300 -0.333800,0.017140,0.579200,-0.992200,-0.103100,0.069450 0.322600,-0.123900,0.572100,0.959000,-0.073750,-0.273500 -0.227000,0.298700,0.581600,0.000021,-0.000043,1.000000 -0.343900,0.017620,0.539400,-0.800300,-0.129500,0.585400 0.362200,-0.594500,0.548900,-0.777800,-0.325900,-0.537400 -0.396900,0.308500,0.353100,-0.976700,-0.194600,-0.090940 -0.321700,-0.223700,-0.501800,0.693800,0.073270,0.716500 -0.320300,-0.272700,-0.570400,0.498600,-0.026900,-0.866400 -0.326700,-0.460000,-0.562900,0.988100,-0.130600,-0.081220 0.397700,0.369100,-0.486100,0.953600,-0.024310,0.300100 0.523600,0.473700,0.138300,0.892400,0.451200,0.000086 0.405000,0.305800,-0.629400,0.296900,0.110200,-0.948500 -0.356500,-0.458500,-0.508300,0.103900,-0.175900,0.978900 -0.449100,0.189300,-0.519100,-0.758400,-0.072350,0.647700 -0.524900,0.472800,0.461900,-0.908900,0.417000,-0.000003 0.391500,0.095030,0.633400,0.077700,-0.137500,0.987400 0.403700,-0.162900,0.510600,0.936200,-0.138500,-0.323000 -0.383500,-0.139800,-0.500900,0.092660,-0.074750,-0.992900 0.406800,-0.657100,-0.556900,0.038880,0.195300,-0.980000 -0.311700,-0.178800,0.555800,-0.997600,-0.068860,-0.004578 0.319500,-0.229600,-0.579300,-0.416100,-0.071470,-0.906500 -0.435600,-0.658100,0.587800,0.952000,0.298900,-0.066580 0.346100,-0.570700,-0.595000,-0.969000,-0.189700,-0.158100 -0.361400,0.363100,-0.148800,0.198100,-0.969500,0.144300 -0.338400,-0.437500,-0.584000,0.332500,0.084740,-0.939300 -0.054790,0.469700,0.710600,0.000000,0.303300,0.952900 0.360100,-0.472200,-0.595400,0.035660,0.218900,-0.975100 -0.360800,0.087430,-0.632500,0.199500,-0.119700,-0.972600 0.352700,0.013340,0.525900,-0.605900,0.160500,-0.779100 -0.360400,0.071780,0.529700,-0.391900,-0.063950,0.917800 -0.493000,0.494700,-0.683700,-0.080320,0.972200,-0.220000 -0.399300,-0.418900,-0.545500,0.974600,-0.159900,0.156500 -0.318700,-0.139500,0.532200,-0.963400,-0.150700,0.221500 0.391100,0.126600,0.637200,0.063400,-0.040630,0.997200 -0.370500,-0.589200,0.619000,-0.267000,-0.168800,-0.948800 0.421700,-0.060090,-0.533100,0.960700,-0.186000,0.206000 -0.366400,-0.551000,0.531900,0.160100,-0.257400,-0.953000 0.523400,0.454800,0.610700,0.261000,-0.965300,0.000000 -0.352500,0.423900,0.632300,0.037070,0.000000,-0.999300 0.375200,-0.256000,0.563700,-0.601300,0.133200,-0.787800 -0.527900,0.462100,-0.101800,-0.997700,0.067790,-0.000047 -0.344900,0.006000,0.618900,-0.450800,0.097180,-0.887300 -0.336900,0.220100,-0.626100,-0.752100,0.068230,0.655600 0.527900,0.462100,-0.109600,0.996100,0.088170,0.000039 0.375600,0.274700,-0.503600,0.049900,0.126500,-0.990700 0.367800,-0.653300,-0.588600,0.978300,0.198200,-0.060230 0.399600,0.055840,-0.521000,-0.048930,0.020040,0.998600 0.359500,-0.605300,0.567300,-0.953300,-0.273700,-0.127900 -0.402500,-0.444700,-0.524100,0.954100,-0.085780,-0.287000 0.383600,-0.101300,-0.506500,0.025740,0.128900,0.991300 -0.367700,0.226000,-0.509600,0.097830,-0.188000,0.977300 0.344800,-0.405400,-0.504300,-0.123500,-0.160300,0.979300 0.453400,0.100700,0.571300,0.990700,-0.123100,0.057790 0.395000,-0.187200,-0.540600,-0.986500,0.120600,0.110600 -0.371900,-0.613000,0.627400,0.332800,0.162500,0.928900 0.330700,-0.045140,0.571300,0.992900,-0.113600,0.036060 -0.431300,0.052710,-0.611500,-0.700800,-0.176300,-0.691200 -0.344100,-0.420900,0.585000,-0.088170,-0.135100,-0.986900 -0.357600,0.328300,-0.287200,0.222200,-0.888500,0.401500 -0.391600,-0.587600,-0.618000,-0.067320,0.273100,-0.959600 -0.426900,0.144700,-0.629500,-0.481000,0.006608,-0.876700 0.060380,0.368900,-0.574100,-0.209200,-0.977300,-0.033410 0.432300,0.102800,-0.527200,-0.462600,0.029680,-0.886100 -0.407600,-0.037690,-0.513200,0.265100,-0.065810,-0.962000 -0.390800,-0.279200,-0.521800,0.998400,-0.028900,0.048460 0.396700,0.291000,-0.485700,0.957100,-0.013040,0.289500 0.394800,0.313900,0.326300,0.798000,-0.538700,-0.270300 -0.445800,0.306500,-0.508000,-0.878700,-0.001070,0.477400 0.392000,-0.582400,-0.617300,-0.156500,-0.296700,0.942000 -0.379900,-0.249500,-0.492000,-0.296000,0.016910,0.955000 0.335200,0.144000,0.597100,-0.992600,-0.120800,-0.013230 0.109600,0.454500,-0.689000,0.000000,-1.000000,0.000000 0.368300,-0.249200,-0.497200,-0.203600,-0.018310,-0.978900 -0.330500,-0.170600,-0.583300,0.286800,-0.117500,-0.950800 -0.375400,-0.483000,0.515400,0.024720,-0.209100,-0.977600 0.361700,0.081770,-0.634700,0.083100,0.122300,0.989000 0.343700,-0.077910,0.599200,0.310900,0.141200,-0.939900 0.328900,0.193400,-0.577600,0.991100,0.122100,-0.053070 0.364900,-0.181200,0.579300,-0.229500,0.136200,-0.963700 0.369100,0.158400,-0.521700,-0.154500,-0.138300,0.978300 0.311200,-0.381500,-0.540600,-0.986800,-0.146500,0.068720 -0.318700,0.361300,-0.532500,-0.993700,0.000000,-0.112200 -0.335600,-0.152600,-0.587800,0.204100,-0.203600,-0.957500 0.450800,0.275600,0.540300,-0.996300,-0.085880,0.002776 0.086150,0.454500,-0.696800,0.000000,-0.999900,-0.016280 -0.446900,0.495500,0.678900,0.000000,0.990100,0.140600 0.454700,0.154100,0.590200,0.981400,0.002964,0.192000 -0.406700,0.353500,0.498900,-0.134000,0.000000,0.991000 -0.375500,0.056040,-0.522300,-0.160200,-0.033240,-0.986500 0.384300,-0.188100,0.571300,0.624700,-0.182300,0.759300 0.329700,0.423900,0.503400,-0.366000,0.001004,-0.930600 0.396300,0.424000,-0.195700,0.999400,0.031890,0.010650 0.392000,0.134300,-0.638900,-0.099580,0.022290,0.994800 0.352200,-0.382800,0.499000,0.065190,0.152500,0.986200 0.258400,0.496600,0.368000,0.000000,1.000000,0.000000 0.117500,0.496100,0.140900,0.049550,0.998100,-0.035410 0.319300,0.267300,0.571500,0.987600,0.148600,0.051240 -0.493200,0.454500,-0.696800,0.000000,-0.999900,-0.016280 0.397000,0.408300,0.125300,0.999900,-0.014210,-0.003542 0.397000,0.290800,-0.415000,0.999400,0.031960,-0.010640 -0.318100,0.384800,-0.540400,-0.998400,0.000000,-0.056730 0.453600,0.212600,-0.548000,0.999400,0.022990,0.024160 0.133100,0.496600,-0.642000,0.000000,1.000000,0.000000 -0.422800,0.496600,0.508900,0.000000,1.000000,0.000000 -0.187900,0.454500,-0.501100,0.000000,-1.000000,0.000000 -0.446300,0.495600,-0.383600,0.000000,1.000000,0.000000 -0.234900,0.431800,-0.581600,0.000000,0.000964,-1.000000 0.354800,0.392600,0.368000,-1.000000,0.000000,0.000000 -0.234900,0.454500,0.352300,0.000000,-1.000000,0.000000 0.516800,0.454500,-0.289700,0.019410,-0.999800,0.000000 -0.446300,0.495600,-0.501100,0.000000,1.000000,0.000000 -0.354800,0.408300,-0.289700,0.999900,0.010590,-0.010590 0.354800,0.369100,0.407100,-1.000000,0.000000,0.000000 -0.289700,0.337800,-0.539500,0.000000,0.000000,1.000000 -0.397000,0.345600,-0.407100,-1.000000,0.000000,0.000000 -0.148700,0.496600,0.195800,0.000000,1.000000,0.000000 -0.101800,0.454500,-0.368000,0.000000,-1.000000,0.000000 0.305400,0.496600,-0.203500,0.000000,1.000000,0.000000 0.454100,0.496600,-0.148700,0.000000,1.000000,0.000000 0.141000,0.454500,-0.180100,0.000000,-1.000000,0.000000 -0.219200,0.369100,-0.581600,0.000000,0.000000,-1.000000 0.219200,0.454500,-0.203500,0.000000,-1.000000,0.000000 0.172300,0.454500,-0.258300,0.000000,-1.000000,0.000000 0.211400,0.454500,-0.391400,0.000000,-1.000000,0.000000 0.211400,0.454500,-0.665500,0.000000,-1.000000,0.000000 -0.344500,0.496600,0.156600,0.000000,1.000000,0.000000 -0.313200,0.454500,0.234900,0.000000,-1.000000,0.000000 0.250600,0.384800,-0.581600,0.000000,0.000000,-1.000000 -0.469700,0.454500,0.313200,0.000000,-1.000000,0.000000 0.501100,0.454500,0.665500,0.000000,-1.000000,0.000000 0.462000,0.454500,0.673400,0.000000,-1.000000,0.000000 -0.354800,0.345700,-0.352300,1.000000,0.000021,0.000021 -0.289700,0.454500,0.657700,0.000000,-1.000000,0.000000 -0.258300,0.337800,-0.539500,0.000000,0.000000,1.000000 0.454100,0.454500,-0.602800,-0.002621,-1.000000,0.001311 -0.266200,0.454500,-0.407100,0.000000,-1.000000,0.000000 0.313200,0.454500,-0.642100,-0.027700,-0.994100,-0.105100 -0.266200,0.496600,0.516800,0.000000,1.000000,0.000000 -0.172200,0.454500,0.375800,0.000000,-1.000000,0.000000 -0.477600,0.454500,0.477600,0.000000,-1.000000,0.000000 -0.148700,0.454500,-0.696800,0.000000,-0.999900,-0.016280 0.375800,0.495600,0.399300,0.000000,1.000000,0.000000 -0.313200,0.496600,0.532400,0.000000,1.000000,0.000000 0.039150,0.400500,-0.540300,-0.014190,0.039010,0.999100 -0.187900,0.454500,-0.101800,0.000000,-1.000000,0.000000 -0.399500,0.040190,0.520600,0.047470,0.026700,-0.998500 0.368500,0.408300,-0.631100,-0.104900,0.000004,0.994500 -0.093930,0.496600,0.187900,0.000000,1.000000,0.000000 0.125300,0.495600,0.007861,0.000000,0.999800,0.021220 0.523400,0.455100,-0.704900,0.312500,-0.924700,-0.217600 0.422800,0.495600,0.054820,0.000000,1.000000,0.000000 -0.062610,0.496600,0.430600,0.000000,1.000000,0.000000 -0.031300,0.496600,-0.485400,0.000000,1.000000,0.000000 0.101800,0.496600,0.501100,0.000000,1.000000,0.000000 -0.062610,0.496600,0.258400,0.000000,1.000000,0.000000 0.354800,0.384800,-0.031300,-1.000000,-0.006167,0.000182 0.054830,0.496600,-0.422800,0.000000,1.000000,0.000000 -0.054780,0.496600,0.383700,0.000000,1.000000,0.000000 -0.023460,0.454500,-0.274000,0.000000,-1.000000,0.000000 -0.054780,0.496600,-0.430600,0.000000,1.000000,0.000000 -0.046950,0.496600,0.328900,0.000000,1.000000,0.000000 -0.086100,0.496600,-0.360100,0.000000,1.000000,0.000000 -0.086100,0.454500,-0.148700,0.000000,-1.000000,0.000000 -0.219200,0.454500,-0.078270,0.000000,-1.000000,0.000000 0.015680,0.496600,0.156600,0.000000,1.000000,0.000000 -0.031290,0.454500,0.336700,0.000000,-1.000000,0.000000 0.391500,0.495600,0.046990,0.000000,1.000000,0.000000 0.093970,0.496600,-0.532400,0.000000,1.000000,0.000000 0.062660,0.496600,-0.595000,0.000000,1.000000,0.000000 -0.031290,0.454500,-0.469700,0.000000,-1.000000,0.000000 0.039170,0.496600,-0.524500,0.000000,1.000000,0.000000 0.093980,0.454500,0.501100,0.000000,-1.000000,0.000000 0.422800,0.454500,0.031340,0.000000,-1.000000,0.000000 -0.031290,0.454500,-0.336600,0.000000,-1.000000,0.000000 -0.015640,0.496600,-0.610700,0.000000,1.000000,0.000000 0.415000,0.496600,-0.046950,0.000000,1.000000,0.000000 -0.054780,0.496600,0.579400,0.000000,1.000000,0.000000 -0.078270,0.496600,-0.540200,0.000000,1.000000,0.000000 0.354800,0.384800,0.000019,-1.000000,-0.009058,0.000322 0.007851,0.496600,-0.368000,0.000000,1.000000,0.000000 0.000024,0.454500,-0.242700,0.000000,-1.000000,0.000000 0.007851,0.496600,-0.336600,0.000000,1.000000,0.000000 0.007852,0.408300,0.539500,0.000000,0.000000,-1.000000 -0.333400,0.095000,0.602900,0.999200,0.039350,0.007692 0.266200,0.454500,0.078320,0.000000,-1.000000,0.000000 0.086140,0.496600,-0.469700,0.000000,1.000000,0.000000 -0.446300,0.454500,-0.031290,0.000000,-1.000000,0.000000 0.172300,0.496600,-0.054780,0.000000,1.000000,0.000000 -0.031290,0.454500,-0.234900,0.000000,-1.000000,0.000000 -0.355800,0.431800,-0.054790,1.000000,0.000577,0.000000 -0.354800,0.424000,0.054830,1.000000,0.000000,0.000000 0.328900,0.454500,-0.023460,0.000000,-1.000000,0.000000 -0.046950,0.496600,-0.258300,0.000000,1.000000,0.000000 -0.039120,0.454500,0.117500,0.000000,-1.000000,0.000000 0.054830,0.454500,-0.469700,0.000000,-1.000000,0.000000 -0.093930,0.454500,0.172300,0.000000,-1.000000,0.000000 -0.422800,0.454500,-0.078270,0.000000,-1.000000,0.000000 -0.461900,0.496600,0.093970,0.000000,1.000000,0.000000 0.317000,-0.139400,-0.572200,0.975500,-0.069240,0.209000 -0.321000,0.495600,-0.414900,0.000064,1.000000,-0.000064 -0.007806,0.454500,0.375800,0.000000,-1.000000,0.000000 -0.355000,0.377000,-0.422800,0.999800,-0.000074,0.021330 0.396300,0.361300,-0.454100,0.999100,-0.042560,0.000000 0.317800,0.377000,-0.571500,0.997400,-0.021880,-0.069200 -0.355000,0.369100,0.180100,0.997300,-0.064430,0.034780 0.317700,0.322200,0.548100,1.000000,0.000000,0.003807 0.396800,0.392600,-0.368000,0.999700,0.017760,-0.014220 0.375800,0.314300,0.502300,0.007148,-0.014210,0.999900 0.396300,0.384800,0.140900,0.999300,-0.035800,0.007173 0.086150,0.392600,0.581600,0.000004,0.021300,0.999800 -0.031300,0.496600,-0.156600,0.000000,1.000000,0.000000 -0.117400,0.454500,-0.626300,0.000000,-1.000000,0.000000 -0.297500,0.496600,0.649900,0.000000,1.000000,0.000000 0.313200,0.496600,-0.626300,0.000000,1.000000,0.000000 -0.501100,0.454500,0.602900,0.000000,-1.000000,0.000000 -0.321000,0.496600,-0.665400,0.000000,0.999900,-0.016000 -0.180100,0.496600,-0.501100,0.000000,1.000000,0.000000 -0.250500,0.454500,-0.281800,0.000000,-1.000000,0.000000 0.391500,0.496600,-0.407100,0.000000,1.000000,0.000000 -0.180100,0.454500,0.328900,0.000000,-1.000000,0.000000 0.258400,0.454500,-0.297500,0.000000,-1.000000,0.000000 -0.258400,0.495600,-0.172200,0.000000,1.000000,0.000000 -0.354800,0.392600,-0.172200,1.000000,0.000000,0.000000 -0.180100,0.454500,-0.368000,0.000000,-1.000000,0.000000 0.321000,0.454500,-0.454100,0.000000,-1.000000,0.000000 -0.219200,0.496600,0.595100,0.000000,1.000000,0.000000 -0.407100,0.496600,0.344500,0.000000,1.000000,0.000000 -0.477600,0.496600,0.493300,-0.006633,1.000000,0.000000 -0.368000,0.353500,-0.502500,0.000900,0.000000,-1.000000 -0.148700,0.496600,0.524600,0.000000,1.000000,0.000000 -0.397000,0.314300,0.454100,-1.000000,0.000000,0.000000 -0.297500,0.454500,0.438500,0.000000,-1.000000,0.000000 -0.180100,0.496600,0.524600,0.000000,1.000000,0.000000 -0.368000,0.495600,-0.391500,0.000000,1.000000,0.000000 -0.274000,0.454500,-0.125200,0.000000,-1.000000,0.000000 -0.242700,0.496600,-0.485400,0.000000,1.000000,0.000000 0.187900,0.454500,0.109600,0.000000,-1.000000,0.000000 0.125300,0.496600,0.180100,0.000000,1.000000,0.000000 -0.211400,0.496600,-0.477600,0.000000,1.000000,0.000000 -0.195700,0.454500,-0.422800,0.000000,-1.000000,0.000000 0.156600,0.496600,0.446300,0.000000,1.000000,0.000000 -0.211400,0.454500,0.234900,0.000000,-1.000000,0.000000 0.109600,0.496600,-0.274000,0.000000,1.000000,0.000000 -0.274000,0.454500,0.133100,0.000000,-1.000000,0.000000 -0.250500,0.496600,0.203600,0.000000,1.000000,0.000000 -0.140900,0.408300,-0.581600,0.000000,0.000000,-1.000000 -0.156600,0.361300,0.539500,0.000000,0.000000,-1.000000 -0.274000,0.454500,-0.250500,0.000000,-1.000000,0.000000 0.368000,0.495600,0.156600,0.000000,1.000000,0.000000 -0.250500,0.495600,-0.195700,0.000000,1.000000,0.000000 0.328900,0.454500,0.148800,0.000000,-1.000000,0.000000 -0.297500,0.496600,0.328900,0.000000,1.000000,0.000000 -0.454100,0.454500,0.195800,0.000000,-1.000000,0.000000 -0.454100,0.496600,0.187900,0.000000,1.000000,0.000000 0.415000,0.496600,-0.438400,0.000000,1.000000,0.000000 0.133100,0.431800,0.539500,0.000000,0.000000,-1.000000 -0.274000,0.495600,-0.328800,0.000000,1.000000,0.000000 -0.336600,0.496600,0.211400,0.000000,1.000000,0.000000 -0.258400,0.392600,0.580600,0.000021,0.000021,1.000000 -0.297500,0.495600,-0.289700,0.000000,1.000000,0.000000 0.328900,0.496600,-0.383600,0.000000,1.000000,0.000000 -0.289700,0.496600,0.579400,0.000000,1.000000,0.000000 -0.250500,0.495600,-0.297500,0.000000,1.000000,0.000000 -0.305300,0.454500,0.469800,0.000000,-1.000000,0.000000 -0.461900,0.496600,0.610700,0.000000,1.000000,0.000000 0.234900,0.496600,0.657700,0.000000,1.000000,0.000258 0.180100,0.454500,-0.321000,0.000000,-1.000000,0.000000 0.368000,0.454500,0.571600,0.000000,-1.000000,0.000000 0.125300,0.496600,0.477600,0.000000,1.000000,0.000000 -0.187900,0.454500,0.485400,0.000000,-1.000000,0.000000 -0.164400,0.454500,0.446300,0.000000,-1.000000,0.000000 0.493300,0.454500,0.563700,0.000000,-1.000000,0.000000 0.156600,0.454500,-0.485400,0.000000,-1.000000,0.000000 -0.140900,0.454500,0.477600,0.000000,-1.000000,0.000000 -0.266200,0.361300,0.539500,0.000000,0.000000,-1.000000 0.117500,0.454500,-0.242700,0.000000,-1.000000,0.000000 0.234900,0.496600,-0.148700,0.000000,1.000000,0.000000 0.148800,0.496600,-0.156600,0.000000,1.000000,0.000000 0.164400,0.454500,0.133100,0.000000,-1.000000,0.000000 0.227100,0.495600,0.156600,0.000000,1.000000,0.000000 0.125300,0.454500,0.242700,0.000000,-1.000000,0.000000 -0.148700,0.495600,-0.172200,0.000000,1.000000,0.000000 -0.156600,0.454500,-0.109600,0.000000,-1.000000,0.000000 -0.219200,0.361300,0.539500,0.000000,0.000000,-1.000000 0.281900,0.345700,-0.581600,0.000642,0.000000,-1.000000 0.313200,0.454500,-0.203500,0.000000,-1.000000,0.000000 -0.180100,0.454500,0.297500,0.000000,-1.000000,0.000000 0.258400,0.454500,-0.508900,0.000000,-1.000000,0.000000 -0.397000,0.392600,-0.454100,-1.000000,0.000000,0.000000 -0.328800,0.496600,0.125300,0.000000,1.000000,0.000000 0.477600,0.454500,-0.219200,0.000000,-1.000000,0.000000 -0.446300,0.496600,0.281900,0.000000,1.000000,0.000000 -0.242700,0.330000,-0.581600,0.000000,0.000000,-1.000000 0.234900,0.330000,0.539500,0.000000,0.000000,-1.000000 -0.461900,0.454500,-0.164400,0.000000,-1.000000,0.000000 -0.354800,0.384800,-0.242700,1.000000,0.000000,0.000000 -0.407100,0.496600,0.595100,0.000000,1.000000,0.000000 0.258400,0.496600,-0.156600,0.000000,1.000000,0.000000 0.368000,0.496600,-0.563700,0.000000,1.000000,0.000000 0.516800,0.454500,0.180100,0.019410,-0.999800,0.000000 0.354800,0.330000,0.344500,-1.000000,-0.000021,-0.000021 0.172300,0.454500,-0.407100,0.000000,-1.000000,0.000000 -0.397000,0.384800,-0.297500,-1.000000,0.000000,0.000000 0.391500,0.495600,0.180100,0.000000,1.000000,0.000000 -0.219200,0.496600,0.274100,0.000000,1.000000,0.000000 0.360200,0.496600,-0.328800,0.000000,1.000000,0.000000 0.391500,0.496600,-0.297500,0.000000,1.000000,0.000000 0.344500,0.495600,0.266200,0.000000,1.000000,0.000000 0.211400,0.496600,-0.618500,0.000000,1.000000,0.000000 -0.125200,0.496600,0.438500,0.000000,1.000000,0.000000 -0.117400,0.454500,0.454100,0.000000,-1.000000,0.000000 0.117500,0.496600,-0.352300,0.000000,1.000000,0.000000 -0.125200,0.496600,-0.297500,0.000000,1.000000,0.000000 0.415000,0.495600,0.125300,0.000000,1.000000,0.000000 -0.354800,0.424000,0.117500,1.000000,0.000000,0.000000 0.101800,0.496600,-0.258300,0.000000,1.000000,0.000000 -0.164400,0.454500,0.493300,0.000000,-1.000000,0.000000 -0.156600,0.496600,0.501100,0.000000,1.000000,0.000000 -0.164400,0.454500,-0.352300,0.000000,-1.000000,0.000000 0.148800,0.454500,0.391500,0.000000,-1.000000,0.000000 -0.211400,0.454500,-0.665500,0.000000,-1.000000,0.000000 -0.133100,0.496600,-0.595000,0.000000,1.000000,0.000000 -0.211400,0.454500,0.642000,0.000000,-1.000000,0.000000 -0.397000,0.400400,0.242700,-1.000000,0.000000,0.000000 -0.407100,0.496600,0.101800,0.000000,1.000000,0.000000 -0.352300,0.496600,0.180100,0.000000,1.000000,0.000000 0.354800,0.384800,0.195800,-1.000000,0.000000,0.000000 0.164400,0.424000,-0.539500,0.000000,0.000000,1.000000 -0.485400,0.454500,0.219200,0.000000,-1.000000,0.000000 0.462000,0.454500,-0.673300,0.000000,-1.000000,0.000000 -0.266200,0.454500,0.626400,0.000000,-1.000000,0.000000 0.352300,0.496600,-0.352300,0.000000,1.000000,0.000000 0.354800,0.424000,-0.407100,-1.000000,0.000000,0.000000 0.422800,0.495600,0.258400,0.000000,1.000000,0.000000 0.336700,0.496600,0.587200,0.000000,1.000000,0.000000 0.391500,0.496600,0.610700,0.000000,1.000000,0.000000 -0.317800,0.408300,-0.563700,-1.000000,0.000000,-0.000192 0.396000,0.330000,0.344500,1.000000,-0.000085,-0.000021 0.454100,0.495600,0.407100,0.000000,1.000000,0.000000 0.399300,0.454500,0.681200,0.000000,-1.000000,0.000000 0.422600,0.423900,-0.618000,0.608200,0.000000,-0.793800 -0.391700,-0.069930,-0.506100,-0.007562,0.109400,0.994000 -0.440500,0.055700,0.579500,0.981600,0.140400,-0.129400 0.315900,0.290000,0.603600,0.965000,0.142700,-0.220000 0.428400,0.306200,-0.502300,-0.452000,0.011130,-0.892000 -0.015630,0.454500,-0.101800,0.000000,-1.000000,0.000000 -0.070470,0.496600,-0.109600,-0.031900,0.999300,0.021280 0.315200,0.416100,0.532600,-0.898400,0.000021,-0.439100 0.289700,0.496000,0.000034,0.000000,0.999100,0.042510 0.446300,0.496000,0.000034,0.000000,0.999100,0.042510 0.445700,0.365900,0.560600,-0.993200,0.000214,-0.116700 0.078340,0.496000,0.086110,0.046020,0.998200,-0.038970 0.368000,0.337800,0.627300,-0.079090,0.000000,-0.996900 0.101800,0.496600,-0.078270,0.000000,1.000000,0.000000 -0.062610,0.454500,-0.078270,0.000000,-1.000000,0.000000 0.015680,0.454500,0.047000,0.000000,-1.000000,0.000000 0.031340,0.496600,-0.039120,0.000000,1.000000,0.000000 -0.031300,0.496600,-0.093930,0.000000,1.000000,0.000000 -0.093930,0.454500,-0.062610,0.000000,-1.000000,0.000000 0.078320,0.454500,-0.023460,0.000000,-1.000000,0.000000 0.078320,0.454500,0.078320,0.000000,-1.000000,0.000000 -0.093930,0.454500,0.078320,0.000000,-1.000000,0.000000 -0.039120,0.454500,0.007854,0.000000,-1.000000,0.000000 0.015680,0.454500,0.070490,0.000000,-1.000000,0.000000 0.327900,-0.210600,0.575400,0.367900,0.098790,-0.924600 -0.093930,0.496600,0.446300,0.000000,1.000000,0.000000 0.078320,0.496600,-0.086100,0.000000,1.000000,0.000000 -0.046960,0.495600,-0.015670,-0.000000,0.999800,-0.021260 0.101800,0.496600,0.524600,0.000000,1.000000,0.000000 -0.046950,0.496600,0.563700,0.000000,1.000000,0.000000 0.062660,0.496600,0.281900,0.000000,1.000000,0.000000 0.454100,0.495600,0.101800,0.000000,1.000000,0.000000 -0.397000,0.392600,0.007830,-1.000000,-0.000128,0.000000 0.227100,0.495600,0.039160,0.000000,1.000000,0.000000 -0.250500,0.454500,-0.046950,0.000000,-1.000000,0.000000 -0.195700,0.496600,0.070490,0.000000,1.000000,0.000000 0.078320,0.496600,-0.125200,0.000000,1.000000,0.000000 0.070490,0.454500,0.125300,0.000000,-1.000000,0.000000 0.203600,0.454500,-0.015630,0.000000,-1.000000,0.000000 0.219200,0.454500,-0.070440,0.000000,-1.000000,0.000000 0.101800,0.496600,0.274100,0.000000,1.000000,0.000000 0.062660,0.496600,0.540300,0.000000,1.000000,0.000000 0.078320,0.454500,0.164400,0.000000,-1.000000,0.000000 0.109600,0.495600,0.062650,0.000000,1.000000,0.000000 -0.305300,0.496600,0.062660,0.000000,1.000000,0.000000 -0.078270,0.454500,-0.172200,0.000000,-1.000000,0.000000 0.242700,0.495600,0.070480,0.000000,1.000000,0.000000 0.047000,0.496600,-0.274000,0.000000,1.000000,0.000000 0.031340,0.496600,0.540300,0.000000,1.000000,0.000000 -0.007808,0.496600,-0.587200,0.000000,1.000000,0.000000 0.007851,0.496600,0.368000,0.000000,1.000000,0.000000 -0.007806,0.454500,0.336700,0.000000,-1.000000,0.000000 0.354800,0.424000,0.007849,-1.000000,0.000000,0.000000 -0.356200,0.176600,0.524300,-0.359900,0.135700,0.923100 0.396100,0.384800,0.391500,0.998900,-0.042600,0.021280 0.391500,0.204700,0.510000,-0.087020,-0.125200,-0.988300 0.397000,0.431800,0.321000,1.000000,-0.003243,-0.003563 -0.384000,0.423900,0.629300,0.125200,0.000000,-0.992100 -0.125300,0.400500,0.580800,0.010580,0.021240,0.999700 0.329300,-0.319900,-0.578400,-0.145200,0.019460,-0.989200 -0.344300,0.454600,-0.477600,0.168900,-0.985600,-0.001287 -0.458000,0.189100,-0.555800,-0.999400,-0.000321,-0.034270 -0.477600,0.496600,0.219200,-0.006633,1.000000,0.000000 0.397000,0.439500,0.250500,0.998100,-0.060820,0.000000 0.397000,0.439500,0.281900,0.998100,-0.060810,0.000000 0.375800,0.496600,-0.156600,0.000000,1.000000,0.000000 0.438500,0.496600,-0.602800,0.000000,1.000000,0.000000 -0.397000,0.384800,0.281900,-1.000000,0.000000,0.000000 0.375800,0.496600,-0.508900,0.000000,1.000000,0.000000 0.438500,0.495600,0.563700,-0.000149,1.000000,0.000107 -0.180100,0.454500,0.508900,0.000000,-1.000000,0.000000 -0.203500,0.454500,-0.125200,0.000000,-1.000000,0.000000 0.227100,0.454500,0.375800,0.000000,-1.000000,0.000000 -0.289700,0.454500,-0.336600,0.000000,-1.000000,0.000000 -0.227000,0.337800,-0.539500,0.000000,0.000000,1.000000 -0.289700,0.454500,0.321000,0.000000,-1.000000,0.000000 0.477600,0.454500,0.399300,0.000000,-1.000000,0.000000 -0.354800,0.377000,-0.289700,1.000000,0.000000,0.000000 0.164400,0.496600,0.532400,0.000000,1.000000,0.000000 -0.397000,0.392600,-0.336700,-1.000000,0.000000,0.000000 -0.289700,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.383600,0.454500,0.587200,0.000000,-1.000000,0.000000 -0.266200,0.454500,-0.313200,0.000000,-1.000000,0.000000 0.354800,0.400500,-0.438400,-1.000000,0.000000,0.000000 0.354800,0.416100,-0.368000,-1.000000,0.000000,0.000000 0.508900,0.454500,0.485400,0.000000,-1.000000,0.000000 -0.446300,0.454500,0.665500,0.000000,-1.000000,0.000000 0.328900,0.454500,-0.657600,0.000000,-1.000000,0.000000 -0.227000,0.322200,0.539500,0.000000,0.000000,-1.000000 -0.313200,0.454500,0.344500,0.000000,-1.000000,0.000000 -0.383600,0.495600,-0.493200,0.000000,1.000000,0.000000 0.227100,0.369100,-0.539500,0.000000,0.000000,1.000000 -0.172200,0.496600,0.352300,0.000000,1.000000,0.000000 0.305400,0.454500,-0.493200,0.000000,-1.000000,0.000000 0.242700,0.400500,0.581600,0.000000,0.000000,1.000000 -0.313200,0.495600,-0.258400,0.000000,1.000000,0.000000 0.078320,0.496600,0.266200,0.000000,1.000000,0.000000 0.354800,0.408300,0.070480,-1.000000,0.000000,0.000000 -0.054780,0.496600,-0.540200,0.000000,1.000000,0.000000 0.396600,0.439500,0.007796,0.997200,-0.060760,-0.042540 0.062680,0.495600,0.054800,0.031860,0.999300,-0.021270 -0.454100,0.495600,-0.031300,0.000000,1.000000,0.000000 -0.477600,0.496600,0.062660,-0.006633,1.000000,0.000000 0.078310,0.423900,-0.540500,0.000021,-0.000043,1.000000 0.297500,0.454500,0.093980,0.000000,-1.000000,0.000000 0.328900,0.454500,0.109600,0.000000,-1.000000,0.000000 0.389300,-0.359100,-0.547500,0.972700,0.051640,-0.226300 0.454100,0.454500,-0.023460,0.000000,-1.000000,0.000000 -0.195700,0.454500,0.093980,0.000000,-1.000000,0.000000 -0.039120,0.454500,-0.195700,0.000000,-1.000000,0.000000 0.015680,0.496600,0.187900,0.000000,1.000000,0.000000 -0.125200,0.496600,0.054830,0.000000,1.000000,0.000000 -0.054780,0.496600,0.133100,0.000000,1.000000,0.000000 -0.397000,0.408300,-0.039150,-1.000000,0.000000,0.000000 0.397000,0.423900,0.039150,1.000000,0.000000,0.000000 0.383700,0.496600,-0.062610,0.000000,1.000000,0.000000 -0.289700,0.495600,-0.039130,0.000000,1.000000,0.000000 0.354800,0.416100,0.047000,-1.000000,0.000000,0.000000 -0.046950,0.454500,0.469800,0.000000,-1.000000,0.000000 0.039170,0.496600,-0.461900,0.000000,1.000000,0.000000 -0.093930,0.496600,-0.344500,0.000000,1.000000,0.000000 -0.266200,0.496600,0.101800,0.000000,1.000000,0.000000 -0.093930,0.496600,0.328900,0.000000,1.000000,0.000000 -0.461900,0.496600,0.070490,0.000000,1.000000,0.000000 -0.054780,0.424000,0.539500,0.000000,0.000000,-1.000000 -0.046950,0.496600,0.289700,0.000000,1.000000,0.000000 0.070490,0.454500,0.681200,0.000000,-1.000000,0.000000 0.086150,0.454500,-0.626300,0.000000,-1.000000,0.000000 0.015670,0.423900,-0.540500,0.000000,0.000000,1.000000 0.078320,0.454500,-0.524500,0.000000,-1.000000,-0.004194 -0.469700,0.496400,-0.672800,-0.000001,0.998300,-0.058910 -0.305300,0.496100,0.672700,0.000000,0.996500,0.083150 -0.141000,0.496100,-0.195700,-0.049560,0.998100,0.035450 -0.355000,0.353500,0.250600,0.998500,-0.041420,0.036950 -0.354800,0.400400,0.070480,0.999800,-0.021260,0.000000 0.397000,0.322200,0.383600,1.000000,0.000000,0.000000 0.396500,0.384800,0.180100,0.999500,0.028550,-0.014280 -0.391500,0.157700,-0.635100,0.072040,-0.008197,0.997400 0.396900,0.322200,0.477400,0.974500,0.000000,-0.224300 -0.117400,0.454500,-0.602800,0.000000,-1.000000,0.003810 -0.219200,0.454500,-0.602800,0.000000,-1.000000,0.003810 0.311400,-0.351300,-0.555800,0.992000,0.046970,0.117100 -0.355300,0.400400,0.328800,1.000000,-0.003532,-0.003598 -0.355200,0.416100,0.407100,0.999900,-0.000014,-0.010690 -0.485300,0.496500,0.101800,-0.060600,0.998200,0.000000 -0.348800,-0.329400,-0.492800,0.076760,-0.079850,0.993800 0.354800,0.384800,0.281900,-1.000000,0.000000,0.000000 0.454100,0.454500,0.368000,0.000000,-1.000000,0.000000 0.375800,0.495600,0.266200,0.000000,1.000000,0.000000 -0.375800,0.269800,0.454100,0.000000,-1.000000,0.000000 -0.317800,0.431800,-0.555900,-1.000000,0.000425,-0.000022 -0.109600,0.496600,0.563700,0.000000,1.000000,0.000000 0.297500,0.454500,-0.156600,0.000000,-1.000000,0.000000 -0.328800,0.496600,0.555900,0.000000,1.000000,0.000000 -0.317800,0.408300,0.555900,-1.000000,0.000000,0.000000 -0.274000,0.496600,0.454100,0.000000,1.000000,0.000000 -0.469700,0.454500,0.602900,0.000000,-1.000000,0.000000 0.454100,0.496600,0.649900,0.000000,1.000000,0.000000 0.156600,0.454500,0.681200,0.000000,-1.000000,0.000000 0.274100,0.454500,0.642000,0.000000,-1.000000,0.000000 0.227100,0.496600,-0.555900,0.000000,1.000000,0.000000 -0.336600,0.496600,-0.657600,0.000000,1.000000,-0.000322 0.172300,0.496600,0.336700,0.000000,1.000000,0.000000 0.164400,0.496600,-0.195700,0.000000,1.000000,0.000000 -0.289700,0.454500,0.383700,0.000000,-1.000000,0.000000 -0.180100,0.495600,-0.203500,0.000000,1.000000,0.000000 -0.250500,0.496600,0.422800,0.000000,1.000000,0.000000 -0.195700,0.416100,0.539500,0.000000,0.000000,-1.000000 -0.446300,0.495600,-0.297500,0.000000,1.000000,0.000000 0.195800,0.496600,-0.321000,0.000000,1.000000,0.000000 -0.355800,0.322200,-0.438400,1.000000,0.000000,0.000000 -0.375800,0.495600,-0.336600,0.000000,1.000000,0.000000 0.493300,0.454500,-0.422800,0.000000,-1.000000,0.000000 -0.407100,0.495600,-0.446300,0.000000,1.000000,0.000000 0.266200,0.454500,-0.187900,0.000000,-1.000000,0.000000 0.438500,0.454500,0.266200,0.000000,-1.000000,0.000000 -0.187900,0.454500,0.203600,0.000000,-1.000000,0.000000 -0.258300,0.496600,0.274100,0.000000,1.000000,0.000000 0.289700,0.454500,-0.234900,0.000000,-1.000000,0.000000 -0.180100,0.496600,0.587200,0.000000,1.000000,0.000000 -0.274000,0.377000,-0.540500,0.000000,0.021220,0.999800 0.454100,0.496600,-0.227000,0.000000,1.000000,0.000000 -0.328800,0.454500,0.336700,0.000000,-1.000000,0.000000 -0.461900,0.454500,-0.313200,0.000000,-1.000000,0.000000 0.477600,0.496600,-0.258300,0.006646,1.000000,0.000000 -0.266200,0.454500,-0.461900,0.000000,-1.000000,0.000000 -0.125200,0.454500,-0.195700,0.000000,-1.000000,0.000000 -0.430600,0.454500,-0.148700,0.000000,-1.000000,0.000000 0.354800,0.392600,-0.321000,-1.000000,0.000000,0.000000 0.297500,0.496600,-0.266200,0.000000,1.000000,0.000000 0.477600,0.454500,-0.360100,0.000000,-1.000000,0.000000 -0.148700,0.496600,-0.461900,0.000000,1.000000,0.000000 -0.485400,0.454500,-0.336600,0.000000,-1.000000,0.000000 0.227100,0.424000,-0.539500,0.000000,0.000000,1.000000 0.125300,0.454500,-0.454100,0.000000,-1.000000,0.000000 -0.219200,0.496600,-0.375800,0.000000,1.000000,0.000000 -0.414900,0.495600,-0.101800,0.000000,1.000000,0.000000 -0.164400,0.454500,-0.172200,0.000000,-1.000000,0.000000 -0.164400,0.416100,0.539500,0.000000,0.000000,-1.000000 0.266200,0.496600,-0.133100,0.000000,1.000000,0.000000 -0.227000,0.454500,-0.101800,0.000000,-1.000000,0.000000 -0.156600,0.496600,0.305400,0.000000,1.000000,0.000000 -0.397000,0.423900,0.211400,-1.000000,0.000000,0.000000 0.250600,0.495600,0.234900,0.000000,1.000000,0.000000 -0.242700,0.454500,0.336700,0.000000,-1.000000,0.000000 0.234900,0.454500,-0.477600,0.000000,-1.000000,0.000000 -0.156600,0.454500,0.336700,0.000000,-1.000000,0.000000 -0.140900,0.454500,-0.187900,0.000000,-1.000000,0.000000 0.180100,0.377000,0.581600,0.000000,0.000000,1.000000 -0.164400,0.454500,-0.422800,0.000000,-1.000000,0.000000 -0.485400,0.454500,0.117500,0.000000,-1.000000,0.000000 -0.133100,0.377000,0.581000,-0.003599,0.007136,1.000000 0.422800,0.496600,-0.109600,0.000000,1.000000,0.000000 0.234900,0.392600,0.539500,0.000000,0.000000,-1.000000 -0.446300,0.496600,0.125300,0.000000,1.000000,0.000000 0.289700,0.454500,0.383700,0.000000,-1.000000,0.000000 -0.360100,0.496600,-0.618500,0.000000,1.000000,0.000000 -0.399300,0.454500,0.657700,0.000000,-1.000000,0.000000 0.203600,0.330000,0.539500,-0.000170,-0.000170,-1.000000 -0.485400,0.454500,-0.493200,0.000000,-1.000000,0.000000 0.250600,0.454500,0.305400,0.000000,-1.000000,0.000000 0.250600,0.496600,-0.352300,0.000000,1.000000,0.000000 -0.281800,0.495600,-0.352300,0.000000,1.000000,0.000000 -0.354800,0.377000,-0.203500,1.000000,0.000000,0.000000 -0.117400,0.496600,-0.532400,0.000000,1.000000,0.000000 -0.156600,0.496600,-0.305300,0.000000,1.000000,0.000000 -0.399300,0.496600,0.571600,0.000000,1.000000,0.000000 0.328900,0.496600,-0.101800,0.000000,1.000000,0.000000 -0.266200,0.495600,-0.250500,0.000000,1.000000,0.000000 0.211400,0.454500,0.626400,0.000000,-1.000000,0.000000 -0.313200,0.454500,0.696800,0.000000,-1.000000,0.005074 0.305400,0.454500,0.258400,0.000000,-1.000000,0.000000 -0.397000,0.408300,-0.234900,-1.000000,0.000000,0.000000 -0.101800,0.454500,0.391500,0.000000,-1.000000,0.000000 -0.133100,0.454500,0.657700,0.000000,-1.000000,0.000000 0.446300,0.495600,0.508900,0.000000,1.000000,0.000000 -0.321000,0.496600,0.383700,0.000000,1.000000,0.000000 0.415000,0.495600,0.430600,0.000000,1.000000,0.000000 0.156600,0.454500,0.462000,0.000000,-1.000000,0.000000 -0.321000,0.496600,0.242700,0.000000,1.000000,0.000000 0.415000,0.496600,-0.305300,0.000000,1.000000,0.000000 -0.234900,0.496600,-0.454100,0.000000,1.000000,0.000000 -0.501100,0.454500,0.321000,0.000000,-1.000000,0.000000 0.289700,0.496600,0.571600,0.000000,1.000000,0.000000 -0.164400,0.496600,-0.642000,0.000000,1.000000,0.000000 0.211400,0.496600,0.571600,0.000000,1.000000,0.000000 -0.266200,0.496600,0.571600,0.000000,1.000000,0.000000 -0.359900,-0.154700,0.502800,-0.068310,-0.148800,0.986500 -0.415400,0.227300,0.512000,0.081680,0.163900,0.983100 -0.367900,0.345600,0.633800,-0.076350,-0.005315,0.997100 0.292300,0.271900,-0.580800,-0.066340,-0.608700,-0.790700 0.340600,0.160500,-0.636400,-0.460300,-0.040620,-0.886800 -0.310100,-0.374100,0.555000,0.987100,-0.113200,0.113000 0.437100,0.423900,-0.591000,-0.946900,0.000000,0.321600 -0.412500,-0.093850,0.531900,0.973100,0.183500,0.139600 0.350400,0.452200,0.451500,-0.613500,-0.789700,0.000000 0.477600,0.496000,0.078310,-0.036260,0.999300,0.000000 0.445000,0.345600,-0.555700,0.993600,-0.000015,-0.113100 0.117500,0.361400,-0.540000,-0.038150,-0.243400,0.969200 0.391200,-0.029770,0.513200,0.052540,-0.115100,0.992000 0.362600,-0.311800,0.569200,-0.320700,-0.044270,-0.946100 0.396300,0.392600,0.477500,0.978300,-0.014170,-0.206800 0.415000,0.454500,0.571600,0.000000,-1.000000,0.000000 -0.336600,0.454500,-0.101800,-0.004194,-1.000000,0.000000 -0.211400,0.447300,0.539600,0.000000,-0.179800,-0.983700 -0.477600,0.496600,0.446300,-0.006633,1.000000,0.000000 -0.461900,0.496600,0.665400,0.000000,0.999300,0.037770 0.219200,0.439500,-0.581600,0.000000,-0.129400,-0.991600 0.327400,-0.193100,0.500900,-0.601500,0.103700,-0.792100 0.399100,-0.641800,0.551100,0.126300,0.188700,0.973900 -0.325500,-0.046390,0.556300,0.988900,0.120300,-0.087640 0.324300,-0.068800,-0.571400,0.993300,-0.114900,-0.010580 0.422800,0.496400,0.672800,0.000000,0.998300,0.058890 -0.320100,0.279800,-0.620400,0.903000,-0.197900,-0.381300 0.401300,-0.479100,-0.522100,0.687700,0.009313,0.726000 0.148800,0.447200,-0.583600,0.000000,-0.457200,-0.889400 -0.070440,0.454600,0.595200,0.000000,-0.987700,0.156700 0.422800,0.454500,0.078320,0.000000,-1.000000,0.000000 0.070490,0.454600,-0.595200,0.000000,-0.987100,-0.160200 0.307600,-0.296300,-0.562800,-0.949200,-0.049630,-0.310600 -0.355500,0.306500,-0.391500,0.998900,0.046050,-0.007060 0.336700,0.454500,-0.360100,0.003810,-1.000000,0.000000 0.485300,0.496500,-0.563700,0.055520,0.998500,-0.003336 0.354800,0.290900,0.469800,-1.000000,0.000000,0.000000 -0.328800,0.454500,-0.125200,0.000000,-1.000000,0.000000 0.469800,0.496600,-0.211400,0.000000,1.000000,0.000000 -0.219200,0.454600,0.595200,0.000000,-0.987700,0.156700 0.469800,0.496600,-0.579400,0.000000,1.000000,0.000000 0.375600,0.369100,0.626600,-0.098850,0.000004,-0.995100 0.450700,0.290500,0.555600,0.989200,0.102200,0.105500 -0.375900,-0.453500,0.513000,0.078980,0.128300,0.988600 -0.455900,0.212500,-0.548100,0.999800,-0.018270,-0.007699 0.350600,0.170300,0.524800,-0.480400,-0.190900,-0.856000 0.315600,-0.155800,0.548200,-0.990600,0.125900,-0.053040 -0.438500,0.454500,0.485300,-0.026690,-0.994100,-0.105400 -0.452100,0.220300,0.579100,-0.992700,0.051500,0.109100 -0.389700,-0.335600,0.539800,-0.989400,0.035950,0.140900 0.328900,0.454500,-0.289700,0.000000,-1.000000,0.000000 -0.454900,0.118700,-0.563700,0.998500,0.051400,0.016190 -0.407200,0.157900,0.518300,0.031470,-0.120600,-0.992200 0.397900,0.447200,0.352300,0.945800,-0.324600,0.000015 0.367300,-0.327500,-0.496200,0.161200,-0.053330,0.985500 0.396300,0.431800,-0.274000,0.999100,0.043210,-0.000031 0.446300,0.415500,0.554700,-0.994000,-0.000028,-0.109200 0.400100,-0.162500,0.553800,-0.921400,0.226300,-0.316000 -0.317800,0.345700,-0.571500,-1.000000,0.000000,-0.003483 -0.367800,-0.005830,0.622600,-0.027140,-0.206700,0.978000 -0.065130,0.368400,-0.580400,0.296300,-0.857600,-0.420300 0.344300,0.454600,-0.015630,-0.169400,-0.985600,0.000000 0.332000,0.181600,0.571900,-0.987500,-0.127500,-0.092960 0.125300,0.496400,-0.672800,0.000000,0.998300,-0.058930 -0.415000,0.166100,-0.513400,0.018150,-0.120600,0.992500 0.328900,0.454500,0.313200,0.000000,-1.000000,0.000000 0.117500,0.454500,0.516800,0.000000,-1.000000,0.000000 0.397000,0.361300,-0.258400,1.000000,0.000000,0.000000 -0.391200,0.126700,-0.637500,-0.065850,-0.036890,-0.997100 -0.344800,-0.343100,0.497100,0.081100,-0.058180,-0.995000 -0.391200,0.228000,0.639900,-0.115200,0.086680,0.989500 0.443800,0.369100,-0.563400,0.990900,-0.000025,-0.134700 -0.390100,-0.368400,-0.554500,-0.863700,0.120900,-0.489300 0.407300,0.118500,-0.524700,0.038440,0.014220,-0.999200 -0.393400,-0.405700,0.524600,0.978400,-0.102900,0.179200 0.360300,0.452100,-0.625600,-0.003718,-0.846400,0.532500 -0.372700,-0.391200,0.577300,-0.463200,0.197700,0.863900 -0.424400,0.189800,0.629200,0.552000,-0.008274,-0.833800 -0.342300,-0.379300,0.500300,0.094170,-0.151000,-0.984000 -0.328500,-0.446000,-0.533100,-0.974800,0.167900,-0.147000 0.425000,0.052990,-0.617900,0.653200,-0.190000,-0.733000 0.326600,-0.077910,0.540800,-0.984300,0.131400,-0.117600 -0.313700,-0.171200,-0.555900,0.996900,0.064030,-0.046380 -0.454300,0.454600,0.516800,-0.167000,-0.985900,-0.005397 -0.410500,0.174700,-0.634700,-0.194700,-0.001937,-0.980900 -0.383600,-0.101300,0.506400,-0.038670,0.109900,-0.993200 0.330200,-0.366700,0.572000,0.357200,0.002993,-0.934000 0.338900,0.239000,0.518400,0.641000,0.305400,0.704200 -0.444300,0.424000,-0.586300,-0.961400,0.000019,-0.275300 -0.351900,-0.312100,0.577400,-0.169300,0.047210,0.984400 0.444000,0.408300,-0.517900,0.950700,0.000011,0.310200 -0.352600,-0.273000,-0.489200,0.045620,0.000968,0.999000 -0.338200,-0.059960,0.608800,0.350600,-0.168000,0.921300 0.354800,0.384800,0.148800,-1.000000,0.000000,0.000000 -0.125300,0.490500,0.693600,0.000048,0.868000,0.496500 0.321500,-0.405700,0.559900,0.932400,0.165400,-0.321300 0.344400,-0.209900,-0.584200,0.051270,-0.113500,-0.992200 0.424600,-0.038290,-0.548100,-0.979800,0.199200,-0.016720 -0.526600,0.468200,0.054810,-0.957500,0.288600,-0.000199 0.438600,0.449700,0.604100,0.654900,-0.580100,0.484400 -0.330500,-0.062050,-0.595300,0.858500,0.037830,-0.511400 0.450200,0.384800,0.532400,0.999900,0.014210,-0.008922 -0.339100,0.141400,-0.578900,-0.987900,0.128000,-0.087630 0.341600,0.071520,-0.544400,-0.840500,0.034370,0.540700 0.356300,-0.385700,-0.500100,-0.039890,-0.154600,0.987200 0.359600,0.258500,0.505000,0.111600,0.191900,0.975100 0.316600,-0.389900,0.555200,-0.982500,-0.121500,0.141200 0.384200,0.174100,0.514600,-0.092890,-0.128300,-0.987400 -0.451500,0.220500,0.533500,-0.958800,0.006302,-0.284000 -0.359500,0.257700,-0.635300,-0.005151,0.094060,-0.995600 -0.376600,0.110600,-0.521100,0.150400,0.025910,0.988300 0.423100,-0.540400,0.536800,0.920700,0.095110,-0.378500 -0.319900,-0.147600,-0.540200,-0.988600,-0.128000,-0.079440 -0.317500,-0.397600,-0.555000,0.985000,-0.100200,-0.140800 0.443700,0.039520,0.556100,-0.990400,0.136900,-0.019670 -0.453000,0.251100,-0.548600,0.993700,-0.105100,0.038610 -0.337300,0.047850,0.558600,-0.980500,-0.032940,0.194000 -0.401300,0.452200,0.247900,-0.619200,-0.785200,0.000000 -0.361300,0.270700,-0.423600,0.119200,-0.982100,0.145500 -0.354800,0.353500,0.477600,0.999800,0.021280,0.001114 -0.338900,0.063890,-0.595300,-0.998800,-0.012100,0.048160 -0.345000,0.298500,-0.631600,0.082260,0.059250,-0.994800 -0.339400,0.141500,-0.611700,-0.977400,0.117900,0.175600 -0.344300,-0.249000,-0.576000,-0.046660,-0.113400,-0.992500 -0.390700,0.056800,-0.628500,-0.079580,-0.139700,-0.987000 0.333100,0.157300,-0.587000,0.989800,0.124400,-0.069770 0.384100,-0.178800,0.498000,-0.281000,-0.022400,0.959500 0.387700,-0.304200,-0.510800,0.949800,0.020660,0.312000 -0.527200,0.457300,-0.028700,-0.848200,-0.529700,0.000000 -0.322200,-0.409100,0.515300,0.775700,-0.116500,-0.620200 -0.338700,0.204500,0.531300,-0.761600,0.207900,0.613800 -0.320300,0.345700,0.517600,-0.907600,-0.004969,0.419800 -0.339900,0.079590,0.555300,-0.954900,-0.032880,0.295100 0.397000,-0.145400,-0.512300,-0.738300,0.054930,-0.672200 -0.310700,-0.366300,0.525500,0.985400,-0.064340,-0.157700 -0.516700,0.454500,0.649900,-0.020180,-0.999800,0.000000 -0.436400,0.314500,0.596000,0.901600,-0.132700,-0.411700 -0.397000,0.439500,0.195700,-0.998200,-0.060390,0.000000 0.453100,0.237800,0.565500,-0.989700,-0.108100,-0.093590 0.133400,0.354200,0.539700,-0.045940,-0.195300,-0.979700 -0.452200,0.102100,-0.547300,0.980800,0.138700,-0.137300 -0.337900,0.337800,-0.627700,-0.161700,-0.000063,0.986800 -0.315800,0.439600,-0.616700,0.922000,-0.082110,-0.378400 0.354900,0.439600,0.211400,-0.997900,-0.064920,0.000000 -0.383600,0.087320,-0.633100,-0.042990,-0.138200,-0.989500 -0.345100,-0.164700,-0.499900,-0.187300,-0.124800,-0.974300 0.523400,0.454800,0.689000,0.260900,-0.965400,-0.000015 0.523400,0.454800,-0.148700,0.261000,-0.965300,0.000000 -0.438600,0.334600,0.511200,0.851200,0.000015,0.524800 -0.352400,0.332600,-0.492000,0.794100,0.000476,0.607800 0.320300,-0.402200,0.520600,-0.953800,-0.174600,-0.244600 -0.423400,-0.662900,0.560300,0.384700,0.143200,0.911900 0.388000,-0.288700,-0.539600,0.983100,0.052770,-0.175400 0.407100,0.079460,-0.523900,0.025540,-0.023380,-0.999400 -0.159200,0.488200,0.697200,0.000044,0.795400,0.606100 0.391200,0.110800,0.522000,0.085550,-0.018790,0.996200 0.454300,0.454600,-0.571500,0.163100,-0.986600,-0.001432 0.412800,-0.491700,0.564100,0.940600,0.265500,0.211700 -0.322900,-0.460500,0.556000,0.986900,-0.156600,-0.039940 0.429700,-0.009151,0.583800,-0.880600,0.284400,-0.379100 -0.348500,0.079690,-0.623600,-0.711900,0.098890,0.695300 0.016020,0.374300,-0.577200,-0.065210,-0.990500,-0.121100 -0.436900,0.338000,0.592300,0.946200,0.003706,-0.323500 0.310900,0.369800,-0.588000,0.948000,-0.001831,-0.318300 0.396900,0.331300,-0.290200,0.969800,-0.225500,0.092460 0.318700,-0.117300,-0.534200,-0.970400,0.142800,0.194900 0.343700,0.259700,0.630300,0.248200,-0.022550,-0.968400 -0.375800,0.366800,0.118100,0.000025,-0.992500,-0.122500 -0.431400,0.170800,-0.626300,-0.556600,0.006825,-0.830700 -0.353800,0.447200,0.289700,0.942500,-0.334300,0.000000 0.376100,0.000805,-0.519400,-0.086120,0.132200,0.987500 0.047000,0.392600,0.539500,0.000000,0.000000,-1.000000 -0.388800,-0.089590,-0.594100,0.359000,0.252400,0.898600 -0.415900,-0.112900,-0.537400,-0.978400,-0.204300,-0.031460 -0.427300,-0.031240,-0.572200,0.942500,0.237700,0.234800 -0.147800,0.338400,-0.547900,0.443900,-0.887400,0.124500 -0.314300,0.434400,0.624900,0.648200,0.000595,0.761500 0.340700,0.126100,0.611500,0.985500,0.041810,-0.164200 0.317200,0.345700,0.525300,-0.972300,-0.000010,-0.233700 -0.422600,-0.578400,-0.603000,-0.668900,0.351800,-0.654900 -0.443600,0.452200,-0.548100,0.643600,-0.765100,-0.021250 0.447800,0.408300,0.532500,-0.999700,0.000319,-0.024960 0.401000,0.452100,-0.180100,0.592100,-0.805900,0.000000 0.332000,0.384800,0.625700,0.337600,-0.000398,-0.941300 0.350800,0.047730,0.621700,0.477600,0.110100,-0.871700 -0.392300,-0.351200,-0.506100,-0.909400,0.003554,0.415900 0.389600,-0.242200,-0.524700,-0.992200,0.116400,-0.044900 -0.415600,-0.073860,0.521500,-0.898900,-0.131800,-0.417800 0.448200,0.102600,-0.563800,-0.990800,0.132400,0.027220 0.397900,0.447200,0.407100,0.945800,-0.324700,0.000006 -0.524800,0.472900,0.391500,-0.908900,0.417000,-0.000034 -0.344400,-0.391000,0.583200,-0.010210,0.163500,0.986500 -0.387300,0.076210,0.635200,-0.085410,-0.145400,0.985700 0.438500,0.454600,0.704800,0.000000,-0.976800,0.214200 -0.375800,0.454600,0.704800,0.000000,-0.976800,0.214200 0.441500,0.439500,-0.564100,-0.989500,-0.091980,0.111100 0.407400,0.181200,-0.636300,-0.199300,-0.012700,0.979900 0.391900,0.031940,0.622000,-0.121800,0.151300,-0.980900 0.336700,-0.484400,0.578200,0.905100,0.048940,-0.422300 -0.054780,0.454600,-0.532200,0.000000,-0.984500,0.175500 0.352100,-0.406300,-0.585400,0.075500,0.150900,-0.985700 -0.308400,-0.202500,0.563000,0.985000,0.047990,0.165600 -0.125200,0.457400,0.710100,0.000000,-0.675200,0.737600 0.315500,0.283000,-0.582700,0.908200,0.131200,-0.397500 0.429300,0.345600,-0.610800,0.806900,0.000000,-0.590700 -0.391000,0.408300,0.630900,-0.135500,0.000000,0.990800 -0.445600,0.087560,0.593300,-0.958900,-0.154900,0.237800 0.354100,0.174100,-0.523600,-0.367500,-0.152400,0.917400 -0.327200,-0.367100,0.501600,0.415500,-0.128500,-0.900500 0.337700,0.016310,0.571100,0.986000,-0.130200,0.104300 -0.258400,0.269800,0.571500,-0.006649,-0.998700,0.051160 -0.317800,0.369200,-0.571500,-1.000000,0.000000,-0.003483 -0.313900,-0.339000,-0.544700,-0.997300,0.063520,0.036170 -0.346700,0.190200,0.523600,0.435300,-0.173200,-0.883500 0.344200,0.009674,0.616200,-0.443100,-0.150900,0.883700 0.362800,0.030430,0.525200,0.457700,-0.083630,0.885200 -0.195700,0.447200,-0.540200,-0.000032,-0.229700,0.973300 -0.318200,0.405700,0.627200,0.490400,-0.000016,0.871500 -0.334300,0.158300,-0.609600,0.985200,-0.090570,-0.145500 -0.477600,0.496600,0.156600,-0.006633,1.000000,0.000000 -0.360200,-0.233800,0.494700,-0.004281,0.053750,-0.998500 -0.148900,0.339900,-0.581000,0.217100,-0.401500,-0.889700 -0.313300,-0.193900,-0.531700,0.995100,0.055180,0.082500 0.325200,-0.038530,-0.571800,-0.991500,0.115600,0.059230 -0.360300,-0.413300,0.504300,0.041100,-0.152900,-0.987400 0.347600,-0.021770,-0.526700,0.591100,-0.169100,-0.788600 0.335400,0.032130,-0.551700,-0.953600,0.050170,0.296900 -0.350700,0.384800,-0.500800,0.064760,0.006856,-0.997900 0.323700,0.283400,0.624800,-0.567800,-0.049010,0.821700 0.328500,-0.464200,0.536900,-0.975000,-0.184100,-0.124400 -0.346300,-0.561200,0.601100,0.914000,-0.143500,0.379400 0.398900,-0.194600,0.518600,-0.989900,0.115700,0.081770 0.391900,0.008225,0.515000,-0.076470,0.121000,-0.989700 -0.319500,-0.108300,0.571500,-0.994300,-0.104200,-0.021030 0.369400,0.047970,0.520400,-0.242300,0.033750,-0.969600 -0.310800,0.423900,-0.594500,0.918000,0.000022,-0.396600 -0.327000,-0.132300,-0.581300,-0.806000,-0.033020,0.591000 -0.448200,0.337800,-0.512600,-0.932700,0.000000,0.360700 -0.497500,0.494900,0.415000,-0.226200,0.974100,0.000000 -0.394000,-0.131000,0.582200,-0.711400,-0.253800,0.655300 -0.428600,0.337800,0.607500,0.795800,0.013450,-0.605400 -0.316400,-0.383300,0.524000,-0.936900,0.156600,0.312600 -0.330500,0.196500,-0.610100,0.973600,-0.128400,-0.188700 0.355900,0.400500,0.501200,-0.177500,0.018370,0.983900 0.309700,-0.257300,0.554700,-0.981300,0.030150,0.190300 -0.411600,-0.485200,-0.563000,-0.936800,0.257500,-0.236600 0.449400,0.118300,-0.579800,-0.992500,0.088420,0.084070 0.344300,-0.207700,0.579900,0.036550,-0.122400,0.991800 0.314000,-0.147000,-0.539700,-0.987200,0.130600,0.091090 -0.337600,0.181500,-0.546900,-0.952500,0.164100,-0.256400 0.318300,0.251100,-0.595100,0.977900,0.208800,-0.002830 -0.368000,0.362700,0.148800,0.027310,-0.985000,-0.170300 -0.328100,-0.101800,0.522900,0.792900,0.178300,-0.582600 -0.393300,-0.249100,-0.504700,-0.935900,-0.079010,0.343200 -0.349700,-0.081270,-0.509000,0.389600,0.155800,0.907700 -0.422400,0.353500,0.617700,-0.553800,-0.010710,0.832600 -0.439200,-0.624800,0.595000,0.961600,-0.222600,-0.160700 -0.333900,0.001509,0.555600,-0.979800,-0.130600,0.151700 0.327200,-0.015260,-0.587400,-0.994000,0.107700,-0.020040 -0.336700,-0.272900,-0.571500,-0.022740,0.067310,0.997500 -0.410300,0.068160,-0.626700,-0.265000,-0.159900,-0.950900 -0.449300,0.110300,0.563800,0.992800,0.115800,-0.029650 -0.374800,-0.218200,-0.494900,0.256100,-0.061880,-0.964700 -0.351700,-0.209800,0.583700,-0.118300,-0.130700,0.984300 0.519300,0.481700,-0.589800,0.807200,0.590100,-0.010850 -0.343500,-0.460600,-0.585000,-0.398100,-0.123900,0.908900 -0.337000,0.330000,0.502500,0.219200,0.000000,-0.975700 0.343500,0.118700,-0.548500,0.904000,-0.015530,-0.427200 0.354600,-0.563300,0.541200,-0.788200,-0.293700,-0.540800 -0.516000,0.485300,-0.485400,-0.686300,0.727300,0.000000 -0.356800,-0.616200,0.595200,0.972500,-0.232200,-0.020050 -0.388600,-0.296200,-0.541600,0.971800,-0.034180,0.233300 0.384300,-0.257200,0.493700,0.516000,-0.002263,-0.856600 -0.450900,0.157500,-0.530200,0.834900,0.053600,-0.547800 0.000009,0.484700,-0.701100,0.000170,0.698200,-0.715900 -0.398400,-0.085300,-0.505100,-0.167600,0.080690,0.982500 -0.522400,0.477200,0.540200,-0.845600,0.533800,0.000080 0.361100,0.341100,-0.243800,-0.147100,-0.953600,0.262600 -0.101800,0.490500,-0.693700,-0.000035,0.864500,-0.502600 0.448200,0.439500,0.512600,0.932300,-0.112500,-0.343800 -0.519300,0.481700,0.446300,-0.780700,0.624800,0.000014 0.422600,-0.592800,0.609800,0.578500,0.332300,0.744900 -0.343400,-0.549900,0.552700,0.941900,-0.259600,-0.213300 -0.180100,0.454600,0.595200,0.000000,-0.987700,0.156700 -0.156600,0.454600,0.595200,0.000000,-0.987700,0.156700 -0.519300,0.481700,-0.681200,-0.768400,0.640000,-0.000016 -0.336600,0.454500,-0.258300,-0.004194,-1.000000,0.000000 -0.330300,-0.052370,-0.562700,-0.988700,-0.125100,-0.082500 0.450500,0.196900,-0.571900,-0.997100,-0.003299,0.075400 -0.349200,-0.022960,0.522100,0.510100,0.158500,-0.845400 -0.389900,-0.474400,0.586600,-0.634700,0.244700,0.733000 -0.426100,0.408300,0.614600,-0.722800,-0.002816,0.691000 -0.388400,-0.226500,0.549300,0.952700,0.125300,-0.276800 0.368600,-0.007479,0.515200,-0.124500,0.124800,-0.984300 -0.343800,-0.400300,-0.580700,0.044970,0.150400,-0.987600 -0.431300,0.209900,-0.626100,-0.554800,0.012620,-0.831900 -0.349800,-0.545800,0.538100,0.635800,-0.282000,-0.718500 0.391600,0.244100,-0.636700,-0.111100,-0.092670,0.989500 -0.423300,-0.610400,-0.543900,0.229400,0.155100,-0.960900 0.439700,0.385400,-0.592400,0.968600,0.007413,-0.248400 -0.428100,0.013430,-0.599500,0.761200,0.238100,0.603200 0.400200,0.454600,0.635200,0.086450,-0.993900,0.067820 -0.392200,0.188900,0.517600,-0.073670,0.122200,0.989800 -0.430800,0.071630,-0.522100,0.327300,0.007582,-0.944900 -0.358400,-0.013460,-0.520600,-0.423800,-0.184800,-0.886700 0.314300,-0.210400,0.517400,-0.960900,0.070390,-0.267700 -0.399300,0.158300,-0.517800,-0.089000,0.133000,-0.987100 -0.309300,-0.257500,-0.532700,0.996000,0.065260,0.061000 -0.368000,0.289800,-0.380400,0.006072,-0.900400,0.434900 0.344500,0.044570,-0.538200,-0.755900,0.035740,0.653700 0.346600,0.306500,0.496900,-0.572500,0.000000,-0.819900 0.391800,-0.476800,0.514200,-0.276300,0.133800,0.951700 -0.312700,-0.311800,-0.559300,0.955700,-0.046770,-0.290600 0.299200,0.416100,0.583600,-0.362300,0.000000,0.932100 0.312900,0.268400,-0.541400,-0.691500,-0.606300,0.392700 -0.415000,0.032490,0.523200,0.109900,0.017240,0.993800 0.298000,0.298700,-0.583700,-0.416500,-0.003808,-0.909100 -0.367700,-0.108000,-0.505300,-0.073330,-0.129000,-0.988900 0.379900,-0.275600,0.560200,0.729500,-0.043070,0.682600 -0.325100,-0.208100,-0.504700,-0.700200,-0.100000,-0.706900 -0.524700,0.473100,0.274000,-0.908400,0.418100,-0.000173 -0.398200,0.447200,0.631400,-0.147700,-0.405900,0.901900 -0.016040,0.374200,-0.571500,0.068170,-0.997500,-0.019410 0.447100,0.212500,-0.606000,0.929800,0.007127,-0.368000 -0.348000,-0.569200,0.557300,0.930000,-0.276800,-0.241800 -0.441400,0.055510,0.548100,0.985200,0.125500,0.117000 0.330600,-0.499600,-0.563800,-0.976300,-0.212600,0.041400 0.403600,-0.084620,0.589300,0.611100,-0.268700,0.744500 0.031330,0.392700,0.581100,-0.014230,0.049560,0.998700 0.375900,-0.553700,0.607100,0.051050,-0.196700,-0.979100 -0.337100,-0.504900,-0.544500,0.966700,-0.234200,0.103000 -0.396800,0.355800,0.204000,-0.971200,-0.224500,-0.079440 0.321200,-0.103000,-0.583800,0.927900,-0.044550,0.370200 0.432400,0.377000,-0.605800,0.834200,0.010880,-0.551400 -0.442900,0.416100,-0.502900,-0.855200,-0.000017,0.518200 0.375000,0.133400,-0.526800,0.182100,0.101200,-0.978100 0.343700,0.290500,-0.504000,0.142500,0.058170,-0.988100 0.417800,-0.557400,-0.537500,0.604700,-0.016140,0.796300 -0.400400,0.431100,-0.625800,-0.179000,0.000148,-0.983900 0.431400,0.431800,0.497800,-0.429400,0.000359,0.903100 0.240100,0.487800,0.697700,0.000034,0.793700,0.608300 0.317300,0.267400,-0.571300,0.999500,0.020030,-0.024060 -0.391600,-0.198000,0.560000,-0.888300,-0.164600,0.428700 -0.352100,-0.225700,-0.578200,-0.099830,-0.116500,-0.988200 0.337600,0.063760,0.571600,-0.994900,0.029520,-0.096020 -0.438000,0.204700,0.616400,0.776600,-0.024830,-0.629500 0.359900,0.306500,-0.502500,0.026730,-0.000001,-0.999600 -0.403300,-0.637200,-0.626400,0.128400,0.120600,0.984400 -0.317300,0.377000,0.531900,-0.997300,0.000018,0.073710 0.370000,-0.633700,0.611900,0.849000,0.192700,-0.492100 0.374300,-0.189300,-0.500000,-0.136600,-0.036180,-0.990000 -0.403500,-0.453400,0.533300,-0.985000,0.113400,-0.129800 0.324600,0.385500,-0.506500,-0.400400,0.011050,0.916300 -0.071650,0.366700,0.547900,0.203300,-0.976200,-0.075550 -0.429300,-0.579100,0.586700,-0.924400,0.312900,0.218200 0.321400,-0.433100,-0.546300,0.981900,0.162700,-0.097070 -0.497300,0.495000,-0.469800,-0.226000,0.974100,0.000062 0.497300,0.495000,-0.550700,0.225700,0.974200,0.000052 0.313800,0.330700,0.599600,0.986600,-0.000010,-0.163300 0.375800,0.366800,0.118100,0.000019,-0.992500,-0.122500 -0.375900,-0.470800,-0.509300,0.019000,-0.214300,0.976600 0.376000,0.134300,-0.640300,-0.040210,0.030090,0.998700 -0.442900,0.377000,-0.502900,-0.855300,0.000000,0.518200 -0.360100,-0.469500,-0.591100,-0.021610,0.187500,-0.982000 -0.380200,-0.042380,0.610900,0.149700,0.229000,-0.961800 -0.450800,0.220500,-0.518600,-0.867400,-0.035330,0.496400 -0.330000,0.408300,0.504300,0.278600,0.000000,-0.960400 -0.360700,-0.351100,0.574300,0.287100,-0.039540,-0.957100 0.413600,-0.506300,-0.539300,0.953100,0.177700,0.245100 -0.330800,-0.359000,-0.575000,0.247700,0.021600,-0.968600 0.355800,0.126200,-0.534600,0.556600,0.056070,-0.828900 -0.317500,-0.343200,0.505800,0.672400,-0.065510,-0.737300 -0.375600,0.204400,-0.514100,-0.104000,0.128400,-0.986300 -0.203600,0.469700,-0.710600,0.000000,0.318500,-0.947900 -0.433200,0.480100,0.704700,-0.006930,0.616500,0.787300 0.501600,0.492600,0.688300,0.154100,0.945100,0.288100 -0.376800,-0.117500,-0.593400,-0.209100,-0.235600,-0.949100 0.430400,0.416100,0.494300,0.259300,0.009028,-0.965800 -0.336600,0.454500,0.180100,-0.004194,-1.000000,0.000000 0.436000,0.174000,-0.623700,0.735900,-0.006651,-0.677100 -0.430500,0.019820,0.595200,0.877000,0.249500,-0.410600 0.349500,-0.216400,0.492800,-0.090760,0.065230,-0.993700 -0.407500,0.400500,-0.621300,0.311000,0.000008,0.950400 0.375900,-0.038250,-0.612400,-0.113700,0.216200,0.969700 0.321200,0.408900,-0.508300,-0.755600,-0.000208,0.655100 -0.311900,-0.256900,0.514000,-0.926400,-0.076480,0.368700 0.397000,-0.053230,0.603600,0.330900,-0.241300,0.912300 0.524500,0.472800,-0.354900,0.908800,0.417300,0.000059 0.361100,0.334100,-0.267500,-0.118700,-0.957900,0.261300 -0.405900,-0.139600,0.547900,-0.973100,-0.207800,0.099270 -0.320500,-0.392900,0.572000,-0.852900,0.034800,-0.520900 -0.399500,-0.459600,-0.573100,-0.782700,0.219400,-0.582400 0.337700,0.071810,-0.560900,0.982600,-0.035080,-0.182200 -0.362600,-0.624600,-0.595100,0.972200,-0.234000,0.010490 0.338900,0.187900,0.532500,-0.888300,-0.169800,-0.426700 0.321200,0.454600,0.595100,0.144800,-0.988000,0.052920 -0.344900,0.238500,0.516300,-0.377800,0.343500,0.859800 -0.361600,0.339000,0.250400,0.237400,-0.940700,-0.242200 0.368000,0.496400,0.672800,0.000000,0.998300,0.058890 -0.310800,0.361300,-0.594500,0.918000,0.000000,-0.396600 -0.389100,-0.218600,0.503800,-0.779000,-0.062770,-0.623900 0.361300,0.298700,0.502500,-0.084820,0.003761,0.996400 -0.039530,0.372700,0.577500,0.106800,-0.978700,0.175300 0.406100,0.345600,0.624100,0.255300,-0.014140,0.966800 -0.427900,0.436900,-0.608800,0.709900,-0.061450,0.701600 -0.360800,0.025520,0.628900,0.063260,-0.144600,0.987500 -0.354100,0.181400,-0.636900,0.261800,-0.024750,-0.964800 0.357100,0.233000,0.508900,-0.224600,-0.252900,-0.941100 -0.450400,0.165500,0.594100,-0.982900,0.006300,0.184300 -0.337500,0.095110,-0.602600,0.993900,0.010520,-0.109600 -0.435800,-0.599800,-0.588400,0.911900,-0.311200,0.267500 0.195800,0.454600,-0.595200,0.000000,-0.987100,-0.160200 0.414300,0.345600,-0.496100,0.176700,-0.014180,0.984200 0.395400,-0.438200,-0.569000,0.870400,0.196500,-0.451400 -0.323500,-0.414700,-0.532000,-0.977500,0.160700,-0.136900 -0.332700,0.369100,-0.628700,0.327900,0.000014,-0.944700 0.447700,0.142100,-0.595300,-0.979700,-0.008668,0.200300 -0.359800,-0.453500,0.513300,-0.071040,0.157900,0.984900 -0.337200,0.267400,-0.628500,-0.335800,-0.012380,0.941900 0.093980,0.454600,-0.595200,0.000000,-0.987100,-0.160200 0.331100,-0.342900,-0.501600,0.255200,0.063710,-0.964800 0.404400,-0.596800,-0.619400,-0.268500,-0.320300,0.908500 0.427300,0.375600,-0.498900,0.263200,-0.003094,0.964700 0.346100,-0.294500,0.493000,0.074410,0.052820,0.995800 -0.334200,0.110600,0.595200,0.999600,0.010310,-0.027880 -0.399200,0.258600,0.505200,-0.004042,0.198400,0.980100 -0.450300,0.353500,-0.524600,-0.998300,0.000000,0.058000 0.447000,0.392600,0.548200,-0.996100,0.000000,-0.088670 -0.440500,0.104600,-0.611300,0.747300,0.182200,0.639100 0.450200,0.322200,0.540100,0.998800,0.005016,0.048910 -0.312100,0.439500,0.587800,-0.915500,-0.087830,0.392700 -0.351000,0.126700,-0.633600,0.392200,-0.061320,-0.917800 -0.336200,0.439600,0.505300,-0.324100,-0.075800,0.943000 -0.355800,0.378600,0.062670,0.987100,-0.155900,-0.035560 0.430800,-0.585800,0.548800,-0.893700,-0.056500,0.445100 0.317400,0.298700,-0.518100,-0.953500,-0.000897,0.301500 -0.389700,-0.319900,0.517300,-0.988000,0.019900,-0.153100 -0.316000,0.252300,0.579600,0.974500,-0.218200,-0.052090 -0.383600,0.340900,-0.243700,-0.017600,-0.959900,0.279800 0.327600,-0.155700,0.580400,0.533600,0.091930,-0.840700 0.274000,0.369100,-0.540200,-0.003564,-0.003549,1.000000 0.203600,0.496300,0.266200,0.045990,0.998200,-0.038920 0.396500,0.377000,-0.414900,0.999800,0.007038,0.017810 -0.336700,-0.319900,0.578900,0.004669,0.029080,0.999600 0.125300,0.496100,0.156600,0.049580,0.998100,-0.035420 -0.321100,-0.080500,0.569700,0.991300,0.122600,-0.048230 -0.455300,0.142100,-0.548100,0.998500,0.013410,-0.053530 -0.461900,0.495600,-0.203500,-0.000064,1.000000,0.000000 0.477600,0.496000,0.133100,-0.036260,0.999300,0.000000 -0.355700,0.369200,0.227000,0.998900,0.042650,-0.021330 -0.355000,0.384800,-0.368000,0.999900,0.014190,-0.007068 0.305400,0.495600,0.375800,-0.000107,1.000000,0.000085 0.211400,0.330000,-0.539500,-0.017670,0.014140,0.999700 0.386300,0.484400,0.701600,-0.000122,0.699100,0.715000 0.497000,0.495000,-0.261000,0.225500,0.974200,0.000030 0.462000,0.454500,0.618500,-0.000469,-1.000000,-0.000469 -0.524600,0.473200,0.219200,-0.908000,0.419000,-0.000142 0.242700,0.306500,-0.539800,-0.042570,0.042530,0.998200 0.305300,0.454500,-0.508900,-0.067600,-0.997200,0.033100 0.274100,0.454500,0.508900,0.000000,-1.000000,0.000000 0.047000,0.496600,-0.626300,0.000000,1.000000,0.000000 -0.524400,0.473700,-0.524600,-0.908400,0.418000,0.000000 0.054830,0.454500,0.446300,0.000000,-1.000000,0.000000 0.396000,0.337800,-0.438400,1.000000,0.000000,0.000000 0.078310,0.431800,0.580600,0.000000,0.001221,1.000000 -0.227000,0.353500,-0.581600,0.000000,0.000000,-1.000000 -0.305300,0.454500,-0.328800,0.000000,-1.000000,0.000000 -0.281800,0.454500,0.305400,0.000000,-1.000000,0.000000 0.242700,0.361300,0.539500,0.000000,0.000000,-1.000000 0.446300,0.496600,-0.508900,0.000000,1.000000,0.000000 -0.359800,0.306500,0.502500,-0.026670,0.000001,0.999600 0.156600,0.454500,0.368000,0.000000,-1.000000,0.000000 -0.438400,0.496600,0.391500,0.000000,1.000000,0.000000 -0.446300,0.469700,-0.710600,-0.000041,0.316000,-0.948800 -0.023470,0.384800,-0.581600,0.000178,-0.004120,-1.000000 -0.062610,0.454500,-0.399300,0.000000,-1.000000,0.000000 0.195800,0.496600,-0.219200,0.000000,1.000000,0.000000 0.274100,0.454500,-0.140900,0.000000,-1.000000,0.000000 -0.015630,0.454500,0.234900,0.000000,-1.000000,0.000000 -0.438400,0.496600,0.266200,0.000000,1.000000,0.000000 -0.344500,0.496600,0.516800,0.000000,1.000000,0.000000 -0.062610,0.454500,-0.250500,0.000000,-1.000000,0.000000 -0.352300,0.495600,-0.321000,0.000000,1.000000,0.000000 -0.383600,0.269800,-0.430600,-0.017160,-0.998700,0.048910 0.298000,0.431800,-0.583700,-0.420800,0.000285,-0.907100 -0.281800,0.454500,-0.508900,0.000000,-1.000000,0.000000 -0.527200,0.457300,0.417600,-0.847600,-0.530600,-0.000003 0.266200,0.314300,-0.581600,0.000000,0.000000,-1.000000 -0.397000,0.431800,-0.422800,-1.000000,0.000320,0.000000 0.328900,0.454500,-0.180100,0.000000,-1.000000,0.000000 0.523600,0.473800,0.201000,0.892100,0.451900,0.000101 0.328900,0.454500,-0.438400,0.000000,-1.000000,0.000000 -0.211400,0.454500,-0.321000,0.000000,-1.000000,0.000000 -0.266200,0.408300,-0.581600,0.000000,0.000000,-1.000000 -0.031300,0.416100,0.580600,0.000000,0.000000,1.000000 -0.493200,0.454500,0.368000,0.000000,-1.000000,0.000000 0.430600,0.496600,-0.579400,0.000000,1.000000,0.000000 -0.313200,0.496600,0.430600,0.000000,1.000000,0.000000 0.354800,0.314300,0.375800,-1.000000,-0.000172,-0.000108 -0.461900,0.454800,-0.704900,0.000000,-0.974500,-0.224400 0.401300,0.452200,0.430600,0.618000,-0.786100,0.000000 0.266200,0.496600,-0.328800,0.000000,1.000000,0.000000 -0.344400,0.416100,-0.628100,-0.058130,0.001819,0.998300 0.336700,0.495600,0.344500,0.000000,1.000000,0.000000 0.101800,0.496600,-0.461900,0.000000,1.000000,0.000000 -0.354800,0.314300,0.368000,0.999900,-0.012950,-0.001380 0.368000,0.454500,-0.587200,0.000000,-1.000000,0.000000 0.289700,0.454500,-0.493200,0.000000,-1.000000,0.000000 0.354800,0.416100,-0.172200,-1.000000,0.000000,0.000000 -0.172200,0.369100,-0.581600,0.000000,0.000000,-1.000000 -0.422800,0.495600,-0.078280,0.000000,1.000000,0.000000 0.266200,0.454500,-0.368000,0.000000,-1.000000,0.000000 0.180100,0.454500,-0.305300,0.000000,-1.000000,0.000000 -0.422800,0.495600,-0.219200,0.000000,1.000000,0.000000 0.219200,0.496600,-0.328800,0.000000,1.000000,0.000000 -0.117400,0.495600,-0.078280,0.000000,1.000000,0.000000 -0.187900,0.454500,-0.086100,0.000000,-1.000000,0.000000 -0.117400,0.496600,0.344500,0.000000,1.000000,0.000000 0.211400,0.454500,-0.101800,0.000000,-1.000000,0.000000 -0.148700,0.496600,0.407200,0.000000,1.000000,0.000000 -0.148700,0.454500,-0.516700,0.000000,-1.000000,0.000000 0.101800,0.454500,-0.469700,0.000000,-1.000000,0.000000 0.148800,0.454500,-0.015630,0.000000,-1.000000,0.000000 0.141000,0.454500,-0.414900,0.000000,-1.000000,0.000000 0.227100,0.322200,-0.581600,0.000000,0.000000,-1.000000 0.242700,0.306500,0.539500,0.000000,0.000000,-1.000000 0.501100,0.454500,-0.219200,0.000000,-1.000000,0.000000 0.353800,0.447200,-0.164400,-0.942900,-0.333000,0.000000 0.321000,0.454500,0.164400,0.000000,-1.000000,0.000000 0.141000,0.369100,0.539500,0.000000,0.000000,-1.000000 0.172300,0.454500,0.054830,0.000000,-1.000000,0.000000 -0.397900,0.447200,-0.148700,-0.946200,-0.323500,0.000000 0.368000,0.495600,0.234900,0.000000,1.000000,0.000000 0.313200,0.495600,0.148800,0.000000,1.000000,0.000000 0.156600,0.496600,0.336700,0.000000,1.000000,0.000000 0.219200,0.495600,0.227100,0.000000,1.000000,0.000000 -0.148700,0.454500,-0.383600,0.000000,-1.000000,0.000000 0.156600,0.454500,-0.673300,0.000000,-1.000000,0.000000 -0.469700,0.454500,0.227100,0.000000,-1.000000,0.000000 -0.242700,0.495600,-0.242700,0.000000,1.000000,0.000000 0.422800,0.454500,0.234900,0.000000,-1.000000,0.000000 -0.234900,0.454500,0.657700,0.000000,-1.000000,0.000000 0.015680,0.454500,-0.156600,0.000000,-1.000000,0.000000 0.164400,0.454500,-0.352300,0.000000,-1.000000,0.000000 -0.219200,0.496600,0.141000,0.000000,1.000000,0.000000 -0.397000,0.400400,-0.211400,-1.000000,0.000000,0.000000 0.117500,0.454500,0.297500,0.000000,-1.000000,0.000000 0.360200,0.496600,-0.164400,0.000000,1.000000,0.000000 -0.519500,0.481500,0.180100,-0.779900,0.625900,0.000132 0.141000,0.454500,-0.375800,0.000000,-1.000000,0.000000 0.117500,0.496600,-0.477600,0.000000,1.000000,0.000000 -0.125200,0.496600,-0.242700,0.000000,1.000000,0.000000 0.148800,0.454500,0.415000,0.000000,-1.000000,0.000000 0.354800,0.330000,0.438500,-1.000000,0.000000,0.000000 0.187900,0.496600,-0.618500,0.000000,1.000000,0.000000 0.438500,0.496600,0.626400,0.000000,1.000000,0.000000 0.321000,0.496600,0.595100,0.000000,1.000000,0.000000 0.336700,0.454500,0.250600,0.003810,-1.000000,0.000000 0.195800,0.454500,-0.493200,0.000000,-1.000000,0.000000 0.344500,0.454500,0.595100,0.000000,-1.000000,0.000000 -0.430600,0.454500,0.665500,0.000000,-1.000000,0.000000 -0.367700,0.384800,-0.629900,-0.081910,0.000000,-0.996600 0.336700,0.496600,-0.305300,0.000000,1.000000,0.000000 0.141000,0.496600,-0.540200,0.000000,1.000000,0.000000 -0.344500,0.496600,-0.587200,0.000000,1.000000,0.000000 -0.355000,0.423900,0.375800,0.999900,-0.010660,-0.000033 -0.430600,0.454500,0.438500,0.000000,-1.000000,0.000000 0.015680,0.454500,-0.602800,0.000000,-1.000000,0.003810 -0.156600,0.496600,0.657700,0.000000,1.000000,0.000258 0.078320,0.496600,-0.336600,0.000000,1.000000,0.000000 -0.007806,0.454500,0.266200,0.000000,-1.000000,0.000000 0.023510,0.454500,-0.274000,0.000000,-1.000000,0.000000 0.054830,0.496600,0.657700,0.000000,1.000000,0.000258 -0.195700,0.496600,0.595100,0.000000,1.000000,0.000000 0.297500,0.496600,0.516800,0.000000,1.000000,0.000000 0.313200,0.495600,0.203600,0.000000,1.000000,0.000000 -0.250500,0.454500,0.477600,0.000000,-1.000000,0.000000 0.321000,0.496600,-0.039120,0.000000,1.000000,0.000000 0.266200,0.454500,-0.681100,0.000000,-1.000000,0.000000 0.469800,0.495600,0.415000,-0.021260,0.999800,0.000000 0.297500,0.454500,0.477600,0.000000,-1.000000,0.000000 -0.313200,0.496600,0.156600,0.000000,1.000000,0.000000 -0.397000,0.416100,0.344500,-1.000000,0.000000,0.000000 0.375800,0.496600,-0.493200,0.000000,1.000000,0.000000 -0.281800,0.454500,-0.665500,0.000000,-1.000000,0.000000 0.015680,0.454500,0.673400,0.000000,-1.000000,0.000000 0.281900,0.454500,0.352300,0.000000,-1.000000,0.000000 0.497600,0.495300,0.545500,0.225200,0.974300,0.000000 -0.399300,0.454500,0.524600,0.000171,-1.000000,-0.000341 -0.054780,0.496600,0.454100,0.000000,1.000000,0.000000 -0.070440,0.496600,0.618500,0.000000,1.000000,0.000000 0.281900,0.495600,0.242700,0.000000,1.000000,0.000000 0.281900,0.454500,0.610700,0.000000,-1.000000,0.000000 0.141000,0.496600,0.516800,0.000000,1.000000,0.000000 -0.086100,0.496600,0.360200,0.000000,1.000000,0.000000 -0.297500,0.496600,0.563700,0.000000,1.000000,0.000000 0.156600,0.496600,-0.258300,0.000000,1.000000,0.000000 -0.274000,0.454500,-0.344500,0.000000,-1.000000,0.000000 -0.336600,0.495600,-0.133100,0.000000,1.000000,0.000000 0.172300,0.496600,0.626400,0.000000,1.000000,0.000000 -0.352300,0.496600,0.391500,0.000000,1.000000,0.000000 0.133100,0.384800,-0.539500,0.000000,0.000000,1.000000 -0.414900,0.496600,-0.657600,0.000000,1.000000,-0.000322 -0.407100,0.496600,-0.642000,0.000000,1.000000,0.000000 0.258400,0.454500,0.336700,0.000000,-1.000000,0.000000 0.023510,0.496600,0.336700,0.000000,1.000000,0.000000 0.469800,0.457400,0.710100,0.000000,-0.675200,0.737600 -0.289700,0.454500,-0.352300,0.000000,-1.000000,0.000000 -0.031300,0.496600,0.313200,0.000000,1.000000,0.000000 -0.441800,0.254400,0.513000,-0.777800,-0.055270,-0.626100 -0.104400,0.452100,-0.588100,0.000000,-0.841200,-0.540700 0.310400,-0.319600,0.540400,-0.998000,-0.057240,-0.025320 0.325300,0.268800,-0.511400,-0.739500,-0.317900,0.593400 0.437400,0.452100,-0.535000,-0.553200,-0.833100,0.005687 0.342800,0.204600,0.630000,0.554700,0.101800,-0.825800 0.397000,0.439500,0.086120,0.998100,-0.060820,0.000000 0.422800,0.496300,-0.007793,0.000000,0.999100,0.042530 0.047000,0.496600,-0.023470,0.000000,1.000000,0.000000 -0.434400,-0.654900,0.608100,-0.847600,-0.313300,0.428200 -0.211400,0.454500,-0.093930,0.000000,-1.000000,0.000000 -0.093930,0.454500,0.148800,0.000000,-1.000000,0.000000 0.393000,-0.537800,-0.604100,-0.330000,-0.241500,0.912600 -0.443300,-0.655500,-0.571900,-0.947000,-0.310800,0.081730 -0.328300,-0.066090,0.532900,0.854700,0.111500,-0.507100 0.418600,-0.524300,-0.548600,0.976700,0.199900,0.078410 -0.355100,-0.537800,-0.534100,-0.655000,0.312000,-0.688200 -0.375500,0.040390,-0.521700,-0.149600,-0.037880,-0.988000 0.047000,0.454500,0.070490,0.000000,-1.000000,0.000000 0.047000,0.454500,-0.031290,0.000000,-1.000000,0.000000 0.344300,0.454600,0.054830,-0.169400,-0.985600,0.000000 -0.203500,0.454500,-0.054780,0.000000,-1.000000,0.000000 -0.172200,0.454500,0.070490,0.000000,-1.000000,0.000000 -0.054780,0.496600,-0.180100,0.000000,1.000000,0.000000 -0.062610,0.454500,0.164400,0.000000,-1.000000,0.000000 0.368000,0.496600,-0.070440,0.000000,1.000000,0.000000 0.062660,0.496600,-0.313200,0.000000,1.000000,0.000000 0.062660,0.496600,-0.046950,0.000000,1.000000,0.000000 -0.070450,0.495600,-0.039130,0.000000,1.000000,0.000000 -0.078270,0.496600,-0.579400,0.000000,1.000000,0.000000 0.062660,0.454500,0.101800,0.000000,-1.000000,0.000000 -0.101800,0.454500,0.062660,0.000000,-1.000000,0.000000 0.047000,0.496600,-0.117400,0.000000,1.000000,0.000000 -0.109600,0.469700,0.710600,-0.000018,0.303300,0.952900 0.023510,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.031300,0.496600,0.133100,0.000000,1.000000,0.000000 0.023510,0.496600,-0.461900,0.000000,1.000000,0.000000 0.266200,0.454500,-0.039120,0.000000,-1.000000,0.000000 0.015680,0.454500,0.258400,0.000000,-1.000000,0.000000 -0.062610,0.496600,-0.407100,0.000000,1.000000,0.000000 -0.454100,0.496600,0.047000,0.000000,1.000000,0.000000 0.039170,0.496600,-0.610700,0.000000,1.000000,0.000000 -0.054780,0.454500,0.485400,0.000000,-1.000000,0.000000 0.031340,0.454500,0.219200,0.000000,-1.000000,0.000000 -0.407100,0.496600,0.015680,0.000000,1.000000,0.000000 0.070490,0.454500,0.047000,0.000000,-1.000000,0.000000 -0.344500,0.496600,0.047000,0.000000,1.000000,0.000000 -0.133100,0.495600,-0.093940,0.000000,1.000000,0.000000 0.078320,0.454500,0.696800,0.000000,-1.000000,0.005074 0.078320,0.454500,0.477600,0.000000,-1.000000,0.000000 0.086150,0.454500,-0.297500,0.000000,-1.000000,0.000000 -0.070440,0.496600,0.344500,0.000000,1.000000,0.000000 0.219200,0.495600,0.062650,0.000000,1.000000,0.000000 0.352300,0.496600,-0.078270,0.000000,1.000000,0.000000 0.023510,0.496600,0.642000,0.000000,1.000000,0.000000 0.023510,0.496600,-0.595000,0.000000,1.000000,0.000000 -0.007808,0.496600,0.368000,0.000000,1.000000,0.000000 0.416900,-0.099360,0.554900,0.961300,-0.229100,0.153100 0.331600,0.180600,-0.619700,0.930800,0.141300,0.337200 0.423100,0.071680,0.520400,-0.134600,-0.009666,0.990800 -0.086100,0.454500,0.007854,0.000000,-1.000000,0.000000 0.508900,0.454500,-0.007805,0.000000,-1.000000,0.000000 0.389800,-0.335500,0.501700,0.801300,0.005013,-0.598300 -0.023460,0.454500,-0.313200,0.000000,-1.000000,0.000000 -0.007806,0.454500,-0.642000,0.000000,-1.000000,0.000000 0.341000,0.095210,0.571200,0.993900,-0.033510,0.104600 0.078320,0.496600,0.485400,0.000000,1.000000,0.000000 0.101800,0.454500,-0.414900,0.000000,-1.000000,0.000000 -0.397000,0.423900,-0.062630,-1.000000,0.000000,0.000000 0.344600,-0.186900,0.580400,0.001532,0.113000,-0.993600 -0.306400,-0.296300,0.532500,0.995000,-0.040230,-0.091730 0.334300,0.220600,0.628900,-0.726000,-0.062630,0.684800 -0.317800,0.337800,0.577200,-0.967300,0.000000,0.253500 0.062650,0.495600,0.039160,-0.000064,1.000000,0.000064 0.360200,0.495600,0.023500,0.000000,1.000000,0.000000 -0.362900,-0.599200,-0.551400,0.791400,-0.323600,0.518600 -0.421500,0.071630,0.522000,-0.164500,0.001219,-0.986400 -0.507200,0.491400,0.508900,-0.451200,0.892400,0.000000 -0.310100,-0.335200,0.518300,0.969300,-0.062570,-0.237600 -0.355900,0.439500,-0.015650,0.996200,-0.086580,-0.000017 0.416100,-0.545700,-0.586500,-0.891300,-0.265400,0.367500 -0.311600,-0.241200,0.517600,-0.944600,-0.081460,0.318100 0.338400,-0.437900,-0.589300,-0.199400,0.103700,-0.974400 0.376400,0.307100,-0.633500,0.102100,0.080580,-0.991500 -0.435800,0.353500,-0.496000,-0.391200,0.000122,0.920300 -0.344300,-0.272900,0.493400,0.075490,0.005518,-0.997100 0.266200,0.496000,0.344500,0.046020,0.998200,-0.038960 0.384700,-0.275500,-0.510200,-0.935500,0.019160,-0.352700 0.031330,0.408300,0.580600,0.000064,-0.000128,1.000000 0.457200,0.150000,0.541400,0.985900,-0.018660,-0.166600 -0.336700,-0.288600,0.577900,-0.040520,0.033030,0.998600 -0.355900,0.298700,-0.485300,0.972100,0.006869,0.234300 0.415000,0.496000,0.548000,0.046030,0.998500,-0.028290 0.396100,0.384800,0.352300,0.999200,0.035580,-0.017730 0.455400,0.204700,0.555900,-0.999200,0.000440,-0.038840 -0.354800,0.345700,-0.368000,1.000000,-0.003527,-0.003528 -0.355500,0.384800,0.242700,0.999600,-0.028500,0.003608 -0.355700,0.369200,0.321000,0.998900,0.039090,-0.024830 -0.502100,0.493400,-0.454100,-0.340300,0.940300,0.000132 -0.469800,0.495600,-0.634100,-0.010650,0.999700,0.021240 0.016010,0.374200,0.555900,-0.069490,-0.997600,-0.002499 -0.313100,0.454500,-0.493200,0.058770,-0.996500,0.058870 0.266200,0.345700,-0.540000,-0.049810,0.024950,0.998400 0.449300,0.139500,0.606900,0.884600,0.003942,0.466400 0.421200,0.197100,0.631600,0.377500,-0.010260,0.925900 0.354900,0.439600,-0.274000,-0.997900,-0.064920,0.000000 -0.444300,0.439600,-0.586200,-0.963500,-0.025540,-0.266400 0.454100,0.454500,-0.148700,0.000000,-1.000000,0.000000 0.297500,0.496600,-0.477600,0.000000,1.000000,0.000000 0.195800,0.496600,0.563700,0.000000,1.000000,0.000000 0.375800,0.495600,0.133100,0.000000,1.000000,0.000000 -0.164400,0.496600,0.610700,0.000000,1.000000,0.000000 0.438500,0.454500,0.195800,0.000000,-1.000000,0.000000 -0.125200,0.496600,-0.571500,0.000000,1.000000,0.000000 0.375800,0.454500,-0.665500,0.000000,-1.000000,0.000000 -0.507200,0.491400,-0.571500,-0.448100,0.894000,0.000040 -0.211400,0.496600,0.454100,0.000000,1.000000,0.000000 -0.313200,0.496600,0.548100,0.000000,1.000000,0.000000 -0.375800,0.454500,-0.587200,0.000000,-1.000000,0.000000 -0.023470,0.496600,-0.516700,0.000000,1.000000,0.000000 0.156600,0.496600,0.626400,0.000000,1.000000,0.000000 0.375800,0.454500,0.696800,0.000000,-1.000000,0.005074 0.438500,0.454500,-0.062610,0.000000,-1.000000,0.000000 0.477600,0.454500,0.375800,0.000000,-1.000000,0.000000 0.007851,0.496600,-0.579400,0.000000,1.000000,0.000000 -0.180100,0.496600,0.133100,0.000000,1.000000,0.000000 0.172300,0.454500,0.109600,0.000000,-1.000000,0.000000 -0.195700,0.496600,0.336700,0.000000,1.000000,0.000000 -0.469700,0.454500,-0.242700,0.000000,-1.000000,0.000000 -0.195700,0.496600,0.156600,0.000000,1.000000,0.000000 -0.195700,0.454500,-0.634200,0.000000,-1.000000,0.000000 0.187900,0.392600,0.581600,0.000000,0.000000,1.000000 0.187900,0.454500,0.219200,0.000000,-1.000000,0.000000 -0.336600,0.496600,0.187900,0.000000,1.000000,0.000000 0.354800,0.400500,0.172300,-1.000000,0.000000,0.000000 0.078320,0.496600,-0.109600,0.000000,1.000000,0.000000 0.117500,0.496600,-0.015640,0.000000,0.999800,0.021310 -0.086100,0.454500,-0.125200,0.000000,-1.000000,0.000000 0.117500,0.496600,0.195800,0.000000,1.000000,0.000000 0.354800,0.431800,0.117500,-1.000000,0.000320,0.000000 -0.109600,0.454500,0.133100,0.000000,-1.000000,0.000000 0.117500,0.454500,0.649900,0.000000,-1.000000,0.000000 0.156600,0.495600,0.133100,0.000000,1.000000,0.000000 0.446300,0.495600,0.493300,0.000000,1.000000,0.000000 0.305400,0.454500,-0.454100,0.000000,-1.000000,0.000000 0.383700,0.496600,-0.422800,0.000000,1.000000,0.000000 -0.321000,0.495600,-0.109600,0.000000,1.000000,0.000000 -0.203500,0.454500,-0.219200,0.000000,-1.000000,0.000000 -0.519300,0.481700,-0.438400,-0.768400,0.640000,0.000000 -0.172200,0.454500,-0.477600,0.000000,-1.000000,0.000000 -0.227000,0.377000,0.539500,0.000000,0.000000,-1.000000 0.321000,0.454500,-0.219200,0.000000,-1.000000,0.000000 0.461900,0.495600,0.117500,0.000064,1.000000,0.000000 0.462000,0.454500,0.328900,0.000000,-1.000000,0.000000 -0.234900,0.495600,-0.297500,0.000107,1.000000,-0.000085 0.397000,0.361300,-0.383600,1.000000,-0.003551,-0.003552 0.352300,0.495600,0.086140,0.000000,1.000000,0.000000 -0.397000,0.408300,-0.305300,-1.000000,0.000000,0.000000 -0.317800,0.314300,-0.577200,-0.987200,0.003451,-0.159500 -0.422800,0.496600,0.164400,0.000000,1.000000,0.000000 -0.187900,0.337800,-0.539500,0.000000,0.000000,1.000000 0.477600,0.496600,-0.164400,0.006642,1.000000,0.000000 0.164400,0.496600,0.469800,0.000000,1.000000,0.000000 -0.354800,0.298700,0.477600,1.000000,0.000000,0.001093 -0.461900,0.454500,-0.438400,0.000000,-1.000000,0.000000 0.140900,0.495600,0.007861,0.000000,0.999800,0.021220 -0.289700,0.454500,0.141000,0.000000,-1.000000,0.000000 -0.422800,0.495600,-0.469700,0.000000,1.000000,0.000000 -0.321000,0.496600,0.305400,0.000000,1.000000,0.000000 0.354800,0.353500,0.360200,-1.000000,0.000000,0.000000 0.219200,0.454500,0.274100,0.000000,-1.000000,0.000000 -0.441000,0.402400,0.517300,0.949700,-0.003629,0.313200 -0.360100,0.495600,-0.297500,0.000000,1.000000,0.000000 0.375800,0.495600,0.250600,0.000000,1.000000,0.000000 -0.397000,0.361300,-0.446300,-1.000000,0.000000,0.000000 -0.422800,0.454500,0.305400,0.000000,-1.000000,0.000000 -0.527900,0.462100,-0.360100,-0.997200,0.074450,0.000000 0.070490,0.496600,-0.227000,0.000000,1.000000,0.000000 0.172300,0.496600,-0.172200,0.000000,1.000000,0.000000 0.469800,0.454500,0.007854,0.000000,-1.000000,0.000000 -0.187900,0.454500,0.125300,0.000000,-1.000000,0.000000 -0.334100,0.483600,0.701400,-0.012080,0.702900,0.711200 -0.140900,0.454500,0.462000,0.000000,-1.000000,0.000000 0.469800,0.454500,-0.477600,0.000000,-1.000000,0.000000 0.219200,0.447300,0.539600,0.000000,-0.179800,-0.983700 0.172300,0.454500,0.203600,0.000000,-1.000000,0.000000 -0.219200,0.454500,0.266200,0.000000,-1.000000,0.000000 -0.469700,0.496600,0.336700,0.000000,1.000000,0.000000 0.415000,0.496600,-0.508900,0.000000,1.000000,0.000000 -0.493200,0.454500,0.352300,0.000000,-1.000000,0.000000 0.141000,0.496600,0.211400,0.000000,1.000000,0.000000 -0.156600,0.454500,-0.438400,0.000000,-1.000000,0.000000 0.133100,0.454500,0.156600,0.000000,-1.000000,0.000000 -0.289700,0.454500,-0.187900,0.000000,-1.000000,0.000000 0.298000,0.322200,-0.583700,-0.420800,0.000000,-0.907100 0.422800,0.496600,-0.274000,0.000000,1.000000,0.000000 0.305400,0.454500,-0.039120,0.000000,-1.000000,0.000000 -0.383600,0.304600,-0.348300,-0.012190,-0.930000,0.367500 0.227100,0.369100,-0.581600,0.000000,0.000000,-1.000000 -0.350400,0.452200,-0.422800,0.612600,-0.790400,0.000085 -0.305300,0.454500,-0.313200,0.000000,-1.000000,0.000000 -0.321000,0.454500,0.407200,0.000000,-1.000000,0.000000 0.000024,0.454500,0.407200,0.000000,-1.000000,0.000000 0.527900,0.462100,-0.422800,0.997200,0.074200,0.000035 0.401300,0.452200,0.140900,0.618000,-0.786100,0.000000 0.180100,0.496600,-0.422800,0.000000,1.000000,0.000000 0.289700,0.454500,-0.383600,0.000000,-1.000000,0.000000 -0.172200,0.454500,-0.109600,0.000000,-1.000000,0.000000 -0.148700,0.496600,-0.595000,0.000000,1.000000,0.000000 -0.195700,0.454500,-0.305300,0.000000,-1.000000,0.000000 0.396500,0.400400,0.336700,0.999900,-0.010670,-0.000034 -0.407100,0.496300,-0.000029,0.000000,0.999100,-0.042480 -0.313200,0.496600,0.516800,0.000000,1.000000,0.000000 -0.397000,0.361300,0.422800,-1.000000,0.000000,0.000000 0.527900,0.462100,0.469800,0.994700,0.102300,-0.000068 -0.414900,0.495600,-0.336600,0.000000,1.000000,0.000000 0.354800,0.400500,0.313200,-1.000000,0.000000,0.000000 0.305400,0.454500,-0.399300,0.000000,-1.000000,0.000000 0.274100,0.454500,-0.438400,0.000000,-1.000000,0.000000 -0.007806,0.454500,0.203600,0.000000,-1.000000,0.000000 -0.078270,0.496600,0.430600,0.000000,1.000000,0.000000 -0.397000,0.439500,-0.046980,-0.998200,-0.060390,0.000000 0.446300,0.496600,-0.469700,0.000000,1.000000,0.000000 -0.203500,0.496600,-0.665400,0.000000,0.999900,-0.016000 0.422800,0.495600,0.313200,0.000000,1.000000,0.000000 0.250600,0.496600,0.407200,0.000000,1.000000,0.000000 0.031340,0.496600,0.618500,0.000000,1.000000,0.000000 0.047000,0.496600,-0.657600,0.000000,1.000000,-0.000322 -0.407100,0.496600,-0.610700,0.000000,1.000000,0.000000 -0.375800,0.496600,-0.626300,0.000000,1.000000,0.000000 -0.339900,-0.125600,-0.505700,0.465100,0.150300,0.872400 0.390600,-0.514600,-0.522400,0.112900,-0.172800,0.978500 -0.415500,-0.508400,-0.561600,0.961100,-0.234600,0.146000 0.414100,0.235900,0.631900,0.250300,0.119900,0.960700 0.381000,-0.661000,0.619600,-0.393000,-0.313400,0.864400 0.450900,0.134300,-0.563900,-0.999200,0.011120,0.038190 0.449100,0.244100,-0.556000,-0.994700,-0.094610,0.039140 -0.376000,0.008028,0.622600,0.065260,0.208400,-0.975900 0.324100,0.220800,-0.564000,-0.982300,-0.164900,0.089210 0.527900,0.462100,0.642000,0.996100,0.088350,0.000081 0.289700,0.447200,0.583700,-0.036100,-0.439300,0.897600 -0.353900,-0.048970,-0.516300,-0.404200,-0.139900,-0.903900 0.360200,-0.615300,-0.576700,0.960300,0.259400,-0.102800 0.408200,-0.494600,-0.563100,-0.959800,-0.245700,0.136000 -0.289700,0.361300,0.539500,-0.004519,0.000000,-1.000000 0.437000,0.009180,-0.548200,0.979800,-0.195700,0.041850 0.391100,0.103400,-0.638800,0.097160,-0.142500,-0.985000 0.396500,0.147000,0.516900,-0.094040,-0.124500,-0.987800 0.414900,0.173200,0.514900,-0.013870,0.105500,0.994300 0.396600,0.306800,-0.360300,0.994700,-0.098280,0.029250 0.352300,0.251500,-0.640100,-0.060670,0.078470,-0.995100 -0.328800,0.454500,0.039170,0.000000,-1.000000,0.000000 0.015680,0.454600,0.595200,0.000000,-0.987700,0.156700 0.125300,0.454500,-0.610700,0.000000,-1.000000,0.000000 -0.328800,0.454500,-0.289700,0.000000,-1.000000,0.000000 0.317800,0.439500,0.555900,0.996800,-0.079030,-0.010640 -0.346800,0.229600,-0.514200,0.378400,-0.261000,0.888100 -0.448600,0.119200,0.601100,-0.963200,-0.095280,0.251300 0.345300,-0.420700,-0.506700,-0.123000,-0.164200,0.978700 -0.054790,0.431800,0.580600,0.000000,0.001221,1.000000 0.313300,-0.366900,0.540200,-0.995800,-0.085960,-0.031330 0.413000,0.212500,-0.637300,0.273100,0.022390,-0.961700 -0.399700,0.299000,0.628800,0.200900,-0.112200,-0.973200 0.427600,0.258900,0.621700,0.577200,0.128400,0.806400 -0.309800,-0.194900,0.532800,0.989900,0.085840,-0.112900 -0.319100,0.447200,-0.555900,-0.932600,-0.361000,0.000006 -0.376000,-0.093220,-0.504000,0.064260,0.126400,0.989900 -0.448700,0.086940,-0.579500,0.980100,0.137500,0.143500 -0.399800,-0.605600,-0.539200,0.074600,-0.263300,0.961800 -0.441600,0.055470,0.563800,0.989500,0.138800,-0.039860 -0.320200,0.384800,0.518200,-0.898100,-0.002776,0.439800 0.101800,0.490500,0.693600,0.000025,0.865200,0.501400 -0.440600,-0.609100,-0.563700,0.967600,-0.238200,-0.083400 0.156000,0.495800,0.679000,0.000000,0.990100,0.140600 -0.384500,0.040200,0.524100,-0.080730,-0.017720,0.996600 -0.297300,0.298700,0.539600,0.124400,-0.006376,-0.992200 0.352400,-0.304100,-0.494400,-0.040230,-0.057550,0.997500 0.360200,-0.374300,-0.578900,0.241600,0.134600,-0.961000 -0.439300,0.195300,0.518800,-0.355000,-0.107000,-0.928700 0.324200,0.268100,0.623300,-0.802400,-0.093460,0.589400 -0.376300,-0.529900,-0.522300,0.081930,-0.228800,0.970000 0.394800,0.319500,0.502100,0.366100,-0.001878,0.930600 -0.450800,0.235600,0.578900,-0.987500,0.104200,0.118000 0.360700,-0.397300,0.576600,-0.157200,-0.171400,-0.972600 -0.385200,-0.301600,0.510100,0.917200,-0.035180,0.396900 0.451600,0.134500,0.527400,0.854200,-0.075710,-0.514300 0.406900,0.025100,0.518600,-0.008920,-0.070980,0.997400 -0.328800,0.496600,0.665400,0.000000,0.999300,0.037770 0.323900,-0.054060,-0.564000,-0.990100,0.118600,0.074440 -0.227000,0.452200,-0.537500,-0.000116,-0.738400,0.674400 0.401600,-0.047360,-0.601200,-0.578800,0.264000,0.771500 -0.430800,0.115700,0.627300,-0.597100,-0.149200,0.788100 0.442100,-0.634000,0.607900,0.881200,0.026400,0.472000 0.367900,0.377000,-0.633800,0.111900,0.000003,-0.993700 0.384100,-0.007289,0.513800,-0.084600,0.119600,-0.989200 0.172300,0.475600,0.708000,-0.000063,0.480800,0.876900 0.344000,-0.264700,-0.496200,0.079330,-0.044360,-0.995900 0.363300,0.138900,0.526300,0.449900,0.174600,0.875800 0.452600,0.173400,-0.579100,0.994800,-0.005279,-0.101400 0.399800,0.377000,0.484700,0.755000,0.017850,-0.655400 0.335200,-0.472700,0.521600,-0.847600,-0.245100,-0.470700 0.447900,0.250000,-0.533500,-0.980500,-0.038740,-0.192700 0.406600,0.095540,0.631300,0.196600,-0.150300,0.968900 0.392000,-0.508600,0.520100,-0.127200,0.179800,0.975400 0.426500,0.397800,0.613500,0.575800,-0.007330,0.817600 -0.362700,-0.306600,-0.571800,-0.279300,0.041790,-0.959300 -0.335200,0.016960,0.563600,-0.986800,-0.115000,0.114200 -0.317700,0.439900,0.518500,0.947700,-0.066290,-0.312300 -0.156600,0.345700,0.539500,0.002164,-0.004111,-1.000000 -0.342900,0.111200,-0.618200,-0.938100,0.044130,0.343600 0.310100,-0.241900,0.532900,-0.995000,0.063830,-0.076790 -0.443700,0.055130,-0.580300,0.971300,0.161900,0.174200 -0.382200,0.426600,-0.626200,0.090330,0.000000,0.995900 -0.430500,0.084320,0.620300,-0.659900,-0.197500,0.725000 -0.328500,-0.463600,0.578300,-0.913600,0.066130,-0.401200 0.438600,0.439600,-0.584900,-0.981100,-0.026520,0.191400 0.315400,0.314300,0.616800,-0.921100,-0.001569,0.389300 -0.352300,-0.442900,-0.586900,0.035040,0.142900,-0.989100 0.317000,-0.186600,0.564400,0.948700,-0.021380,-0.315600 -0.314200,-0.247200,-0.508300,0.882400,0.104200,0.458900 0.368000,-0.061640,0.604200,-0.047630,0.203900,-0.977800 0.435600,0.298800,0.496000,0.410100,-0.080680,-0.908500 0.363200,-0.528100,0.523500,-0.220700,-0.237900,-0.945900 0.433200,0.024280,0.600700,0.820500,-0.221400,0.527000 0.361200,-0.522300,-0.526000,-0.180200,-0.253100,0.950500 0.429000,0.027760,-0.601500,-0.836400,0.180600,0.517500 -0.450200,0.392600,-0.540100,-0.998800,0.000000,-0.049940 0.182000,0.317400,-0.564300,-0.587200,-0.809500,0.000160 -0.376300,-0.335300,0.564000,0.711800,-0.047260,-0.700800 0.351500,0.069940,0.532000,-0.675800,0.006138,-0.737000 0.373900,-0.346100,-0.501100,-0.350700,0.041030,-0.935600 0.422900,0.236700,-0.628100,-0.526200,-0.103700,0.844000 0.313900,-0.338400,0.547500,0.988500,0.117000,-0.096320 0.361500,0.214500,0.514600,0.233400,0.162300,0.958700 -0.344400,-0.552400,0.586500,-0.980500,0.188700,-0.055480 -0.516700,0.454500,0.133100,-0.020180,-0.999800,0.000000 -0.120000,0.452100,-0.588100,0.000000,-0.841200,-0.540700 -0.383300,-0.436900,-0.507200,0.148000,0.115000,-0.982300 0.250600,0.283000,-0.540000,0.048430,-0.028410,0.998400 -0.375800,0.357700,0.173200,0.000018,-0.979200,-0.202800 0.431600,0.416100,-0.602700,-0.869200,0.000000,0.494500 0.442300,0.260000,-0.595900,-0.958200,-0.112200,0.263100 0.314400,-0.244600,0.508500,-0.887600,0.090700,-0.451500 0.375000,-0.413300,-0.504900,0.159500,-0.121400,0.979700 0.203600,0.454500,-0.524500,0.000000,-1.000000,-0.005297 -0.426900,-0.631600,0.620000,0.562500,-0.107700,-0.819700 -0.412600,-0.065070,-0.584000,0.785600,0.263100,0.560000 -0.342500,-0.041400,-0.522600,0.668100,0.162900,0.726000 -0.377300,-0.665000,-0.564900,0.656800,-0.605400,0.449600 0.516000,0.485300,0.683800,0.710000,0.704200,-0.000153 0.323500,-0.085290,0.571500,-0.993600,0.109200,0.029040 -0.384300,-0.108400,0.592800,0.441700,0.254100,-0.860400 -0.384300,-0.138900,-0.582500,0.464700,0.225200,0.856300 -0.423200,-0.546500,-0.541800,0.916300,-0.110000,-0.385000 -0.333700,0.213300,-0.534400,0.936100,-0.156500,0.315000 -0.387700,0.234400,-0.633700,0.079450,-0.114900,0.990200 0.439400,0.266900,0.507600,-0.562500,0.075430,0.823300 0.356200,0.341100,0.252900,-0.868900,-0.468700,-0.159400 0.383600,0.361700,-0.154500,0.033970,-0.980900,0.191700 0.391900,-0.554200,-0.609200,-0.271900,-0.279700,0.920800 0.320900,-0.163100,-0.517100,0.802000,-0.163200,-0.574500 -0.402800,-0.558200,0.531800,-0.144700,-0.182200,-0.972600 -0.326800,0.431800,-0.623300,-0.551200,-0.001526,0.834400 0.317200,0.298700,0.525300,-0.972300,0.000005,-0.233700 -0.396900,0.354100,-0.219400,-0.987400,-0.155600,0.028890 0.391600,0.008668,-0.519200,-0.068130,0.119400,0.990500 0.392500,-0.377800,-0.519800,0.982700,0.099760,0.156200 0.203600,0.452100,0.588100,0.000000,-0.841900,0.539700 -0.383800,0.228200,0.510400,0.085000,-0.194000,-0.977300 0.391100,-0.085740,-0.596400,-0.462000,0.220700,0.859000 0.352400,-0.583100,-0.569500,0.959500,0.241600,-0.145200 0.323300,0.244200,0.610100,-0.960300,-0.176400,0.216300 -0.410900,-0.515000,0.538900,0.908400,-0.133800,0.396000 -0.391800,0.275400,-0.628800,0.137900,-0.111800,0.984100 -0.426900,0.013940,0.528300,0.659100,0.050920,0.750300 0.322200,0.256500,0.561300,0.965500,0.249700,0.074410 0.433900,0.320000,0.606800,0.791700,0.063970,0.607600 -0.311300,0.410900,-0.538000,0.605800,0.000000,0.795600 0.344700,-0.118500,0.594800,-0.093670,-0.171300,0.980800 -0.316800,0.252400,0.609900,0.969800,-0.181800,0.162500 -0.329900,-0.241200,0.499700,-0.278400,-0.101700,0.955100 -0.417600,0.251800,0.628000,0.428500,-0.114500,-0.896300 0.366300,-0.621300,0.560400,-0.880600,-0.297000,-0.369200 0.370400,-0.665300,-0.577000,-0.710400,-0.679600,0.182800 0.336800,0.121000,-0.616600,0.984000,0.014060,0.177900 -0.333400,-0.491000,-0.548500,0.969400,-0.228200,0.090940 0.316500,-0.359300,0.524200,0.987400,0.064830,0.144400 -0.349600,0.133300,-0.535400,0.779200,-0.125000,0.614200 0.431300,0.082170,0.618200,0.609700,-0.163400,0.775600 0.419200,0.273500,-0.500900,0.205000,-0.166400,0.964500 0.444100,0.261600,-0.516400,0.894500,0.005140,0.446900 0.377200,-0.157200,0.580600,-0.328100,0.227600,-0.916800 0.305200,0.384800,0.539600,-0.159100,0.000000,-0.987300 -0.390600,-0.221400,-0.553000,0.888900,0.140800,0.436000 -0.328500,0.193700,0.560300,0.986700,-0.108500,-0.121100 0.516300,0.485000,0.441100,0.704700,0.709500,0.003490 0.329800,-0.463300,-0.586800,-0.725600,-0.003920,-0.688100 0.497200,0.495000,-0.417600,0.225600,0.974200,0.000030 -0.364500,-0.353600,-0.570600,0.310300,-0.044270,0.949600 -0.340300,-0.237000,0.578800,0.045800,0.118400,-0.991900 0.394900,0.273900,0.416900,0.670200,-0.720000,-0.179900 -0.312700,-0.393200,0.555800,0.986300,-0.153500,0.060590 0.328400,0.170300,-0.597900,-0.992100,-0.123300,0.023060 0.438900,0.068640,-0.604300,0.880400,-0.168300,-0.443300 -0.326400,-0.061190,0.555700,-0.989100,-0.120700,0.084730 0.378700,-0.535600,0.523500,-0.078820,-0.224500,-0.971300 -0.421700,0.439500,0.497300,-0.203400,-0.071570,-0.976500 0.426500,-0.053000,0.526200,0.950600,-0.155000,-0.269100 0.329600,-0.013890,-0.555300,-0.984500,0.120400,0.127200 0.420100,0.384800,-0.616800,-0.628300,-0.024740,0.777600 0.392700,-0.093390,0.594100,0.421500,-0.293900,0.857900 -0.361900,-0.532900,-0.604800,0.137600,0.188200,-0.972500 -0.344600,-0.544100,-0.560100,0.970200,-0.227200,0.084230 -0.328000,-0.474500,0.555700,-0.978700,0.198300,0.052580 -0.429800,0.158400,0.625600,0.649800,-0.011130,-0.760100 -0.317200,-0.421100,0.563000,0.982300,-0.126500,0.138100 0.418900,-0.006558,0.604400,0.597800,-0.264000,0.756900 0.523800,0.473400,0.013060,0.893200,0.449600,0.000147 -0.318100,-0.351100,-0.567400,0.798900,-0.024870,-0.601000 -0.335300,-0.468700,-0.520400,0.840500,-0.223100,0.493800 -0.312200,0.270600,0.602300,0.965600,-0.215900,0.144900 -0.398500,-0.555600,-0.607800,-0.242400,0.260600,-0.934500 0.359700,-0.461800,0.510700,0.120900,0.196700,0.973000 0.380700,-0.389800,-0.568000,-0.682900,-0.210300,0.699600 -0.395800,-0.209900,0.524500,-0.993900,-0.108800,-0.017120 -0.373900,-0.650600,-0.569900,-0.940800,0.183400,-0.285200 0.345600,-0.527500,0.543900,0.917400,0.285400,0.277500 0.419100,0.015890,0.515700,0.186600,0.068790,-0.980000 0.394800,0.343700,-0.236200,0.515400,-0.827700,0.222000 -0.367900,-0.123800,0.506600,-0.049230,-0.137100,0.989300 -0.335400,-0.489200,0.534700,-0.826800,0.334700,0.452200 -0.360900,0.367800,-0.112200,0.127100,-0.978500,0.162300 0.477600,0.496000,0.587200,-0.036260,0.999300,0.000000 0.343900,-0.531700,-0.545900,0.894100,0.255400,-0.367900 -0.427300,0.173800,0.630200,-0.533000,0.004406,0.846100 -0.404400,-0.140000,0.517800,-0.931500,-0.151900,-0.330600 -0.353100,0.185800,-0.523300,-0.475200,0.192200,-0.858600 -0.369700,0.286300,0.633800,0.091210,-0.108700,-0.989900 -0.209400,0.296400,-0.548600,0.686300,-0.726000,0.042440 -0.385100,-0.375300,0.561500,-0.854000,0.142600,0.500300 -0.336200,-0.494800,0.587100,-0.884100,0.063590,-0.463000 -0.399300,-0.161100,0.543100,0.974200,0.210900,-0.079730 -0.432400,0.261300,-0.618800,-0.592200,0.139800,-0.793600 -0.357600,-0.505600,0.603000,0.041310,0.215200,0.975700 0.365700,-0.630200,0.573100,-0.958500,-0.253400,-0.130700 0.266200,0.469700,0.710600,-0.000496,0.303200,0.952900 0.354900,0.276300,0.462000,-0.986700,-0.162600,0.000000 -0.450400,0.322200,-0.532400,-0.999900,0.006919,-0.008080 -0.477600,0.496600,0.508900,-0.006634,1.000000,0.000000 -0.477600,0.496600,0.125300,-0.006633,1.000000,0.000000 -0.323900,-0.145400,0.585600,-0.649400,0.114400,-0.751800 -0.375900,0.102500,0.637000,0.036260,0.134900,-0.990200 0.445000,0.290500,-0.547600,-0.994000,-0.102400,0.039250 -0.391500,-0.365800,0.532700,-0.997100,0.051780,0.056360 0.334100,0.040140,-0.564200,-0.995200,0.033680,0.091660 0.452400,0.212400,0.528200,-0.923700,0.029970,0.381900 0.441800,0.033210,0.586000,0.952700,-0.165000,0.255200 0.329700,-0.272900,-0.495400,-0.246500,0.020130,0.968900 0.340700,0.097840,-0.630400,-0.732900,-0.067110,-0.677000 0.447300,0.267400,-0.540400,-0.996100,-0.087680,-0.000875 -0.311200,0.493000,0.688800,0.000042,0.911200,0.411900 -0.497500,0.494900,0.555900,-0.226200,0.974100,0.000000 0.325500,-0.069690,0.578600,-0.991500,0.084370,0.098960 0.242100,0.495800,0.679000,0.000000,0.990100,0.140600 -0.313300,0.289200,0.621400,0.903300,-0.165200,0.395900 0.406600,0.298600,-0.499400,0.097310,0.018180,-0.995100 -0.330400,0.415500,-0.503500,0.390500,0.000445,0.920600 0.406600,0.314300,-0.499200,0.115500,-0.000004,-0.993300 0.406600,0.408300,-0.499200,0.115600,0.000000,-0.993300 0.370700,-0.606200,0.550400,0.646200,0.329500,0.688400 0.355000,0.370400,0.141100,-0.986000,-0.166200,-0.012480 0.335000,0.048160,-0.602800,0.997700,-0.013510,0.066150 0.386500,-0.312900,0.548900,-0.911700,-0.040880,-0.408800 -0.142900,0.340900,0.577300,0.447600,-0.890700,0.079300 0.336300,0.377000,-0.505200,0.293800,-0.002279,-0.955900 -0.407300,0.087150,0.521500,0.029250,0.025400,-0.999200 0.436200,0.347300,-0.503800,0.650700,0.022630,0.759000 0.354900,0.377000,-0.109600,-0.996900,-0.073800,0.026250 -0.352400,0.314400,-0.628400,-0.003368,-0.014930,0.999900 -0.340000,-0.294500,-0.493700,-0.157900,0.073630,-0.984700 0.342900,0.036810,-0.625700,-0.501200,-0.104600,-0.859000 0.362800,-0.122000,-0.595600,-0.108100,0.203200,0.973200 -0.377000,0.024300,0.524300,-0.104500,-0.073150,0.991800 0.451600,0.157300,0.526200,0.826900,-0.030850,-0.561500 0.436900,0.452200,0.585000,-0.573500,-0.812800,-0.102500 -0.400500,-0.502600,0.586000,0.713800,-0.306800,-0.629600 -0.368000,0.269800,-0.438400,0.017030,-0.999900,-0.000021 -0.431700,-0.034640,-0.553100,-0.976200,-0.210700,-0.050830 -0.408500,0.047270,0.623500,0.410100,0.162100,-0.897500 -0.319500,-0.234100,0.575200,-0.522100,0.096820,-0.847400 0.317000,0.438900,0.577400,0.975100,-0.110700,0.192000 0.447200,0.304600,0.577400,0.990100,0.094590,0.103700 -0.205000,0.301600,0.541900,0.547100,-0.638700,-0.541100 0.367900,0.158400,0.521500,0.308500,0.113700,0.944400 -0.449500,0.150100,0.534500,-0.932500,-0.035590,-0.359400 -0.402700,-0.446100,-0.561700,-0.914500,0.179100,-0.362900 -0.527900,0.462100,-0.501100,-0.997200,0.074450,0.000000 0.404500,-0.445500,0.555200,0.957400,0.170100,0.233300 -0.383600,0.454600,0.516900,0.000627,-0.987900,0.155200 -0.437800,0.240600,-0.617900,-0.701300,0.125400,-0.701800 0.435700,0.157100,0.623200,0.601400,-0.007658,0.798900 0.384200,-0.330100,0.555100,-0.840700,-0.040100,-0.540100 -0.324900,0.205200,0.579700,0.988900,-0.126500,-0.077580 -0.380300,-0.241500,0.497900,-0.407600,0.007880,-0.913100 -0.438400,0.029060,0.584700,-0.962500,-0.167000,0.213600 -0.319200,-0.093590,0.564100,0.986500,0.155200,-0.052840 0.370000,-0.652000,-0.614900,0.861900,0.300600,0.408200 -0.457600,0.204700,-0.563500,-0.997800,0.000893,-0.066590 0.374000,-0.590900,0.618400,-0.343900,0.222500,0.912300 0.441700,0.055550,0.531000,-0.849900,0.094120,0.518500 -0.435700,0.126800,-0.623700,-0.616400,-0.029160,-0.786900 -0.324400,-0.061610,0.593700,0.959400,0.040170,0.279200 -0.408400,-0.145600,-0.546500,-0.970400,-0.205200,-0.127100 0.398700,-0.466000,-0.574900,0.823800,0.259900,-0.503800 -0.336700,-0.327800,-0.575200,0.047630,0.028880,-0.998400 0.313800,-0.208900,0.544800,0.995400,-0.077970,0.056380 0.209200,0.296600,-0.553300,-0.679800,-0.733300,0.012170 0.412200,-0.656300,0.619800,-0.237700,0.293600,-0.925900 -0.344400,-0.136400,0.596000,0.004646,-0.197900,0.980200 0.333000,-0.187000,-0.500400,-0.301300,0.073130,0.950700 -0.412800,-0.493100,-0.527200,-0.899700,0.132500,0.415900 -0.312500,-0.320700,-0.517900,0.987500,-0.064290,0.143900 -0.423400,-0.026490,0.523200,-0.760000,-0.085500,-0.644200 0.322000,0.387400,-0.626800,0.504500,-0.007226,0.863400 0.331300,0.371400,-0.633000,-0.230300,0.000000,-0.973100 0.328800,0.454600,-0.493100,-0.031230,-0.990300,0.135700 0.448800,0.330000,0.555300,0.993600,-0.000007,0.112700 0.358900,-0.351400,0.574100,0.171000,0.048250,0.984100 -0.354700,-0.432400,0.586800,0.048230,-0.171600,-0.984000 0.360100,0.251100,0.635900,-0.003270,0.087960,0.996100 0.360200,-0.045890,-0.611800,-0.023970,0.201300,0.979200 -0.400500,-0.107300,-0.580500,0.676100,0.260200,0.689300 -0.390600,-0.457500,0.517300,0.464500,0.047250,0.884300 -0.405900,-0.544600,0.602800,-0.600600,0.268800,0.753000 -0.419700,-0.092140,-0.547900,-0.976600,-0.200200,-0.078480 -0.352200,-0.566700,-0.591700,-0.957700,0.219700,0.185900 0.431600,-0.658300,-0.610900,0.763700,-0.369200,-0.529600 0.400400,0.425900,0.625800,0.179000,0.000019,0.983900 0.446400,0.348300,0.574000,0.990800,-0.000078,0.135300 0.319900,0.260600,0.588800,0.980800,0.192900,-0.029910 -0.415700,-0.542100,0.584500,0.892900,-0.292200,-0.342500 0.402700,0.366000,0.496100,0.493500,-0.044630,0.868600 0.416600,-0.534200,-0.537200,0.869200,0.090190,0.486200 0.315800,0.275600,0.602300,-0.968300,-0.177500,0.175900 0.326700,0.431800,0.623300,0.551700,0.000483,-0.834100 0.345900,-0.124900,-0.506000,-0.175500,0.127100,0.976200 0.342900,0.081880,0.544400,-0.899700,0.041690,-0.434600 -0.411600,0.029220,-0.616800,0.383600,0.199200,0.901800 -0.308800,0.377000,0.609900,0.981600,0.010510,0.190700 -0.353100,-0.429800,0.510000,-0.117700,0.170200,0.978400 -0.394600,-0.256700,-0.516600,-0.993300,-0.108600,0.038620 0.352300,-0.421400,0.581400,0.031560,-0.141800,-0.989400 -0.361600,0.356600,0.180900,0.246100,-0.945400,-0.213500 -0.380900,-0.513500,0.524500,-0.032220,0.215200,0.976000 -0.398100,-0.166000,0.521500,0.966600,0.187600,0.174900 0.375700,0.452100,0.635400,0.019350,-0.831400,0.555300 -0.023460,0.447300,0.539600,0.000000,-0.179800,-0.983700 -0.417800,-0.531400,-0.529300,-0.737700,0.013840,0.675000 0.400200,-0.140200,-0.562300,-0.922400,0.222300,0.315900 -0.390600,0.364100,0.141300,-0.174100,-0.975100,-0.137000 0.335200,0.221900,0.533400,0.908100,0.194700,0.370800 -0.322800,-0.205300,0.579800,-0.438200,0.057790,-0.897000 0.395700,-0.390600,0.511100,0.918000,0.081580,-0.388100 -0.390300,-0.450000,0.579900,-0.679100,0.186200,0.710100 -0.078270,0.454500,-0.696800,0.000000,-0.999900,-0.016280 -0.370300,-0.625200,-0.621400,0.649200,-0.003351,-0.760600 -0.354100,0.078990,0.634900,0.223200,-0.105500,0.969000 0.355300,-0.086390,0.509100,0.255700,-0.184100,0.949100 0.383600,0.356200,-0.180700,0.016110,-0.979700,0.199700 -0.521700,0.478500,-0.180100,-0.836600,0.547800,0.000196 0.419300,-0.566000,0.532500,0.401400,-0.125900,-0.907200 0.371300,-0.152300,-0.586600,-0.346000,0.228800,0.909900 0.512300,0.488200,0.138300,0.575200,0.818000,0.000000 -0.332200,-0.029680,-0.579200,-0.994600,-0.097280,0.036420 -0.347200,0.306100,-0.497000,0.554600,-0.003307,0.832100 0.398800,-0.218200,0.517100,0.991500,-0.090820,-0.093400 0.399300,0.379500,0.499300,0.519300,-0.025320,0.854200 0.415000,-0.636800,-0.627300,-0.359700,0.087010,0.929000 -0.368200,0.055310,0.630700,-0.024100,0.137300,-0.990200 -0.364100,-0.050040,0.610700,0.043420,0.208500,-0.977100 -0.378200,-0.420500,-0.579400,-0.385700,0.208500,-0.898800 -0.315600,-0.374300,-0.524800,0.985000,-0.122700,0.121500 0.352300,0.111800,-0.635700,0.364600,0.119200,0.923500 -0.342500,0.493000,0.688800,0.000000,0.911100,0.412100 -0.523400,0.454800,-0.485400,-0.261200,-0.965300,0.000000 0.380400,-0.639700,-0.554900,-0.365300,-0.218300,0.904900 -0.164400,0.331700,-0.580900,0.215800,-0.371600,-0.903000 0.078320,0.384800,-0.539500,-0.000553,-0.000553,1.000000 -0.407300,-0.467800,-0.547300,0.977300,-0.193500,0.086570 0.502400,0.493700,0.636800,0.374300,0.927300,0.000000 0.445200,0.176100,0.608200,-0.863800,-0.007771,-0.503800 0.367800,-0.664500,-0.597300,-0.922600,-0.385000,0.022110 0.324600,-0.061650,-0.593800,-0.963100,0.050650,-0.264400 -0.310900,0.265300,0.578700,0.765900,-0.639500,0.066640 -0.350400,0.452200,0.352300,0.612300,-0.790600,0.000000 0.406400,0.118900,-0.638600,0.193500,-0.088750,-0.977100 0.387800,-0.482300,-0.515900,0.149300,-0.081540,0.985400 -0.333800,0.257000,-0.515300,-0.587500,0.311100,-0.747000 0.333000,0.158200,-0.624900,-0.950000,-0.106000,-0.293800 -0.430400,0.366500,-0.610600,-0.702600,-0.000010,-0.711600 0.335300,0.374400,0.501700,-0.317400,-0.000075,-0.948300 0.391700,-0.210000,-0.545500,-0.974000,0.119800,0.192300 -0.026080,0.481000,0.704300,-0.000263,0.604700,0.796500 -0.337900,0.042740,0.615300,-0.853800,0.049900,-0.518300 -0.380800,-0.345800,-0.560300,0.727000,-0.048030,0.684900 -0.375800,0.308700,-0.337500,-0.000103,-0.933700,0.358100 -0.292900,0.494500,0.684000,0.000000,0.969500,0.245100 0.330600,-0.451700,-0.518600,-0.630600,-0.228500,0.741700 0.451000,0.094430,0.547700,-0.986200,0.124600,0.109400 0.317800,-0.379900,-0.574600,-0.704900,-0.009844,-0.709200 0.169700,0.487900,0.697600,0.000049,0.794100,0.607800 -0.416400,0.032360,0.616300,0.581500,0.187600,-0.791600 0.383500,-0.353900,-0.508600,-0.801700,0.013560,-0.597600 -0.317300,0.306500,0.531900,-0.997300,0.000018,0.073540 0.311500,-0.278200,-0.564800,0.865400,0.013680,0.500900 -0.412500,0.369100,-0.622300,-0.400500,0.000008,-0.916300 0.409000,-0.583800,-0.616000,0.422600,0.339400,-0.840400 -0.420600,-0.655400,0.622200,-0.421000,-0.351500,0.836200 -0.436500,0.076090,-0.607700,0.783900,0.178800,0.594600 -0.342200,0.061030,-0.544100,0.904300,0.034660,0.425500 0.399300,-0.056070,0.507700,0.033410,0.119900,-0.992200 -0.415600,-0.511900,0.555200,-0.971200,0.236500,0.029810 -0.398100,-0.448200,0.561000,0.938200,-0.160400,-0.306600 -0.424000,-0.562600,-0.586900,0.878600,-0.275400,0.390100 0.361600,-0.579400,-0.617300,-0.453500,0.163000,-0.876200 -0.390700,-0.273900,-0.540600,-0.965200,-0.027810,-0.260000 -0.370100,-0.279800,0.566400,0.586700,-0.010010,-0.809800 0.414000,0.165600,-0.634900,-0.330300,-0.013940,0.943800 0.403600,-0.445400,0.518600,0.918600,0.073020,-0.388400 0.428700,-0.633900,-0.623600,0.629500,0.113400,-0.768700 -0.442000,0.306000,0.586600,-0.982900,0.092260,0.159400 -0.433600,0.315100,-0.608100,-0.805100,0.093470,-0.585700 0.334500,0.079290,-0.572100,-0.995400,0.030120,0.091020 -0.345000,-0.124500,-0.594000,0.095580,-0.172600,-0.980300 -0.359300,-0.393600,0.579800,0.184300,-0.179200,-0.966400 -0.445000,0.407600,-0.565700,0.988800,-0.003440,0.149100 0.381200,-0.293800,-0.504400,-0.748900,0.009796,-0.662600 -0.317300,0.361300,0.531900,-0.997300,-0.000002,0.073800 0.352200,0.094690,0.627400,0.506000,0.070370,-0.859700 -0.447100,0.063740,-0.555900,0.991500,0.129900,0.011340 0.414100,-0.490200,0.550400,0.970200,0.229000,0.079560 -0.424400,0.322100,-0.495600,0.259300,0.000498,-0.965800 -0.370200,-0.665500,0.579400,0.678200,-0.721300,-0.140800 0.317100,-0.309400,-0.574500,-0.458500,-0.001109,-0.888700 -0.414800,-0.647800,0.552400,-0.037050,-0.198900,-0.979300 -0.046970,0.484700,-0.701200,0.000373,0.698100,-0.716000 0.306200,0.330000,0.588100,-0.684800,0.000000,0.728700 0.370400,0.028740,-0.525400,0.215800,-0.105700,-0.970700 -0.409000,-0.498600,0.564800,0.961000,-0.236600,-0.143400 -0.410800,-0.500500,0.534400,-0.940500,0.130800,-0.313700 -0.323000,0.236400,-0.579400,0.977600,-0.205300,0.046680 -0.455400,0.142100,-0.586100,-0.988300,0.001549,-0.152400 -0.317800,0.283000,0.571500,-0.999800,-0.019930,-0.001942 -0.303400,0.452200,0.610500,0.601000,-0.798700,0.030670 0.428600,0.111600,-0.628000,0.548500,-0.162100,-0.820300 0.422600,0.165700,-0.517800,0.103900,-0.107100,0.988800 -0.394800,0.439500,0.502100,-0.191200,-0.146600,0.970500 -0.203500,0.447200,-0.583600,0.000000,-0.457200,-0.889400 -0.133100,0.447200,-0.583600,0.000000,-0.457200,-0.889400 -0.431800,0.290100,0.505100,0.570300,0.089030,0.816600 0.429300,0.049810,0.608700,-0.695300,0.192600,-0.692400 -0.338600,-0.445600,0.590300,0.252200,0.094200,0.963100 0.229100,0.277400,0.553300,-0.690000,-0.723600,-0.018670 -0.392800,-0.484800,-0.515600,0.194500,0.146500,-0.969900 0.333300,0.450900,0.498700,-0.242600,-0.731500,-0.637300 -0.384200,0.142800,0.522000,0.100800,-0.129400,-0.986500 0.345100,0.094980,-0.540200,-0.796100,0.034520,0.604200 0.435900,0.064220,0.605000,-0.781800,0.170400,-0.599800 -0.359500,-0.375100,-0.576000,-0.158700,0.123600,-0.979600 -0.445500,0.447200,-0.518900,0.910200,-0.294100,-0.291600 -0.438100,0.035460,0.542600,0.967100,0.118600,0.225000 0.361600,0.142000,0.635100,0.171200,0.021780,-0.985000 -0.399400,-0.395800,-0.524500,-0.988900,0.140400,0.048610 -0.397100,-0.621600,0.547200,0.079420,-0.259200,-0.962600 0.356700,0.249000,-0.508200,-0.115100,-0.242500,0.963300 0.446100,0.093610,-0.538000,0.914900,-0.074450,0.396800 0.427800,-0.023170,-0.548100,-0.976400,0.211300,-0.043770 -0.434600,0.207800,0.515900,-0.298400,-0.105800,-0.948600 -0.352300,-0.342600,-0.493200,0.058440,-0.048550,0.997100 -0.444100,0.423900,-0.572400,0.989400,0.000010,0.145100 -0.401300,0.452200,-0.120000,-0.619200,-0.785200,0.000000 -0.356700,-0.277900,-0.572100,-0.187400,-0.002723,-0.982300 -0.329000,-0.455400,-0.543800,-0.983200,0.161000,-0.085660 -0.314300,-0.272900,0.502800,0.715700,-0.005355,-0.698400 -0.355900,0.439500,-0.211400,0.996200,-0.086770,0.000000 0.328100,-0.406100,0.571800,0.692500,-0.007806,-0.721400 0.211400,0.454500,0.696800,0.000000,-1.000000,0.005074 -0.078540,0.370400,-0.581600,0.009977,-0.079380,-0.996800 0.441800,0.438600,-0.512300,0.903700,-0.140500,0.404500 -0.507200,0.491400,0.391500,-0.459800,0.888000,0.000000 -0.383100,-0.494900,0.595000,0.324300,-0.313700,-0.892400 -0.109600,0.496400,-0.672800,0.000000,0.998300,-0.058930 0.394700,0.377000,-0.502200,0.195000,0.000000,-0.980800 -0.376000,-0.088080,0.508300,0.042240,0.134500,-0.990000 -0.360100,-0.374000,0.498500,0.006154,-0.106900,-0.994300 -0.448800,0.345600,-0.555300,-0.993600,0.000000,-0.112800 0.378600,-0.109400,0.594500,0.227300,-0.223500,0.947800 -0.323200,-0.123400,-0.539700,-0.980300,-0.137300,-0.142300 -0.527900,0.462100,0.093960,-0.998200,0.059310,-0.000045 -0.335500,0.165400,-0.587200,-0.991800,0.118000,-0.048570 -0.432000,0.061240,0.525300,-0.370600,-0.025900,-0.928400 -0.338700,0.032900,0.551600,-0.912700,-0.091830,0.398200 -0.382800,-0.603100,-0.543400,-0.234900,0.290300,-0.927700 0.376500,0.369000,-0.100600,-0.000709,-0.992600,0.121500 -0.317800,0.408300,-0.577200,-0.988400,-0.000073,-0.151600 0.410600,-0.032960,-0.516400,0.301300,0.051940,0.952100 -0.400500,-0.100600,0.513200,0.494100,-0.016000,0.869300 0.447100,0.118400,0.524400,0.607100,-0.052580,-0.792900 -0.390600,0.284900,-0.391100,-0.098070,-0.886500,0.452300 0.516800,0.454500,-0.438400,0.019410,-0.999800,0.000000 0.319900,-0.386900,0.513100,-0.914600,-0.181600,-0.361200 -0.344000,0.020510,-0.538400,0.826000,0.136900,0.546800 0.383200,0.017430,0.519500,0.097880,-0.117600,0.988200 0.339000,0.181500,0.622800,0.801200,0.104100,-0.589300 0.399100,-0.184400,0.550900,0.939600,-0.167700,0.298400 0.440100,0.045930,-0.536500,0.920900,-0.109700,0.374100 -0.352300,0.475400,-0.708200,-0.000025,0.472000,-0.881600 0.352700,-0.265200,-0.574100,-0.177000,0.095240,0.979600 -0.435000,-0.602300,0.557400,-0.940400,0.162800,-0.298700 0.332500,-0.070070,0.527300,-0.832500,0.180500,-0.523800 0.339100,-0.517000,-0.547100,0.917500,0.270900,-0.291300 -0.446600,0.312100,-0.575200,-0.985900,0.094900,-0.137600 0.419500,0.002382,-0.607600,0.691600,-0.269800,-0.670100 0.397000,0.439500,0.391500,0.997400,-0.071560,0.000006 -0.334300,0.309200,0.634300,0.140500,0.036570,0.989400 0.427700,0.223300,0.624700,-0.508200,-0.083790,-0.857200 0.310200,-0.241400,-0.524200,0.984000,-0.070970,-0.163500 0.383800,-0.602900,0.622200,-0.078850,0.229800,0.970000 -0.340500,-0.471400,0.517600,0.401900,-0.245000,-0.882300 0.321000,-0.104000,-0.534100,-0.954600,0.179700,0.237700 0.332600,-0.491300,0.563700,-0.979300,-0.201900,0.017680 -0.409500,-0.595900,0.540400,-0.079760,-0.223900,-0.971300 0.360000,0.196300,-0.518000,-0.232500,-0.138700,0.962700 0.375300,0.118400,-0.527600,0.163700,-0.000964,-0.986500 0.431400,0.037330,-0.531100,-0.734500,0.080810,-0.673800 0.387000,-0.249100,-0.504600,0.869000,-0.066990,0.490300 -0.428300,0.228800,0.624700,0.628100,-0.108100,-0.770500 0.516800,0.454500,0.281900,0.019410,-0.999800,0.000000 -0.379300,-0.293400,-0.558800,0.690000,-0.047830,0.722200 0.391900,-0.327700,0.524400,-0.999600,-0.028580,-0.002982 0.340800,-0.530300,0.571700,-0.979200,-0.203100,0.005711 -0.432900,0.403700,0.500700,-0.448500,0.027340,-0.893400 0.330400,-0.100300,-0.599400,-0.436800,-0.131000,-0.890000 -0.330200,-0.030610,0.542500,0.903300,0.191400,-0.384000 0.355300,-0.513100,0.521900,-0.327300,-0.249200,-0.911500 0.446200,0.293800,-0.522800,0.956000,0.056730,0.288000 0.391300,-0.563700,-0.535400,-0.002405,0.227000,-0.973900 0.412400,0.279300,-0.627200,-0.409300,-0.133300,0.902600 -0.334500,0.163800,0.630600,0.881800,-0.104400,0.460000 -0.426200,0.282700,0.621100,-0.562900,0.121100,0.817600 0.419900,0.408300,0.492100,0.138000,-0.000006,-0.990400 -0.355100,-0.519100,0.602500,-0.224800,-0.178800,-0.957900 0.422300,0.212900,-0.512400,0.161200,-0.123400,0.979200 -0.516700,0.457400,0.710100,-0.015490,-0.667700,0.744300 0.441400,-0.625400,0.552500,0.806300,0.048160,-0.589600 -0.411100,-0.115900,-0.512000,-0.879600,-0.122400,0.459800 0.373400,-0.470900,0.509200,-0.038120,-0.197400,-0.979600 -0.327000,-0.429800,-0.518200,0.910700,-0.195500,0.363800 -0.419500,0.312000,-0.616400,0.520100,-0.095950,0.848700 0.078320,0.452200,-0.537500,0.000000,-0.737700,0.675100 -0.329400,-0.073540,-0.544500,-0.977900,-0.142400,-0.153200 -0.349600,0.019140,0.626100,0.290600,-0.126200,0.948500 0.213200,0.300500,0.581200,-0.017880,-0.077170,0.996900 0.441600,0.024180,0.547900,-0.986400,0.157500,0.047470 -0.515900,0.485300,-0.250500,-0.674000,0.738800,0.000044 0.319500,-0.412800,0.548500,-0.989200,-0.146300,-0.012490 0.526500,0.467600,-0.485400,0.953700,0.300700,0.000119 -0.519400,0.480900,-0.702200,-0.657200,0.726700,-0.199700 -0.337600,0.129700,0.575100,-0.991900,0.083530,0.095460 0.298400,0.283200,-0.583600,-0.386700,-0.031400,-0.921700 0.435800,0.126200,-0.619800,-0.750300,0.027440,0.660500 0.433600,0.449200,-0.506500,-0.614600,-0.412900,-0.672100 0.319900,-0.335900,-0.507400,0.691100,0.065190,-0.719800 0.381800,-0.320100,-0.560300,0.792800,0.063210,-0.606200 -0.428700,0.260300,-0.500700,-0.233600,-0.154800,0.959900 -0.401500,-0.453000,-0.514000,-0.750100,-0.005949,0.661300 0.422900,-0.066500,0.566600,0.944600,-0.235500,0.228400 -0.378700,0.079310,0.523600,0.103800,0.030610,-0.994100 -0.371200,-0.135300,-0.501300,-0.059390,-0.123100,-0.990600 -0.360100,0.452200,0.637000,-0.008924,-0.743300,0.668900 0.399100,-0.646600,-0.555500,0.089900,0.196400,-0.976400 -0.343900,-0.517000,0.537400,-0.824400,0.276300,0.494100 0.406000,0.282500,0.492800,0.398900,-0.267500,-0.877100 0.371600,0.184700,0.516600,0.184400,0.153100,0.970800 0.354100,0.245500,0.506500,-0.217600,-0.239900,-0.946100 0.172300,0.337900,-0.540000,-0.087330,-0.102000,0.990900 0.044390,0.452200,0.537200,0.000000,-0.707700,-0.706500 -0.391600,-0.533700,0.603700,0.290400,-0.288300,-0.912500 -0.492200,0.495800,0.219200,-0.129500,0.991600,0.000000 0.437500,-0.606000,0.590800,-0.909800,-0.316500,-0.268500 -0.367800,-0.554000,-0.606500,-0.193400,-0.152800,0.969100 -0.447000,0.439600,-0.548200,0.995800,-0.041060,0.082420 -0.331800,0.180900,0.619400,-0.940600,0.105300,-0.322600 -0.317500,0.384800,-0.525400,0.968600,0.000050,0.248500 -0.367600,-0.021760,0.519600,-0.159700,-0.131000,0.978400 0.370300,-0.497100,0.515300,-0.076000,-0.223500,-0.971700 0.522200,0.476900,-0.647200,0.862400,0.506300,-0.000090 0.344500,-0.558100,-0.597900,-0.948200,-0.142300,-0.284100 -0.399700,-0.484500,-0.579100,0.679300,-0.278400,0.679000 0.379600,-0.638100,0.553000,-0.515800,-0.245200,-0.820900 0.354800,0.283000,-0.485400,-0.998200,-0.007793,0.059130 -0.377600,-0.375000,0.504300,0.480800,0.050880,0.875400 -0.348300,-0.091050,0.602600,-0.075020,0.220900,-0.972400 -0.439100,0.115000,-0.619500,-0.706800,-0.130600,-0.695200 -0.461300,0.493000,-0.688900,0.000000,0.910800,-0.412900 -0.435800,0.431800,-0.495600,-0.405600,0.000256,0.914100 0.337400,-0.351100,0.495100,-0.202100,-0.060290,-0.977500 0.328700,-0.449600,0.536000,0.973800,0.162400,0.159100 -0.321200,-0.407200,-0.521700,0.943100,-0.217500,0.251500 0.394800,-0.249000,0.510200,0.980300,-0.092540,-0.174300 -0.507200,0.491400,0.344500,-0.459800,0.888000,0.000000 0.439500,0.093370,0.612900,0.797900,-0.181300,0.574900 0.321200,0.384800,0.618600,0.756900,0.005842,-0.653500 0.449600,0.189000,-0.539700,-0.976400,0.025180,-0.214400 0.327500,0.228500,0.572700,0.980300,0.182400,0.075990 0.387500,-0.389600,-0.557000,-0.918600,-0.181000,0.351200 -0.330000,0.178300,0.594900,-0.990700,0.132500,0.032480 0.337100,-0.390900,-0.583300,-0.087020,0.129300,-0.987800 0.365400,-0.501900,0.595600,0.029960,-0.220700,-0.974900 0.434100,0.253800,-0.508700,0.305800,-0.179500,0.935000 -0.328900,0.454600,0.618300,-0.088240,-0.979800,-0.179500 0.526500,0.467500,-0.540200,0.954000,0.299900,0.000107 0.306200,0.306500,0.588100,-0.683700,-0.004078,0.729800 -0.311300,0.400500,0.611000,-0.967800,0.000000,-0.251700 0.211400,0.478900,-0.706200,0.001473,0.579400,-0.815100 -0.382700,-0.311800,0.553500,0.906300,-0.047990,-0.419800 -0.323900,0.252500,-0.533000,0.963600,-0.223400,0.146900 -0.413700,0.432400,0.623400,-0.515400,0.000567,0.856900 0.337100,0.153500,0.583000,0.988700,0.129400,0.075680 -0.389000,-0.381500,0.549000,0.950500,-0.166400,-0.262500 -0.320100,0.267100,-0.603400,-0.967100,0.173400,0.186000 -0.385200,-0.296500,0.552100,-0.928500,0.044180,0.368700 -0.414200,-0.088380,0.545600,0.977700,0.207000,-0.035200 0.321700,-0.117700,-0.585100,0.885700,0.026340,0.463500 -0.336600,-0.225400,0.582700,0.003841,-0.119600,0.992800 0.328400,-0.471700,0.559100,-0.981300,-0.192200,-0.006646 -0.360500,-0.218500,-0.491800,0.052680,0.057170,0.997000 -0.320300,0.273600,-0.539900,-0.977600,0.188800,-0.093480 -0.404300,0.384800,0.625400,0.362200,0.000000,-0.932100 0.338000,0.447200,0.631000,-0.146900,-0.413400,0.898600 0.356700,0.312100,0.332600,-0.674400,-0.706200,-0.215400 0.392100,-0.490500,-0.588600,-0.539400,-0.308500,0.783500 0.370600,0.344700,0.230800,-0.004117,-0.958800,-0.284000 -0.375300,0.337800,-0.629200,-0.105800,0.000000,-0.994400 -0.357800,0.004585,-0.617900,-0.327600,0.232300,0.915800 -0.438800,-0.001929,-0.551300,-0.976900,-0.212700,-0.020110 0.521700,0.477100,-0.294900,0.859700,0.510800,0.000071 -0.345300,0.048350,0.541500,-0.824500,-0.019180,0.565500 0.430900,0.188800,0.514500,-0.188900,0.103100,0.976600 0.485200,0.496200,0.093970,-0.007012,1.000000,0.000000 0.392700,-0.416600,0.562600,-0.822900,-0.183000,-0.537900 0.234900,0.486300,-0.699100,0.000000,0.770000,-0.638000 0.355100,-0.609100,-0.602300,-0.973700,-0.205100,-0.098770 -0.382900,-0.265100,0.556800,-0.857900,-0.103100,0.503300 0.360600,-0.426600,-0.509000,0.047990,0.156800,-0.986500 -0.325700,-0.155700,-0.514200,-0.795400,-0.187300,-0.576500 0.345900,0.213000,-0.519900,-0.401000,-0.154600,0.902900 0.340400,-0.068490,-0.522500,0.609400,-0.166600,-0.775200 -0.439200,0.442100,-0.597500,-0.858700,-0.154900,-0.488500 -0.328200,0.254300,0.632500,0.473100,-0.007488,0.881000 0.311300,0.327400,0.537300,-0.573600,0.000003,-0.819100 0.191300,0.310700,0.573500,-0.584900,-0.810600,0.028910 0.420400,0.024440,0.613100,0.556800,-0.221100,0.800700 0.512300,0.488200,0.396700,0.574900,0.818200,-0.000047 0.437700,0.044130,0.527500,-0.737600,0.149800,0.658400 0.364500,0.295200,-0.633500,-0.068670,-0.095810,0.993000 0.335000,0.314300,0.504000,0.435000,-0.000021,0.900400 -0.435500,0.377600,0.601400,-0.842800,-0.000017,0.538200 -0.435800,0.015720,0.556100,0.980100,0.198500,-0.007101 -0.398900,-0.121300,0.575900,0.801600,0.192700,-0.565900 0.404600,-0.514500,-0.526100,0.508900,-0.103600,0.854600 -0.311600,0.282800,0.595300,-0.979700,0.200100,0.014640 0.401100,-0.500100,0.517100,0.368700,-0.156900,-0.916200 0.321000,-0.327600,0.570400,-0.580600,-0.007949,0.814200 -0.242700,0.480700,-0.704600,0.000288,0.597700,-0.801700 -0.312500,-0.288700,-0.554200,-0.962500,0.041760,0.268000 0.431500,0.289700,-0.505800,-0.523900,0.085540,-0.847500 0.379500,-0.168300,-0.502100,-0.241000,-0.080030,-0.967200 -0.379700,-0.591300,-0.619200,0.048120,0.234800,-0.970900 -0.376600,-0.628900,-0.556000,-0.668100,0.283200,-0.688100 -0.446000,0.252000,0.597500,-0.964900,0.128400,0.229200 0.372600,0.368300,0.106100,-0.000404,-0.992500,-0.122100 0.384400,-0.392000,0.564600,-0.700100,-0.201700,-0.685000 0.419900,-0.544600,0.581700,-0.873700,-0.289300,-0.391000 -0.352200,-0.076570,0.608000,0.023000,-0.196700,0.980200 0.518800,0.481700,-0.198300,0.813800,0.581100,0.000180 0.360500,-0.612400,-0.619100,-0.813500,-0.048850,-0.579400 0.391200,-0.665700,-0.622900,0.008628,-0.428500,0.903500 -0.324800,-0.179200,-0.576300,-0.634000,0.034910,0.772600 -0.340600,0.102800,-0.556800,0.985300,0.020370,0.169600 0.320800,-0.104400,-0.551900,0.988400,-0.121400,-0.091150 -0.180100,0.490500,-0.693700,-0.000024,0.863400,-0.504400 0.454200,0.122400,0.543700,-0.981300,0.085550,0.172500 0.360500,-0.591800,-0.554100,0.755100,0.431500,-0.493600 0.386600,0.110300,-0.524000,-0.080010,0.025720,0.996500 -0.214000,0.452100,-0.588100,0.000000,-0.841200,-0.540700 -0.321300,0.354200,0.508600,0.768100,-0.005850,-0.640300 0.394900,0.367600,-0.117900,0.525200,-0.845300,0.098500 -0.519400,0.481700,0.023500,-0.775800,0.631000,0.000108 -0.335800,0.273200,-0.507000,-0.382500,0.259500,-0.886800 -0.402500,0.288700,-0.626100,0.199800,-0.115600,0.973000 0.360100,-0.374000,-0.498500,-0.000232,-0.112800,0.993600 -0.413500,0.011510,-0.611200,0.487500,0.248700,0.837000 -0.454300,0.169400,-0.537000,0.966000,-0.000587,-0.258600 -0.380000,-0.322400,-0.559500,0.709300,-0.046250,0.703400 -0.369200,-0.647800,-0.609700,0.932500,-0.265700,-0.244800 0.379700,-0.652300,-0.625000,0.434700,0.325800,0.839600 -0.386800,-0.064750,-0.603700,-0.230800,-0.232700,-0.944800 -0.329700,-0.034610,0.554200,-0.976500,-0.134600,0.168600 -0.382100,-0.234400,0.561000,0.802900,0.156300,-0.575300 -0.368000,0.353600,-0.193600,0.014440,-0.978800,0.204300 -0.501100,0.469700,0.710600,-0.000027,0.324800,0.945800 -0.338200,0.135500,0.631700,0.810300,-0.111300,0.575300 0.519100,0.481500,0.052200,0.819000,0.573800,-0.000012 -0.327900,-0.487100,0.560000,0.974800,-0.218900,-0.041840 0.350200,-0.024950,-0.618300,-0.156300,-0.197200,-0.967800 -0.352200,0.298100,0.635500,-0.004527,0.122100,0.992500 -0.321400,0.277500,0.519400,-0.835800,0.270100,0.478000 0.355800,0.262600,0.634800,-0.050290,0.100200,0.993700 0.375400,-0.377600,-0.569300,-0.643900,-0.093310,0.759400 0.443700,0.220600,0.512100,0.447400,-0.119600,-0.886300 0.456400,0.142100,0.578700,0.994400,0.003747,0.106000 0.337300,0.020490,0.591400,0.990500,-0.135900,-0.020240 0.435800,0.452300,-0.581800,-0.639700,-0.764100,0.083440 0.352300,-0.568000,-0.551300,0.836400,0.189300,-0.514400 -0.347900,-0.174400,0.501300,-0.115000,-0.102400,0.988100 -0.497500,0.494900,0.046980,-0.226200,0.974100,0.000000 0.407200,-0.545200,0.600700,0.478000,0.309100,0.822100 -0.341100,-0.545900,0.564100,0.970700,-0.225700,-0.082700 -0.312400,-0.274100,-0.517300,-0.987400,0.002363,-0.158300 0.359700,-0.506700,-0.600300,0.092660,-0.205300,0.974300 0.398900,-0.448800,-0.526800,-0.937000,-0.082470,-0.339400 0.426700,-0.028910,0.584700,0.872800,-0.237900,0.426200 0.425500,0.307500,-0.613300,-0.741300,-0.104200,0.663100 -0.415400,-0.092130,-0.513900,-0.877600,-0.101800,0.468500 -0.355700,0.292100,0.391900,0.986500,-0.163500,-0.010220 -0.444700,-0.635500,-0.603900,-0.908200,0.017290,-0.418200 -0.516300,0.485000,0.195700,-0.683600,0.729900,0.000021 -0.172200,0.496100,0.672700,0.000000,0.996500,0.083150 0.386300,-0.361700,0.559300,0.808000,0.064900,0.585600 0.367800,-0.178900,-0.500200,0.005647,-0.066270,-0.997800 -0.317400,0.290800,0.518000,0.952700,-0.027560,-0.302800 0.419700,-0.030800,0.514000,0.366100,0.035790,-0.929900 0.444400,-0.640000,0.587300,-0.964700,0.179100,-0.193100 0.375700,0.196900,-0.515800,-0.095270,-0.125700,0.987500 0.419300,-0.092220,0.525500,0.963500,-0.173400,-0.204200 0.007843,0.490500,-0.693700,-0.000025,0.865600,-0.500800 -0.444400,0.314200,0.563400,-0.993400,0.046500,0.104400 -0.355000,0.377800,-0.078390,0.985000,-0.172000,0.015240 0.356700,-0.545100,-0.610600,-0.318200,0.140300,-0.937600 -0.418300,0.384800,-0.494400,0.142100,0.000006,-0.989800 0.337400,0.130800,-0.628700,-0.938700,-0.091710,-0.332200 0.428100,-0.590900,0.599100,-0.771100,-0.347700,-0.533400 -0.344900,0.138700,0.538500,0.767000,-0.134700,-0.627300 -0.415900,-0.100200,-0.539600,0.982200,0.186600,0.019650 -0.338200,0.282800,0.636300,0.209800,0.042950,0.976800 0.315200,-0.124400,-0.563800,-0.993200,0.116200,0.008991 0.324400,-0.422600,-0.522800,0.835600,0.249200,-0.489500 0.341000,0.103100,0.611200,0.967600,0.028010,-0.250800 0.368000,0.431800,0.502500,0.021880,0.001203,0.999800 0.345200,-0.074150,0.516300,0.559600,-0.175800,0.809900 0.433600,-0.586100,0.578600,-0.953300,-0.270100,-0.135200 -0.242500,0.276500,0.581300,-0.013150,-0.085070,0.996300 -0.349600,-0.529700,0.531800,0.470500,-0.266300,-0.841300 -0.453300,0.228100,0.548000,-0.997300,0.069590,-0.024760 -0.438400,0.181300,0.616700,0.782500,-0.013710,-0.622400 -0.397900,0.447200,0.415000,-0.946200,-0.323500,0.000000 -0.324500,-0.444500,0.526400,0.929100,-0.182600,-0.321700 -0.320500,-0.126700,0.589300,0.787300,-0.027320,0.616000 -0.369600,-0.149500,-0.585400,0.237500,0.237100,0.942000 0.340300,-0.498500,0.527800,-0.808800,-0.289300,-0.512000 0.337700,-0.438200,-0.514700,0.412700,0.159700,-0.896700 -0.338600,0.113400,0.627400,0.928900,-0.042060,0.368000 -0.368900,-0.007530,-0.515300,0.117000,0.128400,0.984800 0.375600,0.361300,-0.632900,0.117900,0.000000,-0.993000 0.354000,-0.516100,0.599200,-0.305800,0.134700,0.942500 -0.383600,0.362700,-0.148900,-0.016840,-0.985800,0.167200 -0.384700,-0.186000,0.572800,-0.690600,-0.162900,0.704700 -0.349900,-0.106300,-0.595500,-0.054280,0.197800,0.978700 0.340500,0.405700,0.502400,0.308200,-0.003321,0.951300 0.398200,-0.016430,-0.515600,0.006301,0.108500,0.994100 -0.367900,0.408300,0.633800,-0.101000,0.001572,0.994900 -0.400800,0.007657,-0.615700,0.264200,0.255300,0.930100 -0.395300,-0.162400,-0.568700,-0.761600,-0.251100,-0.597400 -0.415600,0.180000,0.518100,0.071950,0.123000,0.989800 0.360600,-0.405000,0.499300,-0.052770,-0.152300,-0.986900 0.440300,0.447200,0.507900,-0.783700,-0.368800,0.499800 0.359400,-0.214500,-0.579200,-0.243700,0.165700,0.955600 0.507100,0.491400,-0.430600,0.444700,0.895700,0.000039 -0.344400,-0.178500,-0.584000,0.002576,-0.136200,-0.990700 0.447100,0.447200,0.532400,-0.957500,-0.288300,0.000429 -0.367800,0.079530,0.634100,0.008359,0.123000,-0.992400 0.168200,0.327000,-0.553300,-0.532900,-0.845900,0.022770 -0.436500,0.045090,0.535700,0.844400,0.078330,0.530000 -0.335900,-0.484700,-0.577900,-0.913700,0.103900,0.392900 0.399500,0.000485,-0.616700,-0.359400,0.266700,0.894300 -0.318600,0.345700,-0.518500,0.972800,0.000015,0.231700 0.311400,-0.272900,-0.506100,-0.846700,0.013780,0.531900 -0.306900,0.314300,0.595100,0.968400,0.000001,0.249600 0.337400,-0.526100,-0.589400,-0.954300,-0.156600,-0.254600 0.350300,-0.501200,-0.525600,0.393300,0.278000,-0.876400 0.420200,0.480500,0.704800,-0.000295,0.593300,0.805000 -0.352000,-0.520200,-0.525600,0.525100,-0.271200,0.806700 -0.389800,-0.383400,0.511400,-0.840500,0.068470,-0.537500 -0.344800,-0.513400,0.600600,0.564900,0.076170,0.821600 0.352100,0.283300,0.630400,0.061190,-0.070390,-0.995600 -0.423700,0.332600,-0.613500,0.608800,0.031470,0.792700 0.306100,0.276600,0.583600,-0.373000,-0.270000,0.887700 0.392900,0.040310,-0.626900,-0.132300,0.125600,0.983200 -0.363300,-0.632300,0.572800,0.935800,-0.241400,-0.257000 -0.393400,0.392600,-0.624800,0.184500,-0.025100,0.982500 -0.328900,0.246000,0.526800,-0.783300,0.284400,0.552800 0.407900,-0.570200,0.605900,-0.418100,-0.310400,-0.853700 -0.431800,-0.591900,0.552600,-0.915500,0.125000,-0.382500 -0.325600,0.280600,-0.506400,0.588400,-0.160300,0.792500 0.319900,0.330000,0.524500,0.984000,0.000000,0.178300 0.317600,0.337800,0.612400,0.898300,0.002536,-0.439400 0.406100,0.282400,0.628400,0.171600,0.108400,0.979200 -0.306900,0.330000,0.595100,0.968400,0.000012,0.249600 -0.383900,-0.562200,0.612700,0.108400,-0.250300,-0.962100 -0.343500,-0.534200,0.594400,-0.901900,0.068240,-0.426500 0.385400,-0.414800,-0.573700,0.726500,0.215000,-0.652700 -0.422000,0.110700,0.522400,-0.092610,0.002535,-0.995700 0.393200,0.330000,0.624300,-0.154000,-0.000450,-0.988100 0.521400,0.477700,0.448900,0.857500,0.514400,0.007053 0.526100,0.468400,0.681200,0.941600,0.336800,-0.001030 0.306700,0.447200,-0.602600,-0.943600,-0.319500,-0.086540 0.434300,0.315600,-0.506400,-0.661900,0.017980,-0.749400 0.383600,-0.377300,-0.508900,-0.682600,-0.007555,-0.730700 0.400400,-0.092580,-0.512900,-0.449200,-0.031330,-0.892900 0.446400,0.129000,0.611500,0.835900,-0.028640,0.548100 0.336100,-0.478800,-0.522700,-0.595200,-0.292300,0.748500 -0.398000,-0.225800,-0.517100,-0.992100,-0.095540,0.080750 -0.380300,0.012400,-0.516800,0.088800,0.114200,0.989500 0.392800,-0.384400,0.546900,-0.950700,-0.166800,-0.261400 -0.447200,0.267400,0.579300,-0.985300,0.107300,0.132800 0.384000,-0.174500,0.571900,-0.578500,0.197300,-0.791500 0.390600,0.270100,0.462000,0.175200,-0.984500,-0.000112 0.437400,-0.623600,0.610900,0.753100,0.326300,0.571300 0.347800,0.198100,-0.521800,-0.366500,-0.159500,0.916700 0.400400,0.402400,0.625800,0.179000,0.000000,0.983900 0.507100,0.491400,-0.180100,0.434200,0.900800,-0.000012 0.358400,0.453000,-0.637200,-0.072830,-0.850400,-0.521100 0.439400,0.186400,0.619400,0.690200,0.029550,0.723000 -0.314900,0.290700,-0.594500,-0.972400,0.228400,0.048560 -0.289600,0.423900,0.580600,0.130700,-0.013650,0.991300 0.340100,0.110800,0.586900,0.998100,-0.026980,0.054840 -0.391000,-0.395800,0.518700,0.931300,-0.064400,0.358400 0.213100,0.292700,0.568900,-0.693800,-0.720100,0.002918 -0.375800,0.279700,-0.401400,-0.000013,-0.900900,0.434100 0.507100,0.491400,-0.579400,0.448600,0.893700,0.000059 -0.336000,0.042960,-0.584200,0.998300,0.032360,0.047940 -0.443100,0.173400,-0.615900,-0.795000,0.006088,-0.606500 0.331700,0.032310,-0.595100,-0.999200,0.038290,-0.012010 0.126400,0.348800,-0.571500,-0.384400,-0.923100,-0.011650 -0.404300,-0.528100,-0.525200,0.310300,0.110500,-0.944200 -0.376100,-0.553900,-0.527900,0.121100,-0.236100,0.964100 0.412300,0.099450,-0.634400,0.276100,-0.176400,-0.944800 0.507100,0.491400,0.352300,0.485200,0.874400,0.000000 0.396900,0.276300,-0.485300,0.969700,-0.148900,0.193600 0.433800,-0.601700,0.545100,0.699300,0.005296,-0.714800 0.432000,0.107100,0.620000,-0.613900,0.171400,-0.770500 -0.446300,0.147300,-0.611600,-0.832500,0.005000,-0.553900 0.511900,0.488600,-0.276600,0.570600,0.821200,-0.000084 -0.394100,-0.187100,0.516200,0.947800,0.069370,0.311200 0.408400,-0.085560,-0.578400,-0.868700,0.237400,0.434800 -0.442700,0.369100,0.524400,0.985300,0.010820,0.170500 0.446000,0.173400,-0.601600,-0.958600,-0.003668,0.284700 -0.331100,-0.107100,-0.518200,0.756500,0.194600,0.624400 -0.415000,0.220100,-0.633500,-0.262600,0.056330,-0.963300 0.427600,-0.654100,0.617000,0.580800,-0.328600,0.744700 0.320500,0.277800,-0.521600,0.863100,0.196400,-0.465300 0.410400,0.178200,0.634500,0.225900,-0.011520,0.974100 0.428100,-0.571100,-0.579000,0.960600,0.247600,-0.126300 -0.369100,-0.256700,-0.567400,0.455700,0.139900,0.879100 0.365000,-0.370400,0.571600,-0.291600,-0.110000,-0.950200 -0.426500,0.027270,0.523800,-0.342000,-0.000022,-0.939700 0.527900,0.462100,-0.227000,0.996500,0.083350,0.000039 -0.523400,0.454800,0.493300,-0.261200,-0.965300,0.000000 0.394500,-0.391000,-0.525200,0.988400,0.120800,0.092480 0.071540,0.366700,-0.548400,-0.185200,-0.976500,0.110300 -0.448500,-0.633900,-0.565400,-0.988400,-0.027200,0.149400 -0.423500,-0.072790,-0.527100,-0.971800,-0.166400,0.166800 -0.367800,-0.343400,0.499700,0.140200,0.045110,0.989100 -0.365300,-0.427100,0.508800,-0.023850,0.151900,0.988100 -0.374800,-0.099460,-0.597900,-0.146800,-0.210300,-0.966500 0.524000,0.473400,0.553300,0.901000,0.433700,-0.006835 0.353500,-0.528200,-0.603900,0.384200,-0.098500,0.918000 0.512300,0.488200,0.028720,0.575100,0.818100,0.000000 -0.365700,0.042920,-0.627500,0.049720,-0.145800,-0.988100 -0.359000,-0.193900,-0.581200,-0.127600,-0.113100,-0.985400 0.492000,0.495800,-0.508900,0.128000,0.991800,-0.000072 0.408600,-0.485300,-0.534600,0.951300,0.148900,0.269900 0.329500,-0.128200,0.584600,0.663900,-0.002584,-0.747800 -0.321300,-0.097470,0.589100,0.934000,0.061570,0.351900 0.375200,-0.139800,0.588400,0.232100,-0.219500,0.947600 -0.527900,0.462100,0.673300,-0.999500,0.032070,-0.000027 -0.527900,0.462100,0.383600,-0.998900,0.046060,-0.000093 -0.321300,-0.127700,-0.558500,-0.992200,-0.123900,-0.012830 -0.338100,0.194400,0.632600,-0.671400,0.054340,-0.739100 -0.406900,0.040430,-0.519300,-0.010170,-0.023390,-0.999700 -0.357400,0.231300,-0.509500,0.210900,-0.248300,0.945400 -0.353900,-0.587800,0.556900,0.873800,-0.297600,-0.384500 0.331100,0.172700,-0.586900,0.986600,0.149400,-0.066020 0.372100,-0.589500,0.542100,0.448700,0.328700,0.831000 0.421600,0.314300,-0.497600,0.243100,0.007222,0.970000 0.321400,-0.171900,-0.509600,-0.684000,0.144400,0.715000 -0.453800,0.196900,0.555900,-0.999800,-0.002437,0.021000 0.345500,0.126700,-0.540400,-0.803500,-0.069570,0.591200 -0.424300,-0.571300,0.593600,-0.878600,0.308800,0.364200 -0.359500,-0.610800,-0.583500,0.963500,-0.257400,0.073740 -0.204800,0.300400,-0.563700,0.645900,-0.763400,-0.000082 -0.316100,0.426600,-0.582600,-0.956100,-0.000024,-0.293000 -0.328500,0.189700,0.595700,-0.993300,0.113000,0.024310 -0.314000,-0.325400,-0.528700,-0.993800,0.061340,-0.092640 0.383500,-0.076590,-0.511900,0.005279,-0.111800,-0.993700 -0.304700,0.278800,0.587000,0.719900,-0.174800,0.671700 0.424300,0.314300,0.495200,-0.263300,0.007532,0.964700 0.388700,-0.144800,-0.578200,-0.676900,0.251200,0.691900 -0.408000,0.007664,-0.516800,0.005303,-0.091070,-0.995800 -0.450800,0.173400,0.547700,0.992200,0.029920,0.121200 0.200400,0.304000,-0.553300,-0.607800,-0.794000,0.011990 0.338300,-0.092660,0.595500,0.443100,0.105400,-0.890200 0.412200,0.033290,-0.622300,0.445600,-0.174900,-0.878000 0.430400,0.387400,0.610600,0.690300,0.014230,0.723400 0.433900,0.266600,-0.615300,0.788900,0.148900,-0.596200 -0.429100,-0.015890,0.564100,0.968700,0.228100,-0.097580 -0.110000,0.355300,-0.577400,0.320200,-0.919600,-0.227600 -0.500500,0.492100,0.688000,-0.169200,0.950200,0.261800 0.336300,-0.226400,0.575700,0.103800,0.093980,-0.990200 -0.360400,-0.405000,-0.499500,0.071560,-0.171300,0.982600 -0.390500,0.373000,0.062780,-0.139900,-0.989200,-0.042580 -0.306200,0.314300,-0.588100,0.682000,-0.000035,-0.731400 -0.370200,0.094860,-0.522100,0.288900,0.035340,0.956700 -0.523400,0.454800,0.430600,-0.261200,-0.965300,0.000000 0.257700,0.495800,0.679000,0.000000,0.990100,0.140600 0.384000,-0.263000,0.557400,0.777500,-0.118300,0.617700 0.330100,-0.030270,-0.556100,0.981000,-0.121300,-0.151400 0.445600,0.337800,-0.524900,0.989000,0.000005,0.147700 -0.431600,0.290700,0.609900,0.813700,-0.152400,-0.561000 -0.314000,-0.217500,-0.516700,0.949500,0.101600,0.296800 0.432900,-0.604700,-0.552400,0.829400,0.085310,0.552100 0.361100,0.375300,-0.000089,-0.072070,-0.997400,-0.007314 0.204700,0.308000,-0.539800,-0.175600,-0.186000,0.966700 -0.527200,0.457300,0.049600,-0.848100,-0.529800,0.000000 0.438500,-0.607100,-0.575800,0.964800,0.261300,-0.029640 -0.364500,0.179600,-0.516600,0.304200,-0.136800,0.942800 0.373400,-0.647800,-0.561600,-0.684900,-0.212500,0.697000 -0.323100,-0.123900,-0.525400,0.915300,0.189100,0.355600 0.444900,0.124600,-0.535100,-0.750800,0.111300,-0.651100 -0.412200,-0.567300,-0.533400,0.257600,0.148200,-0.954800 0.328100,-0.375700,-0.576900,0.386300,-0.097210,0.917200 -0.431000,-0.575100,-0.576100,0.940300,-0.310000,0.140500 0.343100,0.187900,-0.530900,0.756800,0.155600,-0.634800 0.351400,-0.567100,0.551400,-0.933700,-0.255000,-0.251200 0.376300,-0.553800,-0.531600,-0.099010,-0.231900,0.967700 0.424000,0.189400,-0.517800,-0.206000,0.141400,-0.968300 0.419500,-0.651400,-0.556000,-0.193100,0.293100,-0.936400 0.398800,-0.160100,0.564800,0.825800,-0.247200,0.506900 0.315000,-0.179100,0.524900,-0.983700,0.085890,-0.158000 -0.078430,0.370200,-0.540600,0.073360,-0.278800,0.957500 0.351200,0.126600,0.633300,-0.373300,-0.090150,0.923300 -0.318200,0.330000,-0.621200,0.723600,0.000000,-0.690200 -0.397800,-0.178800,0.547700,-0.976000,-0.146600,0.160800 -0.436400,0.009426,0.571300,-0.973400,-0.209800,0.091940 0.332700,0.079370,-0.602800,-0.999200,0.020020,-0.034970 0.385700,0.367600,0.111600,0.012540,-0.992800,-0.119200 -0.390400,-0.245300,-0.544600,0.939900,0.124800,0.318000 -0.433900,0.494500,0.684000,0.000000,0.969500,0.245100 0.329800,0.210100,0.585100,0.989200,0.136000,0.055210 -0.390700,-0.197200,-0.564000,-0.785200,-0.140500,-0.603100 0.343100,-0.139100,0.504900,0.306800,-0.154700,0.939100 -0.359900,0.416100,0.502200,-0.067640,0.010620,0.997700 0.233200,0.273600,-0.568900,-0.588900,-0.808200,-0.005080 0.405100,-0.133000,-0.531600,-0.977300,0.197400,-0.076670 0.340700,0.141500,0.563300,0.984700,0.129500,0.116500 -0.400400,0.322200,-0.484700,-0.776800,0.000000,0.629800 -0.328300,0.400500,0.629400,-0.317900,0.000000,-0.948100 -0.374700,-0.302600,-0.563300,0.596200,-0.033230,0.802200 -0.327400,0.314300,-0.626400,0.405000,0.001150,-0.914300 -0.360200,-0.023340,0.616500,-0.039130,0.212800,-0.976300 0.343700,0.439500,-0.503900,0.144000,-0.140100,-0.979600 -0.400100,0.287800,-0.499900,-0.356500,0.074270,-0.931300 -0.419100,-0.062440,0.556100,0.974800,0.210200,-0.074860 -0.402200,-0.065650,-0.597000,-0.513000,-0.264200,-0.816700 0.336600,0.251500,0.627500,0.494600,0.049610,-0.867700 0.407300,0.094980,-0.521900,-0.048610,0.039400,0.998000 -0.394600,-0.413400,0.548300,0.979400,-0.147100,-0.138200 -0.392500,-0.382200,-0.510300,0.879000,-0.032720,-0.475600 0.400800,-0.470500,0.570700,-0.817200,-0.245600,-0.521400 0.399400,0.236100,-0.636000,-0.156300,-0.082560,0.984200 -0.395100,-0.147800,-0.500000,-0.338500,0.036050,0.940300 0.328500,-0.265300,-0.575200,0.124100,0.077990,0.989200 -0.393100,-0.422500,0.566800,-0.866700,0.183500,0.463900 -0.029340,0.493000,0.688800,0.000000,0.910700,0.413100 -0.442200,0.080200,0.601000,-0.925600,-0.150700,0.347200 0.373200,-0.604400,-0.626100,-0.216200,0.265200,-0.939700 -0.395000,-0.195000,0.532600,0.993600,0.099120,-0.054870 -0.308300,-0.351000,0.548100,0.998400,-0.055400,0.006275 0.336000,0.149900,-0.563800,0.987700,0.122900,-0.097060 -0.217500,0.288800,0.577300,0.708700,-0.702700,0.063100 0.354800,0.353500,-0.266200,-1.000000,0.000000,0.000000 -0.438400,0.454500,0.242700,0.000000,-1.000000,0.000000 -0.172200,0.454500,-0.626300,0.000000,-1.000000,0.000000 -0.211400,0.454500,-0.172200,0.000000,-1.000000,0.000000 0.354800,0.392600,-0.368000,-1.000000,0.000000,0.000000 0.266200,0.454500,-0.602800,0.000000,-1.000000,0.003810 0.305400,0.454500,-0.133100,0.000000,-1.000000,0.000000 -0.266200,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.469700,0.496600,0.485400,0.000000,1.000000,0.000000 0.493300,0.454500,-0.469700,0.000000,-1.000000,0.000000 -0.414900,0.454500,0.328900,0.003810,-1.000000,0.000000 0.397000,0.400400,-0.219200,1.000000,0.000000,0.000000 0.195800,0.392600,-0.539500,0.000000,0.000000,1.000000 -0.354800,0.400500,-0.180100,0.999800,0.021310,0.000000 0.397000,0.377000,-0.203600,1.000000,0.000000,0.000000 -0.443300,0.299200,0.564200,0.990400,-0.111600,-0.081650 -0.394900,0.373700,-0.626600,-0.149400,0.000000,-0.988800 -0.363700,0.150000,0.523600,0.216300,-0.126900,-0.968000 0.415900,-0.040930,-0.523200,-0.730100,0.078570,-0.678800 0.527200,0.457300,0.250600,0.849300,-0.527900,0.000000 -0.109600,0.447100,0.583000,0.000000,-0.493900,0.869500 0.360200,0.496600,-0.101800,0.000000,1.000000,0.000000 -0.320200,-0.170400,0.515700,-0.836600,-0.134400,0.531100 -0.332700,0.298700,-0.628800,0.364100,0.010610,-0.931300 0.312500,-0.347200,0.554200,-0.979100,-0.090020,0.182100 -0.318300,-0.383000,-0.532200,-0.985600,0.148100,-0.082020 -0.449000,0.452200,0.529800,-0.668100,-0.743800,-0.019590 0.415200,-0.082890,-0.548200,-0.977100,0.208200,0.044960 -0.323100,0.228400,0.563800,0.970500,-0.225100,-0.085960 0.399900,0.142100,-0.638000,-0.144200,-0.000445,0.989500 -0.436200,0.030410,0.531900,-0.872800,-0.109600,-0.475700 -0.410700,-0.100100,0.518900,-0.890700,-0.123600,-0.437400 -0.007808,0.496600,0.141000,0.000000,1.000000,0.000000 -0.039130,0.496600,0.242700,0.000000,1.000000,0.000000 0.047000,0.454500,0.141000,0.000000,-1.000000,0.000000 0.274100,0.454500,-0.062610,0.000000,-1.000000,0.000000 0.086150,0.454500,0.172300,0.000000,-1.000000,0.000000 -0.469700,0.454500,-0.062610,0.000000,-1.000000,0.000000 -0.093930,0.454500,-0.446300,0.000000,-1.000000,0.000000 -0.422800,0.495600,-0.039130,0.000000,1.000000,0.000000 -0.438400,0.496600,0.070490,0.000000,1.000000,0.000000 0.354800,0.424000,0.054830,-1.000000,0.000000,0.000000 -0.203500,0.496600,0.054830,0.000000,1.000000,0.000000 -0.180100,0.454500,0.047000,0.000000,-1.000000,0.000000 0.133100,0.454500,-0.062610,0.000000,-1.000000,0.000000 -0.258300,0.496600,0.093970,0.000000,1.000000,0.000000 0.062660,0.496600,-0.368000,0.000000,1.000000,0.000000 -0.227000,0.496600,0.023510,0.000000,1.000000,0.000000 0.227100,0.496600,-0.015640,0.000000,0.999800,0.021310 -0.054780,0.496600,-0.203500,0.000000,1.000000,0.000000 -0.195700,0.495600,-0.054790,0.000000,1.000000,0.000000 0.141000,0.496600,-0.046950,0.000000,1.000000,0.000000 -0.086100,0.454500,-0.344500,0.000000,-1.000000,0.000000 0.133100,0.496600,-0.078270,0.000000,1.000000,0.000000 0.007851,0.496600,0.195800,0.000000,1.000000,0.000000 -0.309200,-0.186900,0.563000,0.990100,0.045370,0.132800 -0.360300,-0.046970,-0.608200,-0.062280,0.207500,0.976200 0.015680,0.454500,-0.414900,0.000000,-1.000000,0.000000 -0.186700,0.314000,-0.563100,0.587700,-0.809000,-0.000051 0.101800,0.454500,0.665500,0.000000,-1.000000,0.000000 -0.258400,0.495600,-0.015670,0.000000,0.999800,-0.021260 -0.355200,0.400500,0.007804,0.999100,0.014150,-0.038980 -0.329200,0.191400,0.614300,-0.970200,0.134500,-0.201700 0.376000,-0.038240,0.510800,-0.087270,0.119800,-0.989000 0.337200,0.095090,0.587200,-0.998300,0.027740,-0.052080 -0.477600,0.496000,-0.610700,0.036250,0.999300,0.000000 0.450500,0.314200,0.532400,0.999800,0.018650,0.000781 0.352400,0.314400,0.628200,-0.005953,-0.020270,-0.999800 0.423000,0.181000,0.514600,-0.090270,0.118300,0.988900 -0.516700,0.454500,-0.368000,-0.020180,-0.999800,0.000000 -0.313200,0.496600,-0.563700,0.000000,1.000000,0.000000 -0.354800,0.384800,-0.125300,1.000000,0.000021,0.000021 0.274100,0.454500,-0.485400,0.000000,-1.000000,0.000000 0.274100,0.322200,-0.581600,0.000000,0.000000,-1.000000 0.164400,0.454500,-0.250500,0.000000,-1.000000,0.000000 0.469800,0.454500,0.274100,0.000000,-1.000000,0.000000 -0.250500,0.496600,0.266200,0.000000,1.000000,0.000000 -0.156600,0.345700,0.581600,0.000790,-0.001564,1.000000 0.446300,0.454500,0.430600,0.000000,-1.000000,0.000000 -0.414900,0.496600,0.180100,0.000000,1.000000,0.000000 -0.446300,0.496600,0.501100,0.000000,1.000000,0.000000 0.438500,0.454500,-0.665500,0.000000,-1.000000,0.000000 -0.281800,0.496600,-0.602800,0.000000,1.000000,0.000000 0.396000,0.314300,-0.438400,1.000000,0.000000,0.000000 0.187900,0.454500,0.297500,0.000000,-1.000000,0.000000 -0.313200,0.454500,-0.297500,0.000000,-1.000000,0.000000 -0.289700,0.496600,-0.493200,0.000000,1.000000,0.000000 0.219200,0.454500,0.415000,0.000000,-1.000000,0.000000 0.195800,0.496600,0.336700,0.000000,1.000000,0.000000 -0.438400,0.495600,-0.469700,0.000000,1.000000,0.000000 0.187900,0.496600,-0.414900,0.000000,1.000000,0.000000 0.219200,0.496600,0.415000,0.000000,1.000000,0.000000 -0.258300,0.454500,0.266200,0.000000,-1.000000,0.000000 0.469800,0.454500,0.164400,0.000000,-1.000000,0.000000 0.219200,0.495600,0.250600,0.000000,1.000000,0.000000 0.289700,0.454500,-0.133100,0.000000,-1.000000,0.000000 -0.258400,0.495600,-0.313200,0.000000,1.000000,0.000000 -0.397000,0.400400,-0.352300,-1.000000,0.000000,0.000000 0.354800,0.369100,-0.289700,-1.000000,0.000000,0.000000 -0.172200,0.454500,0.180100,0.000000,-1.000000,0.000000 -0.397000,0.369100,0.227100,-1.000000,-0.000021,-0.000021 0.187900,0.454500,0.266200,0.000000,-1.000000,0.000000 0.289700,0.496600,0.508900,0.000000,1.000000,0.000000 0.281900,0.495600,0.258400,0.000000,1.000000,0.000000 -0.258300,0.496600,0.446300,0.000000,1.000000,0.000000 0.305400,0.496600,-0.336600,0.000000,1.000000,0.000000 -0.125200,0.454500,-0.610700,0.000000,-1.000000,0.000000 0.352300,0.496600,-0.234900,0.000000,1.000000,0.000000 0.148800,0.496600,-0.634200,0.000000,1.000000,0.000000 0.156600,0.496600,0.595100,0.000000,1.000000,0.000000 -0.242700,0.314300,-0.539500,0.000000,0.000000,1.000000 0.234900,0.496600,-0.281800,0.000000,1.000000,0.000000 -0.117400,0.496600,0.462000,0.000000,1.000000,0.000000 -0.164400,0.496600,0.360200,0.000000,1.000000,0.000000 -0.313200,0.454500,-0.195700,0.000000,-1.000000,0.000000 0.211400,0.392600,-0.581600,0.000000,0.000000,-1.000000 -0.156600,0.496600,0.383700,0.000000,1.000000,0.000000 0.148800,0.454500,-0.172200,0.000000,-1.000000,0.000000 0.109600,0.454500,0.454100,0.000000,-1.000000,0.000000 -0.117400,0.454500,0.109600,0.000000,-1.000000,0.000000 -0.172200,0.495600,-0.195700,0.000000,1.000000,0.000000 0.203600,0.416100,0.581600,0.000000,0.000000,1.000000 0.493300,0.454500,-0.242700,0.000000,-1.000000,0.000000 -0.250500,0.496600,-0.626300,0.000000,1.000000,0.000000 0.156600,0.454500,-0.148700,0.000000,-1.000000,0.000000 0.164400,0.454500,0.117500,0.000000,-1.000000,0.000000 0.148800,0.454500,-0.634200,0.000000,-1.000000,0.000000 0.305400,0.454500,0.227100,0.000000,-1.000000,0.000000 -0.164400,0.454500,-0.446300,0.000000,-1.000000,0.000000 -0.281800,0.454500,-0.234900,0.000000,-1.000000,0.000000 0.109600,0.369100,0.539500,-0.014890,-0.022440,-0.999600 0.133100,0.377000,0.539500,0.000000,0.000000,-1.000000 -0.446300,0.495600,-0.133100,0.000000,1.000000,0.000000 0.297500,0.496600,-0.101800,0.000000,1.000000,0.000000 0.109600,0.496600,0.242700,0.000000,1.000000,0.000000 -0.140900,0.496600,0.141000,0.000000,1.000000,0.000000 -0.140900,0.496600,0.375800,0.000000,1.000000,0.000000 -0.414900,0.454500,0.234900,0.003810,-1.000000,0.000000 0.187900,0.496600,-0.148700,0.000000,1.000000,0.000000 0.407200,0.496600,-0.164400,0.000000,1.000000,0.000000 0.148800,0.496600,-0.172200,0.000000,1.000000,0.000000 -0.211400,0.496600,0.297500,0.000000,1.000000,0.000000 -0.430600,0.495600,-0.125300,0.000000,1.000000,0.000000 0.396600,0.345700,0.383600,0.998200,0.042530,-0.042530 0.430600,0.495600,0.195800,0.000000,1.000000,0.000000 -0.383600,0.345700,-0.502500,-0.001235,0.000000,-1.000000 -0.289700,0.454500,-0.297500,0.000000,-1.000000,0.000000 -0.289700,0.454500,-0.657600,0.000000,-1.000000,0.000000 -0.274000,0.454500,0.642000,0.000000,-1.000000,0.000000 0.328800,0.495600,0.321000,0.000000,1.000000,0.000000 0.305400,0.454500,0.133100,0.000000,-1.000000,0.000000 -0.172200,0.496600,0.555900,0.000000,1.000000,0.000000 -0.297500,0.496600,-0.548000,0.000000,1.000000,0.000000 0.407200,0.496600,-0.211400,0.000000,1.000000,0.000000 -0.383600,0.495600,-0.305300,0.000000,1.000000,0.000000 0.383700,0.454500,-0.673300,0.000000,-1.000000,0.000000 -0.399300,0.496600,0.657700,0.000000,1.000000,0.000258 -0.414900,0.454500,0.258400,0.003810,-1.000000,0.000000 -0.430600,0.496600,0.516800,0.000000,1.000000,0.000000 0.454100,0.495600,0.305400,0.000000,1.000000,0.000000 0.117500,0.454500,-0.696800,0.000000,-0.999900,-0.016280 0.462000,0.496600,-0.266200,0.000000,1.000000,0.000000 -0.328900,0.454500,-0.602800,-0.064980,-0.997300,0.032790 0.354800,0.337800,0.407100,-1.000000,0.000000,0.000000 0.164400,0.431800,0.539500,0.000000,0.000000,-1.000000 0.336700,0.496600,-0.156600,0.000000,1.000000,0.000000 -0.258300,0.454500,0.657700,0.000000,-1.000000,0.000000 0.328900,0.454500,-0.407100,0.000000,-1.000000,0.000000 0.321000,0.454500,0.430600,0.000000,-1.000000,0.000000 -0.414900,0.495600,-0.422800,0.000000,1.000000,0.000000 -0.430600,0.496600,0.172300,0.000000,1.000000,0.000000 -0.399300,0.496600,0.485400,0.000000,1.000000,0.000000 -0.397000,0.322200,0.461900,-1.000000,0.000000,0.000000 0.172300,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.289700,0.454500,0.344500,0.000000,-1.000000,0.000000 0.508900,0.454500,0.172300,0.000000,-1.000000,0.000000 -0.391400,0.454500,0.548100,0.000000,-1.000000,0.000000 0.354800,0.408300,-0.234900,-1.000000,0.000000,0.000000 0.461900,0.495600,0.485400,0.000064,1.000000,0.000000 -0.397000,0.314300,-0.407100,-1.000000,0.000000,0.000000 0.354800,0.369100,-0.305300,-1.000000,0.000000,0.000000 -0.046950,0.496600,-0.093930,0.000000,1.000000,0.000000 0.443800,0.353500,-0.563400,0.990900,-0.000018,-0.134700 0.348900,-0.409400,0.501000,-0.106200,-0.169900,-0.979700 -0.360200,0.431800,-0.627800,0.055350,0.010890,0.998400 0.355000,0.378500,0.054880,-0.983200,-0.182400,-0.009084 -0.414500,-0.070700,0.572500,0.905800,0.246400,-0.344800 0.368200,-0.116800,-0.505000,-0.065110,0.126100,0.989900 -0.327200,0.227800,-0.595000,-0.982400,0.185600,0.022520 -0.339500,0.040450,-0.571100,-0.995400,-0.029510,-0.090800 0.054840,0.496600,0.070470,0.031940,0.999300,-0.021280 0.086140,0.495600,0.039160,0.000000,1.000000,0.000000 -0.078280,0.495600,-0.046960,0.000000,1.000000,0.000000 -0.062620,0.495600,-0.046960,0.000000,1.000000,0.000000 0.039170,0.496600,0.070490,0.000000,1.000000,0.000000 -0.031290,0.454500,0.023510,0.000000,-1.000000,0.000000 0.078320,0.454500,0.023510,0.000000,-1.000000,0.000000 0.007853,0.454500,-0.062610,0.000000,-1.000000,0.000000 -0.078270,0.454500,0.015680,0.000000,-1.000000,0.000000 0.357300,0.161100,0.523200,-0.454600,-0.166900,-0.874900 0.384000,0.400500,-0.629300,-0.120700,-0.007063,0.992700 -0.242700,0.496600,0.007827,0.000000,0.999800,-0.021260 0.346600,-0.509100,-0.601100,-0.411400,0.150500,-0.898900 0.337500,-0.210600,-0.498000,-0.198200,0.091950,0.975800 -0.394800,-0.202800,-0.548800,0.951600,0.120500,0.282700 0.039170,0.496600,-0.031300,0.000000,1.000000,0.000000 0.039170,0.454500,0.093980,0.000000,-1.000000,0.000000 -0.391300,0.142100,0.641000,-0.086410,-0.003343,0.996300 0.437700,-0.656600,0.604100,0.818500,-0.361500,0.446500 -0.407800,-0.475200,-0.555500,0.962400,-0.226700,0.149600 -0.448200,0.377000,-0.512600,-0.932700,0.000000,0.360700 -0.015640,0.384800,-0.540200,0.000102,0.040250,0.999200 0.054830,0.496600,-0.634200,0.000000,1.000000,0.000000 0.078320,0.454500,0.673400,0.000000,-1.000000,0.000000 0.101800,0.496600,-0.180100,0.000000,1.000000,0.000000 0.070490,0.496600,0.289700,0.000000,1.000000,0.000000 0.031340,0.454500,-0.391400,0.000000,-1.000000,0.000000 -0.031300,0.496600,-0.250500,0.000000,1.000000,0.000000 0.039170,0.496600,0.501100,0.000000,1.000000,0.000000 -0.031300,0.496600,0.368000,0.000000,1.000000,0.000000 0.266200,0.496600,-0.054780,0.000000,1.000000,0.000000 0.446300,0.454500,-0.070440,0.000000,-1.000000,0.000000 0.023510,0.454500,-0.375800,0.000000,-1.000000,0.000000 0.015680,0.454500,-0.250500,0.000000,-1.000000,0.000000 0.289700,0.496600,-0.023470,0.000000,1.000000,0.000000 0.396000,0.424000,-0.062620,1.000000,0.000000,0.000000 -0.086100,0.454500,0.399300,0.000000,-1.000000,0.000000 0.117500,0.495600,0.070480,0.000000,1.000000,0.000000 0.438500,0.454500,0.070490,0.000000,-1.000000,0.000000 0.133100,0.495600,0.070480,0.000000,1.000000,0.000000 0.062660,0.454500,-0.187900,0.000000,-1.000000,0.000000 -0.133100,0.496600,0.062660,0.000000,1.000000,0.000000 0.062660,0.454500,-0.164400,0.000000,-1.000000,0.000000 0.234900,0.454500,0.047000,0.000000,-1.000000,0.000000 -0.164400,0.495600,-0.086110,0.000000,1.000000,0.000000 -0.117400,0.496600,0.023510,0.000000,1.000000,0.000000 -0.054780,0.454500,-0.219200,0.000000,-1.000000,0.000000 -0.266200,0.454500,-0.031290,0.000000,-1.000000,0.000000 -0.093930,0.454500,0.352300,0.000000,-1.000000,0.000000 -0.297500,0.495600,-0.054790,0.000000,1.000000,0.000000 -0.023460,0.454500,0.634200,0.000000,-1.000000,0.000000 -0.397000,0.408300,-0.093950,-1.000000,0.000000,0.000000 0.031340,0.454500,-0.485400,0.000000,-1.000000,0.000000 -0.023460,0.454500,0.258400,0.000000,-1.000000,0.000000 0.344500,0.495600,0.078310,0.000000,1.000000,0.000000 0.054830,0.496600,0.274100,0.000000,1.000000,0.000000 0.015680,0.454500,-0.266200,0.000000,-1.000000,0.000000 -0.054780,0.496600,0.626400,0.000000,1.000000,0.000000 -0.086100,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.078270,0.454500,0.352300,0.000000,-1.000000,0.000000 -0.007806,0.454500,-0.281800,0.000000,-1.000000,0.000000 -0.007806,0.454500,-0.446300,0.000000,-1.000000,0.000000 -0.007808,0.496600,0.180100,0.000000,1.000000,0.000000 0.007851,0.496600,0.219200,0.000000,1.000000,0.000000 0.000022,0.496600,-0.250500,0.000000,1.000000,0.000000 0.007853,0.454500,-0.461900,0.000000,-1.000000,0.000000 0.354800,0.392600,-0.007810,-1.000000,-0.000128,0.000000 0.015680,0.496600,-0.438400,0.000000,1.000000,0.000000 -0.333600,0.047990,0.572000,0.995400,0.029850,-0.090910 0.007853,0.454500,-0.164400,0.000000,-1.000000,0.000000 0.015680,0.454500,-0.430600,0.000000,-1.000000,0.000000 0.237700,0.271300,0.547900,-0.317700,-0.943100,-0.097900 -0.508900,0.454500,0.101800,0.000000,-1.000000,0.000000 -0.039130,0.496600,0.125300,0.000000,1.000000,0.000000 -0.039130,0.496600,-0.117400,0.000000,1.000000,0.000000 -0.039130,0.496600,-0.140900,0.000000,1.000000,0.000000 0.078320,0.496600,-0.250500,0.000000,1.000000,0.000000 0.086140,0.496600,-0.563700,0.000000,1.000000,0.000000 0.086140,0.496600,0.415000,0.000000,1.000000,0.000000 0.093980,0.384800,0.539500,0.000000,0.000000,-1.000000 -0.180100,0.495600,-0.015670,0.000000,0.999800,-0.021260 0.376100,-0.054200,0.605200,-0.097890,0.208600,-0.973100 0.312000,-0.223300,-0.574200,-0.832800,-0.027390,-0.552900 0.360100,0.259300,-0.639400,0.023340,0.091650,-0.995500 0.281900,0.377000,-0.540000,-0.017790,-0.007147,0.999800 -0.355500,0.408300,-0.000031,0.999100,-0.000064,-0.042540 0.324900,-0.453600,-0.547700,0.983100,0.166100,-0.076630 0.407100,0.219800,-0.513200,-0.002748,0.150200,-0.988700 -0.330200,-0.327500,-0.495500,0.342100,-0.068170,0.937200 -0.355200,0.416100,-0.219200,0.999100,0.042520,0.000000 0.396000,0.439500,-0.187900,0.996600,-0.082320,0.000000 0.321600,0.405700,0.508800,-0.836900,-0.000302,-0.547400 -0.383700,0.220400,-0.635100,0.060370,-0.046680,0.997100 -0.391800,0.181700,-0.512900,0.111400,-0.126900,0.985600 -0.140900,0.400500,-0.540200,0.007107,0.017600,0.999800 -0.289600,0.353500,0.581600,0.124000,0.020880,0.992100 -0.140900,0.361300,0.581300,0.017720,0.028420,0.999400 -0.355500,0.431800,-0.242700,0.999400,0.032630,0.010590 0.477600,0.496000,0.610700,-0.036330,0.999300,0.000042 0.455600,0.196900,0.548100,-0.999700,0.001187,0.024750 -0.172200,0.416100,-0.540200,0.007076,0.017670,0.999800 0.354900,0.314300,-0.485300,-0.992200,0.000016,0.124500 -0.305200,0.269900,-0.555900,0.191000,-0.981400,0.017680 0.415000,0.110700,0.518200,-0.025310,0.017640,-0.999500 0.407200,0.496100,0.540200,0.049550,0.998100,-0.035410 -0.289700,0.454500,-0.516700,0.000000,-1.000000,0.000000 -0.317800,0.400500,0.563700,-1.000000,0.000000,0.000256 0.438500,0.496600,-0.516700,0.000000,1.000000,0.000000 -0.187900,0.454500,-0.642000,0.000000,-1.000000,0.000000 -0.313200,0.454500,-0.321000,0.000000,-1.000000,0.000000 -0.187900,0.454500,0.446300,0.000000,-1.000000,0.000000 0.336700,0.495600,0.289700,0.000000,1.000000,0.000000 -0.258300,0.454500,0.501100,0.000000,-1.000000,0.000000 -0.397000,0.369100,0.289700,-1.000000,0.000000,0.000000 -0.354800,0.306500,0.375800,0.999200,-0.037770,-0.014000 -0.336600,0.496600,0.360200,0.000000,1.000000,0.000000 -0.430600,0.495600,-0.391500,0.000000,1.000000,0.000000 0.289700,0.454500,0.501100,0.000000,-1.000000,0.000000 0.446300,0.496600,-0.414900,0.000000,1.000000,0.000000 0.321000,0.454500,-0.187900,0.000000,-1.000000,0.000000 -0.397000,0.384800,0.336700,-1.000000,0.000000,0.000000 -0.289700,0.423900,-0.540500,-0.014200,-0.014200,0.999800 -0.258300,0.290900,-0.581600,0.000000,0.000000,-1.000000 -0.438400,0.454500,0.422800,0.000000,-1.000000,0.000000 0.180100,0.408300,-0.539500,0.000000,0.000000,1.000000 0.422800,0.496600,-0.368000,0.000000,1.000000,0.000000 0.508900,0.454500,-0.634200,0.000000,-1.000000,0.000000 -0.397000,0.400400,-0.368000,-1.000000,0.000000,0.000000 -0.250500,0.454500,0.375800,0.000000,-1.000000,0.000000 -0.493200,0.454500,-0.485400,0.000000,-1.000000,0.000000 -0.397000,0.322200,0.399300,-1.000000,0.000000,0.000000 0.266200,0.496600,-0.485400,0.000000,1.000000,0.000000 0.258400,0.496600,-0.336600,0.000000,1.000000,0.000000 0.117500,0.454500,-0.407100,0.000000,-1.000000,0.000000 -0.250500,0.330000,0.581600,0.000000,0.000000,1.000000 -0.355300,0.384800,0.156600,1.000000,0.003518,-0.007080 0.148800,0.496600,-0.281800,0.000000,1.000000,0.000000 -0.321000,0.454500,0.227100,0.000000,-1.000000,0.000000 -0.242700,0.424000,-0.581600,0.000000,0.000000,-1.000000 -0.117400,0.454500,-0.180100,0.000000,-1.000000,0.000000 0.156600,0.392600,-0.539500,0.000000,0.000000,1.000000 -0.321000,0.454500,0.148800,0.000000,-1.000000,0.000000 -0.227000,0.496600,-0.469700,0.000000,1.000000,0.000000 0.219200,0.431800,0.581600,0.000000,0.000964,1.000000 0.391500,0.496600,-0.164400,0.000000,1.000000,0.000000 0.266200,0.454500,0.234900,0.000000,-1.000000,0.000000 -0.328800,0.454500,-0.109600,0.000000,-1.000000,0.000000 -0.313200,0.496600,0.109600,0.000000,1.000000,0.000000 -0.250500,0.454500,-0.461900,0.000000,-1.000000,0.000000 0.172300,0.361300,-0.581600,0.000000,0.000000,-1.000000 0.289700,0.496600,-0.109600,0.000000,1.000000,0.000000 0.397000,0.361300,-0.242700,1.000000,0.000000,0.000000 0.203600,0.454500,-0.281800,0.000000,-1.000000,0.000000 -0.454100,0.496600,0.211400,0.000000,1.000000,0.000000 -0.438400,0.454500,0.195800,0.000000,-1.000000,0.000000 0.354800,0.384800,0.234900,-1.000000,0.000000,0.000000 -0.297500,0.495600,-0.227000,0.000000,1.000000,0.000000 0.354800,0.392600,0.133100,-1.000000,0.000000,0.000000 -0.397000,0.423900,-0.242700,-1.000000,0.000000,0.000000 0.211400,0.496600,-0.336600,0.000000,1.000000,0.000000 0.368000,0.496600,-0.618500,0.000000,1.000000,0.000000 0.321000,0.454500,-0.681100,0.000000,-1.000000,0.000000 0.109600,0.454500,-0.203500,0.000000,-1.000000,0.000000 0.430600,0.495600,0.281900,0.000000,1.000000,0.000000 -0.187900,0.496600,-0.516700,0.000000,1.000000,0.000000 -0.469700,0.454500,-0.649800,0.000000,-1.000000,0.000000 -0.399300,0.495600,-0.328800,0.000000,1.000000,0.000000 -0.461900,0.454500,-0.414900,0.000000,-1.000000,0.000000 0.454100,0.496600,-0.461900,0.000000,1.000000,0.000000 -0.313200,0.454500,0.665500,0.000000,-1.000000,0.000000 -0.274000,0.454500,-0.297500,0.000000,-1.000000,0.000000 -0.258300,0.454500,0.485400,0.000000,-1.000000,0.000000 0.354800,0.416100,-0.391500,-1.000000,0.000000,0.000000 -0.211400,0.496600,0.133100,0.000000,1.000000,0.000000 0.203600,0.495600,0.156600,0.000000,1.000000,0.000000 0.297500,0.496600,0.501100,0.000000,1.000000,0.000000 -0.187900,0.496600,0.164400,0.000000,1.000000,0.000000 -0.355000,0.337800,-0.375800,0.999500,-0.021260,-0.021260 -0.180100,0.496600,-0.595000,0.000000,1.000000,0.000000 0.396800,0.408300,-0.313200,0.999900,0.007119,0.007109 -0.219200,0.454500,-0.117400,0.000000,-1.000000,0.000000 -0.336600,0.454500,0.696800,0.000000,-1.000000,0.005074 0.250600,0.314300,0.539500,0.000000,0.000000,-1.000000 0.180100,0.496600,-0.164400,0.000000,1.000000,0.000000 0.148800,0.496600,-0.140900,0.000000,1.000000,0.000000 -0.355000,0.423900,0.313200,0.999900,-0.003588,-0.014190 0.438500,0.454500,0.626400,0.053970,-0.997100,0.053770 -0.274000,0.454500,0.266200,0.000000,-1.000000,0.000000 0.125300,0.496600,-0.227000,0.000000,1.000000,0.000000 -0.430600,0.454500,0.368000,0.000000,-1.000000,0.000000 -0.234900,0.454500,0.234900,0.000000,-1.000000,0.000000 -0.187900,0.496600,0.125300,0.000000,1.000000,0.000000 0.354800,0.408300,0.344500,-1.000000,0.000000,0.000000 -0.485400,0.454500,0.501100,0.000000,-1.000000,0.000000 -0.117400,0.496600,-0.422800,0.000000,1.000000,0.000000 -0.203500,0.454500,-0.297500,0.000000,-1.000000,0.000000 0.180100,0.496600,0.618500,0.000000,1.000000,0.000000 -0.227000,0.496600,-0.422800,0.000000,1.000000,0.000000 -0.383600,0.495600,-0.109600,0.000000,1.000000,0.000000 -0.140900,0.496600,0.602900,0.000000,1.000000,0.000000 -0.477600,0.454500,-0.187900,0.000000,-1.000000,0.000000 0.148800,0.454500,-0.407100,0.000000,-1.000000,0.000000 0.422800,0.496600,-0.242700,0.000000,1.000000,0.000000 0.391500,0.496600,-0.109600,0.000000,1.000000,0.000000 -0.242700,0.496600,0.430600,0.000000,1.000000,0.000000 0.274100,0.454500,-0.242700,0.000000,-1.000000,0.000000 -0.219200,0.330000,-0.581600,0.000000,0.000000,-1.000000 0.180100,0.454500,0.477600,0.000000,-1.000000,0.000000 -0.344500,0.495600,-0.219200,0.000000,1.000000,0.000000 0.195800,0.454500,0.610700,0.000000,-1.000000,0.000000 -0.172200,0.496600,0.602900,0.000000,1.000000,0.000000 0.172300,0.454500,-0.344500,0.000000,-1.000000,0.000000 -0.234900,0.496600,-0.595000,0.000000,1.000000,0.000000 -0.211400,0.454500,-0.516700,0.000000,-1.000000,0.000000 -0.305300,0.495600,-0.250500,0.000000,1.000000,0.000000 -0.297500,0.454500,0.211400,0.000000,-1.000000,0.000000 0.156600,0.496600,0.477600,0.000000,1.000000,0.000000 -0.187900,0.496600,-0.618500,0.000000,1.000000,0.000000 -0.140900,0.454500,0.665500,0.000000,-1.000000,0.000000 0.203600,0.454500,-0.501100,0.000000,-1.000000,0.000000 -0.211400,0.496600,-0.422800,0.000000,1.000000,0.000000 0.203600,0.454500,0.383700,0.000000,-1.000000,0.000000 0.164400,0.454500,0.501100,0.000000,-1.000000,0.000000 0.172300,0.454500,0.281900,0.000000,-1.000000,0.000000 0.172300,0.496600,0.305400,0.000000,1.000000,0.000000 0.219200,0.454500,0.383700,0.000000,-1.000000,0.000000 -0.156600,0.408300,-0.581600,0.000000,0.000000,-1.000000 0.180100,0.496600,-0.399300,0.000000,1.000000,0.000000 -0.195700,0.496600,0.649900,0.000000,1.000000,0.000000 -0.109600,0.496600,-0.430600,0.000000,1.000000,0.000000 0.313200,0.454500,-0.140900,0.000000,-1.000000,0.000000 0.148800,0.496600,-0.532400,0.000000,1.000000,0.000000 -0.219200,0.454500,0.422800,0.000000,-1.000000,0.000000 0.148800,0.454500,0.250600,0.000000,-1.000000,0.000000 0.211400,0.496600,0.344500,0.000000,1.000000,0.000000 0.354800,0.306500,-0.461900,-1.000000,0.000000,0.000000 -0.383600,0.454500,-0.681100,0.000000,-1.000000,0.000000 0.477600,0.454500,0.696800,0.000000,-1.000000,0.005074 0.430600,0.496600,0.634200,0.000000,1.000000,0.000000 0.328900,0.454500,0.258400,0.000000,-1.000000,0.000000 0.430600,0.495600,0.321000,0.000000,1.000000,0.000000 -0.274000,0.496600,0.540300,0.000000,1.000000,0.000000 0.352300,0.496600,-0.626300,0.000000,1.000000,0.000000 0.415000,0.496600,-0.266200,0.000000,1.000000,0.000000 -0.397000,0.361300,-0.274000,-1.000000,0.000000,0.000000 0.250600,0.454500,-0.501100,0.000000,-1.000000,0.000000 0.325700,-0.030750,-0.579600,-0.993500,0.108600,0.034240 -0.430700,0.252200,0.618500,0.707200,-0.119500,-0.696800 0.442900,0.423900,0.580500,-0.978100,-0.000009,-0.208000 -0.344600,-0.288500,0.493900,0.075980,-0.057420,-0.995500 -0.360200,0.416100,-0.627800,0.055330,0.000001,0.998500 -0.338800,0.025160,-0.571000,-0.992600,-0.076990,-0.093440 -0.359900,-0.131600,0.506200,-0.080790,-0.134100,0.987700 0.426000,-0.562400,0.579700,-0.927100,-0.271100,-0.258700 0.330700,0.150100,-0.602900,-0.993100,-0.117500,-0.001980 0.327000,0.235700,0.563600,0.971200,0.220500,0.090090 -0.383500,-0.359100,-0.500900,0.526200,0.022590,-0.850000 -0.407300,-0.616100,0.545200,0.022870,-0.244500,-0.969400 0.383900,0.220700,-0.511800,-0.077570,-0.176800,0.981200 -0.328200,0.218300,0.629600,0.907600,-0.135500,0.397400 -0.367300,-0.272900,-0.489200,-0.100300,-0.017080,0.994800 0.397000,0.439500,-0.399300,0.998100,-0.060770,0.010620 -0.423500,-0.535900,-0.538100,-0.930900,0.170900,0.322800 -0.432400,-0.028670,-0.562300,-0.972100,-0.213900,-0.095870 -0.338000,0.392600,-0.627400,-0.191500,-0.006683,0.981500 0.404300,-0.139400,-0.517900,0.936100,-0.150400,0.318000 -0.339700,0.071530,-0.556300,0.989900,0.047960,0.133300 -0.485300,0.496500,0.015670,-0.060600,0.998200,0.000000 -0.324900,-0.453600,0.547700,-0.984500,0.158900,0.073710 0.422800,0.149600,-0.522400,-0.119100,0.103600,-0.987500 0.445000,0.322200,-0.555700,0.995800,0.015500,-0.090070 0.457000,0.173400,0.571100,0.995200,0.013650,0.097140 -0.445000,0.377000,0.555700,-0.995800,0.000000,0.091840 -0.477600,0.496600,0.039170,-0.006633,1.000000,0.000000 -0.447800,0.290200,0.540200,-0.995600,0.092710,0.010340 -0.395600,-0.367100,-0.532100,-0.994100,0.075250,-0.078080 0.380800,-0.247200,0.560300,-0.709400,0.141100,-0.690500 -0.336600,-0.296500,-0.574200,0.018810,0.029520,-0.999400 -0.354900,0.439600,0.047000,0.997900,-0.065340,0.000000 0.354900,0.439600,-0.046960,-0.997900,-0.064920,0.000000 0.356000,-0.259100,0.571200,-0.216300,0.160400,-0.963100 -0.477600,0.496000,-0.391500,0.036260,0.999300,0.000000 0.354800,-0.097270,-0.603700,0.034140,-0.204300,-0.978300 -0.308100,-0.343200,0.540400,0.997000,-0.057320,-0.052590 0.156600,0.454500,0.602900,0.000000,-1.000000,-0.004194 0.477600,0.496600,-0.180100,0.006645,1.000000,-0.000002 -0.344300,0.454600,0.101800,0.168700,-0.985700,0.000000 0.211400,0.439600,0.539500,0.000000,0.003618,-1.000000 0.148800,0.447300,-0.539600,0.000000,-0.181200,0.983500 -0.320500,-0.437900,0.570300,0.976900,-0.091330,0.193000 -0.485300,0.496500,0.524600,-0.060600,0.998200,0.000000 0.422800,0.454500,0.555900,0.001071,-1.000000,0.000746 0.317800,0.431800,0.563700,0.999800,0.000398,0.021430 0.242700,0.496600,0.665400,0.000000,0.999900,0.015990 -0.366100,-0.185400,-0.580900,-0.201500,-0.128700,-0.971000 0.432100,-0.013290,-0.541200,0.978400,-0.165900,0.123400 -0.324800,-0.068820,0.563400,-0.990100,-0.120400,0.071950 0.367700,-0.139300,-0.504800,0.047670,-0.125200,-0.991000 -0.367700,0.439500,-0.629900,-0.078890,-0.091580,-0.992700 0.060030,0.488000,0.697400,-0.000114,0.794500,0.607200 -0.354900,0.439600,0.101800,0.997900,-0.065340,0.000000 -0.324000,-0.468100,0.563800,0.985200,-0.169800,0.024260 -0.438200,-0.618100,-0.600300,0.852900,-0.311200,0.419100 -0.384000,-0.062250,-0.507300,0.053340,0.114900,0.991900 0.337600,0.040270,0.563800,-0.994400,0.032550,-0.100300 0.360100,0.243700,-0.640900,0.006344,0.087230,-0.996200 -0.353900,-0.592900,0.609000,0.919900,-0.137100,0.367400 0.312800,-0.299400,-0.571900,-0.676000,-0.018550,-0.736700 0.310100,0.298700,-0.534900,-0.648600,-0.000319,0.761100 0.391100,0.196900,0.637400,0.087510,0.002910,0.996200 0.372100,0.002817,0.516200,-0.102000,0.130500,-0.986200 0.333300,0.079320,-0.587500,-0.997700,0.027580,0.061670 -0.343700,0.431800,0.503900,-0.148300,0.000497,0.988900 0.393800,0.308000,0.625000,-0.137500,-0.088170,-0.986600 0.320300,0.252300,0.603400,-0.975200,-0.166100,0.146200 -0.375800,0.462600,0.712200,0.000000,-0.040080,0.999200 -0.393100,-0.241700,-0.532400,0.990500,0.103300,0.090910 0.375600,0.010090,0.621300,0.034150,-0.229800,0.972600 -0.407300,0.454600,-0.454100,-0.169900,-0.985500,0.000000 -0.397000,0.322200,-0.469800,-1.000000,0.000000,-0.003224 0.336200,-0.210000,0.498100,0.284100,-0.073370,0.956000 -0.297300,0.353500,0.539600,0.079020,0.004714,-0.996900 -0.155400,0.335300,0.542500,0.381700,-0.796000,-0.469800 -0.440200,0.025670,0.555700,-0.986800,-0.159400,0.027580 0.321200,-0.338500,0.501300,-0.700200,-0.062620,-0.711200 -0.331700,-0.066900,0.599800,-0.701900,0.058370,-0.709800 0.423000,-0.568000,0.596200,0.778700,0.300900,0.550500 -0.352400,-0.544800,0.608600,0.494700,0.102600,0.863000 0.314300,-0.249400,0.560600,0.872600,0.005739,-0.488400 0.526500,0.467500,-0.508900,0.953800,0.300400,0.000114 0.434100,0.010370,0.592300,0.862300,-0.260900,0.433900 0.344300,-0.460400,-0.589900,0.192400,-0.089470,0.977200 0.391800,-0.371900,-0.528900,0.995400,0.089420,-0.033370 0.360300,0.165600,-0.642400,-0.099820,-0.013660,-0.994900 0.344400,-0.460600,0.584700,0.414700,-0.137100,-0.899600 0.383300,0.233500,-0.509300,-0.086020,-0.222700,0.971100 0.414800,-0.082660,-0.522600,0.914200,-0.134000,0.382300 0.367600,-0.578600,-0.542700,0.352100,0.346500,-0.869500 0.391200,-0.304200,0.516900,-0.998200,-0.018930,0.057160 -0.360900,-0.632600,0.594800,0.971400,-0.232000,-0.049910 -0.312100,-0.347100,-0.551700,0.990100,-0.076520,-0.117900 0.444700,0.079850,0.525600,0.808300,-0.090220,-0.581900 -0.368000,0.056620,-0.629400,0.030190,-0.135300,-0.990300 0.331100,-0.483800,0.556000,-0.975800,-0.215700,-0.036670 -0.359800,0.268500,-0.634300,-0.015800,0.089200,-0.995900 0.455800,0.196900,0.578600,0.990700,0.008138,0.135800 0.394700,-0.158600,-0.506400,0.621500,-0.043680,0.782200 -0.344900,-0.265400,-0.490000,0.083950,0.044500,0.995500 0.211400,0.454600,0.595200,0.000000,-0.987200,0.159600 -0.401000,-0.500200,-0.517500,-0.288100,-0.134200,0.948200 0.346600,-0.085720,-0.512500,-0.358600,0.154600,0.920600 -0.361800,-0.030910,-0.513300,0.204400,0.131000,0.970100 -0.330500,-0.091800,0.526300,-0.794700,-0.159600,0.585700 -0.337000,0.298700,0.502500,0.215000,-0.004792,-0.976600 0.310800,-0.373900,-0.532900,-0.989300,-0.119600,0.083320 0.417300,-0.607000,0.618600,0.376100,0.327100,0.866900 -0.454400,0.221400,-0.572400,0.995900,-0.070120,0.057850 0.322600,0.258400,0.531100,-0.935000,-0.294300,-0.198100 0.321300,-0.432700,-0.527600,-0.928300,-0.226800,0.294500 0.409500,-0.552500,-0.532600,0.307500,-0.103200,0.945900 0.308700,-0.233500,-0.548000,0.998500,-0.054790,0.009582 0.398300,-0.437200,0.510600,0.689100,0.001180,-0.724600 -0.335900,-0.424900,0.509200,0.380000,-0.204300,-0.902200 0.375600,0.024970,0.520900,0.148400,-0.079530,0.985700 0.454500,0.134200,0.571600,-0.997700,0.010380,-0.067360 -0.312400,-0.164200,0.531900,0.986600,0.117500,-0.113500 -0.325600,0.237200,-0.548600,0.970000,-0.219300,0.104500 0.440100,0.416200,0.499000,0.710600,0.008717,-0.703600 -0.315800,0.274200,0.611800,-0.947900,0.177900,-0.264300 0.398600,0.447100,-0.631600,0.169000,-0.398000,-0.901700 0.314700,-0.154500,-0.547400,0.986800,-0.140400,-0.081120 0.516800,0.454500,0.548100,0.019410,-0.999800,0.000000 -0.365400,-0.567300,-0.611700,0.264000,0.209700,-0.941400 0.430600,0.496600,0.665400,0.000000,0.999900,0.015990 0.203800,0.314600,-0.581600,-0.010400,-0.017830,-0.999800 0.393000,-0.168200,-0.561400,-0.887200,0.230700,0.399500 -0.407400,0.204700,0.636100,0.202900,-0.005974,-0.979200 -0.382100,-0.665000,0.560600,0.293900,-0.624000,-0.724100 0.375200,-0.587300,-0.543500,0.253500,0.269500,-0.929000 0.344600,-0.296300,-0.494400,-0.075600,-0.058620,0.995400 -0.451300,0.204800,0.533700,-0.950400,-0.027810,-0.309900 0.415000,0.243900,0.502100,0.031820,-0.204700,-0.978300 -0.341200,0.016620,-0.548000,-0.948600,-0.120400,-0.292800 -0.315000,0.416800,-0.605300,-0.963400,0.000563,0.268000 0.431800,0.052990,-0.530200,-0.656600,0.064930,-0.751500 0.387800,-0.604800,0.540000,-0.114300,-0.270300,-0.956000 0.407000,0.337800,-0.495300,0.307900,-0.003681,0.951400 -0.375700,0.064330,-0.630200,-0.032530,-0.138200,-0.989900 -0.362100,-0.595700,0.549000,0.695400,-0.352000,-0.626600 0.400200,-0.401300,0.529600,0.988500,0.150200,0.018390 -0.511800,0.487600,-0.697800,-0.239700,0.864000,-0.442800 -0.044350,0.484800,0.701000,-0.000169,0.699100,0.715100 0.375600,0.416100,-0.632900,0.117900,-0.000021,-0.993000 -0.351500,-0.296600,-0.573500,-0.103800,0.034250,-0.994000 0.406300,-0.465200,0.520800,0.908200,0.088050,-0.409200 0.344400,-0.257300,0.572500,-0.048790,0.105400,-0.993200 0.396900,0.361700,-0.188000,0.989200,-0.144700,0.022490 -0.431000,-0.641200,-0.552000,0.312300,0.264100,-0.912500 0.356300,-0.301400,0.570600,-0.207200,-0.043730,-0.977300 0.312800,-0.233700,0.554200,0.990600,-0.024560,-0.134600 -0.359800,0.251100,-0.506600,-0.138700,0.227100,-0.963900 0.434700,0.002232,0.585400,0.908900,-0.244100,0.338000 0.445300,0.392600,0.511800,-0.909700,0.000183,0.415200 -0.327700,-0.467800,-0.555500,0.985500,-0.167400,0.028440 0.329200,-0.178400,-0.506400,0.458500,-0.087740,-0.884300 0.336800,-0.179200,0.580800,0.122800,0.113000,-0.986000 0.350000,-0.002331,0.616800,-0.333200,-0.146300,0.931400 -0.390400,-0.327700,0.524500,-0.999300,0.029420,-0.024730 0.375900,-0.382700,0.499400,-0.232000,0.109000,0.966600 -0.443900,-0.642300,-0.588400,0.963400,0.189000,0.189900 -0.395400,-0.359100,-0.524600,-0.998900,0.041960,-0.020870 -0.339400,-0.522800,-0.563800,0.975600,-0.213800,0.049140 -0.397800,0.255900,0.634000,0.150400,-0.111500,-0.982300 -0.313900,-0.333900,-0.535400,-0.996200,0.054230,-0.067820 -0.352400,0.291100,-0.629900,-0.030120,-0.093010,0.995200 0.449600,0.111300,-0.541800,0.937500,-0.117700,0.327500 -0.386600,-0.256300,0.504400,-0.883200,-0.070070,-0.463600 -0.451700,0.142200,0.541300,-0.960700,-0.024100,-0.276400 0.390700,-0.134500,-0.507800,-0.401200,-0.009707,-0.915900 0.368200,-0.033660,0.610100,-0.035940,0.213700,-0.976200 -0.424700,-0.011640,0.523000,-0.631400,-0.050760,-0.773800 -0.393900,-0.472300,0.516500,-0.374400,-0.096410,-0.922300 0.397500,-0.121400,-0.578400,-0.766900,0.198200,0.610400 0.338000,0.025160,0.578900,0.993700,-0.092830,0.062590 -0.315700,-0.413400,0.555900,0.989100,-0.144800,0.028130 -0.337100,-0.492800,-0.530400,0.887700,-0.285200,0.361500 -0.397000,-0.148200,0.564300,0.865400,0.264000,-0.426000 -0.435400,-0.594800,0.571400,-0.968200,0.250200,-0.001319 0.310200,0.423900,-0.603200,0.993300,0.000042,0.115600 -0.350300,0.220200,-0.517500,-0.502800,0.214600,-0.837400 0.402800,-0.170200,0.547100,0.958300,-0.201200,0.202900 0.324900,0.213000,-0.617500,-0.969400,-0.113200,-0.217800 -0.327900,-0.048670,-0.584400,0.989200,0.083240,-0.120200 0.310000,-0.311800,0.547500,-0.995800,-0.053310,0.074840 -0.450800,0.189200,0.533900,-0.945500,-0.034760,-0.323900 0.353400,-0.475500,0.512200,-0.204200,-0.219300,-0.954100 0.334400,0.182000,0.549400,-0.979600,-0.129400,-0.153800 -0.355300,0.377000,0.148800,0.999700,0.003423,-0.025720 -0.373200,-0.303700,-0.493800,0.250600,0.046250,-0.967000 0.330400,-0.335300,0.496000,-0.325300,-0.065450,-0.943400 0.367300,0.203900,-0.518400,0.153600,0.134400,-0.978900 -0.401800,-0.144700,-0.567400,-0.832300,-0.246100,-0.496700 0.334300,-0.498900,0.570800,-0.979700,-0.168500,0.109000 -0.316000,-0.187100,-0.518200,0.954800,0.075680,0.287600 0.335000,-0.014780,0.594300,0.980400,-0.049940,-0.190500 0.338700,0.164700,0.554800,0.974500,0.162800,0.154400 -0.395100,0.367100,0.128300,-0.636800,-0.768100,-0.066630 -0.339900,-0.409900,-0.578900,-0.202400,-0.151400,0.967500 -0.403400,-0.430200,-0.547400,-0.974900,0.163300,-0.151300 -0.402400,-0.498700,-0.582200,0.689500,-0.302300,0.658200 0.392200,0.078530,-0.632400,-0.131900,0.157300,0.978700 0.367100,-0.170300,0.583300,0.188000,-0.192100,0.963200 -0.429600,0.032510,-0.519400,-0.340500,-0.011860,0.940200 -0.402500,-0.170500,-0.510700,-0.948200,-0.118000,0.294800 0.357700,-0.057000,-0.609500,-0.007358,0.212600,0.977100 0.371400,-0.433800,-0.587000,0.296500,0.161200,-0.941300 -0.383600,-0.491100,-0.513400,-0.015780,-0.191800,0.981300 0.368000,0.269800,0.438500,-0.017000,-0.999900,-0.000004 -0.485300,0.496200,-0.657600,-0.041630,0.999000,0.017800 0.331300,-0.198700,0.577800,0.251500,0.100200,-0.962700 -0.405700,0.103800,0.636500,-0.202300,-0.151200,0.967600 -0.391400,-0.546000,0.528800,0.001819,-0.206100,-0.978500 0.412300,-0.603600,-0.621600,0.379900,0.304100,-0.873600 -0.329800,-0.035240,0.599100,-0.880200,0.004778,-0.474700 0.429200,-0.624400,0.545100,0.239600,-0.154800,-0.958500 0.462000,0.496400,-0.672800,0.000000,0.998300,-0.058930 -0.449600,0.408300,-0.517800,-0.984200,0.000000,0.176800 -0.360300,-0.070150,0.606500,0.027190,0.200000,-0.979400 0.416100,0.168000,0.632900,0.261400,0.003403,0.965200 0.344900,0.290700,0.631900,-0.125900,0.062360,0.990100 -0.313500,-0.151700,0.574600,0.963500,0.066240,0.259400 0.381800,-0.397800,-0.504900,0.342900,-0.084720,0.935500 -0.357400,-0.066880,-0.509000,0.197800,0.155900,0.967800 -0.422500,-0.064820,-0.520500,-0.918600,-0.152100,0.364900 -0.332700,0.212700,0.533500,0.895600,-0.211200,-0.391400 -0.450200,0.189100,0.594200,-0.984000,0.003502,0.178300 0.320300,-0.081620,-0.567700,-0.991000,0.125500,0.045870 -0.448800,0.423900,-0.555300,-0.993800,-0.000002,-0.110800 -0.421100,0.008799,0.521400,-0.294100,0.034420,-0.955200 -0.449600,0.392600,-0.517800,-0.984200,0.000000,0.176900 0.492100,0.495800,-0.571500,0.128400,0.991700,-0.000029 0.440100,-0.637300,-0.599600,-0.966900,0.098180,0.235400 0.352200,-0.084100,-0.606500,0.014660,-0.198500,-0.980000 0.352200,-0.107300,0.597500,0.028820,-0.203300,0.978700 -0.309700,-0.249200,0.523900,-0.983200,-0.054280,0.174100 -0.353300,0.235700,-0.637000,0.112000,0.060190,-0.991900 -0.416500,-0.548200,0.592800,-0.826300,0.283800,0.486500 0.397400,0.065060,0.626500,-0.137900,0.136200,-0.981000 -0.407500,-0.079860,-0.587800,-0.688900,-0.257800,-0.677500 -0.373500,-0.663300,0.620100,0.662800,-0.336200,0.669100 0.338100,0.172700,-0.543400,0.888200,0.184500,-0.420800 0.318600,0.353500,0.532200,0.992200,0.000000,0.124700 0.331800,-0.398500,0.577700,-0.402300,0.105700,0.909400 0.361100,0.363000,0.148900,-0.223700,-0.958600,-0.176000 -0.396600,-0.665400,0.557500,0.096650,-0.604900,-0.790400 0.434700,0.024000,0.521700,0.501900,-0.025020,-0.864600 0.351600,-0.567800,-0.603200,0.886600,0.068950,0.457400 -0.375500,-0.013240,0.620600,-0.073840,-0.206500,0.975700 -0.407100,-0.135500,-0.509500,-0.833000,-0.082830,0.547100 -0.516700,0.454500,0.696800,-0.020140,-0.999800,0.005216 0.408200,0.314200,-0.624400,-0.415400,-0.086500,0.905500 0.390300,0.392600,-0.502500,0.030760,0.000000,-0.999500 0.395400,-0.413200,-0.532500,-0.989600,-0.131200,-0.058410 -0.411000,0.451300,0.627800,-0.458500,-0.547500,0.700100 0.422300,-0.586000,0.540500,-0.432700,0.071780,0.898700 -0.353300,-0.485300,0.595900,-0.076490,-0.200800,-0.976600 -0.344300,0.454600,-0.391400,0.168700,-0.985700,0.000000 0.491800,0.495800,-0.368000,0.127000,0.991900,-0.000033 0.491800,0.495800,-0.383600,0.127100,0.991900,-0.000070 -0.346400,-0.476900,-0.591000,0.293200,0.131400,-0.947000 0.334800,0.251100,-0.517500,0.510600,0.357000,-0.782200 0.344400,0.416100,0.628000,0.064680,-0.001073,-0.997900 0.485300,0.496500,-0.454100,0.058010,0.998300,-0.000017 0.345100,0.274900,-0.637900,-0.098820,0.067180,-0.992800 0.442700,0.361300,-0.524400,-0.985400,0.000000,-0.170100 0.359400,0.032610,-0.529400,0.404800,-0.068250,-0.911900 0.447300,0.290900,0.518000,-0.961500,-0.027750,0.273400 -0.340700,0.079520,-0.617000,0.946400,-0.009398,-0.322800 -0.317000,0.322200,0.540100,-0.999500,0.000000,-0.031610 0.449400,0.095780,-0.571300,0.989900,-0.131500,-0.052100 0.407300,0.454600,0.148800,0.169200,-0.985600,0.000000 0.344700,-0.139100,0.591500,-0.038950,-0.189000,0.981200 -0.367200,-0.242100,0.572300,0.442500,0.133400,-0.886800 -0.314100,-0.301300,-0.508000,0.909600,-0.058930,0.411200 0.413600,-0.513500,0.580300,0.852700,0.283100,0.439000 0.526100,0.468400,0.289700,0.936700,0.350100,0.000023 0.377900,-0.368400,-0.500800,0.375900,-0.020570,0.926400 -0.446300,0.490500,-0.693700,-0.000023,0.860100,-0.510200 0.353300,-0.014100,0.615500,-0.194300,-0.158100,0.968100 0.439500,0.243300,0.510700,-0.622600,0.139600,0.770000 -0.391900,0.008229,-0.515100,0.077080,0.115600,0.990300 0.319700,0.270300,-0.627600,-0.709200,-0.071670,-0.701400 -0.332000,-0.437300,-0.576100,-0.734000,0.015210,0.679000 -0.439300,0.267800,0.601800,0.909200,-0.112000,-0.401000 0.330600,0.189300,-0.548900,-0.960600,-0.134800,0.243100 0.314300,-0.189200,-0.578800,-0.768700,-0.020760,-0.639300 0.380000,-0.233900,0.492300,0.280100,0.020780,-0.959700 -0.383600,0.024720,-0.517600,0.083410,0.073090,0.993800 0.394000,-0.095250,-0.594400,0.547800,-0.278900,-0.788800 0.359400,-0.194200,-0.584400,0.185300,-0.122400,-0.975000 0.426300,-0.021760,-0.527300,0.894600,-0.133900,0.426300 -0.385900,-0.439700,-0.579700,-0.490900,0.190900,-0.850000 0.234900,0.475600,0.708000,-0.000081,0.478200,0.878200 0.438400,0.374400,0.594000,-0.898400,0.000000,-0.439200 0.422800,0.469700,0.710600,0.000000,0.303100,0.953000 0.338100,0.330000,0.627400,0.186000,0.000754,-0.982500 0.448000,-0.627400,0.578400,0.977400,0.209500,0.029170 -0.390100,-0.366800,-0.502100,-0.780300,0.009292,0.625300 -0.437400,0.452100,0.532500,0.556000,-0.830800,0.025830 0.426100,0.179600,-0.516500,0.187600,-0.169900,0.967400 -0.355400,-0.568500,-0.543700,0.795500,-0.325100,0.511400 -0.485200,0.496200,-0.164400,-0.009804,1.000000,0.000815 -0.457000,0.134400,-0.541800,-0.979900,-0.033190,0.196900 -0.368200,-0.647600,-0.587100,0.977800,-0.196100,0.073280 -0.526500,0.468300,-0.054800,-0.956000,0.293200,-0.000193 -0.377100,-0.242400,0.564900,0.717700,0.148200,-0.680400 -0.324400,-0.319500,-0.497500,0.500600,-0.072520,0.862700 0.428400,0.228800,-0.625100,-0.641300,-0.096470,0.761200 0.352500,0.314500,-0.632700,-0.028120,-0.008080,0.999600 -0.344500,0.035500,-0.539200,0.809200,0.033550,0.586600 -0.327600,0.387200,0.632700,0.382000,-0.007449,0.924100 0.355000,0.023100,0.526200,-0.601400,0.130600,-0.788200 0.351800,0.384800,-0.502900,0.082250,0.000000,-0.996600 -0.390500,-0.359000,0.540000,-0.990600,0.039480,0.131200 -0.317800,0.298700,0.577200,-0.967400,0.000069,0.253400 -0.399800,-0.409100,-0.547500,-0.970200,0.164000,-0.178600 0.237700,0.271300,-0.547900,-0.320800,-0.937200,0.137200 -0.340500,0.056170,-0.616100,0.913500,-0.022680,-0.406100 -0.318300,-0.428700,0.548300,0.984300,-0.163500,-0.066280 -0.388700,-0.327700,-0.504700,0.826800,0.026140,-0.562000 -0.360100,0.469700,0.710600,-0.000014,0.320700,0.947200 -0.354500,0.447200,-0.046960,0.926100,-0.377300,0.000000 0.436900,0.166000,-0.521200,0.315200,-0.113800,0.942200 0.391700,-0.378100,-0.541700,0.978300,0.152300,-0.140700 0.377100,-0.610300,0.622200,-0.273400,0.175000,0.945800 -0.512000,0.488500,-0.595000,-0.570700,0.821200,0.000000 0.350600,0.039560,-0.532100,-0.633800,0.050600,0.771800 -0.338100,0.439500,-0.627400,-0.199800,-0.124600,0.971900 0.455400,0.157700,0.548000,-0.999400,0.014200,0.030870 -0.342300,-0.530400,-0.585500,0.963900,-0.161600,-0.211600 -0.375400,-0.006206,0.520700,-0.090260,-0.128300,0.987600 0.310700,-0.218000,-0.532300,0.992700,-0.061410,-0.103300 0.375900,0.024090,0.621900,-0.037030,0.169400,-0.984900 -0.336600,0.475400,-0.708200,0.000604,0.472500,-0.881300 -0.399300,-0.439700,0.540400,0.989100,-0.146200,-0.018200 -0.312000,0.266400,0.548100,0.639400,-0.759900,-0.117100 -0.419800,0.439500,0.616300,0.631800,-0.092810,-0.769600 -0.333400,-0.174300,-0.499500,0.438200,0.125500,0.890100 -0.250300,0.270300,0.577200,-0.028920,-0.963300,0.267000 0.352900,-0.037590,-0.616100,-0.073370,-0.188100,-0.979400 0.377700,-0.608300,0.543700,-0.349800,-0.315800,-0.882000 0.363300,0.282300,0.396200,-0.048660,-0.901100,-0.430900 0.328600,0.332600,0.507800,0.607400,0.000000,0.794400 -0.444100,-0.633100,0.572200,-0.991900,0.020840,-0.125700 -0.454900,0.212400,-0.533700,0.978000,0.004942,-0.208800 0.337000,-0.479400,-0.593000,-0.530800,0.093520,-0.842300 -0.396900,0.346600,-0.243000,-0.984300,-0.174900,0.024840 -0.409800,0.416100,0.622800,0.475600,0.000000,-0.879700 0.408400,0.252300,-0.632200,-0.360200,-0.109300,0.926400 -0.362800,-0.008751,-0.618000,0.041390,-0.216300,-0.975500 -0.424300,-0.010690,-0.597600,-0.763600,-0.263000,-0.589700 0.454600,0.239600,0.575100,0.988100,0.105500,0.112200 -0.507200,0.491400,0.054810,-0.459800,0.888000,0.000000 -0.440000,-0.612700,0.579500,-0.963500,0.263200,0.048300 0.375800,-0.587900,-0.619500,0.054200,-0.231500,0.971300 0.442100,0.157800,0.613200,-0.791100,-0.005790,-0.611700 -0.335600,-0.414800,0.510500,-0.434000,0.237000,0.869200 -0.336200,0.452800,-0.620400,-0.195400,-0.882300,0.428100 -0.340400,0.149500,-0.619800,-0.911500,0.105500,0.397600 0.399400,0.275200,0.627800,-0.145400,-0.106900,-0.983600 0.375000,0.063980,-0.526000,0.159700,-0.027840,-0.986800 0.389700,-0.186800,0.496700,0.395500,-0.002723,-0.918500 0.421300,0.104100,0.626400,-0.406300,0.140000,-0.903000 -0.431100,-0.655400,0.563100,0.716300,0.306400,0.626900 -0.418300,-0.592800,-0.609500,0.566100,-0.343300,0.749500 -0.432400,-0.593400,-0.548100,0.827800,-0.043990,-0.559300 0.382500,-0.408600,-0.509200,-0.431100,0.045620,-0.901200 -0.328500,0.290700,0.509100,-0.512400,0.049220,0.857300 0.432500,0.353500,-0.605900,0.834300,-0.000023,-0.551300 0.423600,0.040330,0.520500,-0.259300,0.036000,0.965100 0.317600,-0.326700,0.504800,-0.841800,-0.071580,-0.535000 -0.365800,-0.612000,-0.562000,-0.909000,0.280900,-0.307900 0.521600,0.477300,-0.232300,0.858200,0.513300,0.000052 0.355500,-0.528100,-0.531500,0.416400,0.333600,-0.845800 0.317400,0.400500,-0.518100,-0.953200,-0.000056,0.302300 0.390700,-0.036400,0.609700,0.226100,-0.236800,0.944900 -0.321200,0.454600,0.595100,-0.186200,-0.980500,0.062510 0.289600,0.416100,0.581600,-0.112900,0.000000,0.993600 0.422600,-0.078990,0.540200,0.979900,-0.198100,0.022270 0.344700,-0.445000,-0.513900,0.209200,0.164400,-0.963900 0.332100,0.314300,0.625700,0.337800,-0.000766,-0.941200 -0.447800,0.439600,-0.524600,0.995200,-0.064530,-0.073140 -0.324600,0.377600,0.506100,0.414000,0.000000,-0.910300 0.342800,0.142400,0.629200,-0.784100,-0.076260,0.615900 0.433900,0.279800,0.613800,0.705500,0.124200,0.697700 -0.445800,0.079700,0.585800,-0.973100,-0.161500,0.164200 -0.410000,0.305800,0.627000,-0.448800,0.133800,0.883600 0.308800,0.299000,-0.609800,-0.979000,-0.071290,-0.191000 0.439500,-0.640100,-0.608900,0.916600,-0.196300,-0.348400 -0.424000,0.361300,-0.495500,0.257900,0.000008,-0.966200 -0.383000,0.319900,-0.308300,-0.012430,-0.934700,0.355200 -0.368500,-0.477500,0.595300,-0.115000,0.217700,0.969200 -0.390700,0.126500,0.523300,0.112200,-0.076770,-0.990700 -0.093930,0.452200,-0.537500,0.000000,-0.737700,0.675100 0.332200,-0.483400,0.540700,-0.966300,-0.222200,-0.129900 -0.443300,0.086680,0.538200,0.858500,0.115900,0.499600 -0.324600,-0.154600,0.514900,-0.724400,-0.193500,0.661700 -0.281800,0.462600,0.712200,0.000296,-0.041000,0.999200 -0.391000,0.211900,-0.511700,-0.084980,0.133400,-0.987400 -0.441600,0.173400,0.612100,0.850900,-0.006793,-0.525200 0.353600,-0.069930,-0.512600,-0.226600,0.138800,0.964000 0.352400,-0.477900,-0.596800,-0.051920,0.211500,-0.976000 0.423900,0.361300,0.495500,-0.265400,0.002279,0.964100 -0.352300,0.454600,0.642200,0.004557,-0.987200,0.159300 0.359900,-0.588900,-0.617900,-0.578200,0.094370,-0.810400 -0.526800,0.467700,0.501100,-0.962000,0.272900,-0.000179 -0.444400,0.235600,-0.605400,0.834800,-0.134600,0.533900 0.373200,-0.247800,0.569400,0.511700,-0.149300,0.846100 0.361300,0.392600,0.502500,-0.090840,-0.000012,0.995900 0.360200,-0.067240,0.603200,0.009100,0.212300,-0.977200 0.407400,0.204700,-0.636300,-0.217400,0.001112,0.976100 -0.311200,-0.327800,0.524400,-0.987800,0.060630,0.143200 -0.446100,0.285200,-0.583700,0.969700,-0.132700,0.205000 -0.429900,0.158700,0.522600,0.256800,0.098720,0.961400 -0.410500,-0.138800,-0.540000,-0.977100,-0.201100,-0.069090 -0.191300,0.310700,-0.555300,0.587700,-0.808900,0.016430 -0.413700,-0.015200,0.518000,-0.287900,0.068710,-0.955200 -0.507200,0.491400,-0.430600,-0.444400,0.895800,0.000032 0.368400,-0.304400,-0.498000,-0.238500,0.045280,-0.970100 0.348900,0.017400,0.619500,-0.375700,-0.154800,0.913700 -0.319500,-0.320000,-0.564900,-0.749900,0.030420,0.660900 -0.417000,-0.664200,0.620500,-0.399600,-0.450300,0.798500 0.304900,0.369100,-0.538000,-0.287800,-0.008964,0.957700 0.352500,0.228200,-0.641700,-0.127700,0.044530,-0.990800 -0.365600,0.129000,-0.524600,0.458300,-0.129700,0.879300 -0.507200,0.491400,0.454100,-0.451200,0.892400,0.000023 0.156600,0.462600,0.712200,0.000000,-0.040080,0.999200 -0.461900,0.457400,0.710100,0.000000,-0.675200,0.737600 -0.332700,0.400500,-0.628700,0.327900,-0.000019,-0.944700 0.361200,-0.579600,0.541600,-0.652500,-0.336100,-0.679200 0.527900,0.462100,-0.532400,0.997600,0.069410,0.000041 -0.526700,0.468000,0.227100,-0.959700,0.280900,-0.000155 0.398800,-0.080070,-0.595800,0.603600,-0.222900,-0.765500 0.126400,0.348800,0.571500,-0.381400,-0.924100,0.024380 0.434700,0.431800,-0.596500,-0.905500,0.000197,0.424300 0.423100,0.308600,0.617600,0.562400,0.113200,0.819100 0.435800,0.353500,0.495600,0.405100,0.000000,-0.914300 -0.371300,-0.632900,0.629200,0.453300,-0.086310,0.887100 -0.322000,-0.291100,0.573500,-0.369500,-0.006124,-0.929200 0.437800,0.008271,0.539500,-0.963600,0.210000,0.165400 -0.492200,0.495800,0.407100,-0.129500,0.991600,0.000000 -0.330600,-0.014800,0.548800,0.968800,0.119400,-0.217200 0.336800,0.015740,0.556000,-0.986200,0.113600,-0.120000 -0.396700,-0.446300,0.523200,0.820700,-0.092260,0.563800 -0.368000,0.272300,-0.417000,-0.000486,-0.945100,0.326900 -0.412800,0.196900,0.637100,-0.269100,0.006411,0.963100 0.447000,0.431800,0.518100,-0.977800,0.000034,0.209600 0.449600,0.314300,0.517800,0.984400,-0.003205,-0.176100 -0.337100,-0.005678,0.542300,-0.863900,-0.153900,0.479600 -0.383900,0.447200,0.628000,0.081210,-0.350500,-0.933000 -0.313100,-0.241300,0.508200,0.808800,0.077700,-0.582900 0.335500,-0.112600,0.515200,0.706500,-0.188600,0.682100 -0.132400,0.495800,-0.679000,0.000000,0.990000,-0.141400 0.420800,-0.076770,0.563300,0.948600,-0.241700,0.204500 0.453500,0.157800,-0.548300,0.993400,-0.019110,0.113500 0.395600,-0.422100,0.513000,-0.739300,-0.044170,0.671900 0.330200,0.283700,-0.504700,-0.280700,-0.121400,0.952100 -0.335900,-0.397600,-0.576200,-0.334700,-0.096670,0.937400 0.360100,-0.150800,0.585900,-0.094340,0.228100,-0.969100 0.321100,0.293500,0.518400,0.947600,0.009184,0.319200 -0.322500,0.416100,-0.624200,0.492700,-0.000030,-0.870200 -0.507200,0.491400,0.548100,-0.451200,0.892400,0.000000 -0.438700,-0.651500,0.600400,-0.921700,-0.315400,0.225800 0.370300,-0.308200,-0.570800,0.571400,0.020620,-0.820400 -0.371900,-0.376700,-0.570100,0.456400,-0.181300,0.871100 -0.431800,-0.581800,0.571500,-0.962700,0.266900,0.044750 -0.343600,-0.077850,-0.599000,-0.349700,0.132900,0.927400 -0.396600,-0.430000,0.562300,-0.911200,0.183900,0.368600 -0.328100,-0.219000,0.580100,-0.137700,0.074910,-0.987600 -0.497200,0.495000,-0.430600,-0.226000,0.974100,0.000040 -0.354000,-0.586300,-0.594400,0.970700,-0.193500,-0.142400 -0.345600,-0.558200,0.579200,-0.974100,0.225100,0.021660 0.350600,-0.345100,0.493300,-0.078020,-0.058820,-0.995200 0.165500,0.332100,-0.542900,-0.384500,-0.584800,0.714300 0.320400,-0.296400,0.570200,-0.530300,-0.000657,0.847800 -0.315400,0.322200,-0.616800,0.921600,0.000000,-0.388200 0.391100,-0.007327,-0.617200,-0.254300,0.246300,0.935200 0.408800,-0.545000,-0.596600,-0.706500,-0.308100,0.637100 0.332500,0.272600,-0.632200,0.416500,-0.010050,0.909100 -0.334000,-0.468500,-0.582800,0.805800,-0.016570,-0.591900 -0.502400,0.493400,0.242700,-0.344300,0.938900,0.000000 -0.502400,0.493400,0.227100,-0.344300,0.938900,0.000000 -0.312100,-0.228500,0.573900,0.772400,-0.032180,0.634300 -0.310300,-0.374000,0.540500,0.990400,-0.122200,-0.064560 0.322000,-0.382400,0.571000,-0.717600,-0.000857,0.696500 0.405500,-0.468900,-0.555600,0.975900,0.181200,-0.121900 -0.349200,-0.056830,-0.514400,0.484500,0.172900,0.857500 -0.395000,0.376000,-0.005400,-0.522900,-0.852300,0.011530 -0.522400,0.477300,0.454100,-0.845000,0.534800,0.000117 0.391800,0.025170,-0.627100,0.150800,-0.149800,-0.977200 -0.433200,0.094890,0.527900,0.473500,0.049400,0.879400 0.345000,-0.562500,-0.564700,-0.965800,-0.237000,0.105000 -0.352200,-0.539400,-0.601600,0.553000,0.076510,-0.829600 -0.512000,0.488500,0.642000,-0.570700,0.821200,0.000000 -0.516300,0.485000,0.133100,-0.682300,0.731100,0.000022 -0.512000,0.488500,0.626400,-0.570700,0.821200,0.000000 -0.367700,-0.593400,-0.612700,-0.551700,-0.061190,0.831800 -0.436700,0.305800,0.602600,-0.849100,0.118100,0.514800 -0.351500,0.071310,0.630300,-0.372600,0.126500,-0.919300 0.313800,0.354100,0.599600,0.986600,0.000004,-0.163300 0.444700,0.204700,-0.610500,0.863300,-0.000911,-0.504600 -0.445500,0.071550,0.579300,-0.984600,-0.139100,0.105600 0.420300,0.260200,-0.625600,-0.507900,-0.166700,0.845100 0.408500,-0.050910,-0.593900,-0.725200,0.268600,0.634000 0.409200,-0.556300,-0.604300,0.582900,0.322900,-0.745600 -0.334700,0.016320,-0.594300,0.993200,0.079400,-0.085460 0.000669,0.494800,-0.684200,0.000000,0.960800,-0.277200 -0.361300,-0.046250,-0.511300,0.208100,0.125800,0.970000 0.412400,0.337800,0.622000,0.379700,0.003831,0.925100 -0.321200,0.238200,0.595100,-0.978100,0.208300,-0.000767 -0.328300,0.314300,0.629400,-0.322700,-0.009840,-0.946400 -0.308900,-0.296600,0.556600,-0.969000,0.047300,-0.242400 -0.314300,0.418700,0.624900,0.648500,0.000000,0.761200 -0.350200,-0.578700,0.587200,-0.975300,0.219100,-0.027160 0.321300,-0.228800,0.501300,-0.704500,0.109700,-0.701200 -0.007816,0.480900,-0.704300,0.000299,0.603900,-0.797100 0.354200,-0.530900,0.528000,-0.513600,-0.286700,-0.808700 0.326100,-0.164200,-0.507500,-0.562500,0.163000,0.810500 -0.512300,0.488200,0.422800,-0.574400,0.818600,-0.000012 -0.383600,0.484200,-0.701700,0.000407,0.695000,-0.719000 -0.164400,0.480800,-0.704500,0.000285,0.599800,-0.800200 0.386800,-0.366600,0.499400,0.557200,-0.032450,-0.829800 -0.422900,0.267200,0.505200,0.213500,0.157800,0.964100 -0.400900,0.100700,-0.633700,-0.141200,-0.156600,-0.977500 -0.217300,0.289000,-0.548000,0.696800,-0.715500,0.050250 0.399700,0.189800,-0.514800,-0.057790,-0.126300,0.990300 -0.367100,-0.234000,0.576700,-0.399500,-0.123100,0.908400 -0.356000,0.055510,-0.625100,-0.417100,0.152700,0.895900 -0.435500,0.346300,0.601400,-0.842800,0.000035,0.538200 0.344500,-0.419200,-0.587500,-0.020630,0.150800,-0.988300 -0.519300,0.481700,0.642000,-0.783800,0.621000,0.000023 -0.516000,0.485300,-0.415000,-0.686300,0.727300,0.000000 -0.412900,0.190900,0.516400,0.022150,0.106700,0.994000 -0.516000,0.485300,0.548100,-0.686400,0.727200,0.000000 -0.516000,0.485300,-0.649800,-0.686300,0.727300,0.000000 -0.519300,0.481700,0.626400,-0.783600,0.621300,0.000025 0.527200,0.457300,-0.031300,0.849100,-0.528200,0.000000 0.336000,0.129900,-0.565500,-0.987900,-0.099250,0.119500 0.443200,0.212700,-0.518900,0.624000,-0.109600,0.773700 0.330000,-0.319800,0.495100,-0.354600,-0.075230,-0.932000 -0.420300,0.243400,0.630600,-0.510200,0.145900,0.847600 -0.325900,0.228900,-0.609300,0.966200,-0.161100,-0.201400 0.407500,-0.140900,0.539900,-0.978300,0.197800,-0.062360 -0.374600,-0.550800,0.610700,0.020210,-0.225500,-0.974000 -0.335700,0.188600,-0.541400,0.960500,-0.141700,0.239400 -0.443300,0.306000,-0.593300,-0.913100,0.109300,-0.392900 -0.359500,0.248700,-0.633500,-0.018430,-0.113700,0.993300 -0.319500,-0.428800,0.569700,0.970700,-0.095520,0.220700 0.400000,0.392600,-0.500600,0.240800,-0.000010,-0.970600 0.367900,-0.477000,-0.595900,0.116600,0.227300,-0.966800 0.394000,-0.568000,0.532200,0.045080,0.238900,0.970000 -0.378900,-0.226400,-0.495000,0.467700,-0.111900,-0.876800 -0.426200,-0.569600,0.563200,0.977500,-0.205600,0.047200 -0.516000,0.485300,-0.344500,-0.686300,0.727300,0.000017 0.443200,0.194900,-0.520800,0.507200,-0.054280,0.860100 0.368200,-0.044640,0.610300,0.031570,-0.212600,0.976600 -0.310800,0.449700,-0.537700,0.619500,-0.324000,0.715000 0.519000,0.481700,0.185300,0.817100,0.576500,-0.000045 0.375700,-0.123800,-0.506400,0.002825,-0.115500,-0.993300 0.404500,-0.658600,-0.626100,0.162900,-0.336000,-0.927700 -0.439400,0.447200,-0.587500,0.898700,-0.379500,0.219800 0.391200,0.324300,-0.297600,0.131500,-0.934100,0.332000 -0.356700,0.271900,-0.469700,0.708600,-0.705600,0.000000 0.406900,-0.110400,-0.514500,0.830600,-0.096430,0.548400 0.336000,0.306700,-0.631700,0.219900,-0.027170,0.975100 0.311800,0.387400,-0.622100,-0.893600,0.000000,-0.448800 -0.323300,-0.241100,-0.574200,0.371300,-0.085900,-0.924500 0.443800,0.259400,0.512100,-0.732700,0.040870,0.679400 0.368100,-0.517600,-0.603200,-0.005569,-0.250700,0.968100 -0.311300,0.332600,-0.537300,0.570700,0.000000,0.821100 0.443900,0.150200,0.520200,0.420500,-0.089440,-0.902900 -0.368100,-0.416200,-0.501000,0.033700,-0.144300,0.989000 -0.411600,-0.002331,-0.608200,0.496100,0.269600,0.825300 -0.359100,-0.548000,0.536400,-0.410400,0.275900,0.869100 -0.323200,-0.125500,0.521000,0.780800,0.210100,-0.588400 0.395000,-0.140000,0.500300,0.326500,0.041400,-0.944300 -0.438900,-0.615600,0.560200,-0.926700,0.155600,-0.342100 0.446000,0.055780,0.546700,-0.989500,0.134600,0.053440 0.448600,0.088160,0.593600,0.940200,-0.167300,0.296600 -0.368700,0.111400,-0.636900,0.059000,-0.120600,-0.990900 -0.313900,-0.348500,0.571500,0.771500,-0.026740,0.635600 -0.522100,0.477700,0.172300,-0.849300,0.528000,0.000087 -0.418200,0.400500,0.620300,-0.523500,0.000028,0.852000 -0.375200,0.157200,-0.520300,-0.178800,0.137500,-0.974200 -0.522000,0.478000,-0.634200,-0.839200,0.543800,0.000000 -0.519300,0.481700,-0.657700,-0.768400,0.640000,0.000000 0.340400,0.095230,-0.555000,0.955400,-0.050840,-0.290800 0.348700,0.102800,-0.537000,-0.674400,0.044540,0.737100 -0.343800,-0.444700,-0.583200,-0.279400,-0.085210,0.956400 -0.338300,0.048480,0.623100,0.742500,-0.094420,0.663200 0.527200,0.457300,-0.493200,0.848600,-0.529000,0.000000 0.338900,-0.451900,-0.514400,-0.310600,-0.200100,0.929200 -0.395700,0.283000,0.501500,-0.128600,0.044630,0.990700 0.404100,-0.141100,0.557600,-0.921900,0.231500,-0.310600 -0.329800,-0.249000,-0.575400,0.209800,-0.100200,-0.972600 -0.383700,-0.077070,0.509300,0.010770,0.113600,-0.993500 0.311700,0.316900,-0.622000,-0.894900,-0.001532,-0.446300 -0.343200,0.048510,-0.620000,0.732000,-0.063220,-0.678400 -0.321900,-0.135300,0.524900,-0.875500,-0.198300,0.440600 -0.384200,-0.409300,0.569800,0.742300,-0.232100,-0.628500 0.330400,0.277700,0.509100,0.605900,0.251400,0.754800 0.385500,-0.283200,-0.505600,0.903400,-0.020630,0.428300 -0.332500,-0.442400,0.584500,-0.586300,-0.036740,-0.809200 -0.445600,0.308100,-0.567200,0.988400,-0.082970,0.127500 -0.444000,0.085060,-0.598300,0.903700,0.186300,0.385500 0.434500,0.165100,0.517500,-0.302900,0.109800,0.946700 0.417800,0.094780,-0.628000,-0.412100,0.157000,0.897500 0.445700,0.220000,-0.601300,-0.955600,-0.050420,0.290300 0.428500,0.423900,-0.607400,-0.793000,-0.000045,0.609200 -0.344800,0.107600,-0.549900,-0.945700,-0.033000,-0.323300 -0.321100,-0.343300,-0.570600,0.595400,-0.006828,-0.803400 0.327700,-0.351000,-0.503300,0.433100,0.082740,-0.897500 -0.326800,0.392600,-0.623400,-0.550600,-0.005243,0.834700 -0.340800,0.126100,-0.579000,-0.994400,0.059210,-0.087790 -0.327300,0.212400,0.571400,-0.987000,0.134100,0.089060 0.303700,0.327400,-0.588200,-0.789900,-0.000009,-0.613300 0.303700,0.303900,-0.588200,-0.785300,-0.010750,-0.619000 0.453400,0.104000,0.579600,0.986700,-0.125400,0.103600 0.356900,-0.564300,-0.544600,0.647000,0.280800,-0.708900 0.438300,0.314100,-0.588400,-0.973200,-0.082860,0.214300 -0.409100,-0.077020,-0.512200,0.567200,0.001068,-0.823600 0.327400,-0.068660,-0.541200,0.951100,-0.126300,-0.281900 0.312300,0.280700,0.591500,-0.840400,-0.359700,0.405500 0.420000,-0.068820,-0.533000,0.971200,-0.170300,0.166800 -0.407100,0.447200,0.499900,-0.089350,-0.246300,0.965100 0.437800,0.037880,0.592400,-0.899600,0.191300,-0.392700 0.379300,-0.367000,-0.567500,0.721600,0.086620,-0.686900 0.375800,0.189100,-0.642400,0.052620,0.001005,-0.998600 0.339200,-0.508500,-0.539900,0.838200,0.316000,-0.444500 -0.365200,-0.387000,0.579600,-0.261600,0.170000,0.950100 0.393900,-0.398600,-0.519200,0.946100,0.103400,0.307100 0.374700,-0.335700,0.493200,0.250400,-0.083730,-0.964500 0.330500,-0.015270,-0.595600,0.969400,-0.112100,0.218600 -0.354100,-0.537300,0.532000,0.401200,-0.281300,-0.871800 0.437100,0.118400,0.523100,-0.361400,0.041460,0.931500 0.336600,0.037800,-0.619600,-0.870100,-0.036100,-0.491500 -0.385000,-0.249600,-0.499200,0.677000,0.030840,-0.735400 -0.345000,-0.536400,0.602800,0.737400,0.007713,0.675400 -0.442100,0.142100,0.615700,-0.828700,0.007571,0.559700 0.391900,-0.492600,-0.521800,-0.275100,0.116700,-0.954300 -0.401800,-0.128500,-0.574800,-0.766400,-0.255000,-0.589600 -0.391800,0.086700,-0.630000,0.082200,0.139400,0.986800 0.319800,-0.390000,0.567200,-0.906500,-0.065030,0.417200 0.353800,-0.061910,0.511100,-0.357300,0.153800,-0.921200 -0.350400,-0.192800,-0.579900,0.039430,0.107600,0.993400 0.428800,0.369100,-0.607000,-0.807500,0.000584,0.589900 0.452300,0.165700,-0.541100,0.969200,-0.014330,0.245700 -0.343600,-0.492100,-0.587800,-0.622700,-0.028830,0.781900 -0.321300,0.385400,0.508300,0.754400,0.010260,-0.656400 -0.338500,0.165000,0.546400,-0.888200,0.156600,0.431900 -0.390200,0.306800,-0.343000,-0.136200,-0.909800,0.392100 0.368000,-0.382100,0.495700,0.044200,-0.135700,-0.989800 -0.329000,-0.467500,-0.540200,0.965700,-0.226500,0.127100 0.378300,-0.441800,-0.586000,0.404100,0.196700,-0.893300 0.322500,-0.280600,-0.576400,-0.256500,-0.009433,-0.966500 -0.391900,-0.623900,-0.544700,0.122700,-0.257500,0.958500 -0.367800,-0.467600,-0.509100,0.083910,-0.221900,0.971400 0.366100,-0.327900,-0.571100,-0.431000,-0.037230,0.901600 0.367500,-0.187300,-0.580700,-0.301000,0.102700,0.948100 0.417400,0.429200,0.619300,0.535700,0.000631,0.844400 -0.439600,0.228700,-0.510200,-0.256900,-0.171900,0.951000 0.404500,-0.545400,-0.532700,-0.308500,0.161000,-0.937500 -0.313100,-0.379600,0.548400,-0.990400,0.137900,0.012920 -0.353900,0.107600,0.635800,-0.359400,0.108300,-0.926900 0.336000,0.033390,0.580800,-0.996800,0.044610,-0.066220 0.398500,-0.175900,0.557600,0.892800,-0.202100,0.402600 -0.331100,0.204000,-0.603400,-0.987000,0.117500,0.109700 0.394600,0.334800,-0.267400,0.587600,-0.784100,0.199800 -0.329300,-0.483000,0.567500,-0.961700,0.260400,-0.086170 0.444700,0.453000,-0.595200,0.408600,-0.887300,-0.213900 0.415000,-0.565100,-0.540300,-0.476600,0.059180,-0.877100 -0.366500,0.009918,-0.619400,-0.028360,0.175400,0.984100 -0.318200,0.392600,0.524000,-0.979000,-0.000132,0.203700 0.300900,0.272100,-0.581700,-0.338400,-0.730000,-0.593800 0.321800,0.309100,-0.627100,0.491400,0.032420,0.870300 -0.327500,0.278100,0.511300,-0.633800,0.250900,0.731700 0.363700,-0.512800,-0.525600,0.149300,0.241700,-0.958800 0.311800,-0.343000,0.540500,-0.998200,-0.055610,-0.022580 -0.434900,0.259500,0.616400,-0.799300,0.125900,0.587600 0.391000,0.113400,0.633900,-0.057570,0.120800,-0.991000 -0.392400,-0.237500,-0.501300,-0.822900,-0.034990,0.567100 0.341600,0.056050,0.555600,0.986500,-0.036100,0.159700 0.438400,0.358700,0.594000,-0.898400,0.000000,-0.439200 -0.433800,0.026050,-0.595500,0.867900,0.170800,0.466500 0.312800,-0.386000,-0.531200,-0.979600,-0.166700,0.111900 -0.352700,-0.304100,0.574300,0.174400,-0.037660,-0.984000 0.367000,-0.632100,0.595900,0.979000,0.203600,-0.013910 0.313700,-0.210800,0.553200,0.995800,-0.061550,-0.067530 0.415200,0.298600,-0.499000,-0.079740,0.060030,-0.995000 -0.343400,0.029340,0.620200,-0.629100,0.104300,-0.770300 -0.093660,0.363400,-0.580900,0.146900,-0.394700,-0.907000 0.330800,0.016550,-0.587300,-0.994700,0.096460,0.036420 -0.332000,-0.132600,0.510600,0.565400,0.187100,-0.803300 -0.307400,-0.280600,0.517700,0.966100,-0.061570,-0.250700 -0.324200,-0.359100,0.502500,0.505500,-0.064140,-0.860400 0.391900,-0.467600,-0.579900,-0.714900,-0.247200,0.654000 -0.416000,0.196900,-0.630700,0.303800,0.007184,0.952700 -0.342700,0.187900,0.531100,-0.725600,0.174700,0.665600 0.400800,-0.538500,-0.600600,-0.517700,-0.302400,0.800300 0.523400,0.454800,0.595100,0.261000,-0.965300,0.000000 -0.420000,0.249700,-0.625400,0.427000,-0.115400,0.896900 -0.523400,0.454800,-0.258400,-0.261200,-0.965300,0.000000 -0.430500,-0.012310,0.550700,0.980300,0.197200,0.013020 -0.431300,-0.622500,0.555200,0.630200,0.015450,0.776300 0.339600,-0.485500,-0.526700,0.608700,0.295600,-0.736200 0.419800,0.431800,-0.616300,-0.624800,0.000563,0.780700 -0.382900,-0.152800,0.580400,0.547000,0.294600,-0.783600 -0.452600,0.197100,-0.523900,-0.902300,-0.034830,0.429800 -0.336600,-0.155800,0.589000,-0.101600,0.162900,-0.981400 -0.398500,-0.437200,-0.510400,-0.695300,-0.003796,0.718700 -0.431900,0.426500,-0.604000,0.794100,-0.000014,0.607800 -0.428300,0.178700,-0.625400,0.512200,-0.006355,0.858900 -0.431500,-0.664400,0.562500,-0.620100,-0.541400,-0.567800 -0.422800,0.031850,0.610700,0.709900,0.180500,-0.680700 -0.353300,-0.587000,0.571300,-0.947100,0.284100,0.149000 0.390500,0.359500,-0.165700,0.050400,-0.978100,0.202100 -0.391600,0.055910,-0.518100,0.085270,0.029470,0.995900 0.180400,0.330300,-0.539700,-0.081850,-0.130100,0.988100 -0.445900,0.447200,-0.579500,-0.952100,-0.249400,-0.177000 -0.367600,-0.257200,0.494100,-0.162300,0.038160,-0.986000 -0.375800,0.016570,-0.620500,0.032370,0.198500,0.979600 0.379600,-0.404800,-0.572900,-0.605000,-0.226900,0.763200 0.418000,-0.538400,-0.572000,-0.955000,-0.246700,0.164900 0.382700,-0.508800,-0.601700,0.239100,0.275600,-0.931100 0.344000,0.447500,-0.501100,-0.245500,-0.145900,0.958400 0.310200,0.439500,-0.603200,0.989400,-0.090480,0.113800 -0.383600,-0.499600,0.519000,-0.037470,-0.200200,-0.979000 0.329800,-0.084770,0.594400,-0.735500,-0.048730,0.675800 0.343200,0.012230,0.541100,0.877200,-0.166300,0.450400 0.336700,0.152300,0.597700,0.991700,0.128300,-0.010680 -0.423600,0.371700,-0.613400,0.632300,0.000027,0.774700 0.361700,0.316500,-0.634500,0.084430,0.010680,-0.996400 0.392200,-0.656800,0.620900,0.082500,0.285600,-0.954800 0.418600,-0.516200,0.534400,0.942700,0.126100,-0.308800 -0.391900,-0.191200,0.555000,0.918500,0.180600,-0.351600 -0.335900,0.138600,-0.594600,0.991900,-0.124600,0.026520 0.450500,0.149900,0.596200,-0.958300,-0.004693,-0.285800 0.429300,0.282300,-0.617600,0.756300,0.117400,-0.643600 -0.371300,-0.399100,0.579900,-0.368900,0.183500,0.911200 -0.352100,-0.123200,0.598500,-0.048100,-0.201300,0.978300 -0.439600,0.050210,0.541800,0.949300,0.104600,0.296600 0.315600,0.252200,-0.587200,-0.976800,-0.213100,0.019910 -0.352200,-0.233500,0.497300,-0.079110,-0.059910,0.995100 -0.357600,-0.222600,0.578600,0.250400,0.102400,-0.962700 0.419400,0.245200,-0.509000,-0.160500,0.223000,-0.961500 -0.313200,-0.225900,-0.554100,-0.991900,-0.035210,0.122300 -0.414500,0.301900,-0.620600,0.412200,-0.114500,0.903900 0.350400,0.452200,-0.096540,-0.613500,-0.789700,0.000000 -0.358500,-0.605100,0.609200,-0.924300,0.095860,-0.369500 0.324600,0.291200,-0.506100,-0.412100,-0.031100,0.910600 -0.434500,-0.608700,0.562800,0.939100,-0.155100,0.306700 0.427900,0.379600,0.608800,-0.710300,-0.000579,-0.703900 0.360000,-0.398800,-0.504800,0.001919,0.147600,-0.989000 0.332200,0.040280,-0.602400,-0.995100,0.011220,-0.098200 0.317100,-0.312000,0.567300,-0.707300,-0.017730,0.706700 0.426900,-0.022930,-0.539800,-0.965600,0.185200,-0.182800 -0.349800,-0.037820,-0.520700,-0.585600,-0.162800,-0.794100 -0.428000,0.268500,-0.499300,-0.229000,-0.166200,0.959100 0.392600,-0.366800,0.516800,-0.989200,-0.043570,0.139800 0.321100,0.348300,0.518400,0.948000,0.000007,0.318300 0.385200,-0.398600,0.504600,-0.518900,0.076960,0.851400 -0.320500,-0.152900,0.586900,0.591400,-0.110400,0.798800 -0.372000,-0.286000,-0.566900,-0.483700,0.038230,-0.874400 -0.315100,-0.366700,0.511600,0.848500,-0.094890,-0.520600 0.344900,0.071360,0.618300,0.804800,0.056260,-0.590900 -0.360200,0.001553,0.624200,0.050630,-0.204200,0.977600 -0.447800,0.071370,-0.563800,0.988500,0.144500,0.044960 0.399900,0.157700,-0.637900,-0.138400,-0.018250,0.990200 -0.448300,0.244500,-0.601000,-0.914300,0.115100,-0.388300 0.453300,0.275100,0.532400,0.993100,0.079170,-0.086350 0.375500,-0.516000,0.600800,0.073480,0.219200,0.972900 -0.321000,-0.194700,-0.571500,-0.737300,0.025760,0.675000 -0.352300,-0.359100,0.500100,-0.050290,0.058270,0.997000 0.311100,-0.264900,0.548100,0.996700,-0.022510,-0.077800 0.396800,-0.044970,0.602900,-0.380900,0.240900,-0.892700 -0.413100,0.040400,0.622900,-0.501900,-0.178100,0.846400 0.383900,-0.522600,0.520200,-0.042660,-0.212900,-0.976100 -0.420000,0.400500,-0.492200,-0.139300,-0.000021,0.990300 -0.319300,0.275000,-0.548000,-0.982600,0.170100,-0.075250 -0.379400,-0.280500,0.556400,0.818800,-0.019250,-0.573800 0.407500,-0.650000,0.622400,-0.144600,0.260400,-0.954600 0.338800,-0.021660,-0.535200,0.794300,-0.155400,-0.587300 0.413200,-0.527800,0.583800,-0.789600,-0.291500,-0.540000 0.442200,0.306500,0.506800,-0.807700,0.004950,0.589500 0.334700,-0.430500,-0.515000,0.452500,0.199000,-0.869200 0.359900,-0.202900,0.492800,-0.063800,0.064430,-0.995900 -0.334900,0.188200,0.545900,-0.943700,0.151400,0.294100 -0.331900,0.243700,-0.623500,-0.787400,0.118100,0.605000 -0.319200,0.251900,0.572000,-0.984600,0.151700,0.087290 0.359800,-0.136800,0.501900,0.111900,-0.145600,0.983000 0.328100,0.296100,-0.632900,-0.430900,0.033270,-0.901800 -0.408000,-0.504100,-0.578500,0.794700,-0.288100,0.534200 -0.338800,0.180900,-0.623300,-0.848900,0.112700,0.516400 0.339500,0.197200,0.631500,-0.511000,-0.076500,0.856100 0.344400,-0.178500,0.583900,0.021120,-0.163700,0.986300 0.427300,0.244300,-0.623900,-0.650500,-0.126000,0.749000 0.450100,0.400400,0.532400,0.999900,-0.010730,-0.001729 -0.455000,0.142100,-0.563800,0.998600,-0.000995,0.053000 -0.409800,-0.070680,0.582800,0.853200,0.250900,-0.457200 -0.332900,0.079360,0.602800,0.999200,0.025120,0.030010 0.442300,0.236500,-0.604400,-0.920600,-0.128200,0.368800 0.337000,0.353500,-0.502700,-0.238900,0.003398,0.971000 0.440800,0.063980,0.523500,0.629100,-0.054170,-0.775400 0.438900,0.013690,0.530700,0.919500,-0.161300,-0.358600 0.357700,0.336400,-0.260400,-0.339400,-0.866900,0.365100 -0.391200,0.149900,-0.637600,-0.072790,0.002272,-0.997300 0.432600,0.405400,-0.501100,0.475900,0.035110,0.878800 -0.429600,0.006696,0.525600,-0.723400,-0.068520,-0.687000 0.424100,0.044490,0.612100,-0.612700,0.178900,-0.769800 -0.414300,0.353500,0.495900,-0.136500,0.000019,-0.990600 0.368500,-0.484100,0.515000,0.066120,0.217700,0.973800 0.328700,-0.004128,-0.594500,-0.989400,0.121700,-0.079360 0.445100,0.056450,0.571700,-0.980800,0.159300,-0.112200 -0.368200,0.181200,0.640100,-0.000212,0.002373,-1.000000 -0.368000,0.173400,-0.636100,-0.018820,0.008906,0.999800 0.385300,-0.163000,-0.504300,-0.430600,-0.045860,-0.901400 -0.383500,-0.090590,0.510300,0.021830,-0.148800,0.988600 -0.335600,0.197600,0.534300,0.901000,-0.171400,-0.398400 -0.156900,0.338500,-0.581500,0.043900,-0.093610,-0.994600 -0.360300,0.189000,-0.635600,-0.098170,0.004751,0.995200 -0.316600,-0.351400,-0.556900,-0.953700,0.048790,0.296900 0.438900,0.052880,-0.597300,0.928300,-0.192300,-0.318400 0.435600,0.149000,0.623200,0.601900,0.005989,0.798600 0.340000,0.170600,-0.632200,0.714600,0.065530,0.696500 -0.393500,-0.115000,0.588400,-0.594200,-0.267900,0.758400 0.328000,-0.452900,0.556000,0.991400,0.125000,-0.040110 -0.382900,-0.500000,-0.517700,-0.009382,0.224200,-0.974500 -0.425800,0.235600,0.628300,-0.528300,0.139200,0.837600 0.413900,-0.519800,-0.543800,-0.955600,-0.180500,-0.232900 -0.425000,0.290200,-0.616300,0.599700,-0.130800,0.789400 0.454900,0.126700,0.536900,0.935600,-0.081940,-0.343400 0.414600,-0.526400,-0.574300,-0.922500,-0.269200,0.276600 -0.414900,0.048150,0.523000,0.074880,-0.011160,0.997100 0.412100,-0.078430,-0.573100,-0.915600,0.233300,0.327600 -0.258300,0.454800,-0.704900,0.000000,-0.974500,-0.224400 0.444700,-0.639900,0.558300,0.814000,-0.239000,-0.529400 0.371300,-0.598500,0.618300,-0.345100,0.156500,0.925400 0.437600,-0.621000,-0.597500,-0.905000,-0.312200,0.288900 -0.228900,0.278700,0.542700,0.594200,-0.651300,-0.472000 -0.310400,0.337800,0.535500,0.637900,0.019910,-0.769900 0.423000,-0.544300,-0.552800,0.974700,0.212500,0.069050 -0.444200,0.439500,-0.572300,0.980100,-0.118500,0.159100 -0.368500,0.361300,0.631100,0.104800,0.000000,-0.994500 -0.435600,-0.609600,-0.550800,0.785100,-0.078800,-0.614300 -0.352300,0.301300,-0.492000,0.802200,-0.000116,0.597000 0.368000,-0.593600,0.611500,0.598300,-0.023540,-0.800900 0.322000,0.249900,0.553700,-0.968400,-0.230200,-0.096180 0.431700,-0.578900,0.544800,0.905000,0.103300,-0.412700 0.437100,0.112400,0.616800,-0.699600,0.181800,-0.691000 -0.329200,0.205900,-0.571700,0.990600,-0.110400,0.080690 0.331600,0.172700,-0.578900,0.986600,0.140700,-0.082180 -0.312100,0.405700,0.622000,0.896300,0.000000,0.443500 -0.379100,0.099430,0.524100,0.100900,0.030560,-0.994400 -0.338200,0.032660,-0.587000,-0.999300,-0.037060,-0.001738 -0.335900,-0.508700,0.555000,-0.970400,0.218500,0.102600 -0.406900,-0.634000,0.552300,-0.044200,0.224600,0.973400 -0.015630,0.454600,0.704800,0.003677,-0.976800,0.214200 -0.314000,0.311700,0.617900,-0.895500,0.000642,-0.445100 0.439500,0.036870,0.524700,0.781600,-0.116400,-0.612800 -0.387800,-0.480500,0.515700,-0.193300,-0.156800,-0.968500 -0.343900,-0.132500,-0.505800,-0.321600,-0.153800,-0.934300 0.315200,0.377000,0.532600,-0.898400,0.000019,-0.439100 0.376700,-0.522300,-0.604100,-0.091520,-0.249700,0.964000 -0.395300,-0.492800,-0.517300,0.242700,0.170000,-0.955100 -0.276600,0.452100,-0.588100,0.000000,-0.841200,-0.540700 -0.431800,-0.021950,-0.555300,0.977600,0.204000,0.051990 0.336800,0.063790,0.602700,-0.989900,0.012940,0.141000 0.402100,-0.460400,-0.548100,-0.984400,-0.161200,0.069870 -0.429100,0.308800,-0.609900,0.710100,-0.153600,0.687200 0.391900,-0.583600,-0.540200,0.051950,0.248600,-0.967200 0.431200,0.033450,0.602100,-0.779800,0.174200,-0.601400 -0.439700,0.356900,0.507600,-0.856300,0.006543,-0.516500 0.376000,0.149900,-0.640300,-0.050420,-0.013510,0.998600 -0.399100,0.063910,-0.520300,-0.070470,-0.027590,-0.997100 0.424600,0.085670,0.620600,-0.493900,0.170800,-0.852600 0.317900,0.353500,0.540100,0.998400,0.000000,0.056840 0.415500,0.228400,0.629600,-0.291900,-0.092750,-0.951900 0.338700,0.134400,0.617800,-0.961500,-0.090910,0.259300 -0.399100,-0.618200,-0.545300,-0.077110,0.252900,-0.964400 -0.375600,-0.107900,-0.504700,-0.052380,-0.120000,-0.991400 0.332400,-0.461200,0.573000,0.916900,0.083170,-0.390400 -0.367800,-0.500400,0.522400,-0.078070,0.225700,0.971100 0.367700,0.274500,-0.504000,0.059570,0.151300,-0.986700 0.367000,-0.660400,-0.606800,-0.961300,-0.243100,-0.129500 -0.156600,0.496000,-0.211400,-0.046070,0.998200,0.038940 0.396100,0.345600,-0.407100,0.999500,-0.021320,-0.021320 0.399000,0.040430,0.519600,0.065060,-0.028730,0.997500 -0.331900,0.345600,-0.626400,-0.305200,-0.007743,0.952300 -0.450500,0.228100,-0.522600,0.844500,-0.012830,-0.535400 -0.408600,-0.116500,0.540300,0.983200,0.177900,-0.039690 0.396800,0.392600,-0.438400,0.999500,0.021320,0.021300 -0.355500,0.424000,-0.227000,0.999200,0.038960,0.007098 -0.511800,0.488700,-0.172200,-0.568900,0.822400,-0.000086 0.437300,0.452100,-0.542900,-0.561400,-0.827500,0.011640 -0.396900,0.298700,-0.477400,-0.981500,-0.021270,0.190000 0.242700,0.424000,-0.581600,0.000000,0.000000,-1.000000 -0.414900,0.496600,0.242700,0.000000,1.000000,0.000000 0.242700,0.496600,0.422800,0.000000,1.000000,0.000000 -0.422400,0.345600,0.617700,-0.554000,0.000061,0.832500 0.354800,0.416100,0.203600,-1.000000,0.000000,0.000000 -0.227000,0.424000,-0.581600,0.000000,0.000000,-1.000000 0.354800,0.384800,0.187900,-1.000000,0.000000,0.000000 -0.317000,0.345700,0.540100,-0.999500,0.000000,-0.031610 0.375800,0.322200,0.502300,0.007137,-0.014200,0.999900 0.477600,0.454500,0.407200,0.000000,-1.000000,0.000000 -0.281800,0.454500,0.321000,0.000000,-1.000000,0.000000 0.274100,0.496600,-0.485400,0.000000,1.000000,0.000000 0.219200,0.454600,-0.595200,0.000000,-0.987100,-0.160200 -0.397000,0.400400,-0.289700,-1.000000,0.000000,0.000000 0.354800,0.431800,0.375800,-1.000000,0.000320,0.000000 -0.046950,0.424000,-0.581600,0.000000,0.000000,-1.000000 -0.031290,0.454500,-0.344500,0.000000,-1.000000,0.000000 0.430600,0.454500,0.438500,0.000000,-1.000000,0.000000 0.397000,0.314300,0.368000,0.999900,-0.014030,-0.001367 -0.172200,0.408300,0.539500,0.000000,0.000000,-1.000000 0.007853,0.454500,-0.234900,0.000000,-1.000000,0.000000 0.321000,0.495600,0.274000,0.000000,1.000000,0.000000 -0.454100,0.454500,0.187900,0.000000,-1.000000,0.000000 0.172300,0.496600,-0.368000,0.000000,1.000000,0.000000 0.415000,0.495600,0.062650,0.000000,1.000000,0.000000 0.109600,0.454600,0.595200,-0.001075,-0.987500,0.157400 0.039170,0.496600,0.407200,0.000000,1.000000,0.000000 -0.125200,0.454500,0.321000,0.000000,-1.000000,0.000000 -0.234900,0.496600,0.274100,0.000000,1.000000,0.000000 -0.516000,0.485300,-0.305300,-0.673000,0.739700,0.000100 0.305400,0.454500,-0.125200,0.000000,-1.000000,0.000000 0.354800,0.400500,0.242700,-1.000000,0.000000,0.000000 -0.469700,0.496600,0.313200,0.000000,1.000000,0.000000 0.344300,0.454600,0.219200,-0.169400,-0.985500,0.000000 0.454100,0.454500,0.187900,0.000000,-1.000000,0.000000 -0.397000,0.408300,0.461900,-1.000000,0.000000,0.000000 0.477600,0.496600,-0.289700,0.006646,1.000000,0.000000 -0.422800,0.496600,0.250600,0.000000,1.000000,0.000000 0.141000,0.454500,0.164400,0.000000,-1.000000,0.000000 0.354800,0.392600,0.054830,-1.000000,-0.000064,-0.000000 -0.258400,0.495600,-0.195700,0.000000,1.000000,0.000000 0.164400,0.496600,0.610700,0.000000,1.000000,0.000000 -0.352500,0.431800,0.632300,0.037060,0.001044,-0.999300 0.164400,0.496600,-0.156600,0.000000,1.000000,0.000000 -0.367900,0.157700,-0.638500,0.021460,-0.002480,-0.999800 -0.148700,0.454500,-0.211400,0.000000,-1.000000,0.000000 0.354800,0.369100,0.352300,-1.000000,0.000000,0.000000 -0.368000,0.496600,0.532400,0.000000,1.000000,0.000000 -0.397000,0.408300,-0.438400,-1.000000,0.000000,0.000000 -0.344500,0.496600,0.454100,0.000000,1.000000,0.000000 -0.180100,0.447100,0.583000,0.000000,-0.493900,0.869500 0.180100,0.496600,-0.305300,0.000000,1.000000,0.000000 0.354800,0.424000,0.313200,-1.000000,0.000000,0.000000 -0.242700,0.454500,-0.234900,0.000000,-1.000000,0.000000 0.164400,0.496600,-0.634200,0.000000,1.000000,0.000000 0.431400,0.423900,0.497800,-0.426000,0.003739,0.904700 0.397000,0.408300,0.140900,1.000000,0.000000,0.000000 0.180100,0.369100,0.581600,0.000000,0.000000,1.000000 -0.250500,0.495600,-0.133100,0.000000,1.000000,0.000000 -0.360100,0.496600,0.156600,0.000000,1.000000,0.000000 -0.397000,0.408300,0.242700,-1.000000,0.000000,0.000000 -0.211400,0.322200,0.539500,0.000000,0.000000,-1.000000 -0.156600,0.447100,0.583000,0.000000,-0.493900,0.869500 -0.414900,0.454500,0.360200,0.003810,-1.000000,0.000000 -0.086100,0.496600,-0.532400,0.000000,1.000000,0.000000 -0.266200,0.454500,0.618500,0.000000,-1.000000,0.000000 -0.313200,0.454500,0.328900,0.000000,-1.000000,0.000000 -0.391500,0.495600,-0.469700,0.000000,1.000000,0.000000 0.133100,0.454500,-0.501100,0.000000,-1.000000,0.000000 -0.211400,0.454500,0.602900,0.000000,-1.000000,-0.004194 0.305400,0.454500,0.415000,0.000000,-1.000000,0.000000 -0.446300,0.496600,0.610700,0.000000,1.000000,0.000000 0.461900,0.495600,0.399300,0.000064,1.000000,0.000000 0.297500,0.454500,-0.219200,0.000000,-1.000000,0.000000 -0.354800,0.400500,-0.305300,0.999800,0.017710,-0.003563 -0.039130,0.496600,0.407200,0.000000,1.000000,0.000000 -0.446300,0.454500,0.681200,0.000000,-1.000000,0.000000 -0.117400,0.496600,-0.524500,0.000000,1.000000,0.000000 -0.219200,0.496600,0.266200,0.000000,1.000000,0.000000 -0.391400,0.462800,-0.712300,0.000000,-0.027260,-0.999600 0.227100,0.454500,0.031340,0.000000,-1.000000,0.000000 -0.354800,0.377000,-0.281800,1.000000,0.000000,0.000000 -0.046950,0.496600,-0.133100,0.000000,1.000000,0.000000 -0.156600,0.454500,0.266200,0.000000,-1.000000,0.000000 -0.211400,0.454500,-0.368000,0.000000,-1.000000,0.000000 -0.438400,0.495600,-0.062620,0.000000,1.000000,0.000000 0.507100,0.491400,0.681200,0.467500,0.883900,0.011520 0.508900,0.454500,0.321000,0.000000,-1.000000,0.000000 0.023510,0.400500,0.539500,0.000000,0.000000,-1.000000 0.507100,0.491400,0.281900,0.485200,0.874400,0.000000 0.462000,0.454500,-0.289700,0.000000,-1.000000,0.000000 0.526100,0.468400,0.258400,0.936900,0.349700,0.000026 -0.039130,0.496600,-0.336600,0.000000,1.000000,0.000000 -0.352300,0.496600,0.141000,0.000000,1.000000,0.000000 0.516800,0.454500,0.485400,0.019410,-0.999800,0.000000 -0.140900,0.496600,0.117500,0.000000,1.000000,0.000000 -0.485400,0.454500,-0.657600,0.000000,-1.000000,0.000000 -0.397000,0.431800,0.313200,-1.000000,0.000320,0.000000 -0.422800,0.495600,-0.101800,0.000000,1.000000,0.000000 -0.227000,0.454500,-0.368000,0.000000,-1.000000,0.000000 0.446300,0.496600,-0.571500,0.000000,1.000000,0.000000 -0.148700,0.454500,-0.274000,0.000000,-1.000000,0.000000 -0.180100,0.496600,-0.352300,0.000000,1.000000,0.000000 0.180100,0.495600,0.117500,0.000000,1.000000,0.000000 0.219200,0.496000,0.000034,0.000000,0.999100,0.042510 -0.461900,0.495600,-0.579400,-0.000064,1.000000,0.000000 0.397000,0.423900,0.023490,1.000000,0.000000,0.000000 -0.156600,0.496600,0.297500,0.000000,1.000000,0.000000 0.383700,0.495600,0.172300,0.000000,1.000000,0.000000 0.396000,0.337800,-0.469700,1.000000,0.000000,-0.000320 -0.397000,0.392600,-0.328800,-1.000000,0.000000,0.000000 0.219200,0.496600,0.516800,0.000000,1.000000,0.000000 0.444000,0.400400,-0.517900,0.946300,-0.010300,0.323100 0.297500,0.496600,-0.203500,0.000000,1.000000,0.000000 -0.086100,0.454500,-0.156600,0.000000,-1.000000,0.000000 -0.427300,-0.000103,0.529900,0.764600,0.061740,0.641600 -0.328500,-0.165100,-0.508400,-0.691700,-0.168300,-0.702300 -0.306200,0.361300,-0.588100,0.685000,0.000000,-0.728600 -0.344600,-0.272900,-0.492400,-0.074240,-0.001404,-0.997200 -0.375300,-0.412800,0.507200,0.168200,0.094480,0.981200 0.421800,0.013150,0.609000,0.585000,-0.271800,0.764100 0.430600,0.454500,-0.101800,0.000000,-1.000000,0.000000 -0.101800,0.454500,0.438500,0.000000,-1.000000,0.000000 -0.093930,0.496600,-0.540200,0.000000,1.000000,0.000000 -0.414900,0.454500,-0.101800,0.003810,-1.000000,0.000000 0.331200,-0.371400,0.500900,0.448800,0.128900,0.884300 -0.434300,0.339100,0.506400,0.662500,0.000009,0.749000 -0.485300,0.496200,-0.101800,-0.015050,0.999900,0.000000 -0.330600,-0.483000,0.534200,0.899300,-0.294100,-0.323600 0.333000,-0.014500,-0.603700,0.921600,-0.024520,0.387300 -0.453700,0.194300,-0.582700,0.990400,0.007778,0.137800 0.454100,0.496300,-0.007793,0.000000,0.999100,0.042530 -0.375300,0.322100,-0.629200,-0.103000,0.017780,-0.994500 -0.384300,0.324100,0.297500,-0.016670,-0.934900,-0.354500 0.062680,0.496100,0.070450,0.049580,0.998100,-0.035420 -0.078310,0.496500,-0.117400,-0.038960,0.998900,0.024780 0.324900,-0.444500,0.540600,-0.984300,-0.158600,-0.076880 0.442600,0.047470,0.580100,-0.974000,0.149300,-0.170200 -0.399300,-0.194100,-0.518000,0.987000,0.109800,-0.117500 0.415400,-0.038800,0.595700,0.688600,-0.250900,0.680300 -0.367400,0.242400,0.510900,-0.092140,0.256000,0.962300 0.442800,0.449400,0.566000,-0.802600,-0.553100,-0.223300 0.380000,-0.184100,-0.501400,-0.337800,-0.023610,-0.940900 -0.383900,0.244100,0.636800,0.099160,-0.103800,-0.989600 0.360100,0.243300,0.636700,-0.006979,0.077350,0.997000 -0.390800,0.298100,-0.629100,-0.128900,0.105800,-0.986000 0.047020,0.496500,0.054800,0.038990,0.998900,-0.024800 0.070510,0.496100,0.078280,0.049540,0.998100,-0.035420 -0.391500,0.496000,-0.007861,-0.000000,0.999100,-0.042550 0.426500,0.186700,0.629000,0.496600,-0.004385,0.868000 -0.339600,0.087400,-0.586900,-0.998400,-0.027620,-0.050260 -0.311300,-0.343500,0.532200,-0.994600,0.055380,0.088130 -0.383300,0.040410,-0.521000,-0.094000,-0.032690,-0.995000 0.395500,-0.241200,0.510200,0.976600,-0.090920,-0.194800 -0.521800,0.478300,-0.086120,-0.835800,0.549100,0.000164 0.203600,0.454500,-0.062610,0.000000,-1.000000,0.000000 -0.258300,0.454500,0.054830,0.000000,-1.000000,0.000000 0.015680,0.454500,0.054830,0.000000,-1.000000,0.000000 0.485200,0.496200,0.086140,-0.007012,1.000000,0.000000 0.148800,0.454500,-0.023460,0.000000,-1.000000,0.000000 -0.046950,0.454500,-0.485400,0.000000,-1.000000,0.000000 -0.070440,0.496600,0.430600,0.000000,1.000000,0.000000 0.519100,0.481500,0.044370,0.819100,0.573600,-0.000030 -0.023460,0.454500,0.602900,0.000000,-1.000000,-0.004194 -0.062610,0.454500,0.180100,0.000000,-1.000000,0.000000 -0.093930,0.454500,-0.070440,0.000000,-1.000000,0.000000 -0.054780,0.454500,0.281900,0.000000,-1.000000,0.000000 -0.015640,0.496600,0.039170,0.000000,1.000000,0.000000 -0.078270,0.454500,0.634200,0.000000,-1.000000,0.000000 0.054830,0.496600,0.289700,0.000000,1.000000,0.000000 -0.046960,0.490500,0.693600,0.000026,0.866900,0.498400 -0.070440,0.496600,-0.579400,0.000000,1.000000,0.000000 0.093970,0.496600,-0.516700,0.000000,1.000000,0.000000 -0.242700,0.496600,0.031340,0.000000,1.000000,0.000000 -0.414900,0.495600,-0.039130,0.000000,1.000000,0.000000 0.093970,0.496600,0.336700,0.000000,1.000000,0.000000 -0.015630,0.454500,-0.140900,0.000000,-1.000000,0.000000 0.031340,0.454500,-0.360100,0.000000,-1.000000,0.000000 -0.054780,0.439500,-0.581600,0.000000,-0.129400,-0.991600 0.093970,0.496600,0.634200,0.000000,1.000000,0.000000 -0.070440,0.496600,-0.618500,0.000000,1.000000,0.000000 0.062660,0.496600,0.446300,0.000000,1.000000,0.000000 0.062660,0.454500,-0.618500,0.000000,-1.000000,0.000000 -0.093930,0.496600,-0.555900,0.000000,1.000000,0.000000 -0.070440,0.454500,0.281900,0.000000,-1.000000,0.000000 0.062660,0.454500,0.297500,0.000000,-1.000000,0.000000 0.023510,0.454500,0.195800,0.000000,-1.000000,0.000000 -0.336600,0.454500,0.023510,-0.004194,-1.000000,0.000000 0.354900,0.439600,0.015680,-0.997900,-0.064920,0.000000 -0.203500,0.496600,0.015680,0.000000,1.000000,0.000000 -0.015640,0.496600,-0.078270,0.000000,1.000000,0.000000 0.516300,0.485000,0.010450,0.704300,0.709900,-0.001058 -0.512300,0.488200,0.023500,-0.574400,0.818600,0.000000 -0.054780,0.496600,0.328900,0.000000,1.000000,0.000000 0.117500,0.454500,-0.054780,0.000000,-1.000000,0.000000 -0.054780,0.496600,-0.665400,0.000000,0.999900,-0.016000 -0.046950,0.496600,-0.101800,0.000000,1.000000,0.000000 0.047000,0.454500,0.454100,0.000000,-1.000000,0.000000 0.508900,0.454500,-0.031290,0.000000,-1.000000,0.000000 0.039170,0.439600,0.539500,0.000000,0.003618,-1.000000 0.415000,0.496600,-0.054780,0.000000,1.000000,0.000000 0.039170,0.496600,0.125300,0.000000,1.000000,0.000000 -0.078270,0.454500,-0.501100,0.000000,-1.000000,0.000000 0.078320,0.496600,-0.657600,0.000000,1.000000,-0.000322 0.070490,0.496600,-0.109600,0.000000,1.000000,0.000000 0.078320,0.454500,-0.297500,0.000000,-1.000000,0.000000 0.354800,0.424000,-0.078270,-1.000000,0.000000,0.000000 0.353800,0.447200,-0.086100,-0.942900,-0.333000,0.000000 0.078320,0.454500,-0.172200,0.000000,-1.000000,0.000000 0.344300,0.454600,0.078320,-0.169400,-0.985600,0.000000 0.195800,0.454500,0.000024,0.000000,-1.000000,0.000000 0.000022,0.496600,0.383700,0.000000,1.000000,0.000000 0.007851,0.496600,-0.352300,0.000000,1.000000,0.000000 0.007853,0.454500,-0.274000,0.000000,-1.000000,0.000000 0.008498,0.494800,-0.684200,0.000000,0.960800,-0.277200 0.406500,-0.140700,-0.531800,0.979500,-0.199800,0.026370 0.007853,0.454500,0.673400,0.000000,-1.000000,0.000000 0.015680,0.454500,0.344500,0.000000,-1.000000,0.000000 0.446100,0.176300,-0.524700,0.765900,-0.060800,0.640000 -0.015630,0.454500,-0.313200,0.000000,-1.000000,0.000000 0.307600,-0.226100,-0.532600,-0.994400,0.063630,0.084710 0.342200,0.150200,0.629300,-0.752600,-0.062520,0.655500 -0.319300,-0.147500,-0.548000,-0.991200,-0.121000,-0.054110 -0.335500,0.134100,0.595000,-0.993800,0.101500,0.045340 0.334700,0.135000,-0.572100,-0.989200,-0.109200,0.097800 -0.381100,-0.477700,0.592700,-0.365700,0.267500,0.891500 -0.436900,0.095190,-0.520800,-0.291600,-0.015120,0.956400 -0.039130,0.496600,0.634200,0.000000,1.000000,0.000000 -0.046950,0.496600,-0.532400,0.000000,1.000000,0.000000 -0.039130,0.496600,0.595100,0.000000,1.000000,0.000000 -0.219200,0.496600,0.086150,0.000000,1.000000,0.000000 0.086140,0.496600,0.219200,0.000000,1.000000,0.000000 0.086140,0.496600,0.266200,0.000000,1.000000,0.000000 0.093980,0.454500,0.610700,0.000000,-1.000000,0.000000 0.336700,0.496600,-0.031300,0.000000,1.000000,0.000000 -0.046960,0.496000,-0.007861,-0.000000,0.999100,-0.042550 0.330500,-0.234100,-0.497600,-0.258200,0.061900,0.964100 -0.375600,0.258900,0.506400,-0.083030,0.218300,0.972300 -0.332200,0.238500,0.631300,-0.653000,0.045500,-0.756000 0.385800,0.020160,-0.627100,0.093810,-0.191000,-0.977100 -0.375800,0.157700,0.642300,-0.052640,-0.007686,0.998600 -0.315000,-0.350800,0.509400,0.820100,-0.067800,-0.568100 0.396500,0.377000,0.258400,0.998700,0.049790,-0.014210 0.258400,0.345600,-0.540500,0.003601,-0.007070,1.000000 0.398800,0.227900,-0.639200,0.148400,0.082300,-0.985500 0.447200,0.259500,-0.563700,-0.993100,-0.095560,0.067350 0.428100,0.120800,0.625200,-0.524700,0.082940,-0.847200 -0.315100,-0.405700,0.540400,0.985100,-0.149500,-0.084840 0.396600,0.416100,-0.227000,0.999100,0.042570,-0.000051 -0.309000,-0.327500,0.562400,0.964200,-0.044220,0.261400 0.396100,0.377000,0.438500,0.998900,-0.021300,0.042690 0.109700,0.496500,0.140900,0.038990,0.998900,-0.024800 -0.337100,0.126500,-0.595100,0.997700,-0.062870,0.024180 0.352400,0.377000,0.628200,-0.012960,-0.000000,-0.999900 -0.336600,-0.320000,-0.574900,0.040240,0.029260,-0.998800 0.388100,-0.288400,0.541200,-0.965100,-0.041540,-0.258700 -0.338100,0.290800,-0.630800,0.259000,0.036210,-0.965200 -0.305200,0.353400,0.538300,0.265800,0.021550,-0.963800 -0.187900,0.369100,0.581000,-0.010640,0.021320,0.999700 -0.355200,0.423900,-0.391500,0.999700,-0.024790,-0.003559 -0.355200,0.361300,0.258400,0.998900,-0.024660,0.038930 -0.318400,-0.358900,-0.567400,0.823800,-0.026710,-0.566200 0.368000,0.400500,0.502500,0.021870,-0.000000,0.999800 -0.086150,0.495800,-0.109600,-0.038990,0.998900,0.024830 -0.355200,0.408300,-0.180100,0.999100,0.042530,-0.000005 -0.423500,0.324800,-0.613300,0.613900,0.003449,0.789300 0.426700,0.147300,0.629200,0.476100,0.003991,0.879400 0.519100,0.481600,-0.597600,0.806300,0.591500,-0.003330 -0.391400,-0.602900,-0.622100,-0.031660,0.259900,-0.965100 -0.368100,0.102500,0.637200,-0.040490,0.130400,-0.990600 -0.219200,0.431800,-0.540200,0.010660,0.031960,0.999400 0.396300,0.384800,0.172300,0.999900,0.014310,0.003546 -0.101800,0.392600,-0.540500,0.010590,0.021270,0.999700 0.219200,0.345700,-0.539500,-0.010630,0.000027,0.999900 -0.374700,-0.233800,0.496300,-0.231500,0.025620,-0.972500 -0.447800,0.337800,-0.532500,1.000000,0.000000,0.006563 0.396300,0.369100,0.281900,0.999100,-0.038950,0.014130 0.392200,-0.351100,0.516900,-0.993500,-0.021000,0.112100 0.305200,0.454600,-0.516700,-0.141400,-0.989600,0.027950 -0.326700,0.400400,-0.623300,-0.555400,0.002977,0.831600 -0.322300,0.402400,-0.508900,0.812800,-0.003927,0.582500 0.497400,0.495100,-0.558500,0.227400,0.973800,-0.007058 -0.203600,0.423900,0.581100,0.007088,0.017720,0.999800 -0.313400,0.400400,0.531300,0.901500,0.005533,-0.432800 -0.355800,0.377000,0.321000,0.999900,-0.010700,0.000045 0.396600,0.392600,0.203600,1.000000,-0.007139,0.003568 0.391900,-0.335500,0.516900,-0.995600,-0.020690,0.091300 -0.391400,0.204700,-0.634900,0.059690,-0.007067,0.998200 0.203600,0.345600,-0.539700,0.003590,-0.017740,0.999800 -0.206600,0.478900,0.706000,0.001035,0.588800,0.808300 -0.452700,0.149900,0.579100,-0.995800,0.003401,0.091670 -0.274000,0.423900,0.581000,-0.017740,-0.028400,0.999400 -0.355300,0.416100,0.399300,0.999800,-0.017790,-0.007087 0.317700,0.424000,0.548100,1.000000,0.000000,0.003807 -0.109600,0.496600,0.602900,0.000000,1.000000,0.000000 -0.125200,0.454500,-0.634200,0.000000,-1.000000,0.000000 0.462000,0.454500,-0.516700,-0.004476,-1.000000,0.000042 0.461900,0.495600,0.563700,0.000064,1.000000,0.000000 -0.023460,0.454500,-0.634200,0.000000,-1.000000,0.000000 0.054830,0.496600,-0.642000,0.000000,1.000000,0.000000 -0.180100,0.496600,0.516800,0.000000,1.000000,0.000000 0.250600,0.496600,0.555900,0.000000,1.000000,0.000000 0.375800,0.496600,0.595100,0.000000,1.000000,0.000000 0.297500,0.496600,0.524600,0.000000,1.000000,0.000000 -0.469700,0.454500,0.595100,0.000000,-1.000000,0.000000 0.086140,0.496600,0.524600,0.000000,1.000000,0.000000 -0.289700,0.496600,-0.634200,0.000000,1.000000,0.000000 0.493300,0.454500,0.555900,0.000000,-1.000000,0.000000 -0.172200,0.496600,-0.563700,0.000000,1.000000,0.000000 -0.317800,0.298700,0.555900,-1.000000,0.000000,0.000000 -0.516700,0.454500,-0.242700,-0.020180,-0.999800,0.000000 -0.187900,0.496600,-0.508900,0.000000,1.000000,0.000000 0.477600,0.454500,0.563700,0.000000,-1.000000,0.000000 0.133100,0.496600,-0.634200,0.000000,1.000000,0.000000 0.438500,0.496600,-0.563700,0.000000,1.000000,0.000000 0.039170,0.496600,-0.595000,0.000000,1.000000,0.000000 -0.328800,0.454500,0.015680,0.000000,-1.000000,0.000000 -0.317800,0.330000,-0.563700,-1.000000,0.000000,-0.000192 -0.175500,0.494500,0.684000,0.000000,0.969500,0.245100 -0.250500,0.496600,0.415000,0.000000,1.000000,0.000000 -0.313200,0.496600,0.438500,0.000000,1.000000,0.000000 -0.336600,0.496600,0.555900,0.000000,1.000000,0.000000 -0.493200,0.454500,-0.524500,0.000000,-1.000000,0.000000 0.023510,0.496600,0.368000,0.000000,1.000000,0.000000 0.187900,0.496600,0.438500,0.000000,1.000000,0.000000 0.401300,0.387400,-0.491900,0.710400,0.000000,0.703800 0.354800,0.392600,0.360200,-1.000000,0.000000,0.000000 -0.101800,0.454500,0.368000,0.000000,-1.000000,0.000000 -0.397000,0.392600,0.407100,-1.000000,0.000000,0.000000 0.141000,0.424000,-0.581600,0.000000,0.000000,-1.000000 -0.469700,0.496600,0.610700,0.000000,1.000000,0.000000 -0.454100,0.496600,0.125300,0.000000,1.000000,0.000000 0.419900,0.400500,0.492100,0.138000,0.000000,-0.990400 0.397000,0.376900,-0.438400,0.999800,-0.017790,0.003552 -0.234900,0.330000,-0.539500,0.000000,0.000000,1.000000 0.289700,0.454500,-0.156600,0.000000,-1.000000,0.000000 -0.195700,0.330000,-0.581600,0.000000,0.000000,-1.000000 -0.323600,0.322200,0.512000,-0.747800,0.009158,0.663900 -0.062610,0.454500,-0.258300,0.000000,-1.000000,0.000000 0.031340,0.496600,-0.187900,0.000000,1.000000,0.000000 0.375800,0.495600,0.219200,0.000000,1.000000,0.000000 0.187900,0.353500,0.581600,0.000000,0.000000,1.000000 -0.485300,0.496500,0.391500,-0.060610,0.998200,0.000000 0.438500,0.496600,-0.344500,0.000000,1.000000,0.000000 -0.355800,0.423900,-0.007840,0.999800,0.000000,-0.021260 0.422800,0.496600,-0.375800,0.000000,1.000000,0.000000 -0.274000,0.454500,0.305400,0.000000,-1.000000,0.000000 0.344500,0.496600,-0.571500,0.000000,1.000000,0.000000 0.078320,0.496600,-0.360100,0.000000,1.000000,0.000000 0.354800,0.392600,0.289700,-1.000000,0.000000,0.000000 0.407200,0.496600,-0.446300,0.000000,1.000000,0.000000 -0.352300,0.454500,-0.532400,0.000000,-1.000000,0.000000 -0.306900,0.322200,0.595100,0.968400,0.000009,0.249600 -0.469700,0.495600,-0.571500,0.021220,0.999800,0.000000 0.015680,0.454500,-0.258300,0.000000,-1.000000,0.000000 -0.289700,0.454500,0.399300,0.000000,-1.000000,0.000000 0.187900,0.361300,0.539500,0.000000,0.000000,-1.000000 0.007852,0.400500,0.539500,0.000000,0.000000,-1.000000 0.399300,0.454500,-0.602800,0.000192,-1.000000,-0.000384 0.415000,0.495600,0.258400,0.000000,1.000000,0.000000 0.396000,0.431800,-0.133100,1.000000,0.000449,0.000000 0.354800,0.400500,0.422800,-1.000000,0.000000,0.000000 -0.258300,0.454500,-0.289700,0.000000,-1.000000,0.000000 -0.156600,0.496600,0.187900,0.000000,1.000000,0.000000 -0.289600,0.314300,-0.581600,0.113000,0.000174,-0.993600 0.527200,0.457300,-0.469700,0.848700,-0.529000,0.000000 0.368000,0.495600,0.187900,0.000000,1.000000,0.000000 -0.368000,0.496600,0.375800,0.000000,1.000000,0.000000 0.227100,0.454500,0.415000,0.000000,-1.000000,0.000000 -0.281800,0.454500,-0.125200,0.000000,-1.000000,0.000000 0.446300,0.423300,0.554700,-0.994000,0.000031,-0.109200 0.354800,0.345700,0.344500,-1.000000,0.000000,0.000000 0.281900,0.496600,-0.172200,0.000000,1.000000,0.000000 0.477600,0.454500,-0.352300,0.000000,-1.000000,0.000000 0.396000,0.345700,-0.438400,1.000000,0.000000,0.000000 0.477600,0.454500,-0.336600,0.000000,-1.000000,0.000000 -0.172200,0.496600,-0.289700,0.000000,1.000000,0.000000 0.401300,0.452200,0.438500,0.618200,-0.786000,-0.000060 0.354900,0.290900,0.485300,-0.976300,-0.000108,-0.216500 0.227100,0.431800,-0.539500,0.000000,0.000000,1.000000 -0.289700,0.496600,-0.548000,0.000000,1.000000,0.000000 -0.211400,0.454500,-0.391400,0.000000,-1.000000,0.000000 -0.227000,0.330000,0.539500,0.000000,0.000000,-1.000000 0.305400,0.454500,-0.446300,0.000000,-1.000000,0.000000 0.396600,0.276500,0.446300,0.982000,-0.188500,0.007225 -0.289700,0.454500,-0.508900,0.000000,-1.000000,0.000000 0.266200,0.454500,-0.360100,0.000000,-1.000000,0.000000 -0.523400,0.454800,0.501100,-0.261200,-0.965300,0.000000 -0.407100,0.496600,0.250600,0.000000,1.000000,0.000000 -0.321300,0.346400,0.508600,0.760900,0.005972,-0.648800 0.156600,0.496600,0.438500,0.000000,1.000000,0.000000 0.406600,0.306500,-0.499200,0.113100,0.006747,-0.993600 -0.461900,0.454500,-0.007805,0.000000,-1.000000,0.000000 -0.219200,0.369100,0.539500,0.000000,0.000000,-1.000000 -0.062610,0.454500,0.375800,0.000000,-1.000000,0.000000 0.422800,0.495600,0.399300,0.000000,1.000000,0.000000 -0.397000,0.330000,0.399300,-1.000000,0.000000,0.000000 0.297500,0.454500,-0.133100,0.000000,-1.000000,0.000000 -0.368000,0.269800,0.454100,0.016980,-0.999900,-0.000062 0.180100,0.496600,-0.602800,0.000000,1.000000,0.000000 -0.527900,0.462100,-0.336700,-0.997200,0.074550,0.000007 -0.391000,0.400500,0.630900,-0.135500,0.000000,0.990800 -0.314000,0.397800,0.617900,-0.895600,0.000000,-0.444900 -0.258300,0.454500,0.493300,0.000000,-1.000000,0.000000 0.321600,0.374400,0.508900,-0.836900,0.001037,-0.547400 -0.289700,0.496600,0.415000,0.000000,1.000000,0.000000 -0.321000,0.496600,0.563700,0.000000,1.000000,0.000000 0.354800,0.400500,-0.258400,-1.000000,0.000000,0.000000 0.438500,0.496600,-0.454100,0.000000,1.000000,0.000000 0.454100,0.454500,0.321000,0.000000,-1.000000,0.000000 -0.522300,0.477400,0.336700,-0.850500,0.526000,0.000100 -0.250500,0.496600,0.501100,0.000000,1.000000,0.000000 0.023510,0.384800,0.539500,-0.001752,-0.016170,-0.999900 0.156600,0.454500,-0.493200,0.000000,-1.000000,0.000000 -0.321000,0.495600,-0.360100,0.000000,1.000000,0.000000 -0.397000,0.416100,0.454100,-1.000000,0.000000,0.000000 0.491800,0.495800,-0.336600,0.126800,0.991900,-0.000057 -0.344500,0.495600,-0.289700,0.000000,1.000000,0.000000 0.321000,0.454500,0.321000,0.000000,-1.000000,0.000000 -0.211400,0.454500,-0.313200,0.000000,-1.000000,0.000000 -0.407100,0.495600,-0.454100,0.000000,1.000000,0.000000 0.117500,0.496600,0.274100,0.000000,1.000000,0.000000 0.117500,0.496400,0.672800,0.000000,0.998300,0.058890 0.125300,0.454500,0.516800,0.000000,-1.000000,0.000000 -0.203500,0.454500,0.117500,0.000000,-1.000000,0.000000 0.354800,0.384800,0.117500,-1.000000,-0.000660,-0.000532 0.023510,0.496600,0.117500,0.000000,1.000000,0.000000 -0.187900,0.454500,0.117500,0.000000,-1.000000,0.000000 -0.125300,0.495600,-0.023470,0.000000,1.000000,0.000064 0.360200,0.496600,-0.234900,0.000000,1.000000,0.000000 -0.039130,0.496600,0.219200,0.000000,1.000000,0.000000 -0.234900,0.469700,-0.710600,0.000000,0.318500,-0.947900 0.078320,0.496600,0.234900,0.000000,1.000000,0.000000 -0.093930,0.496600,-0.195700,0.000000,1.000000,0.000000 -0.195700,0.496600,0.555900,0.000000,1.000000,0.000000 0.219200,0.454500,-0.086100,0.000000,-1.000000,0.000000 -0.177500,0.484900,0.700900,-0.000461,0.699100,0.715100 0.062660,0.454500,0.164400,0.000000,-1.000000,0.000000 -0.422800,0.495600,-0.109600,0.000000,1.000000,0.000000 0.148800,0.454500,-0.180100,0.000000,-1.000000,0.000000 -0.227000,0.454500,-0.031290,0.000000,-1.000000,0.000000 0.172300,0.496600,-0.313200,0.000000,1.000000,0.000000 0.164400,0.408300,-0.539500,0.000000,0.000000,1.000000 0.200300,0.494800,0.684100,0.000000,0.961000,0.276500 0.125300,0.369100,0.581600,-0.014770,-0.012860,0.999800 -0.258400,0.495600,-0.187900,0.000000,1.000000,0.000000 -0.353800,0.447200,0.219200,0.942500,-0.334300,0.000000 0.007851,0.496600,0.211400,0.000000,1.000000,0.000000 -0.328800,0.454500,-0.117400,0.000000,-1.000000,0.000000 -0.203600,0.495600,-0.172200,0.000000,1.000000,0.000000 0.070490,0.454500,-0.187900,0.000000,-1.000000,0.000000 -0.501100,0.454500,-0.211400,0.000000,-1.000000,0.000000 -0.469700,0.495600,-0.125300,0.021220,0.999800,0.000000 0.462000,0.454500,0.141000,0.000000,-1.000000,0.000000 -0.453800,0.204700,0.555900,-0.999600,-0.001779,0.026900 -0.133100,0.496600,-0.642000,0.000000,1.000000,0.000000 -0.234900,0.424000,-0.581600,0.000000,0.000000,-1.000000 0.141000,0.496600,0.430600,0.000000,1.000000,0.000000 0.148800,0.431800,-0.581600,0.000000,0.000964,-1.000000 0.384100,0.181300,-0.639300,-0.078810,0.000657,0.996900 0.446300,0.454500,-0.234900,0.000000,-1.000000,0.000000 0.133100,0.496400,0.672800,0.000000,0.998300,0.058890 -0.266200,0.454500,-0.109600,0.000000,-1.000000,0.000000 0.195800,0.454500,-0.015630,0.000000,-1.000000,0.000000 0.234900,0.496600,-0.140900,0.000000,1.000000,0.000000 -0.054780,0.496600,0.125300,0.000000,1.000000,0.000000 0.141000,0.496600,-0.634200,0.000000,1.000000,0.000000 -0.109600,0.454500,0.415000,0.000000,-1.000000,0.000000 -0.148700,0.454500,-0.187900,0.000000,-1.000000,0.000000 -0.397000,0.416100,-0.242700,-1.000000,0.000000,0.000000 -0.164400,0.454500,-0.649800,0.000000,-1.000000,0.000000 0.219200,0.353500,-0.581600,0.000000,0.000000,-1.000000 -0.101800,0.496600,0.477600,0.000000,1.000000,0.000000 -0.211400,0.454500,0.289700,0.000000,-1.000000,0.000000 0.156600,0.496600,-0.172200,0.000000,1.000000,0.000000 -0.109600,0.454500,-0.696800,0.000000,-0.999900,-0.016280 -0.109600,0.496600,0.141000,0.000000,1.000000,0.000000 0.219200,0.454500,-0.665500,0.000000,-1.000000,0.000000 -0.140900,0.496600,-0.234900,0.000000,1.000000,0.000000 -0.109600,0.495600,-0.078280,0.000000,1.000000,0.000000 -0.250500,0.454500,-0.093930,0.000000,-1.000000,0.000000 -0.109600,0.496600,0.156600,0.000000,1.000000,0.000000 -0.313200,0.454500,-0.148700,0.000000,-1.000000,0.000000 0.203600,0.454500,-0.493200,0.000000,-1.000000,0.000000 -0.399300,0.495600,-0.101800,0.000000,1.000000,0.000000 -0.234900,0.496600,0.430600,0.000000,1.000000,0.000000 0.227100,0.454500,0.047000,0.000000,-1.000000,0.000000 0.211400,0.495600,0.156600,0.000000,1.000000,0.000000 0.234900,0.496600,-0.289700,0.000000,1.000000,0.000000 -0.242700,0.496600,-0.626300,0.000000,1.000000,0.000000 0.180100,0.496600,-0.156600,0.000000,1.000000,0.000000 0.354800,0.384800,0.203600,-1.000000,0.000000,0.000000 0.133100,0.495600,0.078310,0.000000,1.000000,0.000000 0.141000,0.496600,-0.140900,0.000000,1.000000,0.000000 -0.250500,0.496600,0.195800,0.000000,1.000000,0.000000 -0.446300,0.495600,-0.140900,0.000000,1.000000,0.000000 -0.140900,0.496600,0.462000,0.000000,1.000000,0.000000 -0.242700,0.495600,-0.086110,0.000000,1.000000,0.000000 -0.242700,0.495600,-0.297500,0.000000,1.000000,0.000000 -0.203600,0.495600,-0.148700,0.000000,1.000000,0.000000 -0.117400,0.496400,-0.672800,0.000000,0.998300,-0.058930 0.527900,0.462100,-0.101800,0.996100,0.088500,0.000059 0.518800,0.481700,-0.190500,0.813600,0.581400,0.000173 0.148800,0.496600,0.391500,0.000000,1.000000,0.000000 0.133100,0.454500,-0.321000,0.000000,-1.000000,0.000000 -0.195700,0.322200,-0.539500,0.001434,-0.001987,1.000000 -0.211400,0.496300,-0.000029,-0.000000,0.999100,-0.042480 -0.109600,0.496600,-0.242700,0.000000,1.000000,0.000000 0.000024,0.454500,-0.234900,0.000000,-1.000000,0.000000 -0.156600,0.454500,0.125300,0.000000,-1.000000,0.000000 -0.054780,0.454500,0.172300,0.000000,-1.000000,0.000000 0.234900,0.496600,0.399300,0.000000,1.000000,0.000000 -0.258400,0.495600,-0.219200,0.000000,1.000000,0.000000 0.219200,0.454500,0.148800,0.000000,-1.000000,0.000000 -0.219200,0.416100,-0.581600,0.000000,0.000000,-1.000000 0.101800,0.495600,0.101800,0.006937,1.000000,-0.003444 -0.156600,0.496600,0.407200,0.000000,1.000000,0.000000 0.227100,0.496600,-0.242700,0.000000,1.000000,0.000000 0.148800,0.496600,-0.133100,0.000000,1.000000,0.000000 0.234900,0.496600,0.422800,0.000000,1.000000,0.000000 -0.211400,0.454500,-0.602800,0.000000,-1.000000,0.003810 -0.234900,0.496600,-0.634200,0.000000,1.000000,0.000000 -0.227000,0.454500,-0.524500,0.000000,-1.000000,-0.004194 0.000164,0.375000,-0.563700,0.000129,-1.000000,-0.000172 0.454100,0.495600,0.219200,0.000000,1.000000,0.000000 -0.383600,0.454600,0.704800,0.000000,-0.976800,0.214200 -0.355800,0.330000,-0.430600,1.000000,0.000000,0.000000 0.344300,0.454600,-0.399300,-0.169400,-0.985600,0.000000 0.039170,0.454500,-0.485400,0.000000,-1.000000,0.000000 -0.156600,0.353500,0.539500,0.000000,0.000000,-1.000000 -0.438400,0.496600,0.602900,0.000000,1.000000,0.000000 -0.219200,0.496600,-0.422800,0.000000,1.000000,0.000000 -0.164400,0.454500,-0.375800,0.000000,-1.000000,0.000000 0.516800,0.454500,0.587200,0.019410,-0.999800,0.000000 0.360200,0.496600,0.524600,0.000000,1.000000,0.000000 0.502300,0.493400,-0.655100,0.343800,0.939100,0.000145 0.313800,0.338500,0.599600,0.986600,0.000004,-0.163300 0.462000,0.454500,-0.689000,0.000000,-1.000000,0.000000 -0.180100,0.454500,0.336700,0.000000,-1.000000,0.000000 0.015680,0.454500,-0.274000,0.000000,-1.000000,0.000000 -0.305300,0.495600,-0.266200,0.000000,1.000000,0.000000 0.354800,0.330000,-0.461900,-1.000000,0.000000,0.000000 -0.086100,0.454500,0.352300,0.000000,-1.000000,0.000000 -0.195700,0.408300,0.539500,0.000000,0.000000,-1.000000 0.211400,0.496600,-0.610700,0.000000,1.000000,0.000000 0.336700,0.454500,-0.657600,0.000000,-1.000000,0.000000 -0.305300,0.496600,-0.540200,0.000000,1.000000,0.000000 0.469800,0.454500,0.407200,0.000000,-1.000000,0.000000 -0.172200,0.408300,-0.540200,0.003548,0.014200,0.999900 0.000024,0.454500,0.415000,0.000000,-1.000000,0.000000 0.359900,0.298700,-0.502500,0.028330,0.012500,-0.999500 -0.031610,0.373200,-0.571500,0.078890,-0.996700,-0.019970 -0.328800,0.495600,-0.352300,0.000000,1.000000,0.000000 0.364700,0.494800,0.684100,0.000000,0.961000,0.276500 -0.305300,0.496600,0.156600,0.000000,1.000000,0.000000 0.422800,0.495600,0.250600,0.000000,1.000000,0.000000 0.141000,0.454500,-0.673300,0.000000,-1.000000,0.000000 -0.211400,0.454500,-0.297500,0.000000,-1.000000,0.000000 0.354800,0.408300,0.313200,-1.000000,0.000000,0.000000 -0.328800,0.454500,0.070490,0.000000,-1.000000,0.000000 -0.156600,0.454500,-0.266200,0.000000,-1.000000,0.000000 0.172300,0.454500,0.477600,0.000000,-1.000000,0.000000 -0.343600,0.315000,0.501300,0.330200,-0.000016,-0.943900 -0.117400,0.384800,0.539500,0.000000,0.000000,-1.000000 -0.117400,0.496600,-0.649800,0.000000,1.000000,0.000000 0.274100,0.496600,-0.477600,0.000000,1.000000,0.000000 -0.485400,0.490500,-0.693700,-0.000079,0.859600,-0.510900 0.047000,0.496600,0.555900,0.000000,1.000000,0.000000 -0.156600,0.416100,-0.581600,0.000000,0.000000,-1.000000 0.313200,0.454500,-0.493200,0.000793,-1.000000,-0.001007 -0.501100,0.454500,-0.610700,0.000000,-1.000000,0.000000 -0.023470,0.496600,-0.508900,0.000000,1.000000,0.000000 0.391500,0.496600,-0.101800,0.000000,1.000000,0.000000 0.195800,0.496600,-0.430600,0.000000,1.000000,0.000000 0.203600,0.454500,0.391500,0.000000,-1.000000,0.000000 -0.242700,0.496600,0.532400,0.000000,1.000000,0.000000 0.446300,0.496600,-0.587200,0.000000,1.000000,0.000000 -0.454100,0.454500,-0.618500,0.001307,-1.000000,0.001244 -0.430600,0.454500,0.227100,0.000000,-1.000000,0.000000 -0.148700,0.439600,0.539500,0.000000,0.003618,-1.000000 0.354800,0.416100,-0.234900,-1.000000,0.000000,0.000000 -0.274000,0.496600,0.571600,0.000000,1.000000,0.000000 -0.274000,0.454500,-0.461900,0.000000,-1.000000,0.000000 0.039170,0.496600,-0.579400,0.000000,1.000000,0.000000 -0.078270,0.496600,-0.532400,0.000000,1.000000,0.000000 -0.446300,0.496600,0.274100,0.000000,1.000000,0.000000 0.274000,0.496400,-0.672800,0.000000,0.998300,-0.058930 -0.227000,0.454500,0.422800,0.000000,-1.000000,0.000000 -0.397000,0.400400,0.454100,-1.000000,0.000000,0.000000 -0.317500,0.377000,-0.525400,0.971200,0.011560,0.238100 0.384300,0.339000,-0.250000,0.017420,-0.959300,0.281800 0.454100,0.495600,0.297500,0.000000,1.000000,0.000000 0.397000,0.431800,0.328800,0.999900,-0.010370,0.010670 0.313200,0.495600,0.305400,0.000000,1.000000,0.000000 -0.321000,0.496600,0.665400,0.000000,0.999300,0.037770 -0.454100,0.496600,0.391500,0.000000,1.000000,0.000000 -0.172200,0.416100,0.539500,0.000000,0.000000,-1.000000 0.368000,0.496600,-0.571500,0.000000,1.000000,0.000000 -0.477600,0.454500,0.485400,0.000000,-1.000000,0.000000 0.164400,0.454500,-0.689000,0.000000,-1.000000,0.000000 -0.352300,0.495600,-0.219200,0.000000,1.000000,0.000000 0.368000,0.496600,-0.595000,0.000000,1.000000,0.000000 -0.317300,0.384800,0.531900,-0.997300,0.000018,0.073650 -0.321000,0.496600,-0.508900,0.000000,1.000000,0.000000 -0.413700,0.424600,0.623400,-0.514700,-0.010540,0.857300 0.445600,0.353500,-0.548000,0.997800,0.000000,-0.065890 0.007853,0.454500,0.305400,0.000000,-1.000000,0.000000 0.313200,0.496600,-0.642000,0.000000,1.000000,0.000000 0.406600,0.416100,-0.499200,0.115600,-0.000053,-0.993300 0.344500,0.496600,-0.610700,0.000000,1.000000,0.000000 -0.391400,0.454500,0.540300,0.000000,-1.000000,0.000000 -0.164400,0.454500,-0.454100,0.000000,-1.000000,0.000000 0.101800,0.496600,-0.454100,0.000000,1.000000,0.000000 0.321000,0.496600,0.587200,0.000000,1.000000,0.000000 0.454100,0.495600,0.555900,0.000000,1.000000,0.000000 -0.211400,0.496600,-0.430600,0.000000,1.000000,0.000000 0.148800,0.454500,-0.399300,0.000000,-1.000000,0.000000 0.227100,0.298700,0.581000,-0.018530,0.014420,0.999700 0.031340,0.454500,-0.696800,0.000000,-0.999900,-0.016280 0.422800,0.495600,0.195800,0.000000,1.000000,0.000000 0.396500,0.306500,-0.383600,0.999100,0.038950,-0.014160 0.328900,0.454500,0.430600,0.000000,-1.000000,0.000000 0.493300,0.454500,0.579400,0.000000,-1.000000,0.000000 -0.383600,0.462600,0.712200,0.000000,-0.040080,0.999200 -0.227000,0.408300,-0.581600,0.000000,0.000000,-1.000000 0.328900,0.454500,0.649900,0.000213,-1.000000,-0.000427 0.203600,0.337800,0.539500,0.000000,0.000000,-1.000000 -0.117400,0.496600,-0.579400,0.000000,1.000000,0.000000 0.407100,0.495600,0.117500,0.000000,1.000000,0.000000 -0.461900,0.496600,0.383700,0.000000,1.000000,0.000000 -0.321000,0.496600,0.352300,0.000000,1.000000,0.000000 0.493300,0.454500,0.391500,0.000000,-1.000000,0.000000 0.305400,0.454500,-0.438400,0.000000,-1.000000,0.000000 -0.461900,0.454500,-0.610700,0.000943,-1.000000,0.000682 0.344500,0.496600,-0.430600,0.000000,1.000000,0.000000 -0.442900,0.408300,-0.502900,-0.855200,0.000000,0.518200 0.156600,0.454500,-0.681100,0.000000,-1.000000,0.000000 0.250600,0.454500,0.321000,0.000000,-1.000000,0.000000 0.354800,0.377000,-0.305300,-1.000000,0.000000,0.000000 0.297500,0.454500,0.407200,0.000000,-1.000000,0.000000 0.391500,0.496600,-0.211400,0.000000,1.000000,0.000000 -0.007808,0.496600,0.313200,0.000000,1.000000,0.000000 -0.258300,0.496600,0.508900,0.000000,1.000000,0.000000 -0.133100,0.496600,-0.602800,0.000000,1.000000,0.000000 0.281900,0.306500,-0.581600,0.000642,0.000000,-1.000000 0.086150,0.454500,-0.618500,0.000000,-1.000000,0.000000 0.309100,-0.233500,-0.540000,0.996100,-0.060750,-0.063610 -0.352300,-0.343500,0.499200,-0.047920,0.056600,0.997200 -0.336800,-0.265400,0.575600,-0.007903,0.083030,-0.996500 0.375600,-0.029900,0.514400,0.084720,-0.120100,0.989100 -0.329500,-0.066250,-0.552900,-0.987600,-0.123800,-0.096770 0.410600,-0.109000,0.515500,-0.867700,0.131400,0.479400 -0.360200,0.384800,-0.627800,0.051740,-0.014190,0.998600 -0.394300,-0.233000,-0.546100,-0.958200,-0.126800,-0.256500 0.415300,-0.618200,0.544700,-0.059150,0.208900,0.976100 0.329900,0.008817,-0.587300,-0.994300,0.103800,0.022670 0.370700,-0.496400,0.594100,-0.053670,-0.251700,-0.966300 -0.403600,-0.453600,0.547700,-0.985500,0.152700,0.073640 -0.435400,0.048400,-0.521200,-0.426100,-0.025720,0.904300 0.361500,0.174100,-0.521200,-0.257200,-0.140800,0.956000 0.332300,0.172800,-0.571100,0.985000,0.141600,-0.098790 0.325200,-0.077700,0.556300,-0.988500,0.127100,-0.082090 -0.374200,0.193300,0.516500,0.105000,-0.135700,-0.985200 0.326200,-0.082320,-0.598400,-0.819200,-0.031730,-0.572700 -0.379700,-0.173700,0.501600,0.324200,-0.079100,0.942700 0.334400,0.157400,-0.571300,0.987800,0.126400,-0.090540 -0.444300,0.283600,0.572200,0.986000,-0.110900,-0.124300 -0.367300,0.203800,0.518000,-0.135400,0.116700,0.983900 -0.376400,0.205400,0.514600,0.100100,-0.130100,-0.986400 -0.443300,0.267900,0.588100,0.973700,-0.090910,-0.209100 0.396600,-0.506300,-0.524700,-0.371500,0.121300,-0.920500 0.418800,-0.530600,0.539200,-0.920600,-0.121700,0.371100 -0.415000,0.134800,0.520900,-0.005333,-0.104900,-0.994500 0.375800,0.118600,-0.641700,0.036420,-0.089360,-0.995300 0.326100,-0.069990,0.556400,-0.988600,0.124100,-0.085820 -0.330300,0.238100,-0.525900,0.890000,-0.289100,0.352700 -0.391900,0.220500,0.638100,0.122000,-0.052050,-0.991200 -0.348700,0.078210,-0.536200,0.750900,0.047650,0.658700 0.450000,0.283300,0.540300,-0.996000,-0.088360,-0.015650 -0.444200,0.361300,0.563400,-0.993600,0.000000,0.113200 -0.411600,-0.101600,0.540400,0.981200,0.192800,0.004198 0.439600,0.298100,-0.598400,0.928600,0.088990,-0.360200 -0.341900,-0.546100,0.593600,0.966100,-0.145100,0.213300 -0.321300,-0.425800,0.536300,-0.974100,0.193700,0.116600 0.329400,-0.479900,-0.550400,0.967300,0.229200,-0.109000 0.319300,-0.147400,0.563700,0.992000,-0.090420,-0.088490 -0.352100,-0.453400,0.514000,-0.146300,0.164200,0.975500 0.330100,-0.264500,0.574100,-0.123700,-0.081090,0.989000 0.317800,0.252800,-0.556300,-0.968200,-0.236600,0.081550 -0.322800,-0.414800,-0.539700,-0.984100,0.163000,-0.070910 0.446900,0.267300,-0.555900,-0.994600,-0.092990,0.045380 0.451300,0.251400,-0.540300,0.995800,0.084430,0.036370 0.396300,-0.398300,0.510800,0.900100,0.074470,-0.429200 -0.401200,-0.162800,-0.505400,-0.863700,-0.088740,0.496100 0.443000,0.282600,-0.593700,0.958800,0.122300,-0.256400 0.409400,-0.499900,0.522300,0.689300,0.017260,-0.724300 -0.320900,-0.119000,0.589700,0.830500,-0.016010,0.556700 -0.361700,0.001620,0.523700,-0.271400,-0.148200,0.951000 0.316200,-0.389800,0.540400,-0.987200,-0.153100,-0.045000 0.452900,0.118700,-0.555900,0.994300,-0.105200,0.016860 0.438400,0.382200,0.594000,-0.898400,0.000000,-0.439200 0.512000,0.488500,-0.425400,0.570700,0.821200,0.000000 0.457400,0.173400,0.563400,0.998500,0.015150,0.052620 0.390400,-0.379400,-0.530000,-0.988200,-0.152600,-0.009611 0.344100,-0.256900,-0.496700,0.084510,-0.065420,-0.994300 -0.345900,-0.570900,0.579800,0.970400,-0.237700,-0.042870 -0.315700,0.252300,0.587300,0.977100,-0.211400,-0.022970 -0.352300,0.400500,-0.630700,-0.030750,-0.000001,-0.999500 -0.397000,0.306500,-0.368000,-1.000000,-0.003316,0.001648 -0.298400,0.291100,0.583600,0.403000,-0.025690,0.914900 -0.410900,0.056630,0.627500,-0.393200,-0.143400,0.908200 0.355800,0.439500,0.501200,-0.177900,-0.139700,0.974100 0.411300,-0.493000,-0.555700,0.968500,0.239000,-0.069590 -0.412900,-0.500300,0.555700,-0.971400,0.228100,0.066570 0.350400,-0.578600,-0.579300,0.970600,0.230000,-0.070590 -0.352500,-0.335300,0.496100,0.045370,-0.057100,-0.997300 -0.211400,0.454600,0.595200,0.000000,-0.987700,0.156700 0.007852,0.439600,0.539500,0.000000,0.003618,-1.000000 0.485300,0.496500,-0.281800,0.055980,0.998400,-0.000018 -0.344300,0.454600,0.109600,0.168700,-0.985700,0.000000 0.141000,0.447300,-0.539600,0.000000,-0.181200,0.983500 -0.344300,0.454600,0.015680,0.168100,-0.985800,-0.001179 -0.344700,-0.233900,0.495600,0.085690,0.063870,-0.994300 -0.332300,-0.014970,-0.564100,0.989300,0.131200,0.063280 -0.446300,0.496600,0.665400,0.000000,0.999300,0.037770 0.454100,0.454500,-0.595100,0.060190,-0.997700,-0.030220 0.397000,0.361400,-0.195700,0.996000,-0.083670,0.029910 0.351800,0.439500,-0.502900,0.081470,-0.146000,-0.985900 0.338400,0.141400,0.603600,0.990100,0.121400,-0.069840 -0.385500,-0.132400,-0.501600,0.109600,-0.100400,-0.988900 -0.323700,-0.436900,-0.540500,0.984300,-0.158100,0.078480 0.441500,0.423900,-0.578600,0.992100,-0.010770,-0.125200 -0.353800,0.189700,0.520700,0.320100,-0.147300,-0.935900 -0.385800,-0.246300,-0.559000,-0.791400,-0.143700,-0.594200 0.444100,-0.623800,0.571100,-0.981800,-0.159600,0.102600 -0.360300,-0.140000,0.502600,0.076470,0.129600,-0.988600 -0.446400,0.343000,-0.574000,-0.990800,-0.000121,-0.135300 -0.399200,0.212200,0.514500,-0.044980,0.120100,0.991700 0.354900,0.439600,0.477600,-0.997900,-0.064820,0.002478 -0.433100,-0.029010,-0.547900,-0.978000,-0.206400,-0.031560 -0.335000,0.180500,0.548800,-0.943400,0.137500,0.301700 -0.442300,0.048880,-0.593000,-0.929600,-0.159400,-0.332400 0.368300,-0.525200,-0.525700,-0.119700,-0.209600,0.970400 -0.398800,-0.179100,0.540100,-0.988000,-0.132000,0.080590 -0.373900,-0.288300,-0.491300,-0.216400,-0.055780,0.974700 -0.335000,-0.194200,-0.579000,-0.167700,0.087620,0.981900 0.409600,-0.123400,0.511800,0.902000,-0.122300,-0.414000 0.398300,0.180400,-0.518500,0.066920,0.132100,-0.989000 0.403500,-0.099710,0.583700,0.683500,-0.238000,0.690100 -0.402000,-0.644600,-0.624900,0.067490,0.268000,0.961100 -0.353000,-0.020720,-0.518800,0.544900,0.160500,0.823000 -0.414500,-0.655300,0.553900,-0.032840,-0.196400,-0.980000 0.413200,-0.100300,-0.555500,0.974400,-0.196100,-0.110300 -0.407100,0.165500,0.517400,0.026260,-0.117500,-0.992700 -0.451700,0.157700,0.586700,-0.989400,0.006612,0.144900 -0.375600,-0.005757,0.622200,-0.074420,-0.213700,0.974100 -0.360100,-0.477000,-0.592600,-0.012220,0.205900,-0.978500 0.409500,-0.132500,0.532500,-0.981700,0.190600,-0.004934 0.448700,0.377000,0.555200,0.994500,0.014330,0.103500 -0.352100,-0.256900,0.495500,-0.045530,-0.056880,0.997300 -0.310600,-0.296100,-0.554200,0.977300,-0.046060,-0.206800 -0.126500,0.349100,-0.577500,0.360500,-0.920400,-0.151200 0.526300,0.468000,-0.140900,0.941500,0.337100,0.000149 -0.374500,-0.435900,0.507600,-0.055650,-0.138900,-0.988700 0.391400,-0.037970,-0.516000,0.010510,-0.101400,-0.994800 -0.443300,0.087740,0.601400,-0.926600,-0.158000,0.341300 0.331900,-0.006646,-0.609000,-0.930600,0.027350,-0.364900 0.311300,0.335200,0.537300,-0.573600,0.000000,-0.819100 0.391200,-0.108400,0.502000,0.109500,0.089910,-0.989900 0.364100,-0.265100,-0.573600,0.376900,-0.085350,-0.922300 0.398500,-0.564400,-0.533000,0.038660,-0.233600,0.971600 0.383500,0.025070,0.624000,0.071970,-0.165000,0.983700 -0.333700,-0.414100,-0.580300,0.411000,0.062380,-0.909500 0.360200,-0.092660,0.507500,0.104100,-0.125100,0.986700 0.431500,-0.581900,-0.574000,0.958000,0.281100,-0.057350 -0.457900,0.220300,-0.540400,-0.997900,0.030210,0.057530 0.370100,-0.210800,-0.575600,-0.471900,0.162200,0.866600 0.314100,-0.331600,0.550900,0.982600,0.021350,-0.184400 -0.352500,-0.374000,0.498700,0.056670,-0.117200,-0.991500 0.330900,0.188300,-0.563200,0.979100,0.153900,-0.133000 -0.317900,-0.148300,-0.532900,0.986000,0.133100,0.100600 -0.377500,-0.141200,-0.585000,0.338500,0.229000,0.912700 0.336700,0.454500,0.321000,0.003810,-1.000000,0.000000 0.344500,-0.430400,-0.589100,-0.050450,0.142200,-0.988500 0.363000,-0.624500,0.587400,-0.968100,-0.244400,-0.055840 -0.331700,-0.483600,-0.548300,0.975000,-0.208000,0.077740 -0.359500,0.118200,0.638100,-0.184100,0.093880,-0.978400 0.375600,-0.548400,-0.612500,0.038630,0.221100,-0.974500 0.360500,0.377000,-0.632100,-0.079180,-0.014170,0.996800 0.448500,-0.633700,0.586300,0.996400,0.014630,0.083970 0.352300,-0.460900,-0.593600,-0.011270,0.149200,-0.988700 0.309800,0.298500,-0.595400,0.997900,0.054860,-0.034050 0.406000,0.277900,-0.501300,-0.010970,0.214500,-0.976700 -0.445000,0.423900,0.555700,-0.995800,0.000000,0.091840 0.414700,-0.118400,0.532300,0.987100,-0.159900,-0.002552 -0.344400,-0.312100,0.578400,-0.078260,0.032870,0.996400 0.352500,-0.421700,-0.508800,0.089260,0.155400,-0.983800 -0.356100,0.378700,0.055120,0.978600,-0.205100,-0.013130 0.376400,0.032120,-0.522300,-0.100100,0.042530,0.994100 0.375700,0.306600,0.627300,-0.085100,-0.081240,-0.993100 0.451000,0.251400,-0.555700,0.994700,0.094680,-0.040360 -0.399000,0.103000,-0.521400,-0.077720,-0.029370,-0.996500 0.353300,0.056140,-0.631800,-0.254500,-0.127700,-0.958600 -0.344600,-0.280700,-0.492500,-0.077470,0.038090,-0.996300 0.433100,0.173400,0.622000,-0.612000,-0.006036,-0.790900 0.355400,0.133700,-0.534000,0.547300,0.141100,-0.825000 0.406700,-0.546700,0.526300,0.179300,-0.164300,-0.970000 -0.421700,0.369100,0.497300,-0.211700,-0.000122,-0.977300 -0.395500,0.348000,-0.226800,-0.783700,-0.586100,0.205700 -0.386200,-0.072060,-0.602000,-0.234100,-0.235700,-0.943200 -0.391900,-0.608500,0.544100,0.084220,-0.254600,-0.963400 -0.337000,0.095080,-0.595100,0.999700,0.016220,-0.018050 -0.441900,-0.616500,-0.563600,0.967600,-0.183700,-0.173500 -0.419800,-0.539900,0.578600,-0.936300,0.260700,0.235100 0.388700,-0.343500,-0.547300,0.971400,0.038920,-0.234000 0.317100,-0.358700,0.510800,-0.936100,-0.062960,-0.346000 0.391300,-0.603000,0.621800,0.033410,0.244100,0.969200 0.355600,0.118700,-0.534900,0.560600,-0.007887,-0.828100 0.425300,-0.001874,-0.523500,0.590200,-0.035110,0.806500 0.359200,0.094680,0.630100,0.250600,0.124400,-0.960100 0.376100,-0.101300,-0.506700,-0.048630,0.147500,0.987900 0.391000,0.048630,-0.630800,0.130500,-0.143900,-0.980900 -0.446500,0.319500,-0.574000,-0.991100,0.023950,-0.131200 -0.338900,0.040360,0.552300,-0.919700,-0.053850,0.388800 0.359600,-0.422300,0.583600,0.093820,0.144700,0.985000 0.519300,0.481700,-0.511500,0.801000,0.598700,-0.000019 -0.427100,0.082080,0.523100,-0.260100,-0.009426,-0.965500 -0.334800,0.203800,0.538400,-0.916200,0.172100,0.361800 0.398400,-0.210300,0.540100,0.982200,-0.104400,0.156400 0.324500,0.219600,-0.603100,0.990300,0.133300,0.039890 0.413000,0.003749,-0.611000,-0.601100,0.209500,0.771200 -0.429200,-0.045650,-0.555800,-0.972800,-0.213900,-0.088830 0.374900,-0.493200,-0.599000,0.160000,0.250300,-0.954900 0.403700,0.154300,0.633700,-0.166900,-0.005314,-0.986000 -0.332300,0.197200,-0.617300,0.959100,-0.129900,-0.251700 -0.331000,0.008839,0.602300,0.981400,0.069350,0.178800 0.360500,-0.507600,0.521700,0.216700,0.218200,0.951500 0.353000,-0.068140,0.605800,-0.074470,-0.197800,0.977400 0.438300,0.313200,-0.597600,0.889700,0.094970,-0.446500 0.441200,0.040930,-0.541900,0.968300,-0.116500,0.220900 -0.448800,0.102600,0.556000,0.993200,0.116200,0.001865 -0.315200,0.290900,0.525100,0.952500,-0.037920,-0.302100 0.354900,0.355400,-0.203900,-0.969100,-0.236500,0.070640 -0.361300,0.354800,0.188100,0.255200,-0.946500,-0.197600 0.401100,0.283400,0.487300,0.855700,-0.227200,-0.464900 0.333200,0.262200,-0.635400,-0.388900,0.003524,-0.921300 0.360900,0.173700,0.638000,-0.130700,-0.010750,0.991400 0.430300,0.057080,0.609700,-0.699300,0.158400,-0.697000 0.351800,-0.209900,0.495500,0.094980,-0.075870,0.992600 -0.330400,-0.049390,0.540600,-0.914000,-0.209200,0.347600 -0.312800,-0.393200,0.548400,0.988000,-0.147700,-0.044210 0.368500,-0.391000,-0.504100,-0.138700,0.124600,-0.982500 0.422400,0.033450,0.611000,-0.615100,0.167400,-0.770500 0.380600,-0.650000,0.559100,0.673300,0.184600,0.715900 0.336400,-0.140600,-0.591700,0.169000,0.189600,0.967200 0.415400,-0.586500,0.537900,-0.242800,0.153900,0.957800 0.444100,0.106500,0.610000,0.826200,-0.168000,0.537800 0.338000,0.384800,0.630000,-0.203400,-0.000249,0.979100 0.457500,0.126700,0.548700,0.994500,-0.063220,-0.084020 -0.312600,-0.341700,-0.527900,0.993200,-0.068250,0.093920 -0.314700,0.452200,0.592600,-0.588900,-0.795200,0.144200 0.425100,-0.060150,0.562700,0.959500,-0.228500,0.164800 -0.332300,0.181600,-0.609600,0.977500,-0.109500,-0.180200 -0.359900,-0.138900,-0.591100,-0.076650,-0.202700,-0.976200 -0.352800,-0.029350,0.522400,-0.391400,-0.129900,0.911000 -0.401100,-0.452700,0.540200,0.990200,-0.136300,0.031220 -0.371600,-0.041250,-0.611000,-0.046110,-0.211300,-0.976300 -0.354900,0.487300,0.697800,0.000055,0.768000,0.640400 -0.396500,0.293400,-0.626500,0.110600,-0.084480,0.990300 -0.353000,-0.164100,-0.586200,-0.057460,-0.197000,-0.978700 0.401300,-0.178000,0.546700,0.960500,-0.174800,0.216700 0.387500,-0.241800,-0.504500,0.850700,-0.069420,0.521000 -0.319200,-0.414100,0.563700,-0.982500,0.109200,-0.150700 0.383100,-0.132100,-0.503200,0.122300,0.077290,0.989500 -0.365300,-0.160500,0.586300,0.246700,0.223100,-0.943100 0.444800,0.072100,0.527800,0.847700,-0.086540,-0.523400 0.367900,-0.123900,-0.506700,0.060050,-0.125000,-0.990300 0.397000,-0.472800,0.576500,-0.692000,-0.268600,-0.670000 -0.319800,-0.306400,-0.499900,0.705600,-0.053990,0.706500 -0.398600,0.157700,-0.636800,-0.123200,0.005505,-0.992400 0.383200,-0.224600,0.562600,-0.725800,0.123800,-0.676600 -0.337500,-0.288200,-0.491000,0.139500,-0.053600,0.988800 -0.405900,-0.568700,-0.530000,-0.069310,-0.188000,0.979700 0.366600,0.179900,0.518900,0.301100,0.155600,0.940800 0.429900,0.165800,-0.519200,0.227600,-0.105300,0.968000 0.187900,0.469700,0.710600,0.000008,0.303200,0.952900 0.266200,0.462600,0.712200,-0.000295,-0.040590,0.999200 0.310100,0.431800,-0.617100,-0.964800,0.000432,-0.262800 0.376000,-0.406200,-0.507000,-0.216100,0.090920,-0.972100 -0.361800,0.324400,0.298100,0.265500,-0.907100,-0.326700 0.402200,0.309500,0.626300,0.166100,0.089820,0.982000 0.411500,-0.582400,0.608900,-0.421200,-0.336600,-0.842200 0.456600,0.212700,0.534100,0.980800,-0.011580,-0.194800 0.328200,0.377000,-0.629600,0.318000,-0.017840,0.947900 -0.343300,0.255700,0.508500,0.203900,-0.268200,-0.941500 0.393600,-0.383300,-0.524800,0.989600,0.139000,0.036020 -0.446600,0.405700,-0.572800,-0.990800,-0.000018,-0.135500 -0.330000,-0.457400,-0.568800,-0.960900,0.108200,0.255000 0.371500,-0.535000,0.524000,-0.104800,-0.237400,-0.965800 0.409300,0.159500,0.632500,-0.232700,-0.006669,-0.972500 -0.346300,-0.570200,0.594700,0.967500,-0.195300,0.160500 0.396000,-0.051200,-0.603700,-0.455000,0.219600,0.863000 0.402700,-0.452400,0.556400,-0.954900,-0.167400,-0.245400 0.326000,-0.105300,-0.596300,-0.615300,-0.074180,-0.784800 0.395000,-0.665000,0.554100,-0.117800,-0.502300,-0.856600 -0.401300,-0.438300,0.547200,-0.984800,0.155100,0.078100 0.424000,-0.550300,0.583400,0.895700,0.276600,0.348300 -0.423400,0.303500,-0.618100,-0.540700,0.123900,-0.832100 -0.374000,-0.106500,-0.596500,-0.147600,-0.211000,-0.966300 0.390900,-0.249200,0.500200,0.836800,-0.063770,-0.543800 -0.375900,-0.370100,-0.569900,-0.511100,0.115800,-0.851700 0.384100,-0.147200,-0.504900,-0.283600,-0.062900,-0.956900 -0.333000,-0.100300,-0.521600,-0.789100,-0.179600,-0.587400 0.344500,-0.210200,-0.499700,0.104000,-0.052420,-0.993200 -0.387600,-0.249900,-0.549400,0.892100,0.130300,0.432700 -0.323000,-0.152200,-0.519900,-0.897700,-0.189900,-0.397600 0.353800,-0.023000,0.612000,0.195700,0.126100,-0.972500 -0.421300,-0.585500,-0.536400,-0.284500,-0.171200,0.943300 -0.367500,-0.350600,0.499900,0.131600,0.036830,0.990600 -0.393600,-0.202700,0.540400,0.986600,0.108200,-0.121800 0.354900,-0.609000,-0.595100,-0.971400,-0.236900,0.013740 -0.396900,0.377600,0.094030,-0.988300,-0.152100,-0.008783 -0.428900,0.062360,-0.616000,-0.607300,-0.175200,-0.774900 0.439500,0.123400,0.619600,0.698900,-0.092830,0.709100 -0.325500,-0.401100,0.509300,0.584500,-0.284800,-0.759800 -0.329000,0.323200,0.632800,0.287300,0.013700,0.957800 0.321300,-0.385300,-0.577800,-0.582100,0.037740,-0.812200 0.365400,0.487700,0.697800,0.000048,0.793200,0.609000 0.331200,-0.469700,0.547500,0.975800,0.207000,0.070270 -0.376200,0.197400,-0.512600,0.092850,-0.128000,0.987400 0.407200,0.212800,-0.511600,-0.015940,-0.124600,0.992100 0.391800,0.102100,0.632200,-0.078490,0.143300,-0.986600 0.521200,0.478000,0.143500,0.865400,0.501100,-0.000015 0.345700,0.121600,-0.632700,0.647600,0.072860,0.758500 -0.336500,-0.511600,0.541900,0.928200,-0.239700,-0.284400 0.322700,0.273000,0.522900,0.887900,0.307300,0.342300 0.360400,-0.014210,0.616400,-0.048040,-0.166900,0.984800 -0.399200,-0.597400,-0.620100,-0.120300,0.278500,-0.952900 0.376900,-0.223300,0.571000,0.504600,-0.120400,0.854900 -0.378900,-0.640700,-0.554100,0.501800,-0.228700,0.834200 0.444700,0.292200,-0.529600,-0.988300,-0.088850,-0.123700 0.185300,0.452100,-0.588100,0.000000,-0.841200,-0.540700 0.287100,0.452100,-0.588100,0.001335,-0.841500,-0.540200 -0.443300,0.048540,0.563600,-0.989500,-0.138900,0.039740 0.336000,-0.492400,0.573200,0.973000,0.142100,-0.181900 0.365300,-0.417000,0.579500,-0.166500,-0.176300,-0.970100 -0.527900,0.462100,-0.023480,-0.997900,0.064420,-0.000047 0.321100,0.272500,-0.515800,-0.892900,-0.295700,0.339500 -0.415600,-0.594800,0.543900,0.315200,0.160800,0.935300 0.430100,0.403100,0.610400,0.727400,0.006993,0.686200 0.385600,-0.438300,-0.580600,0.593300,0.220300,-0.774300 -0.409700,0.022380,-0.616400,0.392800,0.221600,0.892500 0.398600,0.243400,-0.637700,0.150300,0.105200,-0.983000 0.338100,0.063160,-0.624800,-0.814700,-0.045640,-0.578100 -0.386700,-0.096090,-0.596000,-0.318300,-0.232200,-0.919100 -0.352400,-0.436700,-0.583500,-0.033530,-0.141200,0.989400 0.374400,-0.257300,0.490400,0.193700,0.028880,-0.980600 0.398400,-0.546100,-0.529200,0.122700,-0.170500,0.977700 0.383300,0.141600,0.521100,0.087390,0.133100,0.987200 0.404500,-0.100400,-0.511300,0.533500,0.004287,0.845800 0.391000,0.353500,-0.630900,0.135200,-0.000020,-0.990800 0.344200,-0.542300,0.560000,-0.970200,-0.226600,-0.086210 -0.442600,0.306600,0.523900,0.983300,-0.017160,0.181000 0.322300,-0.246900,0.502100,0.698300,-0.078680,0.711400 0.361100,-0.046240,0.511300,-0.192100,0.130700,-0.972600 0.390600,0.270800,0.423600,0.173200,-0.968200,-0.180800 0.452600,0.095160,0.540900,0.964600,-0.111900,-0.238900 -0.406500,-0.097760,-0.577800,0.777000,0.268000,0.569700 0.324600,0.244800,0.540700,-0.962800,-0.233100,-0.136700 -0.440500,0.057980,0.541600,0.938900,0.111400,0.325800 0.308500,0.439600,-0.610000,-0.983300,-0.056480,-0.173200 -0.311200,0.265300,0.571700,0.708500,-0.702100,-0.071350 0.326500,-0.437700,0.540100,0.985300,0.154400,0.073400 -0.374200,-0.272900,-0.490400,-0.208100,-0.029440,0.977700 0.322800,-0.407200,0.516400,-0.904100,-0.202900,-0.376000 -0.443800,0.236500,-0.509800,-0.483900,-0.153000,0.861700 0.374100,-0.509100,0.517700,-0.074220,-0.225000,-0.971500 -0.383200,-0.146300,0.585700,-0.531400,-0.247300,0.810200 -0.421300,0.055990,0.522000,-0.194600,-0.002002,-0.980900 -0.333200,0.398400,0.634200,0.140100,0.016030,0.990000 0.328200,-0.488600,-0.561300,-0.974500,-0.220400,0.041600 -0.362800,-0.258600,-0.569700,0.302300,0.149400,0.941400 0.527900,0.462000,0.704300,0.995500,0.059370,0.074260 0.377700,-0.132300,0.586700,-0.356000,0.254700,-0.899100 -0.323900,0.309100,-0.512400,-0.805100,-0.000021,-0.593200 0.387400,0.003365,0.517100,0.086460,-0.106200,0.990600 0.407100,0.454600,0.634400,0.000854,-0.988400,0.152100 -0.405400,-0.149500,-0.541600,0.967400,0.224000,0.118500 0.422000,0.226000,0.627600,-0.410100,-0.091780,-0.907400 -0.377700,-0.385200,-0.571800,-0.493400,0.192500,-0.848200 -0.492200,0.495800,0.399300,-0.129500,0.991600,0.000000 0.436400,0.266800,-0.507200,0.353900,-0.159000,0.921600 0.406200,0.235500,-0.637200,0.208300,0.093770,-0.973600 0.391200,-0.455900,-0.576500,-0.749600,-0.173700,0.638700 0.409200,-0.510600,-0.529500,0.749500,0.003327,0.662000 0.344900,-0.288200,0.490400,-0.083380,-0.057610,-0.994900 -0.382600,-0.036920,0.614400,-0.165000,-0.239700,0.956700 0.346700,-0.546400,0.548900,-0.936200,-0.259800,-0.236500 -0.527200,0.457300,0.683800,-0.847700,-0.530400,0.000055 0.368000,0.326400,-0.291200,-0.018290,-0.940400,0.339700 0.368000,0.269800,-0.454100,-0.017000,-0.999900,0.000000 0.326700,-0.069630,0.585400,-0.971000,0.057290,0.232100 -0.330200,-0.452600,-0.532000,-0.945500,0.203300,-0.254300 0.353900,-0.522500,-0.527800,-0.345500,-0.285100,0.894100 0.352200,-0.030950,-0.614400,0.108100,0.182000,0.977300 0.346200,-0.010710,0.610900,0.449600,0.170400,-0.876800 0.515800,0.485400,-0.091340,0.705900,0.708300,0.000036 0.316800,-0.210700,0.511000,-0.902800,0.083060,-0.422100 -0.458000,0.134300,-0.548600,-0.997700,-0.019870,0.064290 0.428900,-0.029950,-0.548000,0.978600,-0.205600,0.003401 -0.333100,0.447200,-0.623500,-0.278400,-0.442000,0.852700 -0.333100,0.048170,0.609400,0.980300,-0.002380,0.197300 0.407400,-0.529300,0.594400,0.554500,0.295400,0.778000 -0.344700,-0.536700,-0.572000,-0.975300,0.220600,-0.010920 -0.435400,0.119300,-0.623300,-0.608800,-0.094420,-0.787600 0.390400,0.362200,-0.154500,0.197300,-0.959500,0.201000 0.413700,-0.497000,0.550200,-0.967400,-0.248300,-0.049120 -0.425000,0.408300,-0.493200,-0.202900,0.000000,0.979200 -0.399300,-0.655600,0.627600,-0.069610,-0.316400,0.946100 -0.383000,0.335800,-0.261000,-0.012100,-0.959800,0.280500 -0.361900,0.087130,0.527300,0.360100,0.041370,-0.932000 -0.361200,0.304700,-0.348400,0.103500,-0.907700,0.406700 0.368300,-0.163800,0.581700,-0.221500,0.204700,-0.953400 -0.383600,0.369100,-0.502500,-0.001235,0.000000,-1.000000 0.387100,-0.423900,0.574500,0.594200,0.186100,0.782500 0.324400,-0.392900,-0.576400,0.598400,-0.012800,0.801100 -0.385600,-0.039870,-0.609900,-0.164300,-0.232900,-0.958500 -0.305200,0.268800,0.577500,0.390800,-0.903500,0.176100 0.334900,0.206700,0.541600,0.955800,0.145400,0.255700 0.343200,0.193400,0.524200,-0.645200,-0.184800,-0.741300 0.352200,0.298100,-0.636000,0.008791,0.093360,-0.995600 0.446800,0.239700,-0.600500,0.965400,0.127800,-0.227200 -0.438900,0.059660,0.530300,-0.808000,-0.093420,-0.581800 -0.451100,0.235900,0.533500,-0.970800,0.038250,-0.236600 -0.324700,0.249100,0.630000,0.701700,-0.093810,0.706300 -0.401700,-0.178400,-0.511000,-0.956000,-0.106000,0.273700 -0.337000,0.306500,0.502500,0.218700,-0.000087,-0.975800 0.389700,-0.172100,-0.565800,-0.822300,0.207400,0.530000 0.397000,-0.427400,0.558900,-0.893500,-0.199200,-0.402500 -0.316400,-0.398800,0.556400,-0.989100,0.121900,-0.082730 -0.310000,-0.234000,-0.548100,0.996900,0.063120,-0.046010 -0.336300,-0.001144,-0.565700,-0.988900,-0.119700,-0.088120 0.439100,0.290000,-0.600800,0.905600,0.109700,-0.409700 -0.392300,-0.153200,-0.571900,0.704000,0.262800,0.659800 -0.360400,0.089300,-0.526600,0.553700,0.032160,0.832100 0.368100,-0.171700,-0.498300,-0.004092,0.083280,0.996500 0.400000,0.298700,-0.500600,0.232700,0.002971,-0.972500 0.438400,0.054140,-0.530500,0.820000,-0.148000,0.552900 0.443900,0.228200,-0.603100,-0.907300,-0.142400,0.395700 0.360400,-0.420900,-0.505500,-0.048160,-0.166900,0.984800 0.376000,0.048050,0.519300,-0.126100,0.030230,-0.991600 -0.329200,0.259100,0.518200,-0.729100,0.303900,0.613200 0.352400,-0.045950,-0.611700,0.057430,0.191200,0.979900 0.441100,0.400000,-0.511900,0.890300,-0.012740,0.455300 -0.383900,-0.471500,0.586900,0.456300,-0.276300,-0.845900 -0.438200,-0.650500,-0.554900,-0.601600,-0.334100,0.725600 -0.359900,-0.613800,-0.590300,0.964400,-0.261800,0.036720 0.334800,-0.096080,-0.602100,-0.332200,-0.153900,-0.930600 -0.399600,-0.154000,0.562300,-0.919200,-0.236000,0.315200 0.416500,0.102300,-0.630100,-0.378600,0.176800,0.908500 0.368700,0.134800,-0.525200,-0.239200,-0.122300,0.963200 0.422000,-0.577100,0.602200,0.687400,0.349700,0.636600 0.349400,-0.083360,0.508700,-0.380700,0.150100,-0.912400 -0.395300,-0.155400,-0.503900,0.631400,0.022690,-0.775200 -0.398800,-0.113400,0.579700,0.734800,0.307000,-0.604900 0.341900,0.001641,0.534700,-0.825200,0.169100,-0.538900 0.424000,-0.037690,0.516100,0.670700,-0.048940,-0.740100 0.415000,-0.647800,-0.552400,0.037200,-0.204600,0.978100 -0.401300,0.452200,-0.151400,-0.619200,-0.785200,0.000000 -0.078270,0.454800,-0.704900,0.000000,-0.974500,-0.224400 0.329700,-0.477100,0.554100,-0.974500,-0.221300,-0.037390 0.399300,0.454800,-0.704900,0.000000,-0.974500,-0.224400 -0.415900,-0.005093,-0.604000,0.599500,0.271200,0.753000 -0.317300,0.363900,0.623000,-0.740700,0.000032,-0.671900 0.516800,0.454500,-0.148700,0.019410,-0.999800,0.000000 -0.341300,0.449700,-0.504500,-0.313900,-0.594800,-0.740000 -0.336100,-0.462400,-0.522200,-0.857400,0.211700,-0.469100 0.431600,0.262900,0.618300,0.591000,0.122100,0.797400 -0.390000,-0.358900,-0.502000,-0.791100,-0.001106,0.611600 -0.339200,0.213600,0.523000,0.517400,-0.189200,-0.834500 -0.416200,0.149900,-0.630900,0.307200,-0.019170,0.951400 0.378700,-0.457300,0.509200,-0.032670,0.174400,0.984100 -0.336600,0.041610,-0.576900,0.995200,0.045120,0.086780 -0.387900,-0.441400,-0.508600,0.283800,0.146300,-0.947700 0.353800,0.447200,-0.234900,-0.942900,-0.333000,0.000000 -0.388000,-0.249900,0.516400,0.980900,0.085570,0.174500 -0.323500,0.408300,0.630100,0.505900,0.000000,0.862600 0.329200,-0.143000,0.509400,-0.694500,0.196400,-0.692100 -0.444900,0.239600,0.605500,-0.910400,0.131000,0.392400 -0.427200,-0.021730,-0.519900,-0.732400,-0.074370,0.676900 -0.375200,-0.013880,0.517400,0.096650,0.118900,-0.988200 0.527900,0.462100,0.681200,0.995100,0.098660,-0.000810 0.355500,0.083560,-0.633600,0.254000,0.106200,0.961300 -0.356700,0.119000,-0.635400,0.329900,-0.086380,-0.940100 0.374100,-0.181500,-0.500300,-0.115500,-0.046870,-0.992200 -0.333400,0.079420,0.609800,0.989200,0.016420,0.145700 0.385700,-0.598100,0.618200,0.085510,-0.292000,-0.952600 0.331000,0.180800,-0.626200,-0.945200,-0.105100,-0.309100 -0.442300,-0.610200,-0.557500,-0.951200,0.175500,0.253900 0.315800,0.283200,-0.525400,-0.928600,-0.137300,0.344900 -0.344600,-0.148400,0.590900,-0.036460,0.193000,-0.980500 -0.399100,-0.411500,-0.536500,0.984400,-0.164400,0.063040 -0.313100,-0.243500,-0.526300,-0.993700,-0.064110,-0.091590 -0.437800,0.020640,-0.583500,0.943300,0.178600,0.279700 -0.395600,-0.156300,-0.566500,0.790900,0.253700,0.556900 -0.437600,-0.652600,0.585000,0.942800,0.331800,-0.033190 0.367300,-0.644800,0.590600,-0.978200,-0.200500,-0.054500 0.390500,-0.249200,0.542500,-0.939800,0.140400,-0.311700 -0.312500,-0.222200,-0.520900,0.985400,0.087970,0.145800 0.446300,0.368500,0.554700,-0.993900,0.000181,-0.109900 0.322300,-0.264900,-0.577000,-0.271900,-0.067530,-0.960000 0.336800,-0.383300,-0.582200,-0.062760,0.130000,-0.989500 0.332700,0.238100,0.520000,-0.816400,-0.323200,-0.478500 0.351500,-0.304400,0.573700,0.119300,0.037950,0.992100 -0.312800,0.291700,-0.601300,0.972200,-0.118800,-0.201700 -0.093930,0.475600,0.708000,-0.000048,0.491100,0.871100 -0.327700,-0.461200,-0.540400,0.980600,-0.166800,0.102800 0.376300,0.213200,-0.513600,-0.099430,-0.142800,0.984700 -0.414900,-0.640300,0.550800,-0.033050,-0.208900,-0.977400 0.353100,-0.146900,0.501300,0.113800,-0.136600,0.984100 0.323900,0.252500,0.533300,-0.947700,-0.263900,-0.179500 0.334700,-0.066290,-0.524500,-0.723700,0.182800,0.665500 -0.318400,0.267000,0.548000,-0.992000,0.102000,0.074790 0.381800,-0.244300,-0.502900,-0.678600,0.005532,-0.734400 0.430200,0.043570,0.610300,0.693000,-0.178500,0.698500 -0.367100,-0.602100,-0.547500,0.652900,-0.302100,0.694600 -0.449000,0.452200,0.537600,-0.679700,-0.733500,0.005611 -0.375900,-0.648000,-0.564400,-0.825300,0.159100,-0.541800 0.314600,-0.210100,0.559500,0.971200,-0.063590,-0.229500 0.351700,-0.328300,0.572100,-0.090940,-0.026100,-0.995500 -0.391100,0.229000,-0.634100,0.072190,-0.081810,0.994000 0.352600,0.244400,-0.509900,-0.166700,-0.268800,0.948700 -0.420300,-0.604300,-0.616300,-0.479200,0.347800,-0.805900 0.436200,0.348300,0.602600,0.851900,-0.000011,0.523800 0.369400,-0.657600,-0.617900,-0.825400,-0.292800,-0.482600 0.363200,0.075640,-0.633800,0.080730,0.168500,0.982400 0.420200,-0.555100,0.593300,0.751900,0.297800,0.588100 -0.360400,-0.536400,0.532200,-0.228800,0.266300,0.936300 -0.344600,-0.077480,0.604400,-0.129800,0.157300,-0.979000 0.313600,-0.308300,0.520400,0.983800,0.078660,0.160800 -0.450100,0.220500,0.539700,0.985900,-0.022020,0.166000 -0.445900,0.059440,-0.567900,0.986600,0.146100,0.072440 -0.436900,0.109900,0.615700,0.770400,0.158100,-0.617700 -0.336100,0.146500,-0.613800,0.971500,-0.134800,-0.195000 0.367800,-0.430100,0.581200,-0.151500,-0.148700,-0.977200 -0.370600,0.361700,0.154500,0.005602,-0.981100,-0.193600 -0.345700,-0.539000,-0.563700,-0.970100,0.230700,-0.075460 -0.385500,0.093310,-0.633900,-0.047420,-0.139400,-0.989100 0.400500,-0.607900,-0.623800,-0.191900,-0.300000,0.934500 0.350900,-0.288800,0.573300,0.111900,0.028850,0.993300 0.455500,0.165600,0.548100,-0.999700,0.010950,0.020700 -0.315800,0.387400,-0.582600,-0.950200,-0.009826,-0.311500 -0.338100,0.121400,0.627600,0.935700,-0.078080,0.343900 -0.433000,0.181200,-0.622000,0.607300,-0.009289,0.794400 -0.376500,0.324100,0.297500,0.000189,-0.936000,-0.352100 0.329500,-0.455800,0.536800,0.972400,0.169700,0.160000 0.354900,0.378500,-0.054860,-0.984000,-0.178300,0.003385 0.373200,0.346300,0.225300,-0.000025,-0.962700,-0.270400 -0.396600,-0.559200,0.531600,-0.013730,-0.211400,-0.977300 0.339300,0.126600,0.617600,-0.962100,-0.064940,0.265000 -0.421000,0.111500,-0.630600,-0.369300,-0.147600,-0.917500 0.315500,0.266300,-0.594000,0.984200,0.160300,-0.074870 0.328200,-0.450400,0.542200,0.985800,0.147000,0.081420 -0.352300,-0.016410,-0.523300,-0.571100,-0.171900,-0.802700 0.431600,0.361300,-0.602700,-0.859800,-0.001711,0.510600 -0.446300,0.496100,0.672700,0.000000,0.996500,0.083150 -0.211400,0.496100,0.672700,0.000000,0.996500,0.083150 -0.421700,0.142100,-0.631800,-0.373000,0.006190,-0.927800 0.438600,0.030430,-0.537200,0.929200,-0.111000,0.352600 -0.393300,-0.123200,-0.581200,0.595900,0.249100,0.763400 -0.440300,0.209700,0.517600,-0.377300,-0.108700,-0.919700 -0.327200,-0.056040,0.593400,-0.928600,-0.010420,-0.370900 0.353900,0.149500,0.527400,-0.533600,-0.179000,-0.826600 0.393200,0.337800,0.624300,-0.154100,0.000004,-0.988000 -0.395200,-0.592700,-0.619200,-0.085930,0.274900,-0.957600 -0.338000,0.345600,-0.627700,-0.161100,-0.013340,0.986800 -0.332200,0.165900,0.625200,0.949500,-0.104600,0.295700 -0.392900,-0.418300,-0.563100,0.819600,-0.190100,0.540500 0.389600,-0.199600,-0.503500,0.693600,-0.050060,0.718600 -0.357300,-0.042340,-0.611100,0.036350,-0.207900,-0.977500 -0.355100,-0.587400,0.563000,-0.911000,0.284600,0.298300 0.204800,0.300600,0.575800,-0.641500,-0.749700,0.162800 -0.407100,-0.490700,0.565400,0.934200,-0.267700,-0.235600 -0.313000,-0.215000,-0.522300,0.985200,0.078270,0.152700 -0.359100,-0.037370,0.519300,-0.278000,-0.130000,0.951800 0.355100,-0.051490,-0.610700,0.028990,0.206200,0.978100 -0.313800,0.322200,-0.610800,0.967500,0.000000,-0.252900 0.370900,0.238400,0.508000,0.108300,0.237900,0.965200 0.360500,0.322200,-0.632400,-0.081600,0.020210,0.996500 -0.414700,0.439500,0.619800,0.508300,-0.101100,-0.855200 0.435600,-0.617200,0.609100,0.743700,0.346500,0.571700 -0.445200,-0.650100,-0.574200,-0.943300,-0.329200,0.043020 -0.447100,0.251100,0.591500,-0.979900,0.110600,0.166300 0.397000,-0.158300,-0.565700,0.864500,-0.261400,-0.429300 0.316000,-0.209900,0.523300,0.978800,-0.070230,0.192600 -0.422100,0.003892,-0.601800,0.657300,0.277300,0.700800 0.330900,-0.178500,0.582400,-0.274500,-0.127500,0.953100 -0.364800,-0.280600,0.569400,0.467400,-0.007102,-0.884000 -0.394600,-0.217600,0.517800,-0.987700,-0.094460,-0.124300 -0.335700,-0.405800,-0.577100,-0.400900,-0.112400,0.909200 0.400300,-0.147900,0.508000,-0.785100,0.094080,0.612100 0.382900,-0.356300,-0.503000,0.596300,-0.029470,0.802200 0.428000,0.001800,-0.531200,-0.747800,0.106700,-0.655300 0.434300,0.441000,-0.506300,-0.664200,-0.016790,-0.747400 0.334100,0.173900,0.616900,-0.959100,-0.107300,0.262100 -0.414200,0.087120,0.631500,-0.408000,-0.163100,0.898300 0.367900,-0.445900,-0.511800,-0.010310,0.148600,-0.988900 0.370400,-0.258900,0.566100,-0.423000,0.130700,-0.896600 0.344400,0.089560,0.549300,0.947200,-0.037940,0.318500 0.398200,-0.200200,0.520900,-0.985100,0.170300,0.022120 0.444500,0.199200,-0.527300,-0.756300,0.055220,-0.651800 0.391000,0.322200,-0.303300,0.200800,-0.920200,0.336000 0.383100,-0.603000,0.543400,0.232200,0.280900,0.931200 0.344500,-0.517600,-0.531100,-0.621300,-0.316100,0.717000 0.416900,-0.516900,-0.548200,0.976200,0.214600,0.031850 -0.329400,0.259900,-0.518300,-0.769900,0.274200,-0.576200 -0.372400,-0.113000,0.596000,0.226600,0.222400,-0.948200 -0.391800,-0.109200,0.588000,0.577400,0.267400,-0.771400 -0.418000,-0.552100,-0.589900,0.793300,-0.305500,0.526600 -0.315500,-0.308400,0.509200,-0.799700,0.007766,0.600300 -0.311500,-0.273100,-0.511400,0.954600,-0.010260,0.297900 0.526100,0.468400,0.673300,0.941200,0.337700,0.000000 0.340900,-0.467500,-0.516700,-0.360000,-0.182400,0.915000 -0.338300,-0.517300,0.541000,0.894100,-0.234300,-0.381700 -0.328600,-0.107700,0.524100,-0.812700,-0.190100,0.550700 0.344400,-0.201700,0.580600,0.029820,-0.122300,0.992000 -0.384500,-0.288400,0.546300,0.965900,-0.041010,-0.255700 0.416900,-0.515200,0.540100,-0.960000,-0.143000,0.240500 -0.387800,-0.570800,-0.611200,0.050640,-0.258200,0.964800 -0.391300,-0.586800,-0.537500,-0.075020,0.252600,-0.964700 -0.512300,0.488200,0.234900,-0.574400,0.818600,0.000000 -0.379600,-0.104400,-0.595900,-0.218200,-0.221500,-0.950400 0.364400,0.247600,0.633600,-0.026830,-0.097470,-0.994900 -0.339000,-0.099980,-0.512200,0.635200,0.199100,0.746300 -0.354500,0.136300,-0.533700,-0.676900,0.184500,-0.712500 0.434300,0.433100,-0.506400,-0.662500,0.003604,-0.749100 -0.316000,-0.296200,-0.503500,0.823300,-0.057590,0.564700 -0.356600,-0.559500,0.541900,-0.694400,0.285200,0.660700 -0.416300,0.006238,-0.611000,-0.519700,-0.259200,-0.814100 0.454900,0.248700,0.560800,0.991700,0.100900,0.079470 -0.390900,0.234600,0.510900,-0.058860,0.224900,0.972600 -0.400400,0.415500,-0.625800,-0.179300,0.000018,-0.983800 -0.369700,-0.625500,-0.615500,-0.809000,0.094130,0.580200 0.413400,0.001250,0.516400,-0.116000,-0.083470,0.989700 -0.433400,-0.587500,0.571400,-0.965600,0.258800,0.026200 -0.354300,0.243800,-0.634000,-0.096250,-0.086940,0.991600 0.375900,-0.658900,0.617500,-0.704800,-0.226500,0.672300 0.334900,-0.464000,-0.518900,-0.558500,-0.171500,0.811600 0.415100,-0.086010,0.573900,0.885200,-0.237200,0.400200 0.446400,-0.621700,0.576100,0.959200,0.281700,0.025350 -0.348800,0.149000,0.536700,-0.710400,0.183200,0.679500 -0.347900,0.033370,-0.534900,0.764700,0.067090,0.640900 -0.361100,0.348000,-0.219700,0.144200,-0.963800,0.224400 0.401500,0.119300,-0.525000,0.064520,0.017640,-0.997800 -0.394100,-0.216700,-0.553000,-0.915200,-0.125400,-0.382900 -0.379100,0.494500,0.684000,0.000000,0.969500,0.245100 0.368600,0.299300,-0.632800,-0.087660,-0.113300,0.989700 -0.352000,-0.555900,0.546100,-0.817400,0.311400,0.484700 0.431000,-0.019020,-0.541300,0.980500,-0.188800,0.054880 0.313900,-0.304100,0.564000,-0.846200,-0.029910,0.532000 0.315000,0.330600,0.605300,0.958100,0.000641,-0.286500 -0.375800,0.360500,-0.160000,-0.000029,-0.978500,0.206200 -0.346500,0.097480,-0.540600,0.845300,0.027330,0.533600 0.507100,0.491400,-0.657700,0.450700,0.892700,0.000037 -0.165100,0.495500,0.678900,0.000012,0.990100,0.140600 0.239500,0.494800,0.684100,0.000000,0.961000,0.276500 -0.438000,-0.637000,0.614100,-0.858900,-0.073710,0.506900 -0.405800,-0.142300,-0.550500,0.948700,0.238100,0.207900 0.366100,-0.375300,0.574500,0.253500,0.142700,0.956700 0.345800,0.084470,0.540100,-0.837200,0.040040,-0.545400 -0.354500,0.236300,-0.509100,0.235000,-0.252200,0.938700 -0.526500,0.468300,-0.023480,-0.956400,0.291900,-0.000166 0.326300,-0.123900,0.519100,-0.854400,0.176000,-0.488900 0.440900,0.240800,0.614100,0.799700,0.125700,0.587100 -0.438500,0.250200,0.510800,-0.456200,-0.152600,-0.876700 0.319100,-0.293500,0.499400,-0.692200,-0.069800,-0.718300 -0.413800,-0.496700,-0.547600,0.973500,-0.228400,0.006602 -0.329300,-0.480100,0.555300,-0.973800,0.216900,0.068920 0.359700,-0.145200,0.587200,-0.065240,0.211000,-0.975300 -0.334100,-0.238000,-0.493500,0.273000,0.093920,0.957400 -0.384900,-0.390000,-0.503500,0.550700,0.051390,-0.833100 -0.404000,-0.519800,-0.523700,0.325800,0.171700,-0.929700 0.423300,0.320000,0.613100,-0.607300,-0.055790,-0.792500 0.512300,0.488200,0.013060,0.575200,0.818000,0.000070 -0.325000,0.282800,-0.620200,-0.714600,0.095360,0.693000 0.516300,0.485000,0.135700,0.702100,0.712100,-0.000010 0.340500,-0.043310,-0.612500,-0.336100,-0.144900,-0.930600 -0.348500,-0.159500,0.501100,0.094730,0.134300,-0.986400 0.354000,0.275900,-0.493900,-0.943900,-0.167100,0.285000 -0.384100,-0.109500,-0.593400,-0.322100,-0.241200,-0.915400 -0.393800,-0.241900,-0.504700,-0.939000,-0.064530,0.337900 0.360400,-0.061480,0.509400,-0.166800,0.129400,-0.977500 -0.330900,-0.045350,-0.580000,-0.992700,-0.090050,0.080750 -0.321600,0.241800,-0.587300,0.976500,-0.215100,0.015090 -0.352500,-0.280700,0.573400,0.185900,-0.013940,-0.982500 -0.408800,0.393300,0.626400,-0.469400,-0.000036,0.883000 -0.527900,0.462100,0.501100,-0.999200,0.040510,-0.000072 0.397900,-0.155900,-0.556600,-0.920800,0.232300,0.313200 -0.317800,0.337800,0.571500,-1.000000,0.000000,0.003862 -0.101800,0.452200,-0.537500,0.000000,-0.737700,0.675100 0.416400,-0.077340,-0.548000,-0.980500,0.193300,0.036210 0.233200,0.273700,-0.545400,-0.615300,-0.778200,0.125900 -0.376700,-0.163900,0.501800,0.216900,-0.118300,0.969000 -0.344300,-0.240500,0.580800,-0.062810,-0.111000,0.991800 0.398300,0.361300,-0.627800,-0.222700,-0.014510,0.974800 0.360100,-0.510800,-0.604200,-0.029580,0.213300,-0.976500 -0.411800,0.062990,0.625200,0.415200,0.186800,-0.890400 -0.436500,0.493000,0.688800,0.000000,0.911100,0.412100 -0.328500,0.244000,-0.534000,-0.947300,0.251000,-0.199300 -0.401400,-0.498100,0.582700,0.775800,-0.289900,-0.560400 -0.436800,-0.610600,0.558000,-0.896600,0.173600,-0.407400 0.355800,0.254400,-0.509600,0.129400,0.243100,-0.961300 0.436100,0.064840,-0.607400,0.829000,-0.163800,-0.534700 -0.335700,-0.312400,-0.495900,-0.231400,0.057860,-0.971100 0.414200,0.287400,-0.625000,-0.461500,-0.099590,0.881500 -0.321900,-0.097840,0.583500,-0.957100,-0.063070,-0.282700 0.425600,-0.590200,0.605800,0.682200,0.355700,0.638800 0.329500,0.181000,-0.588100,0.986900,0.151100,-0.057190 0.382100,-0.626700,0.551200,0.449000,0.329600,0.830500 -0.319400,-0.382200,-0.567400,0.902400,-0.083800,-0.422600 0.448200,0.431800,0.512600,0.932800,0.000712,-0.360400 0.425200,0.259600,-0.622900,-0.618600,-0.166300,0.767900 0.391600,-0.508800,-0.524100,-0.131200,0.143100,-0.981000 -0.416300,-0.534400,0.576000,0.935800,-0.256900,-0.241600 -0.318900,0.237200,0.602400,0.978200,-0.199700,0.057170 -0.516700,0.462600,0.712200,-0.006496,-0.029310,0.999500 0.454100,0.462600,0.712200,0.000000,-0.040000,0.999200 0.185300,0.480800,0.704500,-0.000271,0.599300,0.800500 0.374200,-0.272900,0.490200,0.218500,-0.014190,-0.975700 0.365700,-0.495100,0.517800,0.142100,0.236900,0.961100 0.321100,0.332600,0.518400,0.947300,0.000014,0.320200 0.402300,-0.444800,0.524000,-0.944700,-0.091400,0.315000 0.444200,0.191400,-0.527700,-0.742700,0.055480,-0.667300 0.527900,0.462100,-0.540200,0.997600,0.069080,0.000036 0.325200,-0.413400,-0.513300,-0.714100,-0.198600,0.671300 0.407100,-0.662600,0.554400,0.041940,0.084350,0.995600 -0.440400,0.301400,-0.594500,0.906600,-0.116000,0.405700 -0.328000,-0.048360,-0.565800,0.991800,0.111100,0.063680 0.428700,-0.623800,-0.550100,0.364200,-0.141600,0.920500 0.348200,0.220400,0.636200,-0.313700,-0.005759,0.949500 0.361300,0.400500,0.502500,-0.107300,0.012440,0.994200 -0.376300,-0.275900,-0.563700,-0.617200,-0.016570,-0.786600 0.359000,-0.533100,0.526300,-0.358600,-0.280600,-0.890300 0.416700,-0.023890,-0.595800,-0.783100,0.274100,0.558300 -0.316600,-0.249900,-0.504100,0.806700,0.113000,0.580000 -0.453400,0.115800,-0.582100,0.980500,0.116100,0.158500 -0.401500,-0.490600,0.579000,0.800100,-0.268200,-0.536600 0.427800,0.395200,0.608800,-0.710300,0.000314,-0.703900 -0.213500,0.292800,0.577400,0.688000,-0.720800,0.084800 -0.365500,-0.201700,0.582000,-0.279800,-0.124500,0.952000 -0.421000,0.027230,0.524200,0.315900,0.025450,0.948500 -0.431400,-0.601700,-0.546900,0.684500,0.001712,-0.729000 -0.375900,-0.082620,0.509000,0.055930,0.127500,-0.990300 -0.437000,0.285400,0.509900,0.735300,0.046860,0.676100 -0.432800,0.340900,0.500700,-0.449300,0.032690,-0.892800 -0.406400,-0.633500,-0.629000,-0.096950,0.069680,-0.992800 -0.415800,-0.540700,0.589800,-0.839000,0.273600,0.470400 0.449600,0.439500,0.517900,0.979900,-0.094300,-0.176100 0.421900,-0.009505,-0.525600,-0.679300,0.033510,-0.733100 0.370200,-0.663000,-0.603200,0.986500,0.082250,0.141300 0.360100,-0.142200,0.501100,0.087570,-0.125500,0.988200 -0.360700,0.061440,0.633900,0.089130,-0.164000,0.982400 -0.360400,-0.382800,0.502000,0.003471,0.174600,0.984600 0.391000,-0.394000,-0.518900,-0.941400,-0.083500,-0.326700 -0.337900,0.016310,-0.598700,-0.956300,-0.089500,0.278200 -0.419600,0.002388,0.607500,-0.687700,-0.269800,0.674000 -0.313000,-0.318200,-0.513100,0.963700,-0.074840,0.256300 0.415700,-0.094280,0.556400,-0.969200,0.202000,-0.140800 0.402400,-0.509800,-0.524500,0.372300,-0.111500,0.921400 -0.321700,-0.420800,-0.562400,0.970700,-0.130200,-0.202000 -0.426500,0.011460,0.523500,-0.419100,0.008692,-0.907900 -0.317900,-0.148700,0.584700,0.832800,-0.039300,0.552200 -0.426300,0.298900,0.613900,0.708200,-0.122300,-0.695300 -0.430500,-0.010330,0.561400,0.976400,0.197500,-0.087510 0.336000,0.225200,0.522600,-0.844300,-0.264700,-0.466000 -0.449600,0.377000,-0.517800,-0.984200,0.000000,0.176900 -0.497500,0.494900,0.407100,-0.226200,0.974100,0.000000 -0.412200,-0.665600,0.556800,-0.029840,-0.870900,-0.490600 0.353200,0.243500,0.636300,-0.092490,0.064870,0.993600 -0.390400,-0.087770,0.508200,-0.060310,0.102500,-0.992900 0.392000,-0.456600,0.508600,0.305100,-0.061300,-0.950400 0.386000,-0.174700,-0.501000,0.374600,0.018670,0.927000 -0.330400,0.230800,0.534400,-0.912200,0.238700,0.333000 -0.399600,0.209900,-0.509300,0.067820,-0.099980,0.992700 0.346900,0.094990,0.627900,-0.462700,-0.089400,0.882000 -0.396200,-0.480700,-0.515700,0.353500,0.162000,-0.921300 -0.393700,-0.087900,-0.595300,-0.437900,-0.236600,-0.867300 -0.421200,0.196900,-0.631800,-0.374200,0.003673,-0.927300 0.357500,0.282500,0.397000,-0.493300,-0.783500,-0.377800 -0.447300,0.403100,-0.567300,-0.991200,-0.000064,-0.132200 0.312300,-0.327900,-0.517900,0.950200,0.076720,-0.302000 0.331700,-0.054240,0.534300,-0.913100,0.142000,-0.382300 0.442000,0.452800,0.606700,0.331500,-0.902700,0.274300 -0.360200,0.021520,0.625500,-0.101400,0.224900,-0.969100 0.431900,-0.614800,0.612000,0.666600,0.355600,0.655100 -0.436000,-0.656800,0.564400,-0.824800,-0.317200,-0.468000 -0.405200,-0.501800,0.583800,-0.777300,0.298800,0.553600 -0.396300,-0.551900,0.610300,-0.278500,0.271600,0.921200 -0.527200,0.457300,0.073090,-0.848100,-0.529900,0.000000 -0.523400,0.454800,0.046990,-0.261200,-0.965300,0.000000 -0.396900,0.369600,-0.148800,-0.988700,-0.148400,0.023140 -0.527200,0.457300,-0.177500,-0.848300,-0.529400,-0.000003 0.408900,0.283100,-0.628000,-0.333700,-0.119400,0.935100 -0.384600,-0.379800,0.564100,-0.783700,0.223400,0.579500 0.344400,0.071470,-0.540000,-0.800400,0.033330,0.598500 -0.312800,-0.159700,0.534500,0.985100,0.148300,-0.087530 0.380000,-0.375600,-0.567900,0.718100,0.149000,-0.679800 -0.426800,0.061120,0.525300,0.446000,0.017290,0.894900 -0.507200,0.491400,0.227100,-0.459800,0.888000,0.000000 -0.507200,0.491400,0.375800,-0.459800,0.888000,0.000000 0.515800,0.485400,-0.099170,0.706000,0.708200,0.000079 -0.340700,0.150100,0.541800,0.867300,-0.167200,-0.468800 0.330000,0.449700,0.509900,0.517000,-0.519900,0.680100 -0.326700,0.189700,0.610100,0.989100,-0.101600,0.106900 -0.389500,0.386800,-0.627400,-0.137300,0.000000,-0.990500 -0.374800,-0.456100,0.587600,0.331800,-0.229000,-0.915100 0.420800,0.220100,0.631300,0.398900,0.053990,0.915400 0.437900,0.385400,-0.597200,0.899100,0.003875,-0.437600 -0.502100,0.493500,-0.430600,-0.340000,0.940400,0.000138 -0.328900,0.377000,0.508800,-0.502700,-0.008882,0.864400 0.344200,-0.375900,-0.581100,0.040030,0.123400,-0.991600 0.410800,-0.048580,-0.515600,0.350500,0.036180,0.935900 -0.372900,-0.657200,-0.602900,-0.965100,0.187000,0.183300 -0.368700,-0.661100,0.612900,0.902100,-0.329800,0.278100 -0.357000,-0.532500,-0.603500,0.365900,0.126400,-0.922000 -0.395500,-0.170600,-0.504500,0.697000,0.041480,-0.715800 0.394100,0.328300,-0.287200,0.217900,-0.889500,0.401500 0.408100,-0.139700,0.554800,0.953200,-0.217200,0.210600 -0.445300,0.289700,-0.594200,-0.891100,0.140300,-0.431500 0.446700,0.043460,0.555000,0.988400,-0.146600,0.039240 -0.382600,-0.288700,0.556700,-0.856900,0.050470,0.513100 -0.524800,0.473000,0.344500,-0.908900,0.417100,-0.000028 -0.497400,0.495000,-0.587200,-0.226100,0.974100,0.000034 -0.324900,-0.272700,-0.572500,0.304700,-0.031780,-0.951900 0.360900,0.103000,0.634200,-0.190600,-0.113300,0.975100 -0.320900,-0.396800,-0.528200,-0.973600,0.173500,-0.148600 -0.335700,-0.499400,-0.578300,0.963200,-0.124300,-0.238500 -0.354600,-0.072620,-0.601800,-0.103000,0.235200,0.966500 0.382900,-0.106900,0.593700,0.280000,-0.216500,0.935300 -0.524900,0.472700,0.610700,-0.909000,0.416800,-0.000055 -0.376600,-0.595200,-0.619700,0.141900,0.222900,-0.964500 -0.328800,-0.062300,-0.590600,0.952400,0.048330,-0.300900 -0.447000,0.118200,0.596500,0.974300,0.081660,-0.209900 -0.375800,0.484200,-0.701700,0.000361,0.694900,-0.719100 0.156600,0.481100,-0.704100,0.000293,0.607800,-0.794100 0.399900,-0.448000,-0.522000,0.888900,0.064300,0.453500 -0.234900,0.484500,-0.701400,0.000169,0.698100,-0.716000 -0.381300,-0.328000,0.557100,0.832000,-0.028580,-0.554100 0.335300,-0.483800,0.582900,-0.890800,-0.059680,0.450500 -0.440000,0.353500,-0.498600,-0.700300,-0.003453,0.713900 0.334300,-0.453200,-0.521500,0.659100,0.204000,-0.723900 0.329700,-0.017340,-0.591200,0.980700,-0.167600,0.101100 -0.325400,-0.343300,-0.573000,0.397000,0.003019,-0.917800 0.389900,-0.036580,-0.613000,0.248200,-0.232000,-0.940500 0.317700,-0.191700,-0.581300,-0.517200,-0.057050,-0.854000 0.406000,-0.111600,-0.574000,0.867000,-0.226800,-0.443800 -0.354000,0.017120,0.626800,0.176200,-0.150600,0.972800 -0.391300,-0.424600,-0.571600,-0.702100,0.183500,-0.688100 0.527900,0.462100,0.164400,0.995100,0.099020,0.000034 0.433400,-0.610100,0.602900,-0.784900,-0.339100,-0.518600 0.521400,0.477700,0.386300,0.864700,0.502200,0.000015 -0.327500,0.249700,-0.531400,-0.950000,0.246100,-0.192200 -0.078680,0.366200,-0.543300,0.161400,-0.833500,0.528400 0.352400,0.102700,-0.533900,-0.580900,0.052490,0.812300 0.386100,-0.182400,-0.501000,0.371100,0.001959,0.928600 -0.516000,0.485300,-0.336700,-0.686300,0.727300,0.000027 0.354500,-0.037710,0.514800,-0.391500,0.144300,-0.908800 0.361100,0.311500,0.330800,-0.101000,-0.932400,-0.347100 0.314000,0.302600,0.600500,0.979700,0.036850,-0.197100 0.209900,0.297300,-0.541900,-0.474800,-0.541000,0.694100 -0.327600,-0.031000,0.556500,0.983100,0.149200,-0.106600 -0.393100,0.014880,-0.515800,0.073140,0.117600,0.990400 0.390100,-0.177400,-0.502900,0.576600,0.008693,0.817000 0.377600,-0.141100,0.584500,-0.341800,0.237100,-0.909400 0.351500,-0.264300,0.573700,0.142500,-0.097280,0.985000 -0.391100,-0.249200,-0.500500,-0.821700,-0.060830,0.566700 0.344400,-0.062150,-0.517500,-0.547000,0.168100,0.820100 0.411000,-0.085380,-0.523300,-0.882800,0.121100,-0.453900 0.372200,-0.183300,-0.579300,-0.421300,0.077090,0.903600 -0.419800,0.235900,0.632300,-0.525500,0.132900,0.840400 0.413700,-0.633800,-0.630700,0.264900,0.080100,-0.960900 0.339600,0.035100,-0.622800,-0.683500,-0.074510,-0.726100 0.316700,-0.296400,0.567300,-0.677100,-0.013590,0.735800 -0.313300,-0.358600,0.513900,0.924900,-0.067740,-0.374000 -0.345100,-0.375800,0.501700,-0.133400,0.156500,0.978600 -0.388600,-0.478900,0.586800,0.561200,-0.230900,-0.794800 -0.361600,0.317500,-0.314800,0.068380,-0.936700,0.343300 -0.330200,-0.483900,0.572000,-0.962600,0.218800,-0.159900 0.317000,0.282200,-0.619600,0.852600,0.093030,0.514200 0.445900,0.212600,-0.601500,-0.956600,-0.019770,0.290900 0.454200,0.105300,0.575200,0.989800,-0.128900,0.060490 -0.391600,-0.242000,-0.500500,-0.813000,-0.051370,0.580000 -0.410900,0.452800,-0.614400,0.271500,-0.873700,0.403500 0.328600,0.170500,-0.590100,-0.990600,-0.125300,0.054870 -0.440600,0.074840,-0.606000,-0.818900,-0.176000,-0.546300 -0.361000,0.002302,-0.620300,0.106000,-0.178200,-0.978300 -0.320500,0.260300,-0.609600,0.953400,-0.145200,-0.264600 -0.313800,-0.279100,-0.511000,-0.946400,0.020140,-0.322300 -0.378000,-0.662800,0.565700,-0.723600,0.103000,0.682500 -0.522000,0.478000,-0.681100,-0.839200,0.543900,0.000011 -0.519300,0.481700,-0.665500,-0.768400,0.640000,0.000000 -0.379500,-0.405100,0.573000,0.590100,-0.213000,-0.778700 -0.382700,-0.021570,0.518000,-0.088820,-0.123000,0.988400 0.437600,0.318300,-0.590000,-0.959700,-0.033890,0.279000 0.523400,0.454800,-0.461900,0.261000,-0.965300,0.000000 0.326300,-0.192800,0.505300,0.703000,-0.087480,0.705800 0.375600,-0.595100,0.619000,-0.193900,0.147900,0.969800 -0.446700,0.234700,-0.601600,0.901200,-0.122400,0.415700 -0.429100,0.405000,0.502800,0.464200,0.000000,0.885700 -0.434600,0.377000,0.597000,0.904300,0.008052,-0.426900 -0.360600,-0.572500,0.612000,-0.493800,-0.063390,-0.867300 0.390600,0.272500,0.417000,0.156000,-0.937700,-0.310400 -0.327700,-0.070720,-0.541400,0.988400,0.100000,0.113800 -0.314100,0.283200,0.611900,-0.924000,0.186700,-0.333800 0.322200,-0.390200,0.571000,-0.762500,-0.022550,0.646600 0.344800,-0.525600,-0.534000,-0.711600,-0.245700,0.658200 -0.393000,-0.382700,-0.505900,-0.875200,0.048550,0.481300 0.439600,0.004398,0.540700,0.972300,-0.222600,-0.071190 0.437100,-0.662900,-0.579000,0.912800,-0.407100,0.033970 -0.336700,0.210100,-0.534900,-0.912900,0.152300,-0.378800 -0.416100,-0.014350,0.521600,0.379900,-0.010680,0.925000 -0.321100,-0.426700,0.540600,-0.981400,0.169200,0.090420 -0.344000,-0.408400,-0.579400,-0.101200,-0.155700,0.982600 0.324700,-0.280700,0.569300,0.446800,0.006916,-0.894600 0.330100,-0.434200,-0.519300,0.726000,0.137900,-0.673700 0.406100,-0.539600,0.524800,0.233400,-0.193500,-0.952900 0.437300,0.286200,-0.605400,0.843700,0.136900,-0.519100 -0.438800,0.154100,0.615800,0.800500,-0.013200,-0.599200 0.413000,-0.000227,-0.609200,-0.621200,0.286800,0.729300 -0.349000,-0.539100,-0.598700,0.784000,-0.029000,-0.620000 0.340500,-0.070350,-0.518600,-0.590700,0.157500,0.791400 0.399400,-0.657400,0.620900,-0.027430,0.272400,-0.961800 0.418100,-0.062120,-0.531900,-0.954300,0.146500,-0.260500 0.418300,-0.584400,-0.605800,-0.655400,-0.374700,0.655800 0.392500,-0.239100,-0.524500,0.994100,-0.106700,-0.017550 -0.375800,-0.638500,-0.556000,0.671800,-0.221800,0.706700 -0.391900,-0.224900,0.547500,-0.970900,-0.124500,0.204500 -0.426600,0.006816,0.528600,0.712800,0.059030,0.698800 0.389800,-0.429100,0.505400,0.335500,-0.083630,-0.938300 -0.408800,-0.484600,-0.521500,-0.858300,0.078730,0.507000 0.348600,-0.501200,0.595400,-0.375000,0.117200,0.919600 0.454000,0.126300,0.542100,-0.977000,0.043640,0.208500 -0.312700,0.269800,0.606400,0.972700,-0.174700,0.152800 -0.398500,-0.151500,0.558900,0.913600,0.235400,-0.331700 -0.422400,0.327400,-0.616400,-0.549900,0.019480,-0.835000 0.430300,-0.011740,-0.547700,-0.980300,0.197300,0.012240 0.398000,-0.178600,0.549200,-0.928100,0.172600,-0.329800 0.227100,0.475500,-0.708100,0.000000,0.438400,-0.898800 -0.313500,0.306500,0.530200,0.887200,0.010910,-0.461200 0.341100,0.118900,-0.627500,0.804000,0.048530,0.592600 -0.331400,-0.457800,0.525100,-0.788400,0.083670,0.609400 0.343400,0.097340,-0.627300,0.755300,0.081320,0.650300 0.336800,0.106500,-0.616100,0.981500,0.030770,0.188800 -0.317600,0.330000,-0.612400,-0.903000,-0.013320,0.429500 0.430400,-0.019800,-0.537300,0.952700,-0.233600,0.194600 0.341500,-0.408500,0.578900,0.142600,-0.186200,-0.972100 0.430600,-0.588900,-0.581800,-0.949300,-0.288400,0.125000 0.360100,-0.387200,-0.500400,0.002848,-0.165100,0.986300 0.399700,-0.013970,-0.518500,-0.051270,-0.098240,-0.993800 -0.315600,-0.348700,0.567800,-0.771800,0.024990,-0.635300 0.411700,0.052650,-0.626500,0.400300,-0.196800,-0.895000 -0.356200,0.378800,0.047600,0.971600,-0.236400,0.002053 -0.433600,-0.594100,-0.544300,-0.814900,0.070420,0.575300 -0.099140,0.359000,-0.544200,0.416800,-0.890400,0.182800 0.388600,-0.203100,-0.557600,-0.890400,0.139300,0.433300 -0.336700,0.160100,-0.579100,-0.988600,0.124000,-0.085830 -0.319500,-0.428500,0.534000,0.978400,-0.166700,-0.122100 -0.329800,-0.461600,-0.564800,-0.978000,0.152700,0.142300 0.424400,0.055250,-0.614700,-0.685000,0.177800,0.706500 -0.353100,-0.567000,-0.546500,0.863200,-0.301400,0.404900 -0.367800,-0.373800,0.573300,0.390100,-0.119000,-0.913100 0.424100,-0.041510,0.516900,0.780000,-0.147000,-0.608300 0.440800,0.377000,0.587900,-0.949900,0.000000,-0.312400 0.424600,0.097340,0.626300,0.477700,-0.144400,0.866600 -0.380600,-0.602100,-0.540400,0.236500,-0.288200,0.927900 -0.313500,-0.159300,0.560600,-0.991700,-0.121400,-0.042300 -0.399500,-0.492100,-0.586300,-0.602400,0.297300,-0.740700 -0.387100,-0.216900,0.506600,0.735300,0.060240,0.675000 0.446300,-0.621300,0.569200,0.961600,0.272200,-0.034700 -0.414200,-0.629100,-0.627200,-0.178300,0.212500,-0.960700 -0.328900,0.186600,0.608500,-0.989900,0.114700,-0.083100 0.395200,-0.436800,0.512800,-0.719300,0.049440,0.692900 -0.326100,-0.110500,0.595800,0.515100,-0.107900,0.850300 0.328800,0.193300,-0.554200,-0.977600,-0.142200,0.155000 -0.408800,0.416800,0.626400,-0.473800,-0.003701,0.880600 -0.414700,0.431800,0.619800,0.542000,0.000507,-0.840400 0.350000,-0.584600,-0.572000,-0.960800,-0.262300,0.089780 -0.335700,0.045470,0.609000,-0.975800,0.012970,-0.218100 0.327100,0.283200,0.626400,-0.469800,-0.021320,0.882500 -0.327500,-0.320900,-0.499100,-0.424200,0.060070,-0.903600 0.330000,0.330000,-0.504500,-0.283900,0.007014,0.958800 -0.350800,0.126100,-0.629900,-0.615700,0.081000,0.783800 -0.313900,-0.310300,-0.520500,-0.981400,0.075840,-0.176100 -0.354100,-0.516500,0.605000,0.179100,0.176300,0.967900 -0.431500,0.384800,-0.497900,0.410600,0.000039,-0.911800 -0.403700,0.106500,0.634900,0.201500,0.151100,-0.967800 0.402500,0.279100,-0.501000,0.090380,0.140900,-0.985900 0.436200,0.236500,-0.615200,-0.781900,-0.132400,0.609200 0.344500,-0.007800,0.533000,0.790600,-0.123500,0.599700 -0.422000,-0.012050,0.525500,0.637300,0.041080,0.769500 -0.419700,0.267800,0.624600,0.551700,-0.136300,-0.822800 -0.391300,-0.419000,0.517000,0.833500,-0.005686,0.552500 -0.380700,-0.249500,-0.495600,0.474200,0.011380,-0.880300 -0.424300,0.296300,-0.618700,-0.541400,0.128600,-0.830900 -0.400500,-0.168400,0.520100,-0.972000,-0.165500,-0.166500 0.399800,-0.416600,0.537100,-0.985700,-0.153400,-0.070360 -0.100500,0.359500,-0.580700,0.204000,-0.658700,-0.724300 0.341300,-0.474600,-0.594700,-0.332000,0.130600,-0.934200 -0.434200,-0.601700,-0.544600,-0.685500,0.007413,0.728000 -0.386100,-0.154300,0.581100,-0.596000,-0.262900,0.758700 0.453900,0.194300,0.577000,-0.994200,-0.004965,-0.107500 0.398500,0.173400,0.636700,0.130100,-0.009079,0.991500 0.430500,0.047180,0.610800,0.698700,-0.188000,0.690300 0.433300,0.250400,-0.509300,0.303300,-0.165500,0.938400 0.357100,0.025230,0.528100,0.600400,-0.131000,0.788900 0.324200,-0.170700,-0.511400,0.697500,-0.152000,-0.700300 0.337400,-0.210400,0.494800,-0.239400,0.070560,-0.968300 0.342300,-0.138600,0.501500,-0.337800,0.224200,-0.914200 -0.329000,0.240900,-0.535600,-0.942200,0.268800,-0.200200 -0.393400,-0.223400,-0.552300,-0.913700,-0.127400,-0.385800 0.405500,-0.627700,0.628100,0.087230,0.205000,0.974900 -0.311700,-0.335200,-0.533000,0.994300,-0.065590,0.083790 -0.396400,-0.156300,-0.569900,-0.760000,-0.253800,-0.598300 0.340400,0.327400,0.502100,0.312500,-0.000058,0.949900 -0.327200,-0.032940,0.599100,0.952500,0.035670,0.302600 -0.444000,0.306500,0.517800,-0.952500,0.011120,-0.304200 -0.398800,-0.662900,0.558400,-0.114600,0.070320,0.990900 0.414800,-0.512500,-0.565400,0.956600,0.254200,-0.142500 0.428300,0.042190,0.607800,-0.697900,0.177100,-0.693900 -0.382900,0.400500,-0.628300,-0.121800,-0.000042,-0.992600 -0.390000,-0.249700,-0.504100,0.849700,0.042020,-0.525600 -0.352700,-0.528500,0.532500,-0.525600,0.390200,0.756000 0.391900,-0.177800,0.562800,-0.789500,0.178300,-0.587300 -0.339800,0.048130,-0.603900,-0.982600,0.000178,0.185900 -0.363900,-0.634100,0.594900,-0.975600,0.216900,0.033560 -0.446100,0.242000,-0.600600,0.896000,-0.132200,0.423800 -0.406800,-0.157600,-0.534800,-0.976700,-0.208600,-0.050380 0.371600,-0.662700,-0.578700,0.952900,0.091210,-0.289100 -0.394800,-0.226200,-0.516400,0.981300,0.108800,-0.158900 0.352300,-0.038540,-0.613000,0.077950,0.182300,0.980100 -0.375600,-0.548300,0.612600,-0.051550,0.232000,0.971300 -0.411200,0.027980,-0.619800,-0.351400,-0.173500,-0.920000 -0.445000,0.337800,-0.512000,0.921200,0.000000,-0.389200 0.395500,-0.139800,0.503500,-0.474300,-0.037040,0.879600 -0.437200,0.086400,0.608200,0.839900,0.165300,-0.516900 -0.339000,-0.425100,0.508400,0.199300,-0.189400,-0.961500 -0.327900,0.175900,0.595200,0.994100,-0.102600,-0.034470 -0.367100,-0.107200,-0.597200,-0.080470,-0.208300,-0.974800 0.430800,0.165300,-0.522200,-0.277100,0.092640,-0.956400 -0.447700,0.112600,-0.602400,0.912500,0.116500,0.392200 0.311200,-0.249500,0.560100,-0.952400,0.016580,0.304500 0.315300,-0.146900,-0.555600,0.990200,-0.137400,-0.025800 0.337500,-0.178600,0.583800,-0.113400,-0.139900,0.983700 0.412000,-0.659300,0.618900,-0.238200,0.300900,-0.923400 0.441000,0.407600,-0.517300,-0.955000,0.000035,-0.296500 -0.437900,-0.651100,0.603400,-0.876000,-0.331200,0.350700 0.415300,-0.495800,0.552600,0.967300,0.244400,0.068320 -0.426400,-0.553900,-0.564000,0.970900,-0.228600,0.071480 -0.346100,-0.554500,-0.571600,0.976900,-0.208800,0.046160 -0.383800,-0.302100,-0.554300,0.802100,-0.029190,0.596500 -0.446000,0.287700,0.540000,0.994200,-0.091590,-0.056930 0.336700,-0.390300,-0.580300,0.094420,-0.109700,0.989500 0.336400,-0.351400,0.498000,0.248700,0.042520,0.967600 0.416500,-0.080140,-0.566700,0.951400,-0.241100,-0.191600 0.428600,0.263300,0.617900,-0.608300,-0.132600,-0.782600 -0.336800,0.077860,0.615200,-0.948900,0.013050,-0.315400 -0.324400,0.228800,-0.594900,0.982700,-0.184100,-0.018310 0.394600,-0.194900,-0.524100,-0.992700,0.092990,-0.076890 -0.336400,0.142600,-0.579000,0.987300,-0.127000,0.095140 -0.337500,0.196000,0.535900,-0.823800,0.175500,0.539000 0.391700,0.102700,-0.636000,-0.105400,0.139700,0.984600 -0.445600,0.369100,0.524900,-0.989000,0.000000,-0.147800 -0.352300,-0.210400,0.580900,0.108900,0.112100,-0.987700 0.362000,-0.602900,-0.558300,0.767500,0.327000,-0.551400 -0.352700,-0.053310,-0.608300,0.113900,-0.186600,-0.975800 -0.332200,-0.106500,-0.520800,-0.797400,-0.177700,-0.576600 -0.367200,-0.343200,0.496900,-0.139700,-0.049700,-0.988900 -0.391400,0.290900,-0.627200,0.101800,-0.094040,0.990400 -0.375700,-0.092540,-0.506700,-0.064950,-0.123800,-0.990200 -0.401000,-0.483200,-0.581200,-0.691700,0.286600,-0.662800 0.352400,-0.460200,-0.590900,0.057260,-0.126400,0.990300 -0.316500,0.252500,0.571800,0.971700,-0.223700,-0.076260 -0.343200,0.103000,-0.555900,-0.982300,-0.028960,-0.185200 0.387800,-0.320000,-0.547200,0.961700,0.046200,-0.270000 -0.335300,0.211800,0.533400,-0.854800,0.188600,0.483500 -0.428100,0.366500,-0.609100,0.746700,-0.000035,0.665100 -0.391600,0.063730,-0.518300,0.086360,0.029410,0.995800 -0.336200,0.063780,-0.595000,0.999000,0.027800,-0.036090 -0.446900,0.322200,-0.518000,0.976800,-0.004738,-0.214200 -0.351600,-0.320100,-0.574300,-0.102100,0.034850,-0.994200 -0.418500,-0.099730,-0.540000,-0.979200,-0.199900,-0.035760 -0.391100,0.056070,-0.520700,-0.085550,-0.029470,-0.995900 -0.375500,0.008185,0.625200,-0.061820,-0.210100,0.975700 0.336600,-0.383700,-0.579600,0.079250,-0.106200,0.991200 -0.310700,-0.343500,0.540100,-0.997000,0.056920,0.052950 0.361200,0.213100,0.512400,-0.233400,-0.153300,-0.960200 0.312100,-0.241500,0.547900,0.998600,-0.048030,-0.022620 -0.352700,0.030220,-0.532700,-0.694400,-0.086210,-0.714400 -0.328200,0.228300,-0.608200,-0.970000,0.157800,0.184700 0.310900,-0.264900,0.540200,0.999300,-0.036690,0.011970 0.383100,0.234700,-0.511600,0.087260,0.222400,-0.971000 -0.364200,-0.596500,0.547700,0.525700,-0.405500,-0.747800 -0.367900,0.080210,0.636600,0.004692,-0.145100,0.989400 -0.342400,-0.537800,-0.571700,0.976900,-0.213100,0.017630 -0.336600,-0.264900,0.578100,-0.014890,-0.068560,0.997500 -0.337100,0.015470,-0.594100,-0.991700,-0.078830,0.101100 -0.450700,0.103400,0.548800,-0.982300,-0.125000,-0.139600 0.347500,-0.489100,-0.523000,0.407700,0.332100,-0.850600 -0.314300,-0.374500,-0.540300,0.988600,-0.141900,0.050420 0.383600,0.149900,-0.642000,0.069460,0.001423,-0.997600 -0.399000,-0.665600,0.558200,-0.113300,-0.405100,0.907200 0.368200,0.252000,-0.637500,-0.050680,-0.107300,0.992900 0.383300,0.330000,-0.631900,0.126700,0.000412,-0.991900 -0.447900,0.400400,-0.524500,0.998800,-0.012660,-0.047650 0.456600,0.212500,0.571100,0.995600,0.012980,0.093170 0.447200,0.400400,0.517800,-0.977100,-0.005998,0.212500 0.434200,-0.593500,0.587500,-0.919200,-0.307300,-0.246200 -0.336800,-0.296400,-0.572300,-0.001112,-0.053470,0.998600 ================================================ FILE: visualization/triangled_airplane.obj ================================================ # OBJ file v -0.4375 0.0937 0.0383 v 0.9678 -0.1802 0.1294 v 0.2323 -0.2877 -0.9109 v 0.1780 -0.3677 0.4331 v 0.0602 -0.2433 -0.2523 v 0.4159 0.1325 0.1203 v -0.9702 -0.1704 0.1407 v 0.1451 0.1511 0.5893 v -0.2527 -0.2444 -0.7033 v -0.1957 -0.1719 0.6539 v -0.0879 -0.1545 0.1541 v -0.7727 0.1695 0.3012 v 0.8026 0.1664 0.2958 v 0.5852 -0.1993 0.1006 v -0.5685 -0.1388 0.3007 v -0.1859 0.1661 0.3038 v -0.2026 -0.4027 0.3804 v 0.1039 -0.2264 -0.5956 v -0.7854 0.0746 -0.0295 v 0.2462 -0.2032 0.1062 v 0.7901 0.0748 -0.0302 v 0.0875 0.1165 0.0863 v -0.0014 -0.0661 -0.8551 v 0.1004 -0.0672 0.3762 v -0.3747 -0.2039 0.1024 v -0.0723 -0.0332 -0.0988 v 0.7546 -0.1334 0.3067 v -0.4867 0.1724 0.2942 v 0.4155 -0.1409 0.3093 v -0.1167 -0.2948 -0.9417 v -0.0763 0.0297 0.5388 v 0.2388 0.1695 0.3019 v -0.7056 -0.1929 0.1017 v -0.2733 -0.1437 0.3160 v -0.0311 -0.1128 -0.4321 v -0.1750 0.1097 0.0716 v -0.8148 -0.1224 0.3139 v 0.0550 -0.2279 -0.0225 v 0.0016 -0.3970 -0.7112 v -0.9404 0.1292 0.1314 v 0.5505 0.1695 0.3019 v 0.0000 -0.3458 0.2986 v 0.6620 0.0039 0.1352 v 0.9507 0.1091 0.1140 v -0.6344 0.1093 0.1297 v -0.0021 -0.0491 -0.6304 v 0.0219 0.1727 0.2835 v -0.1047 -0.0225 0.3192 v 0.2680 0.0731 -0.0056 v 0.1016 -0.0846 0.1741 v 0.5469 0.0749 -0.0161 v -0.1094 -0.2146 -0.5742 v 0.7767 -0.1868 0.1246 v 0.2515 -0.2540 -0.7267 v 0.0393 -0.0573 -0.2611 v 0.0497 -0.2824 -0.8611 v -0.3226 0.1230 0.1824 v 0.2351 -0.1516 0.2825 v 0.0929 -0.0497 -0.0129 v -0.1227 -0.1783 0.4022 v -0.0479 0.0178 0.1518 v -0.0753 -0.2158 -0.1394 v 0.0551 0.1010 0.4477 v -0.0930 -0.2614 -0.7618 v 0.0160 -0.2767 -0.4386 v -0.9674 0.0738 -0.0275 v 0.5852 -0.1245 0.2947 v -0.6646 -0.0444 0.1936 v 0.4212 -0.1844 0.1306 v -0.5415 -0.1801 0.1319 v 0.0426 -0.0858 0.5338 v -0.2623 -0.2819 -0.8718 v 0.1304 0.0646 0.2339 v 0.7440 0.1417 0.1432 v 0.0260 -0.1890 0.2782 v -0.1485 -0.2560 0.2655 v -0.5841 0.0739 -0.0180 v 0.2570 0.1162 0.1567 v 0.5797 0.1447 0.1512 v 0.1373 -0.2241 0.3803 v -0.7875 0.1162 0.1567 v 0.0928 -0.1386 -0.1429 v 0.9025 -0.1378 0.2681 v -0.0711 -0.2173 -0.3258 v -0.2407 -0.1727 0.1679 v -0.4158 -0.1430 0.2356 v 0.0405 0.0282 0.6354 v -0.2954 0.0772 -0.0135 v -0.0988 -0.1414 0.0022 v 0.4047 0.1480 0.2772 v 0.1868 -0.3462 0.2881 v 0.9729 0.0765 -0.0268 v -0.6289 0.1621 0.3043 v -0.0943 -0.0724 0.6362 v -0.1039 0.1570 0.1880 v 0.0339 -0.2184 0.1198 v 0.0022 -0.1773 -0.6900 v -0.0766 -0.3144 0.4113 v -0.8255 -0.1676 0.1683 v 0.0022 -0.3195 -0.5806 v -0.5031 0.1460 0.1550 v -0.0825 -0.1166 -0.2328 v 0.0719 -0.1717 -0.3675 v 0.4047 0.0801 -0.0026 v 0.0116 0.0493 0.3322 v 0.1208 -0.2588 -0.7495 v 0.6721 -0.1470 0.1970 v 0.0057 -0.1508 0.4154 v 0.6781 0.1436 0.2605 v -0.3445 0.1661 0.3038 v -0.1997 -0.2852 0.4317 v -0.0816 -0.0096 0.0313 v 0.0057 -0.1511 -0.5482 v 0.6781 0.0891 0.0269 v 0.0491 -0.0198 -0.1301 v -0.0812 -0.0746 0.4694 v -0.7108 -0.1469 0.2498 v -0.0929 -0.1411 0.2839 v 0.8917 0.1628 0.2086 v 0.0656 -0.3185 0.4112 v -0.0782 0.0528 0.4148 v 0.3391 -0.1509 0.2115 v -0.0032 -0.1773 -0.8103 v -0.0328 0.1204 0.0934 v -0.8870 0.1386 0.2371 v 0.1206 -0.2220 0.2170 v 0.4923 -0.1441 0.2206 v 0.8367 0.1097 0.0716 v -0.8586 0.0857 0.0603 v 0.0974 -0.1356 0.0703 v -0.1328 0.0619 0.2453 v 0.2168 -0.2258 -0.6139 v 0.1226 0.0782 0.3470 v 0.0319 -0.2544 -0.1429 v 0.0848 0.0018 0.0868 v -0.9074 -0.1394 0.2533 v 0.0841 0.0238 0.5233 v 0.0029 -0.0679 -0.7392 v -0.2133 0.1597 0.1965 v -0.0053 -0.2979 -0.9543 v -0.0055 -0.0950 -0.0390 v 0.0223 0.0693 0.2232 v 0.1594 0.0732 -0.0022 v -0.6945 0.1321 0.2169 v 0.0766 0.1584 0.1915 v 0.1204 -0.1375 0.2845 v -0.1476 -0.2357 -0.6728 v -0.7109 0.0816 0.0477 v 0.1989 0.2364 0.5524 v 0.0117 -0.2748 -0.7423 v -0.1056 -0.0572 0.2015 v 0.0987 -0.0297 0.2725 v -0.0470 -0.0869 -0.3284 v -0.1367 -0.3449 0.3212 v -0.1581 -0.2708 -0.8438 v 0.4926 0.1333 0.2215 v -0.0316 -0.2323 0.0393 v -0.1677 -0.2119 0.1045 v -0.0590 -0.1987 -0.4828 v 0.8751 -0.1535 0.1702 v -0.6180 -0.1450 0.2060 v -0.2734 0.0991 0.0964 v 0.1531 -0.2798 -0.8489 v 0.5141 0.1096 0.0716 v -0.0332 0.1140 0.4923 v -0.0291 -0.0306 -0.1944 v -0.0492 -0.2833 -0.8657 v -0.0489 -0.2528 -0.2272 v 0.2025 -0.1619 0.1899 v 0.1861 0.1153 0.0825 v 0.1422 0.1494 0.2823 v 0.1476 -0.2039 0.1203 v 0.0831 -0.1444 -0.2526 v 0.3450 0.1609 0.2009 v 0.0547 -0.1538 -0.4638 v -0.4047 0.1371 0.1315 v -0.5469 0.1118 0.0750 v -0.1859 -0.1608 0.2629 v -0.0959 -0.1281 -0.0941 v -0.1311 0.0855 0.3400 v 0.0982 -0.2970 -0.9441 v 0.6598 0.0527 0.2192 v -0.0340 -0.2507 -0.6385 v -0.0711 0.1621 0.3043 v -0.3171 -0.1645 0.2337 v -0.5906 0.1307 0.2118 v -0.0200 -0.0328 0.5834 v -0.1025 -0.0843 0.0920 v -0.5140 -0.1616 0.2207 v 0.1805 0.1594 0.1966 v -0.6619 0.0198 0.1199 v 0.0433 -0.2544 -0.5258 v 0.3172 0.0961 0.0878 v -0.0688 -0.2189 -0.0449 v -0.2131 -0.2257 -0.6076 v -0.1637 0.0754 -0.0141 v -0.3937 0.1660 0.2236 v 0.0984 -0.3329 0.3128 v -0.0160 0.0835 0.5838 v 0.8805 0.0787 -0.0118 v 0.0018 -0.1659 -0.9017 v -0.0000 -0.2756 -0.3181 v -0.6639 0.0451 0.2185 v -0.0935 -0.0920 0.3777 v 0.5798 -0.1507 0.1950 v -0.4757 -0.1410 0.3045 v -0.4509 -0.1834 0.1587 v 0.0932 -0.0523 0.4666 v -0.1560 0.0719 0.1514 v -0.1909 -0.2586 0.3452 v 0.3363 -0.2051 0.1049 v -0.0279 -0.2055 0.2079 v -0.0486 0.0262 0.2692 v 0.6627 -0.0569 0.2008 v 0.6728 -0.1883 0.1130 v -0.2352 -0.2596 -0.7899 v 0.0602 -0.2425 -0.6722 v 0.0438 -0.0904 -0.3456 v 0.2352 -0.2729 -0.8164 v 0.8098 0.1296 0.2074 v 0.3282 -0.1291 0.3054 v 0.0983 -0.1460 -0.0173 v 0.7601 -0.1597 0.2066 v 0.0945 0.0229 0.4090 v 0.6016 0.1094 0.0717 v 0.0367 0.0655 0.1357 v 0.1451 -0.2618 0.2932 v -0.3827 -0.1393 0.3160 v 0.6617 0.1162 0.1567 v -0.0982 0.0803 0.0429 v -0.2880 -0.2084 0.1026 v 0.0672 0.1068 0.5770 v 0.0646 -0.1448 0.3522 v 0.1551 0.0722 0.1504 v -0.2680 0.1715 0.2616 v -0.0346 -0.1720 0.3387 v 0.0883 0.0027 0.1719 v 0.5091 -0.1753 0.1434 v -0.0097 0.0144 -0.0672 v 0.1750 -0.2375 -0.6861 v 0.1956 -0.3034 0.3600 v -0.9516 0.0857 0.0603 v 0.3227 0.1711 0.2986 v 0.5035 -0.1392 0.3074 v -0.6234 -0.1919 0.1187 v -0.6508 -0.1311 0.3136 v 0.1810 -0.4081 0.3600 v -0.8915 -0.1782 0.1138 v 0.0645 -0.1633 0.1988 v -0.1980 -0.2926 -0.9242 v -0.3445 0.0988 0.0496 v -0.8677 0.0732 -0.0209 v -0.7438 -0.1556 0.1676 v -0.0219 0.1582 0.1919 v -0.0603 -0.2338 -0.4086 v -0.7105 0.1388 0.1357 v 0.1071 -0.2029 -0.5174 v 0.7602 0.0969 0.0460 v -0.0377 -0.2587 -0.5338 v -0.0253 0.0453 0.0643 v 0.2570 0.1662 0.2235 v 0.5856 0.1670 0.2279 v 0.0760 -0.0725 -0.1848 v -0.0166 -0.1179 0.4876 v 0.0524 -0.2521 -0.3727 v -0.0934 -0.0630 -0.0259 v 0.0915 -0.0738 -0.0883 v -0.0055 -0.3070 0.3671 v -0.1089 0.1291 0.1123 v 0.0787 -0.2081 -0.0995 v 0.0056 0.1099 0.3823 v 0.8259 -0.1272 0.2532 v -0.1695 -0.2579 -0.7450 v -0.5064 0.0738 0.0071 v -0.7820 0.1133 0.0788 v 0.8915 -0.1891 0.1027 v -0.1167 -0.2103 0.2004 v 0.0030 -0.1281 -0.6299 v -0.0858 -0.1765 0.0700 v -0.1002 -0.0242 0.4149 v 0.0219 -0.2196 -0.5962 v -0.8204 -0.1297 0.2346 v -0.6344 0.0816 0.0477 v 0.8531 0.1137 0.1465 v 0.0805 0.0469 0.2889 v 0.0142 0.0388 0.4309 v -0.0717 -0.1548 -0.3695 v 0.0700 -0.2031 0.0486 v 0.0789 -0.2088 -0.1814 v 0.0000 -0.0179 0.1055 v -0.8094 0.1389 0.2427 v 0.0219 0.0646 0.5073 v 0.9356 0.0793 0.0395 v -0.0436 -0.2114 0.1326 v -0.3851 0.0781 -0.0121 v -0.0851 -0.0851 -0.1537 v 0.4211 -0.1647 0.2174 v -0.4648 0.1321 0.2169 v -0.1964 -0.3077 0.2900 v 0.0650 0.0133 0.0141 v 0.6892 -0.1260 0.2731 v 0.2898 -0.1734 0.1578 v -0.0580 0.0770 0.3437 v 0.0683 -0.0231 0.5779 v 0.4758 0.0748 0.0153 v -0.6599 0.0736 -0.0206 v -0.5523 0.1715 0.2616 v -0.7928 -0.1905 0.1071 v 0.0310 -0.0813 0.0227 v -0.2352 0.0921 0.0345 v -0.8695 0.1504 0.1674 v 0.1313 0.1401 0.1397 v -0.7382 -0.1267 0.3140 v -0.1359 -0.1339 0.6382 v 0.6600 0.0709 0.1002 v -0.0833 -0.1921 -0.2074 v 0.1025 -0.1344 0.4128 v -0.0244 -0.2539 -0.0898 v 0.0274 0.1368 0.1316 v 0.1777 -0.2960 0.4372 v 0.4685 0.1695 0.3019 v -0.6645 -0.1042 0.1547 v -0.3774 -0.1695 0.1648 v -0.4156 0.1714 0.2986 v 0.0030 -0.2528 -0.8162 v 0.4922 0.1446 0.1512 v 0.7552 0.1677 0.2317 v -0.2024 -0.3747 0.3154 v -0.0699 -0.0530 0.5358 v 0.7328 0.1621 0.3043 v 0.1258 -0.3055 0.3715 v 0.9417 -0.1567 0.1925 v -0.0029 -0.0851 -0.5702 v 0.1017 -0.0675 0.0864 v -0.1636 -0.3310 0.3842 v -0.0593 0.0597 0.2065 v 0.0628 -0.2201 -0.4435 v 0.1649 -0.2172 -0.5533 v -0.0711 -0.3452 0.2986 v -0.0004 -0.3743 -0.6457 v 0.0568 -0.0066 -0.0625 v -0.1367 0.1436 0.2605 v -0.0935 -0.0166 0.1033 v -0.0645 0.0244 0.6064 v 0.0868 -0.1664 0.1308 v -0.0656 -0.2483 -0.6995 v 0.2734 -0.1662 0.2246 v -0.6780 -0.1746 0.1622 v -0.9187 -0.1592 0.1845 v 0.1641 -0.2866 -0.9171 v -0.0934 0.0051 0.4772 v 0.4320 0.1640 0.2131 v -0.0408 -0.1944 -0.5857 v 0.0656 -0.2604 -0.7898 v -0.1696 -0.1634 0.1968 v -0.4849 -0.2022 0.1015 v -0.0579 -0.1293 0.4251 v 0.2515 0.0903 0.0723 v -0.1026 -0.0739 0.2671 v -0.3116 -0.1851 0.1675 v -0.3331 0.1307 0.1160 v 0.0723 -0.2100 -0.3123 v 0.3445 0.1137 0.1465 v -0.0032 -0.1390 -0.7447 v 0.1914 -0.2625 -0.7671 v 0.8561 -0.1196 0.3124 v -0.2078 0.1117 0.1387 v 0.0363 -0.1077 -0.4094 v -0.5687 0.1117 0.1386 v -0.0322 0.0908 0.2585 v 0.3391 0.0824 0.0053 v -0.4812 0.0961 0.0878 v -0.0678 -0.0026 -0.0332 v -0.0130 -0.0091 0.6454 v 0.0310 0.0400 0.5680 v -0.2625 0.1457 0.1551 v -0.8363 0.1291 0.1123 v -0.0261 -0.0522 -0.2564 v 0.6125 0.1515 0.2901 v -0.6945 0.1621 0.3043 v -0.7488 0.1670 0.2279 v 0.0164 0.0199 0.2684 v 0.8612 0.1546 0.2695 v 0.7251 0.0737 -0.0249 v 0.0105 -0.2657 -0.2037 v 0.1024 -0.0081 0.3491 v 0.0644 0.2073 0.2486 v 0.0109 -0.2056 -0.4981 v -0.1476 -0.1439 0.3183 v 0.3937 0.1024 0.0570 v -0.0032 -0.2101 -0.7447 v -0.0437 -0.0824 0.0107 v 0.0820 0.1661 0.3039 v 0.0553 -0.1102 0.4762 v -0.0905 -0.1503 -0.1597 v -0.0134 -0.2488 -0.0272 v 0.0000 -0.0403 -0.7963 v -0.0201 -0.1325 -0.4913 v 0.6399 0.0748 -0.0215 v 0.1476 -0.1661 0.2355 v 0.6344 0.1307 0.2118 v 0.0328 0.1365 0.2336 v 0.6290 -0.1660 0.1559 v -0.1515 -0.2316 0.3869 v -0.0226 -0.0086 -0.1276 v 0.0950 -0.0904 0.3163 v -0.0984 -0.2751 -0.8268 v 0.0651 0.0696 0.3689 v -0.1992 -0.3462 0.4429 v -0.0656 -0.3119 0.3504 v -0.3332 0.1682 0.2357 v 0.3938 0.1230 0.1824 v -0.0508 -0.1832 0.2680 v 0.0996 -0.0998 0.2338 v -0.0366 -0.2560 -0.1652 v -0.0032 -0.0953 -0.6845 v -0.0671 0.0642 0.4805 v 0.0547 -0.3125 0.3506 v 0.9238 0.1462 0.1591 v -0.0762 -0.1326 -0.2916 v -0.0328 0.1703 0.2509 v 0.3665 -0.1703 0.1604 v -0.0547 0.1172 0.1606 v -0.0912 0.0270 0.3550 v 0.1425 -0.1712 0.1716 v 0.0762 -0.1380 -0.3129 v 0.0264 -0.2110 0.1799 v 0.5961 0.0755 0.0207 v 0.6592 -0.0949 0.1535 v 0.7218 -0.1748 0.1623 v -0.0219 0.0406 0.3817 v -0.8914 0.1029 0.1081 v 0.0976 -0.1443 -0.0775 v -0.2133 -0.1396 0.3179 v 0.6945 0.1189 0.0896 v 0.2422 -0.2355 -0.6703 v 0.0352 -0.2492 -0.0833 v -0.2462 -0.1517 0.2237 v -0.1586 0.1230 0.1824 v 0.5468 -0.1539 0.2448 v 0.1893 0.1314 0.2501 v 0.1312 0.0989 0.0496 v -0.0140 0.0524 0.6385 v -0.0158 -0.0881 0.5455 v -0.1032 -0.0898 0.0319 v -0.3992 0.0947 0.0840 v -0.5687 -0.1708 0.1849 v 0.1203 -0.2406 -0.6632 v -0.1888 0.1234 0.2366 v -0.0032 -0.2101 -0.8595 v -0.1644 -0.2171 -0.5527 v -0.1030 0.0202 0.2099 v -0.0225 -0.2711 -0.3829 v -0.0182 -0.0890 -0.3799 v -0.0663 -0.1772 -0.4235 v 0.7656 0.1017 0.1042 v -0.0109 -0.2774 -0.6885 v 0.5359 0.1572 0.1879 v 0.6344 -0.1350 0.2400 v -0.8479 0.1662 0.2771 v 0.0329 0.0456 0.0603 v -0.0356 -0.2672 -0.4640 v -0.1204 -0.1552 0.2269 v 0.7278 0.1275 0.1997 v 0.0574 0.1107 0.5053 v 0.0321 -0.0359 -0.2075 v 0.0311 0.0853 0.2909 v 0.8095 -0.1678 0.1773 v 0.3117 0.1410 0.2504 v -0.0396 0.0989 0.4368 v 0.0932 0.0161 0.4663 v 0.1586 -0.2222 -0.6133 v -0.1203 -0.2871 -0.8838 v -0.3278 -0.1498 0.2881 v 0.1262 0.1353 0.2292 v -0.3828 0.1240 0.1863 v 0.0890 0.0091 0.2287 v 0.1034 -0.0898 0.0264 v 0.4485 0.0871 0.0640 v -0.8694 -0.1294 0.2988 v 0.0606 -0.2472 -0.7322 v -0.9242 0.0838 0.0103 v 0.0153 -0.2756 -0.6244 v 0.9922 0.0848 0.0357 v -0.6656 -0.0403 0.1369 v -0.8203 0.0862 0.0183 v 0.3664 -0.1538 0.2612 v -0.0987 -0.0004 0.2669 v -0.0328 -0.2555 -0.7717 v 0.2025 -0.1857 0.1377 v -0.7711 -0.1241 0.2619 v -0.6564 -0.1316 0.2461 v -0.6891 0.1170 0.0860 v -0.0820 -0.2248 -0.6235 v 0.0640 -0.1404 0.2839 v -0.0988 -0.0922 0.3204 v 0.0425 -0.0568 -0.0410 v 0.6398 -0.1378 0.2996 v -0.8637 -0.1389 0.1999 v 0.0540 -0.2060 -0.5522 v -0.1055 -0.0840 0.1522 v -0.0753 -0.2031 0.0199 v 0.0871 -0.1255 -0.1992 v -0.2078 -0.2330 -0.6628 v 0.2188 0.0890 0.0269 v -0.0317 0.0687 0.5250 v -0.0962 -0.0178 0.1630 v -0.1039 -0.2102 -0.5189 v -0.7656 0.0906 0.0307 v -0.0032 -0.0953 -0.7884 v -0.0771 -0.1988 -0.2622 v 0.0103 -0.2722 -0.2637 v 0.0229 -0.2385 0.0214 v 0.1723 -0.1330 0.3031 v 0.0298 0.0993 0.0911 v 0.7984 0.1365 0.1318 v -0.0541 -0.2476 -0.2829 v 0.1148 -0.2880 -0.8878 v -0.0911 -0.1673 -0.0556 v 0.4649 -0.1623 0.1736 v 0.5578 0.1017 0.1042 v 0.3008 0.1488 0.1638 v 0.0823 -0.0358 0.5263 v 0.1258 -0.2634 -0.8040 v -0.6562 0.1219 0.1785 v -0.9149 0.1234 0.1824 v 0.8859 0.1203 0.0935 v -0.1477 -0.1856 0.1483 v 0.1621 0.1147 0.3198 v 0.4758 -0.1974 0.1059 v 0.1920 0.1127 0.1517 v 0.7712 -0.1282 0.2544 v 0.0620 0.0503 0.1908 v -0.2784 0.1629 0.2086 v -0.2334 -0.2091 0.1052 v -0.7314 0.0732 -0.0217 v -0.0930 0.1691 0.2402 v -0.8039 0.1581 0.1920 v -0.0281 0.0698 0.1586 v -0.2187 -0.2776 -0.8385 v -0.0450 -0.1728 -0.5360 v 0.0110 0.0176 0.1451 v 0.0165 -0.1669 0.3640 v -0.6508 0.1640 0.2131 v 0.8313 0.0838 0.0103 v 0.0000 -0.2880 -0.8878 v 0.0899 -0.0289 0.0371 v -0.5848 -0.1509 0.2505 v -0.6068 0.1696 0.2456 v 0.1573 0.1950 0.5603 v -0.0630 0.0278 0.0994 v -0.1476 -0.2313 -0.6190 v 0.1881 -0.2620 0.3967 v -0.5961 0.0974 0.0916 v 0.5086 0.1710 0.2562 v -0.0751 -0.1370 0.3419 v 0.0272 -0.2057 -0.6513 v 0.4430 -0.1354 0.2565 v -0.0669 -0.0658 -0.2082 v 0.1028 -0.0296 0.4146 v 0.2247 0.1286 0.2036 v -0.7765 -0.1561 0.2097 v 0.0438 -0.2905 -0.9352 v 0.1768 -0.3578 0.3764 v -0.6125 0.1501 0.1676 v -0.5249 -0.1473 0.2718 v -0.0073 0.0986 0.3248 v 0.6075 0.1081 0.1252 v -0.0382 0.0292 0.3328 v -0.4264 -0.2009 0.1124 v 0.0875 0.1172 0.1606 v -0.0005 -0.2959 -0.5321 v -0.0019 -0.3219 -0.7150 v 0.4708 0.1070 0.1214 v -0.0406 -0.0466 -0.0422 v -0.0553 -0.0295 0.6223 v 0.8805 0.0970 0.0459 v -0.5523 0.0890 0.0269 v -0.0001 -0.0617 -0.3007 v -0.5523 0.1568 0.1880 v -0.0836 0.0413 0.3047 v 0.6599 0.1695 0.3019 v 0.0216 -0.0477 0.6107 v 0.1586 -0.3222 0.3288 v 0.0432 -0.1625 -0.5143 v -0.1094 -0.3329 0.3757 v -0.5031 0.1423 0.2554 v -0.0654 -0.3001 -0.9457 v 0.6836 0.1638 0.2132 v -0.4646 -0.1675 0.2067 v -0.4429 0.0788 -0.0109 v 0.3664 0.1237 0.1008 v -0.7488 0.1058 0.1175 v 0.0738 0.0706 0.6130 v 0.8698 -0.1330 0.2270 v 0.0802 -0.1946 -0.2307 v -0.6672 0.1447 0.2645 v -0.0186 -0.1868 -0.6313 v 0.2133 -0.2748 -0.8627 v -0.9844 0.0755 0.0207 v -0.0257 -0.2688 -0.5825 v -0.4375 0.1546 0.1800 v -0.0277 -0.2178 -0.6812 v 0.1367 0.1004 0.1004 v 0.0477 -0.2577 -0.3181 v -0.3610 -0.1416 0.2459 v -0.2117 -0.3520 0.3601 v 0.1176 0.1101 0.6019 v 0.1888 -0.2768 0.3171 v -0.1258 -0.2461 -0.7221 v 0.8423 -0.1832 0.1135 v -0.0736 -0.0122 0.5725 v -0.2295 0.0772 -0.0135 v -0.2133 0.1715 0.2616 v 0.2654 -0.2603 -0.7778 v 0.0253 -0.2697 -0.5752 v 0.0101 0.1240 0.4474 v 0.2954 -0.1365 0.2677 v 0.0985 0.1709 0.2562 v 0.0111 -0.0182 -0.1638 v 0.0004 -0.2330 0.0850 v 0.0736 -0.0944 -0.2365 v 0.0929 -0.1635 0.2498 v -0.0606 -0.0387 -0.1560 v -0.9399 -0.1864 0.1030 v -0.1855 -0.3128 0.3388 v -0.1001 -0.1162 0.1903 v -0.0677 -0.1775 0.1960 v 0.1245 0.0421 0.1896 v 0.0815 -0.1915 -0.0008 v -0.4266 -0.1290 0.2945 v 0.0813 -0.0931 0.4372 v -0.2029 -0.1879 0.1393 v -0.1602 -0.2762 0.3102 v 0.2679 -0.1377 0.3171 v -0.2187 0.0974 0.0916 v 0.7220 -0.1937 0.1098 v -0.0164 0.0257 0.5710 v 0.0224 -0.2316 -0.7022 v -0.0189 0.0515 0.1136 v -0.0492 -0.2652 -0.8173 v 0.2903 0.0803 0.0433 v 0.5359 -0.2007 0.1031 v 0.4430 0.1219 0.1785 v 0.3609 0.1399 0.2465 v -0.6181 -0.1641 0.1591 v 0.0987 -0.0420 0.1285 v 0.0167 -0.2039 0.2290 v -0.8749 -0.1681 0.1618 v -0.7383 0.1263 0.1951 v 0.0513 -0.1347 0.4246 v -0.5191 0.1058 0.1175 v 0.7000 0.1486 0.1638 v 0.2242 -0.1648 0.2338 v 0.1548 0.1007 0.2666 v 0.2903 0.1289 0.1123 v 0.1023 -0.0408 0.1960 v 0.0862 -0.1831 -0.0500 v 0.0676 -0.1723 -0.4162 v -0.2088 -0.3194 0.3980 v 0.0144 -0.2756 -0.4872 v 0.0588 -0.0866 -0.2947 v -0.4430 0.1149 0.1515 v 0.5359 0.0774 0.0312 v 0.6611 0.0084 0.1994 v 0.0846 -0.0744 -0.1372 v -0.0984 -0.1071 -0.0453 v -0.4758 -0.1350 0.2565 v -0.2735 -0.1404 0.2619 v 0.8258 0.1691 0.2402 v -0.0992 -0.1306 0.1047 v -0.6630 0.0644 0.1018 v 0.0996 -0.1211 0.1409 v 0.0098 0.1340 0.5005 v -0.1203 0.1582 0.3033 v -0.1636 0.1629 0.2086 v -0.0105 -0.2092 -0.5517 v 0.9242 0.0751 -0.0308 v -0.0404 0.0839 0.3893 v -0.1022 -0.0465 0.3603 v 0.1012 -0.0955 -0.0226 v -0.1001 -0.1339 0.3990 v -0.0268 0.0614 0.2998 v -0.1742 0.1202 0.3009 v 0.1767 -0.3742 0.3271 v 0.0032 -0.1445 -0.8595 v -0.0720 -0.2153 -0.0920 v 0.8477 0.1580 0.1919 v -0.0535 -0.0890 0.5100 v -0.4320 0.1703 0.2509 v 0.0733 0.0588 0.4628 v 0.0858 0.0387 0.3399 v -0.1914 -0.2855 -0.8761 v 0.0438 -0.3460 0.3161 v -0.6633 -0.1414 0.1937 v -0.7491 -0.1857 0.1239 v 0.6598 -0.0413 0.1482 v -0.5214 -0.1258 0.3135 v 0.7766 0.1567 0.1880 v 0.0661 0.0524 0.2376 v 0.0728 0.0242 0.5828 v 0.0615 0.0650 0.5327 v 0.0726 0.0270 0.1349 v -0.9078 0.1024 0.0570 v -0.0366 0.0502 0.4364 v 0.0813 0.0847 0.0524 v -0.4375 0.1240 0.1007 v -0.3773 0.1719 0.2671 v 0.2460 -0.1836 0.1709 v 0.3830 -0.2026 0.1025 v -0.3883 0.0921 0.0345 v -0.2516 0.1582 0.3033 v -0.5687 0.1621 0.3043 v -0.1527 0.1402 0.1394 v 0.1227 -0.1848 0.4008 v -0.0310 -0.1553 0.3869 v 0.1542 -0.2682 0.3653 v -0.0459 -0.2563 -0.3295 v 0.0383 0.0081 0.1005 v 0.4539 0.1399 0.2465 v 0.5360 0.1355 0.1276 v 0.2624 -0.2804 -0.8534 v 0.0426 0.0233 0.3095 v -0.0525 -0.1539 -0.4612 v -0.0928 -0.0753 0.4210 v -0.1914 0.0774 0.0312 v -0.2133 -0.2548 -0.7306 v -0.0567 0.0602 0.5783 v 0.5524 -0.1675 0.1572 v 0.0219 -0.3280 0.3977 v -0.6125 -0.1239 0.2891 v -0.1476 0.0816 0.0477 v -0.3058 0.0784 0.0357 v -0.4922 -0.1649 0.1660 v -0.0126 0.0561 0.4783 v 0.0169 -0.1328 0.4560 v -0.0984 -0.2406 -0.6632 v 0.7274 0.0755 0.0207 v -0.1335 -0.3075 0.4092 v 0.0809 -0.1806 0.0868 v 0.0505 -0.2424 -0.4824 v -0.0002 -0.0352 -0.0600 v 0.0055 0.1230 0.1824 v -0.6640 0.0992 0.2251 v -0.0667 0.1052 0.0644 v 0.1750 0.0934 0.0384 v -0.0019 -0.0320 -0.7119 v 0.9246 -0.1682 0.1362 v -0.4158 -0.1591 0.1865 v 0.6563 0.1079 0.0679 v -0.1310 0.0529 0.1840 v -0.0711 0.1044 0.1130 v -0.0652 -0.2150 -0.5417 v 0.0996 -0.1859 0.1694 v -0.3500 0.1460 0.1550 v -0.0585 -0.2089 0.0851 v 0.2461 0.1251 0.1048 v -0.2297 0.1219 0.1785 v 0.4593 -0.1422 0.2993 v 0.5906 0.1250 0.1901 v 0.8148 -0.1332 0.3012 v 0.7109 -0.1505 0.2425 v -0.0787 -0.1719 -0.3287 v 0.2680 0.1436 0.2605 v 0.1909 -0.1559 0.2695 v -0.0219 0.1724 0.2942 v 0.5907 -0.1336 0.2492 v 0.1914 -0.2663 -0.8210 v 0.2570 0.1540 0.1802 v -0.0641 0.0247 0.0537 v -0.6946 -0.1191 0.3095 v 0.1969 0.1718 0.2671 v 0.8040 -0.1397 0.2113 v -0.0164 0.1117 0.1387 v 0.6289 0.1461 0.1551 v -0.2406 0.1399 0.2465 v -0.3445 0.0824 0.0053 v 0.7109 -0.1309 0.3135 v -0.0033 -0.1282 -0.5861 v -0.0899 -0.0634 -0.0717 v 0.4703 0.1580 0.1919 v -0.6945 0.0824 0.0053 v -0.3172 0.0947 0.0840 v -0.0673 -0.0954 -0.2696 v 0.0164 0.0810 0.4562 v 0.1039 -0.2720 -0.8482 v -0.0820 -0.2843 -0.9081 v -0.5086 0.1594 0.1966 v -0.5464 0.1343 0.2254 v 0.5250 0.1193 0.1683 v 0.7109 0.0871 0.0640 v -0.2734 -0.1768 0.1971 v -0.1597 0.0942 0.2583 v 0.3664 0.1537 0.2981 v -0.1914 -0.2602 -0.7938 v 0.0055 -0.1162 -0.4595 v -0.8477 -0.1812 0.1115 v -0.0535 -0.1159 -0.3788 v -0.7329 -0.1406 0.2074 v -0.1421 -0.1586 0.2773 v 0.1898 0.1423 0.2988 v -0.3556 -0.1563 0.2005 v 0.0113 -0.1803 0.3226 v -0.0547 0.1365 0.2336 v 0.0961 -0.1453 0.0265 v -0.1325 -0.2245 0.2396 v 0.6289 -0.1981 0.1033 v 0.0320 0.0728 0.6002 v 0.7274 0.1447 0.2645 v 0.3829 -0.1543 0.1988 v -0.7492 0.1467 0.2722 v -0.6671 -0.1892 0.1219 v 0.5089 -0.1720 0.1869 v 0.0244 0.0858 0.4134 v -0.1750 -0.3455 0.2982 v -0.0130 0.0516 0.1952 v 0.3336 0.0971 0.0459 v -0.7000 0.1546 0.1800 v -0.6344 0.1136 0.0787 v 0.0602 -0.2302 -0.6139 v -0.8966 0.1609 0.2010 v -0.0975 -0.0462 0.0483 v 0.0930 -0.1396 0.3180 v 0.0032 -0.0515 -0.6736 v 0.8094 0.1017 0.1042 v 0.6453 0.1701 0.2509 v -0.0922 -0.1256 0.2436 v 0.0850 -0.1075 0.3768 v 0.3281 0.1240 0.1863 v -0.0876 -0.1125 -0.1869 v -0.2734 0.1007 0.0533 v -0.3008 0.1436 0.2605 v -0.2624 -0.1979 0.1356 v -0.3281 -0.1977 0.1298 v 0.1860 -0.2463 -0.7276 v -0.1916 -0.2812 0.3818 v 0.6598 -0.1059 0.1976 v -0.0370 -0.3026 0.3997 v 0.0919 -0.1304 0.2016 v 0.0660 -0.1258 -0.3549 v 0.6588 0.0961 0.2178 v 0.0377 -0.0590 0.5728 v 0.8864 0.1402 0.1394 v 0.0573 -0.2015 0.1520 v -0.0898 -0.0893 -0.1106 v 0.2025 0.0756 -0.0101 v 0.0887 -0.1810 -0.1428 v -0.2652 -0.2688 -0.8314 v -0.0617 -0.2320 -0.3661 v 0.5742 0.1467 0.2722 v 0.1038 -0.0351 0.3163 v -0.1039 -0.3202 0.3323 v -0.0872 -0.1674 0.2505 v 0.3887 0.1609 0.2009 v -0.6016 0.0755 0.0207 v -0.0766 -0.1819 0.1237 v -0.0900 -0.1668 -0.1104 v 0.6836 0.0730 -0.0119 v 0.0957 -0.1121 -0.1100 v 0.0930 -0.2416 -0.7055 v 0.0690 -0.2238 -0.1431 v 0.6344 0.0904 0.0308 v 0.1842 0.1167 0.2063 v 0.5415 -0.1255 0.2949 v 0.0032 -0.2210 -0.7884 v -0.0984 -0.1405 0.0519 v -0.8531 0.1149 0.1515 v -0.0109 -0.2205 0.1576 v 0.0032 -0.1335 -0.7009 v 0.9719 0.1063 0.0657 v 0.8914 0.1250 0.1901 v 0.8645 0.1333 0.2215 v 0.0000 -0.1690 -0.5981 v 0.0547 0.1457 0.2683 v -0.0156 -0.2423 -0.7208 v 0.1536 0.1670 0.2279 v -0.3609 0.1017 0.1042 v 0.2133 -0.1412 0.3167 v 0.7278 0.1070 0.1214 v -0.5250 0.1582 0.3033 v -0.0779 0.0416 0.2393 v 0.3282 -0.1800 0.1426 v -0.0016 -0.3402 -0.6774 v 0.7875 0.1193 0.1683 v -0.2132 -0.1783 0.1988 v 0.9242 0.1077 0.0679 v 0.4923 -0.1318 0.2679 v -0.5630 -0.2000 0.1023 v -0.0862 -0.0188 0.5184 v -0.3550 0.1343 0.2254 v 0.6727 -0.1636 0.1589 v 0.0316 0.0820 0.5561 v 0.8431 0.0738 -0.0292 v 0.3828 0.1415 0.1437 v -0.1148 0.1115 0.0752 v 0.0055 0.1660 0.2235 v -0.1422 0.1044 0.1130 v 0.0568 -0.0386 -0.1662 v -0.2789 0.1240 0.1863 v 0.0832 -0.0380 -0.0571 v -0.4758 0.0816 0.0477 v -0.0616 0.0653 0.2720 v 0.1310 -0.2354 0.2545 v -0.2789 0.1117 0.1387 v 0.1144 -0.3106 0.4107 v 0.1176 0.0763 0.0180 v 0.6179 -0.1649 0.2010 v -0.2610 -0.2531 -0.7586 v 0.0231 0.0674 0.1744 v 0.0696 -0.2202 -0.0613 v -0.6727 0.0934 0.0384 v 0.2078 0.1504 0.1674 v 0.5141 0.1525 0.2940 v 0.5688 0.0987 0.0497 v 0.0159 -0.0139 0.5794 v 0.0119 0.0713 0.3708 v 0.5852 -0.1776 0.1351 v -0.1531 -0.2851 -0.9079 v -0.5522 -0.1399 0.2287 v 0.0263 -0.2650 -0.6732 v 0.3774 -0.1279 0.3034 v -0.5306 -0.1560 0.1840 v 0.4320 0.1170 0.0860 v 0.0616 0.0746 0.3156 v -0.0273 -0.2948 -0.9203 v 0.4489 0.1413 0.1433 v 0.9189 -0.1346 0.2178 v -0.0850 0.0129 0.1360 v 0.0890 -0.1710 -0.1921 v 0.1367 -0.2483 -0.6995 v 0.1586 0.1206 0.1733 v -0.0851 0.0404 0.4528 v 0.0608 -0.1990 -0.5126 v 0.2789 0.1537 0.2981 v -0.1430 -0.0955 0.6487 v 0.0792 -0.1985 -0.2742 v 0.0984 -0.2176 -0.5540 v 0.0533 -0.2465 -0.1762 v 0.0217 0.0487 0.0990 v 0.8203 0.1491 0.1637 v 0.8636 -0.1232 0.2667 v 0.0910 0.0097 0.2776 v 0.0579 -0.1807 0.2400 v -0.1106 -0.1900 0.1662 v -0.0274 -0.2006 -0.5093 v -0.0476 -0.2470 -0.1276 v -0.1968 -0.3874 0.4171 v -0.4812 0.1219 0.1785 v -0.4810 0.1671 0.2280 v 0.0389 0.0455 0.3875 v 0.0700 -0.2102 -0.3786 v -0.9242 0.1186 0.0898 v -0.1804 -0.2431 -0.7094 v -0.2188 -0.1401 0.2726 v -0.6657 0.0085 0.2024 v -0.7790 -0.1724 0.1587 v -0.7771 -0.1167 0.3020 v -0.3719 0.1137 0.1465 v 0.1863 -0.3949 0.4051 v 0.4046 -0.1342 0.2671 v -0.5409 0.1415 0.1432 v 0.4047 0.1378 0.2387 v -0.0032 -0.1390 -0.7994 v -0.1367 -0.2625 -0.7671 v -0.1258 0.1172 0.1606 v -0.1014 -0.0292 0.2396 v -0.0109 -0.2717 -0.8483 v -0.0058 -0.2817 -0.7846 v 0.0219 -0.3389 0.3485 v 0.0102 0.0236 0.3623 v -0.6831 0.1684 0.2356 v 0.1955 -0.3412 0.3383 v 0.0266 -0.2478 -0.0447 v 0.7711 0.0838 0.0103 v -0.0007 -0.3518 -0.6132 v -0.5245 0.1677 0.2318 v -0.3938 -0.1356 0.2675 v 0.0008 -0.1076 -0.5380 v 0.1153 0.1606 0.2010 v -0.0164 -0.2206 -0.6056 v -0.0055 0.1436 0.2605 v -0.0941 0.0143 0.4093 v -0.5851 0.1206 0.1733 v -0.0032 -0.1718 -0.7665 v -0.1711 -0.1270 0.6544 v 0.0635 0.0724 0.4220 v 0.1044 -0.0878 0.1200 v -0.0563 -0.1369 -0.4119 v 0.1930 -0.2232 -0.5828 v -0.8258 0.0974 0.0916 v -0.0032 -0.1062 -0.8540 v 0.1977 0.2033 0.5734 v 0.0001 -0.0679 0.5794 v -0.0228 -0.1864 0.2953 v -0.8859 0.0861 0.0181 v -0.0848 -0.1502 -0.2577 v 0.4266 -0.1660 0.1664 v -0.0053 0.0895 0.5458 v -0.1317 -0.2033 0.1171 v -0.4152 0.1296 0.2074 v 0.0880 0.1333 0.2215 v 0.1531 -0.2644 -0.7761 v 0.0636 -0.0830 0.0013 v -0.0050 -0.0833 0.0062 v 0.0721 -0.0811 0.4960 v 0.1743 -0.3069 0.2966 v -0.0542 -0.2489 -0.7399 v -0.1013 -0.0566 0.1193 v -0.1058 -0.1111 0.6289 v -0.7984 0.1340 0.1239 v 0.1748 -0.2985 0.3981 v 0.1913 -0.2076 0.1076 v -0.5906 0.1007 0.0533 v -0.0428 -0.0053 0.1005 v 0.1809 -0.1509 0.2229 v 0.0461 -0.2557 -0.4107 v -0.8367 0.1691 0.2402 v -0.8914 0.1137 0.1465 v 0.0357 -0.2470 -0.6403 v -0.0109 0.0587 0.2594 v 0.2023 0.1324 0.1202 v -0.0293 -0.1337 0.4505 v 0.5091 0.1058 0.1175 v 0.9300 -0.1885 0.1022 f 1 901 711 f 2 748 1024 f 3 599 722 f 4 959 564 f 5 936 596 f 6 923 926 f 7 625 349 f 8 608 550 f 9 727 908 f 10 985 314 f 11 856 944 f 12 811 291 f 13 670 383 f 14 917 807 f 15 731 698 f 16 684 614 f 17 947 607 f 18 937 820 f 19 536 486 f 20 1012 490 f 21 974 893 f 22 706 604 f 23 991 397 f 24 828 560 f 25 570 834 f 26 780 624 f 27 778 532 f 28 880 587 f 29 921 960 f 30 787 918 f 31 728 889 f 32 934 772 f 33 812 696 f 34 669 434 f 35 988 796 f 36 732 636 f 37 957 480 f 38 973 910 f 39 883 340 f 40 952 1018 f 41 913 850 f 42 694 969 f 43 697 665 f 44 870 886 f 45 819 525 f 46 824 333 f 47 766 874 f 48 680 488 f 49 642 505 f 50 657 673 f 51 664 428 f 52 753 508 f 53 637 468 f 54 615 436 f 55 662 579 f 56 546 786 f 57 899 755 f 58 878 765 f 59 1003 900 f 60 682 404 f 61 928 551 f 62 946 687 f 63 986 785 f 64 964 1007 f 65 1016 661 f 66 600 482 f 67 864 767 f 68 955 485 f 69 997 710 f 70 888 922 f 71 842 1005 f 72 848 540 f 73 629 655 f 74 879 653 f 75 803 943 f 76 806 634 f 77 855 578 f 78 769 757 f 79 760 775 f 80 715 717 f 81 1010 593 f 82 859 847 f 83 941 595 f 84 849 763 f 85 885 792 f 86 977 749 f 87 808 594 f 88 733 777 f 89 866 667 f 90 962 794 f 91 1006 685 f 92 678 484 f 93 597 713 f 94 1009 935 f 95 965 537 f 96 844 621 f 97 869 603 f 98 838 586 f 99 956 649 f 100 975 572 f 101 961 948 f 102 996 784 f 103 951 840 f 104 390 371 f 105 970 916 f 106 1002 930 f 107 891 837 f 108 736 716 f 109 826 809 f 110 708 832 f 111 660 836 f 112 822 770 f 113 978 779 f 114 858 862 f 115 898 620 f 116 725 689 f 117 799 492 f 118 853 827 f 119 871 872 f 120 730 905 f 121 932 982 f 122 810 487 f 123 963 984 f 124 752 745 f 125 821 1017 f 126 903 754 f 127 813 887 f 128 825 577 f 129 990 995 f 130 805 740 f 131 793 881 f 132 989 472 f 133 692 529 f 134 938 861 f 135 719 703 f 136 480 499 f 137 702 471 f 138 747 510 f 139 758 676 f 140 925 563 f 141 1004 575 f 142 816 909 f 143 846 906 f 144 971 818 f 145 979 1001 f 146 823 623 f 147 953 737 f 148 911 782 f 149 992 550 f 150 968 875 f 151 966 507 f 152 942 851 f 153 798 454 f 154 852 815 f 155 693 473 f 156 781 720 f 157 621 502 f 158 999 528 f 159 945 724 f 160 595 748 f 161 695 646 f 162 831 904 f 163 768 786 f 164 1023 521 f 165 674 506 f 166 624 620 f 167 967 641 f 168 517 415 f 169 1015 654 f 170 1021 746 f 171 801 655 f 172 1012 490 f 173 622 596 f 174 829 854 f 175 585 659 f 176 958 707 f 177 1013 652 f 178 954 800 f 179 857 845 f 180 684 424 f 181 563 518 f 182 841 665 f 183 980 603 f 184 675 766 f 185 606 802 f 186 983 789 f 187 993 915 f 188 1008 671 f 189 922 919 f 190 912 876 f 191 672 485 f 192 741 661 f 193 817 656 f 194 687 519 f 195 504 552 f 196 726 732 f 197 1000 708 f 198 694 418 f 199 998 728 f 200 893 678 f 201 686 450 f 202 605 718 f 203 955 744 f 204 725 682 f 205 907 729 f 206 668 698 f 207 734 749 f 208 1005 632 f 209 751 897 f 210 836 634 f 211 882 710 f 212 648 628 f 213 902 881 f 214 837 697 f 215 807 637 f 216 908 795 f 217 1019 920 f 218 840 662 f 219 768 722 f 220 884 699 f 221 921 618 f 222 805 681 f 223 773 468 f 224 560 471 f 225 914 568 f 226 909 939 f 227 903 609 f 228 977 631 f 229 775 653 f 230 745 895 f 231 833 834 f 232 892 594 f 233 823 828 f 234 931 531 f 235 832 776 f 236 994 803 f 237 703 657 f 238 813 729 f 239 742 405 f 240 930 835 f 241 972 1011 f 242 704 952 f 243 794 934 f 244 887 864 f 245 812 646 f 246 771 731 f 247 959 685 f 248 797 625 f 249 839 943 f 250 918 693 f 251 783 733 f 252 995 486 f 253 956 799 f 254 896 743 f 255 849 455 f 256 818 593 f 257 937 933 f 258 974 738 f 259 601 753 f 260 770 640 f 261 764 769 f 262 850 760 f 263 898 666 f 264 1022 736 f 265 1016 951 f 266 780 667 f 267 859 900 f 268 838 969 f 269 897 895 f 270 910 861 f 271 916 814 f 272 941 773 f 273 964 953 f 274 901 578 f 275 990 593 f 276 1024 611 f 277 944 806 f 278 779 873 f 279 866 756 f 280 982 725 f 281 980 820 f 282 499 491 f 283 911 855 f 284 843 940 f 285 942 924 f 286 785 950 f 287 798 763 f 288 740 630 f 289 929 861 f 290 1014 719 f 291 1017 538 f 292 735 702 f 293 886 870 f 294 868 856 f 295 777 711 f 296 830 845 f 297 810 997 f 298 949 948 f 299 815 626 f 300 547 461 f 301 762 778 f 302 882 709 f 303 679 569 f 304 842 701 f 305 479 664 f 306 782 911 f 307 976 713 f 308 696 797 f 309 1003 1004 f 310 831 726 f 311 867 821 f 312 931 571 f 313 957 771 f 314 1009 985 f 315 750 435 f 316 511 395 f 317 828 632 f 318 946 437 f 319 774 515 f 320 1011 553 f 321 913 555 f 322 695 485 f 323 802 749 f 324 708 690 f 325 967 865 f 326 926 790 f 327 809 699 f 328 815 607 f 329 889 689 f 330 809 13 f 331 905 717 f 332 927 748 f 333 978 779 f 334 987 647 f 335 739 660 f 336 881 816 f 337 741 1016 f 338 989 472 f 339 852 410 f 340 975 883 f 341 900 497 f 342 675 793 f 343 1008 928 f 344 728 612 f 345 754 740 f 346 1007 737 f 347 654 618 f 348 812 695 f 349 649 499 f 350 518 3 f 351 932 889 f 352 781 854 f 353 980 677 f 354 481 524 f 355 885 528 f 356 570 70 f 357 1022 682 f 358 757 642 f 359 966 496 f 360 834 792 f 361 877 755 f 362 936 605 f 363 829 894 f 364 984 869 f 365 1002 835 f 366 761 941 f 367 758 636 f 368 796 840 f 369 983 961 f 370 1020 902 f 371 817 642 f 372 901 652 f 373 575 266 f 374 576 443 f 375 892 808 f 376 904 899 f 377 990 1010 f 378 579 784 f 379 850 582 f 380 597 811 f 381 811 650 f 382 1020 723 f 383 670 872 f 384 858 738 f 385 938 512 f 386 851 692 f 387 619 47 f 388 945 933 f 389 800 118 f 390 923 592 f 391 875 984 f 392 1004 445 f 393 874 619 f 394 1005 736 f 395 830 857 f 396 973 513 f 397 510 138 f 398 796 724 f 399 858 862 f 400 1015 765 f 401 841 760 f 402 896 874 f 403 891 907 f 404 60 210 f 405 620 624 f 406 823 851 f 407 641 155 f 408 950 692 f 409 947 660 f 410 852 586 f 411 890 832 f 412 854 894 f 413 994 853 f 414 839 50 f 415 946 62 f 416 869 824 f 417 932 735 f 418 969 694 f 419 843 871 f 420 996 784 f 421 981 804 f 422 882 810 f 423 774 752 f 424 581 982 f 425 754 172 f 426 840 662 f 427 844 868 f 428 862 914 f 429 837 697 f 430 891 637 f 431 970 916 f 432 1018 952 f 433 859 658 f 434 954 34 f 435 791 750 f 436 54 132 f 437 973 910 f 438 792 669 f 439 965 714 f 440 767 864 f 441 772 863 f 442 906 746 f 443 87 374 f 444 993 689 f 445 822 866 f 446 877 711 f 447 922 919 f 448 930 860 f 449 793 676 f 450 123 325 f 451 52 508 f 452 881 751 f 453 849 255 f 454 798 35 f 455 988 724 f 456 879 825 f 457 920 875 f 458 790 326 f 459 767 907 f 460 1017 291 f 461 939 719 f 462 661 65 f 463 853 827 f 464 653 699 f 465 674 702 f 466 898 620 f 467 924 567 f 468 773 223 f 469 764 645 f 470 705 679 f 471 691 224 f 472 989 18 f 473 918 787 f 474 606 185 f 475 1001 979 f 476 1000 958 f 477 942 700 f 478 1003 681 f 479 923 305 f 480 37 136 f 481 860 639 f 482 995 704 f 483 1019 616 f 484 870 293 f 485 68 191 f 486 509 129 f 487 960 921 f 488 966 881 f 489 1007 968 f 490 1012 709 f 491 957 282 f 492 695 117 f 493 819 911 f 494 737 183 f 495 823 623 f 496 556 359 f 497 900 742 f 498 67 301 f 499 649 282 f 500 933 937 f 501 1008 627 f 502 157 279 f 503 929 622 f 504 953 195 f 505 846 746 f 506 998 735 f 507 928 151 f 508 753 52 f 509 275 486 f 510 963 397 f 511 996 316 f 512 202 5 f 513 38 157 f 514 878 765 f 515 939 319 f 516 940 884 f 517 718 84 f 518 786 163 f 519 857 179 f 520 997 813 f 521 721 1023 f 522 829 769 f 523 304 1005 f 524 1002 786 f 525 744 565 f 526 1018 821 f 527 886 843 f 528 999 944 f 529 801 171 f 530 238 643 f 531 1021 931 f 532 272 27 f 533 909 700 f 534 899 235 f 535 833 633 f 536 782 19 f 537 804 342 f 538 291 81 f 539 816 774 f 540 693 848 f 541 945 753 f 542 719 290 f 543 803 716 f 544 971 144 f 545 893 200 f 546 925 967 f 547 300 59 f 548 919 15 f 549 186 544 f 550 992 8 f 551 1014 928 f 552 147 52 f 553 1011 717 f 554 1013 819 f 555 913 156 f 556 236 496 f 557 1019 598 f 558 960 759 f 559 166 830 f 560 224 24 f 561 863 912 f 562 799 253 f 563 140 181 f 564 972 959 f 565 983 186 f 566 698 919 f 567 683 467 f 568 79 775 f 569 683 431 f 570 25 207 f 571 145 312 f 572 661 259 f 573 883 457 f 574 1023 926 f 575 742 373 f 576 374 187 f 577 886 128 f 578 1013 855 f 579 378 55 f 580 789 788 f 581 902 213 f 582 379 109 f 583 842 993 f 584 1006 972 f 585 933 113 f 586 852 739 f 587 976 949 f 588 787 925 f 589 109 826 f 590 734 189 f 591 1 295 f 592 894 363 f 593 275 256 f 594 808 232 f 595 941 927 f 596 936 929 f 597 971 380 f 598 873 980 f 599 768 722 f 600 66 242 f 601 259 616 f 602 1000 663 f 603 875 97 f 604 442 22 f 605 202 362 f 606 977 802 f 607 660 328 f 608 8 232 f 609 1006 241 f 610 964 273 f 611 276 53 f 612 344 31 f 613 310 726 f 614 776 16 f 615 219 54 f 616 483 601 f 617 785 63 f 618 221 635 f 619 387 393 f 620 898 405 f 621 96 157 f 622 503 173 f 623 943 495 f 624 166 296 f 625 248 7 f 626 299 607 f 627 501 11 f 628 212 11 f 629 73 237 f 630 38 658 f 631 977 228 f 632 394 208 f 633 85 535 f 634 210 76 f 635 58 878 f 636 36 367 f 637 215 430 f 638 375 915 f 639 875 920 f 640 939 539 f 641 489 967 f 642 817 358 f 643 14 238 f 644 926 781 f 645 962 469 f 646 245 161 f 647 987 334 f 648 943 212 f 649 499 99 f 650 144 818 f 651 736 108 f 652 961 372 f 653 74 464 f 654 1015 169 f 655 441 171 f 656 757 193 f 657 50 237 f 658 910 433 f 659 103 175 f 660 836 335 f 661 65 741 f 662 55 218 f 663 948 176 f 664 914 51 f 665 182 43 f 666 859 263 f 667 266 780 f 668 206 566 f 669 438 34 f 670 383 220 f 671 188 866 f 672 191 45 f 673 987 345 f 674 165 465 f 675 342 184 f 676 439 139 f 677 945 353 f 678 200 92 f 679 431 303 f 680 48 204 f 681 1003 59 f 682 204 357 f 683 1020 902 f 684 16 793 f 685 972 247 f 686 991 201 f 687 194 62 f 688 940 872 f 689 329 116 f 690 197 324 f 691 986 471 f 692 408 924 f 693 540 155 f 694 969 42 f 695 161 348 f 696 308 956 f 697 43 429 f 698 566 206 f 699 884 220 f 700 533 142 f 701 375 304 f 702 892 292 f 703 237 719 f 704 952 242 f 705 121 735 f 706 22 906 f 707 176 446 f 708 197 110 f 709 302 169 f 710 211 69 f 711 251 295 f 712 235 614 f 713 880 307 f 714 965 897 f 715 80 317 f 716 108 236 f 717 553 331 f 718 84 849 f 719 939 290 f 720 156 352 f 721 1023 790 f 722 219 599 f 723 105 382 f 724 455 398 f 725 204 116 f 726 310 732 f 727 953 273 f 728 344 199 f 729 917 238 f 730 268 120 f 731 246 15 f 732 36 726 f 733 831 251 f 734 922 207 f 735 785 292 f 736 108 1022 f 737 494 346 f 738 974 384 f 739 335 586 f 740 288 345 f 741 192 337 f 742 575 239 f 743 254 774 f 744 144 525 f 745 230 124 f 746 505 442 f 747 824 138 f 748 1024 2 f 749 323 207 f 750 435 862 f 751 209 452 f 752 269 124 f 753 508 541 f 754 345 425 f 755 958 57 f 756 279 294 f 757 656 1021 f 758 139 367 f 759 29 244 f 760 79 401 f 761 366 272 f 762 301 107 f 763 287 84 f 764 934 261 f 765 514 58 f 766 421 47 f 767 459 67 f 768 219 599 f 769 78 261 f 770 112 260 f 771 313 246 f 772 801 441 f 773 468 223 f 774 423 539 f 775 229 79 f 776 614 235 f 777 295 251 f 778 27 301 f 779 873 278 f 780 26 266 f 781 352 156 f 782 911 306 f 783 251 162 f 784 420 102 f 785 814 735 f 786 518 163 f 787 588 473 f 788 976 949 f 789 976 580 f 790 458 326 f 791 435 738 f 792 85 438 f 793 131 449 f 794 90 243 f 795 216 273 f 796 398 35 f 797 248 308 f 798 988 287 f 799 253 562 f 800 389 178 f 801 772 529 f 802 323 606 f 803 543 994 f 804 421 537 f 805 222 130 f 806 76 277 f 807 14 215 f 808 594 892 f 809 330 327 f 810 297 422 f 811 12 381 f 812 33 245 f 813 238 127 f 814 986 271 f 815 328 299 f 816 539 909 f 817 371 193 f 818 144 256 f 819 554 283 f 820 1019 281 f 821 125 311 f 822 112 445 f 823 146 233 f 824 747 46 f 825 128 456 f 826 109 582 f 827 853 118 f 828 24 317 f 829 174 522 f 830 296 102 f 831 733 162 f 832 235 411 f 833 231 535 f 834 360 231 f 835 365 240 f 836 210 660 f 837 107 429 f 838 98 268 f 839 249 414 f 840 218 426 f 841 401 182 f 842 993 583 f 843 419 284 f 844 427 96 f 845 179 296 f 846 505 143 f 847 82 861 f 848 72 540 f 849 255 84 f 850 379 41 f 851 386 152 f 852 154 410 f 853 463 827 f 854 412 174 f 855 77 1013 f 856 11 294 f 857 179 395 f 858 114 384 f 859 82 267 f 860 481 930 f 861 289 938 f 862 428 114 f 863 931 561 f 864 244 67 f 865 325 391 f 866 279 89 f 867 1018 311 f 868 294 427 f 869 416 364 f 870 484 886 f 871 119 872 f 872 688 119 f 873 598 779 f 874 402 47 f 875 391 1007 f 876 475 190 f 877 361 446 f 878 58 514 f 879 456 74 f 880 28 713 f 881 336 902 f 882 302 422 f 883 573 340 f 884 516 699 f 885 85 355 f 886 293 527 f 887 244 759 f 888 70 245 f 889 329 351 f 890 411 476 f 891 107 403 f 892 998 702 f 893 200 545 f 894 6 412 f 895 269 897 f 896 402 254 f 897 269 714 f 898 115 263 f 899 376 57 f 900 341 59 f 901 1 372 f 902 370 213 f 903 126 227 f 904 376 162 f 905 331 120 f 906 442 143 f 907 205 403 f 908 216 727 f 909 226 816 f 910 270 658 f 911 148 283 f 912 190 531 f 913 41 555 f 914 225 664 f 915 187 583 f 916 271 950 f 917 14 729 f 918 473 250 f 919 548 189 f 920 1019 217 f 921 29 960 f 922 189 447 f 923 479 6 f 924 467 285 f 925 140 546 f 926 644 6 f 927 332 595 f 928 61 507 f 929 289 503 f 930 448 240 f 931 531 863 f 932 121 417 f 933 585 500 f 934 764 32 f 935 314 985 f 936 362 596 f 937 257 18 f 938 134 861 f 939 461 226 f 940 688 516 f 941 272 595 f 942 285 152 f 943 623 249 f 944 277 528 f 945 388 159 f 946 415 62 f 947 17 409 f 948 101 298 f 949 298 788 f 950 408 916 f 951 103 265 f 952 704 432 f 953 273 727 f 954 178 434 f 955 203 68 f 956 253 99 f 957 37 491 f 958 755 476 f 959 4 247 f 960 558 487 f 961 101 369 f 962 90 645 f 963 123 510 f 964 273 64 f 965 439 714 f 966 488 151 f 967 325 167 f 968 489 325 f 969 694 418 f 970 105 431 f 971 544 597 f 972 685 584 f 973 437 38 f 974 258 21 f 975 340 100 f 976 788 789 f 977 86 606 f 978 333 113 f 979 475 145 f 980 281 353 f 981 421 896 f 982 280 121 f 983 369 186 f 984 364 391 f 985 314 935 f 986 63 814 f 987 334 673 f 988 798 35 f 989 132 338 f 990 377 129 f 991 686 23 f 992 149 550 f 993 842 187 f 994 413 803 f 995 482 252 f 996 420 102 f 997 520 69 f 998 892 506 f 999 158 528 f 1000 476 602 f 1001 475 145 f 1002 524 365 f 1003 309 681 f 1004 392 309 f 1005 394 208 f 1006 584 609 f 1007 489 346 f 1008 188 501 f 1009 314 94 f 1010 81 377 f 1011 553 320 f 1012 490 172 f 1013 554 855 f 1014 551 290 f 1015 400 169 f 1016 265 65 f 1017 460 291 f 1018 867 432 f 1019 483 920 f 1020 370 683 f 1021 531 170 f 1022 357 264 f 1023 574 721 f 1024 276 748 ================================================ FILE: visualization/triangled_bed.obj ================================================ # OBJ file v 0.1776 -0.0033 -0.0430 v -0.5717 0.3573 0.7347 v -0.5588 -0.2315 -0.7948 v 0.5700 0.3575 0.7345 v -0.0846 -0.3955 0.7139 v 0.5693 -0.2282 -0.7839 v -0.5698 -0.2390 0.0783 v 0.5750 -0.3125 0.7012 v -0.0084 -0.0033 -0.6350 v 0.0000 0.2023 0.7414 v -0.5715 -0.1779 0.6421 v -0.2537 0.1095 0.3014 v 0.5705 -0.2202 0.1938 v -0.4144 -0.0033 -0.3475 v 0.5705 -0.2033 -0.2967 v 0.2960 0.1236 0.3886 v 0.0338 -0.1860 0.3376 v -0.1776 -0.1860 -0.0768 v 0.2537 -0.0849 0.7158 v 0.3552 -0.0033 -0.5420 v 0.2115 -0.2352 -0.7969 v -0.3383 0.0861 0.7270 v 0.0846 -0.1860 -0.3475 v -0.2030 -0.2402 -0.7931 v -0.2791 -0.1860 0.4560 v 0.5159 -0.0030 -0.0430 v 0.5667 0.0325 0.7160 v 0.3722 -0.1860 0.4391 v -0.5348 -0.0285 0.3468 v 0.2622 -0.3987 0.7013 v -0.3552 -0.0033 -0.6604 v 0.2967 0.2343 0.6827 v -0.5698 -0.2390 -0.2347 v -0.4313 -0.0033 -0.0430 v -0.0930 -0.1018 0.7158 v -0.1861 -0.1860 -0.4574 v 0.0220 0.0892 0.4736 v -0.3975 -0.3986 0.7091 v -0.2544 0.3624 0.7320 v 0.2622 -0.1860 0.1600 v -0.0677 -0.0033 0.1262 v -0.5715 -0.2118 -0.5166 v 0.3214 -0.1860 -0.1868 v -0.3214 -0.1860 0.1769 v -0.1015 -0.0033 -0.2798 v 0.5217 -0.0030 0.3376 v 0.5581 -0.1526 -0.5413 v -0.5734 0.1156 0.6842 v 0.5646 -0.2399 -0.0592 v -0.3298 -0.1695 0.7158 v 0.4398 -0.0033 -0.2967 v 0.2199 -0.0027 -0.7442 v -0.4060 0.1230 0.4812 v 0.1184 -0.1860 0.5575 v 0.1184 0.0424 0.2650 v 0.1184 -0.1860 -0.5758 v 0.5263 -0.0057 -0.7471 v 0.2115 -0.0033 -0.2967 v -0.3383 -0.1860 -0.2375 v -0.5502 -0.2402 0.4222 v 0.4716 0.1155 0.5318 v 0.3383 -0.1860 -0.4151 v 0.0423 -0.1860 0.0670 v 0.5711 -0.1615 0.5401 v -0.4529 -0.3839 -0.6813 v -0.1832 0.1093 0.5767 v 0.3722 -0.0033 0.1262 v 0.4458 -0.3769 -0.6926 v 0.0085 -0.1866 -0.7681 v -0.5367 -0.0355 0.1346 v 0.1269 0.3636 0.7196 v 0.3722 -0.1860 -0.6773 v -0.5221 -0.0029 -0.5420 v 0.0338 -0.0033 -0.4320 v -0.2791 -0.0033 0.0923 v 0.4483 -0.1441 0.7158 v -0.0761 -0.0033 -0.0768 v -0.5367 -0.0355 -0.7450 v -0.0846 -0.1860 0.5068 v 0.1269 -0.1860 -0.1360 v -0.3890 -0.1860 -0.4320 v 0.1628 0.0762 0.6152 v -0.1269 -0.1860 0.2107 v -0.2537 -0.0033 -0.4912 v -0.2622 -0.0033 -0.1445 v 0.3891 -0.1860 0.0078 v -0.3806 -0.1860 -0.7365 v -0.1522 -0.0263 -0.7598 v -0.3806 -0.1860 -0.0176 v 0.3806 0.0583 0.7208 v -0.5312 -0.0169 0.5328 v -0.1269 -0.1860 -0.2629 v -0.0676 0.1120 0.3134 v -0.4990 -0.1860 0.2530 v 0.5444 -0.2390 0.3743 v 0.0677 -0.2625 0.7158 v -0.4736 -0.0427 0.7162 v -0.5747 -0.3533 0.6917 v -0.5264 -0.0053 -0.2037 v -0.4068 0.2525 0.7423 v -0.1861 0.1774 0.7415 v -0.4313 0.1095 0.3014 v 0.4821 0.2023 0.7414 v 0.5407 -0.0579 0.1290 v -0.5441 -0.1494 -0.0846 v 0.0761 -0.0511 0.7158 v 0.3468 -0.0033 -0.0937 v -0.0676 0.3636 0.7196 v 0.2115 -0.1860 0.3714 v -0.1269 -0.1860 -0.6181 v 0.1861 -0.0033 -0.5674 v 0.5159 -0.0030 -0.4490 v -0.3045 -0.1860 -0.5843 v 0.3975 0.3640 0.7265 v -0.2368 -0.3302 0.6779 v -0.4144 -0.1860 0.5575 v 0.4314 -0.3986 0.6853 v -0.5436 -0.1098 -0.3390 v 0.4060 -0.1860 0.2446 v 0.0592 -0.0033 -0.2291 v 0.3299 -0.1860 0.6083 v -0.0507 0.0195 0.6107 v 0.5437 -0.1017 -0.1698 v 0.1692 -0.0033 0.1177 v 0.3158 0.0125 0.2752 v -0.2192 -0.0061 0.6812 v 0.1607 0.1690 0.7408 v -0.0169 -0.1860 -0.4659 v 0.3722 -0.0600 -0.7673 v -0.2030 -0.1860 0.0754 v 0.2368 -0.2456 0.7158 v -0.2622 -0.0033 -0.3390 v -0.5074 -0.2403 -0.6519 v -0.3468 -0.0033 0.2446 v 0.1692 0.1250 0.4728 v 0.0761 -0.0520 -0.7660 v -0.0338 -0.1860 -0.1445 v -0.1607 -0.0033 0.2446 v 0.3292 0.1108 0.5802 v 0.4990 -0.0033 -0.6012 v -0.3721 -0.1860 0.3292 v -0.3890 0.0138 0.6084 v 0.2537 -0.1860 -0.0514 v 0.2622 -0.1860 -0.5420 v 0.5349 -0.0285 0.4891 v -0.1861 0.1242 0.4307 v -0.1099 -0.0033 -0.5082 v 0.4645 0.1226 0.3803 v 0.0167 -0.0034 0.3630 v -0.0846 -0.2456 0.7158 v -0.1945 -0.1860 0.5998 v 0.2537 -0.0033 -0.4405 v -0.1776 -0.1860 0.3545 v 0.1015 -0.3986 0.6853 v -0.4652 -0.2371 0.7158 v 0.4652 -0.0033 0.6252 v 0.2030 -0.1860 -0.2713 v 0.1100 -0.1860 0.2192 v 0.4229 -0.1860 -0.5420 v 0.4314 -0.1860 -0.2713 v -0.4482 -0.1860 0.1177 v -0.5502 -0.2402 -0.3813 v 0.4398 -0.1864 -0.7971 v -0.1776 -0.0033 -0.6266 v -0.2960 -0.0850 -0.7696 v 0.5752 -0.1779 0.6853 v -0.1099 0.0675 0.7249 v 0.4483 -0.1860 -0.1276 v 0.4652 -0.1860 0.1177 v 0.5075 -0.1860 -0.6604 v 0.5416 -0.2287 -0.4236 v 0.0592 -0.0028 0.0162 v -0.1861 -0.0033 -0.0007 v 0.3637 -0.2794 0.7158 v -0.2960 0.2189 0.6805 v 0.0423 0.0795 0.7279 v -0.5497 0.2281 0.7442 v -0.3806 -0.0033 -0.5335 v 0.3806 -0.0033 -0.4151 v -0.3975 -0.0033 -0.2121 v -0.2537 -0.1860 -0.3475 v 0.0930 0.1211 0.3636 v -0.5581 -0.1526 0.5159 v 0.0000 -0.1860 -0.6350 v 0.3299 -0.0033 -0.2206 v -0.4398 0.1432 0.6741 v 0.5583 -0.1527 0.0339 v -0.5264 -0.0053 -0.4151 v 0.2537 0.0583 0.7208 v 0.2538 0.3636 0.7196 v -0.5422 -0.0636 0.0078 v 0.2537 -0.1860 0.4899 v 0.2707 -0.0033 0.0416 v -0.0507 -0.1860 -0.0176 v 0.5437 -0.0853 -0.3305 v 0.4483 -0.1860 0.5491 v 0.0085 -0.1860 0.6167 v -0.4482 -0.1860 -0.2967 v 0.2960 -0.0034 0.6169 v -0.5430 -0.1173 -0.6519 v -0.4482 -0.1860 -0.1529 v 0.2284 -0.1860 -0.6858 v 0.5436 -0.1494 0.2897 v -0.3052 0.1110 0.5719 v -0.1015 0.2460 0.6867 v -0.1167 -0.1541 -0.7922 v 0.3299 -0.0033 -0.6689 v 0.1861 -0.0033 -0.1783 v -0.3129 -0.1860 -0.1191 v -0.0169 -0.0033 0.2361 v -0.2030 -0.1526 0.7158 v 0.2375 0.1040 0.2843 v -0.4144 -0.0321 -0.7615 v -0.4567 -0.1860 -0.5420 v 0.3299 -0.2403 -0.7789 v -0.5423 -0.1237 -0.2178 v -0.0423 -0.1860 -0.3475 v -0.4821 -0.0033 0.2361 v 0.1522 -0.1610 0.7158 v 0.1692 -0.1860 0.0331 v -0.0338 -0.0074 -0.7532 v 0.0508 -0.0033 -0.1106 v 0.0423 -0.1860 0.4560 v -0.4229 -0.0033 0.1262 v 0.5687 -0.2388 -0.1776 v -0.4489 0.3624 0.7320 v -0.4830 0.0949 0.5660 v -0.0846 -0.1860 0.1008 v 0.4736 0.0797 0.2693 v 0.1861 -0.1860 -0.4067 v 0.1015 -0.1860 -0.6942 v -0.2283 -0.1860 -0.6773 v 0.4821 0.1013 0.6737 v 0.1184 -0.0033 -0.6689 v 0.4821 -0.0033 -0.1783 v -0.3468 -0.2964 0.7158 v -0.4968 0.0505 0.4476 v -0.5436 -0.1098 -0.4743 v -0.5654 -0.1530 0.1523 v -0.0677 -0.1860 0.3884 v 0.0169 -0.1860 -0.2460 v -0.3045 0.1238 0.4307 v -0.2283 -0.1860 -0.2121 v 0.3722 0.1690 0.7412 v 0.4493 -0.2653 -0.7173 v 0.5731 0.1732 0.6819 v 0.1100 0.2542 0.6885 v 0.5424 -0.1176 0.4222 v -0.1522 -0.0033 -0.1614 v 0.0000 -0.1860 0.2023 v 0.0444 0.0762 0.6152 v 0.1184 -0.0033 -0.3559 v 0.4652 -0.0033 0.0670 v -0.3045 -0.1860 0.5660 v -0.3637 -0.0342 0.7158 v -0.3214 -0.0033 -0.0514 v -0.4060 -0.1860 0.4476 v -0.0930 0.1224 0.4895 v 0.3722 0.1102 0.2991 v 0.2622 -0.1860 0.2700 v 0.1438 -0.0033 -0.4659 v -0.1607 -0.0033 -0.3813 v -0.5404 -0.1355 0.3714 v 0.1692 -0.1102 -0.7692 v -0.2368 0.1013 0.6737 v 0.5498 -0.0765 0.7158 v 0.1438 0.0404 0.7161 v 0.4906 -0.2456 0.7158 v -0.5719 -0.0757 0.6840 v 0.0338 0.3123 0.7409 v 0.3806 -0.0595 0.7158 v 0.4398 -0.1860 0.3545 v -0.2706 -0.1860 -0.0092 v 0.0677 -0.0033 0.1685 v 0.3806 0.1256 0.4560 v 0.4483 -0.1860 -0.3897 v 0.5422 -0.1171 -0.4405 v 0.5395 -0.0513 0.2361 v -0.5698 -0.2390 -0.0317 v -0.1776 -0.0033 0.1262 v -0.4821 -0.1860 0.0162 v -0.2706 -0.1860 0.2700 v 0.2960 -0.1860 0.0585 v -0.4990 -0.0033 -0.6519 v -0.0197 -0.0046 0.7139 v -0.4652 -0.1695 -0.7971 v 0.5409 -0.1294 -0.0684 v 0.3722 -0.0033 0.0078 v 0.4736 0.2953 0.6948 v -0.1607 0.3123 0.7407 v 0.2107 0.2601 0.7440 v 0.0085 -0.3386 0.6779 v -0.5715 -0.2202 0.3207 v -0.0085 -0.1610 0.7158 v -0.5441 -0.0935 0.2530 v 0.2284 -0.1860 0.5913 v -0.0592 0.1514 0.6744 v 0.2707 -0.0934 -0.7698 v 0.4398 -0.0033 0.2192 v 0.2791 -0.0033 0.1685 v 0.0761 -0.0033 -0.5758 v -0.4313 -0.1357 0.7158 v -0.3383 -0.1860 0.0754 v 0.2960 -0.1860 -0.3221 v -0.1438 -0.1860 -0.3644 v 0.5687 -0.2388 0.4737 v 0.5755 0.2557 0.7416 v 0.0592 -0.1860 -0.0599 v -0.2875 -0.1860 -0.4490 v 0.1100 -0.2287 -0.7971 v -0.0167 -0.0034 0.4899 v 0.2707 0.1234 0.4980 v -0.5221 -0.0029 0.6336 v 0.0209 0.0834 0.2728 v -0.5264 -0.0053 -0.3136 v 0.0846 -0.1860 -0.4490 v -0.0930 -0.1860 0.6167 v 0.4398 -0.0033 -0.6942 v -0.2876 0.0193 0.6110 v 0.5412 -0.0637 0.5970 v 0.0683 0.1632 0.6750 v -0.3552 0.3365 0.7058 v 0.5409 -0.1293 -0.7365 v -0.4905 0.0736 0.7259 v 0.2375 0.1536 0.6765 v 0.1861 -0.3386 0.6779 v 0.5700 -0.2349 -0.6005 v -0.3045 -0.0033 -0.2460 v -0.0507 -0.0033 -0.3644 v -0.0254 -0.0033 -0.1783 v -0.3637 -0.0033 -0.4320 v 0.5416 -0.2287 0.6083 v 0.0959 0.1180 0.5431 v 0.3940 0.2644 0.7438 v -0.2622 -0.0033 -0.7280 v -0.5435 -0.0770 0.4560 v -0.2826 -0.1818 -0.7576 v -0.5348 -0.0285 -0.1099 v -0.5441 -0.0935 0.5913 v -0.2114 -0.1860 -0.5589 v 0.5687 -0.2388 0.0761 v 0.2199 -0.0027 0.2446 v 0.3383 -0.1864 0.7158 v -0.1015 -0.1860 -0.5251 v 0.3468 -0.1860 0.3292 v -0.2199 -0.1860 0.1854 v -0.0367 0.1069 0.5732 v 0.5244 -0.3986 0.7091 v -0.1522 0.0902 0.2736 v 0.2960 -0.0033 -0.3559 v 0.1523 -0.1860 0.1262 v -0.5582 -0.2541 0.7158 v -0.2424 0.2648 0.7434 v -0.1861 -0.2456 0.7158 v -0.4905 -0.3987 0.6928 v -0.5698 -0.1563 0.0331 v -0.5502 -0.2402 0.5491 v -0.4313 -0.1860 -0.6435 v -0.2594 0.0212 0.2684 v -0.2030 -0.1268 -0.7675 v 0.4821 -0.1860 -0.0092 v -0.4964 0.0586 0.3545 v -0.0846 -0.0033 0.0162 v 0.3891 0.0505 0.6193 v 0.2284 -0.1860 -0.1783 v 0.1353 -0.1860 0.4645 v -0.1861 -0.1860 0.4476 v -0.5654 -0.1530 -0.7450 v -0.0677 -0.1860 0.2953 v 0.5583 -0.1527 0.1269 v 0.3722 -0.1860 0.1177 v -0.1015 -0.0033 -0.6858 v 0.4821 -0.0096 0.7159 v 0.1945 -0.0030 0.6505 v -0.3468 0.0851 0.2706 v -0.0244 0.0875 0.3940 v 0.1945 0.1211 0.3636 v -0.1776 -0.3987 0.6928 v -0.2791 -0.0934 0.7163 v 0.3214 0.1181 0.6759 v -0.4652 -0.1860 0.3376 v 0.0254 -0.0033 -0.3136 v 0.3552 -0.1493 -0.7715 v -0.4729 0.2343 0.6827 v 0.5285 -0.0104 -0.2798 v -0.1092 -0.0105 0.6791 v -0.4859 -0.3020 -0.7145 v -0.3721 0.1690 0.7408 v 0.5415 -0.0637 0.0388 v -0.3954 0.1085 0.5838 v -0.5698 -0.2390 0.1797 v -0.3045 -0.3896 0.6782 v -0.3721 -0.0033 0.0247 v -0.3806 -0.0033 -0.1191 v 0.5413 -0.0646 -0.5364 v -0.4313 -0.3217 0.6779 v 0.4906 -0.1860 0.4476 v 0.5437 -0.1017 -0.6519 v -0.1184 -0.3217 0.6779 v 0.0846 -0.1827 0.6623 v -0.4229 0.1223 0.3887 v -0.1015 -0.1860 -0.7027 v -0.4736 -0.1860 -0.3813 v 0.1353 -0.1860 0.3038 v -0.0254 -0.0033 -0.5335 v 0.4908 0.0293 0.4391 v -0.3637 -0.1860 -0.3221 v -0.3439 -0.2391 -0.7964 v 0.5500 -0.2401 0.2869 v -0.5654 -0.2401 -0.1191 v 0.3722 -0.1860 -0.0853 v 0.2284 -0.0033 -0.6435 v 0.0254 -0.1860 -0.5420 v -0.0987 -0.2391 -0.7964 v 0.0874 0.0008 0.6107 v -0.5440 -0.0853 -0.5589 v 0.4483 -0.1018 -0.7697 v 0.0000 -0.0934 -0.7698 v -0.2791 -0.2287 0.6779 v 0.4314 -0.1860 0.6421 v -0.5654 0.0323 0.7133 v -0.1438 -0.1860 -0.1783 v -0.5159 -0.1526 0.7158 v -0.3721 -0.1860 -0.5166 v 0.2622 -0.0033 -0.1106 v -0.0930 -0.0033 -0.5927 v -0.5074 -0.0033 0.0585 v 0.3045 0.2956 0.7425 v 0.2284 0.1126 0.5732 v -0.4229 0.0498 0.6784 v -0.4482 -0.0033 -0.4490 v -0.1776 0.0339 0.6157 v 0.2622 -0.0033 -0.5251 v -0.2622 -0.1860 0.3630 v 0.4314 -0.0033 -0.0853 v 0.3383 -0.1860 0.5237 v 0.1607 -0.0765 0.7158 v -0.5714 -0.2351 -0.7111 v -0.5074 0.3110 0.6987 v -0.4229 -0.0030 -0.6096 v -0.2030 -0.0033 -0.2291 v 0.4060 -0.0033 -0.6097 v -0.1353 -0.1860 0.0247 v 0.3045 -0.0173 0.7158 v 0.1353 -0.1860 -0.2206 v 0.3045 -0.1860 -0.6266 v -0.2791 -0.0033 0.1769 v 0.4652 -0.0033 -0.5166 v -0.1431 0.1419 0.6763 v 0.5413 0.1156 0.7347 v 0.0839 -0.1493 -0.7715 v 0.3552 -0.3809 0.7158 v 0.5406 -0.1436 -0.2460 v 0.4314 0.1856 0.6768 v -0.0084 -0.0033 0.0670 v 0.2340 -0.1727 0.6747 v -0.0507 -0.0033 -0.4490 v -0.1438 0.1183 0.3519 v -0.2453 0.1201 0.5145 v -0.2876 0.1516 0.7373 v -0.4060 -0.1860 0.2530 v 0.2876 -0.1860 0.4053 v 0.0085 -0.1860 0.5321 v -0.4567 -0.0033 -0.1529 v 0.3383 -0.1860 0.1938 v 0.4398 -0.3217 0.7158 v 0.0167 -0.0034 0.5660 v 0.5700 -0.2349 -0.6851 v -0.0507 0.2787 0.7436 v -0.4905 -0.1860 0.4814 v -0.4652 -0.1860 0.6505 v -0.5159 -0.1860 -0.4574 v 0.5345 -0.0286 -0.1198 v -0.1015 0.1857 0.7428 v -0.3721 -0.2287 0.6779 v -0.4821 0.1769 0.7398 v -0.1691 -0.0595 0.7158 v -0.5427 -0.1781 -0.5843 v 0.5409 -0.1294 0.2023 v -0.4229 -0.2403 -0.7788 v -0.0416 0.0673 0.6751 v 0.5289 -0.1767 -0.1445 v 0.0930 0.1257 0.4475 v 0.1607 -0.2625 0.6779 v 0.4839 0.0133 0.5491 v 0.5714 -0.1610 -0.3644 v 0.1945 -0.1860 0.2023 v 0.4821 -0.0033 0.1515 v -0.4736 -0.0850 -0.7696 v 0.0338 -0.0033 -0.7027 v 0.1861 0.2189 0.6805 v -0.4652 -0.0033 -0.2544 v 0.1438 0.1264 0.6736 v -0.1099 0.0743 0.6135 v -0.4951 0.0662 0.2709 v 0.4990 -0.1860 -0.4743 v -0.4990 -0.1860 0.5744 v -0.2904 -0.0046 0.7139 v -0.3129 -0.1860 -0.6858 v -0.2368 -0.0033 -0.5758 v 0.1692 -0.1860 -0.5166 v 0.1353 -0.0033 -0.1191 v 0.1861 -0.0033 0.0416 v 0.1184 -0.3217 0.7158 v -0.1776 -0.0033 -0.4574 v 0.1523 -0.0033 0.1938 v 0.2368 -0.1860 -0.4659 v -0.3552 -0.1860 0.5068 v 0.1353 -0.1860 -0.0430 v -0.3975 -0.1860 -0.0937 v 0.2462 -0.1621 -0.7970 v -0.3383 -0.0027 -0.7442 v 0.4314 0.1156 0.7347 v 0.5435 -0.0770 0.3292 v -0.5714 -0.1614 -0.2883 v 0.1607 -0.1860 -0.7441 v -0.5413 0.1856 0.6768 v 0.1530 0.1071 0.2892 v 0.2960 0.1858 0.7428 v -0.1945 0.0598 0.7232 v 0.3947 0.1188 0.5373 v -0.0846 0.0080 0.2711 v 0.0846 0.1942 0.7434 v -0.3298 0.2448 0.7443 v -0.3975 -0.1185 -0.7686 v -0.2706 -0.0033 0.0162 v 0.3468 -0.1860 -0.5335 v -0.1861 -0.1860 0.2784 v 0.4821 -0.1860 0.2530 v -0.5074 -0.3133 0.6779 v 0.5251 0.2402 0.6837 v 0.3552 -0.1860 -0.2713 v -0.2622 -0.0028 -0.4151 v -0.0254 -0.0033 -0.2544 v -0.4990 -0.1860 0.1769 v 0.1353 -0.1860 0.3799 v 0.2622 -0.0033 -0.0345 v -0.3376 0.1478 0.6765 v 0.0345 0.2461 0.6847 v -0.4990 -0.1860 -0.2206 v -0.5715 -0.1695 0.4391 v 0.4645 0.1253 0.4560 v 0.2960 -0.3133 0.7158 v 0.1523 -0.1860 0.6252 v -0.2199 0.2272 0.6817 v 0.0930 -0.0030 0.0839 v 0.3637 -0.0033 -0.3221 v 0.1861 -0.1860 -0.6096 v 0.4144 -0.0033 -0.2121 v 0.2876 -0.1860 -0.1191 v -0.3214 -0.0033 -0.5927 v 0.4737 0.3640 0.7265 v -0.5426 -0.2353 -0.3052 v -0.0084 -0.0033 -0.0176 v 0.4144 -0.1860 -0.1952 v -0.1099 -0.1860 -0.4320 v -0.1522 -0.1860 0.1346 v 0.1861 -0.1860 0.5237 v -0.5347 -0.1721 -0.1558 v -0.1691 -0.1860 -0.7365 v -0.5715 -0.1695 0.2615 v -0.5222 -0.1854 0.1008 v -0.3129 0.1175 0.3460 v -0.2876 0.3046 0.6991 v -0.5715 -0.1695 -0.3897 v 0.5345 -0.0286 -0.6611 v 0.2453 0.0505 0.6193 v 0.5395 -0.0513 -0.3982 v 0.4906 -0.1860 -0.2121 v 0.4060 0.0505 0.2644 v 0.0254 -0.0030 0.6505 v -0.4144 0.0080 0.2711 v 0.4398 0.0415 0.6788 v 0.4906 -0.1860 -0.7441 v 0.5711 -0.1615 0.3710 v 0.1523 -0.0263 -0.7598 v 0.5698 -0.1563 0.6130 v -0.1099 -0.0850 -0.7696 v 0.1015 0.1215 0.7353 v -0.0507 0.1097 0.7337 v 0.3129 -0.0188 -0.7575 v -0.0085 -0.0765 0.7158 v 0.4314 -0.1860 -0.6350 v -0.3468 -0.1860 0.4053 v -0.3298 -0.1860 -0.3897 v 0.2791 -0.1860 -0.2460 v 0.3130 -0.1860 -0.7196 v 0.3891 -0.1860 -0.3475 v 0.4793 0.0073 0.2796 v -0.3890 0.2189 0.6805 v -0.4483 -0.2336 -0.7112 v 0.1692 0.2953 0.6948 v 0.1438 -0.0033 -0.2713 v -0.3468 -0.0033 0.1515 v -0.0507 -0.3217 0.7158 v 0.0592 -0.0033 -0.4997 v -0.4990 -0.0033 -0.0176 v 0.4229 -0.2625 0.6779 v -0.0423 -0.1860 -0.5674 v -0.1522 -0.1860 0.5321 v 0.3468 -0.0033 0.1938 v 0.3722 -0.0097 0.6647 v -0.0338 -0.1860 0.4560 v -0.1015 -0.1860 -0.0683 v -0.3637 -0.1860 -0.1698 v -0.2030 -0.1860 -0.2967 v 0.0930 -0.1860 0.0162 v -0.0084 -0.1860 0.1177 v 0.5416 -0.2287 0.0078 v -0.5440 -0.0853 0.0839 v 0.3214 0.0415 0.6788 v -0.2283 -0.0600 -0.7673 v 0.0139 0.0660 0.5406 v 0.0677 -0.0033 0.2446 v 0.4754 0.1011 0.6011 v 0.3722 0.2325 0.6844 v 0.2960 -0.2287 0.6779 v -0.0254 -0.2541 0.6779 v 0.0853 0.0589 0.6756 v -0.5654 -0.2401 -0.6096 v -0.4736 -0.0030 -0.7365 v 0.5075 -0.1860 0.1769 v 0.4906 -0.2352 -0.7969 v 0.5361 -0.0284 0.6662 v -0.4060 -0.0033 0.2023 v 0.4997 0.1702 0.6755 v 0.5708 -0.1695 0.4645 v -0.2622 -0.1860 0.6252 v -0.0846 0.1228 0.3970 v 0.1523 -0.1860 -0.3305 v -0.5401 -0.0512 -0.2629 v -0.0592 -0.1860 -0.2460 v -0.2537 -0.0033 -0.0684 v 0.4906 -0.1860 -0.5927 v -0.4060 0.1088 0.7312 v -0.1691 -0.0033 -0.0937 v 0.4483 -0.0033 -0.0007 v 0.0254 -0.3986 0.7091 v -0.2453 -0.1860 -0.1445 v 0.2058 0.0788 0.6745 v -0.3468 -0.0033 -0.3644 v 0.5075 -0.1724 0.6705 v -0.4905 -0.2286 -0.7680 v 0.1692 -0.3955 0.7139 v -0.4990 -0.1860 -0.6942 v 0.0180 0.0236 0.4363 v 0.5483 -0.1622 -0.7970 v 0.3221 0.3554 0.7117 v -0.3359 -0.1543 -0.7922 v -0.4560 0.0504 0.6176 v -0.0338 0.2317 0.6843 v 0.5654 -0.1530 -0.6101 v -0.4398 0.2967 0.6975 v -0.2706 0.0662 0.7226 v 0.5705 -0.2118 -0.5082 v -0.5581 0.1599 0.7386 v 0.0203 0.0185 0.2953 v 0.5687 -0.2388 -0.3552 v 0.4906 -0.3471 0.6779 v -0.0592 -0.1948 0.6779 v -0.5440 -0.0853 -0.1614 v 0.3891 0.1097 0.6736 v 0.2707 -0.0033 -0.1783 v -0.1522 -0.0033 0.0585 v -0.4482 -0.1860 -0.0430 v 0.0508 -0.1860 0.2530 v 0.0761 -0.1860 0.1600 v -0.0338 -0.1860 -0.6942 v 0.0677 -0.1860 -0.6266 v -0.4313 -0.0033 0.0585 v 0.0508 -0.1860 -0.1868 v -0.1184 -0.1864 0.7158 v 0.5751 -0.2447 0.7083 v 0.3806 -0.0033 -0.7280 v -0.4144 -0.0033 -0.6942 v 0.0761 -0.1860 -0.2798 v -0.2114 -0.0033 0.1854 v -0.3806 -0.0033 -0.2883 v -0.4821 -0.0033 0.1600 v 0.4821 -0.0849 0.7158 v -0.5699 0.2846 0.6923 v 0.2284 -0.0033 -0.3644 v -0.3637 -0.1860 -0.6350 v 0.1100 -0.0033 -0.0514 v 0.2876 -0.0033 -0.2883 v 0.5075 -0.0683 -0.7684 v -0.2537 0.0814 0.6109 v 0.3045 0.1113 0.3054 v 0.2368 0.1256 0.4391 v -0.1184 0.1138 0.5567 v -0.5331 -0.0227 0.4144 v 0.0283 0.0990 0.3383 v 0.2453 0.2884 0.6931 v 0.5703 -0.2350 0.5413 v -0.4313 -0.1860 -0.2206 v 0.3806 -0.1272 0.7158 v -0.2706 -0.1860 0.0585 v 0.0000 -0.0033 0.1685 v 0.2284 0.1858 0.7430 v 0.3975 -0.2403 -0.7788 v -0.3890 -0.1860 0.1769 v -0.1607 0.2448 0.7443 v 0.5075 -0.1860 0.3545 v 0.3975 0.1221 0.3719 v 0.5075 -0.1860 -0.3136 v -0.2452 -0.3986 0.7091 v 0.5426 -0.0697 -0.2291 v -0.5075 0.1265 0.6757 v 0.5658 0.1019 0.6737 v -0.4849 0.2591 0.7436 v 0.5498 0.1942 0.7434 v -0.5423 -0.2353 0.6252 v -0.3587 0.1185 0.5275 v -0.4398 -0.1860 -0.4743 v 0.3383 -0.0033 -0.4659 v -0.0423 -0.1860 0.5744 v -0.1607 -0.0033 -0.5504 v 0.2115 -0.1860 0.4391 v -0.1353 -0.0033 0.1769 v 0.2876 -0.1441 0.7158 v 0.0000 -0.1860 -0.3982 v 0.2622 0.1222 0.7350 v 0.0367 -0.2391 -0.7964 v -0.1099 0.3110 0.6987 v 0.1100 0.3039 0.7418 v -0.2114 0.3110 0.6987 v -0.5426 -0.2353 0.2530 v 0.5417 -0.2351 -0.2375 v -0.5440 -0.0853 0.1769 v -0.5367 -0.0355 -0.6012 v -0.5724 -0.1872 0.7071 v 0.0092 0.1363 0.7354 v -0.2622 -0.2794 0.7158 v -0.2537 0.1692 0.6778 v -0.0338 -0.2352 -0.7969 v 0.5444 -0.2390 0.1374 v -0.2791 -0.2352 -0.7969 v 0.2537 -0.0141 0.6746 v 0.5244 0.2956 0.7425 v -0.5502 -0.2402 -0.4489 v 0.0000 0.1772 0.6760 v 0.5423 -0.0699 -0.7111 v -0.3467 0.0417 0.6809 v 0.3383 0.1226 0.5063 v 0.0508 -0.1948 0.7158 v -0.4060 -0.1860 0.0416 v 0.0508 -0.1103 0.7158 v -0.0592 -0.1860 0.1769 v 0.0846 -0.1860 -0.5166 v 0.2284 -0.1860 -0.3305 v 0.3975 -0.2118 0.7158 v 0.2030 -0.0033 -0.4997 v -0.1269 -0.1860 0.4222 v 0.4398 -0.0033 -0.4574 v 0.2791 -0.1860 0.5491 v -0.5439 -0.1494 -0.5251 v 0.4906 -0.1860 0.0585 v -0.1945 -0.1860 -0.0007 v 0.2368 -0.1860 0.0331 v -0.2453 0.1233 0.4054 v 0.1776 -0.0033 -0.6942 v -0.2114 -0.1860 -0.3982 v -0.2622 -0.1779 0.7158 v 0.1889 0.3516 0.7319 v -0.1522 0.1156 0.7343 v 0.5285 -0.0105 0.0754 v 0.4990 0.0523 0.7193 v 0.4815 -0.3302 -0.7183 v 0.1663 0.1186 0.5365 v -0.3552 -0.0600 -0.7673 v -0.4229 -0.0141 0.6746 v -0.5331 -0.0227 -0.4821 v -0.5401 -0.0512 -0.3728 v 0.3891 -0.3302 0.6779 v 0.2453 -0.2963 0.6779 v -0.5441 -0.0935 -0.7111 v -0.4695 0.1221 0.4323 v 0.3552 0.3031 0.6966 v -0.5328 -0.1695 -0.7971 v 0.5312 -0.0169 0.3989 v -0.1607 -0.1724 0.6705 v 0.1917 -0.0046 0.7139 v -0.4951 0.0345 0.5237 v 0.5064 -0.2403 -0.6931 v -0.3045 0.0929 0.6739 v -0.5652 -0.1526 0.5836 v -0.5440 -0.0853 0.3207 v 0.4116 -0.0046 0.7139 v -0.0415 -0.1527 -0.7863 v -0.5714 -0.2351 0.4814 v -0.0846 0.0738 0.2662 v 0.1523 0.2365 0.7446 v -0.1438 0.0421 0.6771 v -0.5074 -0.1860 -0.3221 v -0.1099 -0.0034 0.6169 v -0.3552 0.2704 0.6916 v 0.1946 0.1168 0.7345 v -0.0375 0.1171 0.4475 v -0.4833 0.0946 0.4898 v -0.4905 0.0323 0.6790 v 0.5407 -0.0579 -0.0232 v 0.2622 0.0424 0.2650 v -0.5435 -0.0770 0.5237 v 0.0317 0.1043 0.4137 v 0.5710 -0.1610 -0.1952 v -0.0846 -0.0027 -0.1614 v -0.2283 0.1171 0.7326 v 0.0592 -0.1860 0.3968 v -0.2199 -0.0033 0.0754 v 0.3975 -0.1860 0.5068 v 0.3468 -0.1860 0.2615 v -0.2537 -0.0033 -0.6350 v -0.1184 -0.1860 0.3376 v 0.3975 -0.0033 -0.1529 v -0.3298 -0.1860 -0.0599 v -0.2791 -0.1860 -0.2544 v 0.4229 -0.0033 -0.3559 v 0.2030 -0.1860 0.2869 v -0.0084 -0.0033 -0.0937 v -0.3637 -0.0033 0.0923 v 0.5416 -0.1864 0.2361 v 0.3552 0.1692 0.6775 v -0.5715 -0.1779 -0.0345 v -0.1522 0.2023 0.6784 v -0.4144 -0.2710 0.7158 v 0.4144 -0.1860 -0.4405 v 0.0085 0.3636 0.7196 v -0.1353 -0.0033 -0.0345 v 0.0338 -0.1860 -0.6858 v 0.0761 -0.1860 0.5068 v -0.4398 -0.1860 0.3968 v -0.4144 -0.2033 0.7158 v -0.1353 0.3636 0.7196 v -0.0169 -0.1860 0.0331 v 0.2199 -0.1860 -0.1022 v 0.4060 -0.1860 0.0670 v -0.5430 -0.1177 0.6506 v 0.1269 -0.0027 0.6570 v 0.2622 -0.0033 -0.6942 v -0.2368 -0.0033 -0.2798 v -0.2537 -0.1860 -0.4997 v -0.5159 -0.2202 0.6779 v 0.5413 -0.0644 -0.6040 v 0.4314 -0.0188 -0.7575 v 0.2692 0.2438 0.7423 v 0.4936 0.0426 0.3799 v -0.5386 -0.0433 -0.6773 v -0.3298 0.0743 0.6135 v 0.0677 -0.3556 0.7158 v -0.4706 0.1160 0.3469 v -0.5267 -0.1822 0.3066 v 0.4990 -0.1860 0.6083 v 0.5159 -0.1860 -0.3897 v -0.5715 -0.1864 0.3799 v 0.3214 0.0865 0.7271 v 0.5075 -0.0033 0.2192 v -0.5714 -0.1614 -0.6858 v 0.5711 -0.1615 -0.6693 v 0.0374 0.1195 0.5231 v 0.5331 -0.0227 0.5540 v 0.5708 -0.1695 -0.1022 v -0.0846 -0.1860 -0.1868 v -0.3045 -0.0027 -0.4574 v 0.2453 -0.0033 -0.2460 v -0.1015 -0.1860 -0.3221 v -0.3298 -0.1860 0.2869 v 0.1607 -0.0033 -0.6266 v -0.4060 -0.1860 -0.3644 v -0.2622 -0.1860 0.5237 v -0.4736 -0.0033 -0.0853 v 0.3637 -0.0033 0.0670 v -0.0338 -0.3809 0.6779 v 0.3045 -0.1860 -0.0007 v -0.0761 -0.0033 -0.2206 v 0.2537 -0.0033 -0.5843 v 0.4906 -0.1860 -0.0683 v 0.4736 -0.0033 -0.2375 v 0.4821 -0.1860 -0.5335 v -0.4990 -0.1860 0.4222 v 0.0930 -0.0033 -0.4236 v -0.3721 -0.0934 0.7158 v -0.2960 -0.1860 0.1177 v 0.4398 -0.1860 -0.6942 v -0.4060 -0.1860 0.6167 v -0.3806 -0.1860 0.1177 v 0.2960 -0.1860 -0.4743 v 0.3806 -0.1860 0.3799 v -0.4398 -0.0033 -0.5082 v 0.1184 -0.0033 0.0247 v -0.5440 -0.1017 -0.4151 v -0.5292 -0.1768 -0.6435 v 0.2622 -0.2118 -0.7680 v -0.5502 -0.2402 -0.1783 v 0.2115 -0.0683 -0.7684 v -0.5328 -0.0173 0.7162 v 0.0000 0.1096 0.6759 v -0.4483 -0.3640 0.7158 v 0.4229 0.2026 0.7438 v 0.4165 0.1086 0.5914 v -0.0084 -0.1860 0.3884 v 0.0677 0.3636 0.7196 v -0.1438 -0.0032 -0.2290 v -0.3468 -0.3556 0.7158 v 0.3299 -0.0033 -0.6097 v 0.3214 -0.0033 -0.0345 v 0.3552 -0.2287 0.6779 v -0.1691 -0.1860 -0.6773 v -0.1776 -0.3302 0.6779 v 0.0508 -0.0033 -0.1698 v 0.4314 -0.1860 0.4476 v -0.1269 -0.1860 0.2784 v -0.3637 0.1223 0.3887 v -0.3214 -0.0033 -0.1191 v 0.4398 -0.1860 0.2953 v 0.0338 0.2532 0.7442 v -0.0930 -0.0263 -0.7598 v 0.5159 -0.1357 0.7158 v -0.5393 -0.0934 -0.7696 v -0.2615 0.2095 0.7437 v 0.4596 0.2563 0.7422 v 0.4574 0.2402 0.6837 v -0.2255 0.0009 0.6105 v 0.5417 -0.1236 0.5068 v 0.0169 -0.0379 -0.7630 v -0.5409 -0.1437 0.2192 v 0.5440 -0.0853 -0.1106 v 0.4753 0.1040 0.3263 v -0.5288 -0.0104 0.2023 v -0.5435 -0.0770 0.3968 v 0.1692 -0.2033 0.6779 v -0.3157 -0.0049 0.6618 v 0.1353 -0.0173 0.7158 v -0.2435 -0.1571 -0.7954 v -0.3806 -0.1948 -0.7971 v 0.2876 -0.0033 0.2277 v 0.1015 0.0822 0.6127 v 0.5416 -0.2287 -0.1106 v -0.1438 -0.2541 0.6779 v -0.3045 -0.3048 0.6779 v 0.5756 0.3000 0.7051 v -0.5074 -0.0033 0.4645 v -0.4229 0.0665 0.2644 v 0.3130 -0.3725 0.6779 v 0.5263 -0.1821 0.4983 v -0.3869 0.0941 0.6762 v 0.5667 -0.3640 0.6780 v 0.2960 0.1692 0.6775 v 0.5243 -0.2341 -0.6350 v 0.4144 0.2824 0.6938 v -0.4889 0.0083 0.3799 v -0.1015 0.2532 0.7442 v -0.5703 -0.1228 0.7157 v 0.5712 -0.1610 -0.4828 v -0.3975 -0.1860 -0.5674 v 0.3722 -0.1860 -0.5843 v -0.1099 -0.0033 -0.4067 v -0.4398 -0.1860 0.2023 v -0.2368 -0.0033 0.1346 v 0.4398 -0.1860 0.1685 v -0.1607 -0.1860 -0.5082 v -0.0761 -0.1860 -0.6519 v 0.4906 -0.2879 0.6779 v -0.3721 -0.1724 0.6705 v 0.3214 -0.1860 -0.0599 v 0.5285 -0.0104 -0.5251 v 0.2030 -0.0033 -0.0937 v -0.1522 -0.2964 0.7158 v -0.2453 -0.1860 -0.0599 v -0.2368 -0.1860 -0.6096 v 0.2284 -0.0033 0.1431 v -0.4736 -0.1860 -0.1022 v 0.4144 -0.0033 0.1685 v 0.2876 -0.1860 -0.3897 v -0.0084 -0.1860 -0.1952 v 0.0169 -0.0033 -0.5843 v 0.0338 -0.1860 -0.1106 v 0.1184 -0.2372 0.7162 v -0.4229 -0.0680 0.7158 v 0.3891 -0.1860 -0.4912 v 0.2622 -0.1860 0.3461 v 0.1353 0.1940 0.6776 v -0.3975 0.3206 0.7399 v -0.5074 0.3636 0.7196 v 0.1607 -0.2402 -0.7725 v 0.3214 0.1257 0.4391 v 0.3017 -0.1536 -0.7892 v -0.3890 0.1163 0.3379 v 0.1776 -0.1779 -0.7971 v -0.0423 0.3167 0.7019 v 0.1523 0.0193 0.6120 v 0.5705 -0.1864 -0.7196 v 0.4933 0.0426 0.3207 v -0.0796 -0.1818 -0.7576 v 0.0684 -0.0043 0.6861 v 0.4852 0.0886 0.4194 v -0.4821 -0.0033 -0.3813 v 0.5328 -0.0228 -0.1903 v -0.5075 0.1276 0.7362 v -0.4889 0.0163 0.5885 v -0.5413 0.0668 0.6771 v -0.1078 0.0940 0.6762 v 0.1720 0.0288 0.2680 v -0.1861 0.0422 0.2632 v -0.5423 -0.2034 0.0416 v -0.5440 -0.0853 -0.0430 v 0.0677 -0.2034 -0.7680 v -0.5715 -0.2118 0.1262 v -0.3129 0.0422 0.2632 v 0.3637 -0.0033 0.2530 v 0.4933 0.0427 0.6146 v -0.5497 0.2955 0.7422 v -0.0592 0.0359 0.7166 v -0.2622 0.0359 0.6777 v -0.4821 0.1778 0.6781 v -0.2030 0.1136 0.3215 v 0.4821 0.1358 0.7377 v 0.1438 0.1184 0.3434 v 0.5409 -0.1294 0.6506 v 0.5654 -0.1530 -0.0258 v -0.4652 -0.0033 0.6421 v -0.0155 0.0505 0.3207 v -0.2622 -0.0033 -0.2121 v 0.3975 -0.1860 -0.7281 v 0.0126 0.0505 0.3799 f 1 966 684 f 2 1011 983 f 3 779 643 f 4 940 739 f 5 872 595 f 6 647 991 f 7 1007 1004 f 8 946 673 f 9 975 490 f 10 915 732 f 11 786 731 f 12 1015 563 f 13 821 736 f 14 678 641 f 15 705 658 f 16 985 689 f 17 808 900 f 18 968 604 f 19 720 738 f 20 904 715 f 21 984 892 f 22 785 743 f 23 676 630 f 24 737 560 f 25 869 584 f 26 801 637 f 27 767 709 f 28 887 910 f 29 787 950 f 30 943 543 f 31 675 551 f 32 947 845 f 33 893 553 f 34 870 597 f 35 477 582 f 36 960 762 f 37 859 804 f 38 897 903 f 39 564 726 f 40 487 465 f 41 698 455 f 42 756 740 f 43 586 550 f 44 882 701 f 45 874 902 f 46 992 780 f 47 953 655 f 48 1000 708 f 49 937 609 f 50 963 763 f 51 817 877 f 52 761 839 f 53 713 777 f 54 830 558 f 55 1002 614 f 56 749 669 f 57 686 742 f 58 864 682 f 59 816 605 f 60 790 854 f 61 615 542 f 62 973 886 f 63 834 608 f 64 923 944 f 65 387 591 f 66 690 687 f 67 972 871 f 68 768 245 f 69 1006 789 f 70 729 679 f 71 901 764 f 72 1023 883 f 73 772 730 f 74 880 596 f 75 958 809 f 76 917 680 f 77 819 828 f 78 918 776 f 79 603 600 f 80 445 671 f 81 714 868 f 82 990 936 f 83 911 748 f 84 863 533 f 85 913 1022 f 86 836 873 f 87 934 525 f 88 916 578 f 89 746 815 f 90 855 662 f 91 803 783 f 92 865 632 f 93 791 1021 f 94 851 727 f 95 703 575 f 96 977 745 f 97 978 895 f 98 530 355 f 99 631 492 f 100 982 653 f 101 765 702 f 102 987 942 f 103 920 898 f 104 766 488 f 105 823 559 f 106 994 747 f 107 905 814 f 108 989 833 f 109 980 718 f 110 961 907 f 111 867 875 f 112 568 754 f 113 969 683 f 114 552 648 f 115 908 733 f 116 884 508 f 117 659 774 f 118 773 890 f 119 914 811 f 120 909 534 f 121 755 436 f 122 795 494 f 123 926 707 f 124 970 506 f 125 1009 935 f 126 1013 922 f 127 797 792 f 128 721 413 f 129 674 844 f 130 697 758 f 131 775 617 f 132 840 533 f 133 891 645 f 134 1008 625 f 135 769 689 f 136 924 576 f 137 974 862 f 138 1003 719 f 139 744 521 f 140 566 843 f 141 866 584 f 142 650 771 f 143 835 964 f 144 886 507 f 145 860 406 f 146 760 458 f 147 717 457 f 148 995 927 f 149 1024 657 f 150 672 660 f 151 628 781 f 152 752 682 f 153 813 528 f 154 849 644 f 155 832 825 f 156 1010 573 f 157 750 630 f 158 667 666 f 159 878 979 f 160 532 555 f 161 885 562 f 162 740 565 f 163 623 700 f 164 812 500 f 165 770 612 f 166 1018 642 f 167 1001 1012 f 168 876 555 f 169 959 757 f 170 948 784 f 171 853 658 f 172 889 554 f 173 828 664 f 174 906 774 f 175 734 919 f 176 732 619 f 177 1011 656 f 178 888 551 f 179 715 754 f 180 678 492 f 181 762 606 f 182 1017 692 f 183 786 803 f 184 829 669 f 185 663 685 f 186 1014 708 f 187 1019 757 f 188 996 773 f 189 722 640 f 190 764 648 f 191 1005 597 f 192 755 718 f 193 537 503 f 194 834 604 f 195 568 486 f 196 810 852 f 197 716 463 f 198 794 695 f 199 738 567 f 200 891 857 f 201 971 695 f 202 548 516 f 203 821 529 f 204 848 713 f 205 951 724 f 206 993 578 f 207 904 839 f 208 502 663 f 209 815 605 f 210 698 657 f 211 763 781 f 212 802 688 f 213 770 621 f 214 954 714 f 215 700 892 f 216 661 540 f 217 865 721 f 218 928 679 f 219 930 977 f 220 759 607 f 221 924 916 f 222 909 819 f 223 830 808 f 224 679 820 f 225 728 937 f 226 983 982 f 227 650 783 f 228 557 608 f 229 927 992 f 230 507 630 f 231 829 669 f 232 907 969 f 233 767 626 f 234 867 761 f 235 997 877 f 236 939 903 f 237 941 799 f 238 890 756 f 239 1007 925 f 240 900 753 f 241 974 676 f 242 760 912 f 243 816 639 f 244 898 822 f 245 784 768 f 246 711 709 f 247 981 592 f 248 627 575 f 249 806 902 f 250 748 666 f 251 936 619 f 252 880 593 f 253 766 637 f 254 869 628 f 255 881 978 f 256 913 633 f 257 831 584 f 258 798 690 f 259 688 570 f 260 818 980 f 261 880 752 f 262 956 505 f 263 854 929 f 264 894 988 f 265 807 687 f 266 680 917 f 267 932 782 f 268 962 598 f 269 952 837 f 270 915 827 f 271 788 696 f 272 914 887 f 273 968 697 f 274 698 614 f 275 985 744 f 276 826 853 f 277 953 568 f 278 856 479 f 279 823 1004 f 280 958 719 f 281 1004 665 f 282 866 528 f 283 873 759 f 284 847 730 f 285 1012 582 f 286 779 643 f 287 1019 861 f 288 871 905 f 289 921 949 f 290 833 726 f 291 845 792 f 292 872 638 f 293 851 854 f 294 745 660 f 295 925 787 f 296 755 558 f 297 741 896 f 298 894 986 f 299 972 856 f 300 970 935 f 301 975 596 f 302 978 832 f 303 885 882 f 304 973 750 f 305 865 762 f 306 694 627 f 307 940 739 f 308 976 509 f 309 841 585 f 310 1006 984 f 311 646 467 f 312 689 744 f 313 1020 999 f 314 692 1021 f 315 631 773 f 316 749 721 f 317 716 660 f 318 844 674 f 319 931 922 f 320 860 624 f 321 741 981 f 322 982 796 f 323 742 991 f 324 998 800 f 325 947 722 f 326 644 775 f 327 948 652 f 328 1022 840 f 329 956 457 f 330 806 874 f 331 863 641 f 332 852 694 f 333 859 769 f 334 949 920 f 335 612 512 f 336 929 803 f 337 933 737 f 338 870 661 f 339 786 837 f 340 969 960 f 341 736 609 f 342 1002 802 f 343 906 751 f 344 960 599 f 345 887 811 f 346 557 83 f 347 613 690 f 348 946 659 f 349 1003 791 f 350 685 682 f 351 667 487 f 352 842 731 f 353 919 726 f 354 938 967 f 355 897 530 f 356 1004 823 f 357 790 712 f 358 683 954 f 359 1008 1003 f 360 933 612 f 361 876 757 f 362 950 850 f 363 828 664 f 364 899 602 f 365 835 550 f 366 830 558 f 367 753 600 f 368 857 779 f 369 911 813 f 370 622 479 f 371 836 465 f 372 916 88 f 373 767 788 f 374 990 782 f 375 1008 942 f 376 1024 804 f 377 1017 518 f 378 706 908 f 379 763 498 f 380 947 855 f 381 831 851 f 382 534 120 f 383 986 1023 f 384 1014 710 f 385 877 707 f 386 795 793 f 387 591 133 f 388 635 538 f 389 801 766 f 390 713 848 f 391 1007 727 f 392 903 706 f 393 820 670 f 394 913 464 f 395 965 843 f 396 897 825 f 397 910 944 f 398 843 742 f 399 967 908 f 400 745 544 f 401 912 987 f 402 961 993 f 403 794 868 f 404 818 536 f 405 975 457 f 406 846 995 f 407 868 585 f 408 934 737 f 409 821 95 f 410 893 559 f 411 964 168 f 412 839 875 f 413 749 599 f 414 735 993 f 415 838 990 f 416 730 756 f 417 686 844 f 418 924 789 f 419 733 763 f 420 852 642 f 421 1000 895 f 422 862 92 f 423 952 731 f 424 954 714 f 425 966 663 f 426 717 147 f 427 670 597 f 428 845 778 f 429 769 567 f 430 945 771 f 431 888 996 f 432 922 793 f 433 875 752 f 434 153 282 f 435 814 107 f 436 810 755 f 437 932 782 f 438 857 3 f 439 983 1011 f 440 31 675 f 441 902 840 f 442 904 20 f 443 758 130 f 444 738 611 f 445 676 157 f 446 955 72 f 447 958 677 f 448 965 754 f 449 1001 824 f 450 1016 709 f 451 1006 69 f 452 943 774 f 453 805 569 f 454 921 898 f 455 41 554 f 456 930 720 f 457 956 147 f 458 1015 629 f 459 204 66 f 460 919 807 f 461 957 701 f 462 980 718 f 463 716 830 f 464 870 394 f 465 811 40 f 466 774 659 f 467 613 311 f 468 991 784 f 469 951 989 f 470 879 183 f 471 842 884 f 472 740 714 f 473 926 997 f 474 951 205 f 475 963 832 f 476 998 1014 f 477 126 386 f 478 891 756 f 479 821 622 f 480 934 643 f 481 1012 896 f 482 861 937 f 483 804 135 f 484 930 977 f 485 860 1010 f 486 853 658 f 487 40 818 f 488 972 856 f 489 918 213 f 490 924 9 f 491 981 792 f 492 99 180 f 493 981 579 f 494 1001 690 f 495 942 218 f 496 878 953 f 497 786 357 f 498 931 1013 f 499 683 337 f 500 812 164 f 501 56 507 f 502 684 966 f 503 889 124 f 504 849 96 f 505 262 84 f 506 124 1002 f 507 886 230 f 508 254 116 f 509 607 308 f 510 665 815 f 511 986 892 f 512 770 335 f 513 1016 662 f 514 46 203 f 515 794 118 f 516 988 984 f 517 1014 708 f 518 1017 55 f 519 845 947 f 520 807 793 f 521 899 744 f 522 791 210 f 523 579 321 f 524 796 175 f 525 770 649 f 526 75 809 f 527 955 979 f 528 911 153 f 529 914 821 f 530 396 98 f 531 921 626 f 532 160 304 f 533 863 132 f 534 874 330 f 535 957 925 f 536 404 109 f 537 905 425 f 538 785 945 f 539 915 651 f 540 695 559 f 541 854 60 f 542 995 148 f 543 775 943 f 544 930 54 f 545 734 824 f 546 889 172 f 547 817 350 f 548 56 202 f 549 814 877 f 550 964 835 f 551 31 812 f 552 289 114 f 553 794 33 f 554 172 819 f 555 168 160 f 556 305 36 f 557 228 130 f 558 192 54 f 559 893 540 f 560 907 360 f 561 925 851 f 562 1007 1004 f 563 912 12 f 564 39 353 f 565 162 890 f 566 742 843 f 567 640 199 f 568 112 195 f 569 453 728 f 570 1009 229 f 571 994 415 f 572 942 625 f 573 788 767 f 574 883 623 f 575 703 248 f 576 894 52 f 577 1018 64 f 578 916 88 f 579 176 493 f 580 732 481 f 581 129 674 f 582 747 285 f 583 883 72 f 584 257 141 f 585 81 309 f 586 43 304 f 587 72 892 f 588 276 532 f 589 992 856 f 590 796 100 f 591 643 645 f 592 764 247 f 593 58 252 f 594 820 447 f 595 872 292 f 596 74 301 f 597 870 34 f 598 751 466 f 599 413 344 f 600 79 151 f 601 1009 935 f 602 788 271 f 603 79 900 f 604 194 18 f 605 209 59 f 606 181 92 f 607 63 509 f 608 63 228 f 609 49 341 f 610 70 191 f 611 855 444 f 612 360 165 f 613 859 37 f 614 55 657 f 615 899 1010 f 616 822 949 f 617 906 343 f 618 660 150 f 619 994 936 f 620 478 133 f 621 213 78 f 622 959 821 f 623 163 574 f 624 266 373 f 625 572 134 f 626 454 233 f 627 944 923 f 628 419 151 f 629 798 376 f 630 23 750 f 631 315 99 f 632 862 92 f 633 256 85 f 634 878 170 f 635 945 388 f 636 828 249 f 637 253 288 f 638 849 872 f 639 243 209 f 640 189 797 f 641 331 14 f 642 1018 917 f 643 480 286 f 644 326 154 f 645 891 133 f 646 1024 311 f 647 323 6 f 648 778 190 f 649 934 337 f 650 999 1020 f 651 741 205 f 652 858 47 f 653 982 439 f 654 1013 785 f 655 953 47 f 656 998 177 f 657 1021 314 f 658 15 171 f 659 962 466 f 660 618 150 f 661 216 338 f 662 380 822 f 663 425 864 f 664 173 809 f 665 971 281 f 666 158 250 f 667 158 351 f 668 961 184 f 669 829 184 f 670 393 224 f 671 974 241 f 672 781 150 f 673 8 166 f 674 844 318 f 675 31 621 f 676 241 23 f 677 958 280 f 678 14 180 f 679 928 224 f 680 917 76 f 681 1011 439 f 682 350 58 f 683 358 499 f 684 1 502 f 685 864 350 f 686 742 417 f 687 265 319 f 688 259 212 f 689 312 135 f 690 66 494 f 691 929 941 f 692 1024 314 f 693 291 845 f 694 306 332 f 695 540 201 f 696 271 76 f 697 882 273 f 698 274 210 f 699 519 127 f 700 215 163 f 701 957 885 f 702 951 290 f 703 95 272 f 704 148 259 f 705 15 853 f 706 392 378 f 707 997 123 f 708 1014 998 f 709 450 246 f 710 384 177 f 711 307 103 f 712 842 11 f 713 53 390 f 714 81 214 f 715 179 20 f 716 463 197 f 717 147 164 f 718 192 109 f 719 280 138 f 720 343 19 f 721 217 128 f 722 189 797 f 723 1006 69 f 724 833 290 f 725 71 247 f 726 290 353 f 727 94 561 f 728 225 15 f 729 70 925 f 730 416 73 f 731 952 11 f 732 580 896 f 733 939 419 f 734 175 545 f 735 414 69 f 736 13 341 f 737 408 337 f 738 374 444 f 739 940 307 f 740 472 162 f 741 297 651 f 742 323 566 f 743 931 22 f 744 521 275 f 745 400 294 f 746 89 303 f 747 106 582 f 748 250 83 f 749 413 316 f 750 157 304 f 751 906 343 f 752 433 261 f 753 367 240 f 754 448 179 f 755 436 192 f 756 238 478 f 757 169 361 f 758 443 273 f 759 283 220 f 760 242 146 f 761 234 52 f 762 36 181 f 763 211 419 f 764 71 190 f 765 449 167 f 766 253 389 f 767 373 233 f 768 68 245 f 769 135 333 f 770 512 165 f 771 1020 430 f 772 73 188 f 773 188 890 f 774 466 174 f 775 131 543 f 776 918 847 f 777 401 799 f 778 949 648 f 779 368 3 f 780 46 846 f 781 672 211 f 782 932 374 f 783 91 999 f 784 948 170 f 785 22 538 f 786 339 11 f 787 29 295 f 788 271 602 f 789 993 69 f 790 60 357 f 791 93 522 f 792 291 127 f 793 386 1001 f 794 553 198 f 795 386 122 f 796 590 524 f 797 127 722 f 798 376 629 f 799 237 777 f 800 1020 1000 f 801 389 26 f 802 125 935 f 803 91 336 f 804 376 37 f 805 453 482 f 806 874 330 f 807 265 654 f 808 223 17 f 809 958 75 f 810 436 196 f 811 119 345 f 812 500 164 f 813 911 153 f 814 549 435 f 815 209 89 f 816 59 243 f 817 51 547 f 818 260 404 f 819 222 77 f 820 594 393 f 821 13 529 f 822 947 380 f 823 279 105 f 824 449 205 f 825 155 396 f 826 979 276 f 827 901 270 f 828 173 636 f 829 184 231 f 830 223 54 f 831 257 381 f 832 155 475 f 833 290 724 f 834 194 63 f 835 143 550 f 836 371 86 f 837 269 339 f 838 990 415 f 839 412 52 f 840 441 132 f 841 309 340 f 842 712 155 f 843 398 395 f 844 674 318 f 845 291 428 f 846 992 406 f 847 776 284 f 848 204 785 f 849 638 504 f 850 102 362 f 851 293 94 f 852 332 642 f 853 171 486 f 854 263 541 f 855 380 90 f 856 278 589 f 857 368 891 f 858 991 652 f 859 37 613 f 860 320 485 f 861 482 287 f 862 422 632 f 863 533 84 f 864 685 58 f 865 305 92 f 866 141 282 f 867 234 111 f 868 407 403 f 869 254 25 f 870 34 464 f 871 288 67 f 872 292 5 f 873 283 964 f 874 806 534 f 875 433 412 f 876 361 168 f 877 235 549 f 878 159 634 f 879 470 831 f 880 74 261 f 881 978 255 f 882 303 697 f 883 1023 583 f 884 116 963 f 885 701 303 f 886 507 62 f 887 28 345 f 888 431 178 f 889 172 546 f 890 238 773 f 891 645 478 f 892 511 21 f 893 33 410 f 894 264 298 f 895 421 97 f 896 481 732 f 897 355 396 f 898 103 244 f 899 521 615 f 900 240 17 f 901 827 71 f 902 441 45 f 903 236 392 f 904 207 20 f 905 537 107 f 906 617 343 f 907 560 232 f 908 967 115 f 909 222 120 f 910 397 28 f 911 528 813 f 912 987 401 f 913 394 85 f 914 272 529 f 915 270 539 f 916 88 578 f 917 642 680 f 918 776 78 f 919 353 460 f 920 103 921 f 921 289 920 f 922 432 319 f 923 64 944 f 924 418 221 f 925 561 295 f 926 473 287 f 927 148 229 f 928 218 679 f 929 691 336 f 930 544 219 f 931 498 743 f 932 782 267 f 933 360 337 f 934 408 649 f 935 125 300 f 936 251 82 f 937 49 482 f 938 967 354 f 939 236 733 f 940 307 739 f 941 237 691 f 942 102 572 f 943 452 30 f 944 627 923 f 945 430 635 f 946 8 348 f 947 380 822 f 948 170 327 f 949 334 289 f 950 362 691 f 951 469 205 f 952 269 423 f 953 655 47 f 954 424 214 f 955 527 159 f 956 262 457 f 957 701 461 f 958 677 75 f 959 169 622 f 960 36 344 f 961 402 668 f 962 268 659 f 963 475 50 f 964 411 873 f 965 395 448 f 966 1 425 f 967 399 908 f 968 273 18 f 969 340 232 f 970 300 124 f 971 201 665 f 972 299 67 f 973 62 304 f 974 137 241 f 975 9 301 f 976 308 137 f 977 96 484 f 978 97 881 f 979 826 527 f 980 109 462 f 981 491 247 f 982 322 653 f 983 439 226 f 984 21 310 f 985 16 275 f 986 383 511 f 987 102 912 f 988 516 21 f 989 108 469 f 990 838 82 f 991 858 468 f 992 589 46 f 993 789 206 f 994 571 106 f 995 148 542 f 996 188 14 f 997 235 707 f 998 476 324 f 999 650 313 f 1000 421 48 f 1001 167 449 f 1002 55 342 f 1003 138 349 f 1004 356 7 f 1005 191 105 f 1006 723 451 f 1007 7 391 f 1008 375 359 f 1009 125 601 f 1010 156 615 f 1011 681 439 f 1012 481 285 f 1013 654 126 f 1014 186 708 f 1015 12 458 f 1016 513 450 f 1017 377 182 f 1018 577 642 f 1019 287 187 f 1020 771 800 f 1021 657 1024 f 1022 328 441 f 1023 883 72 f 1024 376 149 ================================================ FILE: visualization/triangled_cup.obj ================================================ # OBJ file v -0.8078 -0.4863 0.2729 v 0.8957 0.4441 -0.0088 v -0.4467 0.6879 -0.5017 v 0.1788 -0.5011 -0.6617 v 0.3709 -0.4986 0.5353 v -0.1023 0.6081 0.6096 v -0.6451 -0.2002 -0.5714 v 0.2685 0.2944 -0.5186 v -0.7377 0.3154 0.1917 v -0.2926 -0.1467 0.7527 v 0.8313 -0.3356 -0.0646 v -0.1601 -0.4975 -0.0079 v 0.4061 0.1834 0.4298 v 0.0788 0.6625 -0.0183 v -0.1323 -0.0171 -0.7465 v -0.8910 -0.1071 -0.0786 v 0.3461 -0.5203 -0.1394 v 0.4998 -0.1521 -0.4546 v -0.6858 0.2877 -0.3231 v -0.6948 -0.5448 -0.2155 v -0.4141 0.6621 0.0420 v -0.3089 -0.5433 -0.6844 v -0.7026 -0.0670 0.4975 v -0.1425 -0.5230 0.4831 v 0.0386 0.7160 -0.5115 v 0.3571 0.6779 0.3708 v 0.5933 0.0798 -0.0015 v 0.1848 -0.1094 0.7089 v -0.4576 0.3350 0.5453 v 0.4709 0.4765 -0.1541 v -0.5414 -0.4662 0.6130 v -0.3728 0.2942 -0.6004 v 0.5655 -0.1868 0.3504 v -0.1023 0.2051 0.6733 v -0.4735 0.7147 0.4434 v 0.5702 -0.5286 0.1762 v 0.1790 -0.5441 0.2027 v -0.0521 -0.5424 -0.3698 v -0.6876 0.6829 -0.2175 v -0.4390 -0.5391 0.2607 v 0.2128 -0.1417 -0.6915 v -0.1928 0.6625 -0.2397 v -0.1425 0.6625 0.2634 v -0.0526 0.3957 -0.6253 v -0.0131 -0.3764 0.7585 v 0.4909 0.1583 -0.3094 v -0.3836 -0.5353 -0.3397 v 0.1511 0.4010 0.5649 v 0.3195 0.7156 -0.3397 v -0.6972 0.6581 0.2083 v 0.4561 -0.4768 -0.4574 v 0.4941 0.3551 0.1407 v 0.4299 0.7158 0.0521 v 0.9106 0.1263 -0.0077 v -0.8229 -0.2800 -0.3296 v -0.8282 0.0178 0.2265 v -0.3830 -0.2267 -0.7289 v -0.6248 -0.5106 -0.5209 v -0.0988 -0.3434 -0.7636 v -0.7576 0.0039 -0.3872 v -0.8801 -0.3963 -0.0184 v 0.6017 -0.3412 -0.2425 v -0.4820 0.0320 -0.6399 v -0.4592 0.0578 0.6456 v -0.7458 0.4301 -0.0683 v -0.4940 -0.5433 -0.0183 v -0.2773 -0.4621 0.7243 v -0.8138 0.1545 -0.0184 v 0.0929 0.1387 -0.6605 v 0.4035 -0.2201 0.5680 v -0.6566 0.1932 0.4258 v 0.0888 0.6629 0.4041 v 0.6723 0.6072 0.0018 v -0.2028 0.6183 -0.6056 v 0.8090 -0.1091 0.0735 v 0.3478 0.0420 -0.5588 v 0.0990 -0.5474 0.5853 v -0.7387 -0.3268 0.4689 v -0.5443 -0.2070 0.6517 v 0.5602 0.0574 0.2566 v -0.6137 0.4667 0.3836 v -0.8691 -0.2372 0.2091 v 0.0890 -0.5457 -0.1391 v 0.2326 0.1187 0.6068 v 0.5967 -0.0669 -0.2381 v -0.0719 -0.5434 0.2237 v -0.0520 -0.0364 0.7527 v 0.2180 -0.5121 -0.3889 v -0.5458 0.4487 -0.4522 v -0.0620 -0.5474 -0.6220 v 0.2264 -0.3565 0.6802 v 0.5926 -0.5232 -0.0685 v 0.3871 0.4192 0.3634 v 0.2233 0.5576 -0.5025 v 0.0587 0.6628 -0.2799 v 0.6440 -0.2767 0.1103 v 0.3422 -0.3364 -0.6132 v -0.4544 0.6625 -0.2397 v -0.1626 0.6621 0.0320 v -0.3639 0.5526 0.5657 v 0.3985 0.3757 -0.3504 v -0.6153 -0.5474 0.4042 v -0.5713 0.1941 -0.5077 v 0.3884 -0.4897 0.3109 v -0.1923 0.4052 0.6268 v -0.6292 0.7038 0.0018 v -0.3634 -0.5053 0.4838 v 0.2901 0.6625 -0.1089 v -0.1826 0.2141 -0.6670 v -0.3739 0.6621 0.2634 v 0.2599 0.6621 0.1829 v -0.2525 0.0619 0.7158 v 0.5302 -0.5473 -0.2695 v -0.7164 -0.4865 0.0821 v 0.4783 -0.0140 0.4531 v -0.4723 -0.4079 -0.6673 v 0.5281 0.2441 -0.1163 v 0.3404 -0.5266 0.0723 v 0.4506 0.5510 0.2155 v -0.3767 0.5002 -0.5618 v -0.2334 -0.5435 -0.2000 v 0.0171 -0.1569 -0.7578 v 0.0684 -0.5353 0.3834 v -0.2227 -0.5148 -0.5001 v -0.2438 0.7118 0.5075 v 0.6419 -0.1154 -0.0478 v 0.4962 -0.3667 0.4518 v -0.8143 0.0720 -0.2084 v -0.0922 -0.5474 0.6959 v -0.6856 0.4901 -0.2526 v -0.5981 0.6317 -0.3835 v -0.2739 -0.5409 0.1433 v 0.2276 0.5685 0.5008 v -0.3224 -0.0357 -0.7242 v -0.3219 0.2237 0.6392 v 0.0566 -0.5382 0.0499 v -0.8022 -0.1669 0.3714 v -0.7534 -0.4396 -0.4005 v 0.1420 -0.3277 -0.7222 v -0.2833 0.6621 -0.4006 v -0.4169 -0.3418 0.7144 v 0.4737 0.6578 -0.1168 v 0.5034 0.5474 0.0404 v 0.0717 0.2388 0.6334 v -0.1929 -0.2969 0.7726 v 0.0788 0.6625 0.1829 v 0.6182 -0.1167 0.1920 v 0.2914 0.3102 0.4961 v -0.4430 -0.4943 -0.5114 v 0.0674 -0.5066 -0.5003 v 0.7734 0.0203 -0.0575 v -0.2730 -0.5442 0.3333 v -0.7343 0.5276 0.0819 v 0.0271 -0.1968 0.7613 v -0.8805 -0.2669 -0.1575 v 0.3584 -0.0341 0.5833 v 0.1364 0.4162 -0.5666 v 0.5818 -0.3697 0.2965 v 0.0921 0.0575 0.6947 v -0.2129 -0.2068 -0.7704 v 0.6507 -0.3382 -0.0733 v 0.4921 0.2195 0.2660 v -0.8165 -0.5474 -0.0887 v -0.5557 -0.5062 -0.3210 v -0.6461 0.0153 -0.5221 v -0.7591 0.2742 -0.1473 v 0.8586 0.2762 0.0658 v 0.0504 0.6884 0.5726 v 0.3695 0.5475 -0.3611 v -0.0139 0.4158 0.6180 v -0.8345 -0.4289 -0.2405 v -0.1123 0.6621 -0.4308 v -0.0620 0.6625 -0.1189 v 0.3788 -0.1270 -0.5797 v 0.3279 -0.5412 -0.5516 v -0.3236 0.6625 -0.1290 v -0.6378 -0.4972 0.2340 v -0.8413 -0.0970 -0.2777 v -0.7515 0.1621 0.2885 v -0.5484 0.7034 0.2755 v -0.5915 0.0868 0.5438 v -0.3171 -0.3819 -0.7321 v -0.3470 0.1304 -0.6610 v 0.4786 0.0327 -0.4206 v 0.2332 -0.5097 0.3876 v 0.3910 0.2187 -0.4284 v -0.2478 0.4080 -0.6122 v 0.2136 0.0230 -0.6540 v -0.4538 -0.5426 -0.1790 v -0.8835 -0.0766 0.1023 v 0.0271 -0.4465 -0.7271 v -0.3191 -0.5396 -0.0234 v -0.7550 -0.1702 -0.4518 v 0.4712 -0.3170 -0.4910 v -0.4030 -0.5444 0.6593 v -0.1022 0.6621 0.4445 v 0.5051 0.3872 -0.0180 v -0.0526 0.5577 -0.6081 v -0.6954 0.4979 0.2362 v -0.0721 -0.5399 -0.1890 v 0.1781 0.7092 -0.4172 v -0.7578 0.0277 0.3755 v 0.5502 0.1682 0.1258 v -0.6890 -0.3434 -0.5146 v -0.4995 0.5183 0.4897 v 0.8331 -0.1767 -0.0706 v 0.1995 -0.5464 -0.0183 v -0.5245 -0.2501 -0.6594 v 0.0629 -0.0113 -0.7214 v 0.2197 -0.5376 -0.2296 v 0.3794 -0.5373 -0.3367 v -0.7708 0.2949 0.0319 v 0.5650 0.1024 -0.1673 v -0.2610 -0.5443 0.5930 v -0.7278 0.5812 -0.0944 v 0.6300 -0.2069 -0.1712 v -0.8174 -0.3266 0.3370 v 0.0770 0.5374 0.5791 v -0.0513 0.1112 -0.7053 v 0.7627 -0.3664 0.0730 v -0.5449 0.6621 0.1225 v 0.7730 0.5177 0.0739 v -0.7374 0.1414 -0.3237 v -0.6328 -0.3174 0.5786 v -0.6705 0.3354 0.3307 v 0.2096 0.6621 -0.2497 v -0.4416 -0.1069 0.7010 v 0.4480 -0.4919 -0.0283 v 0.2313 0.1580 -0.5880 v -0.7983 0.1584 0.1461 v -0.2329 -0.5435 -0.3498 v -0.8630 -0.4470 0.1213 v -0.2632 0.6625 0.1628 v -0.6627 -0.4555 0.5117 v -0.5888 0.6283 0.3977 v -0.5149 -0.5379 0.1325 v 0.1022 0.2794 -0.6124 v -0.1525 -0.4962 -0.7265 v -0.5649 0.6624 -0.1390 v 0.0941 0.5633 -0.5716 v -0.4702 0.1937 0.5820 v 0.2197 0.6623 0.0420 v 0.2417 -0.5340 0.6153 v 0.5380 -0.3862 -0.3660 v -0.3336 0.6621 0.4042 v 0.4278 0.6676 -0.2552 v -0.5668 -0.0845 -0.6215 v -0.0432 0.2542 -0.6557 v 0.8723 -0.2724 0.0605 v -0.6335 -0.5129 -0.0883 v 0.6274 -0.4168 0.0722 v 0.1168 -0.4467 0.7055 v 0.7780 0.5028 -0.0692 v -0.5721 0.3142 0.4613 v 0.2857 0.4267 -0.4664 v -0.3022 0.7047 -0.5504 v 0.0587 -0.5460 -0.2798 v -0.3425 0.4062 0.5907 v 0.2906 -0.2136 0.6543 v 0.8138 0.0546 0.0744 v 0.8834 0.3063 -0.0708 v 0.2081 0.7122 0.4620 v 0.4692 0.3558 -0.2273 v 0.6076 0.0145 0.1226 v -0.8965 -0.2368 0.0722 v -0.4996 -0.5430 0.4821 v 0.5922 -0.2169 -0.3047 v -0.6071 -0.0972 0.5970 v 0.4119 0.6988 0.2461 v 0.5011 -0.2301 0.4663 v -0.5015 0.3352 -0.5158 v 0.4402 -0.4872 0.1630 v 0.5206 -0.4888 0.3456 v 0.5831 0.5253 -0.0682 v -0.1013 0.7046 -0.5795 v 0.3535 -0.3399 0.6071 v 0.5334 0.2538 0.0220 v -0.0421 -0.4860 0.5860 v 0.1694 0.6621 0.2835 v 0.1923 0.2604 0.5761 v -0.5891 -0.3834 -0.6038 v -0.6044 0.3017 -0.4301 v -0.4230 0.6674 -0.3700 v -0.4824 0.5588 -0.4942 v -0.8613 0.0228 -0.0878 v -0.7472 -0.4761 0.3915 v -0.4508 -0.1170 -0.6964 v -0.1224 -0.5451 0.3536 v 0.3796 0.0769 0.5140 v -0.0310 -0.5200 -0.0478 v 0.2789 0.4498 0.4736 v -0.0863 -0.5189 -0.4950 v 0.4860 0.1038 0.3617 v -0.1627 -0.1369 0.7710 v -0.6348 0.4136 -0.3623 v 0.5649 -0.0575 0.3199 v 0.1041 -0.3000 0.7370 v -0.8253 -0.5473 0.0420 v -0.2414 0.6183 0.5990 v -0.1224 0.0733 0.7215 v -0.8540 0.0439 0.0621 v -0.8472 -0.1070 0.2583 v -0.2129 0.0801 -0.7148 v 0.4548 0.3439 0.2692 v 0.5488 0.0429 -0.2960 v 0.2013 -0.5450 -0.5132 v 0.1785 -0.4875 0.5034 v -0.0017 0.6625 0.0823 v -0.4622 0.1526 -0.6001 v -0.0016 0.6621 0.3137 v 0.5917 -0.4562 -0.1876 v -0.6656 -0.5474 -0.3704 v -0.7310 0.6580 0.0621 v -0.4239 -0.5474 -0.6316 v 0.3111 0.1888 0.5259 v 0.4913 -0.5474 -0.1491 v 0.5452 -0.0672 -0.3567 v -0.1428 -0.5224 0.1141 v 0.3184 -0.5209 0.2120 v 0.2394 -0.3917 -0.6620 v -0.6610 0.1328 -0.4465 v 0.1090 0.6621 -0.1391 v -0.3135 0.6625 -0.2698 v 0.3505 -0.5474 0.4143 v -0.4084 0.6671 0.5373 v 0.2868 0.6481 -0.4474 v -0.1627 0.4975 -0.6114 v -0.3428 -0.0366 0.7224 v -0.7214 0.3860 -0.1983 v -0.7775 -0.5221 -0.3029 v -0.0620 0.6625 -0.3000 v -0.5945 0.7159 -0.2896 v -0.8063 -0.5473 0.1627 v 0.0486 -0.5470 0.2432 v 0.6454 -0.1370 0.0723 v 0.1497 0.6671 -0.5396 v 0.4535 -0.1203 0.5074 v -0.5301 -0.4948 -0.6049 v 0.0248 -0.3220 -0.7525 v 0.0041 0.1404 0.6870 v 0.2305 0.0071 0.6536 v -0.3280 -0.2661 0.7462 v -0.4041 -0.5469 0.0622 v 0.4426 -0.0574 -0.5027 v -0.1225 -0.4265 0.7499 v 0.3850 0.5374 0.3407 v -0.5358 -0.3513 0.6460 v -0.5946 -0.5256 0.0420 v -0.2033 0.2645 0.6560 v 0.2915 -0.2367 -0.6520 v 0.6135 -0.2767 0.2309 v -0.2531 0.6621 0.3036 v 0.5617 -0.5474 0.0420 v -0.2632 0.6625 -0.0284 v 0.4136 -0.2367 -0.5542 v -0.1122 -0.1468 -0.7685 v -0.6741 -0.1769 0.5433 v -0.3438 -0.5459 -0.1391 v 0.0470 -0.5397 0.6933 v -0.3137 -0.4905 -0.5693 v -0.3925 -0.5296 0.3733 v -0.6884 0.0573 0.4646 v 0.6016 -0.4174 0.1910 v -0.6460 0.5669 0.3160 v -0.4345 -0.2268 0.7138 v -0.5499 -0.5092 0.3159 v -0.5468 -0.5470 -0.4427 v -0.5248 0.6625 -0.0284 v 0.4391 0.2690 -0.3286 v -0.1224 0.7166 0.5451 v 0.4694 0.6317 0.1348 v 0.6487 -0.2268 -0.0183 v -0.1727 -0.5085 -0.6038 v -0.8633 -0.4273 -0.1282 v -0.5582 0.0858 -0.5725 v 0.0080 -0.5189 0.4798 v 0.0084 0.6621 -0.3906 v -0.3281 -0.5187 -0.4549 v 0.6111 0.0090 -0.1201 v 0.4162 -0.4880 -0.2238 v -0.6740 0.7140 -0.1085 v 0.6111 0.5140 0.0561 v -0.7059 -0.5474 0.3137 v 0.0483 -0.5473 -0.6807 v 0.4408 0.5425 -0.2405 v 0.3820 0.7147 -0.1495 v 0.3121 0.5643 0.4264 v 0.2792 0.6927 0.2908 v -0.2327 -0.0965 -0.7602 v 0.4995 0.2347 -0.2273 v 0.4062 -0.3965 -0.5367 v -0.8583 -0.2053 -0.2488 v -0.1889 0.7082 -0.5094 v 0.7523 -0.1015 -0.0331 v -0.7331 0.4275 0.1325 v -0.8960 -0.2871 -0.0485 v -0.0822 -0.2168 0.7747 v -0.2320 -0.3166 -0.7647 v -0.8468 -0.3721 0.2395 v -0.7968 0.1701 -0.1275 v -0.1522 0.3467 -0.6334 v -0.1123 0.4976 0.6147 v -0.6223 0.5239 -0.3603 v -0.3446 0.1078 0.6744 v -0.2670 0.2876 -0.6320 v -0.1124 0.3255 0.6413 v 0.7404 -0.3982 -0.0502 v 0.4699 -0.4736 0.4444 v 0.1092 -0.5298 -0.3886 v 0.8190 0.3584 0.0019 v -0.5540 -0.0024 0.6140 v 0.4201 -0.3986 0.5244 v -0.2028 -0.5474 0.6859 v 0.0820 -0.0821 0.7345 v 0.4945 0.4463 0.0807 v 0.1224 -0.1860 -0.7329 v 0.3505 -0.5474 -0.4409 v -0.2029 0.6621 0.4042 v -0.4141 0.6623 0.1627 v 0.4831 -0.5435 -0.3677 v -0.7545 -0.2168 0.4548 v -0.5680 0.1885 0.5152 v -0.5699 -0.5192 -0.2147 v 0.8030 0.1291 -0.0165 v -0.7093 -0.0635 -0.4846 v -0.7622 -0.2768 -0.4387 v -0.8867 -0.3425 0.1146 v -0.3918 -0.4460 0.7006 v 0.2970 -0.0870 -0.6364 v 0.0371 0.4465 -0.5961 v 0.1895 0.6625 -0.0686 v -0.2024 0.1627 0.6882 v -0.2630 -0.5254 0.4536 v 0.5239 -0.1001 0.4086 v -0.1525 -0.5467 -0.2800 v -0.5930 -0.5469 0.5326 v 0.3396 0.6691 0.1130 v 0.1684 -0.2168 0.7224 v -0.5239 0.4060 0.4835 v 0.0036 -0.5392 0.1478 v -0.4094 -0.3335 -0.7139 v 0.3042 -0.1102 0.6376 v -0.7466 0.2321 -0.2432 v -0.4200 0.4665 0.5422 v 0.3572 0.6734 -0.0284 v -0.0283 -0.0522 -0.7542 v 0.4913 -0.5474 0.2634 v 0.1090 0.6623 0.0823 v 0.4453 0.4464 0.2501 v -0.0053 0.6968 0.4844 v -0.2686 0.5173 0.5961 v -0.4517 0.4263 -0.5268 v 0.8463 -0.0244 0.0018 v -0.1626 -0.4898 0.5796 v 0.3109 0.1784 -0.5244 v -0.7888 -0.1056 -0.3778 v 0.7926 -0.2205 0.0189 v -0.7309 -0.5085 -0.0183 v 0.2832 -0.4395 0.6262 v -0.1123 0.6621 0.1225 v -0.1928 0.6625 -0.3503 v 0.3173 -0.4366 -0.6066 v 0.6788 0.5092 -0.0305 v -0.2422 -0.0566 0.7526 v 0.5644 0.1527 -0.0685 v 0.5667 -0.4466 -0.2877 v -0.4845 -0.5474 0.5853 v -0.0025 0.6678 -0.5926 v -0.0519 -0.5177 -0.7200 v 0.4839 0.5677 -0.0685 v -0.0605 -0.5131 0.0533 v -0.0218 0.6625 0.2131 v -0.2129 0.6621 -0.1391 v 0.9180 0.3552 0.0390 v 0.4428 0.1328 -0.4087 v -0.4672 0.2471 -0.5617 v 0.8300 0.4330 0.0725 v -0.3738 -0.5470 0.1828 v -0.8459 -0.0245 -0.2031 v -0.2826 0.5275 -0.5887 v -0.4598 -0.5097 -0.4061 v -0.2440 -0.5326 -0.0997 v -0.1728 -0.5444 0.2336 v 0.1691 -0.5364 0.3033 v -0.1224 -0.5200 -0.1035 v 0.3494 -0.5249 -0.0384 v -0.4041 0.6621 -0.0586 v 0.2599 -0.5474 0.5048 v 0.9343 0.2570 0.0017 v 0.7557 -0.0262 0.0513 v -0.3537 -0.5461 -0.2396 v -0.0620 0.6625 -0.0183 v -0.4341 0.6626 0.3438 v -0.0002 0.3175 0.6331 v 0.5106 0.2595 0.1664 v 0.1377 0.1636 0.6401 v 0.3117 0.6751 -0.2090 v 0.4841 0.6481 0.0019 v -0.1928 -0.4075 -0.7504 v 0.4331 0.4366 -0.2739 v -0.3915 0.5980 -0.5472 v -0.6441 -0.1005 -0.5604 v -0.7202 0.2649 0.2806 v -0.1458 -0.5390 -0.4038 v 0.3395 0.3500 -0.4323 v 0.4384 0.2486 0.3446 v 0.8892 -0.2563 -0.0362 v 0.8438 0.2176 -0.0495 v -0.3489 -0.1335 -0.7335 v 0.1519 0.6150 0.5450 v 0.0185 0.6623 -0.1894 v -0.6948 -0.4410 -0.4803 v -0.3520 0.4072 -0.5828 v 0.3028 0.5474 -0.4333 v 0.6258 -0.0272 -0.0082 v 0.8870 0.1780 0.0720 v 0.2886 -0.5137 -0.3092 v -0.8776 -0.0403 0.0118 v -0.8186 -0.5145 -0.1962 v 0.1291 -0.5474 -0.5918 v -0.6046 -0.2800 -0.6098 v -0.5370 0.7015 -0.4129 v -0.5383 -0.4878 0.4101 v -0.3190 0.6792 0.5733 v -0.2434 -0.5265 0.0523 v -0.0057 -0.4858 -0.5725 v -0.7853 -0.0715 0.3768 v 0.5940 -0.0276 0.2211 v 0.1856 0.3247 -0.5584 v -0.0160 0.0498 0.7278 v -0.7503 0.3959 0.0218 v 0.0895 0.7138 0.4864 v 0.1274 0.0523 -0.6856 v -0.3275 -0.3720 0.7337 v 0.1569 -0.0371 -0.7030 v -0.8043 0.0247 -0.2910 v -0.3870 0.2945 0.5953 v -0.2698 -0.4645 -0.7244 v -0.6566 0.6626 0.2946 v -0.6948 0.4013 0.2662 v -0.6559 0.7163 0.0924 v -0.6848 0.2061 -0.3722 v -0.2843 0.3099 0.6242 v 0.3149 0.0505 0.5875 v -0.0321 -0.5408 0.3831 v 0.5334 -0.2968 -0.3981 v -0.6316 -0.0180 0.5511 v -0.8083 -0.3934 -0.3242 v -0.7863 0.2412 -0.0630 v 0.5723 -0.2800 0.3370 v 0.1471 -0.5371 0.6658 v -0.3625 -0.4668 -0.6974 v 0.2007 -0.2568 -0.7019 v 0.5700 -0.4638 0.2667 v 0.7125 -0.3104 -0.0080 v 0.8381 0.5324 0.0077 v 0.1173 -0.4177 -0.7116 v 0.4889 0.3861 -0.1366 v 0.1688 0.4901 0.5417 v 0.4126 0.6149 0.2875 v 0.3826 0.3317 0.3962 v -0.6493 0.6410 -0.3059 v 0.2503 -0.5431 -0.6034 v -0.7357 0.5277 -0.0183 v -0.6259 0.7163 0.1931 v -0.5276 -0.5284 0.2242 v 0.4490 0.0763 0.4425 v -0.1627 -0.0087 0.7480 v 0.4165 0.0526 -0.4867 v 0.5187 0.0170 0.3646 v -0.5319 -0.1070 0.6502 v 0.2214 0.6806 -0.3396 v -0.5441 -0.5342 -0.0986 v -0.8961 -0.1972 -0.0981 v -0.5080 0.6943 -0.3133 v -0.7089 0.1283 0.3864 v 0.3755 0.6384 -0.3473 v -0.6970 0.5913 -0.2150 v 0.1501 -0.5398 -0.2899 v -0.0333 0.5474 0.6091 v -0.7086 -0.5286 0.1634 v 0.2768 0.6512 0.4615 v -0.4683 -0.5286 -0.3039 v 0.2176 0.4667 -0.5137 v -0.7841 0.0724 0.2999 v -0.7179 0.5981 0.1380 v -0.8794 -0.1471 0.1605 v 0.1020 0.3198 0.6034 v 0.7633 0.5849 0.0048 v 0.0379 0.3563 -0.6108 v 0.6275 -0.1167 -0.1579 v 0.6317 -0.2029 0.1657 v 0.2648 -0.4986 -0.4659 v -0.6848 0.3882 -0.2817 v 0.1894 -0.5465 0.0722 v -0.5500 0.5410 -0.4359 v 0.0581 -0.5387 -0.0499 v 0.2093 -0.5452 -0.1088 v 0.6203 -0.4389 -0.0883 v 0.2082 0.6967 0.3725 v 0.4191 0.7138 0.1422 v 0.5828 0.5956 -0.0077 v 0.2725 0.0780 -0.5998 v 0.5562 0.4630 -0.0080 v -0.5700 0.5377 0.4191 v -0.7212 -0.5186 -0.1103 v -0.1022 0.6621 0.3539 v 0.8442 -0.3562 0.0348 v 0.0990 0.6621 -0.3906 v -0.7198 0.4666 -0.1576 v -0.2028 -0.3865 0.7600 v -0.4927 0.6082 0.4910 v -0.2930 -0.5443 0.6908 v 0.1091 -0.5460 0.1226 v -0.3035 0.6625 0.0521 v -0.1023 0.6625 -0.2195 v 0.4511 -0.5474 0.3438 v 0.3601 0.4465 -0.3901 v -0.8338 0.0679 0.1462 v -0.2531 -0.5474 -0.6119 v 0.6000 -0.1434 0.2754 v 0.4299 0.7155 -0.0586 v -0.7895 0.2236 0.0822 v 0.5814 0.0181 -0.2157 v -0.7311 0.6671 -0.0587 v 0.4740 0.5171 0.1307 v 0.8726 -0.1838 0.0523 v -0.6955 -0.5211 0.4482 v -0.0425 0.7038 0.5816 v 0.5398 -0.3635 0.3745 v -0.5196 0.1181 0.5854 v -0.8579 -0.3035 -0.2350 v -0.1425 -0.2670 -0.7705 v -0.0148 -0.1194 0.7666 v -0.8369 -0.2267 0.3167 v -0.6233 0.3756 0.3932 v 0.2173 0.3366 0.5399 v 0.5721 0.0894 0.1578 v -0.7094 -0.2535 -0.5049 v -0.7962 -0.4116 0.3432 v 0.8398 0.4126 -0.0687 v 0.3189 -0.4841 -0.3892 v 0.0068 0.1830 -0.6660 v -0.7243 0.0847 -0.3919 v 0.1519 0.1890 -0.6201 v -0.4642 -0.4762 0.6527 v -0.5180 0.2748 0.5274 v -0.0118 -0.5269 -0.4507 v -0.5551 0.7077 0.3867 v 0.6988 0.5629 0.0729 v -0.1323 0.1398 -0.6930 v 0.0035 -0.2801 0.7672 v -0.6361 -0.4920 0.3206 v -0.1661 0.6736 0.6065 v 0.0372 0.0829 -0.6967 v -0.8586 -0.4775 0.0029 v -0.0419 -0.5468 -0.2699 v -0.7639 0.2038 0.2113 v -0.3739 0.6621 -0.1994 v -0.7595 0.3452 -0.0776 v -0.1828 0.5476 0.6125 v -0.0620 -0.2168 -0.7728 v 0.0825 0.4516 0.5850 v 0.2794 -0.5359 0.1324 v -0.2128 -0.2067 0.7751 v -0.0431 0.6979 -0.4916 v 0.1895 0.6625 0.1225 v -0.6896 -0.2768 0.5286 v 0.5008 -0.0620 -0.4300 v 0.5124 0.1386 0.2862 v 0.0926 -0.5087 0.4875 v 0.3326 0.7018 0.2140 v -0.4042 -0.5467 -0.0284 v -0.4745 0.6621 0.2634 v -0.6579 -0.4914 -0.2711 v 0.0072 -0.4557 0.7340 v 0.0720 -0.3791 0.7347 v 0.1473 -0.0074 0.6995 v 0.4652 -0.3003 0.4989 v -0.8976 -0.2056 -0.0072 v 0.6568 -0.3999 -0.0148 v -0.4843 -0.0373 0.6624 v -0.3528 -0.5186 0.5673 v -0.0921 -0.4268 -0.7475 v -0.5237 0.6250 -0.4600 v -0.4001 0.2147 -0.6129 v -0.3815 0.0332 0.6931 v 0.4994 0.4520 -0.0727 v -0.1977 -0.5391 0.4011 v -0.7548 -0.3608 -0.4319 v -0.2923 0.0422 -0.7106 v -0.2613 0.1832 -0.6655 v -0.6136 -0.2069 0.6035 v -0.8581 -0.0469 0.1815 v -0.6167 0.0956 -0.5128 v 0.6163 -0.3768 -0.1677 v -0.7748 0.1530 -0.2392 v -0.6921 -0.5183 -0.4475 v 0.5779 -0.3166 -0.3192 v 0.6024 -0.4873 0.1107 v 0.3942 -0.5074 -0.5049 v 0.4794 -0.3966 -0.4613 v -0.6582 0.4770 0.3080 v -0.6067 -0.3962 0.5865 v -0.7579 0.3260 0.1117 v -0.8277 0.0898 -0.1283 v 0.0888 0.6628 0.3036 v -0.3977 0.0656 -0.6723 v -0.7793 -0.2869 0.4087 v 0.5420 -0.1471 -0.3835 v 0.5071 -0.2367 -0.4486 v 0.3666 -0.1541 0.6016 v 0.2762 -0.5398 0.0219 v 0.4280 -0.4966 -0.1084 v 0.2191 0.4192 0.5217 v 0.6116 -0.4708 0.0120 v -0.4244 -0.5381 0.5281 v -0.3048 -0.2393 -0.7507 v 0.4827 -0.5379 0.0621 v 0.1103 0.7121 -0.4633 v 0.8743 0.0541 -0.0217 v -0.4785 -0.5177 0.3553 v 0.0372 -0.4918 0.5513 v -0.1225 -0.3379 0.7670 v 0.2494 -0.5257 0.2931 v 0.3403 -0.0323 -0.5940 v 0.5597 -0.5421 -0.1932 v 0.1391 -0.5460 -0.2094 v 0.3312 0.2494 -0.4744 v -0.8774 -0.1335 -0.1544 v -0.6934 -0.1606 -0.5192 v 0.6399 -0.2769 -0.1309 v -0.3618 -0.1869 0.7383 v -0.7284 -0.1470 0.4873 v 0.7803 0.4434 -0.0139 v -0.4947 -0.3299 -0.6701 v -0.2029 0.6625 0.1024 v -0.2029 0.6628 -0.4308 v -0.5349 0.6625 0.2030 v -0.1525 0.6621 -0.0485 v 0.3622 -0.4197 0.5771 v 0.3290 -0.5142 -0.2389 v -0.3903 0.7081 0.4392 v 0.2120 0.6897 -0.4931 v 0.6103 -0.1569 -0.2317 v -0.3528 0.6884 -0.4326 v -0.6240 0.1382 0.4857 v -0.8244 -0.0371 0.2918 v -0.8153 0.1471 0.0621 v -0.8943 -0.1567 0.0621 v 0.6343 -0.0576 0.0817 v -0.6865 0.5778 0.2470 v -0.6272 0.2689 0.4235 v 0.4116 -0.5341 0.4755 v -0.0956 0.4027 0.6257 v 0.4619 0.5576 -0.1644 v 0.5129 0.3322 -0.0820 v -0.6351 -0.5053 -0.1698 v 0.2238 0.3860 -0.5234 v 0.3930 0.3054 -0.3887 v 0.0247 -0.0191 0.7371 v 0.0179 -0.2368 -0.7600 v -0.5724 -0.0080 -0.5995 v -0.6719 -0.3676 0.5306 v -0.0318 -0.5474 0.6356 v 0.1462 0.5075 -0.5491 v 0.7664 0.0638 0.0112 v 0.5010 0.0878 -0.3447 v 0.5292 0.1638 -0.2070 v 0.2593 0.7155 -0.4000 v -0.1223 -0.5473 0.6165 v -0.3224 0.2309 -0.6324 v -0.4089 0.1686 0.6255 v 0.2466 -0.4663 -0.6363 v -0.0374 0.4722 -0.6117 v 0.3216 -0.1621 -0.6330 v 0.5187 0.3071 0.0828 v -0.5751 0.6625 0.0420 v 0.2333 -0.1703 0.6873 v 0.5773 0.1236 0.0622 v 0.0972 -0.1670 0.7406 v -0.2686 -0.3168 0.7571 v -0.4482 -0.2635 -0.7044 v -0.1526 -0.5034 0.7277 v -0.7667 -0.3765 0.4072 v 0.2160 -0.4375 0.6671 v -0.8510 -0.2967 0.2616 v -0.4435 -0.5040 0.4431 v 0.3087 -0.4935 0.3726 v -0.1626 0.6621 0.1829 v -0.3135 -0.5472 0.2332 v -0.6777 0.2392 0.3657 v -0.0017 0.6621 -0.0686 v 0.2298 0.6621 -0.1592 v -0.2696 0.4315 0.6050 v -0.5812 -0.2865 0.6290 v 0.3333 0.4533 0.4173 v 0.1293 -0.5456 0.0219 v 0.2690 -0.5404 -0.0584 v -0.7158 0.3228 -0.2520 v -0.8196 -0.1634 -0.3351 v -0.8645 -0.3587 -0.1801 v 0.3112 0.3810 0.4556 v -0.5451 0.2720 -0.5016 v 0.2936 -0.0304 0.6269 v -0.6055 0.6810 -0.0750 v 0.4142 -0.4865 0.2373 v -0.6284 0.2276 -0.4339 v 0.8228 -0.0817 -0.0599 v -0.5618 0.6834 -0.2140 v 0.7797 -0.2961 0.0441 v 0.7323 0.5655 -0.0650 v 0.6760 -0.3352 0.0708 v 0.3553 0.2338 0.4594 v 0.4059 0.5879 -0.2971 v -0.6468 -0.4018 -0.5429 v 0.0672 -0.0870 -0.7364 v -0.4984 -0.1736 -0.6741 v 0.1582 -0.5209 0.4023 v -0.6268 0.7148 -0.1696 v -0.5691 -0.4871 -0.3946 v 0.6505 -0.2168 0.0622 v -0.5624 -0.5466 -0.5578 v -0.8043 0.0963 0.2115 v -0.0333 0.0224 -0.7354 v -0.6533 0.5643 -0.3003 v 0.4736 0.4462 0.1607 v -0.5963 -0.4617 -0.5729 v 0.3901 0.1474 -0.4627 v -0.6241 -0.5145 0.1121 v -0.8862 -0.3310 -0.1119 v 0.4390 0.1982 -0.3688 v 0.0272 0.2742 -0.6328 v 0.1291 0.6621 -0.2497 v -0.7325 0.5981 0.0118 v 0.5094 -0.4717 -0.3729 v 0.1407 -0.5087 -0.4552 v -0.4261 0.3329 -0.5613 v -0.7117 0.0330 -0.4468 v -0.4344 0.5729 0.5255 v -0.3440 -0.5452 0.1126 v -0.6479 0.3366 -0.3677 v -0.4241 -0.5466 -0.1089 v -0.5017 -0.0670 -0.6570 v 0.2497 -0.3167 -0.6694 v -0.0621 -0.4871 0.7321 v 0.4950 0.3047 -0.1774 v 0.1419 0.6905 0.5362 v 0.6117 -0.2459 -0.2337 v -0.7174 -0.4266 0.4680 v -0.1324 0.2686 -0.6519 v -0.3288 0.6317 -0.5726 v 0.0728 0.2095 -0.6405 v -0.3279 -0.5285 0.4152 v 0.3695 0.7153 -0.2592 v 0.4588 -0.1969 -0.5088 v -0.2629 -0.5321 -0.4195 v -0.7114 0.6384 -0.1580 v -0.1425 -0.5474 -0.6723 v 0.6218 -0.3492 0.1666 v 0.2790 -0.4887 0.4434 v -0.1625 0.6847 0.4901 v -0.2073 0.6919 -0.5915 v -0.0823 0.1321 0.6980 v -0.1022 0.0597 -0.7240 v 0.2570 0.2553 0.5389 v -0.2127 -0.5076 0.5270 v 0.5370 -0.2669 0.4016 v 0.4151 0.0113 0.5092 v -0.4983 0.7000 0.3363 v 0.2767 -0.2867 0.6603 v 0.3446 0.1120 -0.5255 v 0.2901 0.6625 0.0018 v 0.8195 -0.2540 -0.0617 v 0.4843 -0.5443 -0.0753 v -0.1425 0.4268 -0.6198 v 0.1527 0.0880 0.6652 v -0.8405 -0.4562 0.1911 v 0.1741 -0.3099 0.7156 v -0.5731 -0.5310 -0.0284 v 0.0023 0.2296 0.6564 v -0.7910 -0.3266 -0.3775 v 0.8789 0.1560 -0.0697 v 0.1452 -0.4978 -0.5397 v 0.4255 -0.4992 0.0918 v 0.0829 0.6725 -0.5699 v -0.7340 -0.0270 0.4445 v -0.3249 -0.3094 -0.7406 v -0.0821 0.3257 -0.6388 v 0.8323 0.2096 0.0347 v 0.8737 0.0949 0.0614 v -0.0922 -0.5062 0.5364 v -0.2031 0.4773 0.6160 v -0.3929 -0.0356 -0.7043 v -0.2833 -0.5470 -0.2598 v 0.4351 -0.1266 -0.5254 v -0.1324 0.6384 -0.6068 v -0.4538 -0.5432 0.1725 v -0.6643 -0.5043 0.0118 v 0.4227 -0.5448 -0.2695 v 0.3255 0.1126 0.5504 v 0.0190 -0.5420 -0.1598 v 0.5066 -0.1561 0.4522 v 0.4222 0.5239 0.2771 v 0.6115 0.0270 0.0454 v 0.8540 -0.1128 0.0163 v 0.0382 -0.5415 -0.3496 v -0.8724 -0.0568 -0.1279 v 0.6261 0.5851 0.0596 v -0.3031 -0.5426 -0.3296 v -0.4918 -0.2568 0.6807 v 0.1654 0.1021 -0.6489 v -0.7662 -0.5474 0.2231 v -0.2230 0.6621 0.2231 v 0.2978 -0.5465 0.5712 v -0.0419 0.6628 0.3941 v -0.3330 0.4872 0.5822 v 0.3701 0.7056 0.3048 v 0.8526 0.3573 0.0698 v -0.5027 -0.5312 -0.2386 v 0.5387 0.1031 -0.2572 v 0.8074 -0.3904 -0.0172 v 0.1660 0.2542 -0.5896 v 0.4389 -0.5444 -0.4385 v -0.4973 0.4851 -0.4914 v -0.0330 -0.3865 -0.7562 v -0.2331 -0.5471 0.2734 v -0.3839 -0.5474 -0.5717 v -0.8570 0.0383 -0.0176 v 0.0886 -0.5436 0.3030 v 0.3909 -0.0122 -0.5390 v -0.1225 -0.0671 0.7604 v -0.4502 -0.4852 -0.6562 v 0.8847 -0.1792 -0.0184 v 0.4617 0.4261 -0.2089 v -0.3999 -0.4039 -0.7037 v -0.4784 -0.1670 0.6875 v 0.2598 -0.5376 -0.1592 v -0.7226 -0.5445 0.3834 v -0.7850 -0.2201 -0.4014 v 0.0285 -0.5474 -0.6119 v 0.0670 0.6082 0.5795 v 0.3919 0.4768 -0.3337 v -0.2440 -0.5250 -0.0286 v -0.2229 -0.0269 -0.7475 v 0.4850 0.3148 0.2114 v 0.6292 -0.0463 -0.0786 v 0.4159 -0.2967 0.5503 v -0.6081 -0.1436 -0.6043 v 0.8463 0.4846 -0.0600 v -0.4846 0.6625 0.0521 v -0.2495 0.6896 0.5847 v 0.2940 -0.3701 0.6376 v -0.3646 -0.4955 -0.5114 v 0.5293 0.2656 -0.0485 v -0.5620 0.3515 -0.4581 v -0.0721 0.6621 0.0521 v -0.6582 -0.0971 0.5475 v -0.2632 0.6621 -0.2195 v -0.4745 0.6625 -0.0787 v 0.3404 -0.5474 0.4847 v -0.3337 0.6621 -0.0485 v -0.3236 0.6625 0.3338 v -0.1425 0.6621 -0.1491 v -0.0754 -0.4957 -0.5627 v -0.1324 0.6621 -0.2900 v -0.1425 -0.5372 -0.1795 v 0.2699 0.6625 0.0923 v -0.3638 0.6621 0.1125 v 0.2522 0.1889 0.5656 v 0.7188 0.4972 0.0330 v -0.4023 0.3762 0.5673 v 0.5061 0.3758 0.0716 v -0.2971 0.4543 -0.5915 v -0.6354 -0.5474 0.4746 v -0.3830 -0.5218 -0.4091 v 0.3679 -0.4610 -0.5513 v -0.2996 0.7080 -0.4799 v -0.3898 0.6767 -0.5420 v -0.3218 0.3466 -0.6028 v 0.7081 -0.4080 0.0330 v 0.1568 -0.1071 -0.7167 v 0.5489 0.1637 -0.1365 v -0.4175 -0.0272 0.6964 v 0.3902 -0.3068 -0.5711 v -0.8792 -0.3959 0.0519 v 0.3534 -0.2702 0.6160 v 0.2999 0.7162 0.3537 v -0.6548 0.4688 -0.3120 v 0.5525 0.1905 -0.0015 v -0.5335 -0.4187 -0.6280 v 0.4374 0.3646 -0.2892 v -0.3137 0.7161 0.5053 v -0.3840 -0.5401 0.3046 v -0.5182 0.1869 -0.5527 v -0.0822 -0.1370 0.7695 v -0.5884 -0.5183 0.1897 v 0.4457 0.6082 -0.2180 v 0.2889 0.3553 -0.4798 v 0.8150 0.0826 -0.0669 v -0.3461 -0.1062 0.7344 v -0.2826 0.1727 0.6653 v 0.3275 0.6082 -0.4077 v 0.3814 -0.4884 -0.2839 v 0.8325 0.2695 -0.0049 v -0.5286 -0.5390 0.0584 v -0.1090 0.7084 -0.5100 v 0.0805 -0.4830 -0.7024 v 0.6060 0.0427 -0.0585 v 0.1576 0.5984 -0.5379 v -0.5686 -0.2036 -0.6334 v -0.8886 -0.2568 0.1379 v 0.0673 0.3859 0.6001 v -0.8425 -0.4969 -0.1280 v 0.2124 -0.0716 -0.6808 v 0.6467 -0.1769 -0.0786 v 0.5517 -0.5474 0.1125 v 0.2729 0.6747 -0.2739 v -0.5056 -0.4862 -0.4519 v 0.5710 -0.0220 -0.2908 v -0.6147 0.7158 0.2630 v 0.4811 0.6732 0.0684 v -0.0721 -0.5252 0.4737 v 0.2309 -0.0721 0.6745 f 1 913 878 f 2 950 641 f 3 979 685 f 4 774 520 f 5 961 754 f 6 654 580 f 7 949 731 f 8 999 729 f 9 705 503 f 10 1001 733 f 11 922 874 f 12 944 485 f 13 814 506 f 14 793 448 f 15 865 945 f 16 908 730 f 17 938 714 f 18 856 710 f 19 842 800 f 20 758 675 f 21 951 969 f 22 620 552 f 23 958 887 f 24 1023 892 f 25 886 666 f 26 988 918 f 27 1009 905 f 28 1024 779 f 29 972 647 f 30 935 756 f 31 646 704 f 32 980 838 f 33 621 550 f 34 864 881 f 35 743 649 f 36 1017 700 f 37 484 614 f 38 648 907 f 39 858 820 f 40 994 898 f 41 982 1015 f 42 959 966 f 43 790 914 f 44 889 775 f 45 676 677 f 46 768 832 f 47 976 910 f 48 715 663 f 49 770 1018 f 50 752 565 f 51 924 702 f 52 973 777 f 53 1022 601 f 54 883 721 f 55 882 940 f 56 824 694 f 57 783 718 f 58 828 823 f 59 926 684 f 60 839 644 f 61 986 656 f 62 699 696 f 63 708 844 f 64 687 682 f 65 660 531 f 66 880 1006 f 67 613 534 f 68 749 549 f 69 853 912 f 70 948 712 f 71 792 753 f 72 532 707 f 73 909 650 f 74 897 863 f 75 906 627 f 76 931 872 f 77 723 551 f 78 709 785 f 79 911 693 f 80 528 670 f 81 703 605 f 82 1012 787 f 83 902 728 f 84 970 877 f 85 1020 624 f 86 483 440 f 87 932 761 f 88 593 837 f 89 925 596 f 90 965 941 f 91 879 953 f 92 599 716 f 93 797 561 f 94 1010 584 f 95 834 511 f 96 822 813 f 97 985 462 f 98 659 575 f 99 740 737 f 100 917 840 f 101 992 760 f 102 975 628 f 103 995 804 f 104 807 617 f 105 893 795 f 106 778 806 f 107 854 717 f 108 794 497 f 109 851 692 f 110 963 493 f 111 672 968 f 112 404 432 f 113 727 900 f 114 899 581 f 115 869 567 f 116 991 936 f 117 955 983 f 118 713 664 f 119 904 626 f 120 974 513 f 121 895 967 f 122 762 817 f 123 930 819 f 124 857 378 f 125 993 952 f 126 1016 947 f 127 679 630 f 128 706 697 f 129 846 784 f 130 989 826 f 131 562 522 f 132 841 525 f 133 510 582 f 134 894 691 f 135 1002 543 f 136 798 614 f 137 635 527 f 138 690 512 f 139 557 553 f 140 746 738 f 141 534 428 f 142 622 470 f 143 626 602 f 144 881 588 f 145 782 724 f 146 448 472 f 147 621 592 f 148 866 803 f 149 954 1019 f 150 837 884 f 151 1000 767 f 152 927 854 f 153 586 835 f 154 781 652 f 155 831 632 f 156 805 544 f 157 766 759 f 158 630 550 f 159 877 678 f 160 633 718 f 161 732 681 f 162 670 506 f 163 1014 606 f 164 821 583 f 165 695 839 f 166 549 660 f 167 1005 890 f 168 942 629 f 169 943 815 f 170 755 1013 f 171 548 802 f 172 738 1007 f 173 793 964 f 174 896 776 f 175 701 977 f 176 962 659 f 177 997 653 f 178 801 479 f 179 658 585 f 180 1021 870 f 181 747 631 f 182 888 936 f 183 708 692 f 184 569 768 f 185 861 819 f 186 829 832 f 187 974 980 f 188 912 535 f 189 843 920 f 190 694 750 f 191 1008 926 f 192 944 673 f 193 940 731 f 194 702 711 f 195 646 428 f 196 916 862 f 197 757 688 f 198 775 897 f 199 752 703 f 200 967 657 f 201 720 770 f 202 887 585 f 203 780 638 f 204 816 639 f 205 612 840 f 206 934 874 f 207 799 798 f 208 1011 818 f 209 817 533 f 210 938 728 f 211 1004 900 f 212 705 623 f 213 983 769 f 214 867 683 f 215 858 625 f 216 849 745 f 217 787 640 f 218 942 663 f 219 865 651 f 220 811 981 f 221 739 778 f 222 971 650 f 223 644 697 f 224 796 764 f 225 636 540 f 226 1018 834 f 227 937 984 f 228 875 714 f 229 603 645 f 230 749 658 f 231 910 857 f 232 878 986 f 233 914 737 f 234 850 764 f 235 649 605 f 236 898 1006 f 237 923 833 f 238 859 684 f 239 810 806 f 240 766 1010 f 241 773 631 f 242 968 873 f 243 915 459 f 244 836 699 f 245 963 743 f 246 998 855 f 247 949 844 f 248 833 889 f 249 627 608 f 250 758 880 f 251 716 700 f 252 677 551 f 253 950 812 f 254 753 647 f 255 999 584 f 256 978 852 f 257 907 579 f 258 972 795 f 259 871 779 f 260 891 767 f 261 1005 508 f 262 600 582 f 263 992 935 f 264 905 751 f 265 1012 750 f 266 788 717 f 267 849 745 f 268 958 571 f 269 918 672 f 270 903 868 f 271 804 956 f 272 885 807 f 273 617 554 f 274 604 602 f 275 1007 897 f 276 987 953 f 277 990 955 f 278 892 765 f 279 707 600 f 280 866 637 f 281 991 828 f 282 956 808 f 283 746 575 f 284 925 685 f 285 929 706 f 286 939 628 f 287 818 844 f 288 689 545 f 289 901 869 f 290 597 471 f 291 803 797 f 292 965 648 f 293 670 570 f 294 996 932 f 295 989 842 f 296 570 621 f 297 879 677 f 298 656 458 f 299 952 661 f 300 864 568 f 301 929 619 f 302 748 694 f 303 691 651 f 304 946 449 f 305 1020 921 f 306 884 837 f 307 671 488 f 308 957 448 f 309 995 686 f 310 916 707 f 311 696 727 f 312 698 675 f 313 835 586 f 314 933 928 f 315 970 901 f 316 875 727 f 317 1020 710 f 318 471 525 f 319 664 807 f 320 845 774 f 321 695 644 f 322 511 431 f 323 959 659 f 324 961 789 f 325 524 840 f 326 1003 770 f 327 876 187 f 328 1001 984 f 329 800 610 f 330 519 20 f 331 966 616 f 332 810 575 f 333 913 581 f 334 930 440 f 335 822 751 f 336 1010 886 f 337 903 115 f 338 823 991 f 339 762 926 f 340 864 881 f 341 805 1024 f 342 782 733 f 343 841 673 f 344 896 931 f 345 784 846 f 346 904 560 f 347 796 704 f 348 1006 880 f 349 543 432 f 350 776 845 f 351 860 592 f 352 963 914 f 353 1017 719 f 354 962 615 f 355 856 985 f 356 662 160 f 357 958 734 f 358 843 491 f 359 765 676 f 360 954 928 f 361 994 854 f 362 887 747 f 363 860 554 f 364 752 703 f 365 911 937 f 366 722 653 f 367 1019 821 f 368 960 778 f 369 832 760 f 370 862 654 f 371 1022 601 f 372 1016 822 f 373 859 620 f 374 1014 802 f 375 695 763 f 376 1023 723 f 377 609 331 f 378 954 976 f 379 1009 947 f 380 1004 900 f 381 820 806 f 382 909 604 f 383 939 653 f 384 941 1008 f 385 998 756 f 386 497 622 f 387 582 133 f 388 988 918 f 389 945 160 f 390 769 847 f 391 977 985 f 392 632 801 f 393 1007 863 f 394 809 126 f 395 705 153 f 396 831 680 f 397 996 652 f 398 888 499 f 399 787 878 f 400 706 549 f 401 889 876 f 402 661 893 f 403 826 989 f 404 687 1002 f 405 772 980 f 406 755 349 f 407 922 981 f 408 754 127 f 409 837 907 f 410 919 1005 f 411 682 547 f 412 741 948 f 413 784 613 f 414 761 781 f 415 973 827 f 416 982 41 f 417 701 642 f 418 862 196 f 419 969 110 f 420 836 924 f 421 734 709 f 422 747 647 f 423 920 758 f 424 1000 767 f 425 839 731 f 426 940 882 f 427 986 1012 f 428 646 534 f 429 776 726 f 430 775 590 f 431 794 322 f 432 1002 349 f 433 854 689 f 434 903 296 f 435 967 231 f 436 975 266 f 437 968 601 f 438 779 781 f 439 254 205 f 440 334 86 f 441 936 783 f 442 805 712 f 443 697 800 f 444 972 917 f 445 873 622 f 446 825 817 f 447 617 807 f 448 667 14 f 449 904 827 f 450 532 916 f 451 917 893 f 452 925 838 f 453 721 809 f 454 867 771 f 455 872 729 f 456 801 193 f 457 811 874 f 458 899 606 f 459 953 786 f 460 790 957 f 461 738 966 f 462 977 774 f 463 971 812 f 464 568 10 f 465 983 990 f 466 244 311 f 467 717 646 f 468 886 25 f 469 90 238 f 470 756 142 f 471 318 290 f 472 310 146 f 473 964 959 f 474 919 167 f 475 832 829 f 476 995 686 f 477 919 735 f 478 841 791 f 479 908 128 f 480 974 120 f 481 1019 976 f 482 944 121 f 483 927 86 f 484 930 725 f 485 967 200 f 486 799 713 f 487 962 960 f 488 915 961 f 489 167 261 f 490 767 75 f 491 895 358 f 492 957 793 f 493 870 674 f 494 881 170 f 495 946 777 f 496 877 144 f 497 1018 855 f 498 1022 53 f 499 538 398 f 500 935 992 f 501 852 979 f 502 949 731 f 503 792 225 f 504 38 231 f 505 999 760 f 506 162 13 f 507 874 934 f 508 1005 883 f 509 57 134 f 510 848 942 f 511 95 322 f 512 698 816 f 513 980 974 f 514 1003 169 f 515 947 905 f 516 890 891 f 517 742 642 f 518 929 190 f 519 1014 171 f 520 884 4 f 521 1011 7 f 522 685 131 f 523 722 366 f 524 952 993 f 525 944 132 f 526 965 941 f 527 887 137 f 528 147 80 f 529 923 759 f 530 761 87 f 531 65 212 f 532 848 450 f 533 912 535 f 534 782 141 f 535 1015 982 f 536 128 60 f 537 972 29 f 538 182 552 f 539 1021 50 f 540 703 225 f 541 106 313 f 542 808 19 f 543 135 349 f 544 901 805 f 545 288 1023 f 546 711 699 f 547 958 268 f 548 882 171 f 549 166 400 f 550 868 33 f 551 77 252 f 552 936 22 f 553 845 139 f 554 363 273 f 555 811 813 f 556 950 589 f 557 1008 139 f 558 757 935 f 559 715 48 f 560 904 269 f 561 93 803 f 562 826 131 f 563 774 175 f 564 835 215 f 565 1021 50 f 566 997 898 f 567 293 115 f 568 932 464 f 569 931 184 f 570 293 296 f 571 682 937 f 572 770 1018 f 573 880 250 f 574 730 680 f 575 332 98 f 576 71 362 f 577 815 1003 f 578 858 39 f 579 728 210 f 580 6 402 f 581 913 114 f 582 262 387 f 583 920 164 f 584 759 766 f 585 202 824 f 586 153 50 f 587 190 750 f 588 1013 144 f 589 812 556 f 590 833 430 f 591 745 216 f 592 147 96 f 593 88 306 f 594 800 329 f 595 798 207 f 596 284 685 f 597 290 83 f 598 938 799 f 599 681 92 f 600 262 988 f 601 53 437 f 602 909 73 f 603 229 76 f 604 688 274 f 605 81 235 f 606 250 458 f 607 916 196 f 608 922 811 f 609 720 377 f 610 329 65 f 611 345 145 f 612 840 205 f 613 67 413 f 614 136 595 f 615 969 354 f 616 966 964 f 617 447 273 f 618 943 101 f 619 824 301 f 620 373 22 f 621 147 33 f 622 445 142 f 623 749 212 f 624 1020 85 f 625 381 215 f 626 827 415 f 627 934 906 f 628 975 939 f 629 370 168 f 630 158 127 f 631 181 241 f 632 802 155 f 633 59 160 f 634 996 154 f 635 137 787 f 636 225 81 f 637 715 280 f 638 203 264 f 639 426 204 f 640 785 217 f 641 950 735 f 642 417 517 f 643 853 248 f 644 839 60 f 645 923 853 f 646 31 195 f 647 29 254 f 648 292 38 f 649 870 235 f 650 909 971 f 651 219 865 f 652 154 45 f 653 177 366 f 654 370 952 f 655 69 219 f 656 61 298 f 657 200 38 f 658 230 179 f 659 176 98 f 660 65 166 f 661 893 402 f 662 762 356 f 663 1013 218 f 664 118 319 f 665 294 145 f 666 1007 25 f 667 968 242 f 668 224 78 f 669 317 344 f 670 162 293 f 671 376 723 f 672 269 111 f 673 843 192 f 674 739 180 f 675 20 758 f 676 846 45 f 677 297 252 f 678 159 341 f 679 948 270 f 680 750 265 f 681 981 161 f 682 984 571 f 683 717 107 f 684 926 59 f 685 284 522 f 686 772 32 f 687 984 328 f 688 197 604 f 689 433 288 f 690 882 426 f 691 134 303 f 692 772 109 f 693 79 796 f 694 56 190 f 695 375 165 f 696 62 311 f 697 443 223 f 698 512 312 f 699 62 546 f 700 1017 36 f 701 977 51 f 702 51 194 f 703 199 81 f 704 224 764 f 705 9 212 f 706 128 285 f 707 279 310 f 708 183 63 f 709 78 421 f 710 18 317 f 711 546 18 f 712 70 442 f 713 799 118 f 714 875 228 f 715 48 291 f 716 251 681 f 717 107 467 f 718 888 57 f 719 885 353 f 720 201 25 f 721 1000 54 f 722 366 523 f 723 376 671 f 724 145 345 f 725 484 185 f 726 931 429 f 727 316 113 f 728 579 210 f 729 186 8 f 730 908 16 f 731 7 502 f 732 216 161 f 733 10 1001 f 734 421 357 f 735 253 641 f 736 116 208 f 737 99 233 f 738 461 140 f 739 221 180 f 740 99 492 f 741 412 276 f 742 1004 517 f 743 245 35 f 744 336 201 f 745 216 591 f 746 978 140 f 747 422 181 f 748 302 56 f 749 68 623 f 750 265 680 f 751 335 264 f 752 364 199 f 753 254 71 f 754 961 5 f 755 406 170 f 756 998 385 f 757 955 558 f 758 423 250 f 759 529 584 f 760 101 505 f 761 87 530 f 762 122 662 f 763 247 375 f 764 224 234 f 765 278 129 f 766 240 584 f 767 260 424 f 768 46 305 f 769 983 921 f 770 572 201 f 771 454 129 f 772 405 686 f 773 241 404 f 774 320 4 f 775 44 430 f 776 429 350 f 777 973 52 f 778 106 221 f 779 259 28 f 780 27 203 f 781 154 414 f 782 342 145 f 783 57 441 f 784 413 129 f 785 640 78 f 786 459 91 f 787 399 82 f 788 266 107 f 789 861 185 f 790 914 460 f 791 478 927 f 792 71 753 f 793 173 492 f 794 108 226 f 795 258 893 f 796 224 347 f 797 291 93 f 798 136 595 f 799 598 207 f 800 594 329 f 801 456 178 f 802 831 632 f 803 291 148 f 804 271 103 f 805 341 156 f 806 239 381 f 807 104 272 f 808 282 542 f 809 394 453 f 810 239 820 f 811 220 457 f 812 253 589 f 813 96 981 f 814 13 315 f 815 577 385 f 816 204 828 f 817 209 122 f 818 287 208 f 819 185 123 f 820 381 39 f 821 164 367 f 822 96 335 f 823 338 58 f 824 619 56 f 825 446 865 f 826 562 403 f 827 626 415 f 828 58 338 f 829 475 186 f 830 348 997 f 831 802 396 f 832 475 186 f 833 248 237 f 834 95 226 f 835 564 313 f 836 420 244 f 837 409 884 f 838 32 271 f 839 644 60 f 840 612 100 f 841 478 132 f 842 19 295 f 843 189 673 f 844 247 287 f 845 320 553 f 846 676 129 f 847 263 390 f 848 532 510 f 849 216 267 f 850 234 785 f 851 109 889 f 852 501 256 f 853 643 69 f 854 433 361 f 855 246 497 f 856 355 896 f 857 378 231 f 858 578 39 f 859 238 373 f 860 363 96 f 861 185 789 f 862 370 196 f 863 74 393 f 864 300 34 f 865 219 825 f 866 970 280 f 867 454 24 f 868 550 270 f 869 289 115 f 870 493 649 f 871 259 953 f 872 455 76 f 873 445 242 f 874 507 206 f 875 316 228 f 876 327 401 f 877 159 496 f 878 232 1 f 879 297 91 f 880 348 573 f 881 144 494 f 882 690 55 f 883 508 54 f 884 520 306 f 885 272 719 f 886 336 25 f 887 23 202 f 888 182 718 f 889 401 44 f 890 1005 516 f 891 260 54 f 892 1023 278 f 893 661 105 f 894 134 287 f 895 910 491 f 896 344 856 f 897 74 275 f 898 236 478 f 899 458 348 f 900 1004 380 f 901 544 289 f 902 83 200 f 903 434 270 f 904 119 346 f 905 27 515 f 906 75 934 f 907 257 409 f 908 16 730 f 909 382 650 f 910 895 231 f 911 365 79 f 912 533 69 f 913 333 581 f 914 233 790 f 915 243 488 f 916 607 196 f 917 451 100 f 918 269 26 f 919 474 410 f 920 423 583 f 921 305 769 f 922 608 407 f 923 237 645 f 924 51 420 f 925 89 284 f 926 684 59 f 927 152 483 f 928 314 954 f 929 285 301 f 930 334 484 f 931 76 726 f 932 568 87 f 933 314 116 f 934 627 206 f 935 500 263 f 936 441 552 f 937 227 365 f 938 598 210 f 939 383 286 f 940 426 193 f 941 384 526 f 942 218 168 f 943 618 169 f 944 482 192 f 945 389 15 f 946 304 495 f 947 379 515 f 948 679 70 f 949 502 247 f 950 253 641 f 951 21 368 f 952 524 299 f 953 459 276 f 954 378 360 f 955 117 277 f 956 282 271 f 957 492 308 f 958 268 23 f 959 323 42 f 960 368 487 f 961 324 754 f 962 487 354 f 963 245 352 f 964 473 616 f 965 526 292 f 966 331 616 f 967 200 485 f 968 242 437 f 969 419 615 f 970 315 866 f 971 222 463 f 972 258 29 f 973 777 415 f 974 187 513 f 975 628 436 f 976 47 378 f 977 701 391 f 978 256 746 f 979 3 501 f 980 513 32 f 981 681 220 f 982 41 535 f 983 213 465 f 984 687 682 f 985 97 355 f 986 61 427 f 987 276 70 f 988 388 26 f 989 130 295 f 990 277 465 f 991 281 116 f 992 263 101 f 993 125 524 f 994 361 40 f 995 103 476 f 996 634 397 f 997 177 566 f 998 385 246 f 999 505 255 f 1000 424 151 f 1001 10 328 f 1002 135 432 f 1003 326 514 f 1004 380 900 f 1005 508 890 f 1006 348 236 f 1007 666 275 f 1008 191 384 f 1009 27 379 f 1010 336 240 f 1011 208 949 f 1012 265 82 f 1013 663 588 f 1014 163 374 f 1015 535 41 f 1016 126 372 f 1017 36 353 f 1018 226 497 f 1019 481 367 f 1020 305 85 f 1021 180 565 f 1022 53 498 f 1023 892 24 f 1024 28 341 ================================================ FILE: visualization/triangled_table.obj ================================================ # OBJ file v 0.3054 0.4966 -0.1096 v -0.4233 -0.6658 0.6134 v 0.4098 -0.6650 -0.6223 v -0.5037 0.4803 0.7048 v -0.5260 0.4696 -0.7036 v 0.3923 -0.1745 0.5635 v -0.3945 -0.3670 -0.5112 v -0.3950 0.3760 -0.0054 v 0.2003 0.4948 0.6841 v 0.4122 0.0333 -0.6223 v -0.3681 -0.0772 0.5103 v 0.0548 0.4966 -0.6420 v 0.4377 -0.6645 0.5825 v 0.5089 0.4545 0.3210 v -0.0078 0.4545 0.2662 v 0.5120 0.4885 -0.5507 v -0.3648 0.0849 -0.5240 v -0.2662 0.4966 -0.3836 v -0.3548 0.3143 0.3837 v 0.4480 0.2022 0.6023 v 0.3197 -0.3124 -0.5014 v -0.1487 0.4966 0.6107 v -0.0469 0.4966 -0.0939 v -0.3140 -0.3826 0.5403 v -0.3711 -0.6619 -0.6021 v 0.2506 0.2830 -0.5400 v 0.5071 0.4914 0.6812 v 0.1175 0.4966 -0.3523 v -0.5279 0.4621 -0.2584 v -0.2349 0.4878 -0.6977 v -0.3682 0.1812 0.6401 v -0.5072 0.4914 0.2271 v 0.2584 0.4956 0.1879 v 0.3910 0.3222 -0.3033 v 0.5191 0.4815 0.0522 v 0.3341 -0.4287 0.5129 v -0.2505 0.4966 0.1958 v -0.2200 0.2917 -0.5396 v 0.2741 0.4545 0.4463 v 0.2975 0.4860 -0.6988 v -0.3193 -0.1478 -0.5754 v -0.3942 0.2907 -0.3795 v -0.5249 0.4728 0.4619 v 0.0550 0.3778 0.5396 v 0.5188 0.4817 -0.1983 v -0.4396 0.2850 -0.6056 v -0.2740 0.4956 -0.1487 v -0.4919 0.4958 -0.4854 v 0.2975 0.4966 -0.4776 v -0.2050 0.3016 0.5419 v -0.2505 0.4966 0.4228 v 0.2377 0.2713 0.5479 v 0.4468 0.2397 -0.6005 v 0.1096 0.4545 0.0470 v 0.3380 0.0252 0.5789 v -0.1174 0.4966 -0.5245 v 0.3949 0.2739 0.4169 v -0.0783 0.4545 -0.3132 v 0.3997 -0.1290 -0.5088 v 0.4086 -0.4853 -0.5346 v -0.3360 0.4161 0.6315 v 0.3550 0.3785 0.0549 v -0.3758 0.3547 0.1880 v 0.3680 0.3409 0.2436 v 0.4482 0.4318 0.5126 v 0.1331 0.4545 -0.1644 v -0.0939 0.4545 0.0783 v -0.0548 0.4966 0.4541 v 0.0000 0.4697 0.7106 v 0.4933 0.4545 -0.3758 v -0.5218 0.4782 -0.0783 v 0.3367 0.4966 -0.3053 v -0.3680 0.3536 -0.1936 v 0.1410 0.4966 0.3445 v -0.3192 0.4472 -0.5403 v -0.4474 0.2927 0.5277 v 0.3960 0.3457 -0.4697 v 0.3380 0.3848 0.6300 v -0.4057 -0.5232 0.5275 v -0.3188 -0.2203 0.5794 v -0.4271 0.0821 0.5231 v 0.5011 0.4628 -0.7123 v 0.4228 0.4956 0.1879 v 0.1644 0.4240 -0.5395 v -0.2505 0.4545 0.0079 v -0.3914 0.4966 0.1096 v -0.3352 -0.5031 -0.5749 v 0.3904 0.3640 -0.1413 v -0.0160 0.3742 -0.5715 v -0.3504 0.4522 0.3054 v -0.0783 0.4548 -0.7049 v 0.1488 0.4966 0.5403 v -0.1566 0.4545 0.3054 v -0.3970 0.4395 -0.3288 v -0.4283 -0.0454 -0.5632 v 0.3452 0.1411 -0.5425 v 0.3980 0.3926 -0.6299 v 0.2506 0.4956 0.0313 v 0.3602 0.4956 0.3210 v -0.5272 0.4573 0.0731 v -0.3836 0.4545 -0.6811 v 0.0235 0.4966 -0.4619 v 0.3726 -0.5339 0.6028 v 0.3167 -0.2964 0.5673 v -0.3496 0.0191 0.6261 v 0.4463 0.4966 -0.0704 v -0.3468 0.2296 -0.5142 v -0.3914 0.4966 0.5011 v 0.1018 0.4966 0.1879 v -0.3679 0.1656 -0.6385 v -0.1409 0.4545 -0.1879 v -0.0939 0.3848 0.5395 v -0.4240 0.3613 -0.4955 v 0.2897 0.4966 0.5716 v -0.3850 -0.2339 -0.4987 v -0.3213 0.3542 0.5086 v 0.3246 -0.0617 -0.5938 v -0.2427 0.4626 0.7122 v 0.3539 0.1495 0.5274 v -0.0156 0.4966 0.5794 v -0.3182 0.3300 -0.6212 v 0.1644 0.4545 -0.6968 v 0.4265 -0.0530 0.5262 v -0.3993 0.4956 -0.1096 v -0.4581 0.1734 -0.5481 v 0.3706 0.4844 0.7015 v -0.2662 0.4966 0.5481 v 0.2271 0.4966 -0.2427 v 0.3177 -0.1917 -0.5813 v -0.1096 0.4966 0.1958 v -0.3414 0.2197 0.5242 v 0.1801 0.3770 0.5816 v -0.4697 0.4966 0.3523 v 0.0392 0.4966 -0.2349 v 0.3366 0.2515 0.6275 v 0.3325 0.2726 -0.6322 v 0.3915 0.4956 0.0470 v -0.1487 0.3926 -0.5816 v -0.3133 0.2892 0.6214 v 0.3286 0.3639 0.5080 v -0.3053 0.4956 -0.2662 v -0.4541 0.4545 0.5951 v 0.3961 0.3848 0.3523 v 0.0548 0.4545 0.4306 v 0.2271 0.4545 -0.3758 v -0.1566 0.4545 -0.4071 v 0.4448 0.0721 0.5278 v 0.4505 0.3142 0.5324 v 0.2506 0.4545 0.3054 v 0.3758 0.4966 -0.5794 v 0.2741 0.4240 -0.5816 v 0.3461 -0.5707 -0.5950 v 0.1723 0.4966 -0.0548 v 0.5240 0.4734 0.4358 v -0.1957 0.4545 -0.2897 v -0.4459 0.4472 -0.5795 v 0.3618 -0.3896 -0.5785 v -0.3136 -0.2963 -0.5641 v 0.3997 -0.0140 -0.5185 v -0.0078 0.4966 0.1410 v 0.3915 0.4966 -0.4071 v -0.4251 0.0673 -0.6196 v -0.3608 -0.2889 0.4956 v 0.5272 0.4573 0.1644 v -0.4225 -0.5625 -0.5336 v 0.4072 0.4966 -0.2114 v 0.0783 0.4545 0.6264 v 0.3618 0.1267 0.6372 v -0.1644 0.4956 -0.0861 v -0.2192 0.4966 -0.5715 v -0.4228 0.4956 -0.2192 v -0.3970 0.4318 0.4071 v 0.3235 -0.0853 0.5715 v 0.3567 0.2490 -0.5082 v 0.4524 0.1188 -0.5636 v -0.3564 -0.5733 0.6135 v -0.3889 0.4836 0.7013 v -0.5167 0.4545 -0.3680 v 0.4150 0.4966 0.5951 v 0.0627 0.4966 -0.0469 v -0.1566 0.4966 0.5011 v -0.4071 0.4963 -0.0000 v -0.1096 0.4697 0.7106 v 0.4150 0.4956 0.4306 v -0.3201 0.3352 -0.5130 v -0.4224 0.3535 0.6177 v 0.3843 -0.2572 0.4937 v -0.4517 0.1812 0.5561 v -0.2192 0.4004 0.5810 v -0.3375 0.0091 -0.5995 v 0.3836 0.1499 -0.6420 v -0.3504 0.4522 -0.4384 v -0.3992 -0.1799 0.5239 v 0.1801 0.4545 0.1253 v 0.3548 0.4083 -0.2349 v 0.3925 -0.2391 -0.5245 v 0.4332 0.4369 -0.5019 v -0.0704 0.4966 0.3445 v 0.0079 0.4966 -0.3523 v 0.3548 0.4005 -0.3601 v -0.1879 0.4545 0.1253 v 0.3968 0.3786 -0.0392 v -0.4000 -0.1327 -0.5026 v 0.0626 0.4318 -0.5405 v -0.3262 -0.1143 0.5955 v -0.4291 -0.0159 0.5641 v -0.4329 0.4037 0.5007 v 0.5168 0.4545 0.5872 v -0.2818 0.4966 0.0940 v 0.1410 0.4545 -0.4463 v -0.3293 -0.4785 0.5754 v 0.2114 0.4966 -0.6185 v -0.4071 0.4966 0.2192 v -0.0156 0.4966 0.0313 v 0.3970 0.4083 0.1409 v 0.3334 0.2639 0.5080 v -0.3970 0.3848 0.0940 v -0.3210 0.4545 -0.0626 v -0.3393 0.1260 0.5626 v 0.4019 0.4576 -0.7103 v 0.4450 0.3456 -0.5557 v 0.3289 0.4545 -0.0235 v -0.2427 0.4545 -0.4697 v 0.3132 0.4545 0.1018 v -0.1409 0.4966 -0.6420 v 0.3680 0.2847 -0.3909 v 0.4355 0.3874 0.5989 v -0.3408 -0.0565 -0.5209 v -0.3576 0.3283 -0.2872 v -0.4305 0.0843 0.6203 v -0.0313 0.4545 -0.1801 v -0.3290 -0.4062 -0.5772 v 0.4776 0.4966 -0.2897 v 0.3922 -0.3511 0.5169 v 0.3443 0.4546 0.2271 v -0.4307 0.2522 0.6185 v -0.3970 0.3691 0.2897 v 0.3341 0.0401 -0.5642 v 0.4011 -0.5001 0.5171 v 0.1879 0.4966 0.4385 v -0.0626 0.4545 -0.4228 v 0.4329 -0.6047 -0.5524 v -0.4393 0.2679 -0.5022 v 0.1726 0.3241 -0.5741 v -0.1487 0.4966 0.4072 v -0.3970 0.4004 -0.1174 v 0.5279 0.4621 -0.1018 v -0.2505 0.4966 0.2897 v -0.4384 0.4956 -0.3993 v -0.3880 -0.4603 -0.5081 v 0.3523 0.4545 0.5168 v -0.4932 0.4545 -0.1722 v 0.5272 0.4573 -0.4619 v 0.4437 0.2206 0.5121 v 0.4243 0.0072 0.6045 v 0.3370 -0.4794 -0.5930 v -0.0235 0.4966 -0.5950 v -0.3933 -0.4192 0.5139 v 0.3831 -0.6030 0.5434 v 0.1410 0.4545 0.2584 v -0.1331 0.4966 0.0078 v -0.3366 0.4545 0.1801 v -0.3210 0.4545 0.4620 v 0.2897 0.4545 0.6734 v -0.3993 0.4956 -0.5011 v 0.3127 -0.2030 0.5318 v 0.0470 0.4545 -0.1252 v 0.3174 0.3770 -0.5181 v -0.3444 0.0362 0.5378 v -0.4125 0.3691 -0.6223 v -0.2975 0.4966 0.6499 v -0.3445 0.4966 -0.6107 v 0.2192 0.4545 -0.1409 v 0.4385 0.4545 0.2662 v 0.4441 0.1065 0.6100 v -0.3262 0.2355 -0.6029 v 0.4240 0.1894 -0.5178 v -0.2270 0.3848 -0.5405 v -0.3553 0.3613 -0.4150 v -0.3970 0.3222 0.4619 v -0.4383 0.0367 -0.5235 v 0.0705 0.4966 0.2897 v -0.3559 0.4395 -0.2114 v 0.0940 0.4626 0.7122 v 0.4022 0.3095 0.6263 v 0.3054 0.4966 -0.2035 v 0.3966 0.4005 0.4384 v -0.0704 0.4545 0.6342 v -0.3994 -0.6086 0.5436 v 0.4698 0.4966 -0.6263 v 0.1253 0.4545 -0.6107 v 0.2192 0.4966 -0.5324 v 0.0627 0.4966 0.5403 v 0.1410 0.4966 -0.2427 v -0.3837 -0.5665 -0.6102 v 0.2192 0.4473 0.5396 v 0.4541 0.4545 -0.1487 v -0.3367 -0.3042 0.5784 v 0.4394 0.2730 -0.5080 v -0.1801 0.4545 0.2192 v -0.3366 0.4545 0.0235 v 0.3567 0.3121 0.3326 v 0.3548 0.4161 -0.4463 v -0.4425 -0.6471 -0.5587 v 0.1801 0.4545 -0.3053 v 0.0235 0.4966 0.3602 v -0.3506 -0.0744 -0.6043 v -0.3225 0.4161 -0.6242 v 0.4085 -0.0509 -0.5939 v -0.3375 0.0951 -0.6026 v 0.3377 -0.4382 -0.5147 v -0.5160 0.4853 0.5481 v -0.3366 0.4966 0.3915 v 0.1096 0.4966 -0.5167 v -0.5279 0.4621 -0.5794 v 0.3288 0.4956 0.3993 v 0.4541 0.4956 0.1018 v 0.3675 -0.1234 0.5032 v 0.3441 -0.2806 -0.5773 v 0.3865 -0.6157 0.6251 v 0.2271 0.4545 -0.4619 v 0.3330 -0.1870 -0.5004 v -0.5279 0.4621 0.3054 v -0.3836 0.4966 0.5951 v -0.0237 0.3750 0.5808 v -0.4776 0.4966 0.1253 v -0.3151 -0.1558 0.5257 v 0.4073 0.4546 -0.2897 v -0.4384 0.4545 0.2819 v -0.3667 -0.2177 -0.5767 v 0.0705 0.4545 -0.2975 v 0.0705 0.4545 0.1253 v -0.4541 0.4956 -0.3132 v 0.0000 0.4847 -0.7011 v 0.3871 -0.4239 0.5745 v -0.4534 0.4958 -0.6790 v 0.5089 0.4545 -0.0235 v 0.3779 -0.3684 -0.5008 v 0.4385 0.4545 0.3602 v 0.0921 0.3614 -0.5663 v 0.2896 0.3222 0.5816 v 0.3808 -0.1409 -0.5856 v 0.3758 0.4966 -0.4932 v 0.4050 0.3058 -0.6294 v -0.4853 0.4965 0.0157 v -0.2818 0.4545 0.3523 v 0.3538 0.4472 -0.1487 v -0.0704 0.4966 -0.2349 v 0.0313 0.4545 0.1958 v -0.3252 -0.0385 0.5718 v -0.0887 0.4521 -0.5881 v -0.2896 0.3535 0.5816 v -0.3149 -0.2026 -0.5177 v -0.3125 0.4948 -0.6842 v 0.3069 0.3535 -0.5951 v 0.3187 -0.1173 -0.5342 v 0.2271 0.3691 -0.5395 v -0.2035 0.4966 0.0548 v -0.2427 0.4545 -0.2270 v -0.4313 0.2099 -0.6261 v 0.3054 0.4545 -0.3993 v -0.2035 0.4545 0.3680 v -0.3399 -0.3144 -0.4927 v 0.4572 0.1500 0.5414 v 0.4035 -0.0997 0.5837 v 0.2349 0.4545 0.6185 v -0.2114 0.4545 0.6420 v -0.5193 0.4817 0.6264 v 0.3969 0.3222 0.4774 v -0.0078 0.4545 -0.2818 v -0.0861 0.4966 0.5481 v -0.0313 0.4545 -0.0313 v -0.3210 0.4966 0.2427 v 0.3921 0.0717 -0.5245 v -0.3970 0.3613 -0.3445 v 0.4386 0.4396 -0.5849 v 0.1879 0.4545 0.0470 v -0.1566 0.3457 0.5816 v -0.2270 0.4545 -0.1018 v 0.3445 0.4471 -0.6303 v -0.3439 0.0981 0.6334 v 0.3509 -0.0405 0.5163 v 0.3548 0.3378 0.4071 v -0.3290 0.4546 0.5403 v 0.0862 0.4545 -0.6968 v 0.2192 0.4545 0.3837 v 0.2584 0.4545 -0.2975 v 0.1566 0.4545 0.6029 v -0.3989 -0.1213 0.5759 v 0.3166 -0.3744 0.5624 v -0.0861 0.3848 -0.5403 v 0.3448 -0.5256 -0.5340 v -0.1566 0.4697 -0.7106 v 0.2896 0.4161 0.5816 v -0.3053 0.4545 -0.3288 v 0.4541 0.4966 -0.4619 v -0.2583 0.4545 -0.6263 v 0.3228 0.2205 -0.5795 v 0.3732 -0.2478 0.5694 v -0.5279 0.4621 0.3836 v -0.3970 0.4395 -0.0470 v 0.3246 -0.3267 0.4979 v -0.1722 0.4545 -0.4932 v 0.1879 0.4956 0.2114 v 0.3367 0.4966 0.6342 v 0.3548 0.4161 0.2897 v -0.1096 0.4966 -0.3680 v 0.4385 0.4546 0.7048 v -0.2036 0.4956 -0.1722 v -0.0861 0.4966 0.2662 v 0.2427 0.3613 0.5395 v 0.5071 0.4914 0.2271 v -0.3552 0.4083 0.2427 v 0.3680 0.4966 -0.0704 v -0.3557 0.2987 -0.4541 v -0.4425 0.4318 -0.5067 v -0.4087 -0.4979 -0.5731 v 0.2897 0.4966 -0.6263 v 0.2975 0.4956 0.2662 v 0.0079 0.4396 0.5395 v -0.3799 0.1641 -0.5168 v -0.4154 0.2273 0.5120 v 0.3760 0.0481 0.5193 v -0.3870 -0.3514 0.5536 v -0.4463 0.4966 0.6577 v 0.4976 0.4953 0.5298 v 0.1331 0.4545 0.4150 v 0.3734 -0.6478 -0.5616 v 0.3555 0.0836 -0.6336 v 0.4150 0.4545 -0.0078 v 0.2271 0.4545 -0.0235 v -0.3933 -0.1467 -0.5733 v -0.2949 0.2719 0.5424 v -0.1801 0.4966 -0.3523 v 0.3758 0.4956 0.1331 v -0.0235 0.4966 -0.5167 v -0.0391 0.4966 0.2114 v -0.1487 0.4318 0.5395 v -0.3833 -0.2527 0.5593 v -0.5272 0.4573 0.1670 v -0.3839 -0.3052 -0.5545 v -0.3778 -0.6168 -0.5465 v 0.3171 0.3065 -0.5318 v 0.3915 0.4966 -0.6498 v -0.3445 0.4956 -0.1566 v -0.4522 0.1021 -0.5473 v -0.2975 0.2700 -0.5480 v 0.1253 0.4545 -0.0939 v 0.0548 0.4966 0.0705 v 0.2975 0.4966 0.5011 v -0.2505 0.4545 0.4933 v -0.0861 0.4545 0.3993 v 0.0235 0.4966 0.6420 v 0.1100 0.3628 0.5814 v 0.3682 -0.0446 0.6103 v 0.3329 -0.4691 0.5727 v 0.3948 0.3437 -0.2362 v 0.3410 0.0952 0.5712 v -0.3970 0.3691 0.3602 v -0.4619 0.4966 0.5011 v 0.1488 0.4240 0.5395 v -0.4541 0.4545 0.1879 v -0.3366 0.4956 -0.3836 v 0.2975 0.4966 -0.5480 v -0.3196 -0.2331 0.5069 v 0.1253 0.4956 0.1018 v 0.2349 0.4956 0.1096 v 0.4161 -0.5457 -0.5865 v -0.0939 0.4545 -0.0626 v 0.0392 0.4966 -0.5637 v 0.3548 0.4318 0.3837 v -0.3371 0.1594 -0.5752 v -0.1775 0.4849 0.7009 v 0.3948 0.2721 -0.4541 v 0.3108 -0.3739 -0.5329 v 0.3291 0.1958 0.5865 v -0.1879 0.4545 0.4463 v 0.1879 0.4966 -0.4149 v -0.0939 0.4545 0.4933 v -0.3679 0.2829 -0.6328 v 0.3276 -0.1557 0.5804 v -0.4421 0.1343 -0.6133 v -0.3366 0.4545 0.1096 v -0.1409 0.4966 -0.2427 v 0.3210 0.4956 0.0313 v -0.3280 -0.4073 -0.5083 v -0.4201 -0.5610 0.5886 v 0.4463 0.4966 -0.5324 v -0.3978 -0.4600 0.5683 v -0.5011 0.4545 -0.6420 v 0.5279 0.4621 -0.6498 v 0.2271 0.4791 -0.7060 v 0.3548 0.4240 -0.0783 v -0.3511 -0.5611 0.5436 v -0.3802 -0.0424 0.6109 v 0.1782 0.3210 0.5438 v 0.4442 0.1664 -0.6108 v 0.5272 0.4573 -0.3132 v 0.3897 -0.1868 0.4967 v 0.3548 0.3848 0.1879 v -0.2114 0.4966 -0.4228 v -0.3970 0.4239 0.1488 v 0.0627 0.4966 -0.4071 v -0.2897 0.4966 -0.4932 v 0.0705 0.4966 -0.1722 v -0.0469 0.4545 -0.6420 v -0.0626 0.4545 0.1644 v -0.4382 0.1700 0.6211 v 0.4385 0.4966 -0.3445 v -0.1957 0.4966 0.5559 v -0.4472 0.3483 -0.5685 v 0.2741 0.4961 0.3601 v 0.3911 0.1969 0.6374 v -0.3245 0.2051 0.5952 v 0.1253 0.4966 0.4776 v 0.1331 0.4545 -0.0156 v 0.0861 0.4966 0.3837 v -0.3934 -0.4217 -0.5683 v 0.3759 0.2126 0.5104 v -0.4697 0.4956 -0.1253 v -0.2896 0.3770 -0.5816 v -0.4463 0.4956 -0.0626 v -0.4450 0.3613 0.5557 v 0.4306 0.4956 0.5168 v 0.3752 0.4395 0.6290 v 0.3486 -0.5456 0.5423 v 0.3878 -0.3200 -0.5472 v -0.4071 0.4966 0.4150 v 0.4363 -0.5933 0.5880 v 0.3548 0.3770 -0.2975 v -0.4043 0.4239 0.6254 v -0.3291 -0.1213 -0.5161 v 0.3486 -0.0621 -0.5153 v -0.3548 0.3926 -0.3053 v 0.2584 0.4966 -0.0626 v -0.3657 0.0039 -0.5173 v -0.3288 0.4545 0.6890 v -0.4619 0.4545 0.0705 v 0.3504 0.4522 0.4515 v 0.3500 0.0137 -0.6255 v -0.3632 -0.6403 0.5875 v -0.3758 0.4545 -0.5715 v -0.4149 0.4545 -0.4463 v -0.1409 0.4966 0.1096 v 0.1331 0.4964 0.6728 v -0.4541 0.4545 0.4306 v 0.2897 0.4545 -0.1566 v -0.4197 0.0016 -0.6070 v -0.3764 0.2992 0.6317 v 0.3974 0.0651 0.6265 v -0.0783 0.4545 0.0157 v -0.0235 0.4545 0.3837 v -0.4071 0.4966 -0.6263 v -0.3915 0.4956 -0.2975 v -0.3567 0.2719 0.4619 v -0.2740 0.4956 -0.0783 v -0.1253 0.4956 -0.1409 v -0.2584 0.4956 -0.3132 v -0.2896 0.4239 0.5806 v -0.3970 0.4395 0.0391 v -0.3092 -0.3196 0.5179 v 0.3739 -0.6655 0.5795 v -0.1478 0.3384 -0.5479 v 0.4378 0.0083 0.5395 v 0.3102 -0.2414 -0.5242 v 0.1723 0.4545 0.4854 v 0.2662 0.4966 -0.3445 v 0.0705 0.4545 -0.4541 v 0.0157 0.4545 -0.4149 v 0.3916 0.2441 -0.6367 v -0.2427 0.4545 0.2427 v -0.3979 0.4472 -0.1644 v 0.3983 -0.4372 0.5106 v -0.3528 -0.4677 0.5138 v -0.3970 0.4083 -0.4071 v 0.2193 0.4956 0.2662 v 0.3437 0.4395 -0.5039 v 0.3965 0.3770 -0.4149 v 0.4698 0.4956 0.3993 v 0.4620 0.4545 0.6185 v -0.1879 0.4545 -0.6420 v -0.4071 0.4966 0.3445 v 0.3210 0.4545 0.1644 v 0.4228 0.4956 0.3132 v 0.4446 0.0562 -0.5558 v 0.3970 0.4395 0.0861 v -0.3550 0.4161 0.3602 v 0.4620 0.4545 0.1488 v -0.3914 0.4545 0.5481 v -0.4072 0.1579 0.5183 v -0.3601 -0.3588 0.4973 v 0.3307 0.1501 -0.6029 v 0.2271 0.4318 -0.5395 v -0.0313 0.4545 0.0783 v 0.0627 0.4966 0.4776 v 0.0000 0.4318 -0.5405 v -0.0156 0.4966 0.5168 v -0.1096 0.4966 -0.4306 v 0.3132 0.4545 0.3210 v -0.2270 0.3378 -0.5816 v -0.4090 -0.0688 -0.5087 v -0.3599 0.4161 0.5022 v -0.4004 0.4311 -0.6258 v -0.4178 -0.6284 -0.6261 v -0.3612 -0.5276 -0.5239 v -0.3752 -0.0139 0.5174 v -0.3680 0.4395 -0.5025 v 0.2114 0.4966 0.3289 v 0.4385 0.4966 0.6577 v 0.1253 0.4964 -0.6728 v 0.0157 0.4545 -0.6185 v 0.1958 0.4966 -0.1801 v 0.4463 0.4545 -0.2349 v -0.1331 0.4966 0.3445 v -0.0783 0.4545 -0.5011 v -0.3562 0.3788 0.0476 v 0.4178 0.0948 -0.6280 v 0.3140 -0.2672 0.5116 v 0.4044 -0.5968 -0.6194 v 0.3321 0.3143 0.6257 v -0.3527 -0.4055 0.5826 v -0.3550 0.3778 -0.0784 v 0.2584 0.4545 0.2427 v -0.4463 0.4545 -0.2583 v 0.3993 0.3795 0.4993 v -0.3970 0.4161 -0.2505 v -0.5193 0.4817 -0.4228 v -0.2349 0.4966 0.6029 v -0.2975 0.4966 0.1566 v -0.2036 0.4956 -0.0391 v 0.0705 0.4545 0.0000 v -0.3053 0.4956 -0.2035 v 0.2036 0.4966 0.5872 v -0.5167 0.4545 -0.0156 v 0.4387 0.2629 0.6117 v 0.3752 -0.5873 -0.5435 v -0.3616 0.3390 0.2504 v -0.3053 0.4960 -0.0079 v 0.3193 0.2673 0.5715 v -0.5160 0.4853 -0.3132 v -0.2427 0.4522 -0.5375 v 0.4192 -0.0764 -0.5401 v -0.1096 0.4471 0.5830 v -0.4420 0.3060 0.5866 v -0.3605 0.3613 0.6319 v -0.2425 0.2765 0.5813 v 0.1853 0.4521 -0.5881 v -0.1331 0.4545 0.6577 v 0.3954 -0.4382 -0.5690 v 0.2984 0.2832 -0.5836 v 0.0783 0.4161 0.5806 v -0.3143 -0.2620 -0.5117 v -0.3553 0.3378 0.3289 v 0.3960 0.3613 0.2975 v -0.3053 0.4966 0.3132 v 0.3993 0.4956 0.2427 v -0.2897 0.4966 -0.5872 v 0.0705 0.4545 0.3445 v 0.1410 0.4545 0.1723 v -0.2270 0.4545 -0.3680 v 0.0079 0.4966 -0.1644 v -0.3222 0.3946 -0.5090 v -0.3680 0.4966 0.0548 v 0.0548 0.4545 0.2506 v -0.4194 -0.0764 0.5402 v 0.3970 0.3378 -0.3602 v -0.3553 0.3613 0.4462 v -0.4525 0.2445 -0.5643 v 0.3963 0.4240 -0.1957 v -0.0861 0.4545 -0.1252 v 0.1488 0.4956 0.0235 v 0.3735 -0.2176 -0.5758 v 0.4698 0.4956 0.0235 v -0.5089 0.4545 -0.5245 v -0.3291 -0.4632 -0.5326 v 0.4972 0.4950 -0.4176 v -0.3678 -0.5168 0.6055 v 0.2192 0.4966 0.5089 v -0.4069 -0.6656 0.5577 v -0.0235 0.4966 -0.4071 v 0.1644 0.4574 0.7101 v 0.3884 -0.2962 0.5413 v -0.2427 0.4545 0.1018 v 0.4385 0.4545 -0.6655 v 0.3970 0.4395 -0.3993 v 0.3381 0.1978 -0.5285 v -0.4490 0.4522 0.5376 v -0.3684 0.0872 0.5253 v -0.3969 0.3466 -0.2430 v 0.1879 0.4545 0.2975 v -0.0078 0.4966 0.3054 v 0.3903 0.3926 -0.5025 v 0.0940 0.4545 0.5011 v -0.2114 0.4966 0.4776 v -0.4150 0.4958 -0.5637 v -0.1879 0.4966 0.1644 v -0.3550 0.4161 -0.3602 v -0.0313 0.4318 0.5806 v 0.3443 0.4546 -0.3445 v -0.3601 0.4956 -0.0548 v -0.3970 0.4395 0.2192 v -0.4055 0.0332 0.6249 v 0.3173 0.3691 0.5637 v 0.4320 0.0043 -0.5760 v -0.4776 0.4960 -0.6107 v -0.4395 0.0402 0.5637 v -0.2192 0.3613 0.5395 v -0.4228 0.4966 0.1644 v -0.1252 0.4966 -0.2975 v 0.2741 0.4545 -0.2427 v 0.2427 0.4966 0.4228 v 0.3680 0.4545 0.5716 v 0.0862 0.4545 -0.2427 v -0.2662 0.4545 0.6264 v 0.0705 0.4546 -0.5952 v -0.1957 0.4545 0.5168 v 0.4010 0.4521 -0.1174 v 0.2271 0.4545 0.1644 v -0.4384 0.4545 -0.1018 v -0.2192 0.4956 -0.2584 v -0.3443 0.4546 -0.1174 v -0.4463 0.4545 -0.3523 v 0.3970 0.4083 0.0313 v 0.3132 0.4956 0.2036 v -0.3970 0.4004 0.4541 v 0.1096 0.4545 -0.3993 v -0.3747 -0.2260 0.4965 v -0.3523 0.4966 -0.5324 v -0.3507 0.4521 -0.2662 v -0.2114 0.4545 0.2897 v -0.2818 0.4966 0.4698 v 0.3602 0.4966 -0.2427 v 0.0157 0.4966 -0.0783 v -0.1096 0.4545 0.1331 v -0.0313 0.4545 -0.3445 v -0.0313 0.4545 -0.4697 v 0.1410 0.3848 -0.5816 v -0.4436 -0.6261 0.5792 v 0.3360 0.3848 -0.6315 v 0.4428 0.4494 0.5660 v 0.4116 -0.5069 0.5728 v -0.3691 -0.3677 -0.5696 v -0.2818 0.3143 -0.5816 v -0.4328 0.3409 0.5007 v 0.1723 0.4545 -0.4932 v 0.4070 0.2606 0.4984 v 0.3921 -0.4905 -0.5886 v 0.2427 0.4697 0.7106 v -0.3680 0.0566 -0.6294 v -0.3132 -0.3590 -0.5323 v 0.3899 0.3695 0.1013 v 0.3152 0.3143 0.5326 v -0.1801 0.4471 0.5830 v 0.3698 -0.3588 0.5686 v -0.3957 0.2830 0.5015 v 0.4420 0.2912 -0.5798 v 0.4147 -0.1184 0.5323 v 0.4523 0.2524 0.5569 v 0.4776 0.4960 0.2740 v 0.4698 0.4956 0.4776 v -0.0313 0.4966 0.6499 v 0.3993 0.4966 -0.1566 v 0.2114 0.4966 -0.3366 v -0.1174 0.4966 0.4620 v 0.0313 0.4966 -0.2897 v 0.2114 0.4545 -0.0861 v -0.1879 0.4545 -0.2192 v -0.4306 0.4956 -0.1644 v 0.3152 0.4161 0.5326 v 0.3548 0.3848 0.0000 v 0.5089 0.4545 0.4854 v -0.3970 0.4004 -0.1957 v 0.2271 0.3222 -0.5816 v 0.4149 0.1732 0.5149 v -0.3706 -0.2017 0.5799 v 0.5272 0.4573 -0.5950 v -0.3996 0.2152 -0.5087 v -0.3677 -0.1392 0.5045 v 0.3296 -0.0139 -0.5553 v 0.4253 -0.6656 -0.5606 v -0.3680 0.2204 -0.6358 v 0.3970 0.4318 0.3210 v 0.1096 0.4966 0.2427 v 0.2506 0.4966 0.6499 v 0.0157 0.4545 0.0000 v -0.0548 0.4697 0.7106 v -0.2505 0.4545 -0.0469 v 0.3680 0.4956 0.1879 v -0.0704 0.4966 -0.1801 v 0.3210 0.4545 -0.2740 v 0.1488 0.4966 -0.1331 v -0.1644 0.4545 0.0235 v -0.0391 0.4545 0.4854 v 0.0783 0.4966 -0.1096 v 0.3429 0.0639 0.6215 v -0.0391 0.4545 0.3210 v -0.2270 0.4240 -0.5816 v -0.4975 0.4949 0.4150 v 0.3548 0.3691 0.4541 v 0.4397 0.3854 -0.5924 v -0.4305 -0.5849 -0.5897 v 0.2271 0.4545 -0.6576 v -0.4493 0.1103 0.5638 v -0.4776 0.4960 -0.2035 v 0.4776 0.4960 0.5872 v 0.0157 0.4546 0.5952 v 0.4495 0.3770 0.5476 v -0.4003 0.3052 -0.4981 v 0.3549 0.3143 -0.4853 v 0.3912 0.1108 0.5220 v -0.3548 0.3770 -0.4697 v -0.2897 0.4545 -0.1174 v 0.2819 0.4545 0.0470 v -0.2740 0.4545 -0.2818 v -0.4002 -0.1914 -0.5440 v 0.3970 0.3143 0.3680 v -0.1174 0.4966 -0.5794 v 0.2036 0.4545 -0.2192 v -0.4306 0.4545 0.3680 v -0.3601 0.4966 0.1566 v -0.0861 0.4545 0.2192 v 0.2741 0.4545 0.5246 v -0.4619 0.4545 -0.0078 v 0.3861 -0.1824 -0.5010 v -0.3490 -0.5556 -0.5714 v -0.4541 0.4626 0.7122 v 0.5279 0.4621 0.6420 v -0.3558 0.4161 -0.0078 v 0.3970 0.4004 -0.2662 v -0.3548 0.3848 -0.2427 v -0.2740 0.3457 -0.5395 v -0.1879 0.4966 0.2506 v -0.1722 0.4161 -0.5402 v -0.1018 0.4545 -0.2270 v -0.3914 0.4966 0.6499 v 0.0079 0.4545 -0.2270 v -0.0156 0.4545 -0.1018 v 0.2192 0.4005 -0.5816 v -0.2192 0.4545 0.1723 v -0.2114 0.4966 -0.4776 v -0.1801 0.4966 -0.5245 v 0.0313 0.4545 0.4854 v 0.0392 0.4545 -0.3601 v 0.1018 0.4545 0.2975 v 0.1018 0.4966 -0.4619 v 0.3549 0.4396 0.0235 v -0.0469 0.4161 -0.5816 v -0.1644 0.3770 0.5395 v 0.1253 0.4545 -0.3210 v 0.2897 0.4545 -0.5167 v -0.1957 0.4966 0.3367 v -0.3354 0.2857 -0.5020 v 0.4193 -0.5660 0.5325 v -0.4231 -0.0184 -0.5160 v 0.3986 0.4471 -0.6316 v 0.3367 0.4966 -0.1566 v 0.4698 0.4966 -0.2114 v 0.5193 0.4812 0.3654 v -0.0704 0.4956 -0.0391 v 0.4349 0.3316 -0.5025 v -0.4932 0.4545 0.5089 v -0.3553 0.4083 -0.1487 v 0.4704 0.4958 -0.6790 v 0.3680 0.2698 0.4620 v 0.3549 0.3554 -0.2039 v 0.3932 0.3613 0.6243 v 0.3548 0.3926 0.2427 v 0.3445 0.4966 -0.4306 v 0.2897 0.4966 -0.2818 v -0.5167 0.4545 -0.1252 v -0.3436 0.3072 0.5013 v 0.2975 0.4966 -0.0156 v 0.3445 0.4956 0.0783 v 0.4385 0.4545 0.0392 v -0.0704 0.4966 -0.6185 v 0.2506 0.4966 -0.1409 v 0.0157 0.4545 0.0548 v -0.3132 0.4961 -0.4306 v 0.1644 0.4966 0.3915 v 0.3211 -0.1386 0.5225 v 0.1410 0.3691 0.5395 v 0.3745 -0.3118 -0.4971 v -0.2192 0.4966 -0.6420 v -0.2818 0.4545 0.2897 v -0.3970 0.3456 0.4071 v -0.4013 0.4522 0.4750 v -0.3969 0.3085 0.3531 v 0.4045 -0.5454 -0.5327 v 0.1879 0.4956 0.1566 v -0.2505 0.4956 -0.1957 v -0.4854 0.4545 -0.4541 v 0.3133 -0.3224 -0.5718 v -0.3256 -0.0845 0.5397 v 0.2741 0.4545 0.3915 v -0.3134 0.4004 0.5313 v -0.4502 0.3926 -0.5401 v -0.3906 0.3115 -0.3309 v 0.4023 0.4530 0.5014 v -0.4496 0.3222 -0.5178 v 0.3210 0.4545 -0.4541 v 0.3293 -0.1392 -0.5902 v -0.3426 0.0378 -0.5488 v 0.3912 -0.4400 -0.5168 v 0.3132 0.4956 0.1331 v 0.4463 0.4545 0.4306 v -0.3588 -0.6091 -0.5949 v 0.3212 0.4546 0.5951 v -0.4144 -0.1047 -0.5520 v 0.3756 0.0101 0.6213 v -0.3970 0.4318 0.3132 v -0.4508 0.2205 -0.5186 v 0.3979 0.4472 0.4071 v -0.4463 0.4956 -0.4619 v 0.3522 -0.3828 0.4990 v 0.4357 0.1571 0.6232 v -0.3961 -0.0510 -0.6045 v 0.3352 0.1440 0.5971 v 0.3300 0.1947 -0.6279 v 0.3567 0.3732 -0.0837 v 0.4130 0.1969 -0.6374 v -0.3912 0.2280 0.6399 v 0.4413 -0.6270 -0.6014 v 0.3979 0.4472 0.2271 v 0.4292 -0.6244 0.5451 v -0.1100 0.3553 -0.5774 v -0.3970 0.3691 -0.2897 v -0.3548 0.4083 0.1253 v -0.3970 0.3613 -0.4463 v 0.3968 0.4161 -0.3210 v -0.1566 0.4545 -0.3366 v 0.1018 0.4966 0.6107 v -0.0235 0.4966 -0.2583 v 0.0079 0.4545 0.1175 v -0.0626 0.4966 -0.4776 v 0.3602 0.4545 -0.5559 v -0.3132 0.4545 -0.4776 v -0.4149 0.4545 0.6655 v 0.0548 0.4966 0.2114 v -0.2662 0.3378 0.5395 v -0.3132 0.4966 0.5168 v -0.3221 -0.4326 0.5399 v -0.4776 0.4548 -0.7049 v 0.3534 -0.4755 0.5122 v 0.2132 0.3005 0.5812 v -0.3188 -0.2334 -0.5723 v 0.3443 -0.2077 0.5799 v 0.4426 0.0475 0.5801 v 0.5272 0.4573 0.2740 v -0.3905 -0.6657 -0.5558 v 0.0471 0.3782 -0.5815 v -0.3995 0.0402 0.5206 v -0.4088 -0.5105 0.5772 v 0.4852 0.4962 0.1644 v 0.4541 0.4545 -0.4071 v 0.1723 0.4966 0.6264 v -0.3445 0.4966 0.5637 v -0.3558 0.3848 0.3993 v 0.3445 0.4966 -0.6185 v -0.2975 0.4545 0.2114 v 0.1644 0.4545 -0.6420 v -0.2192 0.4966 0.1253 v -0.1487 0.4966 -0.4619 v 0.2740 0.4956 0.0783 v 0.3495 -0.2164 0.4928 v 0.0313 0.3927 0.5811 v 0.3230 0.4930 0.6888 v 0.3548 0.4318 0.1175 v 0.3523 0.4628 -0.7123 v -0.3906 0.3641 0.1413 v -0.1409 0.4545 -0.1018 v -0.3525 -0.1791 -0.4949 v 0.4505 0.1969 -0.5719 v -0.2036 0.4956 -0.1174 v 0.4776 0.4545 0.2114 v -0.3322 0.2385 0.6313 v 0.3178 0.4083 -0.5637 v 0.4496 0.2363 -0.5400 v 0.5024 0.4937 -0.1305 v -0.3919 0.1021 -0.6322 v 0.3440 -0.2647 -0.4962 v 0.3875 0.1227 -0.5242 v 0.4776 0.4545 -0.3288 v 0.4306 0.4966 -0.5794 v -0.1487 0.4545 -0.2740 v 0.1644 0.4545 -0.3523 v -0.3523 0.4956 -0.2192 v -0.2662 0.4966 0.3758 v -0.2975 0.4545 0.3993 v 0.2819 0.4545 -0.0391 v -0.0626 0.4545 -0.2662 v 0.0392 0.4966 0.4072 v 0.0392 0.4966 0.1253 v -0.4384 0.4966 0.0940 v -0.4776 0.4545 -0.0548 v -0.0548 0.4966 0.1253 v -0.2975 0.4966 0.0470 v -0.1409 0.4545 0.4776 v -0.3548 0.3457 -0.3680 v 0.2271 0.3926 0.5816 v -0.2818 0.4545 0.6734 v -0.1644 0.4966 -0.5950 v 0.3289 0.4966 -0.3836 v 0.2047 0.3080 -0.5398 v -0.3836 0.1342 0.6418 v -0.1409 0.3926 0.5810 v -0.2897 0.4545 0.1253 v 0.3548 0.3535 0.3602 v 0.2741 0.4545 -0.4384 v -0.0391 0.4966 0.4072 v 0.1723 0.4966 -0.5480 v -0.4852 0.4962 -0.3836 v -0.3602 0.3848 -0.6278 v -0.3753 0.3378 -0.6292 v -0.4453 0.0397 -0.5720 v -0.3895 -0.3043 0.5323 v 0.3550 0.3704 0.1411 v 0.5190 0.4816 0.1227 v -0.3601 0.4545 0.6499 v 0.4355 0.3326 0.5989 v -0.3360 0.1729 0.5492 v -0.3445 0.4966 0.4541 v 0.0313 0.4545 -0.4854 v 0.1566 0.4545 0.3680 v 0.1488 0.4545 -0.2192 f 1 856 876 f 2 738 679 f 3 922 780 f 4 826 425 f 5 942 490 f 6 946 499 f 7 742 441 f 8 828 616 f 9 748 681 f 10 704 617 f 11 893 665 f 12 611 715 f 13 924 562 f 14 948 858 f 15 691 796 f 16 776 488 f 17 902 421 f 18 660 878 f 19 887 885 f 20 915 635 f 21 980 882 f 22 753 648 f 23 837 859 f 24 941 621 f 25 949 906 f 26 1003 773 f 27 827 609 f 28 849 985 f 29 640 804 f 30 883 354 f 31 1004 921 f 32 440 462 f 33 718 724 f 34 666 530 f 35 673 1017 f 36 943 914 f 37 839 629 f 38 600 831 f 39 894 711 f 40 968 492 f 41 532 432 f 42 897 998 f 43 798 861 f 44 965 651 f 45 857 978 f 46 668 511 f 47 890 812 f 48 913 891 f 49 900 850 f 50 646 707 f 51 987 731 f 52 944 496 f 53 972 756 f 54 631 671 f 55 795 909 f 56 817 615 f 57 864 816 f 58 990 735 f 59 824 642 f 60 903 747 f 61 1018 645 f 62 770 723 f 63 969 637 f 64 867 654 f 65 898 740 f 66 791 1024 f 67 734 594 f 68 1009 793 f 69 786 761 f 70 982 954 f 71 870 994 f 72 869 790 f 73 772 689 f 74 1023 879 f 75 728 662 f 76 744 755 f 77 860 809 f 78 866 525 f 79 952 494 f 80 775 465 f 81 951 803 f 82 863 491 f 83 788 656 f 84 745 647 f 85 787 638 f 86 993 820 f 87 825 675 f 88 919 865 f 89 847 950 f 90 910 655 f 91 506 393 f 92 515 633 f 93 730 614 f 94 722 697 f 95 916 854 f 96 981 686 f 97 855 800 f 98 963 813 f 99 599 584 f 100 538 345 f 101 603 553 f 102 1022 568 f 103 741 526 f 104 618 399 f 105 702 495 f 106 414 717 f 107 777 852 f 108 886 589 f 109 938 783 f 110 781 979 f 111 834 767 f 112 1005 848 f 113 899 928 f 114 907 822 f 115 971 815 f 116 895 871 f 117 779 901 f 118 1000 473 f 119 810 774 f 120 806 597 f 121 743 1013 f 122 960 610 f 123 564 757 f 124 719 768 f 125 911 446 f 126 966 408 f 127 940 628 f 128 818 710 f 129 901 672 f 130 821 507 f 131 1020 433 f 132 999 881 f 133 819 582 f 134 836 765 f 135 639 620 f 136 650 570 f 137 873 874 f 138 833 925 f 139 975 549 f 140 752 703 f 141 814 632 f 142 687 531 f 143 1007 782 f 144 991 842 f 145 763 567 f 146 598 962 f 147 947 564 f 148 807 758 f 149 608 623 f 150 958 935 f 151 976 838 f 152 636 619 f 153 766 516 f 154 771 579 f 155 984 720 f 156 695 705 f 157 649 475 f 158 652 945 f 159 704 642 f 160 995 992 f 161 868 685 f 162 979 1014 f 163 1015 561 f 164 1017 953 f 165 801 605 f 166 762 732 f 167 931 651 f 168 917 795 f 169 970 973 f 170 1001 641 f 171 768 804 f 172 819 725 f 173 481 455 f 174 686 809 f 175 585 497 f 176 677 487 f 177 937 835 f 178 1011 627 f 179 740 805 f 180 733 631 f 181 997 764 f 182 663 823 f 183 786 648 f 184 905 912 f 185 852 831 f 186 644 645 f 187 964 682 f 188 590 508 f 189 707 753 f 190 902 749 f 191 920 592 f 192 936 878 f 193 778 727 f 194 889 659 f 195 829 669 f 196 672 824 f 197 692 488 f 198 796 614 f 199 843 735 f 200 699 929 f 201 961 839 f 202 770 919 f 203 908 601 f 204 715 596 f 205 893 389 f 206 706 665 f 207 725 744 f 208 827 805 f 209 996 1006 f 210 745 726 f 211 941 677 f 212 802 647 f 213 708 701 f 214 877 785 f 215 967 751 f 216 864 752 f 217 969 927 f 218 700 721 f 219 1020 688 f 220 968 684 f 221 800 860 f 222 989 872 f 223 840 504 f 224 967 904 f 225 1001 581 f 226 666 474 f 227 807 1019 f 228 536 532 f 229 926 897 f 230 702 803 f 231 789 661 f 232 742 518 f 233 982 509 f 234 914 754 f 235 923 724 f 236 921 644 f 237 637 653 f 238 779 540 f 239 943 741 f 240 879 711 f 241 736 680 f 242 922 636 f 243 911 808 f 244 1003 773 f 245 764 614 f 246 862 622 f 247 978 337 f 248 884 730 f 249 1011 722 f 250 675 518 f 251 898 769 f 252 870 804 f 253 676 396 f 254 774 758 f 255 947 909 f 256 747 392 f 257 875 611 f 258 574 489 f 259 924 853 f 260 783 844 f 261 792 551 f 262 959 820 f 263 1021 731 f 264 966 748 f 265 728 913 f 266 964 946 f 267 794 837 f 268 976 577 f 269 688 951 f 270 1013 1012 f 271 1000 714 f 272 657 553 f 273 876 766 f 274 923 759 f 275 915 550 f 276 781 480 f 277 977 972 f 278 797 831 f 279 998 928 f 280 755 744 f 281 1014 854 f 282 844 664 f 283 729 986 f 284 545 681 f 285 1019 866 f 286 856 547 f 287 799 912 f 288 761 643 f 289 679 738 f 290 863 983 f 291 960 715 f 292 1010 593 f 293 595 693 f 294 1024 713 f 295 906 825 f 296 822 678 f 297 717 978 f 298 561 1015 f 299 977 860 f 300 832 839 f 301 828 638 f 302 1007 816 f 303 900 577 f 304 949 801 f 305 985 849 f 306 991 691 f 307 916 190 f 308 1012 521 f 309 642 704 f 310 749 979 f 311 903 475 f 312 861 460 f 313 988 1021 f 314 845 1010 f 315 674 705 f 316 512 894 f 317 588 1017 f 318 880 757 f 319 892 527 f 320 529 562 f 321 1008 745 f 322 824 565 f 323 400 133 f 324 956 835 f 325 698 965 f 326 993 708 f 327 778 893 f 328 929 829 f 329 910 701 f 330 945 815 f 331 713 765 f 332 992 933 f 333 722 640 f 334 506 12 f 335 573 754 f 336 942 553 f 337 673 247 f 338 882 527 f 339 782 912 f 340 950 737 f 341 752 703 f 342 901 672 f 343 577 868 f 344 570 756 f 345 823 634 f 346 988 987 f 347 856 717 f 348 932 990 f 349 938 664 f 350 893 495 f 351 817 847 f 352 939 559 f 353 971 652 f 354 30 272 f 355 739 976 f 356 901 533 f 357 838 593 f 358 792 961 f 359 890 767 f 360 781 668 f 361 1008 1002 f 362 851 987 f 363 652 750 f 364 774 254 f 365 757 455 f 366 784 633 f 367 714 628 f 368 142 312 f 369 625 864 f 370 932 990 f 371 643 479 f 372 785 859 f 373 959 655 f 374 981 585 f 375 998 897 f 376 800 983 f 377 671 98 f 378 1005 848 f 379 973 787 f 380 958 855 f 381 1004 219 f 382 173 123 f 383 1007 799 f 384 956 940 f 385 610 12 f 386 894 711 f 387 869 710 f 388 955 633 f 389 665 205 f 390 754 914 f 391 925 847 f 392 888 636 f 393 225 581 f 394 907 769 f 395 814 558 f 396 676 954 f 397 883 797 f 398 918 686 f 399 946 682 f 400 798 133 f 401 828 700 f 402 618 914 f 403 841 962 f 404 889 576 f 405 966 907 f 406 867 782 f 407 598 930 f 408 609 126 f 409 890 973 f 410 821 437 f 411 999 341 f 412 974 759 f 413 701 637 f 414 717 1 f 415 852 808 f 416 896 543 f 417 87 605 f 418 958 40 f 419 623 724 f 420 698 806 f 421 777 472 f 422 755 590 f 423 810 147 f 424 1015 591 f 425 937 835 f 426 760 805 f 427 1023 879 f 428 780 636 f 429 617 540 f 430 874 723 f 431 989 766 f 432 908 815 f 433 646 939 f 434 930 660 f 435 788 904 f 436 934 736 f 437 821 507 f 438 753 716 f 439 775 1015 f 440 32 326 f 441 742 158 f 442 949 906 f 443 650 809 f 444 855 958 f 445 721 632 f 446 1014 281 f 447 743 852 f 448 791 794 f 449 992 877 f 450 822 251 f 451 731 694 f 452 1009 552 f 453 761 806 f 454 881 651 f 455 909 365 f 456 943 335 f 457 865 829 f 458 917 795 f 459 885 957 f 460 861 687 f 461 881 566 f 462 708 701 f 463 878 18 f 464 850 49 f 465 727 163 f 466 54 194 f 467 963 889 f 468 888 747 f 469 859 970 f 470 715 257 f 471 912 143 f 472 310 110 f 473 648 118 f 474 809 226 f 475 892 21 f 476 917 135 f 477 997 694 f 478 145 210 f 479 997 793 f 480 1013 781 f 481 946 880 f 482 979 162 f 483 1006 927 f 484 984 709 f 485 873 872 f 486 750 675 f 487 952 289 f 488 983 197 f 489 952 258 f 490 705 942 f 491 776 82 f 492 802 122 f 493 919 717 f 494 289 79 f 495 350 105 f 496 944 881 f 497 972 920 f 498 982 233 f 499 964 318 f 500 1016 867 f 501 840 18 f 502 927 969 f 503 726 569 f 504 936 878 f 505 794 661 f 506 875 611 f 507 734 995 f 508 188 1004 f 509 982 233 f 510 716 753 f 511 896 899 f 512 894 316 f 513 915 20 f 514 975 1020 f 515 693 595 f 516 671 631 f 517 991 658 f 518 742 232 f 519 774 746 f 520 768 719 f 521 831 743 f 522 994 719 f 523 744 644 f 524 898 760 f 525 712 907 f 526 103 259 f 527 882 319 f 528 546 172 f 529 924 853 f 530 829 929 f 531 937 1018 f 532 41 971 f 533 779 356 f 534 926 697 f 535 989 872 f 536 902 854 f 537 1000 1018 f 538 993 100 f 539 912 251 f 540 10 238 f 541 679 289 f 542 695 728 f 543 913 575 f 544 734 201 f 545 955 681 f 546 798 528 f 547 876 856 f 548 1014 916 f 549 645 139 f 550 795 909 f 551 67 372 f 552 1009 452 f 553 695 272 f 554 94 333 f 555 871 755 f 556 787 812 f 557 970 670 f 558 814 395 f 559 895 714 f 560 301 663 f 561 163 24 f 562 13 320 f 563 925 138 f 564 947 123 f 565 980 322 f 566 515 240 f 567 763 387 f 568 1022 845 f 569 680 843 f 570 920 344 f 571 730 884 f 572 772 768 f 573 943 239 f 574 941 258 f 575 928 543 f 576 690 623 f 577 935 900 f 578 77 685 f 579 905 858 f 580 805 740 f 581 883 225 f 582 819 133 f 583 904 724 f 584 99 339 f 585 704 374 f 586 967 215 f 587 957 459 f 588 953 317 f 589 687 384 f 590 188 422 f 591 424 24 f 592 918 96 f 593 838 357 f 594 877 933 f 595 842 693 f 596 204 847 f 597 793 120 f 598 962 407 f 599 99 149 f 600 743 278 f 601 854 908 f 602 895 886 f 603 1012 101 f 604 801 25 f 605 825 87 f 606 951 269 f 607 936 75 f 608 690 149 f 609 580 408 f 610 122 385 f 611 715 12 f 612 818 273 f 613 857 166 f 614 93 198 f 615 934 736 f 616 217 8 f 617 10 429 f 618 402 104 f 619 922 468 f 620 341 135 f 621 941 24 f 622 246 862 f 623 576 419 f 624 171 626 f 625 369 799 f 626 830 772 f 627 891 1011 f 628 714 510 f 629 1006 37 f 630 169 787 f 631 785 54 f 632 986 890 f 633 955 366 f 634 994 823 f 635 758 285 f 636 888 242 f 637 237 63 f 638 996 301 f 639 135 752 f 640 29 333 f 641 797 170 f 642 309 59 f 643 438 1005 f 644 186 76 f 645 61 186 f 646 50 433 f 647 960 212 f 648 183 22 f 649 903 747 f 650 443 136 f 651 965 167 f 652 353 363 f 653 887 19 f 654 143 64 f 655 884 248 f 656 923 83 f 657 272 397 f 658 844 517 f 659 109 194 f 660 18 434 f 661 231 505 f 662 811 185 f 663 86 301 f 664 938 282 f 665 11 389 f 666 34 578 f 667 957 725 f 668 911 46 f 669 195 347 f 670 557 970 f 671 516 377 f 672 196 129 f 673 874 35 f 674 315 48 f 675 87 486 f 676 70 954 f 677 952 176 f 678 296 566 f 679 738 2 f 680 569 241 f 681 9 545 f 682 399 234 f 683 1006 961 f 684 855 863 f 685 161 954 f 686 398 174 f 687 861 142 f 688 951 269 f 689 926 830 f 690 608 576 f 691 796 15 f 692 77 197 f 693 515 595 f 694 477 451 f 695 542 156 f 696 961 839 f 697 94 534 f 698 806 420 f 699 200 72 f 700 218 124 f 701 413 213 f 702 230 105 f 703 769 140 f 704 585 10 f 705 490 156 f 706 206 951 f 707 939 848 f 708 213 462 f 709 984 484 f 710 790 387 f 711 240 39 f 712 907 251 f 713 331 134 f 714 1000 367 f 715 291 611 f 716 438 510 f 717 347 762 f 718 33 889 f 719 520 124 f 720 155 359 f 721 812 445 f 722 94 333 f 723 846 62 f 724 235 788 f 725 886 172 f 726 210 503 f 727 465 193 f 728 265 75 f 729 283 626 f 730 571 93 f 731 51 940 f 732 166 790 f 733 180 837 f 734 507 67 f 735 58 199 f 736 934 241 f 737 340 84 f 738 2 679 f 739 355 97 f 740 580 65 f 741 103 239 f 742 232 518 f 743 831 121 f 744 280 76 f 745 84 210 f 746 864 254 f 747 649 256 f 748 9 264 f 749 979 310 f 750 486 363 f 751 1016 215 f 752 341 140 f 753 438 510 f 754 390 234 f 755 280 555 f 756 53 221 f 757 318 365 f 758 254 635 f 759 412 274 f 760 524 771 f 761 453 288 f 762 166 717 f 763 567 145 f 764 997 181 f 765 134 331 f 766 273 431 f 767 359 111 f 768 520 171 f 769 394 251 f 770 62 723 f 771 154 760 f 772 73 572 f 773 1003 244 f 774 364 254 f 775 80 439 f 776 491 16 f 777 911 107 f 778 193 327 f 779 238 117 f 780 428 922 f 781 110 276 f 782 406 143 f 783 260 109 f 784 366 9 f 785 877 631 f 786 69 183 f 787 85 556 f 788 83 435 f 789 348 231 f 790 869 72 f 791 66 448 f 792 261 358 f 793 68 479 f 794 267 505 f 795 550 55 f 796 691 198 f 797 641 278 f 798 400 43 f 799 287 383 f 800 221 376 f 801 295 604 f 802 492 212 f 803 81 230 f 804 252 171 f 805 580 208 f 806 698 120 f 807 227 148 f 808 243 899 f 809 77 443 f 810 119 423 f 811 928 662 f 812 47 721 f 813 963 98 f 814 141 558 f 815 330 432 f 816 302 1007 f 817 1001 351 f 818 128 1024 f 819 582 172 f 820 262 86 f 821 130 507 f 822 450 769 f 823 994 345 f 824 322 59 f 825 295 87 f 826 4 937 f 827 27 208 f 828 301 8 f 829 195 929 f 830 626 689 f 831 743 185 f 832 300 730 f 833 138 403 f 834 348 111 f 835 937 1018 f 836 134 370 f 837 23 733 f 838 593 357 f 839 696 201 f 840 223 501 f 841 403 840 f 842 595 144 f 843 199 569 f 844 282 260 f 845 568 314 f 846 723 222 f 847 89 351 f 848 1005 378 f 849 985 28 f 850 464 577 f 851 362 614 f 852 185 415 f 853 259 924 f 854 601 95 f 855 684 444 f 856 347 286 f 857 45 613 f 858 14 579 f 859 469 372 f 860 77 221 f 861 687 460 f 862 246 721 f 863 290 684 f 864 57 746 f 865 457 195 f 866 285 227 f 867 406 64 f 868 1002 161 f 869 72 790 f 870 252 71 f 871 116 555 f 872 989 485 f 873 485 137 f 874 430 673 f 875 257 506 f 876 273 547 f 877 594 785 f 878 463 192 f 879 1023 74 f 880 318 481 f 881 454 461 f 882 527 21 f 883 581 30 f 884 248 655 f 885 459 957 f 886 108 725 f 887 19 653 f 888 636 468 f 889 194 404 f 890 359 409 f 891 48 627 f 892 319 475 f 893 11 350 f 894 512 39 f 895 116 602 f 896 416 511 f 897 375 42 f 898 65 251 f 899 113 808 f 900 1008 303 f 901 342 129 f 902 536 17 f 903 60 649 f 904 224 583 f 905 184 912 f 906 295 442 f 907 394 712 f 908 432 601 f 909 255 455 f 910 90 329 f 911 243 668 f 912 471 905 f 913 48 543 f 914 36 234 f 915 20 275 f 916 307 95 f 917 168 476 f 918 592 398 f 919 493 202 f 920 497 570 f 921 236 31 f 922 619 3 f 923 656 235 f 924 259 529 f 925 563 391 f 926 534 689 f 927 502 483 f 928 811 279 f 929 328 829 f 930 434 155 f 931 167 545 f 932 370 348 f 933 160 992 f 934 615 736 f 935 150 577 f 936 504 192 f 937 835 531 f 938 349 109 f 939 352 707 f 940 384 956 f 941 24 574 f 942 5 336 f 943 36 239 f 944 52 496 f 945 330 353 f 946 399 481 f 947 255 564 f 948 14 412 f 949 25 442 f 950 340 89 f 951 81 688 f 952 677 79 f 953 588 1017 f 954 70 685 f 955 633 388 f 956 324 384 f 957 587 667 f 958 150 380 f 959 262 373 f 960 291 122 f 961 696 201 f 962 598 403 f 963 467 813 f 964 499 187 f 965 44 651 f 966 126 264 f 967 224 586 f 968 220 40 f 969 63 217 f 970 169 557 f 971 353 115 f 972 497 977 f 973 379 169 f 974 412 953 f 975 514 139 f 976 151 268 f 977 299 972 f 978 247 297 f 979 162 749 f 980 565 21 f 981 96 374 f 982 70 498 f 983 488 150 f 984 155 484 f 985 305 849 f 986 632 283 f 987 51 346 f 988 346 987 f 989 222 872 f 990 58 348 f 991 306 144 f 992 160 332 f 993 86 326 f 994 823 522 f 995 160 507 f 996 209 638 f 997 479 764 f 998 279 375 f 999 132 411 f 1000 714 537 f 1001 817 225 f 1002 868 361 f 1003 773 244 f 1004 31 381 f 1005 378 848 f 1006 483 683 f 1007 383 302 f 1008 900 361 f 1009 68 552 f 1010 292 647 f 1011 249 627 f 1012 308 1013 f 1013 270 1012 f 1014 281 548 f 1015 163 424 f 1016 500 751 f 1017 164 953 f 1018 61 537 f 1019 285 227 f 1020 219 131 f 1021 263 313 f 1022 102 568 f 1023 879 74 f 1024 294 818