Full Code of NVlabs/GaussianSTORM for AI

main fcd2561de352 cached
51 files
771.3 KB
276.9k tokens
374 symbols
1 requests
Download .txt
Showing preview only (799K chars total). Download the full file or copy to clipboard to get everything.
Repository: NVlabs/GaussianSTORM
Branch: main
Commit: fcd2561de352
Files: 51
Total size: 771.3 KB

Directory structure:
gitextract_we0tkx0h/

├── .gitignore
├── .vscode/
│   └── settings.json
├── LICENSE
├── README.md
├── assets/
│   └── Inter-Regular.otf
├── docs/
│   ├── WAYMO.md
│   └── example_data/
│       ├── segment-990914685337955114_980_000_1000_000_with_camera_labels.json
│       └── waymo_train.txt
├── engine_storm.py
├── extract_sky.py
├── inference.py
├── main_storm.py
├── preproc/
│   ├── utils.py
│   ├── waymo_download.py
│   └── waymo_preprocess.py
├── preprocess.py
├── requirements.txt
├── requirements_data_preprocess.txt
├── storm/
│   ├── dataset/
│   │   ├── constants.py
│   │   ├── data_utils.py
│   │   ├── samplers.py
│   │   └── storm_dataset.py
│   ├── models/
│   │   ├── __init__.py
│   │   ├── decoder.py
│   │   ├── embedders.py
│   │   ├── layers.py
│   │   ├── storm.py
│   │   └── vit.py
│   ├── utils/
│   │   ├── __init__.py
│   │   ├── distributed.py
│   │   ├── logging.py
│   │   ├── losses.py
│   │   ├── lpips.py
│   │   ├── lpips_loss.py
│   │   └── misc.py
│   └── visualization/
│       ├── annotation.py
│       ├── layout.py
│       ├── video_maker.py
│       └── visualization_tools.py
└── third_party/
    └── depth_anything_v2/
        ├── dinov2.py
        ├── dinov2_layers/
        │   ├── __init__.py
        │   ├── attention.py
        │   ├── block.py
        │   ├── drop_path.py
        │   ├── layer_scale.py
        │   ├── mlp.py
        │   ├── patch_embed.py
        │   └── swiglu_ffn.py
        ├── dpt.py
        └── util/
            ├── blocks.py
            └── transform.py

================================================
FILE CONTENTS
================================================

================================================
FILE: .gitignore
================================================
data/
data
work_dirs/
local_scripts/
sync_files.sh
*.mp4
*draft*
*.zip
*.tar
*.gz

# media
*.mp4
*.png
*.jpg
*.html


ckpts/
# wandb
wandb/

# work in progress
*wip*

*results*
*debug*
tmp*

# caches
*.pyc
*.swp


__pycache__


# comming soon
*viewer*
third_party/flow3d_viewer/
third_party/viser_extras/

================================================
FILE: .vscode/settings.json
================================================
{
    // Automatically format using Black on save.
    "editor.formatOnSave": true,
    // Draw a ruler at Black's column width.
    "editor.rulers": [
        100,
    ],
    // Hide non-code files.
    "files.exclude": {
        "**/.git": true,
        "**/.svn": true,
        "**/.hg": true,
        "**/CVS": true,
        "**/.DS_Store": true,
        "**/Thumbs.db": true,
        "**/__pycache__": true,
        "**/venv": true
    },
    "[python]": {
        "editor.defaultFormatter": "ms-python.black-formatter",
    },
    "debug.focusWindowOnBreak": false,
    "files.watcherExclude": {
        "**/.git/**": true,
        "**/checkpoints/**": true,
        "**/data/**": true,
        "**/work_dirs/**": true,
        "**/lightning_logs/**": true,
        "**/outputs/**": true,
        "**/dataset_cache/**": true,
        "**/.ruff_cache/**": true,
        "**/venv/**": true,
        "**/data": true
    },
    "editor.mouseWheelZoom": true,
    "terminal.integrated.mouseWheelZoom": true
}

================================================
FILE: LICENSE
================================================
NVIDIA License

1. Definitions

“Licensor” means any person or entity that distributes its Work.
“Work” means (a) the original work of authorship made available under this license, which may include software, documentation, or other files, and (b) any additions to or derivative works  thereof  that are made available under this license.
The terms “reproduce,” “reproduction,” “derivative works,” and “distribution” have the meaning as provided under U.S. copyright law; provided, however, that 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.
Works are “made available” under this license by including in or with the Work either (a) a copyright notice referencing the applicability of this license to the Work, or (b) a copy of this license.

2. License Grant

2.1 Copyright Grant. Subject to the terms and conditions of this license, each Licensor grants to you a perpetual, worldwide, non-exclusive, royalty-free, copyright license to use, reproduce, prepare derivative works of, publicly display, publicly perform, sublicense and distribute its Work and any resulting derivative works in any form.

3. Limitations

3.1 Redistribution. You may reproduce or distribute the Work only if (a) you do so under this license, (b) you include a complete copy of this license with your distribution, and (c) you retain without modification any copyright, patent, trademark, or attribution notices that are present in the Work.

3.2 Derivative Works. You may specify that additional or different terms apply to the use, reproduction, and distribution of your derivative works of the Work (“Your Terms”) only if (a) Your Terms provide that the use limitation in Section 3.3 applies to your derivative works, and (b) you identify the specific derivative works that are subject to Your Terms. Notwithstanding Your Terms, this license (including the redistribution requirements in Section 3.1) will continue to apply to the Work itself.

3.3 Use Limitation. The Work and any derivative works thereof only may be used or intended for use non-commercially. Notwithstanding the foregoing, NVIDIA Corporation and its affiliates may use the Work and any derivative works commercially. As used herein, “non-commercially” means for research or evaluation purposes only.

3.4 Patent Claims. If you bring or threaten to bring a patent claim against any Licensor (including any claim, cross-claim or counterclaim in a lawsuit) to enforce any patents that you allege are infringed by any Work, then your rights under this license from such Licensor (including the grant in Section 2.1) will terminate immediately.

3.5 Trademarks. This license does not grant any rights to use any Licensor’s or its affiliates’ names, logos, or trademarks, except as necessary to reproduce the notices described in this license.

3.6 Termination. If you violate any term of this license, then your rights under this license (including the grant in Section 2.1) will terminate immediately.

4. Disclaimer of Warranty.

THE WORK IS PROVIDED “AS IS” WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WARRANTIES OR CONDITIONS OF 
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE OR NON-INFRINGEMENT. YOU BEAR THE RISK OF UNDERTAKING ANY ACTIVITIES UNDER THIS LICENSE. 

5. Limitation of Liability.

