diff --git a/.gitignore b/.gitignore
index 1e0728c..983550d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,5 +1,6 @@
+Reservoir
RayLogs
__pycache__
*pyc
*egg-info
-.DS_Store
\ No newline at end of file
+.DS_Store
diff --git a/README.md b/README.md
index d42df10..08b00c0 100644
--- a/README.md
+++ b/README.md
@@ -1,23 +1,40 @@
-# RECOVER: sequential model optimization platform for combination drug repurposing identifies novel synergistic compounds *in vitro*
+# Machine Learning Driven Candidate Compound Generation for Drug Repurposing
+Based on RECOVER: sequential model optimization platform for combination drug repurposing identifies novel synergistic compounds *in vitro*
[](https://zenodo.org/badge/latestdoi/320327566)
-RECOVER is a platform that can guide wet lab experiments to quickly discover synergistic drug combinations active
-against a cancer cell line, requiring substantially less screening than an exhaustive evaluation
-([preprint](https://arxiv.org/abs/2202.04202)).
+This repository is an implementation of RECOVER, a platform that can guide wet lab experiments to quickly discover synergistic drug combinations,
+([preprint](https://arxiv.org/abs/2202.04202)), howerver instead of using an ensemble model to get Synergy predictions with uncertainty, we used multiple realization of a Bayesian Neural Network model.
+Since the weights are drawn from a distribution, they differ for every run of a trained model and hence give different results. The goal was to get a more precise uncertainty and achieve i quicker since the model doesn't have to be trained multiple times.
+
+

+
-
-## Environment setup
+## Weighted Uncertainty in Bayesian Neural Networks
+Incorporating weighted uncertainty into Bayesian Neural Networks (BNNs) enhances their predictive capabilities, allowing for a more nuanced understanding of model confidence. Inspired by the research outlined in the article, the implementation focused on introducing weighted uncertainty through a Bayesian framework. Implemetation is inspired by [bayes-by-backprop](https://github.com/nitarshan/bayes-by-backprop/tree/master)
+
+### Implementation Details
+1. **Layers Module:**
+ Implemented a versatile layers module within the `models/predictors.py` file, providing flexibility by incorporating both weighted uncertainty with and without dropout. Dropout method is inspired by [variational-dropout-sparsifies-dnn](https://github.com/bayesgroup/variational-dropout-sparsifies-dnn)
+
+2. **Bayesian Neural Network:**
+ Extended the predictive capabilities by incorporating a Bayesian Neural Network into the `models/predictors.py` file. This empowers the model to leverage uncertainty information for more informed predictions.
+
+3. **KL Loss Method:**
+ Implemented the Kullback-Leibler (KL) loss method, as suggested by the article, within the `models/predictors.py` file. This addition is crucial for training the Bayesian model effectively, ensuring convergence to a meaningful weight distribution.
-**Requirements**: Anaconda (https://www.anaconda.com/) and Git LFS (https://git-lfs.github.com/). Please make sure
-both are installed on the system prior to running installation.
+4. **Configuration Files:**
+ Introduced configuration files tailored for the Bayesian basic trainer and active trainer in the `config` directory. These files capture the necessary settings for training Bayesian models, providing a clear and organized structure for experimentation.
-**Installation**: enter the command `source install.sh` and follow the instructions. This will create a conda
-environment named **recover** and install all the required packages including the
-[reservoir](https://github.com/RECOVERcoalition/Reservoir) package that stores the primary data acquisition scripts.
+5. **Codebase Modifications:**
+ Ensured seamless integration by making necessary adjustments in the `train.py` and `models/model.py` files. These modifications align the training process with the new Bayesian approach, allowing for the proper utilization of weighted uncertainty.
-In case you have any issue with the installation procedure of the *reservoir*, you can access and download all files directly from this [google drive](https://drive.google.com/drive/folders/1MYeDoAi0-qnhSJTvs68r861iMOdoqYki?usp=share_link).
+The implemented changes collectively enhance the expressiveness and reliability of the Bayesian Neural Network, paving the way for improved model interpretability and performance. By enabling weighted uncertainty, the model gains the ability to assign varying degrees of importance to different data points during training, ultimately leading to more robust and accurate predictions.
+## Environment setup
+
+**Requirements and Installation**:
+For all the requirements and installation steps check th orginal RECOVER repository (https://github.com/RECOVERcoalition/Recover.git).
## Running the pipeline
@@ -31,9 +48,3 @@ For example, to run the pipeline with configuration from
the file `model_evaluation.py`, run `python train.py --config model_evaluation`.
Log files will automatically be created to save the results of the experiments.
-
-## Note
-
-This Recover repository is based on research funded by (or in part by) the Bill & Melinda Gates Foundation. The
-findings and conclusions contained within are those of the authors and do not necessarily reflect positions or policies
-of the Bill & Melinda Gates Foundation.
diff --git a/docs/images/ProjectInfographics.png b/docs/images/ProjectInfographics.png
new file mode 100644
index 0000000..60576e3
Binary files /dev/null and b/docs/images/ProjectInfographics.png differ
diff --git a/install.sh b/install.sh
index a5f9be3..d142d7b 100644
--- a/install.sh
+++ b/install.sh
@@ -17,10 +17,10 @@ pip install -U "ray[tune]"
pip install -e .
# Install rdkit
-conda install -c rdkit rdkit
+conda install conda-forge::rdkit
# Get Reservoir and install it in the environment (Git LFS NEEDED)
-git clone git@github.com:RECOVERcoalition/Reservoir.git
+git clone https://github.com/RECOVERcoalition/Reservoir.git
cd Reservoir/
python setup.py develop
cd ../
diff --git a/recover/Experiments/cell_line_transfer.json b/recover/Experiments/cell_line_transfer.json
new file mode 100644
index 0000000..9c3b584
--- /dev/null
+++ b/recover/Experiments/cell_line_transfer.json
@@ -0,0 +1,34 @@
+{"train/comb_r_squared": 0.015449524771236619, "train/loss_mse": 110.36199951171875, "train/loss_kl": 409.9633984375, "eval/loss_mean": 95.28712388105616, "eval/comb_r_squared": 0.14642973742465096, "eval/spearman": 0.2238272051010216, "training_iteration": 0, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-28-24", "timestamp": 1704634104, "time_this_iter_s": 143.88430285453796, "time_total_s": 143.88430285453796, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 143.88430285453796, "iterations_since_restore": 1}
+{"train/comb_r_squared": 0.2260465179735962, "train/loss_mse": 109.59003448486328, "train/loss_kl": 396.3694140625, "eval/loss_mean": 91.53424888789455, "eval/comb_r_squared": 0.16432716763952712, "eval/spearman": 0.21937427831735357, "training_iteration": 1, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-31-00", "timestamp": 1704634260, "time_this_iter_s": 156.3226387500763, "time_total_s": 300.20694160461426, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 300.20694160461426, "iterations_since_restore": 2}
+{"train/comb_r_squared": 0.2813824775555502, "train/loss_mse": 113.86182403564453, "train/loss_kl": 387.118046875, "eval/loss_mean": 85.9482451346407, "eval/comb_r_squared": 0.2114310392784406, "eval/spearman": 0.2303654869565011, "training_iteration": 2, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-33-39", "timestamp": 1704634419, "time_this_iter_s": 158.7505021095276, "time_total_s": 458.95744371414185, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 458.95744371414185, "iterations_since_restore": 3}
+{"train/comb_r_squared": 0.3382686853426401, "train/loss_mse": 103.4552001953125, "train/loss_kl": 378.7280078125, "eval/loss_mean": 82.99854742962381, "eval/comb_r_squared": 0.23603233235665574, "eval/spearman": 0.2389841080511105, "training_iteration": 3, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-36-19", "timestamp": 1704634579, "time_this_iter_s": 160.09564423561096, "time_total_s": 619.0530879497528, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 619.0530879497528, "iterations_since_restore": 4}
+{"train/comb_r_squared": 0.3765724449991669, "train/loss_mse": 101.11863708496094, "train/loss_kl": 369.70078125000003, "eval/loss_mean": 81.16353825342695, "eval/comb_r_squared": 0.2541211024471956, "eval/spearman": 0.2599135429805399, "training_iteration": 4, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-38-55", "timestamp": 1704634735, "time_this_iter_s": 155.95179200172424, "time_total_s": 775.004879951477, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 775.004879951477, "iterations_since_restore": 5}
+{"train/comb_r_squared": 0.4066166720995984, "train/loss_mse": 100.53007507324219, "train/loss_kl": 363.46500000000003, "eval/loss_mean": 79.90406425501591, "eval/comb_r_squared": 0.2688559729688075, "eval/spearman": 0.2691187051920877, "training_iteration": 5, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-41-37", "timestamp": 1704634897, "time_this_iter_s": 161.57470655441284, "time_total_s": 936.5795865058899, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 936.5795865058899, "iterations_since_restore": 6}
+{"train/comb_r_squared": 0.43069816282568235, "train/loss_mse": 87.88636779785156, "train/loss_kl": 354.6633203125, "eval/loss_mean": 80.88184873395939, "eval/comb_r_squared": 0.2637238333215575, "eval/spearman": 0.26893625550923916, "training_iteration": 6, "patience": 1, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-44-17", "timestamp": 1704635057, "time_this_iter_s": 159.3286337852478, "time_total_s": 1095.9082202911377, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 1095.9082202911377, "iterations_since_restore": 7}
+{"train/comb_r_squared": 0.44993219896259895, "train/loss_mse": 88.861572265625, "train/loss_kl": 348.1641015625, "eval/loss_mean": 79.58404121271344, "eval/comb_r_squared": 0.2698336914205834, "eval/spearman": 0.2799704411709241, "training_iteration": 7, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-46-55", "timestamp": 1704635215, "time_this_iter_s": 158.49367427825928, "time_total_s": 1254.401894569397, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 1254.401894569397, "iterations_since_restore": 8}
+{"train/comb_r_squared": 0.47002120756774224, "train/loss_mse": 83.16600799560547, "train/loss_kl": 341.0447265625, "eval/loss_mean": 80.67381002113572, "eval/comb_r_squared": 0.2671864368069063, "eval/spearman": 0.27701616690369474, "training_iteration": 8, "patience": 1, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-49-32", "timestamp": 1704635372, "time_this_iter_s": 156.92142271995544, "time_total_s": 1411.3233172893524, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 1411.3233172893524, "iterations_since_restore": 9}
+{"train/comb_r_squared": 0.4829103350820825, "train/loss_mse": 83.57489013671875, "train/loss_kl": 333.4216796875, "eval/loss_mean": 80.44195682946655, "eval/comb_r_squared": 0.2749368848657003, "eval/spearman": 0.2957481180924362, "training_iteration": 9, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-52-12", "timestamp": 1704635532, "time_this_iter_s": 159.93410277366638, "time_total_s": 1571.2574200630188, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 1571.2574200630188, "iterations_since_restore": 10}
+{"train/comb_r_squared": 0.49940609428752114, "train/loss_mse": 82.14898681640625, "train/loss_kl": 324.039375, "eval/loss_mean": 80.0346526589282, "eval/comb_r_squared": 0.27988393570001113, "eval/spearman": 0.2947978178173158, "training_iteration": 10, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-54-50", "timestamp": 1704635690, "time_this_iter_s": 157.99899578094482, "time_total_s": 1729.2564158439636, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 1729.2564158439636, "iterations_since_restore": 11}
+{"train/comb_r_squared": 0.51534675987852, "train/loss_mse": 84.8454360961914, "train/loss_kl": 317.9691796875, "eval/loss_mean": 78.03879397210468, "eval/comb_r_squared": 0.29155023340840763, "eval/spearman": 0.3021932501848421, "training_iteration": 11, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_13-57-35", "timestamp": 1704635855, "time_this_iter_s": 164.45159530639648, "time_total_s": 1893.70801115036, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 1893.70801115036, "iterations_since_restore": 12}
+{"train/comb_r_squared": 0.5295757760176844, "train/loss_mse": 82.83050537109375, "train/loss_kl": 315.0219140625, "eval/loss_mean": 81.19529485543038, "eval/comb_r_squared": 0.27511210445922396, "eval/spearman": 0.30080077700457286, "training_iteration": 12, "patience": 1, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-00-19", "timestamp": 1704636019, "time_this_iter_s": 164.2549970149994, "time_total_s": 2057.9630081653595, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 2057.9630081653595, "iterations_since_restore": 13}
+{"train/comb_r_squared": 0.5420451965218116, "train/loss_mse": 84.71276092529297, "train/loss_kl": 308.89046875, "eval/loss_mean": 83.28236603497662, "eval/comb_r_squared": 0.2775843663190931, "eval/spearman": 0.3049580238846896, "training_iteration": 13, "patience": 2, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-03-02", "timestamp": 1704636182, "time_this_iter_s": 162.29192543029785, "time_total_s": 2220.2549335956573, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 2220.2549335956573, "iterations_since_restore": 14}
+{"train/comb_r_squared": 0.5543834920428299, "train/loss_mse": 71.62467956542969, "train/loss_kl": 301.0115625, "eval/loss_mean": 79.10748072212755, "eval/comb_r_squared": 0.2847709756877419, "eval/spearman": 0.3208282808024226, "training_iteration": 14, "patience": 3, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-05-43", "timestamp": 1704636343, "time_this_iter_s": 161.0090811252594, "time_total_s": 2381.2640147209167, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 2381.2640147209167, "iterations_since_restore": 15}
+{"train/comb_r_squared": 0.56320192136032, "train/loss_mse": 67.60200500488281, "train/loss_kl": 299.05376953125, "eval/loss_mean": 80.44147699413492, "eval/comb_r_squared": 0.2850514162342789, "eval/spearman": 0.31912052979711186, "training_iteration": 15, "patience": 4, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-08-22", "timestamp": 1704636502, "time_this_iter_s": 158.8995041847229, "time_total_s": 2540.1635189056396, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 2540.1635189056396, "iterations_since_restore": 16}
+{"train/comb_r_squared": 0.5771519434243404, "train/loss_mse": 67.54704284667969, "train/loss_kl": 294.08392578125, "eval/loss_mean": 81.64227741458345, "eval/comb_r_squared": 0.2779503937754998, "eval/spearman": 0.3155991268507644, "training_iteration": 16, "patience": 5, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-11-04", "timestamp": 1704636664, "time_this_iter_s": 162.420827627182, "time_total_s": 2702.5843465328217, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 2702.5843465328217, "iterations_since_restore": 17}
+{"train/comb_r_squared": 0.5846149011163168, "train/loss_mse": 65.2916259765625, "train/loss_kl": 290.63740234375, "eval/loss_mean": 79.41038644592898, "eval/comb_r_squared": 0.2913372931399094, "eval/spearman": 0.32204327841314123, "training_iteration": 17, "patience": 6, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-13-47", "timestamp": 1704636827, "time_this_iter_s": 162.5832495689392, "time_total_s": 2865.167596101761, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 2865.167596101761, "iterations_since_restore": 18}
+{"train/comb_r_squared": 0.5961228195775146, "train/loss_mse": 58.651893615722656, "train/loss_kl": 284.70841796875, "eval/loss_mean": 82.17242408675892, "eval/comb_r_squared": 0.2953721781362317, "eval/spearman": 0.3363610623954079, "training_iteration": 18, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-16-31", "timestamp": 1704636991, "time_this_iter_s": 163.90049743652344, "time_total_s": 3029.0680935382843, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 3029.0680935382843, "iterations_since_restore": 19}
+{"train/comb_r_squared": 0.6021802601485702, "train/loss_mse": 54.68994903564453, "train/loss_kl": 280.09433593750003, "eval/loss_mean": 80.27968795163974, "eval/comb_r_squared": 0.30017349122362813, "eval/spearman": 0.33896690912272476, "training_iteration": 19, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-19-11", "timestamp": 1704637151, "time_this_iter_s": 160.2038218975067, "time_total_s": 3189.271915435791, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 3189.271915435791, "iterations_since_restore": 20}
+{"train/comb_r_squared": 0.6117430375698036, "train/loss_mse": 50.119667053222656, "train/loss_kl": 276.47845703125, "eval/loss_mean": 79.20794144442249, "eval/comb_r_squared": 0.29980796084887235, "eval/spearman": 0.33859457352512307, "training_iteration": 20, "patience": 1, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-21-53", "timestamp": 1704637313, "time_this_iter_s": 161.78541088104248, "time_total_s": 3351.0573263168335, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 3351.0573263168335, "iterations_since_restore": 21}
+{"train/comb_r_squared": 0.6187553369488822, "train/loss_mse": 49.36835861206055, "train/loss_kl": 273.41966796875, "eval/loss_mean": 80.46082970609633, "eval/comb_r_squared": 0.3049696746369777, "eval/spearman": 0.3487488101848472, "training_iteration": 21, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-24-34", "timestamp": 1704637474, "time_this_iter_s": 160.0764970779419, "time_total_s": 3511.1338233947754, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 3511.1338233947754, "iterations_since_restore": 22}
+{"train/comb_r_squared": 0.6275141071690646, "train/loss_mse": 45.27658462524414, "train/loss_kl": 269.07144531250003, "eval/loss_mean": 79.1395220804374, "eval/comb_r_squared": 0.3000923774084717, "eval/spearman": 0.34613433134568744, "training_iteration": 22, "patience": 1, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-27-16", "timestamp": 1704637636, "time_this_iter_s": 162.48844838142395, "time_total_s": 3673.6222717761993, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 3673.6222717761993, "iterations_since_restore": 23}
+{"train/comb_r_squared": 0.6353175635848735, "train/loss_mse": 41.391780853271484, "train/loss_kl": 264.73759765625, "eval/loss_mean": 79.27248784451182, "eval/comb_r_squared": 0.30835627973631063, "eval/spearman": 0.3448542747805079, "training_iteration": 23, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-29-56", "timestamp": 1704637796, "time_this_iter_s": 160.07728838920593, "time_total_s": 3833.6995601654053, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 3833.6995601654053, "iterations_since_restore": 24}
+{"train/comb_r_squared": 0.6418114329260496, "train/loss_mse": 40.91750717163086, "train/loss_kl": 263.315859375, "eval/loss_mean": 76.9703717439071, "eval/comb_r_squared": 0.3056316085143938, "eval/spearman": 0.34732940113077804, "training_iteration": 24, "patience": 1, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-32-38", "timestamp": 1704637958, "time_this_iter_s": 161.21173405647278, "time_total_s": 3994.911294221878, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 3994.911294221878, "iterations_since_restore": 25}
+{"train/comb_r_squared": 0.6489567098981721, "train/loss_mse": 39.97172164916992, "train/loss_kl": 258.65134765625, "eval/loss_mean": 78.08545860877403, "eval/comb_r_squared": 0.29798146399524517, "eval/spearman": 0.3447388844100889, "training_iteration": 25, "patience": 2, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-35-18", "timestamp": 1704638118, "time_this_iter_s": 159.83455896377563, "time_total_s": 4154.745853185654, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 4154.745853185654, "iterations_since_restore": 26}
+{"train/comb_r_squared": 0.6549173576168111, "train/loss_mse": 41.12854766845703, "train/loss_kl": 255.66658203125002, "eval/loss_mean": 78.76400294989647, "eval/comb_r_squared": 0.30479883559653437, "eval/spearman": 0.3471539604271878, "training_iteration": 26, "patience": 3, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-37-54", "timestamp": 1704638274, "time_this_iter_s": 155.8368899822235, "time_total_s": 4310.582743167877, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 4310.582743167877, "iterations_since_restore": 27}
+{"train/comb_r_squared": 0.6614944013625125, "train/loss_mse": 32.18921661376953, "train/loss_kl": 250.50275390625, "eval/loss_mean": 78.31713609472166, "eval/comb_r_squared": 0.30048048834710805, "eval/spearman": 0.35243411064341545, "training_iteration": 27, "patience": 4, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-40-28", "timestamp": 1704638428, "time_this_iter_s": 153.82273888587952, "time_total_s": 4464.405482053757, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 4464.405482053757, "iterations_since_restore": 28}
+{"train/comb_r_squared": 0.6675520417589595, "train/loss_mse": 39.24163055419922, "train/loss_kl": 248.05601562500001, "eval/loss_mean": 79.77512020889333, "eval/comb_r_squared": 0.3006209741925958, "eval/spearman": 0.3442628536262301, "training_iteration": 28, "patience": 5, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-42-58", "timestamp": 1704638578, "time_this_iter_s": 150.00056147575378, "time_total_s": 4614.4060435295105, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 4614.4060435295105, "iterations_since_restore": 29}
+{"train/comb_r_squared": 0.6715732007336567, "train/loss_mse": 30.475187301635742, "train/loss_kl": 242.19337890625002, "eval/loss_mean": 79.04294984874917, "eval/comb_r_squared": 0.3008036428935405, "eval/spearman": 0.34456580623761607, "training_iteration": 29, "patience": 6, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-46-17", "timestamp": 1704638777, "time_this_iter_s": 198.56669092178345, "time_total_s": 4812.972734451294, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 4812.972734451294, "iterations_since_restore": 30}
+{"train/comb_r_squared": 0.6782962787935601, "train/loss_mse": 34.40483093261719, "train/loss_kl": 240.43775390625, "eval/loss_mean": 81.1931834715266, "eval/comb_r_squared": 0.2874870289294936, "eval/spearman": 0.33898326978386595, "training_iteration": 30, "patience": 7, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-48-52", "timestamp": 1704638932, "time_this_iter_s": 155.52233004570007, "time_total_s": 4968.495064496994, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 4968.495064496994, "iterations_since_restore": 31}
+{"train/comb_r_squared": 0.6834591769226075, "train/loss_mse": 24.097864151000977, "train/loss_kl": 237.07974609375, "eval/loss_mean": 79.10270213761856, "eval/comb_r_squared": 0.2924815492467803, "eval/spearman": 0.3377369906460533, "training_iteration": 31, "patience": 8, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-51-29", "timestamp": 1704639089, "time_this_iter_s": 157.18159747123718, "time_total_s": 5125.676661968231, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 5125.676661968231, "iterations_since_restore": 32}
+{"train/comb_r_squared": 0.6875979851537927, "train/loss_mse": 34.09225082397461, "train/loss_kl": 233.3253125, "eval/loss_mean": 81.69065680870644, "eval/comb_r_squared": 0.2852951535693187, "eval/spearman": 0.34057510230085325, "training_iteration": 32, "patience": 9, "all_space_explored": 0, "done": false, "trial_id": "41fb8_00000", "date": "2024-01-07_14-53-59", "timestamp": 1704639239, "time_this_iter_s": 149.85591769218445, "time_total_s": 5275.532579660416, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 5275.532579660416, "iterations_since_restore": 33}
+{"train/comb_r_squared": 0.6931006149227487, "train/loss_mse": 35.53768539428711, "train/loss_kl": 230.18267578125, "eval/loss_mean": 81.7007842941029, "eval/comb_r_squared": 0.2897756627004927, "eval/spearman": 0.34531051340557667, "training_iteration": 33, "patience": 10, "all_space_explored": 0, "test/loss_mean/mean": 103.13138831002371, "test/loss_mean/std": 2.271206676849314, "test/comb_r_squared/mean": 0.33120748776802966, "test/comb_r_squared/std": 0.0038900966229590012, "test/spearman/mean": 0.31826714606551737, "test/spearman/std": 0.003291218974451178, "synergy_mean": [13.707944869995117, 9.387410163879395, 15.816587448120117, 11.884981155395508, 8.33072280883789, 17.506267547607422, 19.61160659790039, 10.546819686889648, 9.960474014282227, 19.0495662689209, 20.757083892822266, 11.133255004882812, 12.176445960998535, 7.632698059082031, 12.376676559448242, 30.9497013092041, 12.897112846374512, 14.950384140014648, 10.508085250854492, 9.660455703735352, 13.025741577148438, 5.755082130432129, 12.256385803222656, 17.647470474243164, 9.584044456481934, 11.420162200927734, 22.018835067749023, 10.644079208374023, 15.975088119506836, 14.74767017364502, 16.186670303344727, 14.334096908569336, 13.55901050567627, 15.82660961151123, 9.973214149475098, 23.997451782226562, 25.273067474365234, 12.576692581176758, 15.312515258789062, 19.908130645751953, 11.085592269897461, 13.21088981628418, 25.104047775268555, 28.788442611694336, 14.807723999023438, 10.17214584350586, 7.348047733306885, 10.89961051940918, 9.86325740814209, 20.576967239379883, 14.023170471191406, 33.415687561035156, 15.595884323120117, 12.31785774230957, 33.33051681518555, 11.629629135131836, 15.330619812011719, 5.808114051818848, 11.907793045043945, 47.15270233154297, 11.953969955444336, 13.13683032989502, 16.264419555664062, 9.208852767944336, 17.78765869140625, 21.494869232177734, 8.324811935424805, 16.295419692993164, 7.228250026702881, 17.95867919921875, 9.344734191894531, 22.811891555786133, 9.883091926574707, 15.378631591796875, 14.214540481567383, 10.168265342712402, 64.06156921386719, 14.123838424682617, 10.749763488769531, 62.827308654785156, 89.4012222290039, 18.708187103271484, 9.704833984375, 11.130032539367676, 10.175921440124512, 11.90483283996582, 15.364117622375488, 13.338961601257324, 19.873640060424805, 12.139254570007324, 30.612762451171875, 11.210982322692871, 13.080068588256836, 13.174240112304688, 14.90827751159668, 9.273128509521484, 14.11163330078125, 16.86115074157715, 16.369327545166016, 34.773468017578125, 20.791723251342773, 15.030054092407227, 17.22995948791504, 7.981823921203613, 9.491585731506348, 7.564149379730225, 20.1334228515625, 12.050522804260254, 12.552654266357422, 8.82444953918457, 8.518865585327148, 9.469095230102539, 13.485188484191895, 17.20415687561035, 15.738078117370605, 13.1532564163208, 8.771599769592285, 14.881001472473145, 9.554229736328125, 11.176251411437988, 10.587285995483398, 15.4661283493042, 9.901826858520508, 9.91331672668457, 15.799814224243164, 9.926993370056152, 8.59605884552002, 17.545602798461914, 13.25268840789795, 10.771175384521484, 5.572765350341797, 16.185344696044922, 20.0522403717041, 8.257181167602539, 10.015582084655762, 12.747420310974121, 9.79532527923584, 10.149730682373047, 20.99744415283203, 5.711872100830078, 10.056679725646973, 9.56894588470459, 27.16391372680664, 17.2860050201416, 18.69927215576172, 12.400410652160645, 20.895681381225586, 15.832000732421875, 11.553346633911133, 9.999761581420898, 17.173295974731445, 15.081548690795898, 6.1196818351745605, 9.145591735839844, 16.40738296508789, 29.816028594970703, 13.845293045043945, 12.51208209991455, 14.79675006866455, 11.3375883102417, 12.228208541870117, 14.670555114746094, 11.798466682434082, 8.217707633972168, 17.670000076293945, 13.667449951171875, 9.90631103515625, 18.473827362060547, 8.340383529663086, 93.51719665527344, 20.5208740234375, 13.409693717956543, 7.444777488708496, 11.021135330200195, 10.238786697387695, 10.088743209838867, 15.3882417678833, 26.680023193359375, 16.29608917236328, 27.145374298095703, 102.982421875, 12.219160079956055, 15.302946090698242, 9.941635131835938, 10.870529174804688, 13.341146469116211, 31.557357788085938, 11.360034942626953, 12.412818908691406, 16.448593139648438, 9.972034454345703, 8.878524780273438, 15.415783882141113, 8.976696968078613, 7.5504350662231445, 15.46039867401123, 11.168508529663086, 36.5836296081543, 10.381044387817383, 15.580793380737305, 33.205787658691406, 11.059313774108887, 16.68872833251953, 17.11878776550293, 14.374104499816895, 9.817763328552246, 8.986479759216309, 12.828042984008789, 16.345272064208984, 7.865692138671875, 7.6244916915893555, 32.860801696777344, 11.643945693969727, 25.07892417907715, 12.464057922363281, 10.836055755615234, 9.341231346130371, 17.366296768188477, 13.007540702819824, 20.268095016479492, 24.129405975341797, 15.1251802444458, 11.12087345123291, 10.148921012878418, 14.931164741516113, 11.124979019165039, 10.889927864074707, 17.008508682250977, 8.325770378112793, 10.5012788772583, 10.109475135803223, 15.354939460754395, 11.921287536621094, 15.204937934875488, 10.49760627746582, 48.334136962890625, 8.384519577026367, 9.950091361999512, 11.527796745300293, 5.678576469421387, 14.301597595214844, 19.9354190826416, 10.961867332458496, 10.760824203491211, 18.343029022216797, 6.560385704040527, 25.543466567993164, 15.817509651184082, 9.738077163696289, 14.3783597946167, 11.047741889953613, 8.060262680053711, 20.208600997924805, 6.364017963409424, 8.171305656433105, 10.237128257751465, 15.428507804870605, 22.995559692382812, 26.397897720336914, 17.054624557495117, 18.97854232788086, 13.708661079406738, 25.746166229248047, 14.108790397644043, 7.6737565994262695, 9.331457138061523, 13.87914752960205, 20.25056266784668, 18.590579986572266, 13.558082580566406, 11.428296089172363, 19.31043815612793, 10.98715877532959, 9.443115234375, 18.020244598388672, 20.141925811767578, 11.605466842651367, 11.36445426940918, 13.605900764465332, 5.690800666809082, 10.277976989746094, 21.561182022094727, 48.59651565551758, 13.643940925598145, 38.588844299316406, 9.1558256149292, 8.542675971984863, 12.135961532592773, 7.0530524253845215, 17.973712921142578, 16.22256851196289, 19.708740234375, 13.594690322875977, 27.090707778930664, 6.762518405914307, 11.470816612243652, 17.98883628845215, 11.546478271484375, 19.15097427368164, 15.327644348144531, 7.9679388999938965, 17.103731155395508, 14.081975936889648, 8.13209342956543, 8.197909355163574, 11.07898998260498, 15.710676193237305, 11.919367790222168, 10.016214370727539, 6.166386604309082, 22.089210510253906, 19.584386825561523, 12.590574264526367, 9.411979675292969, 15.215799331665039, 8.974621772766113, 15.831155776977539, 8.659948348999023, 18.40312385559082, 22.1583309173584, 11.107648849487305, 7.453167915344238, 20.7395076751709, 13.88911247253418, 22.693979263305664, 8.341797828674316, 10.448307037353516, 24.207735061645508, 12.647098541259766, 29.824304580688477, 8.511068344116211, 13.585233688354492, 13.332590103149414, 24.845935821533203, 10.434834480285645, 14.477459907531738, 13.4619779586792, 16.377246856689453, 14.820988655090332, 13.850351333618164, 9.08393383026123, 14.712541580200195, 16.356975555419922, 7.390183448791504, 18.000465393066406, 10.045289993286133, 10.255304336547852, 9.018796920776367, 16.765613555908203, 5.427630424499512, 18.203441619873047, 19.901573181152344, 14.78930950164795, 12.244649887084961, 9.326651573181152, 15.534998893737793, 11.889547348022461, 11.476129531860352, 7.534532070159912, 18.636913299560547, 9.518900871276855, 14.92518138885498, 9.57946491241455, 78.21987915039062, 10.70348072052002, 11.042007446289062, 12.602761268615723, 16.471759796142578, 9.759927749633789, 9.970369338989258, 22.909284591674805, 13.06708812713623, 21.539424896240234, 19.259288787841797, 50.446449279785156, 13.443636894226074, 16.60696029663086, 6.186068534851074, 12.448431968688965, 14.204591751098633, 9.205260276794434, 12.40317440032959, 17.51862907409668, 14.461221694946289, 14.138711929321289, 19.47582244873047, 10.340702056884766, 21.616186141967773, 16.44515609741211, 15.794720649719238, 10.665413856506348, 16.48739242553711, 8.883366584777832, 26.616064071655273, 5.86939811706543, 9.31617546081543, 11.10432243347168, 14.075654983520508, 15.558682441711426, 8.344709396362305, 16.60369873046875, 9.85130500793457, 20.399580001831055, 24.271957397460938, 8.430438995361328, 10.495576858520508, 10.69074821472168, 15.925488471984863, 10.759885787963867, 10.517065048217773, 21.25577163696289, 10.609590530395508, 11.267583847045898, 13.631823539733887, 25.43194007873535, 17.662656784057617, 13.537582397460938, 15.166186332702637, 9.315717697143555, 18.66810417175293, 25.80573081970215, 12.616881370544434, 10.540719985961914, 12.502840042114258, 7.440709114074707, 18.61453628540039, 13.618435859680176, 25.338279724121094, 23.112201690673828, 10.784696578979492, 21.451618194580078, 10.434488296508789, 9.86193561553955, 16.056068420410156, 9.887240409851074, 9.196159362792969, 14.918919563293457, 20.039709091186523, 12.139979362487793, 10.336799621582031, 17.78900146484375, 12.250883102416992, 13.870104789733887, 68.58336639404297, 10.822247505187988, 16.808645248413086, 11.214231491088867, 8.865669250488281, 8.404035568237305, 13.735437393188477, 10.227577209472656, 6.568800449371338, 12.18752384185791, 9.425950050354004, 9.576208114624023, 22.102432250976562, 8.080526351928711, 15.358088493347168, 8.372485160827637, 9.421896934509277, 11.850874900817871, 9.7850341796875, 9.699773788452148, 42.56702423095703, 8.611449241638184, 11.309662818908691, 9.59350299835205, 15.578620910644531, 10.886659622192383, 10.465585708618164, 11.723095893859863, 26.267398834228516, 24.745250701904297, 10.151649475097656, 11.965234756469727, 17.41098976135254, 17.19820785522461, 8.120710372924805, 14.413660049438477, 10.4092378616333, 13.560907363891602, 12.718379974365234, 16.68138313293457, 18.659282684326172, 17.060293197631836, 17.98188591003418, 16.35045623779297, 6.7195868492126465, 13.837038040161133, 11.215599060058594, 44.960960388183594, 20.134546279907227, 20.016508102416992, 11.954134941101074, 15.519320487976074, 20.135921478271484, 11.792486190795898, 10.067705154418945, 9.519041061401367, 14.780426025390625, 11.269540786743164, 5.996702671051025, 10.911299705505371, 10.374180793762207, 15.925369262695312, 26.88149070739746, 19.0787296295166, 16.717937469482422, 19.840007781982422, 13.015161514282227, 13.811688423156738, 26.917369842529297, 28.344470977783203, 14.300132751464844, 11.604581832885742, 22.684505462646484, 24.754457473754883, 19.5256404876709, 10.79011344909668, 10.252470016479492, 10.962924003601074, 12.700334548950195, 12.53483772277832, 10.309002876281738, 9.653303146362305, 16.34408950805664, 29.83115577697754, 11.30150318145752, 10.426956176757812, 10.68559741973877, 12.853410720825195, 26.78310775756836, 24.56682777404785, 19.357776641845703, 13.312174797058105, 7.665346622467041, 15.262689590454102, 9.077895164489746, 13.204977035522461, 19.425891876220703, 12.38105297088623, 16.02117156982422, 9.195446014404297, 16.94485092163086, 14.0127534866333, 14.772120475769043, 14.395721435546875, 12.065485000610352, 9.661178588867188, 18.30839729309082, 7.680795192718506, 12.680356979370117, 10.548293113708496, 8.668851852416992, 11.432743072509766, 13.585362434387207, 22.608478546142578, 12.929502487182617, 10.085039138793945, 32.17640686035156, 12.62848949432373, 14.600689888000488, 8.549358367919922, 16.353221893310547, 12.711755752563477, 12.526585578918457, 25.084148406982422, 6.0958685874938965, 12.01554012298584, 9.853891372680664, 39.345306396484375, 20.060733795166016, 12.28681755065918, 8.413267135620117, 14.308683395385742, 10.788248062133789, 9.092033386230469, 17.477794647216797, 10.068988800048828, 13.578648567199707, 14.406682968139648, 17.0902099609375, 26.9329891204834, 14.71796703338623, 13.77490520477295, 16.72829246520996, 11.771109580993652, 11.232672691345215, 9.836660385131836, 13.218050956726074, 10.531168937683105, 10.243748664855957, 12.409563064575195, 10.768399238586426, 27.525821685791016, 8.259037017822266, 11.000005722045898, 18.575716018676758, 7.967062950134277, 13.983006477355957, 10.026092529296875, 9.327390670776367, 15.824748039245605, 17.479848861694336, 13.82435417175293, 15.44285774230957, 9.191786766052246, 17.809650421142578, 68.93174743652344, 10.819524765014648, 11.706092834472656, 11.482560157775879, 8.969144821166992, 13.202592849731445, 22.19428825378418, 14.715359687805176, 11.983479499816895, 19.567127227783203, 7.490346431732178, 13.232057571411133, 9.653417587280273, 44.84577178955078, 10.477874755859375, 12.26766586303711, 10.859275817871094, 13.24047565460205, 13.79936408996582, 70.78186798095703, 9.061620712280273, 17.357646942138672, 15.979601860046387, 14.071969985961914, 11.619389533996582, 16.551944732666016, 16.060649871826172, 11.281487464904785, 11.521397590637207, 16.350011825561523, 7.938977241516113, 48.05953598022461, 12.409050941467285, 15.471954345703125, 11.92332649230957, 7.524879455566406, 4.073990821838379, 11.532452583312988, 11.474032402038574, 8.555173873901367, 15.407560348510742, 10.828454971313477, 11.828635215759277, 8.932230949401855, 8.755685806274414, 17.55221176147461, 9.054624557495117, 16.866212844848633, 9.050044059753418, 27.86541175842285, 14.948206901550293, 11.537233352661133, 33.4778938293457, 11.535820960998535, 10.07649040222168, 53.918739318847656, 20.423198699951172, 16.654705047607422, 8.225507736206055, 15.24574089050293, 7.846285820007324, 8.954638481140137, 30.088253021240234, 18.992427825927734, 14.068929672241211, 18.117610931396484, 16.818660736083984, 30.539653778076172, 16.282052993774414, 11.462237358093262, 7.730550289154053, 16.129840850830078, 15.287750244140625, 8.737371444702148, 9.720842361450195, 19.438312530517578, 6.832089424133301, 8.12133502960205, 16.08396339416504, 9.774642944335938, 8.801480293273926, 6.427411079406738, 5.907061576843262, 12.22770881652832, 16.23640251159668, 11.303868293762207, 58.446990966796875, 8.868831634521484, 26.362808227539062, 15.993374824523926, 20.403902053833008, 10.247491836547852, 19.100933074951172, 8.88925552368164, 14.815320014953613, 10.561563491821289, 10.008132934570312, 13.620721817016602, 2.9907374382019043, 15.167631149291992, 10.126984596252441, 11.919294357299805, 11.45983600616455, 9.60876750946045, 8.023397445678711, 10.592061042785645, 15.0520658493042, 14.770288467407227, 12.374041557312012, 11.011175155639648, 14.484617233276367, 9.94626235961914, 10.839248657226562, 9.803155899047852, 14.857836723327637, 10.672185897827148, 10.635736465454102, 9.052149772644043, 22.82808494567871, 42.6623649597168, 9.406854629516602, 11.048233032226562, 11.437576293945312, 10.215548515319824, 5.1689252853393555, 12.261999130249023, 11.877387046813965, 10.340131759643555, 9.583843231201172, 12.102909088134766, 8.949277877807617, 9.654108047485352, 8.619375228881836, 16.223617553710938, 18.42261505126953, 8.244241714477539, 8.076939582824707, 10.478998184204102, 9.284905433654785, 25.52560806274414, 19.588659286499023, 7.266892433166504, 15.87354850769043, 78.15017700195312, 46.41078567504883, 14.60442066192627, 11.471229553222656, 9.25221061706543, 9.582671165466309, 8.135107040405273, 9.666318893432617, 9.999242782592773, 14.215904235839844, 13.34630012512207, 11.31696605682373, 6.191617488861084, 9.142988204956055, 10.370933532714844, 20.691883087158203, 8.781774520874023, 10.595333099365234, 14.720109939575195, 18.457107543945312, 19.24156379699707, 9.164758682250977, 13.165283203125, 14.835596084594727, 10.021550178527832, 14.279325485229492, 16.170848846435547, 8.213533401489258, 14.773694038391113, 16.84395980834961, 10.018330574035645, 11.73359203338623, 9.361223220825195, 9.799983978271484, 14.886088371276855, 14.772730827331543, 17.74510955810547, 16.777236938476562, 8.742238998413086, 13.75500774383545, 12.655329704284668, 19.925710678100586, 11.32948112487793, 12.20787525177002, 8.234783172607422, 17.14908218383789, 10.728952407836914, 11.077476501464844, 20.700000762939453, 9.301599502563477, 20.18134117126465, 7.991039276123047, 12.632536888122559, 18.285757064819336, 13.811676025390625, 14.64441204071045, 11.165472030639648, 14.789591789245605, 6.425545692443848, 12.390314102172852, 10.2169189453125, 9.838608741760254, 11.502689361572266, 16.52617835998535, 20.292797088623047, 15.589269638061523, 12.806012153625488, 10.013669967651367, 19.050222396850586, 11.565458297729492, 13.787736892700195, 16.311079025268555, 15.946874618530273, 24.11881446838379, 12.532376289367676, 10.809837341308594, 11.836796760559082, 7.949362754821777, 21.353666305541992, 13.272453308105469, 14.644749641418457, 15.8328275680542, 15.811001777648926, 7.0588555335998535, 13.11327838897705, 8.959436416625977, 11.365877151489258, 10.092240333557129, 17.577312469482422, 13.493985176086426, 14.315282821655273, 9.570024490356445, 12.50963306427002, 8.438180923461914, 15.863142013549805, 9.04515552520752, 11.965803146362305, 30.99375343322754, 12.112577438354492, 13.486238479614258, 29.827594757080078, 11.090730667114258, 9.560760498046875, 16.198293685913086, 28.881473541259766, 5.761119365692139, 14.413348197937012, 9.839909553527832, 65.12010955810547, 7.1289472579956055, 8.739609718322754, 9.243257522583008, 20.082338333129883, 9.910002708435059, 12.966105461120605, 10.086160659790039, 12.631101608276367, 8.576647758483887, 21.623977661132812, 15.262476921081543, 12.778055191040039, 16.162548065185547, 21.770938873291016, 8.087701797485352, 10.409416198730469, 13.364004135131836, 13.121256828308105, 12.06686782836914, 7.969365119934082, 11.816156387329102, 10.378581047058105, 10.660638809204102, 9.0692138671875, 14.7899751663208, 11.08611011505127, 22.22061538696289, 14.126111030578613, 11.265312194824219, 10.595542907714844, 29.144506454467773, 8.959811210632324, 8.072089195251465, 12.936431884765625, 9.789167404174805, 23.32254409790039, 16.909650802612305, 14.729700088500977, 10.132050514221191, 11.423639297485352, 10.669988632202148, 11.136080741882324, 8.236164093017578, 14.61438274383545, 6.384828567504883, 7.909959316253662, 9.432581901550293, 16.372882843017578, 39.35330581665039, 14.855958938598633, 14.887331008911133, 11.10957145690918, 10.491087913513184, 14.060613632202148, 10.01490592956543, 17.082563400268555, 27.267902374267578, 14.193161010742188, 11.796338081359863, 11.883871078491211, 19.198902130126953, 12.024129867553711, 18.787147521972656, 10.3296537399292, 12.707303047180176, 9.490693092346191, 9.401495933532715, 15.486173629760742, 46.0803108215332, 25.370403289794922, 9.884122848510742, 10.112833023071289, 15.153813362121582, 13.977434158325195, 18.190587997436523, 23.415325164794922, 11.0693941116333, 14.766822814941406, 10.846254348754883, 14.022100448608398, 11.05448055267334, 23.194425582885742, 17.215776443481445, 17.691987991333008, 11.13007926940918, 17.918479919433594, 8.670702934265137, 8.06328010559082, 5.712665557861328, 13.050382614135742, 11.596453666687012, 10.643136978149414, 8.257059097290039, 10.501871109008789, 8.800995826721191, 26.784582138061523, 19.83711051940918, 14.828859329223633, 31.313232421875, 17.28972053527832, 14.821647644042969, 19.0828857421875, 9.034429550170898, 13.637965202331543, 11.391385078430176, 11.17576789855957, 17.716339111328125, 36.09929275512695, 10.693140029907227, 23.569122314453125, 16.372140884399414, 14.5205659866333, 18.159242630004883, 13.221179008483887, 16.263233184814453, 13.875593185424805, 10.835478782653809, 41.132869720458984, 13.350135803222656, 14.072586059570312, 11.179330825805664, 20.451541900634766, 12.05805778503418, 26.83954429626465, 30.6408634185791, 11.2935791015625, 9.593259811401367, 16.256595611572266, 16.191181182861328, 12.648836135864258, 10.799858093261719, 7.303346157073975, 13.531923294067383, 21.424755096435547, 60.793495178222656, 23.453128814697266, 10.878496170043945, 12.876134872436523, 7.669913291931152, 13.468561172485352, 11.045061111450195, 36.5123291015625, 18.175281524658203, 38.817115783691406, 10.97663688659668, 18.876283645629883, 14.371025085449219, 19.946500778198242, 10.223002433776855, 17.629667282104492, 9.02413272857666, 22.3048095703125, 9.199755668640137, 10.34074592590332, 13.491683959960938, 10.475600242614746, 9.88515853881836, 10.034872055053711, 14.93364429473877, 11.918281555175781, 56.45432662963867, 26.36809730529785, 12.725322723388672, 14.329011917114258, 33.76342010498047, 14.311517715454102, 10.292287826538086, 12.730950355529785, 21.973468780517578, 12.436639785766602, 13.668986320495605, 10.506561279296875, 8.683612823486328, 11.680868148803711, 11.147662162780762, 10.506746292114258, 11.926631927490234, 11.71599292755127, 12.957768440246582, 11.103933334350586, 17.413415908813477, 12.73826789855957, 15.874412536621094, 14.153691291809082, 10.882772445678711, 8.345279693603516, 8.89142894744873, 9.209737777709961, 9.080945014953613, 12.343828201293945, 14.705477714538574, 8.50239086151123, 15.13140869140625, 13.241922378540039, 11.005611419677734, 10.134765625, 17.94497299194336, 8.982556343078613, 16.467029571533203, 17.025920867919922, 15.21532917022705, 23.364559173583984, 10.621667861938477, 29.61941909790039, 8.90846061706543, 8.905462265014648, 9.668848037719727, 22.41015625, 11.110393524169922, 8.354655265808105, 8.942338943481445, 11.668010711669922, 20.12856674194336, 6.344058036804199, 19.670337677001953, 9.641414642333984, 17.831058502197266, 34.363563537597656, 10.717035293579102, 11.850973129272461, 5.820862293243408, 23.766271591186523, 13.932336807250977, 28.038183212280273, 9.294573783874512, 20.738174438476562, 13.840871810913086, 10.106484413146973, 11.874665260314941, 15.782150268554688, 10.083211898803711, 6.3054585456848145, 25.039539337158203, 10.156200408935547, 13.536520004272461, 16.098186492919922, 17.881484985351562, 13.695318222045898, 7.893669128417969, 9.921978950500488, 10.943016052246094, 8.841400146484375, 43.94654083251953, 13.27275562286377, 15.529142379760742, 14.363856315612793, 16.67610740661621, 22.739421844482422, 13.808527946472168, 7.735645294189453, 9.051612854003906, 8.609621047973633, 9.670415878295898, 8.92127799987793, 7.623161315917969, 17.944643020629883, 43.107452392578125, 8.073097229003906, 8.771321296691895, 11.303369522094727, 10.645513534545898, 13.829322814941406, 34.77820587158203, 7.496852874755859, 16.445781707763672, 13.1283597946167, 12.60814094543457, 13.248919486999512, 12.806622505187988, 8.403448104858398, 7.031019687652588, 14.559240341186523, 17.18924331665039, 9.876341819763184, 13.24000358581543, 21.121610641479492, 12.645724296569824, 16.74738121032715, 25.575321197509766, 14.406332015991211, 5.757392883300781, 15.647659301757812, 9.1602783203125, 17.110370635986328, 10.980888366699219, 15.432184219360352, 26.343158721923828, 13.562678337097168, 17.288883209228516, 7.224156856536865, 20.577136993408203, 13.759175300598145, 10.649874687194824, 13.058412551879883, 13.96025562286377, 13.098920822143555, 13.407565116882324, 14.22886848449707, 11.73886489868164, 11.159805297851562, 15.239028930664062, 10.10838508605957, 17.784286499023438, 10.372888565063477, 12.496552467346191, 8.886507034301758, 25.067405700683594, 8.57197380065918, 8.596245765686035, 17.7867431640625, 9.608980178833008, 9.207182884216309, 14.224090576171875, 31.238269805908203, 9.619757652282715, 15.28685188293457, 8.697011947631836, 7.888482570648193, 9.417927742004395, 25.160667419433594, 13.065774917602539, 14.103915214538574, 14.370915412902832, 12.067388534545898, 11.665817260742188, 12.520939826965332, 17.343000411987305, 10.62835693359375, 9.960773468017578, 15.086679458618164, 12.938026428222656, 8.728734970092773, 8.721892356872559, 15.967218399047852, 14.581744194030762, 10.186197280883789, 9.808969497680664, 10.768515586853027, 18.48509407043457, 9.019465446472168, 13.236259460449219, 15.39977741241455, 43.162315368652344, 16.433246612548828, 21.591411590576172, 10.286554336547852, 11.78030014038086, 13.265172958374023, 24.330883026123047, 15.917825698852539, 15.460477828979492, 11.366032600402832, 11.872804641723633, 13.709966659545898, 10.025946617126465, 10.756631851196289, 13.061874389648438, 9.561668395996094, 17.654090881347656, 18.430173873901367, 11.312980651855469, 11.644491195678711, 10.319169998168945, 13.681370735168457, 13.585370063781738, 10.444621086120605, 10.978907585144043, 15.846989631652832, 27.876840591430664, 41.776771545410156, 8.901993751525879, 8.421408653259277, 5.9252610206604, 24.754199981689453, 10.608214378356934, 6.121981143951416, 34.157859802246094, 12.899833679199219, 10.209417343139648, 57.57892608642578, 12.410506248474121, 9.781163215637207, 10.443975448608398, 12.615007400512695, 13.739253044128418, 12.090998649597168, 15.787129402160645, 7.395619869232178, 17.04016876220703, 10.07495403289795, 13.623054504394531, 10.164414405822754, 56.099205017089844, 11.1383695602417, 9.675832748413086, 23.349964141845703, 9.360923767089844, 19.339574813842773, 15.569613456726074, 10.04321002960205, 13.088549613952637, 32.135841369628906, 14.051953315734863, 10.126495361328125, 6.91936731338501, 11.520798683166504, 10.403533935546875, 9.181351661682129, 9.202985763549805, 12.926603317260742, 11.629950523376465, 15.522608757019043, 12.971429824829102, 12.36284351348877, 26.998403549194336, 11.021394729614258, 7.525219917297363, 19.66200828552246, 15.947668075561523, 17.90584945678711, 9.215346336364746, 12.079721450805664, 10.337488174438477, 19.007368087768555, 10.076360702514648, 16.37236213684082, 13.60632038116455, 11.523872375488281, 15.199328422546387, 9.556361198425293, 14.028646469116211, 12.071903228759766, 70.18260192871094, 4.361435890197754, 12.381572723388672, 11.172687530517578, 3.582555055618286, 9.705387115478516, 16.744922637939453, 6.421778678894043, 10.799909591674805, 10.684887886047363, 12.655477523803711, 12.487573623657227, 18.04871940612793, 11.98974609375, 15.865704536437988, 8.189295768737793, 16.25641441345215, 6.4937872886657715, 18.001811981201172, 12.659503936767578, 22.41083526611328, 13.081687927246094, 21.6838436126709, 22.72079086303711, 7.380855560302734, 11.162748336791992, 40.5305061340332, 34.905113220214844, 11.692795753479004, 12.139963150024414, 15.768150329589844, 8.423421859741211, 9.958234786987305, 13.715749740600586, 21.795692443847656, 16.853824615478516, 9.24759292602539, 16.832616806030273, 18.31325912475586, 24.356124877929688, 16.957380294799805, 17.446796417236328, 11.5200834274292, 12.751015663146973, 80.24761199951172, 13.470309257507324, 10.511699676513672, 11.30504035949707, 12.020328521728516, 17.268558502197266, 13.245512008666992, 5.641966819763184, 12.687446594238281, 11.605912208557129, 14.041354179382324, 11.36335563659668, 32.20033645629883, 11.43836784362793, 14.003941535949707, 16.276073455810547, 12.279863357543945, 11.387567520141602, 20.629528045654297, 11.566905975341797, 11.119536399841309, 11.849283218383789, 17.89070701599121, 10.708223342895508, 7.7623724937438965, 13.864852905273438, 13.19416332244873, 32.19176483154297, 8.862217903137207, 12.014010429382324, 15.161277770996094, 19.475080490112305, 16.403079986572266, 7.325586795806885, 17.637969970703125, 11.002433776855469, 10.29589557647705, 11.941179275512695, 16.01066017150879, 11.275096893310547, 14.948620796203613, 13.590542793273926, 11.728410720825195, 10.359504699707031, 26.1328125, 11.85188102722168, 11.703801155090332, 10.693379402160645, 25.731426239013672, 14.967002868652344, 7.308924198150635, 15.5642671585083, 13.110803604125977, 9.232728958129883, 20.973377227783203, 12.851661682128906, 9.338067054748535, 16.515186309814453, 8.570465087890625, 19.088565826416016, 13.433258056640625, 13.770915031433105, 11.59719181060791, 27.507671356201172, 24.18914222717285, 13.079862594604492, 26.601232528686523, 15.363139152526855, 10.50091552734375, 11.107810020446777, 23.326034545898438, 11.523622512817383, 16.598329544067383, 11.550928115844727, 15.595967292785645, 9.771723747253418, 9.790618896484375, 8.184684753417969, 13.794018745422363, 14.243719100952148, 12.597780227661133, 6.3847455978393555, 15.239845275878906, 29.585651397705078, 10.717299461364746, 14.76025390625, 14.528711318969727, 10.328944206237793, 15.393514633178711, 45.11254119873047, 17.30938148498535, 12.43212890625, 11.68422794342041, 31.19939613342285, 14.877897262573242, 48.81851577758789, 13.577458381652832, 77.10606384277344, 12.422147750854492, 14.546998977661133, 5.47753381729126, 9.079899787902832, 13.69501781463623, 14.177105903625488, 17.801227569580078, 56.94549560546875, 13.376605033874512, 15.490148544311523, 8.819551467895508, 8.402886390686035, 10.308846473693848, 18.725915908813477, 20.79990577697754, 22.163681030273438, 12.740504264831543, 10.469820976257324, 8.789010047912598, 51.26033401489258, 34.3836555480957, 14.821246147155762, 10.017555236816406, 15.42735481262207, 10.8143892288208, 8.597635269165039, 14.1297607421875, 19.5084228515625, 16.425724029541016, 10.725896835327148, 18.877634048461914, 11.301579475402832, 12.045845031738281, 29.568368911743164, 17.518268585205078, 13.331884384155273, 10.87623119354248, 26.5246639251709, 12.000256538391113, 12.319189071655273, 13.097206115722656, 9.631834983825684, 7.8105974197387695, 11.07714557647705, 13.601305961608887, 14.772760391235352, 16.811498641967773, 17.091690063476562, 9.888985633850098, 14.906453132629395, 19.41429901123047, 13.092256546020508, 13.853155136108398, 8.525906562805176, 10.592369079589844, 18.927629470825195, 11.884344100952148, 13.772623062133789, 20.58481216430664, 13.621208190917969, 13.014042854309082, 11.030628204345703, 10.867996215820312, 11.730741500854492, 13.818692207336426, 11.029382705688477, 8.288660049438477, 12.952703475952148, 26.118408203125, 9.1556978225708, 9.675642967224121, 18.524599075317383, 12.556916236877441, 9.889034271240234, 10.255163192749023, 9.921834945678711, 11.558420181274414, 14.185243606567383, 9.01959228515625, 10.080015182495117, 21.786840438842773, 16.741104125976562, 11.958395004272461, 10.198148727416992, 12.505383491516113, 43.96781539916992, 16.745441436767578, 19.690298080444336, 11.474295616149902, 6.270987510681152, 38.68599319458008, 10.327797889709473, 13.808479309082031, 10.038984298706055, 11.978761672973633, 17.785520553588867, 11.032613754272461, 12.772680282592773, 18.40431785583496, 12.746049880981445, 9.49533462524414, 20.54726791381836, 13.954989433288574, 12.630849838256836, 10.999218940734863, 29.970178604125977, 17.42026138305664, 10.426084518432617, 8.974313735961914, 11.110142707824707, 11.776826858520508, 16.012266159057617, 13.125129699707031, 15.59350299835205, 16.66122817993164, 9.346574783325195, 9.44588851928711, 14.22645378112793, 12.646716117858887, 12.99329662322998, 20.298280715942383, 8.489988327026367, 9.321751594543457, 10.416560173034668, 9.458864212036133, 79.48787689208984, 15.042101860046387, 8.848306655883789, 40.38438034057617, 22.100955963134766, 19.61862564086914, 54.535301208496094, 17.705753326416016, 23.011505126953125, 10.132383346557617, 20.675411224365234, 15.842992782592773, 19.73301887512207, 16.209253311157227, 8.988804817199707, 23.972536087036133, 12.114678382873535, 15.358312606811523, 9.708245277404785, 8.996594429016113, 9.183281898498535, 12.989422798156738, 13.586934089660645, 11.92306137084961, 9.48680305480957, 13.34721851348877, 13.82641887664795, 15.960665702819824, 10.442028045654297, 9.757959365844727, 13.241174697875977, 12.639183044433594, 11.930658340454102, 26.584964752197266, 14.1543607711792, 11.593725204467773, 40.629920959472656, 9.741888046264648, 6.20025634765625, 8.46878719329834, 8.052186965942383, 12.247318267822266, 10.33665657043457, 10.803318977355957, 19.784887313842773, 10.295555114746094, 13.611437797546387, 20.5008544921875, 7.021246433258057, 12.751941680908203, 8.690085411071777, 10.830531120300293, 13.855672836303711, 8.083515167236328, 14.17353343963623, 9.07995891571045, 21.61410903930664, 14.231393814086914, 17.28390884399414, 12.801922798156738, 11.240314483642578, 6.883403778076172, 12.076544761657715, 8.116395950317383, 10.943875312805176, 19.427976608276367, 16.83847427368164, 13.433988571166992, 10.174290657043457, 27.51668357849121, 10.832250595092773, 21.250808715820312, 26.89996337890625, 17.50165367126465, 8.314817428588867, 11.387679100036621, 11.24144172668457, 23.374103546142578, 20.64459991455078, 8.66972827911377, 12.829828262329102, 7.924835205078125, 8.222894668579102, 23.216960906982422, 9.390366554260254, 9.363574981689453, 11.876657485961914, 23.968393325805664, 8.141931533813477, 10.900049209594727, 16.174884796142578, 20.29617691040039, 17.400814056396484, 18.120941162109375, 14.091008186340332, 25.54631233215332, 11.129447937011719, 10.419461250305176, 60.02300262451172, 13.507955551147461, 33.01362991333008, 9.306928634643555, 14.171884536743164, 27.8792724609375, 9.42365837097168, 18.262710571289062, 12.018712997436523, 25.575462341308594, 17.271635055541992, 10.633196830749512, 9.624174118041992, 8.362203598022461, 48.370670318603516, 12.684733390808105, 17.68330192565918, 13.149928092956543, 35.58567810058594, 23.167062759399414, 37.597900390625, 11.284399032592773, 15.734957695007324, 12.589795112609863, 7.535241603851318, 17.15103530883789, 11.034893035888672, 11.26268482208252, 6.198493957519531, 16.51508140563965, 25.385684967041016, 14.606727600097656, 10.09102725982666, 6.107176303863525, 13.711871147155762, 10.280713081359863, 15.490488052368164, 13.5211181640625, 13.50511646270752, 21.38103485107422, 10.36316967010498, 12.400541305541992, 11.07624626159668, 24.454280853271484, 11.942281723022461, 13.376501083374023, 13.974032402038574, 2.5669021606445312, 11.928808212280273, 9.235295295715332, 14.179361343383789, 16.2685604095459, 10.021573066711426, 7.633843421936035, 8.462697982788086, 15.667861938476562, 11.221291542053223, 12.092355728149414, 11.614529609680176, 18.917959213256836, 8.763677597045898, 85.99481964111328, 28.538503646850586, 14.998135566711426, 10.319483757019043, 18.12067985534668, 8.618879318237305, 11.477011680603027, 25.94529151916504, 17.522781372070312, 26.75350570678711, 15.736763000488281, 29.498464584350586, 9.690164566040039, 17.78273582458496, 8.546287536621094, 18.064088821411133, 12.488431930541992, 11.068598747253418, 9.630971908569336, 18.31439781188965, 11.868322372436523, 9.871904373168945, 9.32719612121582, 11.79248046875, 12.558581352233887, 11.666831016540527, 19.47426414489746, 16.265811920166016, 14.553781509399414, 22.625579833984375, 11.933591842651367, 20.121971130371094, 15.454829216003418, 13.834754943847656, 9.795598030090332, 17.384374618530273, 12.830141067504883, 8.821023941040039, 8.900674819946289, 15.918390274047852, 24.16798210144043, 12.534026145935059, 7.680006980895996, 13.138885498046875, 12.813616752624512, 13.603113174438477, 9.759598731994629, 11.102272033691406, 14.503239631652832, 52.22687530517578, 17.584299087524414, 13.742431640625, 13.789560317993164, 9.224929809570312, 10.686131477355957, 15.836309432983398, 19.591503143310547, 12.422035217285156, 10.373961448669434, 13.54802131652832, 11.751487731933594, 32.79437255859375, 10.21569538116455, 23.475513458251953, 13.414850234985352, 20.42034149169922, 16.8947811126709, 29.97969627380371, 20.156044006347656, 16.043466567993164, 4.736412048339844, 10.3778657913208, 11.51424503326416, 14.509655952453613, 11.135209083557129, 19.288402557373047, 12.433061599731445, 65.1632308959961, 7.290499687194824, 16.052227020263672, 14.195475578308105, 13.396528244018555, 10.57567310333252, 9.889731407165527, 8.073686599731445, 13.30615520477295, 14.294957160949707, 13.21277141571045, 13.809377670288086, 20.674352645874023, 12.271120071411133, 10.897164344787598, 11.424789428710938, 46.323280334472656, 8.177993774414062, 7.868409156799316, 11.64647102355957, 9.335186958312988, 16.546756744384766, 8.535860061645508, 12.207284927368164, 26.936914443969727, 12.027915000915527, 15.603042602539062, 29.947708129882812, 11.694316864013672, 7.806891441345215, 14.571187019348145, 19.34153938293457, 11.791916847229004, 10.689023971557617, 17.206439971923828, 9.03065299987793, 25.451663970947266, 27.026782989501953, 9.104500770568848, 8.38154125213623, 13.596685409545898, 21.94671630859375, 20.870922088623047, 11.286693572998047, 8.776864051818848, 14.856782913208008, 13.735971450805664, 13.234417915344238, 15.663778305053711, 7.882436275482178, 7.4790472984313965, 9.601190567016602, 4.517720699310303, 17.870718002319336, 13.249621391296387, 10.109437942504883, 19.1500301361084, 7.764504909515381, 15.414660453796387, 10.453302383422852, 11.629847526550293, 9.122034072875977, 9.39682674407959, 8.194196701049805, 8.53398323059082, 11.180341720581055, 10.90628719329834, 9.434419631958008, 18.862789154052734, 12.705742835998535, 13.266546249389648, 16.505313873291016, 9.99735164642334, 15.641151428222656, 15.745840072631836, 11.952230453491211, 15.725046157836914, 9.942887306213379, 15.752477645874023, 11.293610572814941, 11.700942039489746, 9.509564399719238, 13.413337707519531, 13.583073616027832, 10.086471557617188, 11.47224235534668, 11.762369155883789, 14.740513801574707, 13.31464672088623, 12.84904956817627, 14.065046310424805, 13.26152515411377, 10.939634323120117, 7.7660651206970215, 14.627583503723145, 12.202775955200195, 16.161563873291016, 9.35430908203125, 12.375646591186523, 24.847126007080078, 12.840214729309082, 15.73747444152832, 54.61522674560547, 20.650075912475586, 11.182967185974121, 23.98366928100586, 17.825191497802734, 9.86184310913086, 11.839685440063477, 57.25205612182617, 12.314385414123535, 9.672333717346191, 17.571285247802734, 9.970858573913574, 12.881706237792969, 12.571284294128418, 9.771707534790039, 11.251025199890137, 17.378734588623047, 34.881351470947266, 14.013626098632812, 10.882791519165039, 10.416688919067383, 15.906044006347656, 11.36396312713623, 12.669727325439453, 8.158180236816406, 15.27564811706543, 8.989801406860352, 10.50733470916748, 15.993786811828613, 16.036588668823242, 12.802635192871094, 13.430862426757812, 11.322294235229492, 10.456216812133789, 10.678967475891113, 11.711926460266113, 11.198810577392578, 7.636878967285156, 13.264572143554688, 6.1501898765563965, 10.281881332397461, 23.948509216308594, 18.279924392700195, 14.680264472961426, 11.396650314331055, 16.277103424072266, 14.222452163696289, 8.348505020141602, 16.03793716430664, 9.064859390258789, 10.021406173706055, 15.846275329589844, 24.546119689941406, 12.108616828918457, 17.278182983398438, 15.431421279907227, 65.98127746582031, 17.033966064453125, 9.880182266235352, 7.024820804595947, 11.696649551391602, 12.592994689941406, 28.651012420654297, 11.789141654968262, 13.197619438171387, 10.97971248626709, 9.703088760375977, 16.010587692260742, 10.241365432739258, 12.777183532714844, 10.901044845581055, 6.478878021240234, 19.922954559326172, 9.666101455688477, 10.855237007141113, 16.094074249267578, 13.672189712524414, 12.052974700927734, 13.961980819702148, 12.572996139526367, 9.409971237182617, 9.11760139465332, 19.866230010986328, 15.570834159851074, 11.03066349029541, 21.462900161743164, 25.34688377380371, 7.753756523132324, 7.094242095947266, 11.389545440673828, 64.50978088378906, 34.250030517578125, 10.585084915161133, 10.188371658325195, 9.484724044799805, 14.08696174621582, 22.043956756591797, 10.167057991027832, 7.419713497161865, 10.448663711547852, 16.87860679626465, 32.304847717285156, 11.308284759521484, 8.866695404052734, 8.971982955932617, 11.031410217285156, 16.479167938232422, 20.54603385925293, 19.03321075439453, 8.782215118408203, 9.390823364257812, 11.624866485595703, 8.471390724182129, 10.038491249084473, 17.09673309326172, 19.465373992919922, 15.911705017089844, 10.286405563354492, 19.310108184814453, 11.354878425598145, 9.859106063842773, 12.70445728302002, 11.550688743591309, 18.143779754638672, 11.50292682647705, 13.633630752563477, 9.23347282409668, 9.447088241577148, 6.7611541748046875, 7.83664083480835, 9.78752613067627, 13.640655517578125, 8.022371292114258, 9.490166664123535, 13.973454475402832, 15.14996337890625, 9.001723289489746, 11.666645050048828, 17.02950668334961, 18.70132827758789, 22.576190948486328, 11.358064651489258, 19.651525497436523, 7.471656799316406, 11.980573654174805, 16.336084365844727, 13.115832328796387, 8.949442863464355, 10.742701530456543, 20.325313568115234, 20.585546493530273, 12.983233451843262, 71.92686462402344, 12.868245124816895, 9.977659225463867, 19.095630645751953, 12.6166410446167, 12.129171371459961, 9.972010612487793, 12.238945960998535, 13.946943283081055, 7.645140171051025, 8.045598030090332, 8.649662971496582, 14.337445259094238, 20.167335510253906, 10.152503967285156, 14.06531047821045, 11.44315242767334, 13.432263374328613, 16.629215240478516, 12.865071296691895, 9.072897911071777, 16.68996810913086, 11.798054695129395, 10.991776466369629, 10.206469535827637, 7.134154319763184, 31.44729995727539, 12.914088249206543, 11.744359016418457, 17.3408260345459, 13.978767395019531, 12.550436019897461, 12.348470687866211, 9.243067741394043, 12.162612915039062, 10.177933692932129, 13.211291313171387, 10.776453018188477, 10.374593734741211, 32.550697326660156, 12.16591739654541, 9.280189514160156, 28.05899429321289, 5.8724565505981445, 15.19078254699707, 12.599348068237305, 12.320571899414062, 9.518426895141602, 12.031079292297363, 8.84416675567627, 9.445154190063477, 18.45644760131836, 13.288647651672363, 9.766562461853027, 14.851701736450195, 16.11406898498535, 19.57122802734375, 16.473024368286133, 12.848661422729492, 21.854108810424805, 28.959009170532227, 13.48914909362793, 15.16639232635498, 10.294977188110352, 24.984973907470703, 11.138373374938965, 12.313709259033203, 16.23845863342285, 22.030731201171875, 11.5734281539917, 9.277334213256836, 15.022537231445312, 10.447611808776855, 9.813965797424316, 20.32842445373535, 7.224813938140869, 13.73945140838623, 27.79335594177246, 20.720678329467773, 8.368334770202637, 17.958223342895508, 16.333765029907227, 11.096653938293457, 9.155919075012207, 10.407194137573242, 18.15550422668457, 17.100698471069336, 8.804666519165039, 14.101480484008789, 11.699609756469727, 57.084861755371094, 9.186408996582031, 9.418395042419434, 11.45496940612793, 13.171656608581543, 13.486143112182617, 12.983306884765625, 15.021585464477539, 12.493501663208008, 15.191183090209961, 20.90415382385254, 11.899042129516602, 10.726666450500488, 19.12618064880371, 11.977487564086914, 13.505452156066895, 8.368291854858398, 13.010958671569824, 10.228508949279785, 12.071531295776367, 63.64776611328125, 20.009517669677734, 11.07934856414795, 12.064692497253418, 6.527586936950684, 29.37563133239746, 9.508184432983398, 8.007707595825195, 11.92672061920166, 11.746478080749512, 12.27828311920166, 8.10992431640625, 17.76858901977539, 10.90162181854248, 12.606474876403809, 13.555627822875977, 14.303590774536133, 11.201395034790039, 11.6826810836792, 14.202337265014648, 12.199241638183594, 11.711732864379883, 9.980440139770508, 9.526651382446289, 15.135313034057617, 17.00747299194336, 31.064510345458984, 60.370567321777344, 9.267728805541992, 12.8908109664917, 12.409111976623535, 9.405597686767578, 9.077370643615723, 10.588955879211426, 13.10791015625, 26.946136474609375, 13.117757797241211, 22.254940032958984, 86.69223022460938, 21.306339263916016, 9.271261215209961, 17.360729217529297, 28.459508895874023, 17.847570419311523, 28.631084442138672, 9.755204200744629, 11.015416145324707, 9.102544784545898, 8.680498123168945, 18.897005081176758, 13.676946640014648, 17.413021087646484, 8.940778732299805, 11.431464195251465, 18.733795166015625, 9.798284530639648, 19.81591033935547, 11.584257125854492, 9.660974502563477, 18.997982025146484, 13.285829544067383, 12.373985290527344, 31.074779510498047, 13.282422065734863, 10.305011749267578, 18.733144760131836, 13.606051445007324, 17.351829528808594, 11.558176040649414, 14.006898880004883, 5.078930854797363, 14.223736763000488, 22.428556442260742, 14.668390274047852, 19.02395248413086, 13.948190689086914, 16.929807662963867, 17.629289627075195, 15.328410148620605, 51.089752197265625, 22.43440818786621, 9.195634841918945, 19.351552963256836, 11.48045539855957, 9.526823043823242, 11.060514450073242, 26.70770835876465, 20.207096099853516, 11.31849193572998, 12.138091087341309, 21.45170021057129, 7.97774600982666, 23.352121353149414, 6.903598785400391, 10.063616752624512, 14.716853141784668, 12.791089057922363, 13.14465045928955, 12.264337539672852, 17.93958282470703, 21.652271270751953, 25.0078125, 9.82091236114502, 12.581097602844238, 9.389798164367676, 8.115387916564941, 8.383048057556152, 18.98661231994629, 19.915449142456055, 10.774642944335938, 12.816572189331055, 17.064638137817383, 16.086090087890625, 12.58315658569336, 20.252899169921875, 15.312222480773926, 11.801196098327637, 9.840539932250977, 12.499898910522461, 9.997568130493164, 9.621721267700195, 11.840347290039062, 7.189366340637207, 13.612104415893555, 8.499330520629883, 9.90882682800293, 13.665075302124023, 15.29273509979248, 19.740947723388672, 10.826179504394531, 15.963521957397461, 13.782312393188477, 6.66678524017334, 14.238123893737793, 7.440136909484863, 19.09691047668457, 8.580321311950684, 10.843253135681152, 12.677316665649414, 30.22881507873535, 9.53939151763916, 14.282526016235352, 9.794408798217773, 15.498268127441406, 11.710128784179688, 12.642365455627441, 11.233853340148926, 9.688639640808105, 11.028718948364258, 16.442462921142578, 12.897024154663086, 16.007394790649414, 12.629246711730957, 10.506046295166016, 11.139385223388672, 10.572335243225098, 8.980646133422852, 9.63514518737793, 11.244038581848145, 10.464969635009766, 10.139623641967773, 24.849987030029297, 9.035140037536621, 10.348068237304688, 11.758390426635742, 15.948875427246094, 6.939310550689697, 16.224246978759766, 16.51687240600586, 24.839628219604492, 7.85044002532959, 12.644458770751953, 14.991154670715332, 6.765570163726807, 13.294474601745605, 15.892187118530273, 13.345416069030762, 17.079586029052734, 10.768026351928711, 13.828842163085938, 16.25296974182129, 15.736699104309082, 12.465677261352539, 10.11071491241455, 9.116338729858398, 12.611648559570312, 11.575472831726074, 12.16300106048584, 13.076339721679688, 11.52468490600586, 12.369684219360352, 12.340795516967773, 13.730491638183594, 9.617085456848145, 11.878999710083008, 11.474078178405762, 12.476812362670898, 9.55653190612793, 10.126180648803711, 11.637870788574219, 12.521729469299316, 11.88733196258545, 9.071123123168945, 15.187387466430664, 18.46702766418457, 20.241817474365234, 14.738960266113281, 13.568997383117676, 8.225394248962402, 20.18376350402832, 14.813799858093262, 11.859618186950684, 11.772769927978516, 23.123271942138672, 10.772578239440918, 10.178048133850098, 17.169153213500977, 14.6697998046875, 11.5634183883667, 11.359920501708984, 15.829965591430664, 12.465651512145996, 17.357873916625977, 14.754541397094727, 14.952031135559082, 11.710063934326172, 31.25730323791504, 12.608271598815918, 12.313385963439941, 52.43083572387695, 16.888500213623047, 24.519323348999023, 29.286972045898438, 11.349332809448242, 6.801844596862793, 15.920541763305664, 13.470252990722656, 13.587008476257324, 10.411201477050781, 13.9746732711792, 19.116716384887695, 8.101471900939941, 13.588714599609375, 11.160833358764648, 6.512124061584473, 20.580690383911133, 12.488985061645508, 9.365052223205566, 9.17255973815918, 8.150079727172852, 9.960325241088867, 19.925785064697266, 27.538532257080078, 10.481573104858398, 15.799359321594238, 25.252063751220703, 13.290079116821289, 1.0616209506988525, 14.076525688171387, 17.100915908813477, 10.387929916381836, 28.220211029052734, 10.10696029663086, 14.124826431274414, 20.541383743286133, 28.010141372680664, 16.07632064819336, 12.033824920654297, 14.240391731262207, 14.304489135742188, 10.17606258392334, 18.970022201538086, 5.627589225769043, 9.818315505981445, 11.705034255981445, 10.731229782104492, 14.123022079467773, 14.890340805053711, 18.0562801361084, 8.878961563110352, 10.84572982788086, 22.90794563293457, 13.42937183380127, 8.325935363769531, 22.69402503967285, 8.314729690551758, 14.249929428100586, 8.206379890441895, 19.258193969726562, 11.153818130493164, 10.736431121826172, 12.366537094116211, 11.900111198425293, 11.484578132629395, 8.62419605255127, 13.77662181854248, 7.797617435455322, 9.470005989074707, 9.15597915649414, 10.861566543579102, 9.970401763916016, 12.809313774108887, 14.363863945007324, 17.499042510986328, 13.130969047546387, 13.367863655090332, 53.2723503112793, 19.172882080078125, 13.018031120300293, 9.304962158203125, 13.194747924804688, 15.702783584594727, 17.030393600463867, 11.191563606262207, 10.160390853881836, 11.169792175292969, 10.906734466552734, 9.190567970275879, 13.95496654510498, 10.121225357055664, 10.304987907409668, 11.7245454788208, 9.140130996704102, 10.00705623626709, 16.739458084106445, 10.701583862304688, 10.8552885055542, 10.878573417663574, 10.5849609375, 11.195024490356445, 20.011178970336914, 24.325111389160156, 9.18765926361084, 16.787208557128906, 8.803729057312012, 10.402254104614258, 8.632210731506348, 15.85412883758545, 12.045991897583008, 13.798304557800293, 22.37750816345215, 7.541353702545166, 16.488508224487305, 9.724836349487305, 14.526483535766602, 12.017424583435059, 23.01748275756836, 8.382932662963867, 9.936515808105469, 10.504966735839844, 19.36166763305664, 9.089676856994629, 12.333826065063477, 9.981526374816895, 12.533013343811035, 39.787635803222656, 14.075075149536133, 9.391814231872559, 11.201875686645508, 12.889203071594238, 14.629034042358398, 9.03424072265625, 23.56220817565918, 11.760470390319824, 9.562372207641602, 8.064947128295898, 9.39216423034668, 12.099306106567383, 8.893643379211426, 23.31975746154785, 9.698347091674805, 12.14936637878418, 55.30439376831055, 14.338605880737305, 10.544057846069336, 20.250690460205078, 20.683897018432617, 27.725717544555664, 10.61739444732666, 10.065202713012695, 15.248502731323242, 29.249324798583984, 19.833166122436523, 9.38196086883545, 8.861801147460938, 12.049856185913086, 19.92559814453125, 11.737409591674805, 23.295915603637695, 14.089925765991211, 12.11528205871582, 17.639202117919922, 8.353314399719238, 10.706276893615723, 13.537561416625977, 9.07730484008789, 11.618218421936035, 10.843360900878906, 17.878612518310547, 12.853330612182617, 11.927400588989258, 11.52833080291748, 14.189297676086426, 10.765420913696289, 7.040004730224609, 16.17487907409668, 11.736837387084961, 13.129170417785645, 14.564898490905762, 17.53438949584961, 21.437288284301758, 13.523653030395508, 22.746339797973633, 43.20612335205078, 9.056950569152832, 14.554037094116211, 9.408502578735352, 32.61751174926758, 24.739648818969727, 10.658561706542969, 11.75086498260498, 15.821850776672363, 12.682753562927246, 16.72660255432129, 9.744440078735352, 24.853099822998047, 13.334887504577637, 20.075054168701172, 10.918140411376953, 21.178966522216797, 11.805624008178711, 14.085556030273438, 11.363391876220703, 10.29301929473877, 16.876544952392578, 17.778329849243164, 13.123186111450195, 24.68214225769043, 16.876571655273438, 9.1372709274292, 13.036836624145508, 12.193737983703613, 17.770084381103516, 9.891939163208008, 22.855390548706055, 15.209301948547363, 11.193079948425293, 16.05875015258789, 8.682212829589844, 10.59178638458252, 9.203444480895996, 14.870552062988281, 32.21116256713867, 9.2969970703125, 12.210206985473633, 11.275138854980469, 13.892515182495117, 22.450183868408203, 15.231976509094238, 64.27006530761719, 13.033720016479492, 16.828018188476562, 16.974096298217773, 14.991540908813477, 12.689840316772461, 29.485912322998047, 13.715533256530762, 29.471721649169922, 8.316567420959473, 16.35194206237793, 54.75830841064453, 10.10669231414795, 18.29169273376465, 11.484731674194336, 9.992128372192383, 12.181325912475586, 13.48988151550293, 18.18593978881836, 10.0453462600708, 17.211936950683594, 19.67620277404785, 10.42286491394043, 13.088842391967773, 27.385013580322266, 10.211726188659668, 19.76144027709961, 12.578231811523438, 14.094381332397461, 10.77184009552002, 8.184616088867188, 12.026687622070312, 24.819717407226562, 22.037700653076172, 12.229928970336914, 12.8959321975708, 8.103269577026367, 12.633713722229004, 14.603424072265625, 14.882527351379395, 14.368124008178711, 9.945286750793457, 14.376482963562012, 19.61088752746582, 11.626082420349121, 19.713260650634766, 12.339738845825195, 13.365827560424805, 17.248241424560547, 10.928796768188477, 11.46932315826416, 10.655755996704102, 7.813790321350098, 11.309272766113281, 8.844083786010742, 15.983119010925293, 16.95989227294922, 17.116710662841797, 14.950645446777344, 19.77297592163086, 14.031481742858887, 12.0155668258667, 11.697803497314453, 11.261306762695312, 11.44225788116455, 18.729351043701172, 11.455045700073242, 11.005581855773926, 17.398120880126953, 20.262331008911133, 9.153971672058105, 10.770849227905273, 5.905850410461426, 8.913619041442871, 8.844366073608398, 6.340640544891357, 32.278968811035156, 11.872428894042969, 16.437978744506836, 13.75157356262207, 22.707101821899414, 7.453757286071777, 18.035062789916992, 34.49341583251953, 12.8254976272583, 16.108463287353516, 17.036291122436523, 34.51825714111328, 14.504773139953613, 11.18278694152832, 10.145645141601562, 41.969444274902344, 21.43631935119629, 7.86707067489624, 12.1061429977417, 9.920591354370117, 10.844706535339355, 12.258676528930664, 10.879322052001953, 12.260008811950684, 11.047689437866211, 6.192869663238525, 14.211041450500488, 21.803115844726562, 7.887794494628906, 12.866815567016602, 16.195898056030273, 10.884668350219727, 28.457204818725586, 12.1470947265625, 13.180534362792969, 11.773152351379395, 14.22068977355957, 23.55718421936035, 9.550440788269043, 19.765548706054688, 39.8947868347168, 8.389219284057617, 9.450986862182617, 8.795501708984375, 17.90489387512207, 12.340574264526367, 11.515534400939941, 15.49945068359375, 10.734251022338867, 9.632871627807617, 20.052898406982422, 15.653630256652832, 12.045141220092773, 12.881518363952637, 7.944883823394775, 13.935223579406738, 9.610128402709961, 10.859240531921387, 8.193822860717773, 9.112045288085938, 8.732091903686523, 12.263545989990234, 15.606077194213867, 21.31764793395996, 9.184727668762207, 9.936236381530762, 11.831286430358887, 9.550477027893066, 10.435419082641602, 9.655965805053711, 9.205309867858887, 24.68319320678711, 9.144905090332031, 13.76457691192627, 15.470491409301758, 24.160940170288086, 16.07790756225586, 12.952746391296387, 9.894829750061035, 12.091598510742188, 27.512100219726562, 30.13983154296875, 23.874155044555664, 22.79433250427246, 11.200651168823242, 13.805949211120605, 14.21357536315918, 14.8023681640625, 9.024100303649902, 11.357563018798828, 10.642271995544434, 12.382281303405762, 9.913728713989258, 31.038854598999023, 12.646027565002441, 18.709636688232422, 10.916604995727539, 10.364984512329102, 6.382558345794678, 5.496275424957275, 9.917966842651367, 12.431894302368164, 10.097627639770508, 13.702848434448242, 11.936895370483398, 12.817052841186523, 8.568992614746094, 14.059297561645508, 7.97784423828125, 18.668798446655273, 20.560466766357422, 13.995941162109375, 28.88802719116211, 12.73143482208252, 9.282779693603516, 11.98231315612793, 8.057769775390625, 14.439329147338867, 6.627769470214844, 43.26153564453125, 9.481404304504395, 12.408445358276367, 11.928894996643066, 8.60684871673584, 12.831642150878906, 12.184103965759277, 9.422693252563477, 9.655952453613281, 13.328046798706055, 19.02558708190918, 12.960983276367188, 15.157055854797363, 38.61114501953125, 14.022817611694336, 7.926947116851807, 11.461098670959473, 9.088627815246582, 12.141698837280273, 9.896224021911621, 13.270879745483398, 10.036213874816895, 15.25175952911377, 8.44508171081543, 34.52714157104492, 10.935303688049316, 39.54551696777344, 14.942705154418945, 9.674097061157227, 12.511419296264648, 11.717445373535156, 41.418331146240234, 9.256046295166016, 13.67680835723877, 12.50074291229248, 15.467634201049805, 9.428868293762207, 8.41879653930664, 14.211833000183105, 14.340594291687012, 14.687538146972656, 10.078766822814941, 9.624921798706055, 11.592761039733887, 16.693464279174805, 9.611384391784668, 12.12332820892334, 10.73768424987793, 9.000328063964844, 13.227742195129395, 12.29301643371582, 15.767687797546387, 13.440373420715332, 24.128442764282227, 15.62360668182373, 11.831366539001465, 8.224645614624023, 11.288163185119629, 17.871984481811523, 12.786428451538086, 21.476253509521484, 15.90715217590332, 41.2748908996582, 10.652575492858887, 13.804600715637207, 13.914527893066406, 10.812493324279785, 8.766758918762207, 9.250268936157227, 10.876835823059082, 9.179588317871094, 13.131401062011719, 12.513059616088867, 11.807008743286133, 6.787266731262207, 7.4121904373168945, 10.480945587158203, 10.052898406982422, 15.872133255004883, 12.31821060180664, 5.8500871658325195, 12.667336463928223, 19.407333374023438, 19.171720504760742, 8.5143461227417, 40.199623107910156, 14.967390060424805, 9.844444274902344, 26.70843505859375, 19.753149032592773, 11.833261489868164, 10.99370002746582, 12.126190185546875, 8.885473251342773, 10.972372055053711, 9.01518726348877, 12.563854217529297, 11.850390434265137, 8.61726188659668, 5.976622104644775, 10.472804069519043, 11.590642929077148, 11.365163803100586, 10.51972770690918, 26.05399513244629, 8.35194206237793, 26.245656967163086, 15.089431762695312, 13.544830322265625, 8.825693130493164, 11.933812141418457, 15.911489486694336, 22.802892684936523, 14.69597339630127, 8.066631317138672, 10.959566116333008, 13.73912239074707, 12.463616371154785, 30.850122451782227, 82.14265441894531, 10.476853370666504, 23.001068115234375, 7.309992790222168, 9.537517547607422, 9.427142143249512, 6.205690860748291, 3.2311248779296875, 8.594709396362305, 15.562542915344238, 9.808087348937988, 10.47588062286377, 8.652878761291504, 23.302045822143555, 12.18217658996582, 11.214117050170898, 12.844827651977539, 9.592231750488281, 10.182348251342773, 27.70357322692871, 25.90338134765625, 21.64862632751465, 16.67108917236328, 7.807435035705566, 13.470375061035156, 13.314092636108398, 22.96816635131836, 12.559494972229004, 13.198198318481445, 10.684876441955566, 11.29129409790039, 16.415769577026367, 15.04608154296875, 11.365175247192383, 10.950510025024414, 15.200879096984863, 21.086423873901367, 19.330524444580078, 12.631202697753906, 17.792295455932617, 8.765691757202148, 8.153660774230957, 11.28663158416748, 17.761777877807617, 19.32406997680664, 10.540324211120605, 9.172613143920898, 22.761890411376953, 11.984785079956055, 12.405170440673828, 8.992813110351562, 10.42581558227539, 11.378461837768555, 11.301119804382324, 12.120019912719727, 10.344454765319824, 9.944894790649414, 10.312820434570312, 8.235392570495605, 11.682939529418945, 12.357844352722168, 18.690908432006836, 69.47642517089844, 18.66390609741211, 16.463193893432617, 10.591913223266602, 23.276269912719727, 15.773452758789062, 22.465087890625, 18.091482162475586, 10.691579818725586, 11.363810539245605, 19.312999725341797, 11.445185661315918, 34.07796096801758, 14.46888256072998, 9.313815116882324, 14.891538619995117, 9.529821395874023, 15.997444152832031, 21.892284393310547, 10.234521865844727, 22.00291633605957, 25.462383270263672, 28.15253257751465, 21.32754135131836, 38.68660354614258, 12.941781997680664, 28.990915298461914, 15.076271057128906, 46.21453857421875, 10.24140739440918, 27.777944564819336, 28.00441551208496, 6.9219536781311035, 16.83407211303711, 7.779659271240234, 17.244443893432617, 17.589466094970703, 18.055570602416992, 15.027623176574707, 27.154382705688477, 7.98464298248291, 9.182046890258789, 10.6919584274292, 21.62102699279785, 11.671926498413086, 8.905211448669434, 7.9155097007751465, 4.900545120239258, 11.879944801330566, 11.945093154907227, 10.877100944519043, 14.843475341796875, 9.359315872192383, 9.863517761230469, 6.574221611022949, 23.503515243530273, 8.607993125915527, 11.363430976867676, 11.6386137008667, 13.090768814086914, 7.751349449157715, 9.738272666931152, 12.185290336608887, 56.72868728637695, 18.77525520324707, 12.508502960205078, 12.059176445007324, 13.936803817749023, 11.230400085449219, 7.997297763824463, 13.62108039855957, 17.187602996826172, 5.019336223602295, 8.994564056396484, 9.546809196472168, 18.55144500732422, 7.949202060699463, 18.188522338867188, 12.919042587280273, 8.440083503723145, 16.185684204101562, 14.876853942871094, 13.81779670715332, 11.995092391967773, 18.038795471191406, 13.987947463989258, 9.176881790161133, 15.82727336883545, 14.990750312805176, 38.545711517333984, 6.107980251312256, 10.46789264678955, 23.25356674194336, 10.804397583007812, 6.020904541015625, 9.862558364868164, 8.680874824523926, 10.444601058959961, 16.29364776611328, 38.358177185058594, 17.566091537475586, 11.66533088684082, 12.747488975524902, 11.796090126037598, 12.527883529663086, 19.426557540893555, 9.607392311096191, 13.197056770324707, 11.289587020874023, 14.659464836120605, 20.58791732788086, 25.301677703857422, 9.947114944458008, 8.747952461242676, 12.916059494018555, 5.154768943786621, 15.875788688659668, 9.059226036071777, 8.028703689575195, 16.118913650512695, 11.606208801269531, 7.9989166259765625, 13.305383682250977, 13.28740406036377, 8.803637504577637, 10.311346054077148, 12.9539213180542, 17.55201530456543, 41.33436965942383, 28.19826316833496, 11.740659713745117, 10.617460250854492, 14.3364896774292, 37.40470886230469, 10.579717636108398, 15.939132690429688, 10.873224258422852, 8.644259452819824, 10.254633903503418, 13.939498901367188, 9.4776029586792, 13.318628311157227, 10.831374168395996, 12.292436599731445, 67.10092163085938, 8.668899536132812, 10.134703636169434, 13.5538330078125, 11.125407218933105, 6.577199459075928, 20.5007381439209, 9.263117790222168, 22.56937026977539, 12.332944869995117, 13.549432754516602, 14.812143325805664, 6.885974884033203, 19.30636215209961, 7.967198371887207, 14.519355773925781, 10.247385025024414, 2.1165099143981934, 30.401681900024414, 24.43826675415039, 9.844430923461914, 8.921514511108398, 10.449968338012695, 17.282695770263672, 9.836397171020508, 19.990392684936523, 13.928598403930664, 7.465272426605225, 23.69216537475586, 12.190719604492188, 14.31657886505127, 13.802255630493164, 11.881868362426758, 11.33104419708252, 13.804898262023926, 18.87711524963379, 16.90896987915039, 14.634256362915039, 6.412161827087402, 7.2156829833984375, 20.504343032836914, 16.29054832458496, 10.078417778015137, 27.187612533569336, 10.566259384155273, 55.02831268310547, 12.371551513671875, 7.026339530944824, 7.3875322341918945, 11.1402006149292, 10.659585952758789, 10.112581253051758, 10.412481307983398, 10.93169116973877, 13.32746410369873, 8.827692985534668, 14.284080505371094, 12.696573257446289, 10.973212242126465, 13.867527961730957, 16.005155563354492, 13.93798828125, 12.005107879638672, 21.905574798583984, 22.46933364868164, 32.52777862548828, 17.571826934814453, 5.695000648498535, 10.43620777130127, 18.854642868041992, 25.16847038269043, 13.576772689819336, 12.440954208374023, 12.18480110168457, 13.99909496307373, 21.139530181884766, 13.824699401855469, 11.115604400634766, 7.939902305603027, 9.62499713897705, 9.590963363647461, 13.835000991821289, 13.036694526672363, 10.105804443359375, 9.370779991149902, 12.563861846923828, 11.990264892578125, 12.232328414916992, 18.176973342895508, 14.985272407531738, 15.379931449890137, 16.771642684936523, 8.689916610717773, 8.185232162475586, 9.678275108337402, 9.343755722045898, 7.052975654602051, 7.467731475830078, 21.769123077392578, 6.758007049560547, 11.60557746887207, 19.5152530670166, 7.111863136291504, 9.361294746398926, 8.926127433776855, 45.622581481933594, 18.599658966064453, 13.171829223632812, 8.590521812438965, 16.783170700073242, 12.012624740600586, 10.588536262512207, 16.211669921875, 9.594494819641113, 36.05526351928711, 13.79474925994873, 6.604738712310791, 13.561259269714355, 23.759387969970703, 15.01689338684082, 8.885265350341797, 10.02597713470459, 27.426233291625977, 20.835399627685547, 19.894535064697266, 8.748851776123047, 12.406981468200684, 15.49981689453125, 37.10204315185547, 7.939306735992432, 8.50290298461914, 11.418142318725586, 15.711545944213867, 10.562990188598633, 17.056316375732422, 9.559662818908691, 17.890270233154297, 15.094731330871582, 12.091574668884277, 14.16583251953125, 10.857063293457031, 13.244316101074219, 14.870918273925781, 10.809953689575195, 8.673035621643066, 11.007929801940918, 16.426456451416016, 10.90095329284668, 10.12433910369873, 6.863903045654297, 55.45378875732422, 21.445186614990234, 10.875471115112305, 9.888984680175781, 9.461710929870605, 13.28222942352295, 18.417621612548828, 8.521841049194336, 8.485507011413574, 10.930801391601562, 17.5583553314209, 10.615063667297363, 10.843308448791504, 26.945877075195312, 13.794382095336914, 10.033430099487305, 38.841835021972656, 13.907697677612305, 9.287256240844727, 12.01378059387207, 16.049266815185547, 14.646879196166992, 13.36683177947998, 10.076192855834961, 11.378297805786133, 9.678850173950195, 22.08782958984375, 16.090810775756836, 30.854541778564453, 26.892772674560547, 10.53535270690918, 9.197875022888184, 11.287203788757324, 13.123209953308105, 13.954072952270508, 9.963077545166016, 17.629718780517578, 19.812206268310547, 6.937188625335693, 10.198308944702148, 13.603344917297363, 19.440460205078125, 12.933855056762695, 9.666749954223633, 9.403385162353516, 6.869799613952637, 3.862934112548828, 12.492521286010742, 13.16270923614502, 6.9453935623168945, 8.476401329040527, 24.454349517822266, 9.954813957214355, 13.451876640319824, 6.156651496887207, 48.43396759033203, 12.883557319641113, 26.43558120727539, 51.52020263671875, 39.81085205078125, 12.655637741088867, 13.233209609985352, 11.071748733520508, 42.6184196472168, 12.038199424743652, 31.920513153076172, 18.5625057220459, 17.99866485595703, 42.213111877441406, 6.40470027923584, 21.664081573486328, 18.87906265258789, 10.62768840789795, 16.29359245300293, 16.1262149810791, 9.654987335205078, 12.700063705444336, 22.742992401123047, 15.285501480102539, 8.133187294006348, 15.0012788772583, 12.063483238220215, 15.183425903320312, 12.96509838104248, 16.62867546081543, 23.561405181884766, 8.437602043151855, 24.587268829345703, 10.731738090515137, 12.367608070373535, 14.368982315063477, 10.976689338684082, 43.93169021606445, 28.489253997802734, 6.040968894958496, 16.07415199279785, 18.8337459564209, 11.388875007629395, 9.611629486083984, 21.24049949645996, 11.32072925567627, 14.528669357299805, 9.389840126037598, 17.279102325439453, 23.169361114501953, 14.96864128112793, 9.764280319213867, 9.59417724609375, 20.160831451416016, 12.11221694946289, 11.012813568115234, 13.456937789916992, 19.582714080810547, 11.065671920776367, 11.121102333068848, 15.23820972442627, 9.523585319519043, 24.310733795166016, 28.66762351989746, 11.469507217407227, 9.16969108581543, 12.231740951538086, 11.4407320022583, 9.476983070373535, 10.382831573486328, 15.221151351928711, 11.78712272644043, 14.455227851867676, 15.450881958007812, 8.80373764038086, 11.016535758972168, 10.210148811340332, 13.918920516967773, 13.175779342651367, 40.70253372192383, 18.338153839111328, 7.7323503494262695, 17.430355072021484, 9.290848731994629, 10.921182632446289, 13.610920906066895, 10.27379322052002, 10.329870223999023, 23.310710906982422, 12.061767578125, 9.652926445007324, 9.386126518249512, 12.363207817077637, 13.078969955444336, 18.782695770263672, 61.15501022338867, 10.20970630645752, 34.93354415893555, 6.487600803375244, 52.580101013183594, 33.11243438720703, 10.345407485961914, 9.435331344604492, 21.640146255493164, 24.112565994262695, 30.315893173217773, 17.93168067932129, 29.5771541595459, 8.34581184387207, 13.786409378051758, 17.609947204589844, 11.501482009887695, 9.32664680480957, 19.918432235717773, 10.869397163391113, 14.11485481262207, 13.345921516418457, 20.125446319580078, 18.018035888671875, 8.80138111114502, 23.40456771850586, 11.125482559204102, 23.25577735900879, 15.033767700195312, 7.129862308502197, 9.364151000976562, 14.807344436645508, 13.000974655151367, 11.136083602905273, 11.226358413696289, 9.95712947845459, 22.268054962158203, 27.046218872070312, 10.86027717590332, 13.804464340209961, 12.910207748413086, 12.329973220825195, 11.89289379119873, 12.200584411621094, 69.33903503417969, 7.148756504058838, 28.198205947875977, 12.051278114318848, 9.968186378479004, 14.553800582885742, 13.277549743652344, 13.872512817382812, 12.994508743286133, 8.95511531829834, 10.148904800415039, 13.643377304077148, 20.953554153442383, 11.41732406616211, 11.414979934692383, 11.846165657043457, 10.552205085754395, 10.416215896606445, 16.47562599182129, 7.663782596588135, 11.565813064575195, 19.757675170898438, 14.407048225402832, 11.996124267578125, 21.43328094482422, 14.660049438476562, 9.219762802124023, 16.469745635986328, 21.816591262817383, 16.144262313842773, 31.79970932006836, 8.225137710571289, 17.053625106811523, 8.6847505569458, 79.1475601196289, 7.102259159088135, 6.968470096588135, 10.080055236816406, 8.104082107543945, 21.724525451660156, 20.388654708862305, 8.521273612976074, 14.687309265136719, 10.832064628601074, 86.03327178955078, 91.54300689697266, 11.721189498901367, 14.344453811645508, 23.031261444091797, 9.245832443237305, 7.397212028503418, 8.804905891418457, 8.893376350402832, 9.317730903625488, 11.074666976928711, 24.76297378540039, 16.354562759399414, 14.636804580688477, 6.705807685852051, 23.649185180664062, 16.600744247436523, 12.879773139953613, 13.598047256469727, 10.302579879760742, 12.245451927185059, 10.301031112670898, 11.103482246398926, 9.635042190551758, 8.274227142333984, 24.77079963684082, 13.028648376464844, 7.473806858062744, 11.18798828125, 8.75864315032959, 13.938369750976562, 12.010055541992188, 25.04818344116211, 8.897760391235352, 11.752096176147461, 35.429901123046875, 21.474889755249023, 12.479816436767578, 9.16064167022705, 41.256019592285156, 53.80188751220703, 21.980436325073242, 11.422985076904297, 83.59111785888672, 21.64927864074707, 17.51976776123047, 7.420131683349609, 13.96397876739502, 9.666608810424805, 17.67302894592285, 13.786109924316406, 30.833499908447266, 12.444293975830078, 11.25378704071045, 11.757453918457031, 31.84381103515625, 11.50316047668457, 10.230867385864258, 14.494633674621582, 17.026784896850586, 9.152654647827148, 18.255756378173828, 20.48148536682129, 18.346731185913086, 6.8870649337768555, 11.40302562713623, 14.650233268737793, 15.156400680541992, 10.7630615234375, 10.988749504089355, 11.07952880859375, 8.449339866638184, 13.522653579711914, 33.920738220214844, 21.780044555664062, 9.390571594238281, 41.60614013671875, 11.553866386413574, 12.204487800598145, 21.728347778320312, 12.812275886535645, 16.78500747680664, 27.613544464111328, 16.672809600830078, 24.574756622314453, 14.681661605834961, 11.148696899414062, 10.52773380279541, 18.23862648010254, 7.9663214683532715, 22.699726104736328, 15.460771560668945, 11.999563217163086, 14.29327392578125, 11.941122055053711, 19.100244522094727, 10.464038848876953, 8.890775680541992, 9.657744407653809, 14.488800048828125, 13.414957046508789, 13.233720779418945, 12.841540336608887, 9.861296653747559, 8.576431274414062, 10.094121932983398, 15.021039962768555, 13.735766410827637, 7.154386043548584, 10.660569190979004, 13.694043159484863, 14.139413833618164, 13.109891891479492, 39.39492416381836, 5.596830368041992, 9.021658897399902, 11.551936149597168, 12.211933135986328, 9.700772285461426, 6.101154327392578, 12.98326301574707, 15.249086380004883, 6.936967372894287, 44.763885498046875, 13.582980155944824, 16.106006622314453, 6.8202338218688965, 11.858057022094727, 11.678631782531738, 9.540572166442871, 11.071137428283691, 26.4217529296875, 10.096681594848633, 9.759757995605469, 20.89252281188965, 25.97989273071289, 13.165403366088867, 14.071423530578613, 10.75257682800293, 13.925488471984863, 13.159639358520508, 17.15169906616211, 30.84684181213379, 8.495408058166504, 71.25476837158203, 9.407812118530273, 13.736775398254395, 15.433056831359863, 13.801762580871582, 14.470754623413086, 17.213024139404297, 19.52669906616211, 16.78999900817871, 28.91451644897461, 12.545068740844727, 13.711309432983398, 9.56452751159668, 27.71697998046875, 16.64614486694336, 29.137462615966797, 9.964916229248047, 11.713778495788574, 12.424188613891602, 14.069280624389648, 8.683793067932129, 13.214126586914062, 16.59572982788086, 16.17538070678711, 31.73801040649414, 8.843262672424316, 7.8186445236206055, 11.902093887329102, 7.660836219787598, 22.227855682373047, 13.273587226867676, 39.28169250488281, 25.253257751464844, 6.571970462799072, 13.836996078491211, 10.011396408081055, 9.039766311645508, 11.330049514770508, 12.285956382751465, 5.808818340301514, 13.021791458129883, 13.978238105773926, 15.226712226867676, 21.024967193603516, 15.84864616394043, 10.313532829284668, 11.102315902709961, 10.840700149536133, 8.250791549682617, 42.118953704833984, 10.627931594848633, 10.713866233825684, 15.446017265319824, 10.120584487915039, 7.356152534484863, 14.973234176635742, 11.29397964477539, 11.583715438842773, 24.621335983276367, 12.661458015441895, 12.443070411682129, 12.204736709594727, 21.278045654296875, 23.29819679260254, 15.867518424987793, 9.860429763793945, 18.786226272583008, 11.770098686218262, 17.944448471069336, 13.161214828491211, 6.021185874938965, 6.935095310211182, 13.291719436645508, 11.678099632263184, 9.330636978149414, 10.348852157592773, 14.24177074432373, 11.589300155639648, 30.711181640625, 87.06585693359375, 14.215168952941895, 9.765767097473145, 33.333473205566406, 9.078852653503418, 11.314542770385742, 7.5947418212890625, 20.015087127685547, 13.923739433288574, 14.563507080078125, 13.164085388183594, 23.558048248291016, 17.413869857788086, 21.933090209960938, 15.000076293945312, 12.217596054077148, 17.410659790039062, 9.378887176513672, 12.403305053710938, 9.953550338745117, 10.165559768676758, 9.57455062866211, 12.91180419921875, 12.987607955932617, 10.213485717773438, 8.631616592407227, 9.136787414550781, 11.344892501831055, 9.272031784057617, 20.36859893798828, 16.632308959960938, 10.189729690551758, 48.77273178100586, 55.7539176940918, 13.592504501342773, 14.927780151367188, 8.924543380737305, 9.535362243652344, 9.483885765075684, 10.970375061035156, 13.634035110473633, 9.974467277526855, 14.269853591918945, 21.002338409423828, 9.342058181762695, 29.003183364868164, 23.873815536499023, 16.158206939697266, 14.992090225219727, 10.424117088317871, 10.938870429992676, 9.826088905334473, 38.376983642578125, 11.589521408081055, 15.112005233764648, 22.159780502319336, 10.507756233215332, 13.70527458190918, 10.30484676361084, 9.855853080749512, 9.227042198181152, 12.709589958190918, 63.13402557373047, 23.274250030517578, 9.729268074035645, 14.912935256958008, 15.498245239257812, 12.861170768737793, 9.47888469696045, 8.969669342041016, 11.497896194458008, 19.94169807434082, 10.5413179397583, 36.49317932128906, 22.158809661865234, 11.260782241821289, 11.894867897033691, 12.96434497833252, 15.274473190307617, 11.10125732421875, 9.9711332321167, 39.59477615356445, 11.105356216430664, 9.903141975402832, 21.135046005249023, 18.092281341552734, 11.607501983642578, 10.187434196472168, 39.68376159667969, 28.143808364868164, 19.280189514160156, 9.418763160705566, 10.965855598449707, 12.138688087463379, 15.107037544250488, 15.368448257446289, 26.9605712890625, 14.863740921020508, 10.9794282913208, 10.833162307739258, 14.377172470092773, 8.415387153625488, 17.360214233398438, 13.025052070617676, 10.85393238067627, 11.342177391052246, 7.882784843444824, 11.356541633605957, 10.25125789642334, 12.3920259475708, 16.517780303955078, 8.664962768554688, 24.744014739990234, 23.051353454589844, 20.056570053100586, 17.40903663635254, 10.519719123840332, 15.159627914428711, 13.281344413757324, 8.770444869995117, 15.572389602661133, 19.751590728759766, 12.9594144821167, 12.9832181930542, 11.048539161682129, 14.009206771850586, 14.375666618347168, 23.288272857666016, 25.658660888671875, 13.622454643249512, 11.885587692260742, 18.34008026123047, 8.311918258666992, 13.734167098999023, 21.87071990966797, 8.521795272827148, 8.859806060791016, 41.172672271728516, 10.085794448852539, 19.523508071899414, 14.843533515930176, 20.879858016967773, 10.502357482910156, 17.946882247924805, 14.338075637817383, 13.186877250671387, 10.11539077758789, 6.349745750427246, 18.727874755859375, 24.191659927368164, 14.832890510559082, 22.23819923400879, 12.047220230102539, 45.467926025390625, 12.150287628173828, 8.804250717163086, 14.058222770690918, 12.711756706237793, 13.826942443847656, 30.034069061279297, 11.846470832824707, 11.486093521118164, 7.147610664367676, 10.319347381591797, 9.662986755371094, 9.168828964233398, 11.290262222290039, 9.65965461730957, 16.282888412475586, 15.670376777648926, 9.658899307250977, 12.837881088256836, 10.794569969177246, 12.9053316116333, 25.246686935424805, 12.937957763671875, 9.15853500366211, 12.352654457092285, 9.53264045715332, 9.802770614624023, 13.807765007019043, 16.14505386352539, 12.543270111083984, 13.995821952819824, 21.13817596435547, 17.06902503967285, 12.09657096862793, 10.860596656799316, 12.224353790283203, 13.452459335327148, 33.06996536254883, 9.992403030395508, 9.438409805297852, 10.473197937011719, 6.736997127532959, 15.01282024383545, 10.477045059204102, 18.563148498535156, 11.294774055480957, 9.371606826782227, 9.861018180847168, 17.84488296508789, 9.998993873596191, 9.830474853515625, 7.714723110198975, 15.177793502807617, 13.125381469726562, 14.437982559204102, 15.296083450317383, 9.954011917114258, 9.37097454071045, 17.424291610717773, 24.04877281188965, 12.724587440490723, 23.532726287841797, 9.327631950378418, 9.341529846191406, 17.787769317626953, 10.805253028869629, 7.216022491455078, 12.570502281188965, 10.247220993041992, 18.075918197631836, 10.845266342163086, 10.1432523727417, 9.956823348999023, 8.070717811584473, 10.597593307495117, 8.976800918579102, 10.398262977600098, 10.26569938659668, 9.802824020385742, 13.6848783493042, 11.441641807556152, 44.89574432373047, 37.5737190246582, 9.39663028717041, 6.754476070404053, 9.933808326721191, 18.204864501953125, 9.211174964904785, 9.19657039642334, 13.117780685424805, 4.410724639892578, 13.274209976196289, 15.633522033691406, 9.516324996948242, 18.199764251708984, 10.578222274780273, 10.398612976074219, 16.035289764404297, 14.498327255249023, 14.526860237121582, 15.666715621948242, 16.82964515686035, 15.632952690124512, 14.299120903015137, 13.667620658874512, 9.875177383422852, 10.800950050354004, 20.889616012573242, 10.492673873901367, 10.494438171386719, 22.081878662109375, 11.170683860778809, 11.531176567077637, 5.652410507202148, 9.665766716003418, 13.9721097946167, 10.539834022521973, 9.364645957946777, 12.555521011352539, 13.587892532348633, 10.159183502197266, 12.358848571777344, 9.778177261352539, 8.81093978881836, 9.339654922485352, 34.01606369018555, 24.818069458007812, 12.877464294433594, 30.998554229736328, 6.034519195556641, 9.989130973815918, 8.541006088256836, 15.0986328125, 9.302467346191406, 11.180150985717773, 9.761137008666992, 11.934967041015625, 10.07996940612793, 10.497236251831055, 12.467517852783203, 49.152217864990234, 10.30921459197998, 21.4066104888916, 7.676323890686035, 22.94631004333496, 17.36485481262207, 11.269325256347656, 8.145307540893555, 13.76683521270752, 12.021644592285156, 16.220138549804688, 14.422739028930664, 10.641435623168945, 5.3383469581604, 13.679255485534668, 8.775262832641602, 17.184362411499023, 12.168414115905762, 11.044279098510742, 15.968193054199219, 20.948638916015625, 11.858302116394043, 33.70685577392578, 6.973239898681641, 32.21265411376953, 12.233474731445312, 23.876672744750977, 11.573019981384277, 14.426310539245605, 15.656336784362793, 12.019243240356445, 10.295305252075195, 28.37307357788086, 14.136375427246094, 13.77440357208252, 16.379230499267578, 21.367572784423828, 14.890203475952148, 24.34453773498535, 11.846054077148438, 11.029546737670898, 8.636857986450195, 21.351154327392578, 12.19868278503418, 14.375761032104492, 10.572393417358398, 4.268155097961426, 10.93758487701416, 11.63376522064209, 7.372354030609131, 13.073573112487793, 9.525311470031738, 15.424646377563477, 6.485957145690918, 14.904800415039062, 22.731449127197266, 43.284202575683594, 12.655427932739258, 7.4228010177612305, 14.924880981445312, 17.903873443603516, 21.33295440673828, 14.905891418457031, 35.104591369628906, 12.181962966918945, 15.229403495788574, 7.201491355895996, 11.473917007446289, 9.044343948364258, 13.855218887329102, 93.52677917480469, 30.37485694885254, 14.211898803710938, 28.321237564086914, 17.768083572387695, 12.532010078430176, 16.256383895874023, 24.037517547607422, 8.721048355102539, 18.3477783203125, 14.68640422821045, 8.594633102416992, 19.99506378173828, 11.434521675109863, 7.446267604827881, 7.6861701011657715, 12.086694717407227, 22.449947357177734, 11.987727165222168, 8.70467758178711, 15.33696460723877, 8.84476375579834, 10.234959602355957, 11.27402114868164, 21.440608978271484, 8.98908519744873, 15.34857177734375, 8.904743194580078, 9.564218521118164, 11.790868759155273, 13.041315078735352, 33.126365661621094, 9.436910629272461, 10.7910737991333, 12.59501838684082, 36.68977737426758, 11.290281295776367, 12.8460693359375, 11.519369125366211, 22.123456954956055, 15.95814037322998, 8.29548454284668, 11.078714370727539, 8.364219665527344, 11.467426300048828, 13.525651931762695, 14.630556106567383, 13.703153610229492, 15.88286018371582, 20.84366798400879, 29.106653213500977, 17.02651596069336, 14.967905044555664, 6.9988813400268555, 9.04348373413086, 10.721037864685059, 8.165872573852539, 13.338333129882812, 9.437907218933105, 18.282672882080078, 15.736991882324219, 11.853273391723633, 11.681838035583496, 15.539047241210938, 11.063761711120605, 29.991878509521484, 23.434337615966797, 21.118492126464844, 8.207792282104492, 20.733051300048828, 13.247329711914062, 9.988802909851074, 12.69920825958252, 10.828022956848145, 10.58271312713623, 9.415865898132324, 13.117238998413086, 11.335897445678711, 12.151281356811523, 15.1720552444458, 23.145488739013672, 12.751330375671387, 10.642582893371582, 19.37824249267578, 14.138033866882324, 11.688867568969727, 16.67983627319336, 16.543350219726562, 12.687089920043945, 11.23120403289795, 10.922280311584473, 15.98851203918457, 9.560829162597656, 15.849886894226074, 16.77899169921875, 7.18887186050415, 15.690374374389648, 15.373495101928711, 18.82086181640625, 33.50840759277344, 8.20241641998291, 12.783379554748535, 19.061729431152344, 32.23642349243164, 15.152252197265625, 12.26055908203125, 11.649209976196289, 11.32999038696289, 11.943082809448242, 8.759185791015625, 17.637004852294922, 37.666664123535156, 21.361541748046875, 11.51489543914795, 85.90264129638672, 12.461285591125488, 33.167720794677734, 17.159725189208984, 10.718780517578125, 21.422897338867188, 10.666993141174316, 14.806676864624023, 9.82284927368164, 13.501269340515137, 8.755330085754395, 13.243550300598145, 10.03636360168457, 13.817814826965332, 38.362152099609375, 6.4022321701049805, 12.094073295593262, 10.413930892944336, 12.545825958251953, 9.479086875915527, 9.41411018371582, 10.33820629119873, 20.539169311523438, 10.814069747924805, 12.089943885803223, 11.038311958312988, 17.164878845214844, 16.195110321044922, 10.523612976074219, 19.62080192565918, 72.62480926513672, 5.4310302734375, 8.944692611694336, 11.734550476074219, 41.393672943115234, 10.75385570526123, 10.511001586914062, 11.489047050476074, 24.745044708251953, 10.927783966064453, 8.789925575256348, 11.284769058227539, 16.00748062133789, 11.429519653320312, 15.716196060180664, 8.607324600219727, 14.85576343536377, 22.217227935791016, 20.94768714904785, 9.314699172973633, 13.38012409210205, 18.749670028686523, 13.737833976745605, 18.015625, 12.662440299987793, 10.831881523132324, 37.160797119140625, 23.561708450317383, 29.795190811157227, 9.105630874633789, 10.482416152954102, 14.577791213989258, 10.528939247131348, 14.268524169921875, 26.85419273376465, 20.09061622619629, 10.765275001525879, 18.83591651916504, 14.951458930969238, 9.497182846069336, 19.71868896484375, 14.7492036819458, 9.676618576049805, 15.710786819458008, 16.440319061279297, 13.644320487976074, 9.267656326293945, 15.09113883972168, 10.769079208374023, 13.459872245788574, 9.5400972366333, 21.537113189697266, 13.992752075195312, 12.571432113647461, 10.986185073852539, 26.416885375976562, 26.35546875, 9.626836776733398, 11.918213844299316, 9.06226634979248, 8.083078384399414, 35.698089599609375, 13.277215957641602, 8.257957458496094, 14.070663452148438, 11.830613136291504, 11.3411865234375, 14.353055953979492, 4.8125128746032715, 8.270995140075684, 38.340431213378906, 11.33034610748291, 22.530033111572266, 11.795459747314453, 10.71922779083252, 14.396891593933105, 11.274930953979492, 10.562536239624023, 16.621685028076172, 21.192794799804688, 15.511868476867676, 15.420560836791992, 13.044878959655762, 12.61170768737793, 13.31250286102295, 16.507295608520508, 8.849440574645996, 21.67168617248535, 28.085636138916016, 24.560264587402344, 11.157098770141602, 13.870402336120605, 25.366914749145508, 16.787635803222656, 10.85673713684082, 12.526069641113281, 15.8821439743042, 19.87531089782715, 6.835513114929199, 12.559608459472656, 19.483190536499023, 34.4837646484375, 12.692704200744629, 10.753974914550781, 51.4091796875, 11.749303817749023, 10.980511665344238, 8.193010330200195, 6.500536918640137, 10.7553129196167, 9.147865295410156, 12.628382682800293, 74.6116714477539, 26.847885131835938, 16.11104393005371, 11.583196640014648, 11.746686935424805, 11.265692710876465, 11.202735900878906, 10.861857414245605, 9.704609870910645, 16.306072235107422, 14.165380477905273, 15.646456718444824, 9.0089750289917, 16.246400833129883, 13.288970947265625, 10.326809883117676, 27.121204376220703, 11.798009872436523, 11.940408706665039, 23.103849411010742, 10.956762313842773, 13.338872909545898, 72.3873291015625, 12.797452926635742, 20.007770538330078, 23.52750015258789, 11.068903923034668, 12.028104782104492, 13.605005264282227, 10.393789291381836, 15.257749557495117, 6.713536262512207, 15.707700729370117, 12.07507038116455, 12.880475997924805, 13.578500747680664, 18.206768035888672, 6.930970668792725, 11.971700668334961, 7.463630676269531, 13.746694564819336, 15.661669731140137, 19.673030853271484, 23.386484146118164, 34.08489227294922, 50.21018600463867, 16.836650848388672, 32.928611755371094, 8.30970573425293, 8.557061195373535, 7.787217140197754, 31.185171127319336, 8.088227272033691, 15.0903959274292, 7.858025550842285, 25.291101455688477, 11.00819206237793, 13.005770683288574, 12.032958030700684, 6.980521202087402, 13.200947761535645, 12.356843948364258, 11.326234817504883, 17.080669403076172, 13.549633979797363, 10.27221965789795, 15.319727897644043, 15.205365180969238, 12.596190452575684, 11.463885307312012, 7.409686088562012, 17.571264266967773, 11.701126098632812, 73.6683120727539, 7.907138824462891, 16.154483795166016, 10.813034057617188, 15.736509323120117, 8.688543319702148, 12.432909965515137, 9.190877914428711, 8.799296379089355, 20.123262405395508, 12.70337963104248, 9.367074966430664, 9.444246292114258, 9.800088882446289, 10.598726272583008, 14.412443161010742, 11.851923942565918, 13.947428703308105, 18.173011779785156, 47.89415740966797, 13.512059211730957, 12.740686416625977], "synergy_std": [0.6783542633056641, 0.7194556593894958, 1.4775251150131226, 1.3873897790908813, 0.6476802825927734, 0.923274576663971, 1.1041959524154663, 0.7461422085762024, 1.3227814435958862, 1.3259843587875366, 2.0978779792785645, 0.6387829184532166, 1.868701457977295, 1.0691176652908325, 1.157741904258728, 4.241276741027832, 0.7620360851287842, 1.4557512998580933, 0.6654266119003296, 0.7780413031578064, 1.4196676015853882, 0.4567137658596039, 1.1926838159561157, 1.7080507278442383, 0.6311776638031006, 0.66890949010849, 1.787654161453247, 0.6056217551231384, 0.8903242945671082, 2.0553243160247803, 1.7627531290054321, 1.7994734048843384, 1.7574888467788696, 1.386165738105774, 0.8692048192024231, 1.435481071472168, 1.5990711450576782, 0.7974486947059631, 1.1267824172973633, 1.8288538455963135, 0.526584267616272, 1.3603174686431885, 2.581869125366211, 1.5767723321914673, 0.8183256387710571, 0.6836864352226257, 0.8949623107910156, 0.8388902544975281, 0.904133677482605, 2.4448604583740234, 0.7655602693557739, 2.5710747241973877, 1.001490831375122, 1.328786849975586, 2.7799110412597656, 1.0003780126571655, 1.9222309589385986, 0.7659573554992676, 0.8337178826332092, 4.989223003387451, 0.672806978225708, 1.731404423713684, 2.2386984825134277, 1.8319846391677856, 1.3422081470489502, 1.9430286884307861, 0.6846626996994019, 1.0057549476623535, 1.4034565687179565, 1.2080343961715698, 0.7022566795349121, 2.752091884613037, 0.8272188305854797, 3.281449794769287, 1.3744161128997803, 0.5881216526031494, 3.7106125354766846, 0.9031960964202881, 0.8432388305664062, 2.972266435623169, 4.296367645263672, 1.122535228729248, 0.8791860342025757, 0.6739952564239502, 1.2590440511703491, 0.7229258418083191, 1.5305572748184204, 1.1488652229309082, 0.9036229848861694, 0.836395263671875, 2.949894666671753, 1.4902598857879639, 1.2457283735275269, 1.3952343463897705, 0.9352415204048157, 1.8042086362838745, 1.6199742555618286, 1.2772505283355713, 0.9630838632583618, 3.4993014335632324, 1.5918384790420532, 1.7634273767471313, 1.0364418029785156, 0.9894164204597473, 1.30948805809021, 1.1438018083572388, 1.9700802564620972, 0.7665157318115234, 1.2322611808776855, 0.813976526260376, 0.6750103831291199, 0.7559333443641663, 0.7860165238380432, 3.0558791160583496, 1.0725271701812744, 0.8810822367668152, 0.6784158945083618, 1.9886765480041504, 0.8165046572685242, 1.2042784690856934, 0.7650840282440186, 1.3363951444625854, 1.080287218093872, 0.5721982717514038, 1.2734202146530151, 0.901249885559082, 1.172326922416687, 1.235589623451233, 1.382241129875183, 1.2422720193862915, 0.8052717447280884, 1.9125181436538696, 2.070308208465576, 1.8721390962600708, 0.945622980594635, 1.1937413215637207, 1.9610918760299683, 0.9856632947921753, 2.531294345855713, 1.4008870124816895, 1.049965500831604, 0.9884673357009888, 2.9590795040130615, 2.1519289016723633, 1.8233999013900757, 1.2200783491134644, 1.7711591720581055, 1.4948464632034302, 1.0941808223724365, 2.0572943687438965, 1.1631968021392822, 1.3165323734283447, 1.3227605819702148, 0.8889417052268982, 1.5456526279449463, 1.966938853263855, 1.7487818002700806, 1.156200647354126, 1.4396651983261108, 1.4817098379135132, 1.4762465953826904, 1.813781976699829, 1.3040581941604614, 1.0571115016937256, 2.0220377445220947, 1.2659326791763306, 1.2278155088424683, 1.635788083076477, 1.2002811431884766, 4.207754135131836, 1.9217430353164673, 1.3467577695846558, 0.8735628128051758, 1.1699411869049072, 2.286587715148926, 0.8525721430778503, 2.3456785678863525, 2.365525245666504, 1.7432594299316406, 2.5217623710632324, 5.5329718589782715, 1.0155916213989258, 1.6942945718765259, 0.9821608662605286, 1.7234073877334595, 1.083119511604309, 4.026938438415527, 1.4657875299453735, 1.3701987266540527, 2.106981039047241, 1.0092114210128784, 0.9298097491264343, 1.2826223373413086, 1.2127164602279663, 0.8898515701293945, 1.5838379859924316, 1.099782109260559, 1.990736722946167, 1.143174171447754, 1.6757992506027222, 2.2543606758117676, 1.5016599893569946, 1.5390806198120117, 2.166437864303589, 1.2842148542404175, 1.0462194681167603, 0.8617546558380127, 1.3166507482528687, 1.6189537048339844, 0.9497711062431335, 1.1323579549789429, 2.9852747917175293, 1.4903820753097534, 1.853819489479065, 1.3154011964797974, 2.0648722648620605, 0.9506735801696777, 1.7357593774795532, 1.225304126739502, 2.0623884201049805, 1.4657875299453735, 1.448525071144104, 1.523703932762146, 1.0360485315322876, 1.7364006042480469, 1.3453333377838135, 1.3508871793746948, 2.2227160930633545, 0.915713369846344, 0.9861619472503662, 1.2160062789916992, 1.3403434753417969, 2.03226900100708, 1.630493402481079, 2.698505401611328, 3.712379217147827, 0.7629594206809998, 0.9077706933021545, 1.5585825443267822, 0.883737325668335, 1.2342708110809326, 2.136939525604248, 1.6527143716812134, 1.1676268577575684, 1.8666114807128906, 0.8253234028816223, 1.6603463888168335, 1.6627700328826904, 1.0828264951705933, 1.5178245306015015, 1.2825337648391724, 0.7473580837249756, 1.8893905878067017, 1.1715043783187866, 1.5781036615371704, 1.1325173377990723, 2.409963607788086, 1.926063895225525, 2.4525928497314453, 0.8232184052467346, 1.30060875415802, 1.4626693725585938, 2.3641092777252197, 1.1816223859786987, 0.7272999286651611, 1.230259895324707, 1.5894663333892822, 1.8113586902618408, 1.9149169921875, 0.9878115653991699, 0.9522397518157959, 1.5092575550079346, 0.7954960465431213, 1.050685167312622, 1.3946306705474854, 1.1384178400039673, 1.263266682624817, 0.9083521366119385, 0.7446242570877075, 1.27981698513031, 1.8306670188903809, 2.9558775424957275, 5.272264003753662, 1.154087781906128, 2.57311749458313, 1.2608065605163574, 1.4561501741409302, 1.911177158355713, 0.9618183970451355, 1.9505382776260376, 1.0412728786468506, 1.8382234573364258, 0.9989898800849915, 2.307325601577759, 0.45145151019096375, 2.217303514480591, 1.446922779083252, 1.2986619472503662, 1.6559677124023438, 1.5926474332809448, 0.5517222881317139, 1.1128708124160767, 1.3927130699157715, 0.7064045667648315, 0.6021939516067505, 1.8931427001953125, 1.1055912971496582, 0.9535107016563416, 1.2530730962753296, 0.7818877696990967, 1.216109275817871, 1.1898411512374878, 1.145157814025879, 1.3018885850906372, 1.0141987800598145, 0.8639488220214844, 0.6730136871337891, 0.6882051229476929, 1.606964111328125, 2.0462746620178223, 1.066483736038208, 0.6598155498504639, 1.3315367698669434, 1.2563855648040771, 1.9514797925949097, 1.6740642786026, 1.0873258113861084, 1.6852657794952393, 0.9884784817695618, 2.464604139328003, 0.8098528981208801, 1.1757551431655884, 0.6978601217269897, 1.3244929313659668, 0.9830595850944519, 1.6786049604415894, 0.9935593605041504, 1.4408506155014038, 1.1202518939971924, 1.149396300315857, 0.48633715510368347, 1.205421805381775, 1.4152177572250366, 0.6512095928192139, 0.8703254461288452, 0.9334734082221985, 0.9015535116195679, 0.8828698992729187, 1.773258924484253, 1.1769601106643677, 2.003767251968384, 1.3989065885543823, 2.051079511642456, 1.4547227621078491, 2.019595146179199, 0.7330376505851746, 0.9768849611282349, 1.4727952480316162, 0.5609683990478516, 4.039815902709961, 0.5620395541191101, 1.1696317195892334, 0.6231235265731812, 6.290435314178467, 1.3599227666854858, 1.1864923238754272, 0.804611325263977, 2.2676992416381836, 1.0876903533935547, 0.6887075901031494, 1.292759895324707, 2.028449296951294, 1.4173474311828613, 1.3244349956512451, 3.290210008621216, 2.452366352081299, 0.8695244789123535, 0.7703606486320496, 1.1853766441345215, 1.0447980165481567, 1.6172473430633545, 1.649385690689087, 1.2682045698165894, 0.9611304998397827, 0.5610661506652832, 0.9674897193908691, 0.5366921424865723, 1.4345588684082031, 0.6693270206451416, 1.2066946029663086, 0.8797312378883362, 1.8761147260665894, 0.45336294174194336, 1.690050721168518, 0.7252868413925171, 0.5774997472763062, 0.8059735894203186, 3.307476282119751, 1.869209885597229, 2.6926467418670654, 0.7445480823516846, 0.6541030406951904, 1.9271204471588135, 2.232239246368408, 0.3753030002117157, 0.8311473727226257, 1.876106858253479, 1.0031882524490356, 1.0206680297851562, 0.5947151780128479, 1.3939151763916016, 1.2688935995101929, 0.7928951978683472, 1.0074577331542969, 2.0898325443267822, 1.3384184837341309, 1.0174388885498047, 0.7772258520126343, 0.589421272277832, 1.3217260837554932, 2.3540072441101074, 1.5135117769241333, 1.1502751111984253, 0.6433438658714294, 0.7678150534629822, 1.170719027519226, 0.9603196382522583, 2.93277907371521, 1.5305006504058838, 0.6295709013938904, 2.714226722717285, 0.49237194657325745, 0.8306634426116943, 1.991716742515564, 0.4847959578037262, 0.5087277889251709, 1.1616188287734985, 0.9654337763786316, 0.8665842413902283, 1.1034352779388428, 0.7974064350128174, 0.8577627539634705, 0.9014078378677368, 3.5221476554870605, 1.9981783628463745, 1.5825481414794922, 0.7982758283615112, 0.9239036440849304, 1.572605848312378, 1.01430344581604, 0.8084403276443481, 0.5768382549285889, 0.7989424467086792, 1.7960797548294067, 0.6257659196853638, 3.38742733001709, 0.4730045795440674, 0.7876917123794556, 0.5573912858963013, 1.0874677896499634, 1.9854626655578613, 0.7569019794464111, 1.454480528831482, 3.4392387866973877, 0.9113337993621826, 0.6275442242622375, 1.1130423545837402, 1.3331588506698608, 1.4571350812911987, 0.7452574968338013, 1.4484026432037354, 2.153442859649658, 1.5587811470031738, 0.7238637208938599, 0.5226709246635437, 0.832197368144989, 2.0358150005340576, 1.6131170988082886, 1.1956920623779297, 0.855915904045105, 1.754453182220459, 0.7388520836830139, 1.5322065353393555, 1.442646861076355, 1.0002250671386719, 1.0041601657867432, 1.1640925407409668, 0.5653730034828186, 1.1344934701919556, 1.4618990421295166, 5.044892311096191, 1.1647125482559204, 1.6320825815200806, 3.723797082901001, 0.8108276724815369, 1.522879719734192, 0.697492778301239, 2.0047686100006104, 0.8547451496124268, 0.7721760272979736, 1.0444680452346802, 0.7688896059989929, 1.004046082496643, 1.6370126008987427, 1.3707098960876465, 2.8258450031280518, 1.4405940771102905, 1.897537112236023, 1.2710579633712769, 1.9643853902816772, 1.5301953554153442, 2.7604868412017822, 2.4248125553131104, 1.9257454872131348, 1.8436931371688843, 3.5189504623413086, 2.8083550930023193, 3.597113609313965, 0.9465709328651428, 0.8894599080085754, 1.1504284143447876, 2.599897861480713, 1.1861189603805542, 1.5330636501312256, 0.9884857535362244, 1.3656067848205566, 1.6290464401245117, 2.205901861190796, 0.9397860765457153, 0.7940126061439514, 1.0153943300247192, 2.1381640434265137, 1.3431055545806885, 1.445587158203125, 3.089310884475708, 0.8665259480476379, 1.0885331630706787, 1.0066118240356445, 1.0967026948928833, 2.160327434539795, 1.8915499448776245, 2.398571729660034, 2.2453088760375977, 2.093918800354004, 2.2601280212402344, 1.135185718536377, 2.1690971851348877, 2.2271695137023926, 1.3747024536132812, 1.9975731372833252, 0.6329730749130249, 2.2840609550476074, 1.4361575841903687, 1.6119532585144043, 0.9158970713615417, 1.025141954421997, 1.3103585243225098, 1.4090561866760254, 0.7915270328521729, 1.9463526010513306, 1.3797937631607056, 4.0548624992370605, 0.8802695870399475, 1.7259176969528198, 1.006223440170288, 2.053231954574585, 1.4120335578918457, 1.4286659955978394, 0.950489342212677, 0.8616326451301575, 3.66774582862854, 1.144715666770935, 1.9885331392288208, 1.1897071599960327, 2.4576168060302734, 1.092602252960205, 1.4087226390838623, 1.808278203010559, 2.9312191009521484, 1.8609460592269897, 1.3268669843673706, 1.61345374584198, 1.6797339916229248, 1.191085696220398, 2.8401992321014404, 1.9265773296356201, 1.1303244829177856, 1.3581113815307617, 1.9741644859313965, 0.8047654628753662, 1.0694231986999512, 1.919721245765686, 1.0701079368591309, 0.7662152647972107, 2.788949489593506, 0.9911342263221741, 2.3298635482788086, 1.451717734336853, 0.6566812992095947, 1.4879194498062134, 1.201518177986145, 0.844821035861969, 1.1061527729034424, 4.278695106506348, 0.8079735040664673, 1.3251744508743286, 1.0123344659805298, 2.208921432495117, 5.788548469543457, 1.0821634531021118, 2.468024730682373, 1.320090413093567, 0.8990177512168884, 1.1490460634231567, 2.987586498260498, 1.1145557165145874, 0.891310453414917, 1.7167880535125732, 1.3053689002990723, 1.6977020502090454, 1.3812836408615112, 3.0902507305145264, 0.7179072499275208, 1.0052741765975952, 1.2840232849121094, 1.1789253950119019, 2.3804566860198975, 4.95142936706543, 0.8396663665771484, 0.9959433674812317, 1.358664631843567, 1.7891819477081299, 1.1037181615829468, 2.4066903591156006, 1.1628068685531616, 0.7648716568946838, 1.2632908821105957, 1.723867416381836, 1.8923686742782593, 3.4949393272399902, 0.904716968536377, 1.6231046915054321, 1.1091914176940918, 0.7071865200996399, 0.5777432918548584, 1.3378750085830688, 1.5128865242004395, 0.6706483364105225, 1.4377131462097168, 0.5944812297821045, 1.1722548007965088, 0.7274507284164429, 0.6280471682548523, 1.6763852834701538, 1.014611840248108, 1.277754545211792, 0.6933630704879761, 2.1265439987182617, 1.3708863258361816, 1.0866328477859497, 4.659333229064941, 1.032536506652832, 1.5498664379119873, 4.603361129760742, 1.7230784893035889, 1.2888120412826538, 1.771242380142212, 2.9101309776306152, 0.9861438870429993, 0.8256210088729858, 1.6855443716049194, 1.4237617254257202, 0.9838247299194336, 1.2911573648452759, 1.2701187133789062, 1.8853225708007812, 1.7283629179000854, 1.1127667427062988, 0.9403753280639648, 1.4233057498931885, 0.8662116527557373, 1.3043811321258545, 0.7326082587242126, 2.109652042388916, 0.9752157926559448, 2.395171642303467, 2.1370279788970947, 1.0595470666885376, 0.6464985013008118, 0.33751341700553894, 0.8506945967674255, 1.5635921955108643, 1.328318476676941, 0.8923990726470947, 5.6655168533325195, 0.5915690064430237, 2.5106201171875, 1.3566573858261108, 1.8813310861587524, 1.0113528966903687, 1.7142804861068726, 0.6688424348831177, 1.353232502937317, 0.8023843169212341, 0.7342366576194763, 1.0103073120117188, 3.2948250770568848, 1.1079670190811157, 0.8214119076728821, 0.8974660038948059, 1.015701174736023, 1.1745606660842896, 0.7244536280632019, 0.9465947151184082, 1.222530722618103, 1.3603315353393555, 0.7842556834220886, 1.4761584997177124, 1.0757557153701782, 0.8539837002754211, 1.029244303703308, 0.6016199588775635, 2.008571147918701, 0.7851721048355103, 1.1422332525253296, 0.5785383582115173, 1.908394455909729, 3.261091470718384, 1.1443144083023071, 0.8886775970458984, 1.603860855102539, 1.3754547834396362, 0.6906604170799255, 1.4651260375976562, 1.1455692052841187, 0.9106451272964478, 0.6762485504150391, 0.8442489504814148, 0.7307987809181213, 0.6979740858078003, 1.8520756959915161, 1.132114291191101, 1.7598023414611816, 0.70537269115448, 0.6018019914627075, 1.0607903003692627, 0.8977911472320557, 1.8806959390640259, 1.2943780422210693, 2.2046899795532227, 1.3693010807037354, 5.635651111602783, 3.639796018600464, 1.2461106777191162, 1.041800856590271, 0.8562154173851013, 1.1597836017608643, 0.7000048756599426, 0.6733677387237549, 0.8935666680335999, 1.1671521663665771, 1.0762510299682617, 0.7232423424720764, 0.5097548961639404, 0.6952463388442993, 1.1262930631637573, 2.2181899547576904, 0.7870028018951416, 0.7967302799224854, 1.6176499128341675, 1.3084253072738647, 1.6235183477401733, 1.0613313913345337, 1.6000642776489258, 1.5086731910705566, 1.7295725345611572, 0.8844525218009949, 0.8632661700248718, 1.5470621585845947, 1.1898078918457031, 1.3995665311813354, 0.6199353933334351, 0.7967886328697205, 0.6769410967826843, 0.9471800923347473, 0.8945924639701843, 2.01812744140625, 1.4146004915237427, 1.0270463228225708, 0.4103941321372986, 2.062833309173584, 1.105678677558899, 1.512585163116455, 0.9792827367782593, 0.6916260719299316, 1.0391840934753418, 1.4587477445602417, 0.9468309879302979, 0.7637758255004883, 1.540358066558838, 0.5257571339607239, 1.5348260402679443, 1.9009125232696533, 0.8590431213378906, 1.3075913190841675, 1.341711401939392, 0.8964869379997253, 1.1110173463821411, 0.5929871201515198, 1.394841194152832, 1.082344889640808, 0.6498563289642334, 0.514526903629303, 0.6909010410308838, 1.4984560012817383, 2.059948682785034, 1.5148557424545288, 1.0347398519515991, 1.1303471326828003, 1.6018459796905518, 1.140130877494812, 1.0148760080337524, 1.1541526317596436, 1.1148124933242798, 1.921737551689148, 1.18379545211792, 0.6823810338973999, 0.8081675171852112, 0.8910315036773682, 1.6972548961639404, 0.9607837796211243, 1.888135313987732, 1.2094001770019531, 1.2737149000167847, 0.6170032620429993, 0.7692659497261047, 0.476406067609787, 1.2015669345855713, 0.6065065860748291, 2.0050249099731445, 0.8942450284957886, 1.1566202640533447, 1.4704680442810059, 0.6968055367469788, 0.8617228865623474, 1.0445308685302734, 0.5703657865524292, 1.3654839992523193, 2.0716958045959473, 0.6945574283599854, 0.9220997095108032, 2.4865546226501465, 0.7299001216888428, 0.8836799263954163, 2.2715721130371094, 2.5828824043273926, 1.082911491394043, 1.4191615581512451, 0.6097351312637329, 7.622506618499756, 1.8866920471191406, 0.8691980838775635, 1.0264842510223389, 1.4366203546524048, 1.1151773929595947, 0.9895286560058594, 1.3928240537643433, 0.8339006900787354, 0.8231987953186035, 1.3187944889068604, 0.9735528826713562, 1.1888689994812012, 1.0279567241668701, 1.6837400197982788, 1.0181570053100586, 0.4744509160518646, 0.9269501566886902, 1.1766568422317505, 1.266904354095459, 0.8955047726631165, 0.7886748909950256, 0.46006420254707336, 0.5332859754562378, 0.5000221133232117, 1.132836937904358, 0.6874701976776123, 2.9851393699645996, 0.9831962585449219, 2.090696334838867, 1.569911241531372, 2.3353748321533203, 1.2376621961593628, 0.8960698246955872, 0.7643190026283264, 1.353157639503479, 1.6581915616989136, 1.0524832010269165, 1.3183927536010742, 0.8735189437866211, 0.7519245743751526, 0.772273600101471, 0.9142481088638306, 0.4026185870170593, 0.9881379008293152, 0.5376647710800171, 1.6723287105560303, 0.84041827917099, 0.9827123284339905, 2.1357600688934326, 0.6003063917160034, 0.8896393179893494, 0.5761090517044067, 0.6186283826828003, 0.9896153807640076, 0.7300706505775452, 0.8918418288230896, 3.778461456298828, 0.6263787746429443, 2.1495184898376465, 0.8100433349609375, 1.3609412908554077, 0.7455776333808899, 1.3168889284133911, 1.1160746812820435, 1.4189860820770264, 0.6697384119033813, 0.6086758971214294, 1.142374873161316, 2.4287750720977783, 1.9142944812774658, 1.2999590635299683, 0.8526592254638672, 0.8730040192604065, 1.4295909404754639, 1.1264033317565918, 1.374792218208313, 1.0407100915908813, 1.9568208456039429, 0.44870951771736145, 0.7003843188285828, 0.6931225657463074, 1.311850905418396, 2.3743391036987305, 2.075458288192749, 1.8029111623764038, 1.2936269044876099, 1.0547221899032593, 1.3329851627349854, 0.508670449256897, 0.7423228025436401, 0.9924271106719971, 0.625579833984375, 1.017398476600647, 1.5082643032073975, 0.9860671162605286, 1.3541827201843262, 1.0818320512771606, 0.9878392219543457, 2.110935926437378, 1.797886848449707, 1.041257381439209, 1.2089121341705322, 0.48400360345840454, 2.794877529144287, 0.6312655806541443, 1.3259886503219604, 1.0279719829559326, 2.0050947666168213, 0.8577008843421936, 1.9019981622695923, 1.6293282508850098, 1.1700007915496826, 1.4722299575805664, 0.6992597579956055, 0.4711243212223053, 0.9647539258003235, 0.46395066380500793, 2.792074680328369, 1.0145347118377686, 0.9726797342300415, 0.9989126324653625, 1.7912342548370361, 0.8718899488449097, 1.3703371286392212, 1.8319381475448608, 1.1511729955673218, 0.710152804851532, 0.8307191133499146, 1.4158246517181396, 0.9351308941841125, 1.4054979085922241, 1.067737102508545, 0.847997784614563, 1.340595006942749, 3.979653835296631, 1.3036205768585205, 0.7776264548301697, 0.9374372959136963, 0.6563613414764404, 1.6199028491973877, 1.5537216663360596, 3.9656057357788086, 2.0632286071777344, 2.3559720516204834, 1.9094419479370117, 1.0832244157791138, 0.9178515672683716, 1.3814787864685059, 0.4864186942577362, 1.0304057598114014, 0.6257787942886353, 1.9817562103271484, 0.7495764493942261, 1.451521635055542, 0.9793084859848022, 0.6610519289970398, 0.6292392611503601, 0.7599450349807739, 0.7176936268806458, 0.6979750394821167, 4.110734939575195, 1.7361044883728027, 1.2558304071426392, 0.911247193813324, 1.990317463874817, 1.2267553806304932, 0.9107932448387146, 0.9999959468841553, 1.2832844257354736, 1.6114060878753662, 1.3629951477050781, 1.1658587455749512, 0.8087328672409058, 1.3027278184890747, 1.3046224117279053, 0.9168522357940674, 1.2047865390777588, 1.0751091241836548, 1.9614487886428833, 1.2187750339508057, 1.767598032951355, 1.04293692111969, 1.5293298959732056, 1.2400925159454346, 1.2586952447891235, 1.0552440881729126, 0.7920549511909485, 1.030739426612854, 0.9510354399681091, 1.8174355030059814, 1.5375422239303589, 0.906755805015564, 1.347955584526062, 1.4496452808380127, 0.8014188408851624, 0.9140616655349731, 3.8073160648345947, 0.921188235282898, 1.5573726892471313, 2.2066869735717773, 1.541562557220459, 1.390881896018982, 0.9187173247337341, 1.7801055908203125, 1.4570153951644897, 0.9826566576957703, 1.0518255233764648, 1.0666393041610718, 0.9505452513694763, 0.8148643970489502, 0.7610816359519958, 0.9545776844024658, 1.5248093605041504, 0.627888560295105, 1.362424612045288, 1.0576016902923584, 1.1726924180984497, 1.7305299043655396, 0.962954044342041, 0.9811840653419495, 0.5602170825004578, 1.426076054573059, 1.7893097400665283, 1.8596785068511963, 1.211010456085205, 1.2414828538894653, 1.4511257410049438, 1.4820928573608398, 0.8872184753417969, 1.3970955610275269, 0.7711611986160278, 0.9821469783782959, 2.857313394546509, 0.9403693079948425, 1.2451354265213013, 1.6534286737442017, 1.4375786781311035, 1.2522165775299072, 0.8429335355758667, 0.9582285284996033, 1.661025881767273, 1.3337754011154175, 2.905362844467163, 1.1004029512405396, 1.832418441772461, 1.1959949731826782, 1.506217360496521, 2.0081772804260254, 1.1353540420532227, 1.5203161239624023, 0.7177581191062927, 1.7207785844802856, 0.962304949760437, 1.034983515739441, 0.666992723941803, 1.6265907287597656, 1.8316261768341064, 2.668372392654419, 0.9494947791099548, 0.8623576164245605, 1.2057510614395142, 1.4766449928283691, 3.8543968200683594, 0.7901575565338135, 1.1334222555160522, 1.0720179080963135, 1.3894644975662231, 1.0868116617202759, 1.6484140157699585, 0.9975771307945251, 0.9148908853530884, 1.7445392608642578, 1.2759926319122314, 1.109061598777771, 1.1608332395553589, 2.1081080436706543, 0.9875269532203674, 1.017655849456787, 1.2949631214141846, 1.3663877248764038, 0.7417430877685547, 1.190220594406128, 1.167934775352478, 2.141080856323242, 1.0579487085342407, 2.6321122646331787, 2.1635591983795166, 1.1662107706069946, 1.3835238218307495, 0.7495242357254028, 1.1734189987182617, 0.9457029700279236, 1.0705633163452148, 1.1842855215072632, 1.0015783309936523, 1.008856177330017, 1.8374638557434082, 2.7981157302856445, 0.8210347294807434, 1.1533544063568115, 1.1868489980697632, 1.3414545059204102, 3.0731794834136963, 1.3354259729385376, 0.6838719248771667, 0.4815961718559265, 2.018097400665283, 0.6380534172058105, 1.1791702508926392, 1.5071194171905518, 0.6760769486427307, 0.6480677127838135, 1.0110042095184326, 2.8852314949035645, 0.7025115489959717, 1.164268136024475, 0.5638065338134766, 0.5889211297035217, 0.48645496368408203, 2.2189724445343018, 1.009373664855957, 1.8533002138137817, 1.1543916463851929, 1.198345422744751, 0.72269606590271, 0.7202484011650085, 1.7021021842956543, 0.6851631999015808, 0.7023593783378601, 1.2011737823486328, 2.0878520011901855, 0.584152340888977, 1.4623032808303833, 2.13639235496521, 1.3396124839782715, 0.8585515022277832, 0.8577484488487244, 0.9384446144104004, 1.3565161228179932, 0.6669613718986511, 1.1610107421875, 2.0058815479278564, 4.501340866088867, 1.7481707334518433, 1.652335286140442, 0.9527047872543335, 0.8982653021812439, 0.8470514416694641, 2.039436101913452, 1.514422059059143, 2.7044646739959717, 0.7868133783340454, 1.1795737743377686, 1.0316218137741089, 1.697995901107788, 0.9241030216217041, 0.8532280325889587, 1.7670490741729736, 1.212030053138733, 1.1562193632125854, 1.9549280405044556, 0.8046318888664246, 0.7933736443519592, 1.0421690940856934, 0.8359038829803467, 0.5081377029418945, 1.0966964960098267, 1.155580997467041, 2.696063756942749, 3.428908109664917, 0.7483993172645569, 1.4910050630569458, 1.3626933097839355, 1.9322903156280518, 1.3064484596252441, 1.4236721992492676, 2.4012844562530518, 1.0219377279281616, 1.127881407737732, 4.912252426147461, 0.8469511866569519, 1.6454228162765503, 1.0514568090438843, 0.6803130507469177, 0.9582358598709106, 0.6658478379249573, 1.2192237377166748, 0.4701599180698395, 1.1221600770950317, 0.9058098196983337, 1.1599931716918945, 0.8113451600074768, 6.493143081665039, 0.8565463423728943, 0.6880449056625366, 1.776971459388733, 1.1882405281066895, 2.1922309398651123, 1.4461349248886108, 0.8167270421981812, 1.7848974466323853, 2.4648711681365967, 0.9613676071166992, 0.8703969120979309, 1.2748278379440308, 1.3213697671890259, 0.5058032274246216, 0.48631227016448975, 0.8648935556411743, 0.8683599829673767, 0.7563309073448181, 1.1553480625152588, 0.7865549921989441, 0.6357124447822571, 2.6317899227142334, 0.6979026198387146, 0.5062319040298462, 1.948130488395691, 2.267979860305786, 2.760685920715332, 1.4634637832641602, 0.7699769139289856, 1.121705174446106, 0.9951633214950562, 1.3885936737060547, 1.4500056505203247, 2.1030337810516357, 1.3758013248443604, 1.2565232515335083, 0.6267346143722534, 0.9754640460014343, 0.6840702295303345, 4.36367130279541, 0.6232196688652039, 2.178173542022705, 0.5532389283180237, 0.8801848292350769, 0.545985758304596, 0.8004553318023682, 1.9534934759140015, 2.399899482727051, 1.1594637632369995, 0.6083170771598816, 1.543352484703064, 2.9143548011779785, 0.5752971172332764, 1.9178619384765625, 0.7837425470352173, 1.083227276802063, 1.6613976955413818, 1.3773341178894043, 1.1649935245513916, 1.3209902048110962, 1.849501371383667, 1.5279244184494019, 1.5005481243133545, 1.3701667785644531, 2.2523252964019775, 3.0458297729492188, 2.1573774814605713, 0.9925188422203064, 0.6912546157836914, 1.1372289657592773, 1.317001461982727, 0.6850448846817017, 1.0747976303100586, 1.7525678873062134, 0.7658370733261108, 0.5855915546417236, 1.669803261756897, 1.8856571912765503, 1.719535231590271, 0.9613720178604126, 1.3834686279296875, 0.8437563180923462, 1.200666069984436, 4.997653484344482, 0.9427134990692139, 0.7161807417869568, 0.375320702791214, 1.3265918493270874, 1.4334475994110107, 0.8509630560874939, 0.8843321800231934, 1.032351016998291, 0.8292620182037354, 1.281227469444275, 0.8419390320777893, 2.0291733741760254, 0.6992467045783997, 1.2184736728668213, 1.0274453163146973, 0.7256933450698853, 0.8192558288574219, 1.2768661975860596, 0.6509509086608887, 0.7659984827041626, 0.6635806560516357, 2.5429952144622803, 0.6241145133972168, 0.8503982424736023, 1.3270187377929688, 0.9967477917671204, 2.2582781314849854, 1.48957097530365, 0.8756894469261169, 4.7296953201293945, 1.475797176361084, 1.9344216585159302, 0.7239418029785156, 1.748552918434143, 1.1902304887771606, 0.7183655500411987, 0.8808294534683228, 1.7064974308013916, 0.7860952019691467, 1.0813510417938232, 0.9059406518936157, 0.8082503080368042, 0.7144607305526733, 1.6370452642440796, 0.6089709401130676, 0.7216074466705322, 0.5997077822685242, 1.6218831539154053, 1.246037483215332, 0.9578213095664978, 1.6423900127410889, 1.2031021118164062, 0.5734072923660278, 1.1525654792785645, 0.7010444402694702, 3.065093755722046, 2.001429557800293, 0.6371615529060364, 1.4952093362808228, 0.8934416174888611, 1.2557448148727417, 0.7766980528831482, 1.7966279983520508, 1.4240597486495972, 1.900686264038086, 2.410210371017456, 1.2555371522903442, 0.6608654260635376, 0.9572583436965942, 5.788880348205566, 2.197521448135376, 1.8536643981933594, 1.262937068939209, 1.3314810991287231, 1.0859898328781128, 1.1878966093063354, 1.1055757999420166, 1.133467435836792, 1.4523743391036987, 1.1373549699783325, 0.5160745978355408, 2.056898355484009, 2.797584056854248, 1.0888975858688354, 0.9808898568153381, 1.6678330898284912, 1.0647331476211548, 1.6059489250183105, 5.406708717346191, 1.1923319101333618, 0.718798041343689, 1.6950175762176514, 1.8519608974456787, 2.1096699237823486, 2.348445415496826, 1.2695224285125732, 3.7644729614257812, 1.1350384950637817, 1.165153980255127, 1.0357975959777832, 1.135988473892212, 1.2532678842544556, 1.4238123893737793, 1.5185892581939697, 7.022582530975342, 2.1076650619506836, 1.37779700756073, 0.9282023310661316, 0.7756407260894775, 1.6326026916503906, 1.787248134613037, 1.5109095573425293, 2.6086058616638184, 1.1351102590560913, 1.2837563753128052, 0.8530816435813904, 4.501711845397949, 4.814036846160889, 0.8552606701850891, 0.6331432461738586, 1.593571424484253, 1.5512933731079102, 0.9232283234596252, 1.5033650398254395, 2.399536371231079, 1.6825388669967651, 1.0517572164535522, 1.7526450157165527, 1.4781367778778076, 1.1636879444122314, 2.307551383972168, 1.4435101747512817, 0.9779545664787292, 0.8966972827911377, 2.2862539291381836, 1.474901556968689, 1.0122686624526978, 0.9988139271736145, 1.0208797454833984, 1.3068104982376099, 1.8613030910491943, 1.302101969718933, 1.4528790712356567, 1.4920982122421265, 1.435533046722412, 0.737761378288269, 1.0338822603225708, 1.884694218635559, 0.9028792977333069, 1.6272605657577515, 0.8006144165992737, 0.9071997404098511, 1.588731288909912, 1.3241357803344727, 1.700797438621521, 1.3980506658554077, 1.3439487218856812, 1.1186838150024414, 0.9449959993362427, 3.817793846130371, 1.7771272659301758, 1.1269431114196777, 1.1225717067718506, 0.7093714475631714, 1.3155758380889893, 3.1549923419952393, 0.7096295952796936, 0.8937223553657532, 1.5204602479934692, 1.8410916328430176, 1.921907901763916, 1.5079734325408936, 0.9767078161239624, 0.7954232692718506, 1.6304668188095093, 0.823111891746521, 0.9545338153839111, 2.242337942123413, 1.6474765539169312, 1.422908067703247, 0.7095941305160522, 1.082390308380127, 2.129436731338501, 1.5307916402816772, 1.8696016073226929, 1.4030818939208984, 0.4480455219745636, 2.502267837524414, 1.0276079177856445, 1.1726229190826416, 1.2989857196807861, 1.0716426372528076, 1.7478669881820679, 1.239322304725647, 1.076162338256836, 1.1185904741287231, 0.9515016674995422, 1.0397971868515015, 1.6614735126495361, 1.337453842163086, 0.878889262676239, 0.7758346199989319, 2.314098834991455, 1.0218777656555176, 1.2352633476257324, 0.4447705149650574, 0.7298152446746826, 0.6788334846496582, 1.139398217201233, 0.8092275261878967, 1.1557070016860962, 1.1991081237792969, 0.9029605388641357, 0.635688066482544, 0.8421611785888672, 0.7705094218254089, 0.9480880498886108, 1.0652402639389038, 0.632045567035675, 2.193629264831543, 0.9186649918556213, 0.5437487363815308, 6.835578918457031, 1.0523321628570557, 0.5148130059242249, 4.2053046226501465, 2.980056047439575, 0.8135311007499695, 3.9875357151031494, 1.4457849264144897, 2.0901968479156494, 2.0075020790100098, 1.0478278398513794, 1.5180805921554565, 1.5731955766677856, 1.089258074760437, 0.6964994668960571, 1.2602261304855347, 0.7513580322265625, 2.003429651260376, 0.5924331545829773, 1.1023708581924438, 0.8440566658973694, 1.6563069820404053, 0.777292013168335, 3.6783699989318848, 0.7924841642379761, 1.9396650791168213, 1.3875622749328613, 1.8516223430633545, 0.8836780786514282, 0.6381175518035889, 0.9309400320053101, 0.9043020009994507, 0.7103108763694763, 2.761705160140991, 0.7694175243377686, 0.5817402005195618, 4.198193073272705, 1.1792306900024414, 2.40350079536438, 0.7530278563499451, 1.1098204851150513, 0.815761387348175, 1.027643084526062, 0.6252467036247253, 1.1102263927459717, 0.5984735488891602, 0.8745001554489136, 1.2795255184173584, 1.591680884361267, 1.172519326210022, 0.5643683671951294, 0.7075554728507996, 1.2094568014144897, 0.5703102946281433, 1.02395498752594, 0.5355501770973206, 1.2111389636993408, 0.8535720109939575, 1.4842242002487183, 1.0684754848480225, 0.9809544086456299, 1.749459147453308, 0.5523342490196228, 0.7425265312194824, 0.9241745471954346, 1.235032558441162, 0.9347522854804993, 1.197899580001831, 0.5545317530632019, 2.292933702468872, 0.9650537371635437, 1.1888010501861572, 2.396353244781494, 2.149749994277954, 0.47860196232795715, 1.3572771549224854, 1.1071958541870117, 1.1585423946380615, 1.3688886165618896, 0.916069746017456, 1.7610379457473755, 0.45782965421676636, 0.47942468523979187, 1.492013692855835, 0.6596054434776306, 0.7798994183540344, 0.5598465800285339, 1.358144760131836, 0.8015002012252808, 0.8789797425270081, 1.1002742052078247, 1.1666947603225708, 2.4726648330688477, 0.8132371306419373, 0.8820099234580994, 2.812159776687622, 1.7497425079345703, 0.7812355160713196, 3.6841869354248047, 1.0486820936203003, 1.6456962823867798, 1.8157082796096802, 1.9351534843444824, 1.7594540119171143, 0.9681926369667053, 1.1957355737686157, 0.5933974981307983, 2.52048921585083, 1.2072268724441528, 0.822587251663208, 0.9294143915176392, 0.5785234570503235, 3.963864803314209, 0.8743559122085571, 1.6297904253005981, 1.489951491355896, 3.1331958770751953, 1.2489182949066162, 4.710714340209961, 0.5752687454223633, 2.2621827125549316, 1.5699902772903442, 0.49546462297439575, 1.1504064798355103, 0.7539122700691223, 0.5994249582290649, 0.37747931480407715, 1.3789935111999512, 2.1199135780334473, 1.5619745254516602, 0.8160874843597412, 0.5866504311561584, 0.9470595121383667, 0.7679198980331421, 1.128587007522583, 0.8294225335121155, 0.7655566930770874, 1.7582619190216064, 1.7557082176208496, 1.0722136497497559, 0.8667907118797302, 1.4881597757339478, 1.805018663406372, 1.1513381004333496, 1.098384976387024, 4.311812877655029, 0.9183329343795776, 0.5502992272377014, 1.4009584188461304, 1.1463689804077148, 0.541779637336731, 0.5539524555206299, 0.4574393033981323, 1.2621148824691772, 0.7695381045341492, 0.6498032808303833, 0.7633777856826782, 1.3239705562591553, 0.4192902743816376, 5.999349594116211, 2.478156089782715, 1.2067009210586548, 0.4790493845939636, 1.392794132232666, 0.5130239129066467, 0.7730990052223206, 2.008991003036499, 1.321519374847412, 3.3422958850860596, 1.1027560234069824, 2.610283613204956, 3.5569329261779785, 1.2152955532073975, 0.7413573265075684, 1.342434287071228, 0.7766958475112915, 0.7732916474342346, 0.5756761431694031, 1.0005844831466675, 0.9991564750671387, 0.46973052620887756, 1.4861191511154175, 0.9078176021575928, 1.4622474908828735, 0.8945359587669373, 1.1378144025802612, 0.9133733510971069, 1.0946654081344604, 1.207236647605896, 1.0986943244934082, 1.2263461351394653, 1.1351990699768066, 1.2418946027755737, 0.7752773761749268, 1.4882773160934448, 1.6799424886703491, 0.4546723961830139, 0.7270737886428833, 1.2674728631973267, 1.7147176265716553, 0.6649987697601318, 0.4388100206851959, 1.2480148077011108, 1.039359450340271, 3.166919231414795, 0.5432948470115662, 0.9712814092636108, 1.0782018899917603, 2.961674928665161, 1.5624908208847046, 0.8581046462059021, 1.1865805387496948, 0.5897924304008484, 0.730367124080658, 0.8279116749763489, 2.3604774475097656, 0.6190341114997864, 0.8457530736923218, 1.0187913179397583, 0.8467013835906982, 3.117861032485962, 1.0980172157287598, 1.673953652381897, 1.2294195890426636, 2.562472343444824, 1.3643922805786133, 3.0250120162963867, 1.6646336317062378, 1.4898406267166138, 2.479043483734131, 1.5977911949157715, 0.7544909715652466, 1.4021395444869995, 0.9523707628250122, 1.1971372365951538, 1.4987199306488037, 4.03361701965332, 0.7039852142333984, 0.9054949879646301, 1.425024390220642, 0.8780040144920349, 0.6883093118667603, 1.3533248901367188, 1.2959315776824951, 0.8003805875778198, 0.9238710403442383, 1.237184762954712, 1.2517002820968628, 2.0586018562316895, 0.8845577239990234, 0.45658454298973083, 0.8817543983459473, 4.952332496643066, 0.7353243827819824, 1.786290168762207, 0.8513647317886353, 1.8090914487838745, 2.3108105659484863, 0.7549534440040588, 0.9114624857902527, 1.9671777486801147, 1.535234808921814, 1.1981432437896729, 1.8827136754989624, 0.6130284070968628, 0.8995958566665649, 1.0472434759140015, 1.3925068378448486, 1.523595929145813, 0.6073508858680725, 1.62272047996521, 0.7106627225875854, 0.9800485968589783, 1.225752592086792, 1.2531954050064087, 0.5418288111686707, 0.8163279891014099, 1.7061944007873535, 1.6700173616409302, 0.8304412961006165, 0.4625761806964874, 1.2136237621307373, 1.123274803161621, 1.113830804824829, 1.2097975015640259, 0.8282625079154968, 1.059169888496399, 1.8269426822662354, 1.0993061065673828, 1.0183298587799072, 1.083884358406067, 0.9962688684463501, 1.7387081384658813, 0.506121039390564, 1.3648066520690918, 0.8331051468849182, 0.9184436798095703, 0.501465916633606, 1.3108211755752563, 0.6624295115470886, 0.942156970500946, 0.9852440357208252, 2.0841667652130127, 0.7408947944641113, 1.4556336402893066, 1.6954529285430908, 1.7042956352233887, 0.9870204329490662, 0.589394211769104, 1.163069486618042, 0.9798489809036255, 0.9668533802032471, 0.9104875922203064, 0.6437728404998779, 1.302154779434204, 1.3050763607025146, 0.743319034576416, 0.6954664587974548, 1.3272881507873535, 1.2582168579101562, 0.7057209610939026, 1.1407581567764282, 1.0546672344207764, 1.868754267692566, 0.7789696455001831, 1.726088047027588, 1.0729601383209229, 0.9658451676368713, 1.2836681604385376, 0.6887904405593872, 1.3330219984054565, 0.543780505657196, 0.9714204668998718, 1.157439112663269, 1.0140405893325806, 1.8713773488998413, 1.1767476797103882, 0.9540822505950928, 5.761387825012207, 1.6034752130508423, 0.6916778087615967, 1.8253341913223267, 0.9016337990760803, 0.7104871869087219, 0.8126382231712341, 3.4356014728546143, 1.0736128091812134, 0.660796046257019, 0.7587045431137085, 0.7876676917076111, 0.7368143200874329, 1.1109422445297241, 1.7906851768493652, 1.0755833387374878, 1.3126835823059082, 2.8748579025268555, 0.6730039119720459, 1.016435980796814, 1.1586023569107056, 0.8152291774749756, 1.4113394021987915, 1.0545564889907837, 0.9969037175178528, 1.6580041646957397, 0.674448549747467, 1.5004452466964722, 1.256561279296875, 1.5277706384658813, 1.3560025691986084, 0.763500988483429, 0.8178942799568176, 0.7689270377159119, 0.9248352646827698, 0.7700079083442688, 0.7759496569633484, 0.49298039078712463, 0.992656946182251, 0.907319188117981, 1.035569429397583, 2.428460121154785, 1.1865649223327637, 1.6667749881744385, 0.8378884792327881, 1.5150235891342163, 1.5162878036499023, 2.086447238922119, 1.443711757659912, 1.118160367012024, 0.821076512336731, 1.0901436805725098, 2.404827833175659, 1.8679006099700928, 1.5282334089279175, 1.544266700744629, 5.504190921783447, 1.3401893377304077, 1.0608816146850586, 1.7267956733703613, 1.6534613370895386, 1.400364875793457, 2.546694040298462, 0.9204159379005432, 1.321416974067688, 2.55277156829834, 1.0883891582489014, 0.9352731704711914, 2.201594114303589, 2.430093765258789, 0.906703770160675, 0.31739863753318787, 1.3096344470977783, 1.2254693508148193, 1.519425630569458, 0.8297283053398132, 0.8601725697517395, 1.0336047410964966, 2.2647833824157715, 0.991344153881073, 0.527079164981842, 0.6487635374069214, 1.2337080240249634, 0.9835312962532043, 0.9089892506599426, 1.1077288389205933, 4.822246551513672, 1.3801829814910889, 0.7540448307991028, 1.2903631925582886, 5.369801044464111, 1.7220081090927124, 1.174454927444458, 0.7400860786437988, 1.4432495832443237, 1.7339173555374146, 1.5977534055709839, 0.7869359254837036, 0.7016615271568298, 1.3362687826156616, 1.512016773223877, 2.4677109718322754, 1.460986852645874, 0.87000972032547, 1.6233032941818237, 0.8536502122879028, 1.323609709739685, 0.9930381178855896, 1.1263011693954468, 0.7457737326622009, 0.6633386015892029, 0.8056433796882629, 0.9206308722496033, 0.7675196528434753, 2.027733087539673, 1.3956152200698853, 1.4555819034576416, 0.5998814702033997, 1.853215217590332, 0.6806477308273315, 0.5578556060791016, 0.9648363590240479, 0.7401317358016968, 1.3440539836883545, 1.1303480863571167, 1.3596068620681763, 0.6375564932823181, 0.6124138236045837, 1.8936845064163208, 0.7937493324279785, 1.194496512413025, 0.8196560144424438, 0.9368897676467896, 0.6538565754890442, 0.970759391784668, 1.3483667373657227, 1.2972832918167114, 1.1692614555358887, 1.3123294115066528, 2.1361923217773438, 2.0327486991882324, 0.7510440349578857, 1.683007836341858, 0.33402079343795776, 1.4328958988189697, 1.4389513731002808, 1.0300021171569824, 1.016552448272705, 1.421933650970459, 2.6153085231781006, 1.6855252981185913, 2.624983310699463, 6.475531101226807, 1.0082167387008667, 0.7435647249221802, 1.4529939889907837, 2.158189296722412, 1.030495524406433, 0.7312819957733154, 1.0243608951568604, 1.1882671117782593, 0.9093703031539917, 0.6521307229995728, 0.5746774077415466, 1.5388907194137573, 2.417551279067993, 1.1278225183486938, 1.4908699989318848, 1.7114728689193726, 2.1504158973693848, 1.2046924829483032, 1.6225779056549072, 0.8677695393562317, 1.1822017431259155, 1.0261644124984741, 0.7871370911598206, 0.660996675491333, 1.590712070465088, 2.3135461807250977, 1.113908290863037, 0.9617570638656616, 1.3784360885620117, 1.2972095012664795, 1.0750446319580078, 1.4456872940063477, 1.4808238744735718, 0.8874536156654358, 0.6707025170326233, 1.366355299949646, 0.9779994487762451, 1.76882004737854, 1.8860249519348145, 1.002710223197937, 1.0950722694396973, 1.5937618017196655, 1.6120504140853882, 1.1749581098556519, 1.0114414691925049, 1.0621193647384644, 1.3061532974243164, 0.8374541997909546, 0.6462695002555847, 0.8858055472373962, 1.825905442237854, 0.9648009538650513, 0.9562584161758423, 1.2271103858947754, 1.3090115785598755, 1.3329076766967773, 1.344793677330017, 0.8474583625793457, 2.2312960624694824, 2.5777571201324463, 1.2609676122665405, 1.2137247323989868, 1.149130940437317, 2.226008653640747, 0.8829537034034729, 1.0328267812728882, 1.2229150533676147, 1.8776506185531616, 1.0864508152008057, 0.6737303733825684, 0.9712816476821899, 0.8776507377624512, 1.1142436265945435, 1.8421059846878052, 0.4201070964336395, 1.1461598873138428, 2.0502023696899414, 1.553388237953186, 0.6534740328788757, 1.4181208610534668, 1.2803778648376465, 0.8612510561943054, 0.7695466876029968, 0.9121516346931458, 1.7090510129928589, 1.7634940147399902, 0.6919288039207458, 1.6186355352401733, 1.288580060005188, 3.0237438678741455, 1.479666829109192, 0.8455913066864014, 1.0901787281036377, 1.3318278789520264, 1.0989632606506348, 1.0114160776138306, 1.8155076503753662, 0.9154954552650452, 2.024158000946045, 1.76570725440979, 0.9129197597503662, 0.7751453518867493, 1.7171310186386108, 1.0065828561782837, 1.2871700525283813, 0.6933009624481201, 1.3536596298217773, 0.9615024924278259, 1.28110671043396, 3.4578123092651367, 1.7109647989273071, 0.9636174440383911, 1.240642786026001, 1.9075771570205688, 1.6117956638336182, 1.1284555196762085, 0.5587605834007263, 1.3030282258987427, 0.8865028619766235, 1.0482319593429565, 0.8709479570388794, 1.72014319896698, 0.8105515241622925, 2.372565507888794, 1.0841755867004395, 1.2292784452438354, 0.6037687063217163, 0.7609020471572876, 0.8806067705154419, 0.6732890009880066, 1.5009663105010986, 0.9386459589004517, 1.0964585542678833, 1.1976649761199951, 1.346282958984375, 1.958739161491394, 8.327990531921387, 0.5883650779724121, 0.7361105680465698, 1.1273213624954224, 2.943164587020874, 1.1066828966140747, 1.3585799932479858, 0.7017120718955994, 1.61474609375, 3.7400104999542236, 1.6343032121658325, 6.1396403312683105, 1.1709421873092651, 0.7808626294136047, 1.24045991897583, 2.5339975357055664, 1.5533493757247925, 2.060486078262329, 1.9562032222747803, 0.5755974650382996, 0.8646240234375, 2.603201389312744, 1.3511024713516235, 0.9973435997962952, 1.5570130348205566, 0.9648546576499939, 1.4491664171218872, 3.4967567920684814, 0.6313474774360657, 1.159368872642517, 0.8609659075737, 0.6921254992485046, 2.356795072555542, 1.0487563610076904, 2.45194935798645, 2.5446736812591553, 1.5423334836959839, 0.5997885465621948, 1.212336540222168, 0.9220166802406311, 0.9188550114631653, 0.870566189289093, 0.9152665734291077, 1.9624674320220947, 1.2247344255447388, 1.664392113685608, 2.174619197845459, 1.9747065305709839, 0.6932641267776489, 1.5787173509597778, 1.3138501644134521, 1.6436408758163452, 2.9579098224639893, 2.2059011459350586, 2.325394630432129, 1.4156949520111084, 0.6764109134674072, 0.6052482724189758, 1.0703809261322021, 2.198625326156616, 1.5943806171417236, 2.7804226875305176, 0.8197823762893677, 1.4093633890151978, 1.4192432165145874, 1.659684658050537, 1.2961758375167847, 0.6559991836547852, 3.6294949054718018, 0.8673660159111023, 0.8365262150764465, 1.896059513092041, 1.0343260765075684, 1.7124252319335938, 1.6728155612945557, 0.8522229194641113, 1.5032542943954468, 1.0770413875579834, 3.3747472763061523, 0.28570327162742615, 2.0273256301879883, 2.0352964401245117, 1.601098656654358, 1.4423699378967285, 1.6204137802124023, 0.887493371963501, 0.9189041256904602, 1.7589436769485474, 0.8824991583824158, 0.48890170454978943, 0.5426127910614014, 1.2516223192214966, 3.597870349884033, 1.2759214639663696, 0.8087171316146851, 0.9413444399833679, 1.1099164485931396, 0.49042385816574097, 1.0289651155471802, 0.7460295557975769, 0.9948334693908691, 2.9602653980255127, 0.4744182527065277, 1.0565601587295532, 0.8221115469932556, 1.4042834043502808, 0.8472673296928406, 2.439108371734619, 1.5376887321472168, 2.454157829284668, 0.9966237545013428, 0.6230829358100891, 2.3252663612365723, 2.0922141075134277, 2.0156610012054443, 0.636438250541687, 1.0196155309677124, 2.0373144149780273, 1.3479254245758057, 4.458921909332275, 1.1660970449447632, 1.2841635942459106, 2.710780620574951, 1.3701756000518799, 1.7363293170928955, 1.7797924280166626, 1.4410796165466309, 1.8091404438018799, 1.4883102178573608, 1.6978075504302979, 2.1811442375183105, 1.4472235441207886, 1.8088973760604858, 1.2670685052871704, 2.441282272338867, 1.0296435356140137, 1.1081689596176147, 1.203701138496399, 1.8041207790374756, 1.0441762208938599, 1.740971565246582, 2.6602602005004883, 2.668360710144043, 1.2155526876449585, 1.1578567028045654, 2.509693145751953, 1.2202644348144531, 1.568950891494751, 2.049145221710205, 1.518256664276123, 1.9254075288772583, 1.815011739730835, 1.6678714752197266, 1.7819682359695435, 2.219644784927368, 0.9496280550956726, 1.085831642150879, 1.5043890476226807, 2.5871670246124268, 1.581356406211853, 2.153795003890991, 1.3166428804397583, 2.076714515686035, 2.294832468032837, 1.2847179174423218, 2.257675886154175, 1.732766032218933, 1.933253526687622, 1.4422342777252197, 1.4214597940444946, 1.1060651540756226, 1.0223215818405151, 1.878818154335022, 1.383457899093628, 1.370846152305603, 1.3056795597076416, 1.372172236442566, 2.3873684406280518, 2.1789045333862305, 2.9995200634002686, 2.789968490600586, 1.492987036705017, 2.0430328845977783, 1.4860771894454956, 1.5837490558624268, 1.5037627220153809, 2.2859747409820557, 1.135582685470581, 1.428994059562683, 2.1628830432891846, 1.439575433731079, 1.8511985540390015, 1.1170686483383179, 1.6777558326721191, 1.5504082441329956, 2.767914295196533, 1.7940577268600464, 1.779211163520813, 1.3442063331604004, 2.4861083030700684, 1.9088133573532104, 1.9033541679382324, 4.898299217224121, 2.4192895889282227, 2.649996519088745, 2.6048548221588135, 1.4714434146881104, 1.7193200588226318, 2.3310158252716064, 1.873117446899414, 1.3685519695281982, 1.1339285373687744, 1.6169941425323486, 2.0625832080841064, 1.2342844009399414, 1.6043701171875, 1.7265251874923706, 1.9859639406204224, 2.1821839809417725, 1.6728779077529907, 2.0180885791778564, 1.3235176801681519, 1.0881625413894653, 2.0216403007507324, 1.8280540704727173, 3.031583309173584, 1.256768822669983, 1.6993814706802368, 2.5434069633483887, 1.0812090635299683, 4.301482677459717, 2.258110761642456, 2.1781270503997803, 1.2182446718215942, 3.8400158882141113, 1.1460328102111816, 2.40777850151062, 2.182485580444336, 2.430922508239746, 4.293262004852295, 1.2820178270339966, 1.392011046409607, 1.8616466522216797, 1.8061845302581787, 1.902672529220581, 1.6099944114685059, 1.6146512031555176, 1.2221975326538086, 1.0090162754058838, 1.2216429710388184, 1.3386223316192627, 3.029592990875244, 1.3517520427703857, 0.8811923861503601, 3.061570167541504, 1.3094220161437988, 0.6790118217468262, 2.816514492034912, 1.0085747241973877, 1.186295986175537, 1.0601770877838135, 1.9705754518508911, 0.929699182510376, 1.0524938106536865, 1.2500354051589966, 1.516517162322998, 1.0344693660736084, 0.6889283657073975, 1.2865360975265503, 0.7815545797348022, 1.0294774770736694, 0.9472137093544006, 1.0680311918258667, 0.7576012015342712, 1.1297297477722168, 1.0734217166900635, 1.2714871168136597, 1.0885388851165771, 1.408890962600708, 4.8984856605529785, 2.171653985977173, 1.1431366205215454, 1.0730359554290771, 1.1272050142288208, 1.5428050756454468, 1.754358172416687, 1.518176555633545, 1.5456222295761108, 0.9289022088050842, 0.7845574021339417, 0.8924378156661987, 1.3267707824707031, 0.7426857948303223, 0.7944669723510742, 1.068960428237915, 1.0448466539382935, 1.3065826892852783, 1.5724698305130005, 1.0632505416870117, 1.5259628295898438, 0.8437410593032837, 1.0581753253936768, 1.0762137174606323, 2.073676586151123, 2.167186975479126, 0.9769381880760193, 1.6093653440475464, 0.9232390522956848, 1.2189645767211914, 0.6589731574058533, 2.1618638038635254, 1.0384860038757324, 1.1464259624481201, 2.388479471206665, 1.1511374711990356, 1.7358250617980957, 1.4569467306137085, 1.8486738204956055, 1.268188714981079, 2.1514225006103516, 1.0224883556365967, 0.6690323948860168, 0.9319301843643188, 1.5970027446746826, 0.785761833190918, 1.2204033136367798, 0.9722005724906921, 1.6531323194503784, 2.782644271850586, 1.4403765201568604, 1.2701717615127563, 1.0860013961791992, 1.2766849994659424, 1.5734707117080688, 0.6918693780899048, 2.4248974323272705, 1.3443670272827148, 0.7900088429450989, 1.302934169769287, 4.564119815826416, 1.8849955797195435, 0.8305299282073975, 1.6937215328216553, 0.8539738059043884, 2.19800066947937, 4.286393165588379, 1.220655918121338, 1.3597911596298218, 2.2506837844848633, 2.0248451232910156, 3.5858867168426514, 1.2654855251312256, 0.8828710913658142, 1.521827220916748, 2.8979620933532715, 1.8283523321151733, 0.7703081965446472, 0.8528476357460022, 1.272913932800293, 2.1509718894958496, 1.7480214834213257, 2.5832533836364746, 1.4967644214630127, 1.7694551944732666, 1.7876827716827393, 1.0562350749969482, 0.9742817878723145, 2.1131675243377686, 0.8869098424911499, 1.1963974237442017, 1.043095350265503, 2.6604549884796143, 1.579339623451233, 1.791713833808899, 1.1061919927597046, 2.208847761154175, 1.0900105237960815, 0.9349201321601868, 1.8157203197479248, 1.2577553987503052, 1.7473453283309937, 1.531572699546814, 2.081049680709839, 2.425091028213501, 1.624037265777588, 2.4098970890045166, 3.303337335586548, 1.1096256971359253, 2.0587387084960938, 0.8743966817855835, 2.527629852294922, 2.5442581176757812, 1.0103323459625244, 1.1681352853775024, 0.7134855389595032, 1.127200722694397, 1.762102484703064, 1.1351280212402344, 2.65612530708313, 0.921520471572876, 1.4848893880844116, 1.2940149307250977, 2.0597405433654785, 1.450081467628479, 1.2602295875549316, 1.1160989999771118, 0.9221053719520569, 1.696143388748169, 2.3691625595092773, 0.8836013078689575, 2.988579750061035, 1.5906187295913696, 0.6266814470291138, 1.8603688478469849, 0.9786608815193176, 2.54451060295105, 1.8248240947723389, 1.9704947471618652, 1.658866047859192, 1.0915812253952026, 1.8686178922653198, 1.3755003213882446, 1.077391266822815, 0.8248570561408997, 1.283684492111206, 2.3728251457214355, 1.1325664520263672, 2.1277856826782227, 1.1817831993103027, 0.9812589287757874, 2.8261563777923584, 2.064084768295288, 4.691110610961914, 2.531933546066284, 1.7440552711486816, 1.651010513305664, 2.016906261444092, 1.1984094381332397, 3.7383463382720947, 1.4454995393753052, 1.5953689813613892, 1.1471376419067383, 1.5132371187210083, 3.5849249362945557, 1.147470235824585, 2.090731620788574, 1.225835919380188, 0.7172824740409851, 1.1465755701065063, 2.3038899898529053, 1.4494191408157349, 0.9982311725616455, 2.29854154586792, 1.7993906736373901, 1.4640872478485107, 0.5839541554450989, 2.903109073638916, 1.2153871059417725, 1.6124624013900757, 1.1054400205612183, 1.5480669736862183, 1.1428498029708862, 1.1806576251983643, 0.7083248496055603, 2.2792434692382812, 2.0350286960601807, 1.5021998882293701, 1.2352758646011353, 1.4767677783966064, 1.2678440809249878, 1.6209802627563477, 1.6787139177322388, 1.5286037921905518, 1.6202787160873413, 1.941734790802002, 1.5866092443466187, 0.8772832751274109, 1.9310425519943237, 1.1573022603988647, 1.4100086688995361, 1.3824517726898193, 1.117464542388916, 1.626267910003662, 1.173921823501587, 1.0180152654647827, 2.109419584274292, 1.5986132621765137, 1.1099694967269897, 3.302762031555176, 1.8829535245895386, 1.858485460281372, 2.1661407947540283, 1.1739706993103027, 1.0603673458099365, 1.4017775058746338, 4.590715408325195, 1.497676134109497, 2.4402852058410645, 1.1124154329299927, 2.2698898315429688, 2.577521800994873, 1.719649314880371, 1.3914217948913574, 0.9573915004730225, 1.1165745258331299, 0.5112341046333313, 0.8593782782554626, 1.551145315170288, 2.660412549972534, 1.1094329357147217, 0.7587068676948547, 1.1200895309448242, 1.8672958612442017, 0.42395153641700745, 1.3525211811065674, 1.745425820350647, 1.209654450416565, 0.9847561717033386, 0.9280533194541931, 2.00498104095459, 1.36907958984375, 1.477950096130371, 0.6311305165290833, 2.7358391284942627, 1.658048391342163, 1.6740683317184448, 0.852038562297821, 0.849297046661377, 1.4792519807815552, 0.6659939885139465, 0.6590949296951294, 0.8385403156280518, 2.4074175357818604, 1.003936767578125, 1.4551535844802856, 1.896607518196106, 1.6124567985534668, 0.8570326566696167, 0.8969006538391113, 1.9834171533584595, 2.871230363845825, 0.7304141521453857, 1.3384523391723633, 0.6649196147918701, 1.4431756734848022, 1.7609502077102661, 1.3375259637832642, 1.843632459640503, 2.566220998764038, 0.49719157814979553, 0.5232312679290771, 0.42149031162261963, 1.124253273010254, 1.4207565784454346, 0.663941502571106, 1.5255464315414429, 1.0238877534866333, 1.26821768283844, 1.2672561407089233, 1.0511454343795776, 0.5448891520500183, 0.6806880235671997, 0.711816668510437, 1.762220025062561, 0.6206877827644348, 0.895715057849884, 1.1324604749679565, 0.5610562562942505, 0.429396390914917, 0.914059042930603, 1.4543428421020508, 1.1238815784454346, 1.1267433166503906, 0.33239099383354187, 0.9621925950050354, 0.7614169716835022, 1.1762984991073608, 0.9216272234916687, 0.5535903573036194, 1.55856192111969, 0.6521254777908325, 1.0581705570220947, 1.6030043363571167, 1.3224601745605469, 2.837376356124878, 1.5674006938934326, 0.6446555256843567, 0.7186205387115479, 1.6212303638458252, 2.890821695327759, 2.6134696006774902, 1.2047499418258667, 0.43470028042793274, 0.8930172920227051, 1.2352014780044556, 1.0821059942245483, 0.6029143333435059, 0.8694500923156738, 0.5422181487083435, 0.7771371006965637, 0.7447718381881714, 2.7649567127227783, 0.9983209371566772, 1.0277026891708374, 0.7251628637313843, 0.7941986322402954, 0.4360508918762207, 1.1317038536071777, 0.9061936736106873, 0.7593628764152527, 1.0828348398208618, 0.9869586825370789, 0.6782211661338806, 0.7168393135070801, 2.0604801177978516, 1.0599993467330933, 1.5515556335449219, 3.2329275608062744, 1.430914044380188, 1.0496525764465332, 1.228367567062378, 2.0417191982269287, 0.775463342666626, 1.5402438640594482, 0.49311694502830505, 1.4905840158462524, 1.407375454902649, 3.842160940170288, 0.6389551758766174, 2.693324089050293, 1.2376720905303955, 0.757988691329956, 1.1969919204711914, 0.9250427484512329, 2.2536187171936035, 2.4890291690826416, 1.1600393056869507, 1.018555760383606, 1.9880040884017944, 2.7170867919921875, 4.045156002044678, 1.7942637205123901, 0.94706791639328, 0.7704706192016602, 0.8158180713653564, 1.7963067293167114, 0.8668375015258789, 1.075676441192627, 1.2916390895843506, 1.2206413745880127, 0.7386654615402222, 3.0644657611846924, 2.100674629211426, 3.300459146499634, 0.6849820017814636, 1.2267926931381226, 1.6224215030670166, 0.9702077507972717, 2.8158538341522217, 1.9517639875411987, 0.8508760333061218, 0.9698871970176697, 1.0555135011672974, 0.6013349890708923, 0.6947695016860962, 1.1273928880691528, 0.7408974170684814, 1.48017418384552, 0.9990454912185669, 0.9159582257270813, 0.6801313161849976, 1.2502834796905518, 0.5555369257926941, 1.8410706520080566, 1.6342960596084595, 0.9141362905502319, 1.253198504447937, 1.9088414907455444, 1.6965564489364624, 1.6612883806228638, 1.4219908714294434, 1.2924649715423584, 2.0142078399658203, 1.2674256563186646, 0.9821008443832397, 1.1501435041427612, 1.429734230041504, 1.8360427618026733, 1.0882313251495361, 3.863840341567993, 0.9131901860237122, 1.266687273979187, 1.2778569459915161, 0.8236626386642456, 1.0258489847183228, 0.7810867428779602, 2.235758066177368, 1.181784987449646, 0.8595965504646301, 1.8495523929595947, 2.0102078914642334, 1.1242432594299316, 1.2327003479003906, 0.9105927348136902, 1.0064713954925537, 1.0155993700027466, 0.6895036101341248, 1.11385977268219, 3.439279794692993, 1.9398562908172607, 1.0976089239120483, 1.2150487899780273, 3.59822416305542, 2.1904420852661133, 1.0287346839904785, 1.5033138990402222, 0.9914079904556274, 1.0045206546783447, 0.7234807014465332, 1.1325119733810425, 0.8727721571922302, 0.6355741024017334, 0.5934679508209229, 1.2713990211486816, 1.1506931781768799, 0.8908218741416931, 0.5294255614280701, 0.8396003842353821, 1.1907590627670288, 0.7139530777931213, 0.8022687435150146, 1.441089153289795, 0.6987921595573425, 1.6672240495681763, 1.1247682571411133, 1.0245850086212158, 0.8379811644554138, 0.9824866056442261, 1.4487555027008057, 1.8573445081710815, 1.4272717237472534, 0.5406558513641357, 1.0231128931045532, 0.853999674320221, 0.9118146300315857, 2.694897174835205, 6.015459060668945, 0.8552461266517639, 1.9212812185287476, 0.8269959092140198, 1.2591028213500977, 0.6441453099250793, 1.0769262313842773, 1.5938796997070312, 1.1818808317184448, 1.4585533142089844, 0.921349823474884, 1.2137399911880493, 0.4727037847042084, 1.4991875886917114, 1.648510217666626, 0.71674644947052, 0.9904236197471619, 0.6249486804008484, 0.8864737749099731, 2.157248020172119, 1.4710928201675415, 1.3647217750549316, 1.361072063446045, 0.6819449663162231, 1.3935389518737793, 0.7638086080551147, 2.118769645690918, 1.5373258590698242, 1.18882155418396, 2.2815449237823486, 1.088391661643982, 2.4293010234832764, 1.0806872844696045, 0.7700374722480774, 0.7413063645362854, 1.207423210144043, 1.3793072700500488, 1.238351583480835, 0.599311113357544, 1.6615582704544067, 1.0686347484588623, 1.3177483081817627, 0.8388972282409668, 1.0738856792449951, 1.093091368675232, 0.8455328941345215, 0.6432015299797058, 1.8096110820770264, 1.0926337242126465, 1.262430191040039, 0.8305134177207947, 0.9461967349052429, 0.9585559368133545, 1.2545843124389648, 1.1313908100128174, 0.7628477215766907, 0.9358640313148499, 1.3348321914672852, 0.9958749413490295, 1.006467580795288, 1.669909954071045, 1.8101410865783691, 4.618873119354248, 1.147445559501648, 1.3090416193008423, 0.9305428266525269, 1.4982976913452148, 3.257154941558838, 2.5871002674102783, 1.2515449523925781, 2.3790061473846436, 0.5890666842460632, 2.3248324394226074, 0.8394112586975098, 2.771216869354248, 1.236769199371338, 1.1618059873580933, 1.660544991493225, 2.4678003787994385, 1.0895302295684814, 2.5175259113311768, 1.0344524383544922, 2.897221326828003, 2.6784141063690186, 3.1615662574768066, 1.2197117805480957, 4.337071418762207, 1.589242696762085, 1.2765798568725586, 0.7379880547523499, 3.5867905616760254, 1.2637635469436646, 2.044004440307617, 2.2774481773376465, 0.8054386377334595, 1.3231878280639648, 0.6135969161987305, 1.1492133140563965, 1.7120755910873413, 1.2491778135299683, 2.154127836227417, 5.968628406524658, 1.6114966869354248, 0.7370862364768982, 1.8660675287246704, 1.2980962991714478, 3.001399517059326, 0.7315064072608948, 0.7070654034614563, 1.470299243927002, 1.072300910949707, 1.1976735591888428, 0.8626441955566406, 1.3003523349761963, 0.868044912815094, 1.7518924474716187, 1.4775079488754272, 1.4977749586105347, 0.57295161485672, 0.7890254259109497, 1.1933581829071045, 1.0421390533447266, 0.6519840359687805, 0.6909956336021423, 0.7234780788421631, 4.517414569854736, 2.534583568572998, 0.7792999148368835, 0.9908986687660217, 1.0950552225112915, 1.2476072311401367, 0.8402451872825623, 1.396311640739441, 1.0038659572601318, 1.2418276071548462, 0.787731409072876, 0.6825986504554749, 1.60062575340271, 0.814471960067749, 1.1017444133758545, 1.459538459777832, 0.6145444512367249, 2.3212411403656006, 1.4982579946517944, 1.0398485660552979, 1.2448256015777588, 1.609917402267456, 1.754613995552063, 0.8967360258102417, 3.242015838623047, 2.50168514251709, 4.011380672454834, 1.908429503440857, 2.4285707473754883, 3.070797920227051, 1.6829112768173218, 2.1744179725646973, 1.620644450187683, 0.8440137505531311, 0.9221797585487366, 1.4158499240875244, 2.6570796966552734, 2.2852790355682373, 1.1456159353256226, 1.7972283363342285, 1.3121953010559082, 2.429630994796753, 1.7014062404632568, 1.0622750520706177, 1.1924021244049072, 1.1043034791946411, 1.260628342628479, 3.32277512550354, 2.259448528289795, 0.9112157225608826, 0.9333951473236084, 1.2779220342636108, 1.781956434249878, 1.8590264320373535, 0.7321363091468811, 1.7940489053726196, 1.4098421335220337, 1.105149745941162, 1.2253270149230957, 1.9765836000442505, 1.2632464170455933, 1.845328688621521, 0.7316868901252747, 1.2553170919418335, 1.685801386833191, 2.16335391998291, 2.0245094299316406, 1.1092311143875122, 1.197178840637207, 1.9048333168029785, 3.147207260131836, 1.1497087478637695, 2.0557496547698975, 1.3473536968231201, 0.913651704788208, 1.0670278072357178, 1.21597421169281, 1.1545705795288086, 1.3073359727859497, 1.2277575731277466, 1.3053371906280518, 4.288753509521484, 1.1398977041244507, 1.24479079246521, 1.350149154663086, 1.5480674505233765, 0.5660091638565063, 2.2803823947906494, 0.9500790238380432, 2.0344700813293457, 1.0316725969314575, 1.612248182296753, 1.7325035333633423, 0.8912313580513, 3.032280921936035, 0.6258299946784973, 2.1852357387542725, 1.0305500030517578, 1.0795937776565552, 3.0491044521331787, 2.159651517868042, 0.9810696840286255, 0.7592928409576416, 1.0210678577423096, 0.9749096632003784, 0.9797343015670776, 2.423766613006592, 1.6980702877044678, 0.6486269235610962, 2.020124673843384, 1.008385419845581, 1.5621806383132935, 1.2260404825210571, 1.437910556793213, 1.0111573934555054, 1.3812698125839233, 2.473268985748291, 1.6793904304504395, 1.3779276609420776, 0.5283863544464111, 0.6104657053947449, 1.8954229354858398, 1.6605650186538696, 1.06942617893219, 2.121344566345215, 0.9519736170768738, 2.9458394050598145, 1.021483063697815, 0.9579582214355469, 1.0651174783706665, 1.1165395975112915, 0.9731842875480652, 0.8258832693099976, 1.445792555809021, 1.251278042793274, 1.5796128511428833, 0.7276908159255981, 3.129481554031372, 1.1780405044555664, 1.0656752586364746, 1.3603991270065308, 2.0434887409210205, 2.3789923191070557, 1.0959616899490356, 1.4749557971954346, 1.6208564043045044, 2.299931526184082, 1.5424991846084595, 0.5175163745880127, 1.4386208057403564, 1.6126384735107422, 1.564552903175354, 0.7185912728309631, 1.1462007761001587, 1.098887324333191, 1.3357186317443848, 1.4872674942016602, 1.3119864463806152, 1.4204586744308472, 0.8162667155265808, 0.684848427772522, 0.7955594658851624, 1.180873990058899, 1.043552279472351, 0.9546636343002319, 0.8397669792175293, 1.0909695625305176, 0.8851672410964966, 0.8445923924446106, 1.8962496519088745, 1.1467913389205933, 1.6286088228225708, 1.3854697942733765, 1.5228444337844849, 1.252773404121399, 0.8416081666946411, 0.9642616510391235, 0.984529435634613, 0.8908144235610962, 2.3905277252197266, 0.5749648213386536, 1.1066126823425293, 1.4531038999557495, 1.38381826877594, 0.8237753510475159, 0.7756841778755188, 3.036987781524658, 1.1930285692214966, 1.1854963302612305, 1.052292823791504, 1.181685447692871, 0.9490722417831421, 0.874213457107544, 1.035502552986145, 0.9985723495483398, 3.1213159561157227, 1.4440752267837524, 0.6513282060623169, 1.5632636547088623, 1.5390197038650513, 1.6563000679016113, 0.7156246900558472, 0.8418309688568115, 2.6853840351104736, 2.146340847015381, 1.6254431009292603, 1.8321667909622192, 1.0182297229766846, 1.1746841669082642, 2.5396833419799805, 0.7773709893226624, 0.7572469115257263, 0.8509817719459534, 1.411719799041748, 1.0309821367263794, 1.3018710613250732, 1.4015716314315796, 1.4790143966674805, 0.9379839897155762, 1.1509432792663574, 1.3911479711532593, 0.8569327592849731, 1.9235798120498657, 1.8176714181900024, 0.9028730392456055, 0.8256384134292603, 0.9580080509185791, 1.6032463312149048, 1.0531642436981201, 1.2309945821762085, 1.8971093893051147, 5.075801372528076, 4.5345048904418945, 1.0640252828598022, 0.974080502986908, 0.8055326342582703, 0.898571789264679, 1.4518800973892212, 0.8166667819023132, 0.9623914957046509, 1.8166922330856323, 2.2857723236083984, 1.114504337310791, 1.0329233407974243, 1.4043350219726562, 0.9948057532310486, 1.5577932596206665, 4.454362392425537, 1.4073070287704468, 1.64519202709198, 0.9481093287467957, 1.4217487573623657, 2.8536605834960938, 1.2456642389297485, 1.122375249862671, 1.1159851551055908, 0.9594539403915405, 2.964651107788086, 1.239382028579712, 2.225888252258301, 2.179093360900879, 0.9691141843795776, 1.25877046585083, 0.9724756479263306, 1.2178341150283813, 1.5028531551361084, 1.25175940990448, 1.2583032846450806, 1.5379801988601685, 0.8643202185630798, 0.9729475378990173, 1.0611580610275269, 2.202542781829834, 1.6886508464813232, 1.0152125358581543, 1.0469030141830444, 0.7558758854866028, 1.3597720861434937, 1.4068044424057007, 1.245789885520935, 1.569100260734558, 0.7655673027038574, 2.2311394214630127, 1.0191388130187988, 1.5096633434295654, 1.044437289237976, 4.141376495361328, 1.164330244064331, 2.812549591064453, 4.232748508453369, 3.342733383178711, 2.1120784282684326, 2.1875009536743164, 1.5581871271133423, 4.439844131469727, 0.9459642171859741, 3.9331307411193848, 1.9710612297058105, 1.4230116605758667, 3.428917407989502, 0.7932459115982056, 2.2036712169647217, 2.0522658824920654, 1.288063883781433, 1.633716344833374, 1.307401180267334, 1.6379940509796143, 0.9385184645652771, 3.344059705734253, 1.6082160472869873, 1.0049201250076294, 1.7776461839675903, 1.2309070825576782, 1.1209925413131714, 1.4370495080947876, 1.146239161491394, 2.354539632797241, 0.5854334831237793, 5.413332939147949, 1.0066406726837158, 0.9816847443580627, 2.117565631866455, 1.2332361936569214, 4.279994964599609, 2.0188188552856445, 1.2385977506637573, 2.697482109069824, 1.8150173425674438, 1.0690727233886719, 2.3796427249908447, 2.1766300201416016, 1.3732401132583618, 1.6010133028030396, 1.1185379028320312, 2.291055202484131, 1.9967700242996216, 1.3127583265304565, 0.977146327495575, 0.9087009429931641, 1.4698076248168945, 1.1347706317901611, 1.4261277914047241, 1.5185312032699585, 1.4387520551681519, 1.2924333810806274, 1.1114929914474487, 1.2926738262176514, 1.0512151718139648, 1.9318859577178955, 2.2040696144104004, 1.2060858011245728, 1.0410504341125488, 1.9838879108428955, 1.1598163843154907, 1.0550117492675781, 1.9003766775131226, 1.7048766613006592, 1.3198392391204834, 1.0163450241088867, 1.8637330532073975, 1.1424421072006226, 1.0579257011413574, 1.1538931131362915, 1.2511810064315796, 1.4208630323410034, 4.638937950134277, 2.7538373470306396, 1.0657403469085693, 2.303105354309082, 0.9777287840843201, 3.124964475631714, 1.1791045665740967, 1.1913743019104004, 1.101075530052185, 2.2444207668304443, 1.2188023328781128, 0.849646270275116, 1.674877643585205, 1.0958905220031738, 1.048854112625122, 2.144212484359741, 4.31692361831665, 1.2093032598495483, 3.082216739654541, 0.6768685579299927, 4.113315105438232, 4.237032890319824, 2.653470754623413, 1.8196792602539062, 2.161419153213501, 3.7389307022094727, 1.787017583847046, 2.4607279300689697, 2.0965120792388916, 0.8535623550415039, 1.419276237487793, 2.0201845169067383, 1.1506229639053345, 1.048176646232605, 1.511705756187439, 0.6617087721824646, 1.093820571899414, 1.1379668712615967, 1.436557650566101, 1.1700427532196045, 0.972761869430542, 1.7936716079711914, 0.6125687956809998, 1.3749024868011475, 0.8968368172645569, 0.54790860414505, 1.4815170764923096, 1.0274807214736938, 1.5689468383789062, 0.6569690108299255, 1.3274526596069336, 0.7014963626861572, 1.054051399230957, 2.4080400466918945, 1.174681544303894, 0.9614112377166748, 1.4388477802276611, 0.8741946220397949, 0.9480485916137695, 0.7067728042602539, 4.870750904083252, 0.5222423076629639, 1.891344666481018, 1.2961499691009521, 0.6746112704277039, 1.116931438446045, 0.7235005497932434, 0.9509683847427368, 0.963996410369873, 0.5613270998001099, 1.7410269975662231, 3.3946332931518555, 2.629678964614868, 0.7830275297164917, 0.8079237937927246, 1.3548446893692017, 0.9662888646125793, 0.5706574320793152, 1.248867154121399, 0.81097012758255, 0.9561770558357239, 2.0896055698394775, 1.0394659042358398, 0.7453800439834595, 1.623194932937622, 1.5079058408737183, 0.4989159107208252, 1.467970371246338, 1.5257346630096436, 1.4798083305358887, 5.481931209564209, 0.4248500168323517, 1.2308048009872437, 1.0796915292739868, 6.414412021636963, 1.2063947916030884, 0.8634464740753174, 2.5256433486938477, 0.7839148640632629, 1.7760605812072754, 2.4181621074676514, 0.5885934829711914, 1.0509837865829468, 0.6733706593513489, 5.7910614013671875, 6.505059719085693, 0.9739176034927368, 1.1765090227127075, 2.011676788330078, 0.6580745577812195, 0.719538152217865, 1.7591383457183838, 0.5906772613525391, 1.2135567665100098, 3.1852645874023438, 1.425049901008606, 1.0782952308654785, 1.739115595817566, 1.1514421701431274, 1.2939811944961548, 1.2387722730636597, 0.8670027256011963, 1.0183199644088745, 0.6552560925483704, 1.0870281457901, 0.8005293011665344, 0.6942307353019714, 0.5568342804908752, 0.4661582410335541, 2.4150094985961914, 1.1774004697799683, 0.4094175398349762, 0.6968467235565186, 0.6558190584182739, 0.8195067644119263, 2.0521318912506104, 1.0628477334976196, 1.0445990562438965, 1.1833311319351196, 3.962197780609131, 2.03658127784729, 0.8099374771118164, 0.5917065739631653, 3.343301773071289, 4.746832847595215, 3.574503183364868, 0.9381568431854248, 5.3921217918396, 1.3920443058013916, 2.237517833709717, 1.052317500114441, 0.9600395560264587, 1.1620548963546753, 1.9353011846542358, 1.0631588697433472, 2.203927755355835, 0.8566215634346008, 0.8442687392234802, 0.7363399267196655, 2.04939866065979, 2.281977415084839, 0.7740600109100342, 1.9986649751663208, 1.0676361322402954, 1.1800026893615723, 1.3396083116531372, 1.3478271961212158, 1.8261662721633911, 1.4263522624969482, 1.2748231887817383, 1.2044488191604614, 1.872021198272705, 1.390649437904358, 1.2014824151992798, 0.9815675020217896, 0.7784832715988159, 1.1364734172821045, 2.3570663928985596, 2.10906720161438, 0.9427599906921387, 3.7385358810424805, 1.5326613187789917, 0.9629489183425903, 1.4919421672821045, 1.0855644941329956, 1.2858768701553345, 2.061635732650757, 2.0480074882507324, 1.6102228164672852, 1.2483267784118652, 0.8745102882385254, 0.9372750520706177, 1.4963347911834717, 0.897171139717102, 1.703249454498291, 1.439130187034607, 0.8707694411277771, 1.0591723918914795, 1.0295568704605103, 1.9993222951889038, 1.082775354385376, 1.5145119428634644, 0.8275358080863953, 1.6718603372573853, 0.9432888627052307, 0.8440402746200562, 1.3672597408294678, 0.7974544167518616, 0.8548982739448547, 0.7410359382629395, 1.2844820022583008, 1.1255089044570923, 3.120349645614624, 0.9607464671134949, 0.8819467425346375, 1.1146934032440186, 0.8341876864433289, 5.394092559814453, 1.8726078271865845, 0.9562098979949951, 0.9793645143508911, 0.8874700665473938, 0.878994882106781, 0.4523273706436157, 1.110493540763855, 0.9892696738243103, 1.7147575616836548, 2.553427219390869, 1.3821967840194702, 1.349048137664795, 0.5349518060684204, 0.8214784264564514, 1.4412039518356323, 1.1868306398391724, 1.1916675567626953, 1.435817837715149, 0.8042512536048889, 1.1622766256332397, 1.3705377578735352, 1.8205419778823853, 1.1134533882141113, 1.003623127937317, 0.7954069375991821, 1.0820618867874146, 1.0432599782943726, 1.1634016036987305, 1.9408259391784668, 1.0033857822418213, 4.1838698387146, 0.802283763885498, 0.9532936215400696, 1.3967208862304688, 1.2305397987365723, 1.25552237033844, 1.2108550071716309, 3.3644468784332275, 1.2067402601242065, 3.15547251701355, 0.9884968996047974, 1.232033610343933, 0.9731698036193848, 2.5125365257263184, 2.5501022338867188, 1.4608862400054932, 1.2644238471984863, 1.0916531085968018, 1.335256814956665, 1.3784674406051636, 0.7762010097503662, 1.2309242486953735, 1.3879774808883667, 1.6174261569976807, 1.7956972122192383, 1.1746028661727905, 1.079200029373169, 1.1787590980529785, 0.8300718069076538, 2.182250499725342, 1.1686118841171265, 3.085513114929199, 2.3916962146759033, 0.7897460460662842, 1.49179208278656, 1.000137448310852, 0.9340526461601257, 0.6782495379447937, 1.0689144134521484, 1.413329839706421, 1.3681594133377075, 0.9312275648117065, 1.1270924806594849, 1.475244164466858, 0.8508940935134888, 1.3105608224868774, 0.8066694736480713, 0.9820692539215088, 1.0025805234909058, 2.6323602199554443, 0.9851515293121338, 1.3416731357574463, 1.4993122816085815, 1.0912599563598633, 1.346107840538025, 1.102553129196167, 1.3721506595611572, 2.4247286319732666, 1.489758014678955, 0.9786251783370972, 0.985296368598938, 1.1753920316696167, 2.295546770095825, 2.1868557929992676, 1.2022753953933716, 1.3160547018051147, 1.005985975265503, 1.3138823509216309, 1.5718554258346558, 0.8372853994369507, 1.3122950792312622, 2.035412549972534, 1.3531508445739746, 2.117699384689331, 1.0918606519699097, 1.2571231126785278, 1.577738642692566, 1.495599389076233, 2.0095951557159424, 6.132016181945801, 0.9666812419891357, 0.7430612444877625, 2.1347596645355225, 1.9674662351608276, 1.2848509550094604, 1.0276353359222412, 1.3743865489959717, 1.6681747436523438, 2.8190510272979736, 1.0061665773391724, 2.6319077014923096, 2.8653485774993896, 1.5485385656356812, 1.8702061176300049, 0.8656747937202454, 1.4415850639343262, 1.164265513420105, 0.6980352401733398, 0.8109656572341919, 1.0222364664077759, 1.8669785261154175, 1.3286491632461548, 0.9167892336845398, 1.1886019706726074, 1.1380078792572021, 2.0605006217956543, 3.1728482246398926, 1.9066901206970215, 2.0257976055145264, 1.702755093574524, 1.1157515048980713, 5.733417510986328, 8.614100456237793, 0.9873301982879639, 1.9244072437286377, 0.8463073968887329, 0.9330567717552185, 0.7789798378944397, 0.9411900043487549, 2.26403546333313, 0.7810434699058533, 1.4522677659988403, 3.072066068649292, 1.1445063352584839, 1.823594570159912, 1.7446293830871582, 1.2397253513336182, 2.0471596717834473, 1.2537593841552734, 0.9420470595359802, 1.4813700914382935, 2.403298854827881, 1.1489121913909912, 1.0695359706878662, 1.6734747886657715, 0.9692841172218323, 1.5706701278686523, 1.1393249034881592, 1.2171775102615356, 1.648524284362793, 1.4649120569229126, 4.629894256591797, 3.201198101043701, 1.4282071590423584, 1.3258410692214966, 1.127105951309204, 1.171786904335022, 1.0726159811019897, 1.2059903144836426, 1.1113921403884888, 1.6509617567062378, 1.3710861206054688, 3.4931864738464355, 3.564688205718994, 1.295916199684143, 1.351420521736145, 1.276832103729248, 0.9757835865020752, 1.1208629608154297, 0.7613542675971985, 2.370431900024414, 1.361323595046997, 0.9298605918884277, 1.7764173746109009, 1.3346065282821655, 0.701922595500946, 1.239550232887268, 6.26047420501709, 2.4232659339904785, 1.3415379524230957, 0.6900742053985596, 0.8041331768035889, 0.9604240655899048, 1.0615475177764893, 2.264153480529785, 1.9974201917648315, 1.6374220848083496, 0.996060848236084, 0.8187992572784424, 0.8537317514419556, 1.2292054891586304, 2.568618059158325, 1.315255880355835, 0.8739879727363586, 1.043039321899414, 1.1656516790390015, 0.7197468280792236, 1.5540761947631836, 0.955807626247406, 1.465897798538208, 1.0017364025115967, 2.6421170234680176, 1.8683425188064575, 1.1238653659820557, 1.2026002407073975, 0.8911939263343811, 1.556437611579895, 1.9297667741775513, 0.9289100766181946, 1.0881407260894775, 1.354243278503418, 1.6240276098251343, 1.0134451389312744, 1.0234719514846802, 0.8969687819480896, 0.9848110675811768, 2.1869335174560547, 1.5734919309616089, 1.135454535484314, 0.9619199633598328, 1.6613901853561401, 0.7921920418739319, 0.9691749811172485, 1.608689546585083, 1.0828754901885986, 1.1123443841934204, 3.3532190322875977, 1.050529956817627, 1.0572013854980469, 0.543809711933136, 1.4350910186767578, 0.6979256272315979, 1.0433049201965332, 1.2137019634246826, 2.4684603214263916, 0.8300549983978271, 0.6123663187026978, 1.4974828958511353, 1.9412578344345093, 1.4026877880096436, 2.153308153152466, 1.0786691904067993, 2.555086374282837, 1.0655980110168457, 1.4935604333877563, 1.3841875791549683, 1.1701291799545288, 1.0785322189331055, 4.615727424621582, 0.7660983204841614, 1.0661752223968506, 1.1535308361053467, 0.9613890051841736, 0.8493311405181885, 0.8040083646774292, 1.2121316194534302, 0.7902367115020752, 3.921889543533325, 1.1659104824066162, 0.9502887725830078, 0.8739442229270935, 0.9267299771308899, 0.9843721985816956, 1.7196519374847412, 0.7657425999641418, 1.2479223012924194, 0.8600121736526489, 1.0732227563858032, 0.910943329334259, 1.061419129371643, 1.1219769716262817, 1.528871774673462, 1.202812910079956, 1.6291533708572388, 1.5978279113769531, 1.0984220504760742, 1.2778702974319458, 0.8361145257949829, 1.3300278186798096, 3.492602586746216, 0.7845386266708374, 0.7500743865966797, 1.0932366847991943, 1.7239104509353638, 1.3535386323928833, 0.9594998955726624, 1.2942756414413452, 3.08443021774292, 1.0262691974639893, 1.1031535863876343, 2.3505911827087402, 1.5123741626739502, 1.1513038873672485, 2.947082042694092, 1.9484326839447021, 1.2003408670425415, 1.326204776763916, 1.1778920888900757, 0.7312760353088379, 0.9429285526275635, 0.9972467422485352, 1.5931464433670044, 1.0586546659469604, 2.704939126968384, 0.842605471611023, 1.0631996393203735, 1.3840504884719849, 0.9562897682189941, 0.4840344488620758, 0.7881284356117249, 0.7260870933532715, 1.6502048969268799, 0.5166019201278687, 0.5155428051948547, 0.678360641002655, 2.1999094486236572, 0.6037188172340393, 0.6479604840278625, 1.2481812238693237, 0.6340781450271606, 0.4143730401992798, 0.947673499584198, 1.3194422721862793, 2.9110398292541504, 3.7703213691711426, 1.265128493309021, 0.8900419473648071, 0.5814213752746582, 1.8785362243652344, 0.5719858407974243, 1.281113624572754, 1.1471844911575317, 1.4279370307922363, 0.9684664011001587, 1.7138762474060059, 1.0645095109939575, 1.277712106704712, 2.338716506958008, 0.6885446906089783, 0.845890462398529, 1.1424362659454346, 1.0402833223342896, 1.0833309888839722, 1.1052190065383911, 1.917669653892517, 0.7538421154022217, 0.7474718689918518, 0.9834028482437134, 0.9978479146957397, 1.7666536569595337, 0.6240200996398926, 0.5037693381309509, 1.6191223859786987, 0.9411574006080627, 0.6652441024780273, 0.6279925107955933, 1.9634017944335938, 1.7415379285812378, 0.4654519855976105, 1.1032129526138306, 1.6908303499221802, 0.9419118762016296, 1.2887321710586548, 0.7384213805198669, 0.5400426983833313, 0.6255317330360413, 0.5372870564460754, 2.6071784496307373, 0.94144207239151, 0.7980280518531799, 3.452115774154663, 1.6861145496368408, 1.2867152690887451, 1.5441662073135376, 1.1783114671707153, 0.6902569532394409, 1.0757312774658203, 1.0365641117095947, 1.0255184173583984, 1.0055609941482544, 2.44569730758667, 0.9638044834136963, 5.792876720428467, 0.532380998134613, 3.5706121921539307, 0.5452627539634705, 1.8654539585113525, 1.4398592710494995, 0.788271427154541, 0.3733176589012146, 0.7859512567520142, 0.8812930583953857, 1.1522749662399292, 0.9792788624763489, 2.095482349395752, 2.5479533672332764, 2.8008644580841064, 0.7270740866661072, 1.1343539953231812, 0.9527207016944885, 0.7337678670883179, 1.3154219388961792, 1.3167064189910889, 0.765562117099762, 2.1800782680511475, 1.4607231616973877, 2.3334484100341797, 1.255458116531372, 3.0772058963775635, 0.5780848264694214, 1.688094139099121, 2.28662109375, 0.8493282794952393, 0.5048156380653381, 3.05674147605896, 0.9900350570678711, 1.045660376548767, 0.8865611553192139, 1.375664472579956, 0.8860095143318176, 2.523578643798828, 0.5555467009544373, 1.025508999824524, 0.6041308641433716, 1.373142123222351, 0.9710365533828735, 0.8363813757896423, 0.7069818377494812, 0.5567328929901123, 0.7337003946304321, 0.8451233506202698, 0.5664382576942444, 2.1142945289611816, 0.9425902366638184, 0.9804818630218506, 0.8450276851654053, 1.467583179473877, 1.912914752960205, 3.531336784362793, 0.9340030550956726, 1.0860580205917358, 1.2039674520492554, 1.1889228820800781, 2.09201979637146, 1.0515401363372803, 2.140028238296509, 1.5373847484588623, 0.9789481163024902, 0.6422322392463684, 0.9663205742835999, 2.1631336212158203, 0.8151268362998962, 7.474338531494141, 5.6172637939453125, 1.3479292392730713, 1.8175878524780273, 1.5182427167892456, 0.9415152668952942, 1.2127206325531006, 1.0157603025436401, 0.9368570446968079, 1.8109785318374634, 0.9432615041732788, 0.805648684501648, 1.2970870733261108, 0.7930434346199036, 0.8582229614257812, 0.9890921711921692, 1.3294270038604736, 1.4921640157699585, 1.381003737449646, 0.6361804008483887, 1.4885262250900269, 0.9283517599105835, 1.0154062509536743, 0.6858664751052856, 6.755813121795654, 0.5005707144737244, 1.2394373416900635, 0.6165109872817993, 0.7428809404373169, 0.9484450817108154, 1.330771565437317, 1.6925772428512573, 0.8914113640785217, 1.101609468460083, 0.7868529558181763, 1.9098809957504272, 1.0916727781295776, 0.9019933342933655, 1.1291992664337158, 1.8144265413284302, 1.280901551246643, 0.8866437673568726, 0.997464656829834, 2.2481255531311035, 0.8860986232757568, 1.3005456924438477, 1.0601824522018433, 1.0646010637283325, 1.5720959901809692, 1.355720043182373, 2.2485246658325195, 1.5064347982406616, 0.7595584392547607, 1.2285126447677612, 1.1754733324050903, 1.3276697397232056, 0.8513749241828918, 0.9086498022079468, 1.1283717155456543, 1.446649193763733, 1.5507339239120483, 0.7155482769012451, 5.364035129547119, 1.7651220560073853, 1.0792994499206543, 1.8578089475631714, 1.3517177104949951, 1.6642409563064575, 0.5468248724937439, 1.3203613758087158, 1.5305994749069214, 1.3402364253997803, 1.125177264213562, 1.3012443780899048, 1.0538969039916992, 1.2549840211868286, 1.1160454750061035, 0.6519034504890442, 1.0264390707015991, 1.1523579359054565, 1.3366385698318481, 1.0522645711898804, 1.0727969408035278, 1.4436957836151123, 0.6398328542709351, 1.9677245616912842, 1.3709733486175537, 2.034665822982788, 0.8760778307914734, 1.077743649482727, 1.1732919216156006, 1.7038919925689697, 0.5261752605438232, 1.8579764366149902, 1.2909314632415771, 0.9401081800460815, 1.6833586692810059, 1.2798341512680054, 2.158397674560547, 3.4875872135162354, 1.09224534034729, 1.2659331560134888, 0.9100685715675354, 2.398589611053467, 1.392783284187317, 1.286055326461792, 1.1749063730239868, 0.7026973366737366, 0.8020091652870178, 1.2465965747833252, 0.8154222369194031, 2.5438103675842285, 3.5752930641174316, 0.5943593978881836, 3.054819107055664, 0.649354100227356, 2.1155333518981934, 2.8399715423583984, 0.6051343083381653, 1.5485432147979736, 0.5433872938156128, 0.6902281641960144, 1.0930752754211426, 0.6535336375236511, 1.0112608671188354, 1.0401495695114136, 1.9263721704483032, 0.6753166317939758, 2.715961217880249, 0.5574182271957397, 0.6500695943832397, 0.5183555483818054, 0.9701307415962219, 1.7335008382797241, 0.3164805471897125, 0.44847530126571655, 0.7151200771331787, 0.6644359827041626, 1.289214015007019, 0.7680225372314453, 1.9592880010604858, 2.1748087406158447, 0.9160839915275574, 0.9170724749565125, 6.7592453956604, 0.43742188811302185, 0.4074636995792389, 0.5786069631576538, 3.8549599647521973, 0.6980030536651611, 2.2668232917785645, 0.5712740421295166, 1.11103355884552, 1.1302082538604736, 1.2898385524749756, 1.3214927911758423, 1.6607391834259033, 0.3874691128730774, 0.6841059327125549, 1.54119074344635, 1.0277398824691772, 1.557427167892456, 1.0344077348709106, 1.2156176567077637, 0.902370274066925, 1.2960059642791748, 0.6094306707382202, 0.9848762154579163, 0.6910334229469299, 2.063866376876831, 4.700771808624268, 2.215139627456665, 2.08583402633667, 1.050716519355774, 0.7187212705612183, 1.3381894826889038, 0.5949572324752808, 1.0571680068969727, 1.9553790092468262, 0.9331235289573669, 0.8507825136184692, 1.5082013607025146, 1.155947208404541, 0.6109763383865356, 0.938727617263794, 1.4492238759994507, 0.5636827349662781, 0.5947450399398804, 1.2812230587005615, 1.7116669416427612, 0.648725152015686, 0.8854195475578308, 0.6351740956306458, 0.8483051061630249, 0.8627105951309204, 0.7584282159805298, 0.8385812640190125, 1.5764925479888916, 0.4752677083015442, 1.9111967086791992, 2.6535379886627197, 0.7447863817214966, 0.6314499974250793, 0.5782920122146606, 0.46609729528427124, 2.6897709369659424, 0.6996772289276123, 0.691346287727356, 0.6433508992195129, 1.2638200521469116, 0.9715068936347961, 0.5632047057151794, 0.9951239228248596, 1.900959849357605, 2.699767589569092, 0.625501811504364, 1.7593826055526733, 0.4847646951675415, 2.5126309394836426, 0.5832449197769165, 0.5471368432044983, 0.5589591860771179, 0.5563777685165405, 4.1433939933776855, 0.7500143051147461, 0.7170326709747314, 2.7820887565612793, 0.6456916332244873, 0.5833939909934998, 0.8243293762207031, 0.609382688999176, 1.694976806640625, 1.9942876100540161, 2.1133956909179688, 0.8424538373947144, 0.6983696818351746, 1.8907817602157593, 1.4729118347167969, 0.6515510082244873, 0.7437026500701904, 1.9256643056869507, 1.6734639406204224, 0.591087818145752, 1.0125848054885864, 1.5151110887527466, 3.890503406524658, 1.531154751777649, 0.8320296406745911, 4.383764266967773, 0.7845451235771179, 1.4476560354232788, 0.786993145942688, 0.6348798274993896, 1.0680228471755981, 0.7160590291023254, 0.8614119291305542, 4.765710353851318, 2.8667876720428467, 1.6854101419448853, 0.9421496391296387, 0.7732934355735779, 0.8382079005241394, 0.8622543811798096, 1.0579184293746948, 1.1792068481445312, 1.9389904737472534, 1.3149739503860474, 1.8781238794326782, 0.6195627450942993, 1.3781602382659912, 0.8069319725036621, 0.7751722931861877, 2.30478835105896, 0.8058996796607971, 1.0298068523406982, 1.7827924489974976, 0.8178068995475769, 0.779974102973938, 5.36977481842041, 0.7738305330276489, 1.6783311367034912, 2.085841178894043, 0.6897983551025391, 0.8476811647415161, 1.44038724899292, 0.6919848918914795, 1.5238877534866333, 0.7462184429168701, 1.251813530921936, 1.031156063079834, 0.9010812640190125, 0.9646875262260437, 1.4459285736083984, 0.7786276340484619, 0.9857401251792908, 0.8320659399032593, 1.2951549291610718, 1.7723270654678345, 1.2293798923492432, 1.537933111190796, 2.6885581016540527, 4.61361837387085, 1.516796588897705, 2.9058077335357666, 1.978188395500183, 0.9295388460159302, 1.6729577779769897, 2.6374969482421875, 1.35586678981781, 1.9274241924285889, 0.6430341005325317, 2.8705894947052, 0.8312410116195679, 0.9291008710861206, 0.6784490346908569, 1.2888102531433105, 1.4390543699264526, 1.0163124799728394, 1.0623890161514282, 1.2085484266281128, 0.9283679127693176, 1.0284748077392578, 1.0800776481628418, 1.2408314943313599, 1.007921576499939, 0.9868634939193726, 0.8106583952903748, 1.801377773284912, 0.8416507244110107, 6.288163661956787, 1.2245914936065674, 1.3446507453918457, 0.6574200987815857, 1.3746914863586426, 0.6532004475593567, 0.9197586178779602, 0.9437844753265381, 0.5825314521789551, 2.8699374198913574, 1.2497004270553589, 0.777874767780304, 0.9349716305732727, 1.068240761756897, 0.8983479142189026, 1.2951138019561768, 0.9579501152038574, 0.9627264738082886, 1.855873465538025, 3.8806989192962646, 0.9349136352539062, 1.0850073099136353], "done": true, "trial_id": "41fb8_00000", "date": "2024-01-07_14-56-43", "timestamp": 1704639403, "time_this_iter_s": 163.825763463974, "time_total_s": 5439.35834312439, "pid": 309705, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 2, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 5439.35834312439, "iterations_since_restore": 34}
diff --git a/recover/Experiments/cell_line_transfer_no_permut_invariance.json b/recover/Experiments/cell_line_transfer_no_permut_invariance.json
new file mode 100644
index 0000000..c576ca2
--- /dev/null
+++ b/recover/Experiments/cell_line_transfer_no_permut_invariance.json
@@ -0,0 +1,22 @@
+{"train/comb_r_squared": 0.2081781762144828, "train/loss_mse": 62.72047424316406, "train/loss_kl": 736.2190625000001, "eval/loss_mean": 81.33079253508436, "eval/comb_r_squared": 0.22644926299198267, "eval/spearman": 0.271674221939394, "training_iteration": 0, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_12-52-11", "timestamp": 1704631931, "time_this_iter_s": 77.94547843933105, "time_total_s": 77.94547843933105, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 77.94547843933105, "iterations_since_restore": 1}
+{"train/comb_r_squared": 0.30421994730140306, "train/loss_mse": 60.54710006713867, "train/loss_kl": 654.417734375, "eval/loss_mean": 78.64093203992134, "eval/comb_r_squared": 0.24439649871332497, "eval/spearman": 0.25888268898056666, "training_iteration": 1, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_12-53-28", "timestamp": 1704632008, "time_this_iter_s": 77.62643647193909, "time_total_s": 155.57191491127014, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 155.57191491127014, "iterations_since_restore": 2}
+{"train/comb_r_squared": 0.34635368352785384, "train/loss_mse": 52.756385803222656, "train/loss_kl": 617.6071484375, "eval/loss_mean": 78.19947097679558, "eval/comb_r_squared": 0.25505198347816205, "eval/spearman": 0.258094532151643, "training_iteration": 2, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_12-54-45", "timestamp": 1704632085, "time_this_iter_s": 76.92169380187988, "time_total_s": 232.49360871315002, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 232.49360871315002, "iterations_since_restore": 3}
+{"train/comb_r_squared": 0.37831664690819844, "train/loss_mse": 62.82251739501953, "train/loss_kl": 601.1494921875, "eval/loss_mean": 80.20669042099641, "eval/comb_r_squared": 0.26721933905604395, "eval/spearman": 0.26575385972470655, "training_iteration": 3, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_12-56-05", "timestamp": 1704632165, "time_this_iter_s": 79.67474389076233, "time_total_s": 312.16835260391235, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 312.16835260391235, "iterations_since_restore": 4}
+{"train/comb_r_squared": 0.40070463383364197, "train/loss_mse": 50.02106475830078, "train/loss_kl": 597.2572265625, "eval/loss_mean": 76.75517539607668, "eval/comb_r_squared": 0.2763438784226993, "eval/spearman": 0.2702489017822316, "training_iteration": 4, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_12-57-25", "timestamp": 1704632245, "time_this_iter_s": 79.512868642807, "time_total_s": 391.68122124671936, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 391.68122124671936, "iterations_since_restore": 5}
+{"train/comb_r_squared": 0.4198579421768838, "train/loss_mse": 53.68745040893555, "train/loss_kl": 591.5659375, "eval/loss_mean": 76.21830355696693, "eval/comb_r_squared": 0.28186888922916653, "eval/spearman": 0.2704070853753811, "training_iteration": 5, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_12-58-43", "timestamp": 1704632323, "time_this_iter_s": 78.25750374794006, "time_total_s": 469.9387249946594, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 469.9387249946594, "iterations_since_restore": 6}
+{"train/comb_r_squared": 0.434916681797811, "train/loss_mse": 38.89764404296875, "train/loss_kl": 582.5319921875, "eval/loss_mean": 76.78907684523696, "eval/comb_r_squared": 0.2772814347931498, "eval/spearman": 0.26739989398942526, "training_iteration": 6, "patience": 1, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-00-00", "timestamp": 1704632400, "time_this_iter_s": 77.05905890464783, "time_total_s": 546.9977838993073, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 546.9977838993073, "iterations_since_restore": 7}
+{"train/comb_r_squared": 0.44749016045891915, "train/loss_mse": 44.962120056152344, "train/loss_kl": 581.551875, "eval/loss_mean": 79.57734641905355, "eval/comb_r_squared": 0.2827064297447324, "eval/spearman": 0.26772393211499756, "training_iteration": 7, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-01-21", "timestamp": 1704632481, "time_this_iter_s": 80.24684453010559, "time_total_s": 627.2446284294128, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 627.2446284294128, "iterations_since_restore": 8}
+{"train/comb_r_squared": 0.45781589443579446, "train/loss_mse": 46.75752639770508, "train/loss_kl": 577.1889453125, "eval/loss_mean": 77.15193698475662, "eval/comb_r_squared": 0.2880173432735287, "eval/spearman": 0.276193241573824, "training_iteration": 8, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-02-37", "timestamp": 1704632557, "time_this_iter_s": 76.56715798377991, "time_total_s": 703.8117864131927, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 703.8117864131927, "iterations_since_restore": 9}
+{"train/comb_r_squared": 0.4657100688133079, "train/loss_mse": 44.25779724121094, "train/loss_kl": 577.66765625, "eval/loss_mean": 76.01778820494617, "eval/comb_r_squared": 0.28319543118658363, "eval/spearman": 0.27451260449812387, "training_iteration": 9, "patience": 1, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-03-53", "timestamp": 1704632633, "time_this_iter_s": 76.0779504776001, "time_total_s": 779.8897368907928, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 779.8897368907928, "iterations_since_restore": 10}
+{"train/comb_r_squared": 0.4707430679301489, "train/loss_mse": 47.14280319213867, "train/loss_kl": 574.4867578125001, "eval/loss_mean": 77.10771884115769, "eval/comb_r_squared": 0.2834213349541096, "eval/spearman": 0.2725283791335446, "training_iteration": 10, "patience": 2, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-05-11", "timestamp": 1704632711, "time_this_iter_s": 77.08578824996948, "time_total_s": 856.9755251407623, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 856.9755251407623, "iterations_since_restore": 11}
+{"train/comb_r_squared": 0.47861504561661544, "train/loss_mse": 38.79813766479492, "train/loss_kl": 568.7939453125, "eval/loss_mean": 76.13289015192815, "eval/comb_r_squared": 0.2899408787991529, "eval/spearman": 0.28183774775622183, "training_iteration": 11, "patience": 0, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-06-28", "timestamp": 1704632788, "time_this_iter_s": 77.0388913154602, "time_total_s": 934.0144164562225, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 934.0144164562225, "iterations_since_restore": 12}
+{"train/comb_r_squared": 0.4831293486953011, "train/loss_mse": 44.56498718261719, "train/loss_kl": 561.2561718750001, "eval/loss_mean": 75.70119675077667, "eval/comb_r_squared": 0.28875518876094775, "eval/spearman": 0.2770467405887498, "training_iteration": 12, "patience": 1, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-07-44", "timestamp": 1704632864, "time_this_iter_s": 76.55137848854065, "time_total_s": 1010.5657949447632, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 1010.5657949447632, "iterations_since_restore": 13}
+{"train/comb_r_squared": 0.48694342031720395, "train/loss_mse": 41.264095306396484, "train/loss_kl": 562.168671875, "eval/loss_mean": 77.0887960415442, "eval/comb_r_squared": 0.2795454977703149, "eval/spearman": 0.2673128158327009, "training_iteration": 13, "patience": 2, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-09-02", "timestamp": 1704632942, "time_this_iter_s": 77.86481404304504, "time_total_s": 1088.4306089878082, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 1088.4306089878082, "iterations_since_restore": 14}
+{"train/comb_r_squared": 0.4907268949606242, "train/loss_mse": 42.74953079223633, "train/loss_kl": 555.440078125, "eval/loss_mean": 76.27271143595378, "eval/comb_r_squared": 0.28223600317240716, "eval/spearman": 0.2683222946405051, "training_iteration": 14, "patience": 3, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-10-23", "timestamp": 1704633023, "time_this_iter_s": 80.34975981712341, "time_total_s": 1168.7803688049316, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 1168.7803688049316, "iterations_since_restore": 15}
+{"train/comb_r_squared": 0.4951623695631545, "train/loss_mse": 46.51382827758789, "train/loss_kl": 549.5244921875, "eval/loss_mean": 75.94217576949728, "eval/comb_r_squared": 0.2840151994938334, "eval/spearman": 0.27077312507811196, "training_iteration": 15, "patience": 4, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-11-43", "timestamp": 1704633103, "time_this_iter_s": 79.9547188282013, "time_total_s": 1248.735087633133, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "", "load_model_weights": false, "dataset": "", "study_name": "ALMANAC", "in_house_data": "without", "rounds_to_include": [], "val_set_prop": 0.2, "test_set_prop": 0.1, "test_on_unseen_cell_line": true, "cell_lines_in_test": ["MCF7"], "split_valid_train": "cell_line_level", "cell_line": null, "target": "bliss_max", "fp_bits": 1024, "fp_radius": 2}, "time_since_restore": 1248.735087633133, "iterations_since_restore": 16}
+{"train/comb_r_squared": 0.497751990160755, "train/loss_mse": 42.58019256591797, "train/loss_kl": 547.719765625, "eval/loss_mean": 76.46769569915475, "eval/comb_r_squared": 0.2832687265044548, "eval/spearman": 0.26953589902538766, "training_iteration": 16, "patience": 5, "all_space_explored": 0, "done": false, "trial_id": "5946b_00000", "date": "2024-01-07_13-13-01", "timestamp": 1704633181, "time_this_iter_s": 78.25940084457397, "time_total_s": 1326.994488477707, "pid": 302211, "hostname": "Mina-proj-frank2", "node_ip": "68.183.223.200", "config": {"use_tune": true, "num_epoch_without_tune": 500, "seed": 3, "lr": 0.0001, "weight_decay": 0.01, "batch_size": 128, "train_epoch": "", "eval_epoch": "", "predictor": "", "num_realizations": 10, "predictor_layers": [2048, 128, 64, 1], "merge_n_layers_before_the_end": 2, "allow_neg_eigval": true, "stop": {"training_iteration": 1000, "patience": 10}, "model": "