EXCEPT AS PROHIBITED BY APPLICABLE LAW, IN NO EVENT AND UNDER NO LEGAL THEORY, WHETHER IN TORT (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE SHALL ANY LICENSOR BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR RELATED TO THIS LICENSE, THE USE OR INABILITY TO USE THE WORK (INCLUDING BUT NOT LIMITED TO LOSS OF GOODWILL, BUSINESS INTERRUPTION, LOST PROFITS OR DATA, COMPUTER FAILURE OR MALFUNCTION, OR ANY OTHER DAMAGES OR LOSSES), EVEN IF THE LICENSOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.

================================================
FILE: README.md
================================================
<div align="center">

# **STORM**  
### Spatio-Temporal Reconstruction Model for Large-Scale Outdoor Scenes  

[Project Page](https://jiawei-yang.github.io/STORM/) • [arXiv Paper](https://arxiv.org/abs/2501.00602)
</div>

---

## Highlights
* **Fast, feed-forward, and self-supervised** dynamic scene reconstruction from sparse multi-view sequences
* Learns **3D Gaussian** *and* **scene flow** jointly; supports real-time rendering (once Gaussians are generated) and motion segmentation
* Outperforms per‑scene optimization and other generalizable models by **+4 dB PSNR** on dynamic regions while being significantly faster

---

## Installation
> Tested with **CUDA 12.1**, **PyTorch 2.3** and an NVIDIA **A100**  
> Replace the CUDA/PyTorch versions as needed for your environment

```bash
# clone project
git clone https://github.com/NVlabs/GaussianSTORM.git
cd GaussianSTORM

# create conda environment
conda create -n storm python=3.10 -y
conda activate storm

# install python dependencies
pip install -r requirements.txt

# install gsplat (for batch-wise rendering support)
pip install git+https://github.com/nerfstudio-project/gsplat.git@2b0de894232d21e8963179a7bbbd315f27c52c9c
#   └─ if the above fails, drop the commit hash:
#       pip install git+https://github.com/nerfstudio-project/gsplat.git
```
> Note: installing `gsplat` can be machine-dependent and sometimes be tricky. if you encounter issues, please refer to the original `gsplat` repository for troubleshooting.

## Quick Start (Playground)

We provide a tiny subset of Waymo Open Dataset (3 sequences) for quick experimentation:

```bash
# download dataset subset (≈ 600 MB)
gdown 14fapsAGoMCQ5Ky82cg2X6bk-mLQ7fdCF
tar -xf STORM_subset.tar.gz
```

```bash
# run single-GPU inference demo
python inference.py \
    --project storm_playground --exp_name visualization \
    --data_root data/STORM_subset \
    --model STORM-B/8 --num_motion_tokens 16 \
    --use_sky_token --use_affine_token \
    --load_depth --load_flow --load_ground \
    --load_from $CKPT_PTH
```
> `CKPT_PTH` refers to the checkpoint. We cannot share an official checkpoint at this moment. Please refer to the issue page for an unofficial checkpoint.

## Dataset Preparation

### Waymo Dataset
- To prepare the Waymo Open Dataset, please refer to [Waymo Data](docs/WAYMO.md)

### Other datasets
We haven't included instructions for preparing NuScenes and Argoverse2 datasets. We might include these based on the capacity.

## Training

Multi-GPU example that reproduces the paper's STORM-B/8 model:

```bash
# with a global batch size= num_gpus * batch_size = 8 * 4 = 32 (We used 64 global batch size for main experiments)
torchrun --nproc_per_node=8 main_storm.py \
    --project 0504_storm \
    --exp_name 0504_pixel_storm \
    --data_root ../storm2.3/data/STORM2 \ # replace this with your data root.
    --batch_size 4 --num_iterations 100000 --lr_sched constant \
    --model STORM-B/8 --num_motion_tokens 16 \
    --use_sky_token --use_affine_token \
    --load_depth --load_flow --load_ground \
    --enable_depth_loss --enable_flow_reg_loss --flow_reg_coeff 0.005 --enable_sky_opacity_loss \
    --enable_perceptual_loss --perceptual_loss_start_iter 5000 \
    --enable_wandb \
    --auto_resume
```

> **Tips:**
> - Checkpoints and logs are saved at `work_dirs/<project>/<exp_name>`
> - `batch_size` is per-GPU; global batch = batch_size × #GPUs × #nodes
> - For additional arguments, see `main_storm.py`

## Evaluation

```bash
torchrun --nproc_per_node=8 main_storm.py \
    --project 0504_storm \
    --exp_name 0504_pixel_storm \
    --data_root ../storm2.3/data/STORM2 \ # replace this with your data root.
    --batch_size 4 --num_iterations 100000 --lr_sched constant \
    --model STORM-B/8 --num_motion_tokens 16 \
    --use_sky_token --use_affine_token \
    --load_depth --load_flow --load_ground \
    --enable_depth_loss --enable_flow_reg_loss --flow_reg_coeff 0.005 --enable_sky_opacity_loss \
    --enable_perceptual_loss --perceptual_loss_start_iter 5000 \
    --auto_resume \
    --evaluate # this parameter specifies the evaluation mode
```
## TODO
[ ]  Viewers.


## Citation

```bibtex
@inproceedings{yang2025storm,
  title   = {STORM: Spatio-Temporal Reconstruction Model for Large-Scale Outdoor Scenes},
  author  = {Jiawei Yang and Jiahui Huang and Yuxiao Chen and Yan Wang and Boyi Li and Yurong You and Maximilian Igl and Apoorva Sharma and Peter Karkus and Danfei Xu and Boris Ivanovic and Yue Wang and Marco Pavone},
  booktitle = {ICLR},
  year    = {2025}
}
```

## License

This project is licensed under the **NVIDIA License**. See the [LICENSE](LICENSE) file for details.

## Acknowledgements

Our implementation builds upon **gsplat**.
We thank the respective authors for open‑sourcing their excellent work.




================================================
FILE: docs/WAYMO.md
================================================
# Preparing Waymo Dataset
> Note: This document is modified from [OmniRe](https://github.com/ziyc/drivestudio/blob/main/docs/Waymo.md) and [EmerNeRF](https://github.com/NVlabs/EmerNeRF/blob/main/docs/NOTR.md)

## 1. Register on Waymo Open Dataset

#### Sign Up for a Waymo Open Dataset Account and Install gcloud SDK

To download the Waymo dataset, you need to register an account at [Waymo Open Dataset](https://waymo.com/open/). You also need to install gcloud SDK and authenticate your account. Please refer to [this page](https://cloud.google.com/sdk/docs/install) for more details.

#### Set Up the Data Directory

Once you've registered and installed the gcloud SDK, create a directory to house the raw data:

```bash
# create the data directory or create a symbolic link to the data directory
mkdir -p ./data/waymo/raw   
```

## 2. Environment

We highly recommend setting up another environment for data processing as the TensorFlow dependencies often conflict with our main environment.
```bash
conda create -n storm_data python=3.10
conda activate storm_data
pip install -r requirements_data_preprocess.txt
```

## 3. Download the Raw Data
For the Waymo Open Dataset, we first organize the scene names alphabetically and store them in `data/dataset_scene_list/waymo_train_list.txt` and `data/dataset_scene_list/waymo_val_list.txt`. The scene index is then determined by the line number minus one.

For example, you can download 3 sequences from the dataset by:

```bash
python preproc/waymo_download.py \
    --target_dir ./data/waymo/raw/training \
    --split_file data/dataset_scene_list/waymo_train_list.txt \
    --scene_ids 700 754 23
```
If you wish to run experiments on different scenes, please specify your own list of scenes.

You can also omit the `scene_ids` to download all scenes specified in the `split_file`:

```bash
# training set
python preproc/waymo_download.py \
    --target_dir ./data/waymo/raw/training \
    --split_file data/dataset_scene_list/waymo_train_list.txt

# validation set
python preproc/waymo_download.py \
    --target_dir ./data/waymo/raw/validation \
    --split_file data/dataset_scene_list/waymo_val_list.txt
```

<details>
<summary>If this script doesn't work due to network issues, consider manual download:</summary>

Download the [scene flow version](https://console.cloud.google.com/storage/browser/waymo_open_dataset_scene_flow;tab=objects?prefix=&forceOnObjectsSortingFiltering=false) of Waymo.

![Waymo Dataset Download Page](https://github.com/user-attachments/assets/a1737699-e792-4fa0-bb68-0ab1813f1088)

> **Note**: Ensure you're downloading the scene flow version to avoid errors.

</details>

## 4. Preprocess the Data
After downloading the raw dataset, you'll need to preprocess this compressed data to extract and organize various components.

#### Run the Preprocessing Script
To preprocess specific scenes of the dataset, use the following command:
```bash
python preprocess.py \
    --data_root data/waymo/raw/ \
    --target_dir data/waymo/processed \
    --dataset waymo \
    --split training \
    --scene_list_file data/dataset_scene_list/waymo_train_list.txt \
    --scene_ids 700 754 23 \
    --num_workers 8 \
    --process_keys images lidar calib pose dynamic_masks ground \
    --json_folder_to_save data/STORM_data/annotations/waymo 
```
Alternatively, preprocess a batch of scenes by providing the split file:
```bash
# training set
python preprocess.py \
    --data_root data/waymo/raw/ \
    --target_dir data/waymo/processed \
    --dataset waymo \
    --split training \
    --scene_list_file data/dataset_scene_list/waymo_train_list.txt \
    --num_workers 8 \
    --process_keys images lidar calib pose dynamic_masks ground \
    --json_folder_to_save data/STORM_data/annotations/waymo 

# validation set
python preprocess.py \
    --data_root data/waymo/raw/ \
    --target_dir data/waymo/processed \
    --dataset waymo \
    --split validation \
    --scene_list_file data/dataset_scene_list/waymo_val_list.txt \
    --num_workers 8 \
    --process_keys images lidar calib pose dynamic_masks ground \
    --json_folder_to_save data/STORM_data/annotations/waymo 
```
The extracted data will be stored in the `data/waymo/processed` directory.

## 5. Extract Sky Masks

- We originally used `ViT-adapater`, following [EmerNeRF](https://github.com/NVlabs/EmerNeRF/blob/main/docs/NOTR.md#sky-mask), to extract sky masks. We later realized the non-trivial dependency of installing `mmcv` properly.

- Therefore, we recommend using `DepthAnything-v2` to extract the sky masks. Specifically, the predicted depth map from DepthAnything-v2 is a relative depth map, where lower values indicate farther regions, and zero values indicate infinitely far regions, which represent the sky.

- To do this:

    1. Use whatever command you prefer to generate the file list to all image files, e.g., `find data/waymo/processed/training/*/images -name "*.jpg" > file_list.txt`
    2. Download DpethAnything-v2 checkpoint, e.g., `mkdir ckpts && wget https://huggingface.co/depth-anything/Depth-Anything-V2-Large/resolve/main/depth_anything_v2_vitl.pth -O ckpts/depth_anything_v2_vitl.pth`
    2. Use `extract_sky_mask.py` to extract sky masks for these images by `python extract_sky.py --file_list ./file_list.txt`

## 6. Data Structure
After completing all preprocessing steps, the project files should be organized according to the following structure:
```bash
ProjectPath/data/
  └── waymo/
    ├── raw/
    │    ├── segment-454855130179746819_4580_000_4600_000_with_camera_labels.tfrecord
    │    └── ...
    └── processed/
         └──training/
              ├── 000/
              │  ├──cam_to_ego/         # camera to ego-vehicle transformations: {cam_id}.txt
              │  ├──cam_to_world/       # camera to world transformations: {timestep:03d}_{cam_id}.txt
              │  ├──depth_flows_4/      # downsampled (1/4) depth flow maps: {timestep:03d}_{cam_id}.npy
              │  ├──dynamic_masks/      # bounding-box-generated dynamic masks: {timestep:03d}_{cam_id}.png
              │  ├──ego_to_world/       # ego-vehicle to world transformations: {timestep:03d}.txt
              │  ├──ground_label_4/     # downsampled (1/4) ground labels extracted from point cloud, used for flow evaluation only: {timestep:03d}.txt
              │  ├──images/             # original camera images: {timestep:03d}_{cam_id}.jpg
              │  ├──images_4/           # downsampled (1/4) camera images: {timestep:03d}_{cam_id}.jpg
              │  ├──intrinsics/         # camera intrinsics: {cam_id}.txt
              │  ├──lidar/              # lidar data: {timestep:03d}.bin
              │  ├──sky_masks/          # sky masks: {timestep:03d}_{cam_id}.png
              ├── 001/
              ├── ...
```

================================================
FILE: docs/example_data/segment-990914685337955114_980_000_1000_000_with_camera_labels.json
================================================
{"dataset": "waymo", "scene_id": 796, "scene_name": "segment-990914685337955114_980_000_1000_000_with_camera_labels", "num_timesteps": 198, "camera_list": ["0", "1", "2", "3", "4"], "normalized_time": [0.0, 0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 1.0, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0, 2.1, 2.2, 2.3, 2.4, 2.5, 2.6, 2.7, 2.8, 2.9, 3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 4.0, 4.1, 4.2, 4.3, 4.4, 4.5, 4.6, 4.7, 4.8, 4.9, 5.0, 5.1, 5.2, 5.3, 5.4, 5.5, 5.6, 5.7, 5.8, 5.9, 6.0, 6.1, 6.2, 6.3, 6.4, 6.5, 6.6, 6.7, 6.8, 6.9, 7.0, 7.1, 7.2, 7.3, 7.4, 7.5, 7.6, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 8.5, 8.6, 8.7, 8.8, 8.9, 9.0, 9.1, 9.2, 9.3, 9.4, 9.5, 9.6, 9.7, 9.8, 9.9, 10.0, 10.1, 10.2, 10.3, 10.4, 10.5, 10.6, 10.7, 10.8, 10.9, 11.0, 11.1, 11.2, 11.3, 11.4, 11.5, 11.6, 11.7, 11.8, 11.9, 12.0, 12.1, 12.2, 12.3, 12.4, 12.5, 12.6, 12.7, 12.8, 12.9, 13.0, 13.1, 13.2, 13.3, 13.4, 13.5, 13.6, 13.7, 13.8, 13.9, 14.0, 14.1, 14.2, 14.3, 14.4, 14.5, 14.6, 14.7, 14.8, 14.9, 15.0, 15.1, 15.2, 15.3, 15.4, 15.5, 15.6, 15.7, 15.8, 15.9, 16.0, 16.1, 16.2, 16.3, 16.4, 16.5, 16.6, 16.7, 16.8, 16.9, 17.0, 17.1, 17.2, 17.3, 17.4, 17.5, 17.6, 17.7, 17.8, 17.9, 18.0, 18.1, 18.2, 18.3, 18.4, 18.5, 18.6, 18.7, 18.8, 18.9, 19.0, 19.1, 19.2, 19.3, 19.4, 19.5, 19.6, 19.7], "normalized_intrinsics": {"0": [1.0760852812653638, 1.6141279218980458, 0.4971965468813711, 0.5072499859713261], "1": [1.0714336048044208, 1.6071504072066312, 0.5112488553103808, 0.5005822834492333], "2": [1.067119656762737, 1.6006794851441053, 0.49226577388679255, 0.4929978469775671], "3": [1.0787773443175446, 2.337756773238923, 0.502880797268437, 0.2763063252339018], "4": [1.0748925209023337, 2.329338194280452, 0.5118216810459222, 0.25624083627281696]}, "camera_to_ego": {"0": [[0.9998842873191989, -0.0024402666225806988, 0.015015227969911943, 1.5389990840669499], [0.002560104988162815, 0.9999649851086498, -0.007967083475600458, -0.023573164304480632], [-0.014995260405451157, 0.008004602143037503, 0.9998555238182686, 2.115384290448616], [0.0, 0.0, 0.0, 1.0]], "1": [[0.718026611157686, -0.6959597957041816, 0.008817507176236696, 1.492768092127657], [0.6959181048595154, 0.7180804580838422, 0.007645066830298392, 0.09188386825351309], [-0.011652338741628897, 0.000646901455438632, 0.9999318999413697, 2.1150114403293925], [0.0, 0.0, 0.0, 1.0]], "2": [[0.7164452330835464, 0.6976372776735257, -0.00290805641879582, 1.4905599043950848], [-0.6976364192340506, 0.7164504681797242, 0.001467379755150582, -0.09390150748070432], [0.0031071772004358147, 0.0009774688362383767, 0.999994694988188, 2.1157584813144563], [0.0, 0.0, 0.0, 1.0]], "3": [[0.004228593556574258, -0.9999908764017675, 0.0006050700439783404, 1.4312924314965867], [0.9998715975152174, 0.004237440134424988, 0.015454209247788318, 0.11111617069514346], [-0.015456632197880632, 0.0005396427818340781, 0.9998803935005264, 2.1150525835808596], [0.0, 0.0, 0.0, 1.0]], "4": [[-0.004455252331979332, 0.9999900434506952, -0.0002524403592420155, 1.4286445077785184], [-0.9999717124550628, -0.004453640529595324, 0.00606130148749891, -0.1116662927794725], [0.006060116859236573, 0.00027943784591101875, 0.9999815982797596, 2.1159483894553066], [0.0, 0.0, 0.0, 1.0]]}, "ego_to_world": [[[-0.8436173559997825, -0.5369440355300293, 0.0009270192354945404, -25832.554037327885], [0.5369381252180163, -0.8435969239840693, 0.00645596870952176, 42363.018620870294], [-0.002684463316608952, 0.005944119223491552, 0.9999787303254798, -208.16], [0.0, 0.0, 0.0, 1.0]], [[-0.8454966740486528, -0.5339759519702431, -0.002248753018626498, -25833.11342240581], [0.5339296555422304, -0.8454665954261407, 0.010264450841902575, 42363.376008983185], [-0.007382215468369093, 0.007477883123129725, 0.9999447905553464, -208.156], [0.0, 0.0, 0.0, 1.0]], [[-0.8473232172132328, -0.531067868797043, -0.003206914838815649, -25833.67610041366], [0.5310010820583894, -0.8472882351156437, 0.011853163604605085, 42363.732038938055], [-0.009012015547946579, 0.008340585470128566, 0.9999246062627818, -208.16], [0.0, 0.0, 0.0, 1.0]], [[-0.8490670770713923, -0.5282849916940684, -0.00025726297879027915, -25834.24362188926], [0.528247157822505, -0.8490119014620124, 0.01156423055389164, 42364.085789114506], [-0.006327628772909453, 0.009682908997613546, 0.9999330989558531, -208.169], [0.0, 0.0, 0.0, 1.0]], [[-0.8508483430943125, -0.5254033989457885, 0.002892305287449951, -25834.812169137433], [0.5254034873024637, -0.8507925680719942, 0.010157836574336176, 42364.44132200648], [-0.0028762100189343187, 0.010162405703066299, 0.9999442249076962, -208.178], [0.0, 0.0, 0.0, 1.0]], [[-0.8524585152290614, -0.5227814843959442, 0.003741575368402853, -25835.381603415175], [0.522792025262381, -0.8524084143214997, 0.009401782595047337, 42364.79484502161], [-0.0017257275341621416, 0.00997069539599965, 0.9999488022382936, -208.181], [0.0, 0.0, 0.0, 1.0]], [[-0.8531956791899208, -0.52159065070131, -0.0005710627229586294, -25835.95433401698], [0.5215570919886778, -0.8531522397048138, 0.010462107004502303, 42365.14398306026], [-0.005944140641289175, 0.008628382678334533, 0.9999451075956083, -208.17600000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.8533494872192581, -0.5213044230846621, -0.006029190243886119, -25836.526832612064], [0.5212015328840508, -0.853332790852015, 0.013119076797813854, 42365.49243709409], [-0.011983938498880808, 0.008052734261041508, 0.999895763911907, -208.173], [0.0, 0.0, 0.0, 1.0]], [[-0.8537597382319496, -0.5205767412104872, -0.009703910798340596, -25837.1006393424], [0.5204411764113436, -0.8537900001132388, 0.01355055726576128, 42365.84651909287], [-0.015339206944610172, 0.006518605472434274, 0.9998610986097045, -208.177], [0.0, 0.0, 0.0, 1.0]], [[-0.8541479982984344, -0.5199630750002495, -0.00834251994678907, -25837.680266710522], [0.519891894744314, -0.8541809700891649, 0.009342810963532323, 42366.201697498975], [-0.011983938498880808, 0.003642934780903398, 0.9999215540452346, -208.191], [0.0, 0.0, 0.0, 1.0]], [[-0.8540441040647783, -0.5201952247408224, -0.0023656857431811414, -25838.266200493174], [0.520165537646677, -0.8540305053351261, 0.007727185889623107, 42366.55162339002], [-0.0060400129911796965, 0.005368809353540266, 0.9999673465314713, -208.207], [0.0, 0.0, 0.0, 1.0]], [[-0.8541586094817574, -0.5200092959074608, 0.0018444560221343358, -25838.84333949594], [0.5200108347516621, -0.8541595463284376, 0.0004485051585490714, 42366.91271213999], [0.0013422328673810522, 0.0013422316583044758, 0.9999981984109297, -208.219], [0.0, 0.0, 0.0, 1.0]], [[-0.8540929501346284, -0.52001119990405, 0.010657603139430082, -25839.422534565783], [0.5200830681151837, -0.8540978415832993, 0.00552080271761415, 42367.25682549672], [0.006231756592218552, 0.010258117619707154, 0.9999279655218549, -208.225], [0.0, 0.0, 0.0, 1.0]], [[-0.8538080457365581, -0.5205279560375698, 0.00790367122731285, -25839.987918025156], [0.5205828719584011, -0.8537684044467281, 0.008543125425226835, 42367.609923471246], [0.0023009691572484854, 0.011408705090324728, 0.9999322712009546, -208.216], [0.0, 0.0, 0.0, 1.0]], [[-0.8529830714134315, -0.5219207197484518, -0.004317659014690194, -25840.550961443285], [0.5218764451848467, -0.8529799858150386, 0.008373754247908996, 42367.95535023747], [-0.008053312569169932, 0.004889386079535859, 0.9999556180453354, -208.201], [0.0, 0.0, 0.0, 1.0]], [[-0.851247602692154, -0.5246655510809564, -0.01017734836669132, -25841.119989124894], [0.5246360147864287, -0.851308245378375, 0.005596725811279399, 42368.29540028651], [-0.011600469812676378, -0.0005752040584172157, 0.9999325468452441, -208.202], [0.0, 0.0, 0.0, 1.0]], [[-0.8495261433021757, -0.527350776995067, -0.014369754654492979, -25841.679812919312], [0.5274037743378905, -0.8496147624896938, 0.00011905346899262863, 42368.64869187437], [-0.012271538627189446, -0.007477523806729014, 0.9998967426576812, -208.207], [0.0, 0.0, 0.0, 1.0]], [[-0.8465969928469622, -0.5321276408984452, -0.010663277842018953, -25842.24214562359], [0.5321299796294581, -0.8466578702795323, 0.00285227510579011, 42368.99462585132], [-0.010545922531160148, -0.003259522293522638, 0.9999390776604267, -208.21800000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.8422580377079749, -0.5390385280539378, -0.006234034789404266, -25842.80013291607], [0.5390278884647001, -0.8422809718201959, 0.0034205214387728116, 42369.348189457385], [-0.00709460172231337, -0.00047935693418921536, 0.9999747181020784, -208.23000000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.8373191093498135, -0.5466637880268013, -0.007443922206978478, -25843.351120640174], [0.5466800344215179, -0.8373415720818542, -0.00017784368651603587, 42369.7022002782], [-0.006135884819898878, -0.004218355565539191, 0.99997227781264, -208.235], [0.0, 0.0, 0.0, 1.0]], [[-0.8330733728426487, -0.5529891231174316, -0.01384865243940232, -25843.89245342679], [0.5530673760011249, -0.833133317270006, -0.0023137108518771566, 42370.05616918209], [-0.01025831681143178, -0.009586728768967758, 0.9999014259254292, -208.232], [0.0, 0.0, 0.0, 1.0]], [[-0.8286717914906484, -0.5594054246427536, -0.01919981426837082, -25844.429748791146], [0.5595806923839474, -0.8287609984657761, -0.00496549424648596, 42370.412357748435], [-0.01313433282589583, -0.014858610374810165, 0.9998033361611413, -208.235], [0.0, 0.0, 0.0, 1.0]], [[-0.8239170070275499, -0.5664319658913278, -0.017764952779270832, -25844.967455503353], [0.5665492342001607, -0.8240255145969404, -0.001979020075399635, 42370.774004978404], [-0.013517794123881979, -0.011695268690068612, 0.9998402322032712, -208.243], [0.0, 0.0, 0.0, 1.0]], [[-0.8185618330155736, -0.574192956794585, -0.01609266595925053, -25845.496712577933], [0.5742682429243348, -0.8186671975020223, -7.001986845055902e-05, 42371.144091636445], [-0.01313433282589583, -0.009298822596253455, 0.9998705022149329, -208.25300000000001], [0.0, 0.0, 0.0, 1.0]], [[-0.8120655964198925, -0.5833250551135611, -0.016773407166255607, -25846.024489867938], [0.5834117918887275, -0.8121764354556117, -0.0003446386521238857, 42371.5126716817], [-0.013421929681990666, -0.010065672723530738, 0.9998592571138373, -208.261], [0.0, 0.0, 0.0, 1.0]], [[-0.8057006099872562, -0.5919792315458774, -0.020177127756835687, -25846.542992938463], [0.5921773521229783, -0.8057903766197885, -0.005277554315937626, 42371.88632726767], [-0.01313433282589583, -0.01620056682008183, 0.9997824918130577, -208.268], [0.0, 0.0, 0.0, 1.0]], [[-0.799858530086119, -0.5997806227970108, -0.022125468711488294, -25847.05436933601], [0.6000185654533614, -0.799965814324832, -0.005693594901169755, 42372.26191141069], [-0.014284710699326846, -0.0178297624448059, 0.9997389892423914, -208.275], [0.0, 0.0, 0.0, 1.0]], [[-0.7928386897152805, -0.6090778595142088, -0.020759892585150836, -25847.561979211492], [0.6092526861240822, -0.7929712433543367, -0.0027877703757284693, 42372.64419130533], [-0.014764028621883715, -0.0148582725330702, 0.9997806035306872, -208.284], [0.0, 0.0, 0.0, 1.0]], [[-0.7837916822497101, -0.6208291133602609, -0.01555026818038254, -25848.066585596895], [0.6209190282115767, -0.78387370093921, -0.0012575295849487226, 42373.03275927038], [-0.011408735291905683, -0.010641098635858269, 0.9998782964835577, -208.298], [0.0, 0.0, 0.0, 1.0]], [[-0.7737984000698772, -0.6333896518543825, -0.007320175754874038, -25848.56527453558], [0.6334274158845834, -0.7737849169719382, -0.005158592105384774, 42373.42974280463], [-0.0023968427310167746, -0.00862851032999068, 0.999959901173246, -208.316], [0.0, 0.0, 0.0, 1.0]], [[-0.7638061505807235, -0.6454338804633122, -0.003907721219282518, -25849.047838605213], [0.6454425696858642, -0.7637695508009451, -0.007743546127633784, 42373.82835051099], [0.002013348545398599, -0.008436777784981917, 0.9999623828965976, -208.323], [0.0, 0.0, 0.0, 1.0]], [[-0.7540690337811727, -0.6567616060952945, -0.006639657480449366, -25849.520298606116], [0.656795104706378, -0.7540348562674016, -0.0071851212611230945, 42374.23118020156], [-0.0002876213944907634, -0.009778971977061882, 0.999952143345373, -208.318], [0.0, 0.0, 0.0, 1.0]], [[-0.7442163240190387, -0.6678277891088963, -0.01216992841034321, -25849.985517651567], [0.6679193391128421, -0.7442098603389393, -0.005953168346426521, 42374.64026558721], [-0.005081289467609322, -0.01255897560393108, 0.9999082221029719, -208.312], [0.0, 0.0, 0.0, 1.0]], [[-0.7338067021291242, -0.6792253957255704, -0.013438218327626112, -25850.447344691926], [0.6793160965808759, -0.7338380602157435, -0.003367833861263921, 42375.05296340997], [-0.007573957783145835, -0.01160013707837743, 0.9999040313866436, -208.312], [0.0, 0.0, 0.0, 1.0]], [[-0.7229086264317304, -0.6908240086490189, -0.012857173277555468, -25850.898925103163], [0.6909137836755158, -0.7229252165108009, -0.004156303645587852, 42375.475243008754], [-0.006423500429786138, -0.011887825996032688, 0.9999087049502653, -208.318], [0.0, 0.0, 0.0, 1.0]], [[-0.7114274907705765, -0.7026920983622017, -0.00973346162508214, -25851.34377586023], [0.7027500640312183, -0.7114214931572277, -0.004669751391580535, 42375.899821523555], [-0.0036431963987249745, -0.010162380295306429, 0.9999417248753719, -208.32500000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.6994045676205893, -0.7146671855820901, -0.009168677310871166, -25851.775809481886], [0.7147254761494245, -0.6993619943756993, -0.007764957554474861, 42376.331661451215], [-0.0008628640882971438, -0.011983934037652537, 0.9999278177901374, -208.33], [0.0, 0.0, 0.0, 1.0]], [[-0.6860604913103244, -0.7274595134250635, -0.011120188415938504, -25852.200956462868], [0.7275438702131306, -0.6859998947393185, -0.009168496765721032, 42376.76572342466], [-0.0009587378867845129, -0.014380568313298814, 0.9998961346443194, -208.33], [0.0, 0.0, 0.0, 1.0]], [[-0.6721241705952266, -0.7403062007834849, -0.013993869486361117, -25852.615183123464], [0.7404324857957415, -0.6720745700815578, -0.008689431973849877, 42377.206196828774], [-0.0029720834472962386, -0.01620189282805503, 0.9998643234903276, -208.327], [0.0, 0.0, 0.0, 1.0]], [[-0.65801687270301, -0.7528117520045102, -0.016978259099517983, -25853.01648592975], [0.7529902692246216, -0.6579703609500408, -0.008981011318596455, 42377.654887379824], [-0.00441018040248823, -0.018694120871884608, 0.999815523060952, -208.326], [0.0, 0.0, 0.0, 1.0]], [[-0.6427937812486949, -0.7658058210730272, -0.018910293458103477, -25853.410356686218], [0.766018380015777, -0.6427626594750651, -0.008485579682398398, 42378.10654140614], [-0.005656524198624812, -0.019940110210535336, 0.9997851747944566, -208.327], [0.0, 0.0, 0.0, 1.0]], [[-0.6263417216517739, -0.7793257099242974, -0.01864096481628025, -25853.792909283125], [0.7795205489688516, -0.6263429977430349, -0.006493297588197355, 42378.56145561904], [-0.006615244031179783, -0.01859803831748467, 0.9998051567766338, -208.329], [0.0, 0.0, 0.0, 1.0]], [[-0.6090114462957522, -0.7930502547685031, -0.01327974745123182, -25854.164505117154], [0.7931539231285089, -0.6089931720582967, -0.00584556346551076, 42379.02439981838], [-0.0034514499288699854, -0.014092898849644651, 0.9998947333071627, -208.33700000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.5897494622067978, -0.8075712875580947, -0.0049180624796468266, -25854.55630986662], [0.8075776069118309, -0.5897040099472348, -0.00822128133029122, 42379.54440212416], [0.003739069583861832, -0.008820213371146085, 0.9999541105444462, -208.34900000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.5712288214150251, -0.8207882718437395, -0.0020606767259887812, -25854.898444525337], [0.820739254868612, -0.5711629556356187, -0.012647277465912876, 42380.02317763515], [0.009203754805349615, -0.00891576768157534, 0.9999178966215833, -208.353], [0.0, 0.0, 0.0, 1.0]], [[-0.5516189942103028, -0.8340932054812535, -0.0022382574519436956, -25855.23216761705], [0.8340114861248552, -0.5515227319030296, -0.015732679556561366, 42380.5021381446], [0.011888071257543355, -0.010545177297048966, 0.9998737285265322, -208.35], [0.0, 0.0, 0.0, 1.0]], [[-0.5326969749103455, -0.8463044170367517, -0.0016633176036238038, -25855.54919237391], [0.8462379308345013, -0.532628132215428, -0.013734525461274825, 42380.983755757494], [0.010737659815281426, -0.008723902612261424, 0.9999042935125857, -208.341], [0.0, 0.0, 0.0, 1.0]], [[-0.514184780410724, -0.8576192116657604, -0.010163630049109763, -25855.842410997688], [0.8576790000108085, -0.5141364946964869, -0.007099138093365303, 42381.46868980767], [0.0008628640882971438, -0.012367400818642712, 0.9999231484781999, -208.321], [0.0, 0.0, 0.0, 1.0]], [[-0.49487476783679374, -0.8688662924674675, -0.013051052536751448, -25856.13613345838], [0.8689081951943117, -0.49495767405098284, 0.003930549860382583, 42381.950834206524], [-0.009874840892056811, -0.00939503655546707, 0.9999071060880996, -208.308], [0.0, 0.0, 0.0, 1.0]], [[-0.47551062377752107, -0.8796744382837994, -0.007907547331176358, -25856.41973310818], [0.8796523805753236, -0.4755631402910657, 0.007168608279592744, 42382.44812691729], [-0.010066579502441806, -0.0035471434397354824, 0.9999430392530061, -208.315], [0.0, 0.0, 0.0, 1.0]], [[-0.4561020270663573, -0.8899053058377222, -0.006283911825439768, -25856.683196572314], [0.8899135275533976, -0.45612305645318313, 0.002381354504183894, 42382.95500044907], [-0.004985417076655695, -0.00450599752288974, 0.9999774205465319, -208.327], [0.0, 0.0, 0.0, 1.0]], [[-0.43620230003221716, -0.8998445125920851, -0.0027215077652370675, -25856.945372105645], [0.8998485821073104, -0.43619931606671764, -0.0016388844958439602, 42383.459454916694], [0.0002876213944907634, -0.0031638300903168866, 0.9999949537138141, -208.336], [0.0, 0.0, 0.0, 1.0]], [[-0.41660012400625646, -0.9090735827295465, -0.005436714194992916, -25857.18696828147], [0.9090796023599701, -0.4165596013603936, -0.007237063458922461, 42383.97572303921], [0.004314307709267083, -0.007957367512957211, 0.9999590326864664, -208.34], [0.0, 0.0, 0.0, 1.0]], [[-0.3963588797858475, -0.9180642151158214, -0.007598377371454228, -25857.42579107086], [0.9180652028213081, -0.39626474541013396, -0.011425187688266732, 42384.498330427334], [0.007478086892950109, -0.011504280456101423, 0.9999058604426764, -208.34], [0.0, 0.0, 0.0, 1.0]], [[-0.3762933056866148, -0.9264506344205558, -0.009621334480705797, -25857.65122103329], [0.9264900962256734, -0.37621932151778154, -0.00866739363607568, 42385.023981108905], [0.00441018040248823, -0.012175553311854548, 0.9999161495897382, -208.332], [0.0, 0.0, 0.0, 1.0]], [[-0.356672555779366, -0.9341305017786272, -0.013597558627373742, -25857.86230697575], [0.9342289702077747, -0.3566495233016061, -0.00416518346026135, 42385.5630027448], [-0.0009587378867845129, -0.014188839823852575, 0.9998988737097954, -208.321], [0.0, 0.0, 0.0, 1.0]], [[-0.3362517888668494, -0.941683004366676, -0.012955839254735008, -25858.07416103911], [0.941752755624803, -0.336301283518899, 0.0017871700061950625, 42386.11136152829], [-0.0060400129911796965, -0.011600258207986422, 0.9999144724688078, -208.316], [0.0, 0.0, 0.0, 1.0]], [[-0.31585622190697704, -0.9487240646213323, -0.0125497526281876, -25858.27201748586], [0.9487752847692464, -0.3159262703820157, 0.004006331681832521, 42386.67384723153], [-0.007765699819449574, -0.010641470334862445, 0.999913222742567, -208.318], [0.0, 0.0, 0.0, 1.0]], [[-0.2959604897386904, -0.9551218045469411, -0.01223629815873718, -25858.460458814654], [0.9551745423141581, -0.2960221213114069, 0.003535167497196001, 42387.24843425161], [-0.006998730497245779, -0.010641530589612931, 0.9999188845092072, -208.323], [0.0, 0.0, 0.0, 1.0]], [[-0.2775920254324555, -0.9606277334615717, -0.011705772968523527, -25858.640834813767], [0.9606735580766933, -0.2776528181364498, 0.003902229254366725, 42387.832119665945], [-0.006998730497245779, -0.010162198845288035, 0.9999238708452037, -208.327], [0.0, 0.0, 0.0, 1.0]], [[-0.26180244834767713, -0.9650703068076677, -0.009938860966729548, -25858.809955741937], [0.965082911682169, -0.2618701715662786, 0.006243942898077593, 42388.42623407599], [-0.008628535114868158, -0.007957145342515804, 0.9999311137372261, -208.33], [0.0, 0.0, 0.0, 1.0]], [[-0.2484455236542317, -0.9686089544256998, -0.008456664976629901, -25858.971161119887], [0.9685717355953711, -0.24852505253088572, 0.010202512939999676, 42389.03081532245], [-0.011983938498880808, -0.005656118003795717, 0.9999121929185493, -208.33100000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.23728628893240514, -0.9713975060351171, -0.00906103489905532, -25859.12684861997], [0.9713670217000692, -0.23737234409740274, 0.010023941901343742, 42389.64740817296], [-0.011888071257543355, -0.006423046509171861, 0.9999087049502653, -208.339], [0.0, 0.0, 0.0, 1.0]], [[-0.2282533746811618, -0.9735203619454003, -0.012589750766308755, -25859.277370316697], [0.9735772940490377, -0.22832023564924364, 0.0041379348988845235, 42390.27701554791], [-0.006902858742197426, -0.011312597878933331, 0.9999121839793806, -208.352], [0.0, 0.0, 0.0, 1.0]], [[-0.21900769531425168, -0.9756361861350953, -0.013025425018226155, -25859.42971878717], [0.9757226605008229, -0.21900119123774697, -0.001941139264306386, 42390.91483172881], [-0.0009587378867845129, -0.01313432678949735, 0.999913281380666, -208.363], [0.0, 0.0, 0.0, 1.0]], [[-0.20889299323643765, -0.9778280088442, -0.014700425045166419, -25859.572484619588], [0.9779374464792858, -0.20884705967936218, -0.004610470351147703, 42391.56034694312], [0.001438106496578116, -0.015339191082709284, 0.9998813134900725, -208.366], [0.0, 0.0, 0.0, 1.0]], [[-0.19819166461955104, -0.9800451611950394, -0.015216638706387833, -25859.711637517776], [0.9801590643825411, -0.1981213709217824, -0.006010897837689514, 42392.21599785054], [0.0028762100189343187, -0.016106036205810005, 0.9998661525492619, -208.366], [0.0, 0.0, 0.0, 1.0]], [[-0.18831555313453005, -0.9818350124087886, -0.023178888149996572, -25859.841438830026], [0.9821085699940971, -0.1882654016748193, -0.004346869720708183, 42392.877524936135], [-9.587380176390885e-05, -0.023582767870905158, 0.9997218832594199, -208.358], [0.0, 0.0, 0.0, 1.0]], [[-0.179644064266845, -0.9834112726403946, -0.02510535834218028, -25859.977783213602], [0.9837222153243667, -0.1796957510361093, -0.0002003419307292165, 42393.546626558404], [-0.004314307709267083, -0.024732688963560914, 0.9996847907443733, -208.353], [0.0, 0.0, 0.0, 1.0]], [[-0.1736048675871335, -0.9845405996359485, -0.023262794727653226, -25860.10154966435], [0.9848071566181466, -0.17365155945502153, -1.3134706896712756e-05, 42394.23056210284], [-0.004026688929534903, -0.022911646979783384, 0.9997293844880917, -208.357], [0.0, 0.0, 0.0, 1.0]], [[-0.16926130238853238, -0.9854097079741828, -0.017841495003881627, -25860.21898237728], [0.9855712061144807, -0.16923180422757453, -0.003161347169790285, 42394.92602722371], [9.587380176390885e-05, -0.0181191574891221, 0.9998358299941539, -208.366], [0.0, 0.0, 0.0, 1.0]], [[-0.16557397964248588, -0.9861115320796302, -0.013011670335287892, -25860.342981072554], [0.9861906430226106, -0.1655096978302207, -0.005878395937587334, 42395.62742907455], [0.0036431963987249745, -0.01380529694405635, 0.999898065252797, -208.371], [0.0, 0.0, 0.0, 1.0]], [[-0.1637760343764957, -0.9863541120014124, -0.016821899471047362, -25860.460164562483], [0.9864834543317432, -0.1636587350207061, -0.008137123640072543, 42396.338090331614], [0.0052730345741723575, -0.017927191339622443, 0.9998253902142373, -208.369], [0.0, 0.0, 0.0, 1.0]], [[-0.16368363332550756, -0.9863207813787578, -0.019467521715858117, -25860.58006989817], [0.9865120956026495, -0.16362669745637012, -0.0044932292608315695, 42397.05025527178], [0.0012463591094312608, -0.019940413734878676, 0.9998003933231133, -208.36], [0.0, 0.0, 0.0, 1.0]], [[-0.163304505011713, -0.9863626167280217, -0.020504315748865493, -25860.701278004686], [0.9865700070175915, -0.1633389763984918, 6.511735606752871e-06, 42397.770269504785], [-0.0033555768787436814, -0.02022787953648911, 0.9997897643971297, -208.354], [0.0, 0.0, 0.0, 1.0]], [[-0.16283015314309662, -0.9864401179129276, -0.020548357582176803, -25860.823468655148], [0.9866395066395468, -0.16290575347674413, 0.0020492491907787274, 42398.50004120543], [-0.005368907288018821, -0.01994014182756905, 0.9997867600535771, -208.354], [0.0, 0.0, 0.0, 1.0]], [[-0.16321014520690683, -0.9864359314515675, -0.017510044055311872, -25860.947805122363], [0.9865868513321687, -0.16323716326544782, 0.0001153582543233808, 42399.242014885924], [-0.0029720834472962386, -0.017256351593778762, 0.9998466807714342, -208.362], [0.0, 0.0, 0.0, 1.0]], [[-0.16387261664107033, -0.986337879587014, -0.016833086674826532, -25861.071587145558], [0.9864799984691462, -0.16387835757530447, -0.0010471574542626656, 42399.989770423366], [-0.0017257275341621416, -0.016777103749279106, 0.9998577652117644, -208.365], [0.0, 0.0, 0.0, 1.0]], [[-0.1642498289689644, -0.9862602561211204, -0.01768335034906796, -25861.19785250965], [0.98641055319777, -0.1642952455900748, 0.0011370209172676337, 42400.74199325921], [-0.004026688929534903, -0.01725628790901876, 0.9998429908259926, -208.364], [0.0, 0.0, 0.0, 1.0]], [[-0.1644345077778163, -0.9861771486274454, -0.02039421920321183, -25861.326143945247], [0.9863519215492729, -0.16457018738454499, 0.005151725950875572, 42401.50117993767], [-0.008436794884578543, -0.019268755778646642, 0.9997787432941443, -208.36100000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.16471509520422614, -0.9861071908357435, -0.0214836122172527, -25861.456711914092], [0.9862858276324495, -0.16489754194654072, 0.00700477489738459, 42402.26932586091], [-0.010450053743254294, -0.02003519009212081, 0.9997446611684084, -208.366], [0.0, 0.0, 0.0, 1.0]], [[-0.16519043729568708, -0.9860126344841563, -0.022163123960155746, -25861.58682945311], [0.9862222478602334, -0.16534308722031343, 0.005228894143522945, 42403.04671032328], [-0.008820275027912486, -0.020994002621448387, 0.9997406936812978, -208.376], [0.0, 0.0, 0.0, 1.0]], [[-0.1654787303349862, -0.9859668340361754, -0.022049761617804555, -25861.71899382119], [0.9862021701911379, -0.16554199014334023, 0.0010625486681222073, 42403.830681030624], [-0.004697799166715411, -0.02156969355515612, 0.9997563098090083, -208.388], [0.0, 0.0, 0.0, 1.0]], [[-0.16576410593944382, -0.985920080054976, -0.02199674808889854, -25861.853468042682], [0.986165358402702, -0.16573152613633066, -0.003308644887711946, 42404.61843214948], [-0.0003834951982431209, -0.022240885524465265, 0.9997525673598046, -208.39600000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.16557507847520583, -0.9859184368053713, -0.02344630792219806, -25861.98694349975], [0.9861971878827933, -0.1655282782692366, -0.003936458470852143, 42405.40432908392], [-0.0, -0.023774462359331516, 0.9997173475235511, -208.39600000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.1649130649590845, -0.9860044235745505, -0.0244736122633967, -25862.12119558434], [0.9863075427066411, -0.16488872592454207, -0.003023121394949799, 42406.18906358595], [-0.001054611676459362, -0.02463706058765047, 0.9996959052831077, -208.395], [0.0, 0.0, 0.0, 1.0]], [[-0.1634942653839673, -0.9862327118357753, -0.024792403909453063, -25862.255127100692], [0.9865426027068199, -0.1634887538643295, -0.0022628310459219493, 42406.97107991165], [-0.0018216012216118254, -0.024828722579731604, 0.9996900601206596, -208.395], [0.0, 0.0, 0.0, 1.0]], [[-0.1624540980480092, -0.9864334615866983, -0.023615501042571582, -25862.386557767633], [0.9867160275169552, -0.16241685344670542, -0.0034995367737282934, 42407.75342232415], [-0.0003834951982431209, -0.02387030746671062, 0.9997149900611062, -208.398], [0.0, 0.0, 0.0, 1.0]], [[-0.1619807319269902, -0.9865458541342076, -0.022125102824699833, -25862.516440045845], [0.9867922396600948, -0.16189834714117204, -0.00547731134504784, 42408.53505383845], [0.0018216012216118254, -0.022720098669758295, 0.9997402056961728, -208.401], [0.0, 0.0, 0.0, 1.0]], [[-0.1617914123217341, -0.9867116673516103, -0.014954076739932485, -25862.64896636451], [0.9868222962823023, -0.16173706118832895, -0.004783157773554638, 42409.31216089552], [0.0023009691572484854, -0.015530890198823024, 0.9998767408988818, -208.40200000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.1616969611104298, -0.9867664736961209, -0.012083838668850955, -25862.772176307546], [0.9868385967612381, -0.1616607405292852, -0.003922870611383037, 42410.086697497565], [0.0019174748923177283, -0.012559114652148116, 0.9999192927077623, -208.4], [0.0, 0.0, 0.0, 1.0]], [[-0.16112949170859717, -0.9868856100083222, -0.009699467007560178, -25862.90115196208], [0.9869332318731914, -0.16111883900998358, -0.0018749774431799599, 42410.85759591365], [0.0002876213944907634, -0.009874840483603431, 0.9999512012090174, -208.397], [0.0, 0.0, 0.0, 1.0]], [[-0.16046681731154241, -0.9870010768346086, -0.008903643592772813, -25863.029312973595], [0.9870395545827397, -0.16047666287412882, 0.0003979470941234272, 42411.626403382455], [-0.0018216012216118254, -0.008724391102321578, 0.9999602825957055, -208.395], [0.0, 0.0, 0.0, 1.0]], [[-0.16018269302290342, -0.9870608053085895, -0.007243720003493939, -25863.15299405685], [0.9870837342964538, -0.1601977450157222, 0.0015440140043322635, 42412.394930782415], [-0.002684463316608952, -0.006902833869967699, 0.9999725718944823, -208.39600000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.1595199538184389, -0.9871787324800295, -0.005615556329106277, -25863.2772717441], [0.987189634524236, -0.15953478428909443, 0.002297409353479113, 42413.15992414405], [-0.003163830221182504, -0.005177136366211648, 0.9999815935492898, -208.398], [0.0, 0.0, 0.0, 1.0]], [[-0.15838372585959642, -0.9873722605950419, -0.0032579733376769298, -25863.40325007548], [0.9873701882258014, -0.15839448465814943, 0.0033613439016186948, 42413.9217130815], [-0.0038349427346299368, -0.0026844435766229108, 0.9999890434284299, -208.4], [0.0, 0.0, 0.0, 1.0]], [[-0.15762437720431222, -0.9874946288413649, -0.0029855854379887523, -25863.524380758572], [0.9874788690524293, -0.15763979383198296, 0.005931152969276579, 42414.68217569862], [-0.006327628772909453, -0.002013308238878807, 0.999977953609002, -208.4], [0.0, 0.0, 0.0, 1.0]], [[-0.15724371987564673, -0.9875571306619775, -0.0023078644568141097, -25863.646065717112], [0.9875269903735961, -0.15725711921889832, 0.00778728056774665, 42415.44023071312], [-0.008053312569169932, -0.0010545774770400103, 0.9999670154675144, -208.403], [0.0, 0.0, 0.0, 1.0]], [[-0.15667580361339606, -0.9876496168954138, -0.0009627089066268703, -25863.767520333186], [0.9876180292429624, -0.15667849732976785, 0.007904226004677212, 42416.19683939803], [-0.007957441570230497, 0.0002876122881272282, 0.9999682976988962, -208.41], [0.0, 0.0, 0.0, 1.0]], [[-0.15610783241315615, -0.9877395826086022, -0.000928228124023254, -25863.88646516205], [0.987709490976765, -0.15611032709947983, 0.007715387696885641, 42416.95127685793], [-0.007765699819449574, 0.00028761272169862477, 0.9999698051367534, -208.416], [0.0, 0.0, 0.0, 1.0]], [[-0.15563673434036776, -0.9878134711512175, -0.0013240604398744773, -25864.005502747124], [0.9877992423104128, -0.15564162818606242, 0.005323576482565493, 42417.70617794193], [-0.005464779486860826, -0.00047936184052352554, 0.9999849530854881, -208.425], [0.0, 0.0, 0.0, 1.0]], [[-0.15535381924014385, -0.987857399317748, -0.0017173993933687984, -25864.12409656753], [0.9878518159147898, -0.15535905192541258, 0.003514936512829534, 42418.45644334804], [-0.003739069583861832, -0.0011504772977356248, 0.9999923478510395, -208.431], [0.0, 0.0, 0.0, 1.0]], [[-0.1550683417709215, -0.9878998991231228, -0.0027565726800728523, -25864.2404838355], [0.9878880951473226, -0.15508098760405212, 0.005196032134834907, 42419.2012602925], [-0.005560651635471955, -0.0019174452471150498, 0.9999827011289312, -208.431], [0.0, 0.0, 0.0, 1.0]], [[-0.15468685416641775, -0.9879585600917363, -0.0031401734921046196, -25864.358095565356], [0.9879307269767252, -0.15470684235015775, 0.00765974054931219, 42419.942105563394], [-0.008053312569169932, -0.0019174127115839069, 0.9999657332554736, -208.43200000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.15411732502848835, -0.9880474086270917, -0.003188797791013868, -25864.47467221937], [0.9880114542361474, -0.1541395482793854, 0.008623569701705679, 42420.67818522794], [-0.009012015547946579, -0.0018215272481410278, 0.9999577319138283, -208.43800000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.1537406838312869, -0.9880995704592422, -0.004800103472745459, -25864.58713854296], [0.9880850667974507, -0.15377014970321, 0.006530071372487861, 42421.41158775701], [-0.007190473347818418, -0.0037389729222289778, 0.9999671580479637, -208.446], [0.0, 0.0, 0.0, 1.0]], [[-0.15326879022696643, -0.9881643400401999, -0.0063178331157322815, -25864.70152750421], [0.9881699513630714, -0.15329813148764573, 0.004453100661522836, 42422.13707640126], [-0.005368907288018821, -0.005560571491542661, 0.9999701269934118, -208.453], [0.0, 0.0, 0.0, 1.0]], [[-0.15307550029780226, -0.9881939556040211, -0.006371602330305301, -25864.814748588182], [0.9881751332415776, -0.15312376893778026, 0.007938351798689623, 42422.85120748239], [-0.008820275027912486, -0.005081091808587414, 0.9999481912851609, -208.453], [0.0, 0.0, 0.0, 1.0]], [[-0.15325228399865068, -0.9881640207930352, -0.006753181423513684, -25864.921970023766], [0.9880635307486215, -0.1533376113956031, 0.014766046730895845, 42423.55626822488], [-0.015626792817622637, -0.0044096418939623344, 0.9998681705127943, -208.451], [0.0, 0.0, 0.0, 1.0]], [[-0.15286363513631274, -0.9882159310271956, -0.007872910323713653, -25865.030133815337], [0.9880594099920783, -0.1529850597585926, 0.018280421679106894, 42424.25431233008], [-0.019269441585535726, -0.004984491419676117, 0.9998019021117478, -208.458], [0.0, 0.0, 0.0, 1.0]], [[-0.15153694833147857, -0.9884203195967116, -0.007862893787742254, -25865.13983045848], [0.9882618775065588, -0.1516589158133042, 0.018385720588120363, 42424.94193257729], [-0.019365297766729923, -0.004984482186509822, 0.9998000500998878, -208.472], [0.0, 0.0, 0.0, 1.0]], [[-0.1503154098212332, -0.9885836320487271, -0.010376898169566296, -25865.241576347933], [0.9885175953029112, -0.15045268056873146, 0.01403405451867909, 42425.62156974122], [-0.01543506873404564, -0.008148211768854078, 0.9998476710470177, -208.489], [0.0, 0.0, 0.0, 1.0]], [[-0.14871846355737015, -0.9888486239799116, -0.00782415811258342, -25865.348446391414], [0.9888568043551703, -0.14876408014137177, 0.005609718368326576, 42426.29516369579], [-0.006711115973933693, -0.006902703291251735, 0.9999536557309331, -208.51], [0.0, 0.0, 0.0, 1.0]], [[-0.1479631531648268, -0.9889613773156486, -0.007893002182773948, -25865.444761741524], [0.9889918286594821, -0.14796988953490348, 0.00027319553795685696, 42426.95605918316], [-0.001438106496578116, -0.007765691789128234, 0.9999688124540389, -208.52100000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.1478684013436023, -0.9889808303862274, -0.007200903599915454, -25865.54179749394], [0.9890062600777902, -0.1478735400034708, 0.0001835586669734846, 42427.60594213957], [-0.0012463591094312608, -0.007094596211894948, 0.9999740563102427, -208.522], [0.0, 0.0, 0.0, 1.0]], [[-0.1474886547421367, -0.9890379567688812, -0.0071426040623391845, -25865.63972231173], [0.9890598396714654, -0.1475045265451217, 0.0017459088620435821, 42428.24901207018], [-0.0027803365641348716, -0.00680696107936877, 0.9999729671393393, -208.52100000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.1470127964152949, -0.9891036706258345, -0.007820897944342056, -25865.735663113584], [0.9891194942348043, -0.14704964088378134, 0.004362251785019234, 42428.88432180238], [-0.005464779486860826, -0.007094495785586347, 0.9999599013534034, -208.519], [0.0, 0.0, 0.0, 1.0]], [[-0.14748653445154494, -0.9890332042493817, -0.007813005034817355, -25865.829368326577], [0.9890456209895171, -0.14752742270705305, 0.004941573724519288, 42429.511931203495], [-0.0060400129911796965, -0.006998602833088992, 0.999957267987713, -208.522], [0.0, 0.0, 0.0, 1.0]], [[-0.14834035531016096, -0.988893999266994, -0.009154081067251381, -25865.920421344683], [0.9889212684393107, -0.14838288591174456, 0.004152589178694458, 42430.13113541156], [-0.005464779486860826, -0.008436668906197849, 0.9999494781252337, -208.526], [0.0, 0.0, 0.0, 1.0]], [[-0.1488140454975921, -0.988832993099527, -0.007980703006095108, -25866.01639587597], [0.9888479041874059, -0.14885432684077682, 0.004712935916628429, 42430.739474224254], [-0.005848268702414403, -0.007190350381594898, 0.9999570473848236, -208.529], [0.0, 0.0, 0.0, 1.0]], [[-0.15108824435342297, -0.9884813683536862, -0.008770794480801378, -25866.104083770373], [0.9884981441381709, -0.15113829042162796, 0.005351280577520545, 42431.33685247802], [-0.006615244031179783, -0.007861398479389325, 0.9999472170871602, -208.532], [0.0, 0.0, 0.0, 1.0]], [[-0.156110673599968, -0.9877367187475911, -0.002373188973975667, -25866.198378679812], [0.9877274674430083, -0.15612020393709894, 0.004575148222705507, 42431.92738057938], [-0.004889544639877367, -0.001629834464162404, 0.99998671790821, -208.53900000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.1654794581610623, -0.9862078034064133, 0.003273748160487453, -25866.287837257696], [0.9862065078099624, -0.16546515462163963, 0.004243413639435338, 42432.505016325726], [-0.0036431963987249745, 0.003930789530610641, 0.9999856379036983, -208.54500000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.1791735729045439, -0.9837906127806741, 0.0072705554977548666, -25866.38287757756], [0.9838140728691613, -0.17914861519996889, 0.003955211312433048, 42433.07088515939], [-0.002588589811578258, 0.007861544158708586, 0.9999657470764827, -208.549], [0.0, 0.0, 0.0, 1.0]], [[-0.1968765461463832, -0.980361229983385, 0.011466661368304834, -25866.488575241543], [0.9804278180463544, -0.1968515497453447, 0.0032803907877863524, 42433.62478572335], [-0.0009587378867845129, 0.011888065793913324, 0.9999288748272769, -208.553], [0.0, 0.0, 0.0, 1.0]], [[-0.21797827161519992, -0.9758950815998445, 0.01068937850780159, -25866.596584482962], [0.9759519224186403, -0.21798526004352145, 0.000521086479174868, 42434.1679882098], [0.0018216012216118254, 0.010545905034242044, 0.9999427311881406, -208.556], [0.0, 0.0, 0.0, 1.0]], [[-0.24176825527902443, -0.9702344056900749, 0.013903551868634923, -25866.722489475942], [0.9703221792018573, -0.2418112720296947, -0.0014755569592442416, 42434.70120214387], [0.00479367169249964, 0.013134181916218589, 0.9999022522112331, -208.559], [0.0, 0.0, 0.0, 1.0]], [[-0.26892125273573875, -0.963030947580696, 0.015898233514068237, -25866.852728849255], [0.9631292950329656, -0.2690118100806648, -0.0038219218237714, 42435.22795873286], [0.007957441570230497, 0.014284258431967343, 0.9998663106059256, -208.56], [0.0, 0.0, 0.0, 1.0]], [[-0.29815692711284125, -0.9543638918198897, 0.01708826512615581, -25867.000638416313], [0.9544890549395034, -0.2982371175779911, -0.002294711194250592, 42435.74103803764], [0.007286344441580877, 0.01562637799253094, 0.999851351699598, -208.555], [0.0, 0.0, 0.0, 1.0]], [[-0.3300159494014289, -0.9437312128913358, 0.02146790523832457, -25867.16560020564], [0.9439606285471089, -0.3300524854741743, 0.001920568995601728, 42436.24321338804], [0.0052730345741723575, 0.02089867572283309, 0.9997676932464918, -208.548], [0.0, 0.0, 0.0, 1.0]], [[-0.3643619374012749, -0.9310255956042638, 0.020777846445565358, -25867.335501675632], [0.931252976365239, -0.36433840754170255, 0.005041706145728966, 42436.73872791111], [0.0028762100189343187, 0.02118643716395836, 0.99977140502028, -208.542], [0.0, 0.0, 0.0, 1.0]], [[-0.39927198099755, -0.9166336163895236, 0.019097080796701596, -25867.528120350024], [0.916830718813065, -0.39922595350836293, 0.006330172671969587, 42437.22074593528], [0.0018216012216118254, 0.020036250896864956, 0.9997975947255461, -208.538], [0.0, 0.0, 0.0, 1.0]], [[-0.4345622882033915, -0.9005024331836803, 0.015842521948983748, -25867.73849222828], [0.9006417758907516, -0.4344969225090456, 0.007537628972144069, 42437.68965095837], [9.587380176390885e-05, 0.017544006396484037, 0.9998460874793551, -208.53300000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.47038021312424766, -0.8824115090923689, 0.009611645151347435, -25867.96178014573], [0.8824600581918565, -0.4703183379054308, 0.008056471057374445, 42438.14732775968], [-0.002588589811578258, 0.012271497512574657, 0.9999213516830142, -208.528], [0.0, 0.0, 0.0, 1.0]], [[-0.5057729016644855, -0.8626053299620712, 0.010286722651697305, -25868.20854707111], [0.86266576292957, -0.5057191867417157, 0.007475669230294172, 42438.59269479717], [-0.0012463591094312608, 0.012654994362861138, 0.9999191455846049, -208.53], [0.0, 0.0, 0.0, 1.0]], [[-0.5414613039361097, -0.8405777553952716, 0.015770018213522703, -25868.469206326215], [0.8407244424836906, -0.541397333279031, 0.00844626123450799, 42439.02653615879], [0.001438106496578116, 0.017831563391943233, 0.9998399707936784, -208.534], [0.0, 0.0, 0.0, 1.0]], [[-0.5780772658063301, -0.8157530104876815, 0.01933133824033553, -25868.739372194872], [0.8159779249223994, -0.5779872657667591, 0.010523623463471486, 42439.44681087558], [0.002588589811578258, 0.02185741274146095, 0.9997577470122634, -208.535], [0.0, 0.0, 0.0, 1.0]], [[-0.6103068401530896, -0.791966800263581, 0.01772422473950874, -25868.99909618103], [0.7921648253140763, -0.6101727933974016, 0.012808268139407126, 42439.80692247738], [0.0006711165848251493, 0.02185748105059542, 0.9997608714710996, -208.53], [0.0, 0.0, 0.0, 1.0]], [[-0.6449291348390295, -0.7641308245384124, 0.013057336099950356, -25869.304971474114], [0.7642379931922832, -0.6447734284997405, 0.014405403920809025, 42440.18868187609], [-0.002588589811578258, 0.01926937702511734, 0.9998109772911334, -208.524], [0.0, 0.0, 0.0, 1.0]], [[-0.6793254467465412, -0.7338227808953313, 0.004589514315793068, -25869.621110886557], [0.7338167847547317, -0.6792467512561604, 0.011695183631715336, 42440.56101882516], [-0.005464779486860826, 0.011312698484198939, 0.9999210764046158, -208.519], [0.0, 0.0, 0.0, 1.0]], [[-0.7135594944803137, -0.7005931320727432, -0.0014529726435494527, -25869.9534503047], [0.7005438375498529, -0.7135311935017871, 0.010562555128406398, 42440.91359323017], [-0.008436794884578543, 0.006519140466279027, 0.9999431590343806, -208.516], [0.0, 0.0, 0.0, 1.0]], [[-0.7470656939920567, -0.6647482268445574, -0.0016259665382547398, -25870.300057907243], [0.6646796870518651, -0.7470198270950107, 0.012739369983441728, 42441.24489886814], [-0.009683102849878996, 0.008436399347897505, 0.999917528941883, -208.518], [0.0, 0.0, 0.0, 1.0]], [[-0.7789418325409236, -0.6270961793655874, 5.781756401714716e-05, -25870.66016310125], [0.6269834888412639, -0.7788001005628931, 0.01902913775409465, 42441.5613947501], [-0.011888071257543355, 0.014858842091851938, 0.9998189278931786, -208.52100000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.8085598322000208, -0.5884058676197996, 0.003087507613764421, -25871.035059029913], [0.5882114895221356, -0.8081328304577667, 0.03047247824626153, 42441.85407293017], [-0.01543506873404564, 0.026454929349919314, 0.9995308376264667, -208.522], [0.0, 0.0, 0.0, 1.0]], [[-0.836847265427225, -0.5474260138437254, 0.003378418882442875, -25871.416538581907], [0.5471733843620615, -0.8362379223148919, 0.036158328615139984, 42442.13326019868], [-0.01696884771407416, 0.03210757931769783, 0.9993403632184653, -208.52700000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.8632497970740202, -0.5047720636019852, 0.002225232270150597, -25871.807611041968], [0.5044482144386156, -0.8625201158828124, 0.03988795115310143, 42442.382684947464], [-0.018215015820889736, 0.0355557801840019, 0.9992016811906151, -208.531], [0.0, 0.0, 0.0, 1.0]], [[-0.8876578411258186, -0.46048573092193745, -0.004055700326686829, -25872.203271996957], [0.46011615430368485, -0.887237822551704, 0.033198957551383544, 42442.61154854872], [-0.018886016960667086, 0.027603221750365465, 0.999440533754941, -208.535], [0.0, 0.0, 0.0, 1.0]], [[-0.9092852206441698, -0.41614327281030083, -0.005016374469179597, -25872.60884010287], [0.41585049549531794, -0.9089882855901602, 0.028436983949778966, 42442.808614911155], [-0.016393685198332824, 0.023771267416631083, 0.9995830000210212, -208.544], [0.0, 0.0, 0.0, 1.0]], [[-0.928806202961135, -0.3705043277629191, -0.006751329488792841, -25873.013367710144], [0.3703013880930794, -0.9286775011386519, 0.02085619464829937, 42442.99361777956], [-0.013997118176876577, 0.016871336278331556, 0.9997596904731286, -208.55100000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.9459413906790162, -0.32428747481407494, -0.005702550215430464, -25873.42056900257], [0.3240057566007664, -0.9456226089371284, 0.02860334170169196, 42443.14706143583], [-0.014668165863996148, 0.025209425730261175, 0.9995745743887929, -208.55700000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.9588935509510584, -0.28366660551840234, -0.007510982501443539, -25873.78605751158], [0.2832639408376249, -0.9584354174333026, 0.034104111637593505, 42443.27212220458], [-0.01687298923156206, 0.030574622207282017, 0.9993900613430542, -208.559], [0.0, 0.0, 0.0, 1.0]], [[-0.9705931524662867, -0.24056634696667528, -0.00876156907549135, -25874.188644893526], [0.24005736660208182, -0.9699671179371507, 0.03919503617514951, 42443.38695947161], [-0.017927440576644017, 0.035939154522703826, 0.9991931665331604, -208.56300000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.9801602250595209, -0.1980646777346282, -0.0075044416945678274, -25874.590515584354], [0.19760488826049968, -0.9794314897540665, 0.04081990952569038, 42443.478801886566], [-0.01543506873404564, 0.038527137345097454, 0.9991383379398308, -208.572], [0.0, 0.0, 0.0, 1.0]], [[-0.9878720006574763, -0.15516540922911717, -0.00571017475703349, -25874.986671604987], [0.15487165897912367, -0.9873023303362678, 0.03533946459171905, 42443.55825493173], [-0.011121131329558479, 0.03402652335070305, 0.9993590526665652, -208.58100000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.9935745224732333, -0.11305955811877366, -0.005215803876110732, -25875.374979393273], [0.11288604482239903, -0.9932609659287586, 0.026256322031558876, 42443.6149778201], [-0.008149182562792977, 0.025498821154266063, 0.9996416362593652, -208.585], [0.0, 0.0, 0.0, 1.0]], [[-0.9972385797153394, -0.07414671793082674, -0.004180830948399298, -25875.75870139491], [0.0740413740065863, -0.9970263268178394, 0.021363018685184254, 42443.648444483035], [-0.005752396244130235, 0.020994471944136662, 0.9997630429683011, -208.589], [0.0, 0.0, 0.0, 1.0]], [[-0.999227416499634, -0.03928944661528834, 0.0009536771629896957, -25876.13860663987], [0.039298095638721546, -0.99915485171926, 0.012051637442006944, 42443.67263156913], [0.00047936899847047203, 0.01207980424212649, 0.9999269215971911, -208.597], [0.0, 0.0, 0.0, 1.0]], [[-0.9999886716361658, -0.004685538172799089, 0.0008380521272126497, -25876.506080283958], [0.00469769359951217, -0.9998742919406933, 0.015143711267130941, 42443.68292629497], [0.0007669903400861504, 0.015147476625773969, 0.9998849762236103, -208.597], [0.0, 0.0, 0.0, 1.0]], [[-0.9996531427849141, 0.026232047802395693, -0.002339612860462064, -25876.866285445354], [-0.026266278957654876, -0.9995261247579426, 0.01605018741599397, 42443.689031028975], [-0.0019174748923177283, 0.016106073216731066, 0.9998684501951117, -208.59300000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.9987637274878097, 0.049456797888808794, -0.0050041779786230344, -25877.21730980242], [-0.0495459628115246, -0.998579102728346, 0.01962073299676796, 42443.668503105204], [-0.004026688929534903, 0.019844413239926136, 0.9997949715013712, -208.591], [0.0, 0.0, 0.0, 1.0]], [[-0.997522320892344, 0.07026010372002972, -0.0035689139527467426, -25877.565362995545], [-0.07031304901999938, -0.9973641339512409, 0.017912549935796437, 42443.64813015262], [-0.0023009691572484854, 0.01811910960676331, 0.9998331877908412, -208.594], [0.0, 0.0, 0.0, 1.0]], [[-0.9959067779624488, 0.09038609970639554, -0.00020636937583104595, -25877.903736733893], [-0.09038125043457962, -0.9958239375062633, 0.012880801970514891, 42443.627171654996], [0.0009587378867845129, 0.01284672991026686, 0.9999170177331103, -208.597], [0.0, 0.0, 0.0, 1.0]], [[-0.994315760941942, 0.106438883834205, 0.002632783807190107, -25878.23030131742], [-0.10640909107048656, -0.9942757575919693, 0.009634479875348096, 42443.59331218086], [0.0036431963987249745, 0.009299563056628374, 0.9999501213795398, -208.6], [0.0, 0.0, 0.0, 1.0]], [[-0.9929785451393636, 0.1181697213349074, 0.005433769643920284, -25878.550968725103], [-0.11812523018824175, -0.9929673791836223, 0.007887576952617133, 42443.556868019376], [0.006327628772909453, 0.007190329397106571, 0.9999541290865663, -208.602], [0.0, 0.0, 0.0, 1.0]], [[-0.9917850664391132, 0.12778856412305897, 0.0056977949884546766, -25878.8588682832], [-0.1277342824422827, -0.9917671627572106, 0.009046986540707631, 42443.518199809725], [0.006806987389349617, 0.008244862392995989, 0.9999428419498795, -208.6], [0.0, 0.0, 0.0, 1.0]], [[-0.9905476957015329, 0.13710198646602545, 0.004278767048231882, -25879.15552136619], [-0.13704806630461364, -0.9905028216472895, 0.011044810135266384, 42443.479942470556], [0.005752396244130235, 0.010354014478820974, 0.9999298497002791, -208.597], [0.0, 0.0, 0.0, 1.0]], [[-0.9894273878869706, 0.14498125697473171, 0.003725483216041022, -25879.44200081182], [-0.14492612008994854, -0.9893663973700301, 0.012269941757049653, 42443.44009440208], [0.005464779486860826, 0.011600296594241857, 0.9999177812720832, -208.595], [0.0, 0.0, 0.0, 1.0]], [[-0.9886556682837112, 0.15010755482588634, 0.005262276568358657, -25879.717825174626], [-0.15004544142748755, -0.9886213117843956, 0.010689592720551594, 42443.39761403146], [0.006806987389349617, 0.009778745824204732, 0.9999290180071718, -208.595], [0.0, 0.0, 0.0, 1.0]], [[-0.9881529270107219, 0.1533175580518737, 0.006893419554424778, -25879.980033518066], [-0.15326601698941406, -0.9881567133012961, 0.007472482437631809, 42443.35583183038], [0.007957441570230497, 0.006327428434238459, 0.9999483200511244, -208.594], [0.0, 0.0, 0.0, 1.0]], [[-0.9877593008629605, 0.15584589715444291, 0.006604536232178973, -25880.22875430302], [-0.1558243568416604, -0.9877779891656767, 0.0036625038832695128, 42443.3183017026], [0.00709460172231337, 0.00258852466452944, 0.9999714826766125, -208.59], [0.0, 0.0, 0.0, 1.0]], [[-0.9875778135142333, 0.1570723499186926, 0.004282422849973707, -25880.46426287476], [-0.15705757850594385, -0.9875829101888332, 0.003593401842880814, 42443.27997198332], [0.00479367169249964, 0.002876176972114858, 0.9999843740367794, -208.585], [0.0, 0.0, 0.0, 1.0]], [[-0.9876478676936403, 0.15668888178722837, 0.0005326954790095646, -25880.690580263534], [-0.15668028371394796, -0.9876197004450813, 0.007656107894006601, 42443.24305998586], [0.0017257275341621416, 0.007478075757563711, 0.9999705496900606, -208.58100000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.9877386229418249, 0.15611592568818408, -0.00048009947812627284, -25880.90893963886], [-0.15611242465758418, -0.9876844682007709, 0.010406831529839086, 42443.211972163546], [0.0011504853400251943, 0.010354178938077958, 0.9999457322085038, -208.58], [0.0, 0.0, 0.0, 1.0]], [[-0.9876734711992424, 0.15651722557914294, 0.001863433993195865, -25881.113047746076], [-0.15649026098332067, -0.9876258637642001, 0.010293271656273428, 42443.17907293308], [0.0034514499288699854, 0.009874782074827938, 0.9999452865894028, -208.583], [0.0, 0.0, 0.0, 1.0]], [[-0.9874206923207304, 0.15803771796248825, 0.0049453086919345355, -25881.307288756736], [-0.15800330239867164, -0.9874157577549869, 0.006713997934101828, 42443.14786241442], [0.005944140641289175, 0.005848165383624268, 0.9999652324724507, -208.585], [0.0, 0.0, 0.0, 1.0]], [[-0.9873868471232673, 0.15819598793057418, 0.006422112630861616, -25881.490027541775], [-0.15819200962838745, -0.9874077274415441, 0.0011260010913581803, 42443.11799708585], [0.006519372493271016, 9.58717643176622e-05, 0.9999787440695422, -208.584], [0.0, 0.0, 0.0, 1.0]], [[-0.9875850324457565, 0.15694319195652182, 0.006681181603031318, -25881.663461631484], [-0.15696167971479436, -0.987601931468132, -0.002335821381319208, 42443.08913220996], [0.006231756592218552, -0.0033555117215489996, 0.999974952561744, -208.582], [0.0, 0.0, 0.0, 1.0]], [[-0.9876168688046711, 0.15675459481758683, 0.006396675388909113, -25881.827937282465], [-0.15677240715283242, -0.9876318836009846, -0.0023821944248443665, 42443.06435705908], [0.005944140641289175, -0.0033555175972432997, 0.9999767035754838, -208.58], [0.0, 0.0, 0.0, 1.0]], [[-0.9874223396628445, 0.15799452808461978, 0.005903577734937827, -25881.982944757718], [-0.1580035660000892, -0.9874379350889109, -0.0010942936549452314, 42443.042139753255], [0.005656524198624812, -0.002013316335323132, 0.9999819749832115, -208.579], [0.0, 0.0, 0.0, 1.0]], [[-0.9873647038358937, 0.15838439701462237, 0.005032335578285708, -25882.12859157166], [-0.1583828340332511, -0.9873775233368269, 0.0007101357825758452, 42443.01643650982], [0.005081289467609322, -9.587256404897997e-05, 0.9999870855695077, -208.578], [0.0, 0.0, 0.0, 1.0]], [[-0.9875057751030801, 0.1575330193345196, 0.003961307538536097, -25882.26655928384], [-0.1575313616849983, -0.9875137156656171, 0.0007290116303619751, 42442.99288142726], [0.004026688929534903, 9.587302450112209e-05, 0.9999918882594139, -208.576], [0.0, 0.0, 0.0, 1.0]], [[-0.987539875299688, 0.15734251739593366, 0.002885639025740325, -25882.397536156306], [-0.15734269003993653, -0.9875440493943185, 0.0001685137037544773, 42442.97305506505], [0.0028762100189343187, -0.0002876202048022194, 0.9999958223365459, -208.573], [0.0, 0.0, 0.0, 1.0]], [[-0.987405829590953, 0.1581945974714192, 0.0020486631391374672, -25882.522494291967], [-0.15819505086265107, -0.9874078803933484, -6.016376418183013e-05, 42442.954173591796], [0.002013348545398599, -0.0003834944209795643, 0.9999978996776262, -208.572], [0.0, 0.0, 0.0, 1.0]], [[-0.9873456017817961, 0.15857207953587502, 0.0018863281291725924, -25882.639359131026], [-0.15857390865656498, -0.9873467334118711, -0.0008622727451109027, 42442.935460109446], [0.0017257275341621416, -0.0011504836268732893, 0.9999978491236379, -208.571], [0.0, 0.0, 0.0, 1.0]], [[-0.9874371158700929, 0.15800404546575286, 0.001632120892934758, -25882.74710483629], [-0.15800593043255481, -0.987437552471604, -0.0010981425365894104, 42442.916543257896], [0.001438106496578116, -0.001342231479410684, 0.9999980651303082, -208.57], [0.0, 0.0, 0.0, 1.0]], [[-0.9874373700069138, 0.15800416055126976, 0.0014579308343807417, -25882.848963879107], [-0.15800597109856201, -0.9874373990797624, -0.0012231090689864344, 42442.901330354674], [0.0012463591094312608, -0.0014381053795924355, 0.9999981892193043, -208.57], [0.0, 0.0, 0.0, 1.0]], [[-0.9873612448902636, 0.15847777400388688, 0.0016022595051636101, -25882.94406982402], [-0.15847934861821408, -0.9873618746604472, -0.0009080355465443196, 42442.88665501285], [0.001438106496578116, -0.0011504841503362812, 0.9999983041165241, -208.57], [0.0, 0.0, 0.0, 1.0]], [[-0.9873457606025391, 0.1585713113518252, 0.0018676820810445266, -25883.032663249865], [-0.15857393416417442, -0.9873461818426855, -0.0013507791701046206, 42442.87170954186], [0.0016298539472650948, -0.0016298517824721761, 0.9999973435761105, -208.57], [0.0, 0.0, 0.0, 1.0]], [[-0.9873916431638762, 0.1582866609993882, 0.001753841442502375, -25883.114317618132], [-0.15828984446212963, -0.9873909479738312, -0.0018549931249812036, 42442.85777875133], [0.001438106496578116, -0.002109219998877822, 0.9999967415150415, -208.57], [0.0, 0.0, 0.0, 1.0]], [[-0.987346305131371, 0.1585710456883948, 0.0015802571684935532, -25883.190419244052], [-0.15857402161892695, -0.9873451073613538, -0.0019795547976040667, 42442.84649693268], [0.0012463591094312608, -0.0022050938496196155, 0.999996792069897, -208.56900000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.9872851848314489, 0.1589491420597156, 0.0017703250583382527, -25883.25997128304], [-0.1589524949852513, -0.9872843095087137, -0.0019484701347616262, 42442.835602057916], [0.001438106496578116, -0.002205093282094466, 0.9999965347006567, -208.56900000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.9872845677368949, 0.1589487163008524, 0.0021184652189307936, -25883.322814461102], [-0.15895239563329047, -0.9872847877018042, -0.00169820347465412, 42442.825014071204], [0.0018216012216118254, -0.0020133452050180387, 0.9999963140982444, -208.57], [0.0, 0.0, 0.0, 1.0]], [[-0.9872683529877357, 0.15904337059326346, 0.0025309008707415236, -25883.381203718494], [-0.15904686331336765, -0.987270251684162, -0.0012431450720558233, 42442.816056993106], [0.0023009691572484854, -0.001629849632661883, 0.999996024557654, -208.571], [0.0, 0.0, 0.0, 1.0]], [[-0.9871587552122865, 0.1597089215771658, 0.0032637978472797717, -25883.43734511131], [-0.15970900519506684, -0.9871641087699002, 0.0002366772717267073, 42442.80786073335], [0.0032597035649443527, -0.0002876198664020766, 0.9999946457894068, -208.572], [0.0, 0.0, 0.0, 1.0]], [[-0.9870447893758111, 0.1603786846286207, 0.004610995863608914, -25883.497483489955], [-0.16037043405589274, -0.9870546469019813, 0.002109006858608524, 42442.80007714828], [0.004889544639877367, 0.0013422168224705043, 0.9999871453209868, -208.57500000000002], [0.0, 0.0, 0.0, 1.0]], [[-0.9870852213471125, 0.1601031854836307, 0.005453053833951075, -25883.560686321092], [-0.16008570513996057, -0.9870968895896388, 0.0035067894579063072, 42442.790180668766], [0.005944140641289175, 0.0025885440801009445, 0.9999789830949357, -208.576], [0.0, 0.0, 0.0, 1.0]], [[-0.9871130017382247, 0.15992001152690308, 0.005788930176363574, -25883.61972446902], [-0.15989577993674556, -0.9871239425209732, 0.004434147073558709, 42442.77961701849], [0.006423500429786138, 0.003451378722380286, 0.9999734129601362, -208.577], [0.0, 0.0, 0.0, 1.0]], [[-0.9870650829519706, 0.1602050506397989, 0.006071553880102253, -25883.68075384933], [-0.1601795334598148, -0.9870777222586965, 0.004481883664240965, 42442.77032343871], [0.006711115973933693, 0.003451372202934183, 0.9999715240707113, -208.577], [0.0, 0.0, 0.0, 1.0]]], "camera_to_world": {"0": [[[-0.8449083566665649, -0.5348591804504395, -0.007462343666702509, -25833.837890625], [0.5346195101737976, -0.8448260426521301, 0.021238291636109352, 42363.87890625], [-0.017663875594735146, 0.013954893685877323, 0.999746561050415, -206.04893493652344], [0.0, 0.0, 0.0, 1.0]], [[-0.8467321395874023, -0.5319120287895203, -0.010689521208405495, -25834.40625], [0.5315495133399963, -0.8466578125953674, 0.025015946477651596, 42364.23828125], [-0.022356649860739708, 0.015499796718358994, 0.9996299147605896, -206.05227661132812], [0.0, 0.0, 0.0, 1.0]], [[-0.8485366702079773, -0.5290072560310364, -0.011698140762746334, -25834.974609375], [0.5285927653312683, -0.8484594821929932, 0.02657496929168701, 42364.59375], [-0.023983748629689217, 0.01636628247797489, 0.9995783567428589, -206.058837890625], [0.0, 0.0, 0.0, 1.0]], [[-0.8503174781799316, -0.5261965990066528, -0.00879727117717266, -25835.5390625], [0.5258391499519348, -0.8501787185668945, 0.02625845931470394, 42364.9453125], [-0.021296365186572075, 0.017702078446745872, 0.9996165037155151, -206.06373596191406], [0.0, 0.0, 0.0, 1.0]], [[-0.8521384000778198, -0.5232855677604675, -0.005697860848158598, -25836.103515625], [0.5230122804641724, -0.8519636392593384, 0.024823758751153946, 42365.29296875], [-0.01784428395330906, 0.018173225224018097, 0.9996755719184875, -206.06739807128906], [0.0, 0.0, 0.0, 1.0]], [[-0.8537543416023254, -0.5206530690193176, -0.004893780220299959, -25836.671875], [0.5204083323478699, -0.853579044342041, 0.024041473865509033, 42365.63671875], [-0.01669449359178543, 0.01797875016927719, 0.9996989965438843, -206.06861877441406], [0.0, 0.0, 0.0, 1.0]], [[-0.8544237017631531, -0.5194949507713318, -0.009226350113749504, -25837.2578125], [0.519155740737915, -0.8543113470077515, 0.025089029222726822, 42365.98828125], [-0.0209158007055521, 0.016646748408675194, 0.9996426105499268, -206.07008361816406], [0.0, 0.0, 0.0, 1.0]], [[-0.8544949889183044, -0.5192520618438721, -0.014688280411064625, -25837.841796875], [0.5187599062919617, -0.8544698357582092, 0.02774171531200409, 42366.34375], [-0.026955632492899895, 0.016085464507341385, 0.9995071887969971, -206.07647705078125], [0.0, 0.0, 0.0, 1.0]], [[-0.8548482656478882, -0.5185527801513672, -0.018374428153038025, -25838.423828125], [0.5179919600486755, -0.8549216389656067, 0.028165357187390327, 42366.69921875], [-0.030313922092318535, 0.014559299685060978, 0.9994344115257263, -206.08567810058594], [0.0, 0.0, 0.0, 1.0]], [[-0.8552551865577698, -0.5179272890090942, -0.017023950815200806, -25839.0], [0.5175049304962158, -0.8553449511528015, 0.023953087627887726, 42367.04296875], [-0.026967309415340424, 0.011676025576889515, 0.9995681047439575, -206.09429931640625], [0.0, 0.0, 0.0, 1.0]], [[-0.8552415370941162, -0.5181118845939636, -0.011044571176171303, -25839.572265625], [0.5178030729293823, -0.8552080988883972, 0.02234060689806938, 42367.38671875], [-0.02102033980190754, 0.013387701474130154, 0.9996894001960754, -206.10110473632812], [0.0, 0.0, 0.0, 1.0]], [[-0.8554186820983887, -0.5178919434547424, -0.0068382383324205875, -25840.142578125], [0.51775723695755, -0.8553950190544128, 0.015061681158840656, 42367.734375], [-0.013649719767272472, 0.009343497455120087, 0.9998632073402405, -206.10157775878906], [0.0, 0.0, 0.0, 1.0]], [[-0.855485200881958, -0.5178234577178955, 0.0019746352918446064, -25840.701171875], [0.517753541469574, -0.8552929162979126, 0.020133839920163155, 42368.08984375], [-0.008736882358789444, 0.018246576189994812, 0.9997953176498413, -206.1004180908203], [0.0, 0.0, 0.0, 1.0]], [[-0.8551603555679321, -0.5183629989624023, -0.0007705028401687741, -25841.2734375], [0.5182088017463684, -0.8549405336380005, 0.023160606622695923, 42368.44921875], [-0.01266433484852314, 0.019406750798225403, 0.9997314810752869, -206.0974884033203], [0.0, 0.0, 0.0, 1.0]], [[-0.8541557788848877, -0.5198555588722229, -0.012966584414243698, -25841.859375], [0.5195067524909973, -0.8541565537452698, 0.023004401475191116, 42368.796875], [-0.023034458979964256, 0.012913113459944725, 0.9996512532234192, -206.0982208251953], [0.0, 0.0, 0.0, 1.0]], [[-0.8523397445678711, -0.5226513743400574, -0.018777500838041306, -25842.4375], [0.5223119854927063, -0.85251384973526, 0.020255891606211662, 42369.13671875], [-0.026594849303364754, 0.007457186467945576, 0.9996184706687927, -206.10459899902344], [0.0, 0.0, 0.0, 1.0]], [[-0.8505624532699585, -0.5253742933273315, -0.022922059521079063, -25843.005859375], [0.525165855884552, -0.8508710861206055, 0.014807076193392277, 42369.48046875], [-0.027282973751425743, 0.0005564593593589962, 0.9996275901794434, -206.1105499267578], [0.0, 0.0, 0.0, 1.0]], [[-0.8477014899253845, -0.5301284193992615, -0.019134078174829483, -25843.5546875], [0.5298581123352051, -0.8479039669036865, 0.017587309703230858, 42369.83984375], [-0.025547394528985023, 0.004770440980792046, 0.9996622204780579, -206.118896484375], [0.0, 0.0, 0.0, 1.0]], [[-0.8434470891952515, -0.5370142459869385, -0.014585265889763832, -25844.09765625], [0.5367578864097595, -0.8435395359992981, 0.01822417601943016, 42370.203125], [-0.022089889273047447, 0.007542372215539217, 0.9997275471687317, -206.12557983398438], [0.0, 0.0, 0.0, 1.0]], [[-0.8385101556777954, -0.5446609854698181, -0.01566006802022457, -25844.642578125], [0.544475793838501, -0.838647723197937, 0.014701876789331436, 42370.5625], [-0.021140819415450096, 0.0038011453580111265, 0.9997692704200745, -206.12901306152344], [0.0, 0.0, 0.0, 1.0]], [[-0.8341850638389587, -0.5510477423667908, -0.021949727088212967, -25845.19140625], [0.550905168056488, -0.8344723582267761, 0.012628699652850628, 42370.921875], [-0.0252754557877779, -0.0015575479483231902, 0.9996792674064636, -206.13238525390625], [0.0, 0.0, 0.0, 1.0]], [[-0.8297201991081238, -0.5575173497200012, -0.02718290686607361, -25845.732421875], [0.5574687123298645, -0.8301372528076172, 0.010040261782705784, 42371.28515625], [-0.028163162991404533, -0.006823010742664337, 0.9995800852775574, -206.139892578125], [0.0, 0.0, 0.0, 1.0]], [[-0.8250054717063904, -0.5645437836647034, -0.025620875880122185, -25846.259765625], [0.564403772354126, -0.8253950476646423, 0.013093211688101292, 42371.66015625], [-0.028539037331938744, -0.003658548928797245, 0.9995859861373901, -206.1484832763672], [0.0, 0.0, 0.0, 1.0]], [[-0.819695770740509, -0.5723041296005249, -0.023806588724255562, -25846.775390625], [0.5721069574356079, -0.8200404047966003, 0.01507514901459217, 42372.046875], [-0.028149936348199844, -0.0012628810945898294, 0.9996029138565063, -206.1578826904297], [0.0, 0.0, 0.0, 1.0]], [[-0.8132135272026062, -0.581457257270813, -0.024316933006048203, -25847.296875], [0.5812702775001526, -0.8135744333267212, 0.014886150136590004, 42372.4296875], [-0.028439296409487724, -0.0020290915854275227, 0.9995934963226318, -206.1663360595703], [0.0, 0.0, 0.0, 1.0]], [[-0.8068203330039978, -0.5901538729667664, -0.027555642649531364, -25847.8125], [0.5901250839233398, -0.8072494864463806, 0.010034685023128986, 42372.8046875], [-0.028166286647319794, -0.00816508661955595, 0.9995698928833008, -206.17291259765625], [0.0, 0.0, 0.0, 1.0]], [[-0.800969660282135, -0.5979848504066467, -0.029353827238082886, -25848.318359375], [0.5979864597320557, -0.8014476299285889, 0.009690036997199059, 42373.19140625], [-0.02932005003094673, -0.009791768155992031, 0.9995220899581909, -206.18173217773438], [0.0, 0.0, 0.0, 1.0]], [[-0.7939949631690979, -0.6072880029678345, -0.02780897170305252, -25848.8125], [0.6071938872337341, -0.7944525480270386, 0.01267836894840002, 42373.59375], [-0.02979232929646969, -0.006818879395723343, 0.9995328187942505, -206.1914520263672], [0.0, 0.0, 0.0, 1.0]], [[-0.7850572466850281, -0.6190191507339478, -0.022370634600520134, -25849.291015625], [0.6188592910766602, -0.7853715419769287, 0.014311080798506737, 42374.00390625], [-0.026428092271089554, -0.0026092585176229477, 0.999647319316864, -206.20018005371094], [0.0, 0.0, 0.0, 1.0]], [[-0.7752206325531006, -0.6315377950668335, -0.013891609385609627, -25849.755859375], [0.6314505934715271, -0.7753449082374573, 0.010518020018935204, 42374.41015625], [-0.017413314431905746, -0.000618078513070941, 0.9998481869697571, -206.2041778564453], [0.0, 0.0, 0.0, 1.0]], [[-0.7653115391731262, -0.6435787081718445, -0.010233653709292412, -25850.21484375], [0.6435286402702332, -0.7653799057006836, 0.008034056052565575, 42374.82421875], [-0.013003179803490639, -0.0004370941314846277, 0.999915361404419, -206.2043914794922], [0.0, 0.0, 0.0, 1.0]], [[-0.7555636167526245, -0.6549516320228577, -0.012728741392493248, -25850.677734375], [0.6548964381217957, -0.7556687593460083, 0.00868530385196209, 42375.2421875], [-0.015307165682315826, -0.0017737088492140174, 0.9998812675476074, -206.2029266357422], [0.0, 0.0, 0.0, 1.0]], [[-0.7456573843955994, -0.6660857200622559, -0.01802210696041584, -25851.142578125], [0.6660261154174805, -0.7458613514900208, 0.010005835443735123, 42375.671875], [-0.020106738433241844, -0.004542268812656403, 0.9997875094413757, -206.20433044433594], [0.0, 0.0, 0.0, 1.0]], [[-0.7352592349052429, -0.6775185465812683, -0.019043106585741043, -25851.58984375], [0.677409291267395, -0.7354970574378967, 0.012679288163781166, 42376.109375], [-0.02259659953415394, -0.0035774146672338247, 0.9997382760047913, -206.20819091796875], [0.0, 0.0, 0.0, 1.0]], [[-0.7244007587432861, -0.6891387104988098, -0.018206100910902023, -25852.021484375], [0.6890454292297363, -0.7246192097663879, 0.011978130787611008, 42376.546875], [-0.021447082981467247, -0.00386786344461143, 0.9997624754905701, -206.21240234375], [0.0, 0.0, 0.0, 1.0]], [[-0.7129982113838196, -0.7010093331336975, -0.014815893955528736, -25852.443359375], [0.7009174823760986, -0.7131488919258118, 0.011550829745829105, 42376.98828125], [-0.018663177266716957, -0.002148998901247978, 0.9998235106468201, -206.21510314941406], [0.0, 0.0, 0.0, 1.0]], [[-0.7010157704353333, -0.7130088210105896, -0.013975257985293865, -25852.853515625], [0.7129687666893005, -0.7011438012123108, 0.008539806120097637, 42377.43359375], [-0.01588762179017067, -0.0039773848839104176, 0.9998658895492554, -206.2158203125], [0.0, 0.0, 0.0, 1.0]], [[-0.6876766681671143, -0.7258488535881042, -0.015624204650521278, -25853.263671875], [0.7258409857749939, -0.6878246665000916, 0.007222483400255442, 42377.8828125], [-0.015989145264029503, -0.0063739558681845665, 0.9998518228530884, -206.21597290039062], [0.0, 0.0, 0.0, 1.0]], [[-0.6737317442893982, -0.7387521266937256, -0.01818586327135563, -25853.662109375], [0.738756537437439, -0.6739274263381958, 0.007784060202538967, 42378.34375], [-0.018006443977355957, -0.008190557360649109, 0.9998043179512024, -206.21609497070312], [0.0, 0.0, 0.0, 1.0]], [[-0.6596134305000305, -0.7513155341148376, -0.020858364179730415, -25854.046875], [0.7513532638549805, -0.6598567366600037, 0.007568711880594492, 42378.8125], [-0.019450021907687187, -0.010679580271244049, 0.9997537732124329, -206.2173614501953], [0.0, 0.0, 0.0, 1.0]], [[-0.6443963646888733, -0.7643618583679199, -0.022458015009760857, -25854.421875], [0.764411449432373, -0.6446774005889893, 0.00813852995634079, 42379.28125], [-0.02069895714521408, -0.011922726407647133, 0.9997146725654602, -206.22030639648438], [0.0, 0.0, 0.0, 1.0]], [[-0.6279848217964172, -0.7779192328453064, -0.021833982318639755, -25854.77734375], [0.7779242992401123, -0.6282753348350525, 0.010202446952462196, 42379.76171875], [-0.02165442891418934, -0.01057820301502943, 0.9997095465660095, -206.22377014160156], [0.0, 0.0, 0.0, 1.0]], [[-0.6107721924781799, -0.7916426062583923, -0.01610397733747959, -25855.111328125], [0.7915907502174377, -0.6109541654586792, 0.010916567407548428, 42380.24609375], [-0.018480811268091202, -0.006080223713070154, 0.9998107552528381, -206.22682189941406], [0.0, 0.0, 0.0, 1.0]], [[-0.5916749238967896, -0.8061432242393494, -0.00733858672901988, -25855.455078125], [0.806097686290741, -0.591719925403595, 0.008604087866842747, 42380.78125], [-0.011278515681624413, -0.000824794580694288, 0.999936044216156, -206.22775268554688], [0.0, 0.0, 0.0, 1.0]], [[-0.5732331275939941, -0.8193821310997009, -0.004098220728337765, -25855.76171875], [0.81937175989151, -0.5732470154762268, 0.004228639416396618, 42381.2734375], [-0.005814164411276579, -0.0009339707321487367, 0.9999826550483704, -206.22340393066406], [0.0, 0.0, 0.0, 1.0]], [[-0.5536569356918335, -0.8327358961105347, -0.0038753284607082605, -25856.06640625], [0.8327389359474182, -0.5536645650863647, 0.0011864944826811552, 42381.765625], [-0.0031336687970906496, -0.002570226788520813, 0.9999918341636658, -206.21633911132812], [0.0, 0.0, 0.0, 1.0]], [[-0.534777045249939, -0.8449881672859192, -0.002919065300375223, -25856.3515625], [0.844982385635376, -0.5347844362258911, 0.0032174072694033384, 42382.26953125], [-0.0042797415517270565, -0.00074596400372684, 0.9999905228614807, -206.20909118652344], [0.0, 0.0, 0.0, 1.0]], [[-0.516168475151062, -0.8564158082008362, -0.01105003897100687, -25856.634765625], [0.8563699722290039, -0.516268253326416, 0.009876301512122154, 42382.78515625], [-0.014163006097078323, -0.004365087021142244, 0.9998902082443237, -206.20416259765625], [0.0, 0.0, 0.0, 1.0]], [[-0.49684619903564453, -0.8677327036857605, -0.013557493686676025, -25856.90625], [0.867481529712677, -0.49702927470207214, 0.020920205861330032, 42383.3046875], [-0.02489161677658558, -0.0013667527819052339, 0.9996891617774963, -206.20779418945312], [0.0, 0.0, 0.0, 1.0]], [[-0.47758910059928894, -0.8785465955734253, -0.008037865161895752, -25857.1484375], [0.8782256841659546, -0.4776357114315033, 0.024164604023098946, 42383.828125], [-0.025068901479244232, 0.004481691401451826, 0.9996756315231323, -206.21514892578125], [0.0, 0.0, 0.0, 1.0]], [[-0.4582332372665405, -0.888811469078064, -0.00604152912274003, -25857.376953125], [0.8886071443557739, -0.458259642124176, 0.01937723532319069, 42384.33984375], [-0.019991297274827957, 0.0035107468720525503, 0.9997939467430115, -206.21922302246094], [0.0, 0.0, 0.0, 1.0]], [[-0.43841472268104553, -0.8987703323364258, -0.0021016548853367567, -25857.6015625], [0.8986523151397705, -0.4383930265903473, 0.015348020009696484, 42384.8515625], [-0.01471569575369358, 0.004840140230953693, 0.9998799562454224, -206.22010803222656], [0.0, 0.0, 0.0, 1.0]], [[-0.41879773139953613, -0.9080686569213867, -0.004448609426617622, -25857.818359375], [0.9080165028572083, -0.4188213646411896, 0.009732785634696484, 42385.37109375], [-0.010701209306716919, 3.665783879114315e-05, 0.9999427795410156, -206.21786499023438], [0.0, 0.0, 0.0, 1.0]], [[-0.3985494077205658, -0.9171257019042969, -0.006234403699636459, -25858.029296875], [0.9171158075332642, -0.39858266711235046, 0.005518494639545679, 42385.8984375], [-0.007546079345047474, -0.0035182777792215347, 0.9999653697013855, -206.21302795410156], [0.0, 0.0, 0.0, 1.0]], [[-0.3784773051738739, -0.92557692527771, -0.007888964377343655, -25858.228515625], [0.9255497455596924, -0.3785364329814911, 0.008242689073085785, 42386.44140625], [-0.010615503415465355, -0.004181958734989166, 0.9999349117279053, -206.209716796875], [0.0, 0.0, 0.0, 1.0]], [[-0.35881882905960083, -0.9333362579345703, -0.011508817784488201, -25858.41796875], [0.933270275592804, -0.3589501678943634, 0.012704535387456417, 42387.0], [-0.01598869450390339, -0.006182211916893721, 0.9998530149459839, -206.20697021484375], [0.0, 0.0, 0.0, 1.0]], [[-0.33842942118644714, -0.9409332275390625, -0.010500396601855755, -25858.59765625], [0.9407559633255005, -0.3385733664035797, 0.0186068844050169, 42387.57421875], [-0.02106298878788948, -0.0035811953712254763, 0.9997717142105103, -206.20980834960938], [0.0, 0.0, 0.0, 1.0]], [[-0.3180603086948395, -0.9480205774307251, -0.009732028469443321, -25858.76171875], [0.947796642780304, -0.31819841265678406, 0.020768841728568077, 42388.15234375], [-0.022786004468798637, -0.0026182401925325394, 0.9997369050979614, -206.21449279785156], [0.0, 0.0, 0.0, 1.0]], [[-0.2981879711151123, -0.9544640779495239, -0.009068909101188183, -25858.919921875], [0.9542531967163086, -0.29831433296203613, 0.020235253497958183, 42388.734375], [-0.02201920747756958, -0.0026201263535767794, 0.9997541308403015, -206.2183074951172], [0.0, 0.0, 0.0, 1.0]], [[-0.27984368801116943, -0.9600104093551636, -0.008218787610530853, -25859.0703125], [0.9597930312156677, -0.279956191778183, 0.020538482815027237, 42389.32421875], [-0.022018056362867355, -0.0021407718304544687, 0.9997552633285522, -206.22230529785156], [0.0, 0.0, 0.0, 1.0]], [[-0.2640937864780426, -0.9644772410392761, -0.006179652642458677, -25859.2109375], [0.9642071723937988, -0.26416608691215515, 0.02282032184302807, 42389.9296875], [-0.02364213392138481, 6.823967123636976e-05, 0.9997204542160034, -206.2278594970703], [0.0, 0.0, 0.0, 1.0]], [[-0.250769704580307, -0.9680365324020386, -0.004468920640647411, -25859.34765625], [0.9676703810691833, -0.2507982850074768, 0.026724383234977722, 42390.55078125], [-0.026990976184606552, 0.0023772232234477997, 0.9996328353881836, -206.23410034179688], [0.0, 0.0, 0.0, 1.0]], [[-0.23960985243320465, -0.9708570241928101, -0.004883428104221821, -25859.48828125], [0.970496654510498, -0.23965418338775635, 0.026498954743146896, 42391.171875], [-0.02689702995121479, 0.0016100594075396657, 0.9996368885040283, -206.24195861816406], [0.0, 0.0, 0.0, 1.0]], [[-0.2305305004119873, -0.9730300903320312, -0.008259089663624763, -25859.6328125], [0.9728180766105652, -0.23065491020679474, 0.020574869588017464, 42391.7890625], [-0.02192496508359909, -0.003291457425802946, 0.9997541904449463, -206.24716186523438], [0.0, 0.0, 0.0, 1.0]], [[-0.22128477692604065, -0.9751718640327454, -0.008539018221199512, -25859.771484375], [0.9750782251358032, -0.22139009833335876, 0.01445463951677084, 42392.41796875], [-0.015986211597919464, -0.005127619486302137, 0.9998590350151062, -206.2489776611328], [0.0, 0.0, 0.0, 1.0]], [[-0.21115171909332275, -0.9774017333984375, -0.010044438764452934, -25859.90234375], [0.9773588180541992, -0.21126309037208557, 0.011738050729036331, 42393.05859375], [-0.013594809919595718, -0.007338511757552624, 0.9998806715011597, -206.248291015625], [0.0, 0.0, 0.0, 1.0]], [[-0.20044955611228943, -0.9796490669250488, -0.010382231324911118, -25860.025390625], [0.9796285629272461, -0.20055440068244934, 0.01028573140501976, 42393.71484375], [-0.012158608995378017, -0.008108961395919323, 0.9998931884765625, -206.24609375], [0.0, 0.0, 0.0, 1.0]], [[-0.19045980274677277, -0.9815266728401184, -0.01818077825009823, -25860.158203125], [0.9815782308578491, -0.19069021940231323, 0.011900268495082855, 42394.38671875], [-0.01514732651412487, -0.015579331666231155, 0.9997639060020447, -206.2427978515625], [0.0, 0.0, 0.0, 1.0]], [[-0.18176445364952087, -0.9831394553184509, -0.01996420882642269, -25860.28515625], [0.983151376247406, -0.182091623544693, 0.016002152115106583, 42395.06640625], [-0.019367661327123642, -0.016719216480851173, 0.9996726512908936, -206.2443389892578], [0.0, 0.0, 0.0, 1.0]], [[-0.17575646936893463, -0.9842687249183655, -0.018022233620285988, -25860.39453125], [0.9842487573623657, -0.17604878544807434, 0.016157466918230057, 42395.75], [-0.01907608099281788, -0.01489858329296112, 0.999707043170929, -206.24783325195312], [0.0, 0.0, 0.0, 1.0]], [[-0.1714969426393509, -0.985105037689209, -0.012529573403298855, -25860.494140625], [0.9850713014602661, -0.17165623605251312, 0.012985968962311745, 42396.44140625], [-0.014943323098123074, -0.010115469805896282, 0.9998371601104736, -206.25038146972656], [0.0, 0.0, 0.0, 1.0]], [[-0.16788426041603088, -0.9857770800590515, -0.007639489136636257, -25860.603515625], [0.9857409596443176, -0.16795752942562103, 0.010248959064483643, 42397.13671875], [-0.011386299505829811, -0.00580991804599762, 0.9999182820320129, -206.24990844726562], [0.0, 0.0, 0.0, 1.0]], [[-0.16603000462055206, -0.9860545992851257, -0.011420238763093948, -25860.724609375], [0.9860723614692688, -0.16612543165683746, 0.007980208843946457, 42397.84375], [-0.009766113013029099, -0.009936229325830936, 0.9999029636383057, -206.24545288085938], [0.0, 0.0, 0.0, 1.0]], [[-0.16589787602424622, -0.9860426783561707, -0.014064355753362179, -25860.849609375], [0.9860464334487915, -0.1660642921924591, 0.011623752303421497, 42398.5625], [-0.013797101564705372, -0.011939752846956253, 0.9998335242271423, -206.24264526367188], [0.0, 0.0, 0.0, 1.0]], [[-0.1655033379793167, -0.9860937595367432, -0.015094975009560585, -25860.97265625], [0.98603755235672, -0.1657407134771347, 0.01612141914665699, 42399.29296875], [-0.018399082124233246, -0.012216064147651196, 0.9997560977935791, -206.24375915527344], [0.0, 0.0, 0.0, 1.0]], [[-0.16502858698368073, -0.9861727952957153, -0.01513126865029335, -25861.095703125], [0.9860775470733643, -0.16529130935668945, 0.018161453306674957, 42400.02734375], [-0.020411398261785507, -0.01192344818264246, 0.9997205138206482, -206.24685668945312], [0.0, 0.0, 0.0, 1.0]], [[-0.16545405983924866, -0.9861433506011963, -0.012099132873117924, -25861.212890625], [0.9860531091690063, -0.16563807427883148, 0.016229692846536636, 42400.765625], [-0.018008878454566002, -0.009245119988918304, 0.9997950792312622, -206.25111389160156], [0.0, 0.0, 0.0, 1.0]], [[-0.16612638533115387, -0.9860382676124573, -0.011433003470301628, -25861.3359375], [0.9859619736671448, -0.16628828644752502, 0.015070848166942596, 42401.5078125], [-0.01676160655915737, -0.008768841624259949, 0.9998210668563843, -206.25218200683594], [0.0, 0.0, 0.0, 1.0]], [[-0.1664905846118927, -0.9859665036201477, -0.012289425358176231, -25861.46484375], [0.9858587384223938, -0.1666874885559082, 0.01725699007511139, 42402.265625], [-0.019063306972384453, -0.009242511354386806, 0.9997755885124207, -206.25473022460938], [0.0, 0.0, 0.0, 1.0]], [[-0.16663438081741333, -0.9859046339988708, -0.01500333845615387, -25861.599609375], [0.9857391715049744, -0.16693015396595, 0.02127242460846901, 42403.03125], [-0.023477092385292053, -0.01124466210603714, 0.9996611475944519, -206.25860595703125], [0.0, 0.0, 0.0, 1.0]], [[-0.1668984293937683, -0.9858427047729492, -0.01609734445810318, -25861.732421875], [0.985644519329071, -0.16724249720573425, 0.023126821964979172, 42403.8046875], [-0.025491569191217422, -0.012006430886685848, 0.9996029138565063, -206.2667694091797], [0.0, 0.0, 0.0, 1.0]], [[-0.16736328601837158, -0.9857524037361145, -0.016784649342298508, -25861.86328125], [0.9856064915657043, -0.1677020937204361, 0.021353794261813164, 42404.578125], [-0.023864373564720154, -0.012969216331839561, 0.9996311068534851, -206.2742462158203], [0.0, 0.0, 0.0, 1.0]], [[-0.1676531285047531, -0.9857050180435181, -0.016675997525453568, -25861.99609375], [0.9856483936309814, -0.16793428361415863, 0.017189333215355873, 42405.35546875], [-0.019744083285331726, -0.013554822653532028, 0.9997131824493408, -206.27984619140625], [0.0, 0.0, 0.0, 1.0]], [[-0.16793914139270782, -0.9856571555137634, -0.01662764884531498, -25862.1328125], [0.9856765866279602, -0.16815871000289917, 0.012819726951420307, 42406.1328125], [-0.015431939624249935, -0.014236549846827984, 0.9997795820236206, -206.2812042236328], [0.0, 0.0, 0.0, 1.0]], [[-0.16772837936878204, -0.9856675863265991, -0.018074173480272293, -25862.267578125], [0.985718309879303, -0.16796058416366577, 0.0121908625587821, 42406.91796875], [-0.015051887370646, -0.01577129028737545, 0.9997623562812805, -206.28065490722656], [0.0, 0.0, 0.0, 1.0]], [[-0.1670512706041336, -0.985763430595398, -0.01909070461988449, -25862.404296875], [0.9858167171478271, -0.16731400787830353, 0.013100630603730679, 42407.703125], [-0.016108263283967972, -0.016631457954645157, 0.9997318983078003, -206.28131103515625], [0.0, 0.0, 0.0, 1.0]], [[-0.16562843322753906, -0.9859976172447205, -0.019386325031518936, -25862.537109375], [0.9860438108444214, -0.1659085899591446, 0.013853185810148716, 42408.48828125], [-0.01687556691467762, -0.01682128757238388, 0.9997161030769348, -206.28250122070312], [0.0, 0.0, 0.0, 1.0]], [[-0.16460655629634857, -0.9861915111541748, -0.01819237694144249, -25862.6640625], [0.9862385392189026, -0.16484704613685608, 0.012610724195837975, 42409.26953125], [-0.015435547567903996, -0.015866216272115707, 0.9997549653053284, -206.28323364257812], [0.0, 0.0, 0.0, 1.0]], [[-0.16415587067604065, -0.9862931370735168, -0.016694189980626106, -25862.7890625], [0.9863457679748535, -0.16434454917907715, 0.010630249045789242, 42410.046875], [-0.013228139840066433, -0.014721226878464222, 0.9998040795326233, -206.28282165527344], [0.0, 0.0, 0.0, 1.0]], [[-0.16407454013824463, -0.9864020347595215, -0.009520037099719048, -25862.90625], [0.986365795135498, -0.1641777902841568, 0.011323468759655952, 42410.82421875], [-0.012732469476759434, -0.007532346528023481, 0.9998905658721924, -206.282958984375], [0.0, 0.0, 0.0, 1.0]], [[-0.1640232801437378, -0.9864341020584106, -0.0066483584232628345, -25863.0234375], [0.9863693714141846, -0.16409464180469513, 0.012183266691863537, 42411.6015625], [-0.013108949176967144, -0.004559398163110018, 0.999903678894043, -206.2815399169922], [0.0, 0.0, 0.0, 1.0]], [[-0.16349193453788757, -0.9865355491638184, -0.004254861269146204, -25863.146484375], [0.9864346981048584, -0.16353657841682434, 0.014227966777980328, 42412.37890625], [-0.014732220210134983, -0.0018709857249632478, 0.9998896718025208, -206.2810516357422], [0.0, 0.0, 0.0, 1.0]], [[-0.1628415584564209, -0.9866462349891663, -0.0034482835326343775, -25863.271484375], [0.9865085482597351, -0.16287650167942047, 0.016497043892741203, 42413.1484375], [-0.01683839038014412, -0.0007153564947657287, 0.9998579621315002, -206.2823028564453], [0.0, 0.0, 0.0, 1.0]], [[-0.16258253157138824, -0.9866933822631836, -0.0017838568892329931, -25863.390625], [0.9865362644195557, -0.16258853673934937, 0.01764138601720333, 42413.921875], [-0.017696673050522804, 0.00110834080260247, 0.9998427629470825, -206.28463745117188], [0.0, 0.0, 0.0, 1.0]], [[-0.16194456815719604, -0.9867998957633972, -0.0001450374984415248, -25863.51171875], [0.9866325855255127, -0.16191981732845306, 0.01839098148047924, 42414.6875], [-0.018171701580286026, 0.002835219958797097, 0.9998308420181274, -206.2873992919922], [0.0, 0.0, 0.0, 1.0]], [[-0.16084431111812592, -0.9869773387908936, 0.00223080744035542, -25863.62890625], [0.9868000745773315, -0.1607714742422104, 0.01944838836789131, 42415.453125], [-0.01883646659553051, 0.005329522769898176, 0.9998083710670471, -206.29046630859375], [0.0, 0.0, 0.0, 1.0]], [[-0.16008946299552917, -0.9870993494987488, 0.002515532774850726, -25863.75], [0.9868720769882202, -0.15999650955200195, 0.02201344445347786, 42416.21875], [-0.021326979622244835, 0.00600662874057889, 0.9997544884681702, -206.29434204101562], [0.0, 0.0, 0.0, 1.0]], [[-0.15971916913986206, -0.9871573448181152, 0.003199369180947542, -25863.869140625], [0.9868934154510498, -0.15959912538528442, 0.023866979405283928, 42416.98046875], [-0.023049848154187202, 0.0069694495759904385, 0.9997100234031677, -206.300048828125], [0.0, 0.0, 0.0, 1.0]], [[-0.15917173027992249, -0.9872404336929321, 0.004553594626486301, -25863.98828125], [0.9869840741157532, -0.15901979804039001, 0.02398066408932209, 42417.734375], [-0.022950569167733192, 0.008311368525028229, 0.9997020363807678, -206.30694580078125], [0.0, 0.0, 0.0, 1.0]], [[-0.15860456228256226, -0.9873315095901489, 0.004597315099090338, -25864.10546875], [0.9870798587799072, -0.15845337510108948, 0.023788699880242348, 42418.4921875], [-0.02275887131690979, 0.008310913108289242, 0.9997063875198364, -206.31263732910156], [0.0, 0.0, 0.0, 1.0]], [[-0.1581277847290039, -0.9874097108840942, 0.004209202714264393, -25864.224609375], [0.9872066974639893, -0.1580040603876114, 0.021394846960902214, 42419.2421875], [-0.02046041004359722, 0.007538472302258015, 0.999762237071991, -206.31805419921875], [0.0, 0.0, 0.0, 1.0]], [[-0.1578391194343567, -0.9874575138092041, 0.003820518497377634, -25864.34375], [0.9872871041297913, -0.15773609280586243, 0.019585005939006805, 42419.98828125], [-0.01873672753572464, 0.006863228045403957, 0.9998009204864502, -206.3213653564453], [0.0, 0.0, 0.0, 1.0]], [[-0.15753819048404694, -0.9875089526176453, 0.002786120632663369, -25864.4609375], [0.9872989058494568, -0.15744468569755554, 0.02126418799161911, 42420.73828125], [-0.020559918135404587, 0.0061006550677120686, 0.9997700452804565, -206.32415771484375], [0.0, 0.0, 0.0, 1.0]], [[-0.15715114772319794, -0.987571656703949, 0.0024087706115096807, -25864.578125], [0.9873054623603821, -0.15705092251300812, 0.023725200444459915, 42421.48046875], [-0.02305203676223755, 0.0061066341586411, 0.9997156262397766, -206.32904052734375], [0.0, 0.0, 0.0, 1.0]], [[-0.15658117830753326, -0.9876622557640076, 0.0023694129195064306, -25864.6953125], [0.9873731732368469, -0.15647614002227783, 0.024685584008693695, 42422.22265625], [-0.02401026152074337, 0.006204791832715273, 0.999692440032959, -206.33653259277344], [0.0, 0.0, 0.0, 1.0]], [[-0.15618056058883667, -0.9877282977104187, 0.0007644101860933006, -25864.810546875], [0.9874791502952576, -0.15612368285655975, 0.022590549662709236, 42422.94921875], [-0.02219398133456707, 0.004283043555915356, 0.9997444748878479, -206.34165954589844], [0.0, 0.0, 0.0, 1.0]], [[-0.15568611025810242, -0.9878063201904297, -0.0007454975275322795, -25864.927734375], [0.9875964522361755, -0.15566851198673248, 0.02051139436662197, 42423.671875], [-0.02037733420729637, 0.0024570876266807318, 0.9997893571853638, -206.34580993652344], [0.0, 0.0, 0.0, 1.0]], [[-0.1554921269416809, -0.9878368377685547, -0.0007961216033436358, -25865.041015625], [0.9875497817993164, -0.15546627342700958, 0.02399482950568199, 42424.39453125], [-0.02382674627006054, 0.002944797044619918, 0.9997117519378662, -206.35118103027344], [0.0, 0.0, 0.0, 1.0]], [[-0.15566308796405792, -0.9878095388412476, -0.001180538791231811, -25865.1484375], [0.987335205078125, -0.15562519431114197, 0.03082156553864479, 42425.109375], [-0.030629558488726616, 0.0036321922671049833, 0.9995241761207581, -206.35984802246094], [0.0, 0.0, 0.0, 1.0]], [[-0.15525782108306885, -0.9878713488578796, -0.0022938561160117388, -25865.2578125], [0.9872792959213257, -0.15524451434612274, 0.03433256223797798, 42425.81640625], [-0.03427226096391678, 0.003065721830353141, 0.9994077682495117, -206.37255859375], [0.0, 0.0, 0.0, 1.0]], [[-0.15393194556236267, -0.9880788922309875, -0.0022622921969741583, -25865.3671875], [0.9874836206436157, -0.1539180725812912, 0.03443032130599022, 42426.50390625], [-0.03436807915568352, 0.0030659500043839216, 0.9994044899940491, -206.38671875], [0.0, 0.0, 0.0, 1.0]], [[-0.15267328917980194, -0.988265335559845, -0.004756290465593338, -25865.47265625], [0.98780757188797, -0.15274731814861298, 0.030073512345552444, 42427.17578125], [-0.03044711984694004, -0.00010687897156458348, 0.9995363354682922, -206.39749145507812], [0.0, 0.0, 0.0, 1.0]], [[-0.15111547708511353, -0.9885137677192688, -0.002177829621359706, -25865.5703125], [0.9882774353027344, -0.15112704038619995, 0.021642033010721207, 42427.8359375], [-0.021722575649619102, 0.001118146232329309, 0.9997633695602417, -206.40487670898438], [0.0, 0.0, 0.0, 1.0]], [[-0.15035951137542725, -0.9886289238929749, -0.002234424464404583, -25865.666015625], [0.9884944558143616, -0.15037591755390167, 0.01630198210477829, 42428.484375], [-0.016452614217996597, 0.00024244195083156228, 0.9998646378517151, -206.40771484375], [0.0, 0.0, 0.0, 1.0]], [[-0.15027521550655365, -0.9886430501937866, -0.0015408479375764728, -25865.759765625], [0.9885105490684509, -0.15028032660484314, 0.01621180772781372, 42429.1328125], [-0.016259249299764633, 0.0009130883263424039, 0.9998673796653748, -206.40843200683594], [0.0, 0.0, 0.0, 1.0]], [[-0.1498965173959732, -0.9887005686759949, -0.001476399484090507, -25865.859375], [0.9885416030883789, -0.149898961186409, 0.017771795392036438, 42429.78125], [-0.017792295664548874, 0.0012044472387060523, 0.9998409748077393, -206.4097900390625], [0.0, 0.0, 0.0, 1.0]], [[-0.14941073954105377, -0.9887729287147522, -0.0021469269413501024, -25865.955078125], [0.9885631799697876, -0.149423286318779, 0.020385032519698143, 42430.41796875], [-0.020476968958973885, 0.0009233688469976187, 0.9997898936271667, -206.4119415283203], [0.0, 0.0, 0.0, 1.0]], [[-0.14988435804843903, -0.9887012243270874, -0.0021467097103595734, -25866.05078125], [0.9884793758392334, -0.14989623427391052, 0.020966967567801476, 42431.046875], [-0.02105185016989708, 0.0010206411825492978, 0.9997778534889221, -206.41583251953125], [0.0, 0.0, 0.0, 1.0]], [[-0.1507176011800766, -0.9885706305503845, -0.0035015216562896967, -25866.14453125], [0.9883647561073303, -0.15075768530368805, 0.02018304541707039, 42431.66796875], [-0.02048024907708168, -0.0004188403836451471, 0.9997901320457458, -206.41893005371094], [0.0, 0.0, 0.0, 1.0]], [[-0.15120868384838104, -0.9884991645812988, -0.0023359120823442936, -25866.23828125], [0.9882817268371582, -0.15122444927692413, 0.02074596658349037, 42432.2734375], [-0.020860616117715836, 0.0008284306386485696, 0.9997820258140564, -206.42254638671875], [0.0, 0.0, 0.0, 1.0]], [[-0.15346986055374146, -0.9881482720375061, -0.0031628378201276064, -25866.33203125], [0.9879165887832642, -0.15350235998630524, 0.021397164091467857, 42432.87109375], [-0.021629072725772858, 0.00015919945144560188, 0.9997659921646118, -206.42672729492188], [0.0, 0.0, 0.0, 1.0]], [[-0.15858574211597443, -0.9873402118682861, 0.0031524975784122944, -25866.421875], [0.9871448874473572, -0.1584884375333786, 0.0206492617726326, 42433.4609375], [-0.01988821104168892, 0.006386650260537863, 0.9997817873954773, -206.43113708496094], [0.0, 0.0, 0.0, 1.0]], [[-0.16803418099880219, -0.9857432246208191, 0.008645763620734215, -25866.51171875], [0.9856051802635193, -0.16783201694488525, 0.020369190722703934, 42434.03515625], [-0.01862775720655918, 0.011944029480218887, 0.9997551441192627, -206.4353485107422], [0.0, 0.0, 0.0, 1.0]], [[-0.18178047239780426, -0.9832608103752136, 0.012417115271091461, -25866.619140625], [0.9831822514533997, -0.18151144683361053, 0.02015412412583828, 42434.59765625], [-0.01756291091442108, 0.015871914103627205, 0.9997197389602661, -206.43785095214844], [0.0, 0.0, 0.0, 1.0]], [[-0.19953553378582, -0.9797546863555908, 0.016319477930665016, -25866.744140625], [0.9797612428665161, -0.19921091198921204, 0.019569596275687218, 42435.14453125], [-0.015922386199235916, 0.01989402063190937, 0.9996753334999084, -206.43951416015625], [0.0, 0.0, 0.0, 1.0]], [[-0.22061173617839813, -0.9752434492111206, 0.015189878642559052, -25866.884765625], [0.9752731323242188, -0.22035503387451172, 0.016911858692765236, 42435.67578125], [-0.013146012090146542, 0.018545234575867653, 0.9997415542602539, -206.4381866455078], [0.0, 0.0, 0.0, 1.0]], [[-0.24443267285823822, -0.9694991707801819, 0.01800127699971199, -25867.04296875], [0.9696130156517029, -0.24418248236179352, 0.015020795166492462, 42436.19921875], [-0.010167052038013935, 0.02112584374845028, 0.9997251033782959, -206.436767578125], [0.0, 0.0, 0.0, 1.0]], [[-0.27159398794174194, -0.9622137546539307, 0.01953057013452053, -25867.2109375], [0.9623865485191345, -0.27138328552246094, 0.0127834752202034, 42436.70703125], [-0.0070001655258238316, 0.022267872467637062, 0.9997275471687317, -206.4329833984375], [0.0, 0.0, 0.0, 1.0]], [[-0.3008219599723816, -0.9534661173820496, 0.02021239884197712, -25867.400390625], [0.9536494612693787, -0.30057424306869507, 0.014413570985198021, 42437.21484375], [-0.00766752427443862, 0.023611463606357574, 0.9996917843818665, -206.4290771484375], [0.0, 0.0, 0.0, 1.0]], [[-0.3327157497406006, -0.9427210092544556, 0.024028323590755463, -25867.60546875], [0.9429776668548584, -0.3323290944099426, 0.018723631277680397, 42437.70703125], [-0.00966584961861372, 0.02888781949877739, 0.9995359182357788, -206.4254913330078], [0.0, 0.0, 0.0, 1.0]], [[-0.36701491475105286, -0.9299376010894775, 0.02272142469882965, -25867.830078125], [0.9301368594169617, -0.3665578067302704, 0.02192666567862034, 42438.19140625], [-0.012061716057360172, 0.029181450605392456, 0.9995013475418091, -206.42318725585938], [0.0, 0.0, 0.0, 1.0]], [[-0.4018588364124298, -0.9154742956161499, 0.020402057096362114, -25868.080078125], [0.9156076312065125, -0.401398628950119, 0.023276345804333687, 42438.65625], [-0.013119539245963097, 0.028034085407853127, 0.9995208382606506, -206.4207000732422], [0.0, 0.0, 0.0, 1.0]], [[-0.43705496191978455, -0.8992836475372314, 0.016489559784531593, -25868.3515625], [0.8993122577667236, -0.4366191625595093, 0.02452155575156212, 42439.10546875], [-0.014852175489068031, 0.02554653026163578, 0.9995632767677307, -206.418212890625], [0.0, 0.0, 0.0, 1.0]], [[-0.47272899746894836, -0.881155788898468, 0.009577636606991291, -25868.64453125], [0.8810330629348755, -0.4723908305168152, 0.025052711367607117, 42439.53515625], [-0.017550954595208168, 0.020281357690691948, 0.9996402859687805, -206.41705322265625], [0.0, 0.0, 0.0, 1.0]], [[-0.5080769658088684, -0.8612586259841919, 0.009563389234244823, -25868.9453125], [0.8611592054367065, -0.5077467560768127, 0.024456817656755447, 42439.94921875], [-0.0162078645080328, 0.020661547780036926, 0.9996551275253296, -206.41700744628906], [0.0, 0.0, 0.0, 1.0]], [[-0.5437870621681213, -0.8391008377075195, 0.01433452870696783, -25869.248046875], [0.8391144871711731, -0.5433623790740967, 0.025382068008184433, 42440.3515625], [-0.013509269803762436, 0.025830751284956932, 0.9995750188827515, -206.4171600341797], [0.0, 0.0, 0.0, 1.0]], [[-0.5803886651992798, -0.8141590356826782, 0.01714775525033474, -25869.5703125], [0.8142459988594055, -0.5798740386962891, 0.027379069477319717, 42440.73828125], [-0.012347379699349403, 0.02985299378633499, 0.9994780421257019, -206.41665649414062], [0.0, 0.0, 0.0, 1.0]], [[-0.6125295162200928, -0.7903079390525818, 0.014867433346807957, -25869.8828125], [0.7903189659118652, -0.6119820475578308, 0.029562249779701233, 42441.0703125], [-0.01426467765122652, 0.02985776588320732, 0.9994523525238037, -206.4145965576172], [0.0, 0.0, 0.0, 1.0]], [[-0.6470065712928772, -0.7624257206916809, 0.009459586814045906, -25870.251953125], [0.7622829079627991, -0.6465004682540894, 0.031015492975711823, 42441.41015625], [-0.017531385645270348, 0.027278108522295952, 0.9994741678237915, -206.4134521484375], [0.0, 0.0, 0.0, 1.0]], [[-0.6811943650245667, -0.732102632522583, 0.00023505184799432755, -25870.638671875], [0.7318176031112671, -0.6809200048446655, 0.028123535215854645, 42441.734375], [-0.02042926289141178, 0.019329609349370003, 0.9996044039726257, -206.41246032714844], [0.0, 0.0, 0.0, 1.0]], [[-0.715248703956604, -0.6988389492034912, -0.00658533675596118, -25871.037109375], [0.6984776854515076, -0.7151312232017517, 0.02676461637020111, 42442.03125], [-0.023413537070155144, 0.01454364787787199, 0.9996200203895569, -206.41387939453125], [0.0, 0.0, 0.0, 1.0]], [[-0.7486567497253418, -0.6629149317741394, -0.007546988781541586, -25871.4375], [0.6624993085861206, -0.7485136985778809, 0.028669416904449463, 42442.3125], [-0.024654407054185867, 0.01646367460489273, 0.9995604157447815, -206.4178924560547], [0.0, 0.0, 0.0, 1.0]], [[-0.7804580330848694, -0.6251729130744934, -0.0066420515067875385, -25871.84375], [0.6246317625045776, -0.7801505327224731, 0.034645453095436096, 42442.5859375], [-0.02684120088815689, 0.0228904839605093, 0.9993776082992554, -206.4246368408203], [0.0, 0.0, 0.0, 1.0]], [[-0.8100190162658691, -0.5863873958587646, -0.0043657696805894375, -25872.259765625], [0.5856176018714905, -0.8092960715293884, 0.045738667249679565, 42442.84375], [-0.030353780835866928, 0.03449251502752304, 0.9989439249038696, -206.43199157714844], [0.0, 0.0, 0.0, 1.0]], [[-0.8382025957107544, -0.5453376173973083, -0.004826132673770189, -25872.68359375], [0.5444269776344299, -0.8372544646263123, 0.05103141441941261, 42443.0703125], [-0.03187005594372749, 0.04014718905091286, 0.998685359954834, -206.43988037109375], [0.0, 0.0, 0.0, 1.0]], [[-0.8644755482673645, -0.5026299953460693, -0.006715419702231884, -25873.119140625], [0.5015836358070374, -0.8634015917778015, 0.05432835966348648, 42443.265625], [-0.03310517221689224, 0.04359719902276993, 0.9985005259513855, -206.44618225097656], [0.0, 0.0, 0.0, 1.0]], [[-0.8886732459068298, -0.4583359360694885, -0.013714770786464214, -25873.56640625], [0.45729368925094604, -0.888063907623291, 0.04717160761356354, 42443.4140625], [-0.03380003571510315, 0.035648465156555176, 0.9987926483154297, -206.4505157470703], [0.0, 0.0, 0.0, 1.0]], [[-0.9101701974868774, -0.41394996643066406, -0.015353326685726643, -25874.009765625], [0.4130488634109497, -0.9097436666488647, 0.04191895201802254, 42443.53125], [-0.031319938600063324, 0.031811702996492386, 0.9990030527114868, -206.45529174804688], [0.0, 0.0, 0.0, 1.0]], [[-0.929546058177948, -0.3682788610458374, -0.017744751647114754, -25874.44921875], [0.3675682842731476, -0.9293816685676575, 0.03381219133734703, 42443.62890625], [-0.02894396334886551, 0.024907581508159637, 0.9992706179618835, -206.4580535888672], [0.0, 0.0, 0.0, 1.0]], [[-0.9465766549110413, -0.3220134377479553, -0.017321625724434853, -25874.880859375], [0.32111844420433044, -0.9461512565612793, 0.04099808260798454, 42443.73046875], [-0.02959081158041954, 0.03324553370475769, 0.9990090727806091, -206.4656982421875], [0.0, 0.0, 0.0, 1.0]], [[-0.9593961834907532, -0.28137683868408203, -0.019647905603051186, -25875.26953125], [0.28026607632637024, -0.958820104598999, 0.04598839208483696, 42443.8046875], [-0.03177887573838234, 0.03861444443464279, 0.9987487196922302, -206.4716033935547], [0.0, 0.0, 0.0, 1.0]], [[-0.9709653854370117, -0.23825955390930176, -0.021417368203401566, -25875.6953125], [0.23695862293243408, -0.9702052474021912, 0.05052169784903526, 42443.86328125], [-0.03281651809811592, 0.04397978633642197, 0.9984933137893677, -206.47776794433594], [0.0, 0.0, 0.0, 1.0]], [[-0.9804413914680481, -0.1957259625196457, -0.020642688497900963, -25876.109375], [0.19446247816085815, -0.979552686214447, 0.051584307104349136, 42443.89453125], [-0.030316989868879318, 0.046561162918806076, 0.998455286026001, -206.4831085205078], [0.0, 0.0, 0.0, 1.0]], [[-0.9880693554878235, -0.1527950018644333, -0.019306257367134094, -25876.515625], [0.15179622173309326, -0.987362802028656, 0.04552571102976799, 42443.89453125], [-0.026018382981419563, 0.04205194115638733, 0.9987766146659851, -206.48487854003906], [0.0, 0.0, 0.0, 1.0]], [[-0.9936707615852356, -0.11067277193069458, -0.019233042374253273, -25876.912109375], [0.10993640869855881, -0.9932915568351746, 0.03586093336343765, 42443.8671875], [-0.023072848096489906, 0.033519547432661057, 0.9991717338562012, -206.4835205078125], [0.0, 0.0, 0.0, 1.0]], [[-0.9972503185272217, -0.07174406200647354, -0.01856325753033161, -25877.298828125], [0.0711599662899971, -0.9970011115074158, 0.030415071174502373, 42443.83203125], [-0.020689690485596657, 0.029010480269789696, 0.999364972114563, -206.4834747314453], [0.0, 0.0, 0.0, 1.0]], [[-0.9992266893386841, -0.03684205934405327, -0.013737065717577934, -25877.673828125], [0.03655489161610603, -0.9991193413734436, 0.020600317046046257, 42443.78125], [-0.014483924955129623, 0.020082227885723114, 0.9996933937072754, -206.4813232421875], [0.0, 0.0, 0.0, 1.0]], [[-0.9998975396156311, -0.0022384272888302803, -0.014139795675873756, -25878.04296875], [0.0019102829974144697, -0.9997295141220093, 0.023178141564130783, 42443.74609375], [-0.014187854714691639, 0.023148756474256516, 0.9996313452720642, -206.4810333251953], [0.0, 0.0, 0.0, 1.0]], [[-0.9994352459907532, 0.028651822358369827, -0.01755828782916069, -25878.412109375], [-0.02906280942261219, -0.999298632144928, 0.023616783320903778, 42443.703125], [-0.016869306564331055, 0.024113738909363747, 0.9995668530464172, -206.48123168945312], [0.0, 0.0, 0.0, 1.0]], [[-0.998446524143219, 0.051852259784936905, -0.02039414644241333, -25878.765625], [-0.05239091441035271, -0.9982661604881287, 0.026829717680811882, 42443.65625], [-0.018967606127262115, 0.027856506407260895, 0.9994319677352905, -206.4827117919922], [0.0, 0.0, 0.0, 1.0]], [[-0.9971734881401062, 0.07266329973936081, -0.019106190651655197, -25879.109375], [-0.07312687486410141, -0.9970142841339111, 0.02480028010904789, 42443.6015625], [-0.017247075214982033, 0.02612735703587532, 0.9995098114013672, -206.48292541503906], [0.0, 0.0, 0.0, 1.0]], [[-0.9955570697784424, 0.09281156212091446, -0.015880221500992775, -25879.439453125], [-0.09311336278915405, -0.9954653978347778, 0.01945565827190876, 42443.5390625], [-0.014002500101923943, 0.020847877487540245, 0.9996846318244934, -206.48062133789062], [0.0, 0.0, 0.0, 1.0]], [[-0.9939676523208618, 0.10888262838125229, -0.013145482167601585, -25879.7578125], [-0.10908670723438263, -0.993904173374176, 0.015956809744238853, 42443.47265625], [-0.011327928863465786, 0.01729455031454563, 0.9997862577438354, -206.47933959960938], [0.0, 0.0, 0.0, 1.0]], [[-0.9926426410675049, 0.12063221633434296, -0.010418281890451908, -25880.0703125], [-0.12077194452285767, -0.9925812482833862, 0.014023814350366592, 42443.41796875], [-0.008649267256259918, 0.015178871341049671, 0.9998473525047302, -206.47714233398438], [0.0, 0.0, 0.0, 1.0]], [[-0.991428554058075, 0.13024991750717163, -0.01021300908178091, -25880.376953125], [-0.13039419054985046, -0.9913483262062073, 0.015029211528599262, 42443.3671875], [-0.008167095482349396, 0.01623210683465004, 0.9998348951339722, -206.47445678710938], [0.0, 0.0, 0.0, 1.0]], [[-0.9901462197303772, 0.1395486444234848, -0.011687454767525196, -25880.67578125], [-0.13973362743854523, -0.9900453686714172, 0.0168768260627985, 42443.31640625], [-0.00921596959233284, 0.01834365539252758, 0.9997892379760742, -206.47315979003906], [0.0, 0.0, 0.0, 1.0]], [[-0.9889976382255554, 0.1474204659461975, -0.012286609970033169, -25880.958984375], [-0.14762622117996216, -0.988879919052124, 0.017974436283111572, 42443.26953125], [-0.00950018223375082, 0.019590498879551888, 0.9997629523277283, -206.47164916992188], [0.0, 0.0, 0.0, 1.0]], [[-0.9882359504699707, 0.15255700051784515, -0.01077929325401783, -25881.232421875], [-0.15271934866905212, -0.9881349802017212, 0.016311511397361755, 42443.21484375], [-0.008162961341440678, 0.017765825614333153, 0.9998088479042053, -206.4695281982422], [0.0, 0.0, 0.0, 1.0]], [[-0.987749457359314, 0.15577872097492218, -0.009166410192847252, -25881.490234375], [-0.15589012205600739, -0.9876883029937744, 0.013042805716395378, 42443.16015625], [-0.007021766155958176, 0.014311976730823517, 0.9998729228973389, -206.4666290283203], [0.0, 0.0, 0.0, 1.0]], [[-0.9873450994491577, 0.15830370783805847, -0.00946948491036892, -25881.73828125], [-0.158390074968338, -0.9873338937759399, 0.009191946126520634, 42443.109375], [-0.0078944256529212, 0.010575495660305023, 0.9999129176139832, -206.4638214111328], [0.0, 0.0, 0.0, 1.0]], [[-0.9871256351470947, 0.15951107442378998, -0.011798309162259102, -25881.978515625], [-0.15962161123752594, -0.9871363043785095, 0.009102783165872097, 42443.0703125], [-0.010194545611739159, 0.010868855752050877, 0.9998889565467834, -206.46234130859375], [0.0, 0.0, 0.0, 1.0]], [[-0.9871404767036438, 0.1590977907180786, -0.015545492060482502, -25882.21484375], [-0.1593053787946701, -0.9871415495872498, 0.013170860707759857, 42443.0390625], [-0.013250146061182022, 0.01547796931117773, 0.9997923970222473, -206.46319580078125], [0.0, 0.0, 0.0, 1.0]], [[-0.9872174859046936, 0.15851695835590363, -0.0165549386292696, -25882.43359375], [-0.15877899527549744, -0.9871856570243835, 0.015930229797959328, 42443.015625], [-0.013817586936056614, 0.018355175852775574, 0.9997360706329346, -206.4632110595703], [0.0, 0.0, 0.0, 1.0]], [[-0.9871864318847656, 0.15893684327602386, -0.014213962480425835, -25882.6328125], [-0.15915493667125702, -0.9871270060539246, 0.015810545533895493, 42442.984375], [-0.011518108658492565, 0.017870178446173668, 0.9997739791870117, -206.462646484375], [0.0, 0.0, 0.0, 1.0]], [[-0.9869759678840637, 0.16048134863376617, -0.011140851303935051, -25882.8203125], [-0.16061358153820038, -0.9869418740272522, 0.01220739632844925, 42442.94140625], [-0.009036313742399216, 0.013837779872119427, 0.9998634457588196, -206.460693359375], [0.0, 0.0, 0.0, 1.0]], [[-0.9869638681411743, 0.1606513410806656, -0.009665013290941715, -25883.0], [-0.16071845591068268, -0.9869781732559204, 0.006617309525609016, 42442.8984375], [-0.00847607757896185, 0.008084391243755817, 0.9999313950538635, -206.45863342285156], [0.0, 0.0, 0.0, 1.0]], [[-0.9871691465377808, 0.15940114855766296, -0.00939897634088993, -25883.173828125], [-0.15943685173988342, -0.987203061580658, 0.003176008118316531, 42442.8671875], [-0.008772439323365688, 0.004633800126612186, 0.9999507665634155, -206.45700073242188], [0.0, 0.0, 0.0, 1.0]], [[-0.98719722032547, 0.15921036899089813, -0.009682418778538704, -25883.337890625], [-0.1592469960451126, -0.9872338175773621, 0.003132722107693553, 42442.83984375], [-0.009060048498213291, 0.004634510260075331, 0.9999482035636902, -206.4554443359375], [0.0, 0.0, 0.0, 1.0]], [[-0.9869921207427979, 0.16044582426548004, -0.010182402096688747, -25883.494140625], [-0.16049683094024658, -0.9870266318321228, 0.0044004060328006744, 42442.8203125], [-0.00934427510946989, 0.005977408494800329, 0.9999384880065918, -206.45489501953125], [0.0, 0.0, 0.0, 1.0]], [[-0.9869204759597778, 0.16082856059074402, -0.011055760085582733, -25883.640625], [-0.1609029471874237, -0.9869508147239685, 0.006198398303240538, 42442.796875], [-0.009914609603583813, 0.00789622962474823, 0.9999196529388428, -206.45481872558594], [0.0, 0.0, 0.0, 1.0]], [[-0.9870476722717285, 0.1599690020084381, -0.012121967040002346, -25883.78125], [-0.16005222499370575, -0.9870889186859131, 0.006231141276657581, 42442.7734375], [-0.010968669317662716, 0.008090580813586712, 0.9999071359634399, -206.45443725585938], [0.0, 0.0, 0.0, 1.0]], [[-0.9870660901069641, 0.15976998209953308, -0.013196473941206932, -25883.916015625], [-0.15985523164272308, -0.9871242046356201, 0.0056737991981208324, 42442.75390625], [-0.01212005689740181, 0.00770993996411562, 0.9998968243598938, -206.45318603515625], [0.0, 0.0, 0.0, 1.0]], [[-0.98691725730896, 0.160615012049675, -0.014038107357919216, -25884.04296875], [-0.16070370376110077, -0.9869877696037292, 0.005431271158158779, 42442.734375], [-0.012983094900846481, 0.007616191171109676, 0.999886691570282, -206.45352172851562], [0.0, 0.0, 0.0, 1.0]], [[-0.9868537187576294, 0.16099101305007935, -0.014202519319951534, -25884.158203125], [-0.1610703468322754, -0.986932098865509, 0.004623102489858866, 42442.7109375], [-0.013272644951939583, 0.00684993015602231, 0.9998884797096252, -206.45294189453125], [0.0, 0.0, 0.0, 1.0]], [[-0.9869428277015686, 0.1604211926460266, -0.014453538693487644, -25884.267578125], [-0.16049911081790924, -0.9870261549949646, 0.004396518692374229, 42442.6953125], [-0.01356072723865509, 0.00665889261290431, 0.9998859167098999, -206.45237731933594], [0.0, 0.0, 0.0, 1.0]], [[-0.9869404435157776, 0.16041991114616394, -0.014627709053456783, -25884.369140625], [-0.1604972779750824, -0.9870270490646362, 0.004271568730473518, 42442.6796875], [-0.013752699829638004, 0.006563491187989712, 0.9998838901519775, -206.45266723632812], [0.0, 0.0, 0.0, 1.0]], [[-0.9868653416633606, 0.1608944833278656, -0.014486031606793404, -25884.462890625], [-0.1609751433134079, -0.9869478344917297, 0.004578886553645134, 42442.6640625], [-0.013560240156948566, 0.0068506356328725815, 0.9998846054077148, -206.452392578125], [0.0, 0.0, 0.0, 1.0]], [[-0.9868535995483398, 0.16099010407924652, -0.014221158809959888, -25884.552734375], [-0.1610630601644516, -0.9869354367256165, 0.0041346619836986065, 42442.6484375], [-0.013369726948440075, 0.0063708084635436535, 0.9998902678489685, -206.45208740234375], [0.0, 0.0, 0.0, 1.0]], [[-0.9868984222412109, 0.16070465743541718, -0.014333405531942844, -25884.634765625], [-0.16077153384685516, -0.9869849681854248, 0.003635142929852009, 42442.63671875], [-0.013562670908868313, 0.005891920067369938, 0.9998906254768372, -206.45236206054688], [0.0, 0.0, 0.0, 1.0]], [[-0.986849844455719, 0.16098754107952118, -0.014508550055325031, -25884.708984375], [-0.16105370223522186, -0.9869394302368164, 0.0035059673245996237, 42442.62109375], [-0.013754642568528652, 0.005796518176794052, 0.9998885989189148, -206.45166015625], [0.0, 0.0, 0.0, 1.0]], [[-0.9867905974388123, 0.16136698424816132, -0.01432060357183218, -25884.779296875], [-0.1614324301481247, -0.9868775010108948, 0.0035308804363012314, 42442.609375], [-0.013562913052737713, 0.005796048790216446, 0.9998912215232849, -206.45135498046875], [0.0, 0.0, 0.0, 1.0]], [[-0.98679518699646, 0.16136935353279114, -0.013972500339150429, -25884.841796875], [-0.16143609583377838, -0.9868759512901306, 0.0037811158690601587, 42442.59765625], [-0.01317896880209446, 0.0059868525713682175, 0.9998952150344849, -206.4517822265625], [0.0, 0.0, 0.0, 1.0]], [[-0.9867849349975586, 0.1614672690629959, -0.013560635037720203, -25884.8984375], [-0.16153733432292938, -0.986857533454895, 0.004234574269503355, 42442.59375], [-0.012698669917881489, 0.006369162350893021, 0.9998990893363953, -206.45204162597656], [0.0, 0.0, 0.0, 1.0]], [[-0.9866846203804016, 0.16213838756084442, -0.01283150166273117, -25884.953125], [-0.16222131252288818, -0.9867379069328308, 0.005703394766896963, 42442.5859375], [-0.01173658948391676, 0.007708994671702385, 0.9999014139175415, -206.4516143798828], [0.0, 0.0, 0.0, 1.0]], [[-0.9865891933441162, 0.16281862556934357, -0.01148812286555767, -25885.01171875], [-0.16291047632694244, -0.9866119027137756, 0.007564650382846594, 42442.58203125], [-0.01010265201330185, 0.009334737434983253, 0.9999053478240967, -206.4521484375], [0.0, 0.0, 0.0, 1.0]], [[-0.9866428971290588, 0.16254998743534088, -0.010644599795341492, -25885.072265625], [-0.1626468449831009, -0.9866436719894409, 0.008966842666268349, 42442.57421875], [-0.009044865146279335, 0.010578381828963757, 0.9999030828475952, -206.4515838623047], [0.0, 0.0, 0.0, 1.0]], [[-0.9866761565208435, 0.16236957907676697, -0.010307729244232178, -25885.12890625], [-0.16247092187404633, -0.9866637587547302, 0.009897134266793728, 42442.56640625], [-0.00856326799839735, 0.011439972557127476, 0.9998978972434998, -206.4518585205078], [0.0, 0.0, 0.0, 1.0]], [[-0.9866317510604858, 0.1626567542552948, -0.01002669706940651, -25885.19140625], [-0.16275523602962494, -0.9866164326667786, 0.009940234944224358, 42442.5546875], [-0.008275656960904598, 0.011439248919487, 0.9999002814292908, -206.45143127441406], [0.0, 0.0, 0.0, 1.0]]], "1": [[[-0.9794196486473083, 0.20155538618564606, -0.010616619139909744, -25833.861328125], [-0.20161369442939758, -0.9794536828994751, 0.004740629345178604, 42363.7578125], [-0.00944298692047596, 0.0067835221998393536, 0.9999323487281799, -206.04849243164062], [0.0, 0.0, 0.0, 1.0]], [[-0.9786664247512817, 0.20499254763126373, -0.013786054216325283, -25834.4296875], [-0.20511941611766815, -0.9786999821662903, 0.008508031256496906, 42364.1171875], [-0.011748328804969788, 0.011154312640428543, 0.9998687505722046, -206.0514373779297], [0.0, 0.0, 0.0, 1.0]], [[-0.9779430031776428, 0.20835138857364655, -0.014738024212419987, -25834.99609375], [-0.20850838720798492, -0.9779688715934753, 0.010056886821985245, 42364.46875], [-0.012317962944507599, 0.012908064760267735, 0.9998407959938049, -206.05783081054688], [0.0, 0.0, 0.0, 1.0]], [[-0.9772928953170776, 0.211565300822258, -0.011782674118876457, -25835.560546875], [-0.21168193221092224, -0.977290153503418, 0.009730513207614422, 42364.8203125], [-0.0094564538449049, 0.012003741227090359, 0.999883234500885, -206.0626983642578], [0.0, 0.0, 0.0, 1.0]], [[-0.9766031503677368, 0.2148762047290802, -0.008626995608210564, -25836.125], [-0.21494659781455994, -0.9765906929969788, 0.008285527117550373, 42365.16796875], [-0.00664468202739954, 0.00994601659476757, 0.9999284148216248, -206.06646728515625], [0.0, 0.0, 0.0, 1.0]], [[-0.9759446382522583, 0.21788010001182556, -0.007771937642246485, -25836.693359375], [-0.21793736517429352, -0.9759339690208435, 0.007494145072996616, 42365.515625], [-0.00595207279548049, 0.009007667191326618, 0.9999417066574097, -206.0677490234375], [0.0, 0.0, 0.0, 1.0]], [[-0.9755948781967163, 0.21924544870853424, -0.01208167802542448, -25837.27734375], [-0.2193540632724762, -0.9756079316139221, 0.008537821471691132, 42365.8671875], [-0.009915103204548359, 0.010979621671140194, 0.9998905062675476, -206.06918334960938], [0.0, 0.0, 0.0, 1.0]], [[-0.9754425883293152, 0.21955455839633942, -0.01753860153257847, -25837.861328125], [-0.2197660207748413, -0.9754884839057922, 0.01119009405374527, 42366.21875], [-0.014651867561042309, 0.01476968452334404, 0.9997835159301758, -206.0753631591797], [0.0, 0.0, 0.0, 1.0]], [[-0.9751879572868347, 0.22036024928092957, -0.021211126819252968, -25838.4453125], [-0.22063514590263367, -0.9752872586250305, 0.011611346155405045, 42366.57421875], [-0.01812826469540596, 0.016003165394067764, 0.9997075796127319, -206.08457946777344], [0.0, 0.0, 0.0, 1.0]], [[-0.975055456161499, 0.22107195854187012, -0.01984856091439724, -25839.01953125], [-0.22125263512134552, -0.9751885533332825, 0.007396053988486528, 42366.921875], [-0.017721027135849, 0.01160311046987772, 0.9997756481170654, -206.0937042236328], [0.0, 0.0, 0.0, 1.0]], [[-0.9752121567726135, 0.22083680331707, -0.013872992247343063, -25839.59375], [-0.22093257308006287, -0.9752719402313232, 0.005784102715551853, 42367.265625], [-0.012252596206963062, 0.008705723099410534, 0.9998869895935059, -206.1005859375], [0.0, 0.0, 0.0, 1.0]], [[-0.9752140045166016, 0.22105270624160767, -0.00966272410005331, -25840.162109375], [-0.22104868292808533, -0.9752616286277771, -0.0014964330475777388, 42367.61328125], [-0.009754475206136703, 0.0006765904254280031, 0.9999521970748901, -206.1018524169922], [0.0, 0.0, 0.0, 1.0]], [[-0.9752708673477173, 0.22101138532161713, -0.0008496135706081986, -25840.72265625], [-0.22101296484470367, -0.975264310836792, 0.0035766279324889183, 42367.96875], [-3.8122187106637284e-05, 0.0036759567447006702, 0.9999932050704956, -206.0998992919922], [0.0, 0.0, 0.0, 1.0]], [[-0.9753938317298889, 0.22044026851654053, -0.0036047969479113817, -25841.29296875], [-0.22046007215976715, -0.9753736257553101, 0.006605669856071472, 42368.32421875], [-0.0020598683040589094, 0.007237843703478575, 0.9999716877937317, -206.09664916992188], [0.0, 0.0, 0.0, 1.0]], [[-0.9756283164024353, 0.21885806322097778, -0.01582866907119751, -25841.880859375], [-0.2189805507659912, -0.9757078886032104, 0.006453744135797024, 42368.67578125], [-0.014031701721251011, 0.009762627072632313, 0.9998538494110107, -206.09765625], [0.0, 0.0, 0.0, 1.0]], [[-0.9762240648269653, 0.2156754583120346, -0.0216936394572258, -25842.458984375], [-0.2158033698797226, -0.9764297604560852, 0.003714017802849412, 42369.01171875], [-0.020381292328238487, 0.008307276293635368, 0.999757707118988, -206.1044921875], [0.0, 0.0, 0.0, 1.0]], [[-0.9768079519271851, 0.2125464677810669, -0.02589111030101776, -25843.02734375], [-0.21257370710372925, -0.9771435260772705, -0.001725929556414485, 42369.359375], [-0.025666171684861183, 0.003817868186160922, 0.9996632933616638, -206.1112060546875], [0.0, 0.0, 0.0, 1.0]], [[-0.9780721664428711, 0.2070801705121994, -0.02219557762145996, -25843.578125], [-0.20715424418449402, -0.9783077239990234, 0.0010713846422731876, 42369.71875], [-0.02149224281311035, 0.005645800847560167, 0.9997530579566956, -206.11915588378906], [0.0, 0.0, 0.0, 1.0]], [[-0.9798176884651184, 0.19910068809986115, -0.0177812110632658, -25844.12109375], [-0.1991620510816574, -0.9799650311470032, 0.001733875833451748, 42370.08203125], [-0.017079750075936317, 0.005240225698798895, 0.9998403787612915, -206.12567138671875], [0.0, 0.0, 0.0, 1.0]], [[-0.981563925743103, 0.19018711149692535, -0.01900576241314411, -25844.66796875], [-0.1901882290840149, -0.9817460775375366, -0.0017590085044503212, 42370.44140625], [-0.018993373960256577, 0.0018880937714129686, 0.9998177886009216, -206.1295928955078], [0.0, 0.0, 0.0, 1.0]], [[-0.9828426241874695, 0.1826859414577484, -0.02542097680270672, -25845.216796875], [-0.18264849483966827, -0.9831709265708923, -0.0038062375970184803, 42370.80078125], [-0.02568851225078106, 0.0009021711302921176, 0.9996695518493652, -206.13339233398438], [0.0, 0.0, 0.0, 1.0]], [[-0.9840850830078125, 0.17501170933246613, -0.03078201785683632, -25845.7578125], [-0.17489805817604065, -0.9845659732818604, -0.006366982590407133, 42371.1640625], [-0.031421221792697906, -0.0008819358772598207, 0.9995058178901672, -206.14137268066406], [0.0, 0.0, 0.0, 1.0]], [[-0.9855776429176331, 0.1666579395532608, -0.02935904636979103, -25846.287109375], [-0.1666337549686432, -0.9860134124755859, -0.0032830636482685804, 42371.5390625], [-0.029495561495423317, 0.0016564958496019244, 0.9995635151863098, -206.1495819091797], [0.0, 0.0, 0.0, 1.0]], [[-0.9871529936790466, 0.1573590338230133, -0.02769898809492588, -25846.8046875], [-0.15738460421562195, -0.9875365495681763, -0.001265166443772614, 42371.92578125], [-0.027552848681807518, 0.0031104821246117353, 0.9996154308319092, -206.15872192382812], [0.0, 0.0, 0.0, 1.0]], [[-0.9888357520103455, 0.14627988636493683, -0.028392216190695763, -25847.326171875], [-0.14629900455474854, -0.9892393946647644, -0.0014095205115154386, 42372.30859375], [-0.028292885050177574, 0.0027599709574133158, 0.9995958805084229, -206.16725158691406], [0.0, 0.0, 0.0, 1.0]], [[-0.9902483820915222, 0.1356334686279297, -0.031805746257305145, -25847.841796875], [-0.13550350069999695, -0.9907573461532593, -0.0062159886583685875, 42372.68359375], [-0.032354872673749924, -0.0018455823883414268, 0.9994747042655945, -206.17454528808594], [0.0, 0.0, 0.0, 1.0]], [[-0.9914600849151611, 0.12596428394317627, -0.03376208245754242, -25848.3515625], [-0.1258150041103363, -0.9920322895050049, -0.00651833089068532, 42373.0703125], [-0.03431415185332298, -0.002214887412264943, 0.9994086027145386, -206.18350219726562], [0.0, 0.0, 0.0, 1.0]], [[-0.9929057359695435, 0.11440351605415344, -0.032405778765678406, -25848.845703125], [-0.11435090005397797, -0.9934343099594116, -0.0034778090193867683, 42373.4765625], [-0.03259088844060898, 0.0002524942683521658, 0.9994686841964722, -206.19285583496094], [0.0, 0.0, 0.0, 1.0]], [[-0.994648277759552, 0.09967215359210968, -0.027206577360630035, -25849.326171875], [-0.09966078400611877, -0.9950199127197266, -0.0017752525163814425, 42373.8828125], [-0.02724802866578102, 0.0009456787956878543, 0.9996282458305359, -206.20126342773438], [0.0, 0.0, 0.0, 1.0]], [[-0.9963098764419556, 0.08370314538478851, -0.018984956666827202, -25849.79296875], [-0.08361304551362991, -0.9964832067489624, -0.005488627124577761, 42374.29296875], [-0.019377604126930237, -0.003880982520058751, 0.999804675579071, -206.2054443359375], [0.0, 0.0, 0.0, 1.0]], [[-0.997556746006012, 0.06810235977172852, -0.015576706267893314, -25850.25390625], [-0.06798586994409561, -0.9976550936698914, -0.007890894077718258, 42374.703125], [-0.016077568754553795, -0.006812617648392916, 0.9998475313186646, -206.20584106445312], [0.0, 0.0, 0.0, 1.0]], [[-0.9984166026115417, 0.05318977311253548, -0.018309200182557106, -25850.71875], [-0.053066425025463104, -0.9985653162002563, -0.007157983258366585, 42375.125], [-0.018663663417100906, -0.006175044924020767, 0.9998067021369934, -206.20440673828125], [0.0, 0.0, 0.0, 1.0]], [[-0.9989787936210632, 0.03838267922401428, -0.02383681945502758, -25851.18359375], [-0.03825585916638374, -0.9992514252662659, -0.005752913653850555, 42375.55859375], [-0.02403978817164898, -0.004835139494389296, 0.9996992945671082, -206.20591735839844], [0.0, 0.0, 0.0, 1.0]], [[-0.9994214177131653, 0.022952817380428314, -0.02510037086904049, -25851.6328125], [-0.022884877398610115, -0.9997336864471436, -0.0029879712965339422, 42375.99609375], [-0.025162268429994583, -0.002411822322756052, 0.9996804594993591, -206.20956420898438], [0.0, 0.0, 0.0, 1.0]], [[-0.9996747970581055, 0.007039799354970455, -0.024511944502592087, -25852.068359375], [-0.0069537959061563015, -0.9999694228172302, -0.003590695094317198, 42376.43359375], [-0.02453647181391716, -0.0034190749283879995, 0.9996930360794067, -206.21385192871094], [0.0, 0.0, 0.0, 1.0]], [[-0.9997265934944153, -0.009470791555941105, -0.021377943456172943, -25852.490234375], [0.009556586854159832, -0.9999467134475708, -0.003911794163286686, 42376.87109375], [-0.02133975550532341, -0.004115025047212839, 0.9997637867927551, -206.2164764404297], [0.0, 0.0, 0.0, 1.0]], [[-0.9994341731071472, -0.026436997577548027, -0.020798735320568085, -25852.904296875], [0.026583770290017128, -0.9996234178543091, -0.006809000391513109, 42377.31640625], [-0.02061089314520359, -0.0073580555617809296, 0.9997604489326477, -206.217529296875], [0.0, 0.0, 0.0, 1.0]], [[-0.998732328414917, -0.04491112381219864, -0.022730249911546707, -25853.31640625], [0.045103028416633606, -0.9989503622055054, -0.007997263222932816, 42377.76953125], [-0.0223472248762846, -0.009012328460812569, 0.9997096061706543, -206.21795654296875], [0.0, 0.0, 0.0, 1.0]], [[-0.9976324439048767, -0.06383708864450455, -0.025579066947102547, -25853.716796875], [0.06404266506433487, -0.9979204535484314, -0.0072981263510882854, 42378.23046875], [-0.025059983134269714, -0.008918997831642628, 0.9996461272239685, -206.21820068359375], [0.0, 0.0, 0.0, 1.0]], [[-0.9961711168289185, -0.08263710141181946, -0.02853446640074253, -25854.103515625], [0.0828782320022583, -0.9965323805809021, -0.007371129468083382, 42378.69921875], [-0.02782639116048813, -0.009707792662084103, 0.999565601348877, -206.2196807861328], [0.0, 0.0, 0.0, 1.0]], [[-0.994260847568512, -0.10256380587816238, -0.030431479215621948, -25854.48046875], [0.10281030833721161, -0.994678795337677, -0.006644593086093664, 42379.171875], [-0.02958805300295353, -0.009735126979649067, 0.9995147585868835, -206.22271728515625], [0.0, 0.0, 0.0, 1.0]], [[-0.9918596744537354, -0.12372199445962906, -0.03012046404182911, -25854.83984375], [0.12390875816345215, -0.992283821105957, -0.004407861270010471, 42379.65625], [-0.02934270165860653, -0.008104168809950352, 0.9995365142822266, -206.22598266601562], [0.0, 0.0, 0.0, 1.0]], [[-0.9890297055244446, -0.1456349790096283, -0.02471172623336315, -25855.173828125], [0.14576438069343567, -0.9893131256103516, -0.0035073186736553907, 42380.140625], [-0.02393684908747673, -0.007070931605994701, 0.999688446521759, -206.22866821289062], [0.0, 0.0, 0.0, 1.0]], [[-0.98540198802948, -0.1694624423980713, -0.01629178412258625, -25855.521484375], [0.16957233846187592, -0.9855018258094788, -0.005608227103948593, 42380.67578125], [-0.015105198137462139, -0.008288993500173092, 0.9998515248298645, -206.22930908203125], [0.0, 0.0, 0.0, 1.0]], [[-0.9813348650932312, -0.19184106588363647, -0.013372331857681274, -25855.830078125], [0.19197742640972137, -0.9813506603240967, -0.009776121005415916, 42381.16796875], [-0.011247485876083374, -0.012160833925008774, 0.999862790107727, -206.22523498535156], [0.0, 0.0, 0.0, 1.0]], [[-0.9765115976333618, -0.215042844414711, -0.013478707522153854, -25856.13671875], [0.21521112322807312, -0.9764863848686218, -0.012594133615493774, 42381.6640625], [-0.01045349519699812, -0.015199086628854275, 0.9998298287391663, -206.21849060058594], [0.0, 0.0, 0.0, 1.0]], [[-0.9714297652244568, -0.23698006570339203, -0.01283031702041626, -25856.42578125], [0.23711587488651276, -0.9714263081550598, -0.010343858040869236, 42382.16796875], [-0.01001241896301508, -0.013090603053569794, 0.9998641610145569, -206.21096801757812], [0.0, 0.0, 0.0, 1.0]], [[-0.9659126400947571, -0.25799426436424255, -0.021253321319818497, -25856.708984375], [0.2581222355365753, -0.9661060571670532, -0.0034666715655475855, 42382.6875], [-0.019638581201434135, -0.008834456093609333, 0.999768078327179, -206.20599365234375], [0.0, 0.0, 0.0, 1.0]], [[-0.9598409533500671, -0.27951136231422424, -0.024056266993284225, -25856.982421875], [0.279403418302536, -0.9601420760154724, 0.007807901594787836, 42383.2109375], [-0.025279831141233444, 0.000772941333707422, 0.9996800422668457, -206.2087860107422], [0.0, 0.0, 0.0, 1.0]], [[-0.9535185098648071, -0.3007458746433258, -0.018824996426701546, -25857.2265625], [0.300577312707901, -0.9536906480789185, 0.011288749054074287, 42383.734375], [-0.021348267793655396, 0.005105664953589439, 0.9997590184211731, -206.21546936035156], [0.0, 0.0, 0.0, 1.0]], [[-0.9467214345932007, -0.32159900665283203, -0.017108552157878876, -25857.458984375], [0.3215295672416687, -0.9468755722045898, 0.006740919779986143, 42384.24609375], [-0.018367541953921318, 0.0008808679995127022, 0.9998309016227722, -206.2198944091797], [0.0, 0.0, 0.0, 1.0]], [[-0.9393911957740784, -0.3425832688808441, -0.013446911238133907, -25857.685546875], [0.3425753712654114, -0.9394857287406921, 0.002960875630378723, 42384.76171875], [-0.013647526502609253, -0.0018251592991873622, 0.9999051690101624, -206.22085571289062], [0.0, 0.0, 0.0, 1.0]], [[-0.9317073822021484, -0.362854540348053, -0.016059646382927895, -25857.904296875], [0.3629363775253296, -0.9318108558654785, -0.0024053798988461494, 42385.28125], [-0.014091748744249344, -0.008069739677011967, 0.9998681545257568, -206.2193603515625], [0.0, 0.0, 0.0, 1.0]], [[-0.9234052300453186, -0.3833990693092346, -0.018111418932676315, -25858.1171875], [0.38356056809425354, -0.9234938025474548, -0.00635883305221796, 42385.80859375], [-0.014287812635302544, -0.012818606570363045, 0.9998157620429993, -206.21507263183594], [0.0, 0.0, 0.0, 1.0]], [[-0.9148102402687073, -0.40338727831840515, -0.020021425560116768, -25858.318359375], [0.4035276770591736, -0.9149611592292786, -0.0033736927434802055, 42386.35546875], [-0.016957921907305717, -0.011165487580001354, 0.9997938275337219, -206.21170043945312], [0.0, 0.0, 0.0, 1.0]], [[-0.9060202836990356, -0.4225598871707916, -0.023883085697889328, -25858.509765625], [0.4226509928703308, -0.9062915444374084, 0.0013460617046803236, 42386.9140625], [-0.022213829681277275, -0.008874650113284588, 0.9997137784957886, -206.2089385986328], [0.0, 0.0, 0.0, 1.0]], [[-0.8966209888458252, -0.44219478964805603, -0.023119088262319565, -25858.689453125], [0.44214457273483276, -0.8969122767448425, 0.007519913837313652, 42387.4921875], [-0.024061061441898346, -0.003479466075077653, 0.9997044205665588, -206.21124267578125], [0.0, 0.0, 0.0, 1.0]], [[-0.8868812322616577, -0.4614451229572296, -0.022587019950151443, -25858.857421875], [0.46134042739868164, -0.8871673941612244, 0.009956613183021545, 42388.0703125], [-0.024632899090647697, -0.001589971943758428, 0.9996952414512634, -206.21572875976562], [0.0, 0.0, 0.0, 1.0]], [[-0.8770514726638794, -0.47988563776016235, -0.02214706689119339, -25859.015625], [0.47979244589805603, -0.8773285150527954, 0.009694076143205166, 42388.65625], [-0.024082301184535027, -0.002123790793120861, 0.9997076988220215, -206.21958923339844], [0.0, 0.0, 0.0, 1.0]], [[-0.8677002787590027, -0.4966226816177368, -0.021496707573533058, -25859.16796875], [0.49652013182640076, -0.8679647445678711, 0.010250034742057323, 42389.25], [-0.02374878339469433, -0.0017795891035348177, 0.9997163414955139, -206.22352600097656], [0.0, 0.0, 0.0, 1.0]], [[-0.8594751954078674, -0.5108006000518799, -0.019624656066298485, -25859.310546875], [0.5106422305107117, -0.8596986532211304, 0.01275112759321928, 42389.85546875], [-0.02338457480072975, 0.0009380995761603117, 0.9997260570526123, -206.22874450683594], [0.0, 0.0, 0.0, 1.0]], [[-0.8523644804954529, -0.5226365923881531, -0.018051840364933014, -25859.44921875], [0.5223883390426636, -0.8525413274765015, 0.01684221625328064, 42390.4765625], [-0.02419229783117771, 0.004925635643303394, 0.9996951818466187, -206.2345733642578], [0.0, 0.0, 0.0, 1.0]], [[-0.8462854027748108, -0.53240567445755, -0.018579090014100075, -25859.58984375], [0.5321588516235352, -0.846478283405304, 0.016773568466305733, 42391.09765625], [-0.02465713955461979, 0.004308197647333145, 0.9996866583824158, -206.24252319335938], [0.0, 0.0, 0.0, 1.0]], [[-0.8412356972694397, -0.5402188897132874, -0.022044148296117783, -25859.734375], [0.5401141047477722, -0.8415203094482422, 0.010976654477417469, 42391.71875], [-0.024480393156409264, -0.0026723984628915787, 0.9996967315673828, -206.24851989746094], [0.0, 0.0, 0.0, 1.0]], [[-0.8360644578933716, -0.5481731295585632, -0.022414444014430046, -25859.873046875], [0.5482105612754822, -0.836325466632843, 0.004988155793398619, 42392.34765625], [-0.021480143070220947, -0.008117415010929108, 0.9997363090515137, -206.25082397460938], [0.0, 0.0, 0.0, 1.0]], [[-0.8303076028823853, -0.5567876100540161, -0.02401689998805523, -25860.005859375], [0.5568984150886536, -0.8305771350860596, 0.002416164381429553, 42392.98828125], [-0.02129317820072174, -0.011368812993168831, 0.9997085928916931, -206.25050354003906], [0.0, 0.0, 0.0, 1.0]], [[-0.8241606950759888, -0.5658276677131653, -0.024455668404698372, -25860.12890625], [0.5659740567207336, -0.824422299861908, 0.001117419684305787, 42393.6484375], [-0.020794065669178963, -0.012920341454446316, 0.9997002482414246, -206.2484588623047], [0.0, 0.0, 0.0, 1.0]], [[-0.8182222247123718, -0.5739914774894714, -0.03234397619962692, -25860.26171875], [0.5742135047912598, -0.8187006115913391, 0.0028738738037645817, 42394.3203125], [-0.028129613026976585, -0.016220878809690475, 0.9994726181030273, -206.2458953857422], [0.0, 0.0, 0.0, 1.0]], [[-0.8130703568458557, -0.5811595916748047, -0.034205906093120575, -25860.390625], [0.5812875628471375, -0.8136672377586365, 0.007099862676113844, 42395.0], [-0.03195837885141373, -0.014110778458416462, 0.9993895888328552, -206.2473602294922], [0.0, 0.0, 0.0, 1.0]], [[-0.8095414042472839, -0.586172342300415, -0.032318852841854095, -25860.5], [0.5862706303596497, -0.810081958770752, 0.007342831697314978, 42395.68359375], [-0.030485086143016815, -0.013003266416490078, 0.9994506239891052, -206.25067138671875], [0.0, 0.0, 0.0, 1.0]], [[-0.807090699672699, -0.5898159742355347, -0.026866266503930092, -25860.599609375], [0.5899317860603333, -0.8074420690536499, 0.0042353603057563305, 42396.375], [-0.024191034957766533, -0.012430942617356777, 0.9996300339698792, -206.2528533935547], [0.0, 0.0, 0.0, 1.0]], [[-0.8049877285957336, -0.5928829908370972, -0.022009622305631638, -25860.708984375], [0.5929983854293823, -0.8052021265029907, 0.0015524150803685188, 42397.07421875], [-0.018642595037817955, -0.01180199719965458, 0.9997565150260925, -206.2520294189453], [0.0, 0.0, 0.0, 1.0]], [[-0.8038212060928345, -0.594310998916626, -0.02580559439957142, -25860.83203125], [0.5945231318473816, -0.804078221321106, -0.0006894266698509455, 42397.78125], [-0.020339980721473694, -0.01589619740843773, 0.9996667504310608, -206.24813842773438], [0.0, 0.0, 0.0, 1.0]], [[-0.8037008047103882, -0.5943530201911926, -0.02844996564090252, -25860.95703125], [0.5945234894752502, -0.8040728569030762, 0.0029547170270234346, 42398.5], [-0.024631988257169724, -0.014539465308189392, 0.9995908141136169, -206.24537658691406], [0.0, 0.0, 0.0, 1.0]], [[-0.8034456968307495, -0.5946476459503174, -0.029483666643500328, -25861.078125], [0.5947129726409912, -0.8039035797119141, 0.007456861436367035, 42399.2265625], [-0.028136229142546654, -0.011543133296072483, 0.9995374083518982, -206.24630737304688], [0.0, 0.0, 0.0, 1.0]], [[-0.8031584620475769, -0.5950334072113037, -0.02952411398291588, -25861.201171875], [0.595040500164032, -0.8036395311355591, 0.009503384120762348, 42399.9609375], [-0.02938157692551613, -0.009935318492352962, 0.9995188117027283, -206.24928283691406], [0.0, 0.0, 0.0, 1.0]], [[-0.8034638166427612, -0.594763994216919, -0.02648932673037052, -25861.318359375], [0.5947945713996887, -0.8038421869277954, 0.0075666275806725025, 42400.69921875], [-0.025793593376874924, -0.009676195681095123, 0.9996204376220703, -206.2533416748047], [0.0, 0.0, 0.0, 1.0]], [[-0.8038791418075562, -0.5942321419715881, -0.0258175078779459, -25861.443359375], [0.5942851901054382, -0.8042289614677429, 0.006398347206413746, 42401.4453125], [-0.024565288797020912, -0.010199463926255703, 0.9996461868286133, -206.25440979003906], [0.0, 0.0, 0.0, 1.0]], [[-0.8040860295295715, -0.5939143896102905, -0.026670444756746292, -25861.5703125], [0.5939198136329651, -0.8044785857200623, 0.00857857707887888, 42402.203125], [-0.026550741866230965, -0.008942189626395702, 0.9996074438095093, -206.2569122314453], [0.0, 0.0, 0.0, 1.0]], [[-0.8041292428970337, -0.5937278866767883, -0.029382122680544853, -25861.705078125], [0.5936395525932312, -0.8046325445175171, 0.01259038969874382, 42402.96875], [-0.03111707791686058, -0.007318087387830019, 0.9994889497756958, -206.2608184814453], [0.0, 0.0, 0.0, 1.0]], [[-0.8042693138122559, -0.5934830904006958, -0.0304733794182539, -25861.83984375], [0.593342661857605, -0.8048204183578491, 0.014440227299928665, 42403.7421875], [-0.03309563174843788, -0.006467324681580067, 0.9994312524795532, -206.2689666748047], [0.0, 0.0, 0.0, 1.0]], [[-0.8045368790626526, -0.5930848717689514, -0.03115631453692913, -25861.970703125], [0.5930076837539673, -0.8050972819328308, 0.012660500593483448, 42404.515625], [-0.032592613250017166, -0.008290092460811138, 0.9994343519210815, -206.27664184570312], [0.0, 0.0, 0.0, 1.0]], [[-0.8047133684158325, -0.5928512215614319, -0.031045153737068176, -25862.103515625], [0.5929033756256104, -0.8052288293838501, 0.008492741733789444, 42405.29296875], [-0.030033383518457413, -0.011572551913559437, 0.9994819164276123, -206.28250122070312], [0.0, 0.0, 0.0, 1.0]], [[-0.8048863410949707, -0.592619001865387, -0.030994299799203873, -25862.23828125], [0.5927959680557251, -0.8053421378135681, 0.004120071418583393, 42406.06640625], [-0.027402648702263832, -0.015057106502354145, 0.9995110630989075, -206.28411865234375], [0.0, 0.0, 0.0, 1.0]], [[-0.8047325611114502, -0.5927503108978271, -0.03244208171963692, -25862.373046875], [0.5929675698280334, -0.8052187561988831, 0.0034941360354423523, 42406.85546875], [-0.0281941220164299, -0.01642525941133499, 0.9994674921035767, -206.2837677001953], [0.0, 0.0, 0.0, 1.0]], [[-0.8043051362037659, -0.5932735204696655, -0.033464137464761734, -25862.509765625], [0.5934812426567078, -0.8048357367515564, 0.004413273185491562, 42407.63671875], [-0.02955140918493271, -0.016310719773173332, 0.9994301199913025, -206.2844696044922], [0.0, 0.0, 0.0, 1.0]], [[-0.8034415245056152, -0.5944250226020813, -0.03377214074134827, -25862.642578125], [0.5946153998374939, -0.8039935827255249, 0.005186287220567465, 42408.42578125], [-0.030235443264245987, -0.0159145575016737, 0.9994160532951355, -206.28564453125], [0.0, 0.0, 0.0, 1.0]], [[-0.8028480410575867, -0.595292329788208, -0.032587680965662, -25862.76953125], [0.5955003499984741, -0.8033453226089478, 0.00395938940346241, 42409.203125], [-0.028536155819892883, -0.01622718572616577, 0.9994609951972961, -206.28634643554688], [0.0, 0.0, 0.0, 1.0]], [[-0.8026037812232971, -0.5957015156745911, -0.03109407052397728, -25862.89453125], [0.5959389805793762, -0.803027331829071, 0.0019863860215991735, 42409.98046875], [-0.026152679696679115, -0.016935886815190315, 0.9995144605636597, -206.28590393066406], [0.0, 0.0, 0.0, 1.0]], [[-0.8026668429374695, -0.5959477424621582, -0.023923132568597794, -25863.01171875], [0.5960646867752075, -0.8029320240020752, 0.0026819901540875435, 42410.76171875], [-0.020806971937417984, -0.012106988579034805, 0.9997101426124573, -206.2852325439453], [0.0, 0.0, 0.0, 1.0]], [[-0.8026705384254456, -0.5960509181022644, -0.02105267532169819, -25863.12890625], [0.5961194634437561, -0.8028879761695862, 0.0035429452545940876, 42411.53515625], [-0.019014714285731316, -0.00970609113574028, 0.9997720718383789, -206.283447265625], [0.0, 0.0, 0.0, 1.0]], [[-0.8023738265037537, -0.5965299010276794, -0.018664373084902763, -25863.251953125], [0.5965406894683838, -0.8025633692741394, 0.005595676135271788, 42412.3125], [-0.01831732876598835, -0.006644233129918575, 0.9998100996017456, -206.28257751464844], [0.0, 0.0, 0.0, 1.0]], [[-0.8019875884056091, -0.597073495388031, -0.017863644286990166, -25863.37890625], [0.5970374345779419, -0.8021747469902039, 0.007874293252825737, 42413.0859375], [-0.01903129555284977, -0.0043501779437065125, 0.9998094439506531, -206.28359985351562], [0.0, 0.0, 0.0, 1.0]], [[-0.8018444776535034, -0.5973130464553833, -0.01620178483426571, -25863.498046875], [0.5972498655319214, -0.8020044565200806, 0.009022803045809269, 42413.85546875], [-0.018383340910077095, -0.0024416279047727585, 0.999828040599823, -206.2856903076172], [0.0, 0.0, 0.0, 1.0]], [[-0.8014696836471558, -0.5978579521179199, -0.01456878986209631, -25863.6171875], [0.5977785587310791, -0.8016016483306885, 0.009782150387763977, 42414.625], [-0.017526701092720032, -0.0008688123780302703, 0.9998459815979004, -206.28822326660156], [0.0, 0.0, 0.0, 1.0]], [[-0.800815999507904, -0.5987861156463623, -0.01220282819122076, -25863.736328125], [0.5986893177032471, -0.8009077906608582, 0.010856322012841702, 42415.38671875], [-0.01627395488321781, 0.0013882140628993511, 0.9998665452003479, -206.2909698486328], [0.0, 0.0, 0.0, 1.0]], [[-0.8003590703010559, -0.5994023084640503, -0.011924698948860168, -25863.85546875], [0.5992625951766968, -0.8004398345947266, 0.013432683423161507, 42416.15625], [-0.017596585676074028, 0.003604944795370102, 0.999838650226593, -206.29466247558594], [0.0, 0.0, 0.0, 1.0]], [[-0.8001371622085571, -0.5997116565704346, -0.011244145222008228, -25863.9765625], [0.5995419025421143, -0.8001973032951355, 0.015292035415768623, 42416.91796875], [-0.01816834695637226, 0.005494390614330769, 0.999819815158844, -206.3001708984375], [0.0, 0.0, 0.0, 1.0]], [[-0.7998093962669373, -0.6001724600791931, -0.0098947798833251, -25864.09375], [0.6000086069107056, -0.7998450994491577, 0.015414198860526085, 42417.671875], [-0.017165469005703926, 0.006391468923538923, 0.9998322129249573, -206.30691528320312], [0.0, 0.0, 0.0, 1.0]], [[-0.7994646430015564, -0.6006323099136353, -0.009855980984866619, -25864.212890625], [0.6004717946052551, -0.7995008230209351, 0.01523052342236042, 42418.4296875], [-0.017027810215950012, 0.006258025765419006, 0.9998353719711304, -206.3126220703125], [0.0, 0.0, 0.0, 1.0]], [[-0.79917311668396, -0.6010134816169739, -0.010248198173940182, -25864.33203125], [0.6008903384208679, -0.7992283701896667, 0.01284324936568737, 42419.1796875], [-0.015909617766737938, 0.004105938132852316, 0.9998649954795837, -206.31822204589844], [0.0, 0.0, 0.0, 1.0]], [[-0.7989959716796875, -0.6012422442436218, -0.010639351792633533, -25864.451171875], [0.6011458039283752, -0.7990631461143494, 0.011037357151508331, 42419.92578125], [-0.01513763889670372, 0.002423003315925598, 0.9998824596405029, -206.32168579101562], [0.0, 0.0, 0.0, 1.0]], [[-0.7988084554672241, -0.6014720797538757, -0.011676262132823467, -25864.568359375], [0.6013457179069519, -0.7988876700401306, 0.012720784172415733, 42420.67578125], [-0.016979217529296875, 0.0031400001607835293, 0.999850869178772, -206.3245086669922], [0.0, 0.0, 0.0, 1.0]], [[-0.7985709309577942, -0.6017799377441406, -0.012056921608746052, -25864.685546875], [0.6016080975532532, -0.7986471056938171, 0.015187560580670834, 42421.41796875], [-0.0187687948346138, 0.004874804988503456, 0.9998119473457336, -206.3292694091797], [0.0, 0.0, 0.0, 1.0]], [[-0.7982232570648193, -0.6022401452064514, -0.012101199477910995, -25864.802734375], [0.6020495295524597, -0.798295259475708, 0.016156373545527458, 42422.16015625], [-0.019390346482396126, 0.005610872060060501, 0.9997962117195129, -206.33670043945312], [0.0, 0.0, 0.0, 1.0]], [[-0.7979703545570374, -0.6025407314300537, -0.013709473423659801, -25864.91796875], [0.6023838520050049, -0.7980825901031494, 0.014066490344703197, 42422.88671875], [-0.01941692642867565, 0.0029662770684808493, 0.9998070597648621, -206.34213256835938], [0.0, 0.0, 0.0, 1.0]], [[-0.7976589202880859, -0.6029167175292969, -0.015223433263599873, -25865.033203125], [0.6027975082397461, -0.797804057598114, 0.011994018219411373, 42423.60546875], [-0.019376711919903755, 0.000390488188713789, 0.9998121857643127, -206.34657287597656], [0.0, 0.0, 0.0, 1.0]], [[-0.7975400686264038, -0.603072464466095, -0.015275721438229084, -25865.146484375], [0.6028819680213928, -0.7976802587509155, 0.015480411238968372, 42424.328125], [-0.0215209499001503, 0.003136791754513979, 0.9997634887695312, -206.3517303466797], [0.0, 0.0, 0.0, 1.0]], [[-0.7976417541503906, -0.6029281616210938, -0.015658603981137276, -25865.255859375], [0.6025733947753906, -0.7977516651153564, 0.022305021062493324, 42425.046875], [-0.025940006598830223, 0.008355958387255669, 0.9996285438537598, -206.36000061035156], [0.0, 0.0, 0.0, 1.0]], [[-0.7973857522010803, -0.6032366752624512, -0.016775228083133698, -25865.365234375], [0.6027748584747314, -0.7974933981895447, 0.02582181617617607, 42425.75390625], [-0.028954800218343735, 0.010478264652192593, 0.9995257258415222, -206.37261962890625], [0.0, 0.0, 0.0, 1.0]], [[-0.7965755462646484, -0.6043067574501038, -0.016755076125264168, -25865.474609375], [0.6038419604301453, -0.7966819405555725, 0.025939032435417175, 42426.44140625], [-0.02902360074222088, 0.010544981807470322, 0.9995230436325073, -206.38677978515625], [0.0, 0.0, 0.0, 1.0]], [[-0.795782744884491, -0.6052758097648621, -0.019259385764598846, -25865.580078125], [0.6049156785011292, -0.7959965467453003, 0.021599138155579567, 42427.11328125], [-0.028403840959072113, 0.005537918768823147, 0.9995811581611633, -206.39810180664062], [0.0, 0.0, 0.0, 1.0]], [[-0.7948502898216248, -0.6065758466720581, -0.01669476553797722, -25865.677734375], [0.6064324975013733, -0.7950255274772644, 0.013191276229918003, 42427.76953125], [-0.021274274215102196, 0.00036084221210330725, 0.9997735619544983, -206.40573120117188], [0.0, 0.0, 0.0, 1.0]], [[-0.7943856120109558, -0.6071825623512268, -0.01675780676305294, -25865.7734375], [0.6071444749832153, -0.7945526838302612, 0.007862379774451256, 42428.421875], [-0.01808885857462883, -0.003928645979613066, 0.9998286366462708, -206.40890502929688], [0.0, 0.0, 0.0, 1.0]], [[-0.7943391799926758, -0.6072620153427124, -0.016065068542957306, -25865.8671875], [0.6072227954864502, -0.794493556022644, 0.007773612160235643, 42429.0703125], [-0.017484212294220924, -0.0035801902413368225, 0.9998407363891602, -206.40956115722656], [0.0, 0.0, 0.0, 1.0]], [[-0.7941069602966309, -0.607567310333252, -0.016003860160708427, -25865.966796875], [0.6074999570846558, -0.7942649126052856, 0.009339150041341782, 42429.71484375], [-0.018385466188192368, -0.002306059468537569, 0.9998282790184021, -206.4108123779297], [0.0, 0.0, 0.0, 1.0]], [[-0.7938030958175659, -0.6079460978507996, -0.01667841523885727, -25866.0625], [0.6078287959098816, -0.7939780354499817, 0.011959318071603775, 42430.35546875], [-0.020512916147708893, -0.0006442765006795526, 0.9997893571853638, -206.4128875732422], [0.0, 0.0, 0.0, 1.0]], [[-0.7940943241119385, -0.6075658202171326, -0.016674160957336426, -25866.158203125], [0.6074365377426147, -0.7942693829536438, 0.012534297071397305, 42430.984375], [-0.020859185606241226, -0.0001750797382555902, 0.999782383441925, -206.416748046875], [0.0, 0.0, 0.0, 1.0]], [[-0.7945948243141174, -0.6068724393844604, -0.018021611496806145, -25866.251953125], [0.60676109790802, -0.7947976589202881, 0.011737729422748089, 42431.60546875], [-0.02144683711230755, -0.0016080713830888271, 0.9997686743736267, -206.42002868652344], [0.0, 0.0, 0.0, 1.0]], [[-0.7949062585830688, -0.6064982414245605, -0.01685202307999134, -25866.345703125], [0.6063737869262695, -0.7950847148895264, 0.012293786741793156, 42432.2109375], [-0.020854944363236427, -0.0004462165234144777, 0.999782383441925, -206.42347717285156], [0.0, 0.0, 0.0, 1.0]], [[-0.7962852120399475, -0.6046634316444397, -0.017659423872828484, -25866.4375], [0.6045258045196533, -0.7964809536933899, 0.012911544181406498, 42432.80859375], [-0.02187253348529339, -0.00039430538890883327, 0.999760627746582, -206.4276885986328], [0.0, 0.0, 0.0, 1.0]], [[-0.799447774887085, -0.6006292104721069, -0.011300847865641117, -25866.52734375], [0.6005144715309143, -0.7995225191116333, 0.01209058053791523, 42433.39453125], [-0.0162972379475832, 0.0028794670943170786, 0.9998630285263062, -206.4314727783203], [0.0, 0.0, 0.0, 1.0]], [[-0.8051766157150269, -0.5930073261260986, -0.0057252151891589165, -25866.6171875], [0.5929228663444519, -0.8051746487617493, 0.01167401485145092, 42433.96875], [-0.011532575823366642, 0.0060050333850085735, 0.9999154210090637, -206.43508911132812], [0.0, 0.0, 0.0, 1.0]], [[-0.8133738040924072, -0.5817385315895081, -0.0018309488659724593, -25866.724609375], [0.5816858410835266, -0.8133355975151062, 0.01126012671738863, 42434.53125], [-0.0080396244302392, 0.008093655109405518, 0.9999348521232605, -206.43719482421875], [0.0, 0.0, 0.0, 1.0]], [[-0.8237473368644714, -0.5669527053833008, 0.002234992804005742, -25866.84765625], [0.5669425129890442, -0.8236914873123169, 0.01042015291750431, 42435.078125], [-0.004066789522767067, 0.00985068641602993, 0.999943196773529, -206.4384765625], [0.0, 0.0, 0.0, 1.0]], [[-0.8357818126678467, -0.5490601658821106, 0.0013058418408036232, -25866.98828125], [0.5490534901618958, -0.8357539176940918, 0.007460001856088638, 42435.60546875], [-0.003004626603797078, 0.006951911374926567, 0.9999712705612183, -206.4374237060547], [0.0, 0.0, 0.0, 1.0]], [[-0.8489617109298706, -0.5284363627433777, 0.004353304393589497, -25867.142578125], [0.528453528881073, -0.8489461541175842, 0.005231703165918589, 42436.125], [0.0009310990571975708, 0.0067420341074466705, 0.9999768137931824, -206.4358367919922], [0.0, 0.0, 0.0, 1.0]], [[-0.8634685277938843, -0.5043649673461914, 0.006163499318063259, -25867.310546875], [0.5043867826461792, -0.8634738326072693, 0.00261412444524467, 42436.6328125], [0.00400354852899909, 0.0053660026751458645, 0.9999775290489197, -206.4320831298828], [0.0, 0.0, 0.0, 1.0]], [[-0.8784428238868713, -0.47779378294944763, 0.007161923684179783, -25867.49609375], [0.47782671451568604, -0.8784457445144653, 0.0038416164461523294, 42437.1328125], [0.004455863498151302, 0.006796799600124359, 0.9999669194221497, -206.427978515625], [0.0, 0.0, 0.0, 1.0]], [[-0.8939700126647949, -0.4479832053184509, 0.011341637000441551, -25867.69921875], [0.4480769634246826, -0.8939616084098816, 0.0077205440029501915, 42437.625], [0.006680314429104328, 0.011983862146735191, 0.9999058842658997, -206.42369079589844], [0.0, 0.0, 0.0, 1.0]], [[-0.909781277179718, -0.41495659947395325, 0.010445913299918175, -25867.921875], [0.415056049823761, -0.9097356200218201, 0.01046730112284422, 42438.10546875], [0.005159544758498669, 0.013858593069016933, 0.9998906254768372, -206.42123413085938], [0.0, 0.0, 0.0, 1.0]], [[-0.9248123168945312, -0.380327045917511, 0.00856747105717659, -25868.16796875], [0.38040655851364136, -0.9247495532035828, 0.011361793614923954, 42438.56640625], [0.003601567354053259, 0.013766649179160595, 0.9998987317085266, -206.41885375976562], [0.0, 0.0, 0.0, 1.0]], [[-0.9388878345489502, -0.3441850543022156, 0.005125285126268864, -25868.435546875], [0.344222754240036, -0.938809335231781, 0.01215677335858345, 42439.01171875], [0.0006274865008890629, 0.013178085908293724, 0.9999129772186279, -206.41656494140625], [0.0, 0.0, 0.0, 1.0]], [[-0.9519436359405518, -0.3062704801559448, -0.0012826855527237058, -25868.724609375], [0.30623286962509155, -0.9518779516220093, 0.012241404503583908, 42439.44140625], [-0.004970142152160406, 0.011260327883064747, 0.9999242424964905, -206.4158935546875], [0.0, 0.0, 0.0, 1.0]], [[-0.9635809063911438, -0.26741576194763184, -0.0007683099247515202, -25869.021484375], [0.26739078760147095, -0.9635229706764221, 0.01121546421200037, 42439.8515625], [-0.0037394752725958824, 0.010601568967103958, 0.9999367594718933, -206.41586303710938], [0.0, 0.0, 0.0, 1.0]], [[-0.9739406704902649, -0.2267569899559021, 0.004568332340568304, -25869.3203125], [0.22679592669010162, -0.9738717675209045, 0.011719761416316032, 42440.25], [0.0017914328491315246, 0.01245043147355318, 0.9999208450317383, -206.41554260253906], [0.0, 0.0, 0.0, 1.0]], [[-0.9829973578453064, -0.18344524502754211, 0.007996334694325924, -25869.63671875], [0.1835394650697708, -0.982922375202179, 0.013299047015607357, 42440.6328125], [0.005420129280537367, 0.01454057078808546, 0.9998795986175537, -206.4146270751953], [0.0, 0.0, 0.0, 1.0]], [[-0.9895671606063843, -0.14393538236618042, 0.0062869940884411335, -25869.947265625], [0.14401590824127197, -0.989459753036499, 0.015127502381801605, 42440.9609375], [0.004043343476951122, 0.015875106677412987, 0.9998657703399658, -206.4124755859375], [0.0, 0.0, 0.0, 1.0]], [[-0.9950008988380432, -0.0998542383313179, 0.0015279481885954738, -25870.310546875], [0.09986590594053268, -0.9948688745498657, 0.016213761642575264, 42441.30078125], [-9.89048057817854e-05, 0.01628529652953148, 0.9998673796653748, -206.41148376464844], [0.0, 0.0, 0.0, 1.0]], [[-0.9985077977180481, -0.05415761098265648, -0.007010878995060921, -25870.693359375], [0.05406364053487778, -0.9984532594680786, 0.012971934862434864, 42441.62109375], [-0.007702564354985952, 0.01257354486733675, 0.9998912811279297, -206.41127014160156], [0.0, 0.0, 0.0, 1.0]], [[-0.9998932480812073, -0.006474431604146957, -0.013100770302116871, -25871.0859375], [0.006326799746602774, -0.9999163150787354, 0.011283891275525093, 42441.91796875], [-0.01317273173481226, 0.011199803091585636, 0.9998504519462585, -206.41311645507812], [0.0, 0.0, 0.0, 1.0]], [[-0.9990044236183167, 0.04258395731449127, -0.013295157812535763, -25871.48046875], [-0.04275532066822052, -0.9990024566650391, 0.012888303026556969, 42442.1953125], [-0.012733060866594315, 0.013443912379443645, 0.9998285174369812, -206.41685485839844], [0.0, 0.0, 0.0, 1.0]], [[-0.9957091808319092, 0.09180669486522675, -0.011604703031480312, -25871.880859375], [-0.09201198816299438, -0.9955841302871704, 0.018602294847369194, 42442.46875], [-0.009845643304288387, 0.01959024742245674, 0.9997595548629761, -206.42274475097656], [0.0, 0.0, 0.0, 1.0]], [[-0.9900857210159302, 0.14020438492298126, -0.008540586568415165, -25872.2890625], [-0.1403978168964386, -0.9896562099456787, 0.029478730633854866, 42442.72265625], [-0.004319198429584503, 0.03038555383682251, 0.9995288848876953, -206.4285888671875], [0.0, 0.0, 0.0, 1.0]], [[-0.9818815588951111, 0.18931834399700165, -0.008185825310647488, -25872.708984375], [-0.18948934972286224, -0.9812734127044678, 0.034587472677230835, 42442.94921875], [-0.001484491629526019, 0.035511936992406845, 0.9993681311607361, -206.43576049804688], [0.0, 0.0, 0.0, 1.0]], [[-0.9711422920227051, 0.23832164704799652, -0.009245647117495537, -25873.13671875], [-0.23850084841251373, -0.9704087376594543, 0.03773918375372887, 42443.140625], [2.2007683583069593e-05, 0.03885521739721298, 0.9992448091506958, -206.4416046142578], [0.0, 0.0, 0.0, 1.0]], [[-0.9577749967575073, 0.2871057689189911, -0.015402796678245068, -25873.578125], [-0.28745606541633606, -0.9573090672492981, 0.030470779165625572, 42443.2890625], [-0.005996901076287031, 0.033611781895160675, 0.9994169473648071, -206.44683837890625], [0.0, 0.0, 0.0, 1.0]], [[-0.9424341917037964, 0.3339983820915222, -0.01621510647237301, -25874.015625], [-0.3343210220336914, -0.942123532295227, 0.02515253610908985, 42443.40625], [-0.006875727791339159, 0.02912566065788269, 0.9995520710945129, -206.45216369628906], [0.0, 0.0, 0.0, 1.0]], [[-0.9246695637702942, 0.38035547733306885, -0.017773155122995377, -25874.44921875], [-0.3806402385234833, -0.9245665669441223, 0.017020106315612793, 42443.50390625], [-0.009958772920072079, 0.02250315435230732, 0.9996971487998962, -206.45584106445312], [0.0, 0.0, 0.0, 1.0]], [[-0.9048221707344055, 0.42546898126602173, -0.016522206366062164, -25874.873046875], [-0.42576441168785095, -0.9045096039772034, 0.02422896772623062, 42443.60546875], [-0.00463581969961524, 0.02895747683942318, 0.9995698928833008, -206.4624786376953], [0.0, 0.0, 0.0, 1.0]], [[-0.8858323097229004, 0.46365106105804443, -0.01813417114317417, -25875.2578125], [-0.46399885416030884, -0.8853520154953003, 0.0292721688747406, 42443.6796875], [-0.0024830547627061605, 0.03434446454048157, 0.9994069337844849, -206.46766662597656], [0.0, 0.0, 0.0, 1.0]], [[-0.8642241358757019, 0.5027421712875366, -0.01915832981467247, -25875.6796875], [-0.5031067728996277, -0.863559365272522, 0.033893607556819916, 42443.73828125], [0.0004953904426656663, 0.03893036022782326, 0.999241828918457, -206.47315979003906], [0.0, 0.0, 0.0, 1.0]], [[-0.8415305614471436, 0.5399209260940552, -0.0176607184112072, -25876.087890625], [-0.5401941537857056, -0.8408092856407166, 0.03507168963551521, 42443.7734375], [0.004086642991751432, 0.03905411809682846, 0.9992287158966064, -206.4783172607422], [0.0, 0.0, 0.0, 1.0]], [[-0.8172342777252197, 0.5760942697525024, -0.01560660358518362, -25876.48828125], [-0.5762913823127747, -0.8167240619659424, 0.029154645279049873, 42443.7734375], [0.004049533978104591, 0.03282012790441513, 0.999453067779541, -206.48081970214844], [0.0, 0.0, 0.0, 1.0]], [[-0.7920323610305786, 0.6102986335754395, -0.014840645715594292, -25876.87890625], [-0.6104790568351746, -0.7917884588241577, 0.019656360149383545, 42443.74609375], [0.000245597620960325, 0.024628378450870514, 0.9996966123580933, -206.48057556152344], [0.0, 0.0, 0.0, 1.0]], [[-0.7675952315330505, 0.6407919526100159, -0.013540561310946941, -25877.26171875], [-0.6409338712692261, -0.7674611210823059, 0.014392090030014515, 42443.7109375], [-0.001169519149698317, 0.019725903868675232, 0.9998047351837158, -206.4811553955078], [0.0, 0.0, 0.0, 1.0]], [[-0.7448252439498901, 0.6672097444534302, -0.008157452568411827, -25877.6328125], [-0.667253315448761, -0.7448156476020813, 0.004758721683174372, 42443.6640625], [-0.0029007333796471357, 0.008987504057586193, 0.9999553561210632, -206.48031616210938], [0.0, 0.0, 0.0, 1.0]], [[-0.7212890386581421, 0.6925878524780273, -0.008015234023332596, -25877.998046875], [-0.6926340460777283, -0.7212498188018799, 0.007539995480328798, 42443.62890625], [-0.0005588752101175487, 0.010990139096975327, 0.9999393820762634, -206.4796905517578], [0.0, 0.0, 0.0, 1.0]], [[-0.6994950175285339, 0.7145536541938782, -0.010953356511890888, -25878.361328125], [-0.7146352529525757, -0.6994495391845703, 0.0081760473549366, 42443.58984375], [-0.001819096622057259, 0.013546758331358433, 0.9999065399169922, -206.47964477539062], [0.0, 0.0, 0.0, 1.0]], [[-0.6826627850532532, 0.7306101322174072, -0.013432342559099197, -25878.712890625], [-0.7307332158088684, -0.682565450668335, 0.011548320762813091, 42443.54296875], [-0.0007311335066333413, 0.017699066549539566, 0.9998430609703064, -206.48060607910156], [0.0, 0.0, 0.0, 1.0]], [[-0.6673106551170349, 0.7446855306625366, -0.011827187612652779, -25879.0546875], [-0.744779109954834, -0.667241096496582, 0.009666427969932556, 42443.48828125], [-0.0006931355455890298, 0.01525915414094925, 0.9998832941055298, -206.48110961914062], [0.0, 0.0, 0.0, 1.0]], [[-0.6521838903427124, 0.7580154538154602, -0.00829676166176796, -25879.3828125], [-0.7580581307411194, -0.6521716117858887, 0.0044698468409478664, 42443.4296875], [-0.002022700384259224, 0.009204589761793613, 0.9999555945396423, -206.47955322265625], [0.0, 0.0, 0.0, 1.0]], [[-0.63990318775177, 0.7684372067451477, -0.005321049597114325, -25879.69921875], [-0.7684512734413147, -0.6399073004722595, 0.001094255829229951, 42443.36328125], [-0.0025641105603426695, 0.004789185710251331, 0.9999852180480957, -206.4788055419922], [0.0, 0.0, 0.0, 1.0]], [[-0.630811870098114, 0.7759320735931396, -0.0024187806993722916, -25880.009765625], [-0.7759329080581665, -0.6308149099349976, -0.0007458329200744629, 42443.30859375], [-0.00210451683960855, 0.001406331779435277, 0.9999967217445374, -206.47698974609375], [0.0, 0.0, 0.0, 1.0]], [[-0.6232641339302063, 0.782008707523346, -0.0020707121584564447, -25880.31640625], [-0.7820107936859131, -0.6232648491859436, 0.0003379464033059776, 42443.2578125], [-0.0010263248113915324, 0.001829949556849897, 0.9999977946281433, -206.4741973876953], [0.0, 0.0, 0.0, 1.0]], [[-0.6158776879310608, 0.7878344058990479, -0.0034075318835675716, -25880.61328125], [-0.7878416776657104, -0.6158736348152161, 0.0022631753236055374, 42443.20703125], [-0.0003156012389808893, 0.004078434314578772, 0.9999915957450867, -206.47259521484375], [0.0, 0.0, 0.0, 1.0]], [[-0.6095835566520691, 0.7927122712135315, -0.0038906617555767298, -25880.896484375], [-0.7927218079566956, -0.609574019908905, 0.003427447285503149, 42443.16015625], [0.0003453338285908103, 0.005173528101295233, 0.9999865293502808, -206.470947265625], [0.0, 0.0, 0.0, 1.0]], [[-0.605479896068573, 0.795857310295105, -0.002307977993041277, -25881.169921875], [-0.7958606481552124, -0.6054771542549133, 0.0018077623099088669, 42443.10546875], [4.129315493628383e-05, 0.0029313918203115463, 0.9999956488609314, -206.46908569335938], [0.0, 0.0, 0.0, 1.0]], [[-0.6029039621353149, 0.7978135347366333, -0.0006479721050709486, -25881.427734375], [-0.797812283039093, -0.6029042601585388, -0.0014339747140184045, 42443.05078125], [-0.0015347091248258948, -0.00034758870606310666, 0.9999987483024597, -206.4666290283203], [0.0, 0.0, 0.0, 1.0]], [[-0.6008584499359131, 0.7993549108505249, -0.0009140354814007878, -25881.673828125], [-0.7993413209915161, -0.600854218006134, -0.0052633569575846195, 42443.0], [-0.004756492096930742, -0.002431905595585704, 0.9999857544898987, -206.46421813964844], [0.0, 0.0, 0.0, 1.0]], [[-0.5998475551605225, 0.8001077771186829, -0.0032250143121927977, -25881.916015625], [-0.8000901937484741, -0.599855899810791, -0.005341836251318455, 42442.96484375], [-0.00620858883485198, -0.0006239853100851178, 0.9999805092811584, -206.4626007080078], [0.0, 0.0, 0.0, 1.0]], [[-0.600121021270752, 0.7998787760734558, -0.006978036370128393, -25882.150390625], [-0.799892246723175, -0.6001423001289368, -0.0012763612903654575, 42442.93359375], [-0.005208748858422041, 0.004815705120563507, 0.99997478723526, -206.46278381347656], [0.0, 0.0, 0.0, 1.0]], [[-0.6005731225013733, 0.7995299100875854, -0.00799594260752201, -25882.369140625], [-0.799561619758606, -0.6005822420120239, 0.0014786857645958662, 42442.91015625], [-0.0036199663300067186, 0.007281308528035879, 0.9999669194221497, -206.46243286132812], [0.0, 0.0, 0.0, 1.0]], [[-0.6002744436264038, 0.799774169921875, -0.005648926366120577, -25882.568359375], [-0.7997907996177673, -0.6002771854400635, 0.0013622501865029335, 42442.87890625], [-0.0023014280013740063, 0.005335683934390545, 0.9999830722808838, -206.4620361328125], [0.0, 0.0, 0.0, 1.0]], [[-0.59907066822052, 0.800692081451416, -0.002553407335653901, -25882.755859375], [-0.8006892800331116, -0.5990756750106812, -0.0022285140585154295, 42442.8359375], [-0.0033140380401164293, 0.0007094492320902646, 0.9999942183494568, -206.46066284179688], [0.0, 0.0, 0.0, 1.0]], [[-0.5989534258842468, 0.8007831573486328, -0.0010751963127404451, -25882.935546875], [-0.8007540702819824, -0.598942220211029, -0.007817733101546764, 42442.79296875], [-0.006904288195073605, -0.0038214896339923143, 0.9999688267707825, -206.45928955078125], [0.0, 0.0, 0.0, 1.0]], [[-0.5999705791473389, 0.8000216484069824, -0.0008274700958281755, -25883.109375], [-0.799965500831604, -0.5999401211738586, -0.011269955895841122, 42442.76171875], [-0.009512640535831451, -0.006099694408476353, 0.9999361634254456, -206.4580535888672], [0.0, 0.0, 0.0, 1.0]], [[-0.6001214385032654, 0.7999082207679749, -0.0011136796092614532, -25883.275390625], [-0.7998498678207397, -0.600093424320221, -0.011314884759485722, 42442.734375], [-0.0097191808745265, -0.005899528507143259, 0.9999353289604187, -206.45648193359375], [0.0, 0.0, 0.0, 1.0]], [[-0.5991130471229553, 0.8006628751754761, -0.0015955487033352256, -25883.4296875], [-0.8006139397621155, -0.5990964770317078, -0.010036446154117584, 42442.71484375], [-0.008991696871817112, -0.0047355471178889275, 0.9999483823776245, -206.4557647705078], [0.0, 0.0, 0.0, 1.0]], [[-0.5987902283668518, 0.8009021878242493, -0.00246324366889894, -25883.578125], [-0.8008652329444885, -0.5987879633903503, -0.008235021494328976, 42442.69140625], [-0.008070405572652817, -0.002958324272185564, 0.9999629855155945, -206.4554443359375], [0.0, 0.0, 0.0, 1.0]], [[-0.5994715690612793, 0.8003882765769958, -0.003541950834915042, -25883.716796875], [-0.8003488779067993, -0.5994783043861389, -0.008209680207073689, 42442.66796875], [-0.008694253861904144, -0.002086672931909561, 0.9999600052833557, -206.45498657226562], [0.0, 0.0, 0.0, 1.0]], [[-0.5996160507202148, 0.8002744913101196, -0.004619303625077009, -25883.8515625], [-0.8002279996871948, -0.5996317863464355, -0.008768708445131779, 42442.6484375], [-0.00978725403547287, -0.0015613622963428497, 0.9999508857727051, -206.4537353515625], [0.0, 0.0, 0.0, 1.0]], [[-0.5989171266555786, 0.8007925152778625, -0.00544852577149868, -25883.978515625], [-0.800742506980896, -0.5989409685134888, -0.009003845043480396, 42442.625], [-0.010473556816577911, -0.0010296894470229745, 0.9999446272850037, -206.4540252685547], [0.0, 0.0, 0.0, 1.0]], [[-0.5986092686653137, 0.8010215759277344, -0.005607432220131159, -25884.09375], [-0.8009626269340515, -0.5986338257789612, -0.00980877224355936, 42442.60546875], [-0.011213837191462517, -0.0013802767498418689, 0.9999361634254456, -206.45352172851562], [0.0, 0.0, 0.0, 1.0]], [[-0.5990673303604126, 0.8006772994995117, -0.005866772495210171, -25884.203125], [-0.8006153106689453, -0.599094569683075, -0.010040312074124813, 42442.58984375], [-0.011553800664842129, -0.0013177944347262383, 0.9999324083328247, -206.45297241210938], [0.0, 0.0, 0.0, 1.0]], [[-0.599065363407135, 0.8006773591041565, -0.006040951702743769, -25884.306640625], [-0.8006138205528259, -0.5990945100784302, -0.010165269486606121, 42442.57421875], [-0.011758201755583286, -0.001253190916031599, 0.9999300837516785, -206.45327758789062], [0.0, 0.0, 0.0, 1.0]], [[-0.5986827611923218, 0.8009645938873291, -0.005892341490834951, -25884.3984375], [-0.8009047508239746, -0.5987105965614319, -0.009853813797235489, 42442.55859375], [-0.011420362628996372, -0.0011801040964201093, 0.9999340772628784, -206.4529571533203], [0.0, 0.0, 0.0, 1.0]], [[-0.5986096858978271, 0.801021158695221, -0.005626084748655558, -25884.48828125], [-0.8009566068649292, -0.5986338257789612, -0.010297241620719433, 42442.5390625], [-0.011616271920502186, -0.0016577779315412045, 0.9999310970306396, -206.4527130126953], [0.0, 0.0, 0.0, 1.0]], [[-0.5988394021987915, 0.8008486032485962, -0.005742499139159918, -25884.5703125], [-0.8007779121398926, -0.598863959312439, -0.010799258016049862, 42442.52734375], [-0.012087545357644558, -0.0018685547402128577, 0.9999251365661621, -206.4530487060547], [0.0, 0.0, 0.0, 1.0]], [[-0.5986068844795227, 0.8010210990905762, -0.005913496948778629, -25884.64453125], [-0.8009486198425293, -0.598633348941803, -0.010925966314971447, 42442.515625], [-0.012291946448385715, -0.0018039512215182185, 0.9999228119850159, -206.45233154296875], [0.0, 0.0, 0.0, 1.0]], [[-0.5983021259307861, 0.8012502193450928, -0.005720013286918402, -25884.71484375], [-0.8011783957481384, -0.5983262658119202, -0.010897756554186344, 42442.50390625], [-0.012154263444244862, -0.0019373996183276176, 0.9999242424964905, -206.45205688476562], [0.0, 0.0, 0.0, 1.0]], [[-0.5983059406280518, 0.8012496829032898, -0.005371894221752882, -25884.77734375], [-0.8011816143989563, -0.5983265042304993, -0.010647510178387165, 42442.4921875], [-0.011745460331439972, -0.0020666061900556087, 0.9999288320541382, -206.4524688720703], [0.0, 0.0, 0.0, 1.0]], [[-0.5982332825660706, 0.8013066649436951, -0.004958619829267263, -25884.833984375], [-0.8012446165084839, -0.5982500314712524, -0.010193204507231712, 42442.484375], [-0.011134376749396324, -0.0021248464472591877, 0.9999356865882874, -206.4527130126953], [0.0, 0.0, 0.0, 1.0]], [[-0.5976999998092651, 0.8017087578773499, -0.0042197187431156635, -25884.888671875], [-0.8016633987426758, -0.5977120399475098, -0.00871850922703743, 42442.48046875], [-0.00951188150793314, -0.0018282589735463262, 0.999953031539917, -206.45216369628906], [0.0, 0.0, 0.0, 1.0]], [[-0.5971677303314209, 0.8021113276481628, -0.0028664872515946627, -25884.947265625], [-0.8020839691162109, -0.5971719026565552, -0.0068513029254972935, 42442.4765625], [-0.007207292132079601, -0.0017922137631103396, 0.9999723434448242, -206.4525909423828], [0.0, 0.0, 0.0, 1.0]], [[-0.5973982810974121, 0.8019421696662903, -0.0020269486121833324, -25885.0078125], [-0.8019253015518188, -0.5973995327949524, -0.005451427772641182, 42442.46875], [-0.00558262737467885, -0.0016312124207615852, 0.999983012676239, -206.45191955566406], [0.0, 0.0, 0.0, 1.0]], [[-0.5975496768951416, 0.8018301725387573, -0.0016927402466535568, -25885.06640625], [-0.8018185496330261, -0.5975505113601685, -0.004522665869444609, 42442.4609375], [-0.004637907724827528, -0.0013452464481815696, 0.999988317489624, -206.45213317871094], [0.0, 0.0, 0.0, 1.0]], [[-0.5973201990127563, 0.8020016551017761, -0.0014075349317863584, -25885.126953125], [-0.8019906282424927, -0.5973197817802429, -0.004477080889046192, 42442.44921875], [-0.004431373439729214, -0.0015454209642484784, 0.9999889731407166, -206.4517059326172], [0.0, 0.0, 0.0, 1.0]]], "2": [[[-0.22981105744838715, -0.973231852054596, 0.0025924004148691893, -25833.759765625], [0.97323077917099, -0.22980105876922607, 0.003656611079350114, 42363.9140625], [-0.002962993923574686, 0.0033633331768214703, 0.999989926815033, -206.04884338378906], [0.0, 0.0, 0.0, 1.0]], [[-0.23323796689510345, -0.9724195003509521, -0.0005735348095186055, -25834.328125], [0.9723915457725525, -0.233235701918602, 0.00747107807546854, 42364.2734375], [-0.007398790679872036, 0.0011848390568047762, 0.9999719262123108, -206.05206298828125], [0.0, 0.0, 0.0, 1.0]], [[-0.23657836019992828, -0.9716112017631531, -0.0015221122885122895, -25834.896484375], [0.9715691804885864, -0.23658230900764465, 0.009065626189112663, 42364.625], [-0.009168368764221668, 0.000665893079712987, 0.9999577403068542, -206.05862426757812], [0.0, 0.0, 0.0, 1.0]], [[-0.23976001143455505, -0.9708310961723328, 0.0014366786926984787, -25835.4609375], [0.9707977175712585, -0.23973873257637024, 0.00878217350691557, 42364.9765625], [-0.008181579411029816, 0.0035003384109586477, 0.9999604225158691, -206.06373596191406], [0.0, 0.0, 0.0, 1.0]], [[-0.2430366575717926, -0.9700061678886414, 0.00459563871845603, -25836.025390625], [0.969998300075531, -0.24299974739551544, 0.007381443865597248, 42365.32421875], [-0.0060433074831962585, 0.006251723039895296, 0.9999622106552124, -206.06759643554688], [0.0, 0.0, 0.0, 1.0]], [[-0.24601680040359497, -0.9692502617835999, 0.005453433841466904, -25836.59375], [0.9692522287368774, -0.24597997963428497, 0.00663061672821641, 42365.671875], [-0.005085292272269726, 0.00691699655726552, 0.9999631643295288, -206.06886291503906], [0.0, 0.0, 0.0, 1.0]], [[-0.2473890632390976, -0.9689155220985413, 0.001144709880463779, -25837.1796875], [0.9688896536827087, -0.24737341701984406, 0.007693435996770859, 42366.0234375], [-0.0071711186319589615, 0.0030123696196824312, 0.9999697208404541, -206.0700225830078], [0.0, 0.0, 0.0, 1.0]], [[-0.24771596491336823, -0.9688230752944946, -0.0043125213123857975, -25837.763671875], [0.9687691926956177, -0.2477482408285141, 0.010351160541176796, 42366.37890625], [-0.011096863076090813, -0.0016136893536895514, 0.999937117099762, -206.07608032226562], [0.0, 0.0, 0.0, 1.0]], [[-0.24852897226810455, -0.9685915112495422, -0.00798496138304472, -25838.345703125], [0.9685446619987488, -0.24860581755638123, 0.010784178972244263, 42366.73046875], [-0.01243057195097208, -0.0050536105409264565, 0.9999099969863892, -206.0850067138672], [0.0, 0.0, 0.0, 1.0]], [[-0.24923095107078552, -0.9684213995933533, -0.006621548905968666, -25838.921875], [0.968410849571228, -0.24927325546741486, 0.006577478721737862, 42367.078125], [-0.00802034605294466, -0.004773067310452461, 0.9999564290046692, -206.09361267089844], [0.0, 0.0, 0.0, 1.0]], [[-0.2489759624004364, -0.9685094356536865, -0.0006453887326642871, -25839.494140625], [0.9684969186782837, -0.24897609651088715, 0.004961286671459675, 42367.421875], [-0.0049657393246889114, 0.0006101843900978565, 0.9999874830245972, -206.10081481933594], [0.0, 0.0, 0.0, 1.0]], [[-0.24917469918727875, -0.9684519171714783, 0.0035653365775942802, -25840.064453125], [0.9684534668922424, -0.24918362498283386, -0.002317094476893544, 42367.76953125], [0.0031324182637035847, 0.0028755010571330786, 0.9999909996986389, -206.1013641357422], [0.0, 0.0, 0.0, 1.0]], [[-0.2490989714860916, -0.9683988690376282, 0.012378242798149586, -25840.623046875], [0.9684779644012451, -0.24908407032489777, 0.002755056833848357, 42368.125], [0.0004152286273892969, 0.012674336321651936, 0.999919593334198, -206.10107421875], [0.0, 0.0, 0.0, 1.0]], [[-0.24854284524917603, -0.9685730338096619, 0.00962273869663477, -25841.1953125], [0.9686155319213867, -0.2484964281320572, 0.005776393227279186, 42368.484375], [-0.00320364348590374, 0.010756416246294975, 0.9999370574951172, -206.0980224609375], [0.0, 0.0, 0.0, 1.0]], [[-0.24701812863349915, -0.9690073132514954, -0.0026029692962765694, -25841.783203125], [0.9689918160438538, -0.24702924489974976, 0.005604417994618416, 42368.83203125], [-0.006073731929063797, -0.0011378631461411715, 0.9999808669090271, -206.09780883789062], [0.0, 0.0, 0.0, 1.0]], [[-0.24387811124324799, -0.9697688817977905, -0.008471702225506306, -25842.359375], [0.969793975353241, -0.2439090609550476, 0.0028218324296176434, 42369.171875], [-0.00480285007506609, -0.007527622859925032, 0.9999601244926453, -206.10362243652344], [0.0, 0.0, 0.0, 1.0]], [[-0.24078446626663208, -0.970495879650116, -0.012673032470047474, -25842.927734375], [0.9705784320831299, -0.24077022075653076, -0.002661374630406499, 42369.515625], [-0.00046843517338857055, -0.012940989807248116, 0.9999161958694458, -206.1090545654297], [0.0, 0.0, 0.0, 1.0]], [[-0.2353418916463852, -0.9718710780143738, -0.008982102386653423, -25843.4765625], [0.9719102382659912, -0.23535190522670746, 6.242725066840649e-05, 42369.875], [-0.002174626337364316, -0.008715106174349785, 0.9999596476554871, -206.11778259277344], [0.0, 0.0, 0.0, 1.0]], [[-0.22739821672439575, -0.9737910628318787, -0.004575642291456461, -25844.01953125], [0.9738004803657532, -0.22740334272384644, 0.0006170338019728661, 42370.23828125], [-0.0016413776902481914, -0.004315449856221676, 0.9999893307685852, -206.12481689453125], [0.0, 0.0, 0.0, 1.0]], [[-0.21854384243488312, -0.9758097529411316, -0.005811074748635292, -25844.564453125], [0.9758257269859314, -0.21852953732013702, -0.002996317110955715, 42370.59765625], [0.0016539444914087653, -0.006325422786176205, 0.9999786615371704, -206.1280517578125], [0.0, 0.0, 0.0, 1.0]], [[-0.21110908687114716, -0.9773858785629272, -0.012237399816513062, -25845.111328125], [0.9774594306945801, -0.21106061339378357, -0.00514457281678915, 42370.953125], [0.002445400459691882, -0.013047627173364162, 0.9999118447303772, -206.13082885742188], [0.0, 0.0, 0.0, 1.0]], [[-0.20349600911140442, -0.9789173603057861, -0.01761074922978878, -25845.65234375], [0.979067325592041, -0.20338669419288635, -0.007808867376297712, 42371.31640625], [0.0040624444372951984, -0.01883118227124214, 0.9998144507408142, -206.13784790039062], [0.0, 0.0, 0.0, 1.0]], [[-0.19518302381038666, -0.980633020401001, -0.016200032085180283, -25846.1796875], [0.9807655811309814, -0.19512954354286194, -0.004835725296288729, 42371.69140625], [0.0015809668693691492, -0.01683228462934494, 0.9998571276664734, -206.14662170410156], [0.0, 0.0, 0.0, 1.0]], [[-0.18592678010463715, -0.9824557304382324, -0.014554714784026146, -25846.697265625], [0.9825635552406311, -0.1859036237001419, -0.00294131925329566, 42372.078125], [0.00018394284415990114, -0.014847802929580212, 0.9998897314071655, -206.15621948242188], [0.0, 0.0, 0.0, 1.0]], [[-0.17490385472774506, -0.9844671487808228, -0.015267744660377502, -25847.216796875], [0.9845854043960571, -0.1748746931552887, -0.0032330024987459183, 42372.45703125], [0.000512843020260334, -0.015597864054143429, 0.9998782277107239, -206.1645965576172], [0.0, 0.0, 0.0, 1.0]], [[-0.16431677341461182, -0.9862302541732788, -0.018702656030654907, -25847.73046875], [0.9863949418067932, -0.16418905556201935, -0.008182011544704437, 42372.83203125], [0.004998577293008566, -0.019792648032307625, 0.9997916221618652, -206.17076110839844], [0.0, 0.0, 0.0, 1.0]], [[-0.15469473600387573, -0.9877458214759827, -0.020679423585534096, -25848.23828125], [0.9879480004310608, -0.1545460969209671, -0.008612305857241154, 42373.21875], [0.00531084556132555, -0.02176247350871563, 0.9997490644454956, -206.17941284179688], [0.0, 0.0, 0.0, 1.0]], [[-0.14317506551742554, -0.9895082116127014, -0.019347909837961197, -25848.73046875], [0.9896931648254395, -0.14308995008468628, -0.005723086651414633, 42373.62109375], [0.0028945505619049072, -0.019967898726463318, 0.999796450138092, -206.18931579589844], [0.0, 0.0, 0.0, 1.0]], [[-0.12847909331321716, -0.9916107654571533, -0.014181867241859436, -25849.208984375], [0.9917093515396118, -0.12843161821365356, -0.004213430918753147, 42374.02734375], [0.002356683136895299, -0.014605630189180374, 0.9998905658721924, -206.19851684570312], [0.0, 0.0, 0.0, 1.0]], [[-0.11253122240304947, -0.993630051612854, -0.005999310873448849, -25849.673828125], [0.9936205744743347, -0.11248103529214859, -0.008136043325066566, 42374.4375], [0.007409408688545227, -0.0068765971809625626, 0.9999489188194275, -206.2030792236328], [0.0, 0.0, 0.0, 1.0]], [[-0.0969591811299324, -0.9952848553657532, -0.002633605618029833, -25850.1328125], [0.9952335953712463, -0.09692583978176117, -0.010741228237748146, 42374.84375], [0.010435317642986774, -0.003662514267489314, 0.9999388456344604, -206.20352172851562], [0.0, 0.0, 0.0, 1.0]], [[-0.08208899199962616, -0.9966102838516235, -0.005410465877503157, -25850.595703125], [0.9965775609016418, -0.08203093707561493, -0.010201535187661648, 42375.265625], [0.009723130613565445, -0.006229382008314133, 0.9999333024024963, -206.20184326171875], [0.0, 0.0, 0.0, 1.0]], [[-0.06732701510190964, -0.9976704716682434, -0.010985597968101501, -25851.05859375], [0.9976970553398132, -0.06722991168498993, -0.008987522684037685, 42375.6953125], [0.008228025399148464, -0.01156540121883154, 0.9998992681503296, -206.20281982421875], [0.0, 0.0, 0.0, 1.0]], [[-0.051921725273132324, -0.9985753893852234, -0.012300876900553703, -25851.505859375], [0.9986344575881958, -0.05184568464756012, -0.006420124787837267, 42376.12890625], [0.005773231387138367, -0.012617423199117184, 0.9999037384986877, -206.20663452148438], [0.0, 0.0, 0.0, 1.0]], [[-0.036020368337631226, -0.9992817640304565, -0.01176854781806469, -25851.9375], [0.9993279576301575, -0.035936977714300156, -0.007226303685456514, 42376.56640625], [0.0067981877364218235, -0.012020932510495186, 0.9999046325683594, -206.2108917236328], [0.0, 0.0, 0.0, 1.0]], [[-0.01950545236468315, -0.9997719526290894, -0.008695654571056366, -25852.359375], [0.9997810125350952, -0.019438158720731735, -0.007757289335131645, 42377.00390625], [0.007586492225527763, -0.008845060132443905, 0.9999321103096008, -206.21383666992188], [0.0, 0.0, 0.0, 1.0]], [[-0.0025356600526720285, -0.9999632835388184, -0.00818340852856636, -25852.76953125], [0.999937891960144, -0.0024466579779982567, -0.010869608260691166, 42377.4453125], [0.010849187150597572, -0.00821046344935894, 0.9999074339866638, -206.2145538330078], [0.0, 0.0, 0.0, 1.0]], [[0.015942931175231934, -0.99982088804245, -0.01019248552620411, -25853.1796875], [0.9997953772544861, 0.0160678643733263, -0.012290808372199535, 42377.89453125], [0.012452378869056702, -0.009994449093937874, 0.9998725056648254, -206.21453857421875], [0.0, 0.0, 0.0, 1.0]], [[0.034880973398685455, -0.999305248260498, -0.013125530444085598, -25853.578125], [0.9993159770965576, 0.03503666818141937, -0.01182879414409399, 42378.35546875], [0.012280451133847237, -0.012703953310847282, 0.9998438954353333, -206.2144317626953], [0.0, 0.0, 0.0, 1.0]], [[0.05370311811566353, -0.9984259605407715, -0.01616927795112133, -25853.9609375], [0.9984724521636963, 0.05390208214521408, -0.012136193923652172, 42378.8203125], [0.012988652102649212, -0.01549282856285572, 0.9997956156730652, -206.2154541015625], [0.0, 0.0, 0.0, 1.0]], [[0.07366877049207687, -0.997117280960083, -0.01816464029252529, -25854.3359375], [0.9971984624862671, 0.07388707250356674, -0.011656336486339569, 42379.2890625], [0.012964867055416107, -0.017255043610930443, 0.9997670650482178, -206.21824645996094], [0.0, 0.0, 0.0, 1.0]], [[0.0948885902762413, -0.9953258037567139, -0.017962995916604996, -25854.693359375], [0.9954233169555664, 0.09507250785827637, -0.009679235517978668, 42379.76953125], [0.011341781355440617, -0.016962336376309395, 0.9997918009757996, -206.2217559814453], [0.0, 0.0, 0.0, 1.0]], [[0.1168961226940155, -0.9930632710456848, -0.012672343291342258, -25855.025390625], [0.993088960647583, 0.11701460927724838, -0.009045693092048168, 42380.25], [0.010465795174241066, -0.011527357622981071, 0.9998787641525269, -206.2252960205078], [0.0, 0.0, 0.0, 1.0]], [[0.140852689743042, -0.9900208115577698, -0.004388025496155024, -25855.37109375], [0.9899585247039795, 0.14089445769786835, -0.011435039341449738, 42380.78515625], [0.011939175426959991, -0.0027333074249327183, 0.9999249577522278, -206.2269287109375], [0.0, 0.0, 0.0, 1.0]], [[0.16335125267505646, -0.9865666627883911, -0.001603908371180296, -25855.677734375], [0.9864395260810852, 0.1633559912443161, -0.015872079879045486, 42381.2734375], [0.01592087186872959, 0.001010564505122602, 0.9998727440834045, -206.2228546142578], [0.0, 0.0, 0.0, 1.0]], [[0.1866820603609085, -0.9824186563491821, -0.001858038129284978, -25855.98046875], [0.9822369813919067, 0.18668338656425476, -0.018967241048812866, 42381.765625], [0.018980635330080986, 0.001715809921734035, 0.9998183846473694, -206.21580505371094], [0.0, 0.0, 0.0, 1.0]], [[0.20875944197177887, -0.9779660105705261, -0.001356045831926167, -25856.267578125], [0.9778212308883667, 0.20875205099582672, -0.01697692833840847, 42382.265625], [0.01688593626022339, 0.0022181225940585136, 0.9998549222946167, -206.2086181640625], [0.0, 0.0, 0.0, 1.0]], [[0.2298896163702011, -0.9731661081314087, -0.009926751255989075, -25856.548828125], [0.9731383323669434, 0.22998858988285065, -0.01034771278500557, 42382.78125], [0.012353083118796349, -0.00728127034381032, 0.9998971819877625, -206.2029571533203], [0.0, 0.0, 0.0, 1.0]], [[0.2515615224838257, -0.9677554965019226, -0.012886816635727882, -25856.8203125], [0.9678378105163574, 0.2515738904476166, 0.0006774043431505561, 42383.30078125], [0.0025864257477223873, -0.012642757035791874, 0.9999167323112488, -206.20626831054688], [0.0, 0.0, 0.0, 1.0]], [[0.2729910612106323, -0.9619848132133484, -0.007815510034561157, -25857.0625], [0.9620152115821838, 0.2729678452014923, 0.003912659827619791, 42383.8203125], [-0.001630535931326449, -0.008586760610342026, 0.999961793422699, -206.2140350341797], [0.0, 0.0, 0.0, 1.0]], [[0.2940387725830078, -0.9557729959487915, -0.006263337098062038, -25857.29296875], [0.9557896852493286, 0.29404956102371216, -0.0008758823969401419, 42384.328125], [0.0026788765098899603, -0.005728889722377062, 0.9999799728393555, -206.21829223632812], [0.0, 0.0, 0.0, 1.0]], [[0.3152408003807068, -0.9490076899528503, -0.0027734062168747187, -25857.517578125], [0.9489956498146057, 0.31525111198425293, -0.004895756486803293, 42384.83984375], [0.005520429462194443, -0.0010886082891374826, 0.9999841451644897, -206.2195281982422], [0.0, 0.0, 0.0, 1.0]], [[0.33571475744247437, -0.9419472813606262, -0.0055591450072824955, -25857.734375], [0.9418904185295105, 0.33575639128685, -0.0104919308796525, 42385.35546875], [0.011749363504350185, -0.00171380874235183, 0.9999295473098755, -206.21714782714844], [0.0, 0.0, 0.0, 1.0]], [[0.35648202896118164, -0.9342697262763977, -0.007792851887643337, -25857.947265625], [0.934156596660614, 0.35656124353408813, -0.014676383696496487, 42385.8828125], [0.016490329056978226, -0.002047878224402666, 0.9998619556427002, -206.2122039794922], [0.0, 0.0, 0.0, 1.0]], [[0.3767022490501404, -0.9262816309928894, -0.009886455722153187, -25858.14453125], [0.926216721534729, 0.37680304050445557, -0.011913689784705639, 42386.421875], [0.014760678634047508, -0.004669087938964367, 0.9998801350593567, -206.20870971679688], [0.0, 0.0, 0.0, 1.0]], [[0.3961048424243927, -0.918099582195282, -0.013930986635386944, -25858.3359375], [0.9181226491928101, 0.3962271
Download .txt
gitextract_we0tkx0h/

├── .gitignore
├── .vscode/
│   └── settings.json
├── LICENSE
├── README.md
├── assets/
│   └── Inter-Regular.otf
├── docs/
│   ├── WAYMO.md
│   └── example_data/
│       ├── segment-990914685337955114_980_000_1000_000_with_camera_labels.json
│       └── waymo_train.txt
├── engine_storm.py
├── extract_sky.py
├── inference.py
├── main_storm.py
├── preproc/
│   ├── utils.py
│   ├── waymo_download.py
│   └── waymo_preprocess.py
├── preprocess.py
├── requirements.txt
├── requirements_data_preprocess.txt
├── storm/
│   ├── dataset/
│   │   ├── constants.py
│   │   ├── data_utils.py
│   │   ├── samplers.py
│   │   └── storm_dataset.py
│   ├── models/
│   │   ├── __init__.py
│   │   ├── decoder.py
│   │   ├── embedders.py
│   │   ├── layers.py
│   │   ├── storm.py
│   │   └── vit.py
│   ├── utils/
│   │   ├── __init__.py
│   │   ├── distributed.py
│   │   ├── logging.py
│   │   ├── losses.py
│   │   ├── lpips.py
│   │   ├── lpips_loss.py
│   │   └── misc.py
│   └── visualization/
│       ├── annotation.py
│       ├── layout.py
│       ├── video_maker.py
│       └── visualization_tools.py
└── third_party/
    └── depth_anything_v2/
        ├── dinov2.py
        ├── dinov2_layers/
        │   ├── __init__.py
        │   ├── attention.py
        │   ├── block.py
        │   ├── drop_path.py
        │   ├── layer_scale.py
        │   ├── mlp.py
        │   ├── patch_embed.py
        │   └── swiglu_ffn.py
        ├── dpt.py
        └── util/
            ├── blocks.py
            └── transform.py
Download .txt
SYMBOL INDEX (374 symbols across 36 files)

FILE: engine_storm.py
  function visualize (line 21) | def visualize(args, model, dset_train, step, train_vis_id, device, dset_...
  function evaluate (line 50) | def evaluate(dataloader, model, args, name_str=None):
  function evaluate_flow (line 307) | def evaluate_flow(dataloader, model, args, name_str=None):

FILE: extract_sky.py
  class ListDataset (line 15) | class ListDataset:
    method __init__ (line 18) | def __init__(
    method _load_samples (line 37) | def _load_samples(self, data_list: str) -> list:
    method __getitem__ (line 46) | def __getitem__(self, index: int) -> Tuple[torch.Tensor, str]:
    method __len__ (line 63) | def __len__(self) -> int:
  function get_args_parser (line 66) | def get_args_parser() -> argparse.ArgumentParser:
  function setup_model (line 77) | def setup_model(device: torch.device, depth_ckpt: str) -> DepthAnythingV2:
  function get_sky_mask (line 87) | def get_sky_mask(dataloader: torch.utils.data.DataLoader,  depthv2: Dept...
  function main (line 121) | def main(args: argparse.Namespace) -> None:

FILE: inference.py
  function get_args_parser (line 27) | def get_args_parser():
  function main (line 80) | def main(args):

FILE: main_storm.py
  function get_args_parser (line 37) | def get_args_parser():
  function main (line 132) | def main(args):

FILE: preproc/utils.py
  class ProgressBar (line 12) | class ProgressBar:
    method __init__ (line 15) | def __init__(self, task_num=0, bar_width=50, start=True, file=sys.stdo...
    method terminal_width (line 24) | def terminal_width(self):
    method start (line 28) | def start(self):
    method update (line 36) | def update(self, num_tasks=1):
  function init_pool (line 70) | def init_pool(process_num, initializer=None, initargs=None):
  function track_parallel_progress (line 81) | def track_parallel_progress(

FILE: preproc/waymo_download.py
  function download_file (line 8) | def download_file(filename, target_dir, source):
  function download_files (line 25) | def download_files(

FILE: preproc/waymo_preprocess.py
  function project_vehicle_to_image (line 49) | def project_vehicle_to_image(vehicle_pose, calibration, points):
  function get_ground_np (line 91) | def get_ground_np(pts):
  function compute_range_image_cartesian (line 132) | def compute_range_image_cartesian(
  function extract_point_cloud_from_range_image (line 234) | def extract_point_cloud_from_range_image(
  function parse_range_image_flow_and_camera_projection (line 283) | def parse_range_image_flow_and_camera_projection(frame):
  function convert_range_image_to_point_cloud_flow (line 332) | def convert_range_image_to_point_cloud_flow(
  class WaymoProcessor (line 467) | class WaymoProcessor:
    method __init__ (line 468) | def __init__(
    method convert (line 495) | def convert(self):
    method convert_one (line 501) | def convert_one(self, file_id):
    method make_json (line 601) | def make_json(self, file_id):
    method __len__ (line 677) | def __len__(self):
    method save_image (line 681) | def save_image(self, frame, file_id, frame_id):
    method save_calib (line 713) | def save_calib(self, frame, file_id, frame_id):
    method save_lidar (line 745) | def save_lidar(self, frame, file_id, frame_id):
    method save_ground (line 884) | def save_ground(self, frame, file_id, frame_id):
    method save_pose (line 958) | def save_pose(self, frame, file_id, frame_id):
    method save_dynamic_mask (line 991) | def save_dynamic_mask(self, frame, file_id, frame_id):
    method create_folder (line 1084) | def create_folder(self):

FILE: storm/dataset/data_utils.py
  function forward_pose (line 11) | def forward_pose(pose: torch.tensor, transform: torch.tensor, inv=False)...
  function get_path_front_left_lift_then_spiral_forward (line 20) | def get_path_front_left_lift_then_spiral_forward(
  function to_tensor (line 142) | def to_tensor(x: Union[np.ndarray, List, Tuple]) -> torch.Tensor:
  function to_float_tensor (line 150) | def to_float_tensor(d):
  function to_batch_tensor (line 163) | def to_batch_tensor(d):
  function resize_depth (line 174) | def resize_depth(depth, target_size):
  function resize_flow (line 195) | def resize_flow(flow, target_size):
  function prepare_inputs_and_targets (line 222) | def prepare_inputs_and_targets(data_dict, device=torch.device("cuda"), v...
  function prepare_inputs_and_targets_novel_view (line 300) | def prepare_inputs_and_targets_novel_view(data_dict, device=torch.device...

FILE: storm/dataset/samplers.py
  function _get_torch_dtype (line 10) | def _get_torch_dtype(size: int) -> Any:
  function _generate_randperm_indices (line 15) | def _generate_randperm_indices(*, size: int, generator: torch.Generator):
  class InfiniteSampler (line 33) | class InfiniteSampler(Sampler):
    method __init__ (line 34) | def __init__(
    method __iter__ (line 61) | def __iter__(self):
    method _iterator (line 66) | def _iterator(self):
    method _shuffled_iterator (line 73) | def _shuffled_iterator(self):
  class NoPaddingDistributedSampler (line 82) | class NoPaddingDistributedSampler(Sampler):
    method __init__ (line 83) | def __init__(self, dataset, num_replicas=None, rank=None, shuffle=False):
    method __iter__ (line 108) | def __iter__(self):
    method __len__ (line 118) | def __len__(self):

FILE: storm/dataset/storm_dataset.py
  class STORMDataset (line 20) | class STORMDataset(Dataset):
    method __init__ (line 21) | def __init__(
    method __len__ (line 79) | def __len__(self) -> int:
    method get_frame (line 82) | def get_frame(
    method __getitem__ (line 249) | def __getitem__(
  class STORMDatasetEval (line 364) | class STORMDatasetEval(STORMDataset):
    method __init__ (line 365) | def __init__(
    method __len__ (line 413) | def __len__(self) -> int:
    method __getitem__ (line 416) | def __getitem__(self, index: int):
  class SingleSequenceDataset (line 424) | class SingleSequenceDataset(Dataset):
    method __init__ (line 425) | def __init__(
    method __len__ (line 481) | def __len__(self) -> int:
    method get_frame (line 484) | def get_frame(
    method get_segment (line 647) | def get_segment(self, index: int, context_frame_idx: int = -1, return_...
    method __getitem__ (line 746) | def __getitem__(self, index: int, start_index: int = 0, end_index: int...

FILE: storm/models/decoder.py
  function check_results (line 15) | def check_results(result_dict) -> bool:
  class Decoder (line 26) | class Decoder(nn.Module):
    method __init__ (line 27) | def __init__(
    method forward (line 57) | def forward(self, render_results):
  class ConvDecoder (line 74) | class ConvDecoder(nn.Module):
    method __init__ (line 75) | def __init__(
    method forward (line 110) | def forward(self, render_results) -> Dict[str, Tensor]:
  class ModulatedLinearLayer (line 149) | class ModulatedLinearLayer(nn.Module):
    method __init__ (line 150) | def __init__(self, in_channels, hidden_channels=64, condition_channels...
    method forward (line 160) | def forward(self, x, c):
  class ModulatedMLP (line 171) | class ModulatedMLP(nn.Module):
    method __init__ (line 172) | def __init__(
    method forward (line 196) | def forward(self, x, c):
  class DummyDecoder (line 207) | class DummyDecoder(nn.Module):
    method __init__ (line 208) | def __init__(self, **kwargs):
    method forward (line 211) | def forward(self, render_results):

FILE: storm/models/embedders.py
  class PatchEmbed (line 18) | class PatchEmbed(nn.Module):
    method __init__ (line 23) | def __init__(
    method feat_ratio (line 51) | def feat_ratio(self, as_scalar=True) -> Union[Tuple[int, int], int]:
    method dynamic_feat_size (line 57) | def dynamic_feat_size(self, img_size: Tuple[int, int]) -> Tuple[int, i...
    method forward (line 68) | def forward(self, x: Tensor) -> Tensor:
  class PluckerEmbedder (line 87) | class PluckerEmbedder(nn.Module):
    method __init__ (line 92) | def __init__(
    method forward (line 112) | def forward(
  class TimestepEmbedder (line 186) | class TimestepEmbedder(nn.Module):
    method __init__ (line 192) | def __init__(self, hidden_size, frequency_embedding_size=256):
    method timestep_embedding (line 202) | def timestep_embedding(t, dim, max_period=10000):
    method forward (line 222) | def forward(self, t):
  class NeRFPosEmbedder (line 228) | class NeRFPosEmbedder(nn.Module):
    method __init__ (line 229) | def __init__(
    method get_out_dim (line 246) | def get_out_dim(self) -> int:
    method forward (line 252) | def forward(self, in_tensor: Tensor) -> Tensor:

FILE: storm/models/layers.py
  function modulate (line 17) | def modulate(x, shift=None, scale=None):
  class Mlp (line 23) | class Mlp(nn.Module):
    method __init__ (line 24) | def __init__(self, in_dim: int, hidden_dim=None, out_dim=None, act_lay...
    method forward (line 32) | def forward(self, x):
  class Attention (line 36) | class Attention(nn.Module):
    method __init__ (line 39) | def __init__(
    method forward (line 68) | def forward(self, x: Tensor, data: Tensor = None) -> Tensor:
  class Block (line 100) | class Block(nn.Module):
    method __init__ (line 103) | def __init__(
    method forward (line 127) | def forward(self, x: Tensor, data: Tensor = None) -> Tensor:
  class Transformer (line 135) | class Transformer(nn.Module):
    method __init__ (line 136) | def __init__(
    method forward (line 164) | def forward(self, x: torch.Tensor) -> torch.Tensor:
  class GroupNorm (line 174) | class GroupNorm(nn.Module):
    method __init__ (line 175) | def __init__(self, channels):
    method forward (line 179) | def forward(self, x):
  class Swish (line 183) | class Swish(nn.Module):
    method forward (line 184) | def forward(self, x):
  class ResidualBlock (line 188) | class ResidualBlock(nn.Module):
    method __init__ (line 189) | def __init__(self, in_channels, out_channels):
    method forward (line 205) | def forward(self, x):
  class UpSampleBlock (line 212) | class UpSampleBlock(nn.Module):
    method __init__ (line 213) | def __init__(self, channels):
    method forward (line 217) | def forward(self, x):
  class NonLocalBlock (line 222) | class NonLocalBlock(nn.Module):
    method __init__ (line 223) | def __init__(self, channels):
    method forward (line 230) | def forward(self, x):
  class LayerNorm2d (line 238) | class LayerNorm2d(nn.Module):
    method __init__ (line 239) | def __init__(self, num_channels: int, eps: float = 1e-6) -> None:
    method forward (line 245) | def forward(self, x: torch.Tensor) -> torch.Tensor:
  function pos_enc (line 253) | def pos_enc(x, min_deg=0, max_deg=10, append_identity=True):
  function get_2d_sincos_pos_embed (line 267) | def get_2d_sincos_pos_embed(embed_dim, grid_size, cls_token=False, num_e...
  function get_2d_sincos_pos_embed_from_grid (line 287) | def get_2d_sincos_pos_embed_from_grid(embed_dim, grid):
  function get_1d_sincos_pos_embed_from_grid (line 298) | def get_1d_sincos_pos_embed_from_grid(embed_dim, pos):
  function resample_abs_pos_embed (line 319) | def resample_abs_pos_embed(

FILE: storm/models/storm.py
  class STORM (line 14) | class STORM(ViT):
    method __init__ (line 15) | def __init__(
    method _pos_embed (line 181) | def _pos_embed(self, x: Tensor) -> Tensor:
    method _time_embed (line 186) | def _time_embed(self, x: Tensor, time: Tensor, num_views=1) -> Tensor:
    method forward_decoder (line 205) | def forward_decoder(self, render_results):
    method forward_features (line 220) | def forward_features(self, x, plucker_embeds, time):
    method forward_motion_predictor (line 242) | def forward_motion_predictor(self, x, motion_tokens=None, gs_params=No...
    method forward_gs_predictor (line 281) | def forward_gs_predictor(self, x, origins, directions):
    method forward_renderer (line 302) | def forward_renderer(self, gs_params, data_dict, render_motion_seg=Tru...
    method get_ray_dict (line 508) | def get_ray_dict(self, data_dict):
    method forward (line 534) | def forward(self, data_dict):
    method from_gs_params_to_output (line 608) | def from_gs_params_to_output(self, gs_params, target_dict, num_cams=1):
    method get_gs_params (line 639) | def get_gs_params(self, data_dict):
  function STORM_B_8 (line 669) | def STORM_B_8(**kwargs):
  function STORM_L_8 (line 673) | def STORM_L_8(**kwargs):
  function STORM_B_16 (line 677) | def STORM_B_16(**kwargs):
  function STORM_L_16 (line 681) | def STORM_L_16(**kwargs):
  function STORM_XL_8 (line 685) | def STORM_XL_8(**kwargs):
  function STORM_H_8 (line 689) | def STORM_H_8(**kwargs):
  function STORM_H_16 (line 693) | def STORM_H_16(**kwargs):

FILE: storm/models/vit.py
  class VisionTransformer (line 17) | class VisionTransformer(nn.Module):
    method __init__ (line 20) | def __init__(
    method init_weights (line 64) | def init_weights(self):
    method _pos_embed (line 78) | def _pos_embed(self, x: torch.Tensor) -> torch.Tensor:
    method unpatchify (line 92) | def unpatchify(self, x, hw=None, channel_first=True, patch_size=None) ...
    method forward (line 106) | def forward(self, x: torch.Tensor) -> torch.Tensor:
  function ViT_S_16 (line 114) | def ViT_S_16(**kwargs):
  function ViT_B_16 (line 118) | def ViT_B_16(**kwargs):
  function ViT_L_16 (line 122) | def ViT_L_16(**kwargs):
  function ViT_H_14 (line 126) | def ViT_H_14(**kwargs):

FILE: storm/utils/distributed.py
  function is_enabled (line 28) | def is_enabled() -> bool:
  function get_global_rank (line 33) | def get_global_rank() -> int:
  function get_world_size (line 38) | def get_world_size() -> int:
  function is_main_process (line 43) | def is_main_process() -> bool:
  function _collect_env_vars (line 48) | def _collect_env_vars() -> Dict[str, str]:
  function _is_slurm_job_process (line 60) | def _is_slurm_job_process() -> bool:
  function _parse_slurm_node_list (line 65) | def _parse_slurm_node_list(s: str) -> List[str]:
  function _check_env_variable (line 83) | def _check_env_variable(key: str, new_value: str):
  function _restrict_print_to_main_process (line 89) | def _restrict_print_to_main_process() -> None:
  function _get_master_port (line 105) | def _get_master_port(seed: int = 0) -> int:
  function _get_available_port (line 117) | def _get_available_port() -> int:
  class _TorchDistributedEnvironment (line 126) | class _TorchDistributedEnvironment:
    method __init__ (line 129) | def __init__(self):
    method _set_from_slurm_env (line 160) | def _set_from_slurm_env(self):
    method _set_from_preset_env (line 180) | def _set_from_preset_env(self):
    method _set_from_local (line 195) | def _set_from_local(self):
    method export (line 205) | def export(self, *, overwrite: bool) -> "_TorchDistributedEnvironment":
  function enable (line 223) | def enable(

FILE: storm/utils/logging.py
  class SmoothedValue (line 20) | class SmoothedValue:
    method __init__ (line 23) | def __init__(self, window_size=20, fmt=None):
    method update (line 29) | def update(self, value, num=1):
    method synchronize_between_processes (line 35) | def synchronize_between_processes(self):
    method median (line 45) | def median(self):
    method avg (line 50) | def avg(self):
    method global_avg (line 55) | def global_avg(self):
    method max (line 60) | def max(self):
    method value (line 65) | def value(self):
    method __str__ (line 69) | def __str__(self):
  class MetricLogger (line 80) | class MetricLogger:
    method __init__ (line 81) | def __init__(self, delimiter="\t", output_file=None):
    method update (line 86) | def update(self, **kwargs):
    method __getattr__ (line 95) | def __getattr__(self, attr):
    method __str__ (line 102) | def __str__(self):
    method synchronize_between_processes (line 108) | def synchronize_between_processes(self):
    method add_meter (line 112) | def add_meter(self, name, meter):
    method dump_in_output_file (line 115) | def dump_in_output_file(self, iteration, iter_time, data_time):
    method log_every (line 127) | def log_every(self, iterable, print_freq, header=None, n_iterations=No...
  class WandbLogger (line 203) | class WandbLogger:
    method __init__ (line 204) | def __init__(self, args, resume="must", id=None):
    method wandb_safe_log (line 221) | def wandb_safe_log(*args, **kwargs):
    method set_step (line 228) | def set_step(self, step=None):
    method update (line 232) | def update(self, metrics):
    method flush (line 241) | def flush(self):
    method finish (line 244) | def finish(self):
  function _configure_logger (line 252) | def _configure_logger(
  function setup_logging (line 323) | def setup_logging(

FILE: storm/utils/losses.py
  function compute_depth_loss (line 8) | def compute_depth_loss(pred_depth, gt_depth, max_depth=None):
  function compute_sky_depth_loss (line 41) | def compute_sky_depth_loss(pred_depth, gt_sky_mask, sky_depth: float = 1...
  function compute_loss (line 77) | def compute_loss(output_dict, target_dict, args=None, lpips_loss=None):
  function compute_scene_flow_metrics (line 161) | def compute_scene_flow_metrics(pred, labels):

FILE: storm/utils/lpips.py
  function download (line 20) | def download(url, local_path, chunk_size=1024):
  function md5_hash (line 32) | def md5_hash(path):
  function get_ckpt_path (line 38) | def get_ckpt_path(name, root, check=False):
  class LPIPS (line 49) | class LPIPS(nn.Module):
    method __init__ (line 51) | def __init__(self, use_dropout=True):
    method load_from_pretrained (line 65) | def load_from_pretrained(self, name="vgg_lpips"):
    method from_pretrained (line 71) | def from_pretrained(cls, name="vgg_lpips"):
    method forward (line 79) | def forward(self, input, target):
  class ScalingLayer (line 97) | class ScalingLayer(nn.Module):
    method __init__ (line 98) | def __init__(self):
    method forward (line 103) | def forward(self, inp):
  class NetLinLayer (line 107) | class NetLinLayer(nn.Module):
    method __init__ (line 110) | def __init__(self, chn_in, chn_out=1, use_dropout=False):
  class vgg16 (line 125) | class vgg16(torch.nn.Module):
    method __init__ (line 126) | def __init__(self, requires_grad=False, pretrained=True):
    method forward (line 149) | def forward(self, X):
  function normalize_tensor (line 167) | def normalize_tensor(x, eps=1e-8):
  function spatial_average (line 172) | def spatial_average(x, keepdim=True):

FILE: storm/utils/lpips_loss.py
  class RGBLpipsLoss (line 8) | class RGBLpipsLoss(nn.Module):
    method __init__ (line 18) | def __init__(
    method set_perceptual_loss (line 36) | def set_perceptual_loss(self, enable=True):
    method forward (line 45) | def forward(self, rgb, targets):

FILE: storm/utils/misc.py
  function fix_random_seeds (line 18) | def fix_random_seeds(seed=31):
  function _ntuple (line 25) | def _ntuple(n):
  function cleanup_checkpoints (line 47) | def cleanup_checkpoints(ckpt_dir, keep_num=1):
  function load_model (line 75) | def load_model(args, model_without_ddp, optimizer=None, loss_scaler=None):
  function adjust_learning_rate (line 163) | def adjust_learning_rate(optimizer, iteration, args):
  function unwrap_model (line 198) | def unwrap_model(model):
  function get_grad_norm_ (line 202) | def get_grad_norm_(parameters, norm_type=2.0):
  class NativeScalerWithGradNormCount (line 228) | class NativeScalerWithGradNormCount:
    method __init__ (line 238) | def __init__(self, enabled=True):
    method __call__ (line 241) | def __call__(
    method state_dict (line 262) | def state_dict(self):
    method load_state_dict (line 266) | def load_state_dict(self, state_dict):

FILE: storm/visualization/annotation.py
  function draw_label (line 20) | def draw_label(
  function add_label (line 42) | def add_label(

FILE: storm/visualization/layout.py
  function _sanitize_color (line 34) | def _sanitize_color(color: Color) -> Float[Tensor, "#channel"]:
  function _intersperse (line 48) | def _intersperse(iterable: Iterable, delimiter: Any) -> Generator[Any, N...
  function _get_main_dim (line 56) | def _get_main_dim(main_axis: Axis) -> int:
  function _get_cross_dim (line 63) | def _get_cross_dim(main_axis: Axis) -> int:
  function _compute_offset (line 70) | def _compute_offset(base: int, overlay: int, align: Alignment) -> slice:
  function overlay (line 80) | def overlay(
  function cat (line 111) | def cat(
  function hcat (line 151) | def hcat(
  function vcat (line 173) | def vcat(
  function add_border (line 195) | def add_border(
  function resize (line 210) | def resize(
  function prep_image (line 233) | def prep_image(image: torch.Tensor) -> UInt8[np.ndarray, "height width c...

FILE: storm/visualization/video_maker.py
  function get_pca_map (line 25) | def get_pca_map(x):
  function make_video (line 35) | def make_video(
  function make_video_vis (line 353) | def make_video_vis(
  function make_video_av2 (line 626) | def make_video_av2(

FILE: storm/visualization/visualization_tools.py
  function to8b (line 38) | def to8b(x):
  function sinebow (line 44) | def sinebow(h):
  function matte (line 50) | def matte(vis, acc, dark=0.8, light=1.0, width=8):
  function weighted_percentile (line 60) | def weighted_percentile(x, w, ps, assume_sorted=False):
  function visualize_cmap (line 71) | def visualize_cmap(
  function visualize_depth (line 134) | def visualize_depth(x, acc=None, lo=None, hi=None, depth_curve_fn=lambda...
  function _make_colorwheel (line 147) | def _make_colorwheel(
  function scene_flow_to_rgb (line 197) | def scene_flow_to_rgb(
  function get_robust_pca (line 285) | def get_robust_pca(features: Tensor, m: float = 2, remove_first_componen...
  function get_pca_map (line 319) | def get_pca_map(
  function get_scale_map (line 359) | def get_scale_map(
  function get_similarity_map (line 384) | def get_similarity_map(features: Tensor, img_size=(224, 224)):

FILE: third_party/depth_anything_v2/dinov2.py
  function named_apply (line 27) | def named_apply(
  class BlockChunk (line 42) | class BlockChunk(nn.ModuleList):
    method forward (line 43) | def forward(self, x):
  class DinoVisionTransformer (line 49) | class DinoVisionTransformer(nn.Module):
    method __init__ (line 50) | def __init__(
    method init_weights (line 185) | def init_weights(self):
    method interpolate_pos_encoding (line 192) | def interpolate_pos_encoding(self, x, w, h):
    method prepare_tokens_with_masks (line 225) | def prepare_tokens_with_masks(self, x, masks=None):
    method forward_features_list (line 246) | def forward_features_list(self, x_list, masks_list):
    method forward_features (line 266) | def forward_features(self, x, masks=None):
    method _get_intermediate_layers_not_chunked (line 284) | def _get_intermediate_layers_not_chunked(self, x, n=1):
    method _get_intermediate_layers_chunked (line 298) | def _get_intermediate_layers_chunked(self, x, n=1):
    method get_intermediate_layers (line 314) | def get_intermediate_layers(
    method forward (line 342) | def forward(self, *args, is_training=False, **kwargs):
  function init_weights_vit_timm (line 350) | def init_weights_vit_timm(module: nn.Module, name: str = ""):
  function vit_small (line 358) | def vit_small(patch_size=16, num_register_tokens=0, **kwargs):
  function vit_base (line 372) | def vit_base(patch_size=16, num_register_tokens=0, **kwargs):
  function vit_large (line 386) | def vit_large(patch_size=16, num_register_tokens=0, **kwargs):
  function vit_giant2 (line 400) | def vit_giant2(patch_size=16, num_register_tokens=0, **kwargs):
  function DINOv2 (line 417) | def DINOv2(model_name):

FILE: third_party/depth_anything_v2/dinov2_layers/attention.py
  class Attention (line 27) | class Attention(nn.Module):
    method __init__ (line 28) | def __init__(
    method forward (line 47) | def forward(self, x: Tensor) -> Tensor:
  class MemEffAttention (line 67) | class MemEffAttention(Attention):
    method forward (line 68) | def forward(self, x: Tensor, attn_bias=None) -> Tensor:

FILE: third_party/depth_anything_v2/dinov2_layers/block.py
  class Block (line 34) | class Block(nn.Module):
    method __init__ (line 35) | def __init__(
    method forward (line 80) | def forward(self, x: Tensor) -> Tensor:
  function drop_add_residual_stochastic_depth (line 108) | def drop_add_residual_stochastic_depth(
  function get_branges_scales (line 134) | def get_branges_scales(x, sample_drop_ratio=0.0):
  function add_residual (line 142) | def add_residual(x, brange, residual, residual_scale_factor, scaling_vec...
  function get_attn_bias_and_cat (line 163) | def get_attn_bias_and_cat(x_list, branges=None):
  function drop_add_residual_stochastic_depth_list (line 191) | def drop_add_residual_stochastic_depth_list(
  class NestedTensorBlock (line 218) | class NestedTensorBlock(Block):
    method forward_nested (line 219) | def forward_nested(self, x_list: List[Tensor]) -> List[Tensor]:
    method forward (line 259) | def forward(self, x_or_x_list):

FILE: third_party/depth_anything_v2/dinov2_layers/drop_path.py
  function drop_path (line 15) | def drop_path(x, drop_prob: float = 0.0, training: bool = False):
  class DropPath (line 27) | class DropPath(nn.Module):
    method __init__ (line 30) | def __init__(self, drop_prob=None):
    method forward (line 34) | def forward(self, x):

FILE: third_party/depth_anything_v2/dinov2_layers/layer_scale.py
  class LayerScale (line 15) | class LayerScale(nn.Module):
    method __init__ (line 16) | def __init__(
    method forward (line 26) | def forward(self, x: Tensor) -> Tensor:

FILE: third_party/depth_anything_v2/dinov2_layers/mlp.py
  class Mlp (line 17) | class Mlp(nn.Module):
    method __init__ (line 18) | def __init__(
    method forward (line 35) | def forward(self, x: Tensor) -> Tensor:

FILE: third_party/depth_anything_v2/dinov2_layers/patch_embed.py
  function make_2tuple (line 17) | def make_2tuple(x):
  class PatchEmbed (line 26) | class PatchEmbed(nn.Module):
    method __init__ (line 38) | def __init__(
    method forward (line 69) | def forward(self, x: Tensor) -> Tensor:
    method flops (line 88) | def flops(self) -> float:

FILE: third_party/depth_anything_v2/dinov2_layers/swiglu_ffn.py
  class SwiGLUFFN (line 13) | class SwiGLUFFN(nn.Module):
    method __init__ (line 14) | def __init__(
    method forward (line 29) | def forward(self, x: Tensor) -> Tensor:
  class SwiGLUFFNFused (line 45) | class SwiGLUFFNFused(SwiGLU):
    method __init__ (line 46) | def __init__(

FILE: third_party/depth_anything_v2/dpt.py
  function _make_fusion_block (line 12) | def _make_fusion_block(features, use_bn, size=None):
  class ConvBlock (line 24) | class ConvBlock(nn.Module):
    method __init__ (line 25) | def __init__(self, in_feature, out_feature):
    method forward (line 34) | def forward(self, x):
  class DPTHead (line 38) | class DPTHead(nn.Module):
    method __init__ (line 39) | def __init__(
    method forward (line 126) | def forward(self, out_features, patch_h, patch_w):
  class DepthAnythingV2 (line 164) | class DepthAnythingV2(nn.Module):
    method __init__ (line 165) | def __init__(
    method forward (line 194) | def forward(self, x):

FILE: third_party/depth_anything_v2/util/blocks.py
  function _make_scratch (line 4) | def _make_scratch(in_shape, out_shape, groups=1, expand=False):
  class ResidualConvUnit (line 37) | class ResidualConvUnit(nn.Module):
    method __init__ (line 40) | def __init__(self, features, activation, bn):
    method forward (line 68) | def forward(self, x):
  class FeatureFusionBlock (line 94) | class FeatureFusionBlock(nn.Module):
    method __init__ (line 97) | def __init__(
    method forward (line 135) | def forward(self, *xs, size=None):

FILE: third_party/depth_anything_v2/util/transform.py
  class Resize (line 5) | class Resize(object):
    method __init__ (line 8) | def __init__(
    method constrain_to_multiple_of (line 50) | def constrain_to_multiple_of(self, x, min_val=0, max_val=None):
    method get_size (line 61) | def get_size(self, width, height):
    method __call__ (line 108) | def __call__(self, sample):
  class NormalizeImage (line 132) | class NormalizeImage(object):
    method __init__ (line 135) | def __init__(self, mean, std):
    method __call__ (line 139) | def __call__(self, sample):
  class PrepareForNet (line 145) | class PrepareForNet(object):
    method __init__ (line 148) | def __init__(self):
    method __call__ (line 151) | def __call__(self, sample):
Condensed preview — 51 files, each showing path, character count, and a content snippet. Download the .json file or copy for the full structured content (811K chars).
[
  {
    "path": ".gitignore",
    "chars": 304,
    "preview": "data/\ndata\nwork_dirs/\nlocal_scripts/\nsync_files.sh\n*.mp4\n*draft*\n*.zip\n*.tar\n*.gz\n\n# media\n*.mp4\n*.png\n*.jpg\n*.html\n\n\nck"
  },
  {
    "path": ".vscode/settings.json",
    "chars": 1009,
    "preview": "{\n    // Automatically format using Black on save.\n    \"editor.formatOnSave\": true,\n    // Draw a ruler at Black's colum"
  },
  {
    "path": "LICENSE",
    "chars": 3998,
    "preview": "NVIDIA License\n\n1. Definitions\n\n“Licensor” means any person or entity that distributes its Work.\n“Work” means (a) the or"
  },
  {
    "path": "README.md",
    "chars": 4802,
    "preview": "<div align=\"center\">\n\n# **STORM**  \n### Spatio-Temporal Reconstruction Model for Large-Scale Outdoor Scenes  \n\n[Project "
  },
  {
    "path": "docs/WAYMO.md",
    "chars": 6781,
    "preview": "# Preparing Waymo Dataset\n> Note: This document is modified from [OmniRe](https://github.com/ziyc/drivestudio/blob/main/"
  },
  {
    "path": "docs/example_data/segment-990914685337955114_980_000_1000_000_with_camera_labels.json",
    "chars": 363355,
    "preview": "{\"dataset\": \"waymo\", \"scene_id\": 796, \"scene_name\": \"segment-990914685337955114_980_000_1000_000_with_camera_labels\", \"n"
  },
  {
    "path": "docs/example_data/waymo_train.txt",
    "chars": 774,
    "preview": "annotations/waymo/training/segment-10231929575853664160_1160_000_1180_000_with_camera_labels.json\nannotations/waymo/trai"
  },
  {
    "path": "engine_storm.py",
    "chars": 20859,
    "preview": "import datetime\nimport logging\nimport os\n\nimport numpy as np\nimport torch\nimport torch.nn.functional as F\nfrom skimage.m"
  },
  {
    "path": "extract_sky.py",
    "chars": 5232,
    "preview": "import argparse\nimport os\nfrom typing import Optional, Tuple\n\nimport numpy as np\nimport torch\nimport torch.utils.data\nim"
  },
  {
    "path": "inference.py",
    "chars": 7805,
    "preview": "import argparse\nimport copy\nimport datetime\nimport json\nimport logging\nimport math\nimport os\nimport time\n\nimport numpy a"
  },
  {
    "path": "main_storm.py",
    "chars": 22742,
    "preview": "import argparse\nimport copy\nimport datetime\nimport json\nimport logging\nimport math\nimport os\nimport sys\nimport time\n\nimp"
  },
  {
    "path": "preproc/utils.py",
    "chars": 4937,
    "preview": "# To track process without installing mmcv\n# Code is modified from mmcv.utils\nimport sys\nimport time\nfrom collections.ab"
  },
  {
    "path": "preproc/waymo_download.py",
    "chars": 2504,
    "preview": "import argparse\nimport os\nimport subprocess\nfrom concurrent.futures import ThreadPoolExecutor\nfrom typing import List\n\n\n"
  },
  {
    "path": "preproc/waymo_preprocess.py",
    "chars": 48613,
    "preview": "import json\nimport os\nimport time\n\nimport imageio\nimport imageio_ffmpeg as imageio_ffmpeg  # Ensure ffmpeg is installed\n"
  },
  {
    "path": "preprocess.py",
    "chars": 5317,
    "preview": "import argparse\nimport os\n\nimport numpy as np\n\nif __name__ == \"__main__\":\n    parser = argparse.ArgumentParser(descripti"
  },
  {
    "path": "requirements.txt",
    "chars": 314,
    "preview": "--extra-index-url https://download.pytorch.org/whl/cu121\ntorch==2.3.1\ntorchvision\ntimm\neinops\njaxtyping\nopencv-python\nma"
  },
  {
    "path": "requirements_data_preprocess.txt",
    "chars": 186,
    "preview": "--extra-index-url https://download.pytorch.org/whl/cu112\ntorch\nwaymo-open-dataset-tf-2-11-0==1.6.1\ntensorflow-gpu==2.11."
  },
  {
    "path": "storm/dataset/constants.py",
    "chars": 3623,
    "preview": "import numpy as np\n\nMEAN = [0.5, 0.5, 0.5]\nSTD = [0.5, 0.5, 0.5]\n\n\nIMGNET_MEAN = [0.485, 0.456, 0.406]\nIMGNET_STD = [0.2"
  },
  {
    "path": "storm/dataset/data_utils.py",
    "chars": 18031,
    "preview": "from typing import List, Tuple, Union\n\nimport numpy as np\nimport torch\nimport torch.nn.functional as F\nfrom scipy import"
  },
  {
    "path": "storm/dataset/samplers.py",
    "chars": 4493,
    "preview": "import itertools\nfrom typing import Any, Optional\n\nimport torch\nfrom torch.utils.data.sampler import Sampler\n\nimport sto"
  },
  {
    "path": "storm/dataset/storm_dataset.py",
    "chars": 34557,
    "preview": "import json\nimport logging\nimport os\nfrom typing import Any, Callable, Dict, List, Literal, Optional, Tuple, Union\n\nimpo"
  },
  {
    "path": "storm/models/__init__.py",
    "chars": 60,
    "preview": "from .storm import STORM_models\nfrom .vit import ViT_models\n"
  },
  {
    "path": "storm/models/decoder.py",
    "chars": 8083,
    "preview": "import logging\nfrom typing import Dict\n\nimport torch\nimport torch.nn as nn\nfrom einops import rearrange, repeat\nfrom tor"
  },
  {
    "path": "storm/models/embedders.py",
    "chars": 10050,
    "preview": "# --------------------------------------------------------\n# References:\n# timm: https://github.com/rwightman/pytorch-im"
  },
  {
    "path": "storm/models/layers.py",
    "chars": 12035,
    "preview": "import logging\nimport math\nfrom functools import partial\nfrom typing import List, Optional\n\nimport numpy as np\nimport to"
  },
  {
    "path": "storm/models/storm.py",
    "chars": 32727,
    "preview": "import torch\nimport torch.nn as nn\nfrom einops import rearrange, repeat\nfrom gsplat.rendering import rasterization\nfrom "
  },
  {
    "path": "storm/models/vit.py",
    "chars": 4375,
    "preview": "# --------------------------------------------------------\n# References:\n# timm: https://github.com/rwightman/pytorch-im"
  },
  {
    "path": "storm/utils/__init__.py",
    "chars": 0,
    "preview": ""
  },
  {
    "path": "storm/utils/distributed.py",
    "chars": 8673,
    "preview": "import logging\nimport os\nimport random\nimport re\nimport socket\nimport sys\nfrom typing import Dict, List\n\nimport torch\nim"
  },
  {
    "path": "storm/utils/logging.py",
    "chars": 11576,
    "preview": "import datetime\nimport functools\nimport json\nimport logging\nimport os\nimport sys\nimport time\nfrom collections import def"
  },
  {
    "path": "storm/utils/losses.py",
    "chars": 9636,
    "preview": "import torch\nimport torch.nn.functional as F\nfrom einops import rearrange\n\nfrom storm.dataset.constants import MEAN, STD"
  },
  {
    "path": "storm/utils/lpips.py",
    "chars": 6246,
    "preview": "\"\"\"Stripped version of https://github.com/richzhang/PerceptualSimilarity/tree/master/models\"\"\"\n\nimport hashlib\nimport os"
  },
  {
    "path": "storm/utils/lpips_loss.py",
    "chars": 2283,
    "preview": "import torch.nn as nn\nimport torch.nn.functional as F\nfrom einops import rearrange\n\nfrom .lpips import LPIPS\n\n\nclass RGB"
  },
  {
    "path": "storm/utils/misc.py",
    "chars": 9704,
    "preview": "import collections.abc\nimport datetime\nimport logging\nimport math\nimport os\nimport random\nfrom collections import Ordere"
  },
  {
    "path": "storm/visualization/annotation.py",
    "chars": 1568,
    "preview": "\"\"\"\nFrom https://github.com/dcharatan/pixelsplat/blob/main/src/visualization/annotation.py\n\"\"\"\n\nfrom pathlib import Path"
  },
  {
    "path": "storm/visualization/layout.py",
    "chars": 7512,
    "preview": "\"\"\"\nFrom https://github.com/dcharatan/pixelsplat/blob/main/src/visualization/layout.py\nThis file contains useful layout "
  },
  {
    "path": "storm/visualization/video_maker.py",
    "chars": 38098,
    "preview": "import logging\nimport time\n\nimport imageio\nimport numpy as np\nimport torch\nimport torch.nn.functional as F\nfrom einops i"
  },
  {
    "path": "storm/visualization/visualization_tools.py",
    "chars": 14957,
    "preview": "import logging\nimport os\nfrom collections import namedtuple\nfrom itertools import accumulate\nfrom typing import Optional"
  },
  {
    "path": "third_party/depth_anything_v2/dinov2.py",
    "chars": 15378,
    "preview": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n#\n# This source code is licensed under the Apache License, Version "
  },
  {
    "path": "third_party/depth_anything_v2/dinov2_layers/__init__.py",
    "chars": 382,
    "preview": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n#\n# This source code is licensed under the l"
  },
  {
    "path": "third_party/depth_anything_v2/dinov2_layers/attention.py",
    "chars": 2378,
    "preview": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n#\n# This source code is licensed under the l"
  },
  {
    "path": "third_party/depth_anything_v2/dinov2_layers/block.py",
    "chars": 9462,
    "preview": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n#\n# This source code is licensed under the l"
  },
  {
    "path": "third_party/depth_anything_v2/dinov2_layers/drop_path.py",
    "chars": 1160,
    "preview": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n#\n# This source code is licensed under the l"
  },
  {
    "path": "third_party/depth_anything_v2/dinov2_layers/layer_scale.py",
    "chars": 806,
    "preview": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n#\n# This source code is licensed under the l"
  },
  {
    "path": "third_party/depth_anything_v2/dinov2_layers/mlp.py",
    "chars": 1272,
    "preview": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n#\n# This source code is licensed under the l"
  },
  {
    "path": "third_party/depth_anything_v2/dinov2_layers/patch_embed.py",
    "chars": 2880,
    "preview": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n#\n# This source code is licensed under the l"
  },
  {
    "path": "third_party/depth_anything_v2/dinov2_layers/swiglu_ffn.py",
    "chars": 1859,
    "preview": "# Copyright (c) Meta Platforms, Inc. and affiliates.\n# All rights reserved.\n#\n# This source code is licensed under the l"
  },
  {
    "path": "third_party/depth_anything_v2/dpt.py",
    "chars": 6191,
    "preview": "import cv2\nimport torch\nimport torch.nn as nn\nimport torch.nn.functional as F\nfrom torchvision.transforms import Compose"
  },
  {
    "path": "third_party/depth_anything_v2/util/blocks.py",
    "chars": 4075,
    "preview": "import torch.nn as nn\n\n\ndef _make_scratch(in_shape, out_shape, groups=1, expand=False):\n    scratch = nn.Module()\n\n    o"
  },
  {
    "path": "third_party/depth_anything_v2/util/transform.py",
    "chars": 6152,
    "preview": "import cv2\nimport numpy as np\n\n\nclass Resize(object):\n    \"\"\"Resize sample to given size (width, height).\"\"\"\n\n    def __"
  }
]

// ... and 1 more files (download for full content)

About this extraction

This page contains the full source code of the NVlabs/GaussianSTORM GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 51 files (771.3 KB), approximately 276.9k tokens, and a symbol index with 374 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.

Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.

Copied to clipboard!