diff --git a/README.md b/README.md index b2554fe184cb5661f318ff366df8c8c57324dae3..f8a85095bea3696f9c1a097d31ffcbe9ecdb932f 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,9 @@ --- -The current repository contains all the code and data necessary to reproduce the paper results +The current repository contains all the code and data necessary to reproduce the paper results. + +Nonetheless, the cleaning of the code is in porcess to allow the reviewer to reproduce the results. ## Installation Set the environment with `make`: @@ -12,4 +14,4 @@ Set the environment with `make`: R. Céline, A. Batel, M.Plantevit, I. Benouaret >LIRIS laboratory, UMR5205, Univ Lyon, CNRS, UBL -## Reference \ No newline at end of file +## Reference diff --git a/code/.idea/.gitignore b/code/.idea/.gitignore new file mode 100644 index 0000000000000000000000000000000000000000..13566b81b018ad684f3a35fee301741b2734c8f4 --- /dev/null +++ b/code/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/code/.idea/code.iml b/code/.idea/code.iml new file mode 100644 index 0000000000000000000000000000000000000000..456b84dead990d2e2dad38e646b52ae8ab759da4 --- /dev/null +++ b/code/.idea/code.iml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<module type="PYTHON_MODULE" version="4"> + <component name="NewModuleRootManager"> + <content url="file://$MODULE_DIR$" /> + <orderEntry type="jdk" jdkName="cdbpr-env" jdkType="Python SDK" /> + <orderEntry type="sourceFolder" forTests="false" /> + </component> + <component name="SonarLintModuleSettings"> + <option name="uniqueId" value="6084c8ba-5729-4f67-aa53-1f1cacc70561" /> + </component> +</module> \ No newline at end of file diff --git a/code/.idea/inspectionProfiles/profiles_settings.xml b/code/.idea/inspectionProfiles/profiles_settings.xml new file mode 100644 index 0000000000000000000000000000000000000000..105ce2da2d6447d11dfe32bfb846c3d5b199fc99 --- /dev/null +++ b/code/.idea/inspectionProfiles/profiles_settings.xml @@ -0,0 +1,6 @@ +<component name="InspectionProjectProfileManager"> + <settings> + <option name="USE_PROJECT_PROFILE" value="false" /> + <version value="1.0" /> + </settings> +</component> \ No newline at end of file diff --git a/code/.idea/misc.xml b/code/.idea/misc.xml new file mode 100644 index 0000000000000000000000000000000000000000..7161c54b1a465b3a67a3dbd057c458daae8a379d --- /dev/null +++ b/code/.idea/misc.xml @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="Black"> + <option name="sdkName" value="cdbpr-env" /> + </component> + <component name="ProjectRootManager" version="2" project-jdk-name="cdbpr-env" project-jdk-type="Python SDK" /> +</project> \ No newline at end of file diff --git a/code/.idea/modules.xml b/code/.idea/modules.xml new file mode 100644 index 0000000000000000000000000000000000000000..23968dc678111b184a2091404b0a05ec67a7b905 --- /dev/null +++ b/code/.idea/modules.xml @@ -0,0 +1,8 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project version="4"> + <component name="ProjectModuleManager"> + <modules> + <module fileurl="file://$PROJECT_DIR$/.idea/code.iml" filepath="$PROJECT_DIR$/.idea/code.iml" /> + </modules> + </component> +</project> \ No newline at end of file diff --git a/code/.ipynb_checkpoints/Experiments-checkpoint.ipynb b/code/.ipynb_checkpoints/Experiments-checkpoint.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..ca54f3255bb8ed3e350a8bb1d627e33b85b32c52 --- /dev/null +++ b/code/.ipynb_checkpoints/Experiments-checkpoint.ipynb @@ -0,0 +1,6563 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "087d8076", + "metadata": {}, + "outputs": [], + "source": [ + "import os " + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "c0bd6c14", + "metadata": {}, + "outputs": [], + "source": [ + "path = \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/\"\n", + "datasets = ['assist09', 'assist17', 'algebra','math1', 'math2']" + ] + }, + { + "cell_type": "markdown", + "id": "1da92e4f", + "metadata": {}, + "source": [ + "## Table 2: compute ACC, AUC and RMSE" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "61c53cb1", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NB KC 123\n", + "NB Users 2493\n", + "NB (question-answer) in the data 17506\n", + "Epoch 1, Loss: 1.3718266487121582\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/./binary_model/main.py\", line 223, in <module>\n", + " acc = bpr_model.train(train, len(dico_kc), epochs, batch_size, y_train, ablation)\n", + " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/binary_model/BPR_model.py\", line 105, in train\n", + " self.optimizer.step()\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/optim/optimizer.py\", line 280, in wrapper\n", + " out = func(*args, **kwargs)\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/optim/optimizer.py\", line 33, in _use_grad\n", + " ret = func(self, *args, **kwargs)\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/optim/adam.py\", line 141, in step\n", + " adam(\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/optim/adam.py\", line 281, in adam\n", + " func(params,\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/optim/adam.py\", line 391, in _single_tensor_adam\n", + " denom = (exp_avg_sq.sqrt() / bias_correction2_sqrt).add_(eps)\n", + "KeyboardInterrupt\n" + ] + }, + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 3, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "i = 0\n", + "cmd = 'python ./binary_model/main.py --dataTrain '+path+'data/'+datasets[i]+'/train.csv --dataTest '+path+'data/'+datasets[i]+'/test.csv' \n", + "os.system(cmd)" + ] + }, + { + "cell_type": "markdown", + "id": "6b1c6b4d", + "metadata": {}, + "source": [ + "## Table 3: compute DOA" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "790a43dd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/home/celine/travail.svn/recherche/phd_subject/Arthur/code\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/./binary_model/compute_doa.py\", line 11, in <module>\n", + " doa = compute_doa(data)\n", + " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/binary_model/utils.py\", line 163, in compute_doa\n", + " r = doa_creuse(F, kc_user, kc_user_val, dico_u)\n", + " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/binary_model/utils.py\", line 136, in doa_creuse\n", + " while(ma < len(kc_user[k][ia])) and (mb < len(kc_user[k][ib])):\n", + "KeyboardInterrupt\n" + ] + }, + { + "data": { + "text/plain": [ + "2" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "i = 0\n", + "'''\n", + "cmd = 'cd '+path+'binary_model/'\n", + "cmd = 'ls'\n", + "os.system(cmd)\n", + "print(os.getcwd())\n", + "os.system(cmd)\n", + "'''\n", + "print(os.getcwd())\n", + "cmd = 'python ./binary_model/compute_doa.py --data '+path+'data/'+datasets[i]+'/train' \n", + "os.system(cmd)\n", + "\n", + "#doa = compute_doa(path+datasets[i]+'/train_embed.csv')\n", + "#print(\"DOA:\", doa)" + ] + }, + { + "cell_type": "markdown", + "id": "8d5630b5", + "metadata": {}, + "source": [ + "## Table 4: ablation --" + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "a9e32954", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NB KC 16\n", + "NB Users 3911\n", + "NB (question-answer) in the data 20\n", + "Epoch 1, Loss: 0.6622111201286316\n", + "Epoch 11, Loss: 0.5124014616012573\n", + "DOA: 0.5445884380178283\n", + "RMSE 0.42956248308434386\n", + "AUC: 0.8054917274129436\n", + "ACC: 0.7339260075133254\n", + "Prec: 0.6877265427850424\n", + "NB KC 16\n", + "NB Users 3911\n", + "NB (question-answer) in the data 20\n", + "Epoch 1, Loss: 0.6848532557487488\n", + "Epoch 11, Loss: 0.5197614431381226\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "Traceback (most recent call last):\n", + " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/./binary_model/main.py\", line 227, in <module>\n", + " doa = compute_doa(file)\n", + " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/binary_model/utils.py\", line 163, in compute_doa\n", + " r = doa_creuse(F, kc_user, kc_user_val, dico_u)\n", + " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/binary_model/utils.py\", line 136, in doa_creuse\n", + " while(ma < len(kc_user[k][ia])) and (mb < len(kc_user[k][ib])):\n", + "KeyboardInterrupt\n", + "Traceback (most recent call last):\n", + " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/./binary_model/main.py\", line 2, in <module>\n", + " import torch\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/__init__.py\", line 1239, in <module>\n", + " from torch import onnx as onnx\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/__init__.py\", line 12, in <module>\n", + " from . import ( # usort:skip. Keep the order instead of sorting lexicographically\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/errors.py\", line 9, in <module>\n", + " from torch.onnx._internal import diagnostics\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/__init__.py\", line 1, in <module>\n", + " from ._diagnostic import (\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/_diagnostic.py\", line 10, in <module>\n", + " from torch.onnx._internal.diagnostics import infra\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/__init__.py\", line 1, in <module>\n", + " from ._infra import (\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/_infra.py\", line 10, in <module>\n", + " from torch.onnx._internal.diagnostics.infra import formatter, sarif\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/formatter.py\", line 7, in <module>\n", + " from torch.onnx._internal.diagnostics.infra import sarif\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/__init__.py\", line 14, in <module>\n", + " from torch.onnx._internal.diagnostics.infra.sarif._code_flow import CodeFlow\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/_code_flow.py\", line 9, in <module>\n", + " from torch.onnx._internal.diagnostics.infra.sarif import (\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow.py\", line 9, in <module>\n", + " from torch.onnx._internal.diagnostics.infra.sarif import (\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/_thread_flow_location.py\", line 9, in <module>\n", + " from torch.onnx._internal.diagnostics.infra.sarif import (\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/_stack.py\", line 9, in <module>\n", + " from torch.onnx._internal.diagnostics.infra.sarif import (\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/onnx/_internal/diagnostics/infra/sarif/_stack_frame.py\", line 13, in <module>\n", + " class StackFrame(object):\n", + " File \"/home/celine/miniconda3/lib/python3.10/dataclasses.py\", line 1184, in dataclass\n", + " return wrap(cls)\n", + " File \"/home/celine/miniconda3/lib/python3.10/dataclasses.py\", line 1175, in wrap\n", + " return _process_class(cls, init, repr, eq, order, unsafe_hash,\n", + " File \"/home/celine/miniconda3/lib/python3.10/dataclasses.py\", line 1053, in _process_class\n", + " _cmp_fn('__eq__', '==',\n", + " File \"/home/celine/miniconda3/lib/python3.10/dataclasses.py\", line 629, in _cmp_fn\n", + " return _create_fn(name,\n", + " File \"/home/celine/miniconda3/lib/python3.10/dataclasses.py\", line 432, in _create_fn\n", + " exec(txt, globals, ns)\n", + " File \"<string>\", line 1, in <module>\n", + "KeyboardInterrupt\n", + "Traceback (most recent call last):\n", + " File \"/home/celine/travail.svn/recherche/phd_subject/Arthur/code/./binary_model/main.py\", line 2, in <module>\n", + " import torch\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/__init__.py\", line 934, in <module>\n", + " from .storage import _StorageBase, TypedStorage, _LegacyStorage, UntypedStorage, _warn_typed_storage_removal\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/torch/storage.py\", line 12, in <module>\n", + " import numpy as np\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/numpy/__init__.py\", line 139, in <module>\n", + " from . import core\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/numpy/core/__init__.py\", line 77, in <module>\n", + " from . import defchararray as char\n", + " File \"/home/celine/miniconda3/lib/python3.10/site-packages/numpy/core/defchararray.py\", line 1923, in <module>\n", + " class chararray(ndarray):\n", + "KeyboardInterrupt\n" + ] + } + ], + "source": [ + "# 0 no ablation, 1 ablation L2, 2 ablation init, 3 both\n", + "for abla in range(4):\n", + " for i in range(5):\n", + " cmd = 'python ./binary_model/main.py --dataTrain '+ path+'data/'+datasets[i]+'/train.csv --dataTest '+path+'data/'+datasets[i]+'/test.csv --ablation '+str(abla)\n", + " os.system(cmd)" + ] + }, + { + "cell_type": "markdown", + "id": "c5960372", + "metadata": {}, + "source": [ + "## Table 6 --" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "e46ff5d4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "avg values 0.8171224732461354 0.7558291282588128 0.7514963299272839 0.6211694246268313\n", + "0\n", + "avg values 0.8217752573238839 0.8345388354351844 0.8288387755136633 0.5900735950578464\n" + ] + }, + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# pour all\n", + "cmd = 'python ./nary_model/main_nary_cv.py --data '+ path+'data/covid/initsurvey.csv' \n", + "print(os.system(cmd))\n", + "cmd = 'python ./nary_model/main_nary_cv.py --data '+path+'data/covid/psysurvey.csv' \n", + "print(os.system(cmd))" + ] + }, + { + "cell_type": "markdown", + "id": "e586f5cb", + "metadata": {}, + "source": [ + "## Figure 1 and Table 7" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "4c4b8106", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/home/celine/travail.svn/recherche/phd_subject/Arthur/code/other/dt/train_embed.csv\n", + "| --- feature_3 <= 0.55\n", + "| | --- feature_9 <= -0.07\n", + "| | | --- cluster 0 (151)\n", + "| | --- feature_9 > -0.07\n", + "| | | --- feature_15 <= -0.30\n", + "| | | | --- cluster 1 (111)\n", + "| | | --- feature_15 > -0.30\n", + "| | | | --- feature_10 <= -0.25\n", + "| | | | | --- cluster 2 (57)\n", + "| | | | --- feature_10 > -0.25\n", + "| | | | | --- cluster 3 (415)\n", + "| --- feature_3 > 0.55\n", + "| | --- feature_8 <= 0.35\n", + "| | | --- cluster 4 (110)\n", + "| | --- feature_8 > 0.35\n", + "| | | --- cluster 5 (73)\n", + "(array([ 7, 14, 20, 22, 23, 39, 44, 53, 56, 57, 62, 71, 95,\n", + " 100, 106, 119, 122, 133, 141, 142, 152, 154, 156, 160, 179, 182,\n", + " 183, 187, 188, 191, 194, 198, 199, 201, 203, 207, 208, 214, 219,\n", + " 221, 224, 233, 235, 241, 243, 246, 252, 259, 261, 265, 266, 267,\n", + " 271, 282, 289, 293, 299, 302, 303, 304, 307, 308, 309, 310, 312,\n", + " 313, 325, 327, 351, 358, 385, 390, 393, 396, 406, 409, 415, 419,\n", + " 431, 435, 445, 447, 448, 450, 468, 479, 486, 488, 490, 494, 510,\n", + " 516, 517, 525, 546, 547, 550, 551, 553, 557, 559, 565, 567, 578,\n", + " 580, 597, 600, 604, 608, 611, 612, 615, 640, 641, 644, 656, 662,\n", + " 677, 679, 682, 686, 688, 690, 703, 709, 714, 723, 732, 745, 752,\n", + " 776, 782, 785, 786, 787, 789, 792, 798, 810, 829, 839, 842, 844,\n", + " 847, 854, 866, 869, 870, 881, 883, 900]),)\n", + "(array([ 4, 8, 15, 28, 40, 41, 42, 50, 59, 84, 85, 88, 89,\n", + " 109, 112, 123, 138, 145, 146, 150, 157, 158, 166, 181, 186, 190,\n", + " 232, 234, 242, 247, 248, 249, 260, 272, 274, 277, 281, 296, 301,\n", + " 338, 339, 345, 352, 359, 365, 388, 403, 404, 412, 418, 441, 443,\n", + " 461, 464, 478, 481, 489, 491, 495, 497, 500, 508, 524, 531, 569,\n", + " 576, 587, 589, 609, 610, 613, 617, 620, 622, 627, 637, 642, 647,\n", + " 673, 678, 711, 712, 715, 720, 726, 729, 730, 758, 759, 760, 788,\n", + " 797, 811, 815, 819, 820, 821, 830, 831, 840, 845, 849, 862, 878,\n", + " 880, 884, 891, 895, 898, 904, 906]),)\n", + "(array([ 58, 75, 80, 103, 114, 161, 205, 210, 211, 226, 227, 236, 244,\n", + " 257, 258, 328, 347, 356, 357, 372, 380, 391, 399, 400, 402, 410,\n", + " 455, 457, 526, 558, 583, 606, 614, 616, 618, 624, 643, 645, 660,\n", + " 664, 676, 691, 717, 738, 755, 756, 763, 771, 796, 812, 817, 832,\n", + " 850, 861, 868, 882, 912]),)\n", + "(array([ 0, 2, 3, 5, 6, 9, 10, 11, 12, 17, 18, 24, 29,\n", + " 30, 31, 32, 33, 34, 35, 36, 38, 43, 46, 48, 52, 54,\n", + " 55, 63, 64, 66, 68, 69, 72, 74, 76, 77, 78, 79, 81,\n", + " 82, 87, 90, 91, 92, 93, 94, 98, 99, 101, 102, 104, 105,\n", + " 107, 108, 110, 111, 115, 117, 120, 121, 124, 126, 127, 129, 130,\n", + " 131, 132, 134, 135, 136, 137, 139, 143, 144, 148, 149, 151, 155,\n", + " 163, 167, 171, 172, 173, 175, 176, 177, 178, 184, 189, 192, 193,\n", + " 195, 196, 197, 200, 202, 204, 206, 215, 218, 222, 223, 225, 229,\n", + " 230, 237, 238, 240, 251, 253, 254, 256, 262, 263, 264, 268, 273,\n", + " 278, 279, 280, 283, 284, 287, 288, 290, 291, 292, 294, 295, 305,\n", + " 306, 315, 317, 318, 319, 320, 321, 322, 323, 324, 330, 331, 332,\n", + " 333, 334, 336, 337, 340, 342, 343, 346, 350, 353, 354, 355, 360,\n", + " 361, 363, 364, 366, 367, 368, 370, 371, 373, 374, 376, 382, 383,\n", + " 386, 389, 392, 394, 397, 401, 407, 411, 413, 414, 416, 417, 423,\n", + " 424, 425, 426, 427, 428, 429, 432, 434, 437, 438, 440, 442, 444,\n", + " 446, 449, 453, 454, 456, 458, 459, 462, 467, 469, 471, 472, 473,\n", + " 475, 477, 480, 482, 483, 484, 485, 492, 493, 496, 498, 499, 502,\n", + " 504, 506, 507, 509, 513, 515, 518, 519, 520, 521, 522, 523, 527,\n", + " 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 542,\n", + " 543, 544, 545, 549, 552, 556, 560, 561, 562, 563, 566, 570, 571,\n", + " 573, 574, 575, 577, 581, 582, 585, 588, 591, 592, 593, 594, 595,\n", + " 596, 598, 599, 601, 602, 603, 605, 607, 619, 623, 625, 626, 628,\n", + " 629, 630, 631, 632, 635, 638, 639, 648, 649, 650, 651, 652, 654,\n", + " 657, 663, 667, 668, 669, 670, 672, 675, 681, 683, 684, 692, 693,\n", + " 694, 695, 697, 698, 700, 704, 705, 706, 707, 708, 710, 713, 716,\n", + " 718, 719, 722, 724, 727, 728, 731, 733, 734, 735, 736, 737, 740,\n", + " 741, 744, 747, 748, 749, 750, 751, 754, 757, 762, 764, 765, 767,\n", + " 768, 770, 772, 773, 774, 775, 777, 778, 779, 780, 781, 783, 791,\n", + " 793, 795, 799, 800, 801, 802, 803, 804, 806, 808, 816, 818, 822,\n", + " 823, 824, 825, 826, 833, 836, 837, 838, 841, 846, 848, 851, 852,\n", + " 856, 857, 864, 873, 875, 877, 885, 886, 887, 888, 889, 890, 893,\n", + " 894, 896, 897, 899, 901, 902, 903, 905, 907, 909, 911, 914]),)\n", + "(array([ 13, 16, 19, 27, 37, 47, 49, 60, 61, 65, 67, 70, 73,\n", + " 83, 86, 125, 128, 140, 147, 153, 159, 162, 165, 168, 170, 185,\n", + " 209, 228, 239, 245, 250, 269, 270, 275, 285, 300, 311, 314, 316,\n", + " 329, 341, 348, 349, 362, 369, 375, 377, 378, 379, 384, 395, 398,\n", + " 408, 433, 439, 452, 465, 466, 470, 487, 501, 503, 514, 540, 548,\n", + " 554, 555, 564, 568, 572, 584, 590, 634, 653, 655, 658, 659, 661,\n", + " 665, 666, 671, 674, 696, 699, 702, 721, 739, 742, 746, 753, 769,\n", + " 784, 790, 794, 809, 813, 827, 828, 843, 853, 855, 858, 859, 860,\n", + " 865, 867, 874, 908, 915, 916]),)\n", + "\n", + "Purity: 0.8255179934569248\n", + "0\n", + "/home/celine/travail.svn/recherche/phd_subject/Arthur/code/other/dt/train_embed.csv\n", + "| --- feature_3 <= 0.55\n", + "| | --- feature_9 <= -0.07\n", + "| | | --- cluster 0 (151)\n", + "| | --- feature_9 > -0.07\n", + "| | | --- feature_15 <= -0.30\n", + "| | | | --- cluster 1 (111)\n", + "| | | --- feature_15 > -0.30\n", + "| | | | --- feature_10 <= -0.25\n", + "| | | | | --- cluster 2 (57)\n", + "| | | | --- feature_10 > -0.25\n", + "| | | | | --- cluster 3 (415)\n", + "| --- feature_3 > 0.55\n", + "| | --- feature_8 <= 0.35\n", + "| | | --- cluster 4 (110)\n", + "| | --- feature_8 > 0.35\n", + "| | | --- cluster 5 (73)\n", + "(array([ 7, 14, 20, 22, 23, 39, 44, 53, 56, 57, 62, 71, 95,\n", + " 100, 106, 119, 122, 133, 141, 142, 152, 154, 156, 160, 179, 182,\n", + " 183, 187, 188, 191, 194, 198, 199, 201, 203, 207, 208, 214, 219,\n", + " 221, 224, 233, 235, 241, 243, 246, 252, 259, 261, 265, 266, 267,\n", + " 271, 282, 289, 293, 299, 302, 303, 304, 307, 308, 309, 310, 312,\n", + " 313, 325, 327, 351, 358, 385, 390, 393, 396, 406, 409, 415, 419,\n", + " 431, 435, 445, 447, 448, 450, 468, 479, 486, 488, 490, 494, 510,\n", + " 516, 517, 525, 546, 547, 550, 551, 553, 557, 559, 565, 567, 578,\n", + " 580, 597, 600, 604, 608, 611, 612, 615, 640, 641, 644, 656, 662,\n", + " 677, 679, 682, 686, 688, 690, 703, 709, 714, 723, 732, 745, 752,\n", + " 776, 782, 785, 786, 787, 789, 792, 798, 810, 829, 839, 842, 844,\n", + " 847, 854, 866, 869, 870, 881, 883, 900]),)\n", + "(array([ 4, 8, 15, 28, 40, 41, 42, 50, 59, 84, 85, 88, 89,\n", + " 109, 112, 123, 138, 145, 146, 150, 157, 158, 166, 181, 186, 190,\n", + " 232, 234, 242, 247, 248, 249, 260, 272, 274, 277, 281, 296, 301,\n", + " 338, 339, 345, 352, 359, 365, 388, 403, 404, 412, 418, 441, 443,\n", + " 461, 464, 478, 481, 489, 491, 495, 497, 500, 508, 524, 531, 569,\n", + " 576, 587, 589, 609, 610, 613, 617, 620, 622, 627, 637, 642, 647,\n", + " 673, 678, 711, 712, 715, 720, 726, 729, 730, 758, 759, 760, 788,\n", + " 797, 811, 815, 819, 820, 821, 830, 831, 840, 845, 849, 862, 878,\n", + " 880, 884, 891, 895, 898, 904, 906]),)\n", + "(array([ 58, 75, 80, 103, 114, 161, 205, 210, 211, 226, 227, 236, 244,\n", + " 257, 258, 328, 347, 356, 357, 372, 380, 391, 399, 400, 402, 410,\n", + " 455, 457, 526, 558, 583, 606, 614, 616, 618, 624, 643, 645, 660,\n", + " 664, 676, 691, 717, 738, 755, 756, 763, 771, 796, 812, 817, 832,\n", + " 850, 861, 868, 882, 912]),)\n", + "(array([ 0, 2, 3, 5, 6, 9, 10, 11, 12, 17, 18, 24, 29,\n", + " 30, 31, 32, 33, 34, 35, 36, 38, 43, 46, 48, 52, 54,\n", + " 55, 63, 64, 66, 68, 69, 72, 74, 76, 77, 78, 79, 81,\n", + " 82, 87, 90, 91, 92, 93, 94, 98, 99, 101, 102, 104, 105,\n", + " 107, 108, 110, 111, 115, 117, 120, 121, 124, 126, 127, 129, 130,\n", + " 131, 132, 134, 135, 136, 137, 139, 143, 144, 148, 149, 151, 155,\n", + " 163, 167, 171, 172, 173, 175, 176, 177, 178, 184, 189, 192, 193,\n", + " 195, 196, 197, 200, 202, 204, 206, 215, 218, 222, 223, 225, 229,\n", + " 230, 237, 238, 240, 251, 253, 254, 256, 262, 263, 264, 268, 273,\n", + " 278, 279, 280, 283, 284, 287, 288, 290, 291, 292, 294, 295, 305,\n", + " 306, 315, 317, 318, 319, 320, 321, 322, 323, 324, 330, 331, 332,\n", + " 333, 334, 336, 337, 340, 342, 343, 346, 350, 353, 354, 355, 360,\n", + " 361, 363, 364, 366, 367, 368, 370, 371, 373, 374, 376, 382, 383,\n", + " 386, 389, 392, 394, 397, 401, 407, 411, 413, 414, 416, 417, 423,\n", + " 424, 425, 426, 427, 428, 429, 432, 434, 437, 438, 440, 442, 444,\n", + " 446, 449, 453, 454, 456, 458, 459, 462, 467, 469, 471, 472, 473,\n", + " 475, 477, 480, 482, 483, 484, 485, 492, 493, 496, 498, 499, 502,\n", + " 504, 506, 507, 509, 513, 515, 518, 519, 520, 521, 522, 523, 527,\n", + " 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 542,\n", + " 543, 544, 545, 549, 552, 556, 560, 561, 562, 563, 566, 570, 571,\n", + " 573, 574, 575, 577, 581, 582, 585, 588, 591, 592, 593, 594, 595,\n", + " 596, 598, 599, 601, 602, 603, 605, 607, 619, 623, 625, 626, 628,\n", + " 629, 630, 631, 632, 635, 638, 639, 648, 649, 650, 651, 652, 654,\n", + " 657, 663, 667, 668, 669, 670, 672, 675, 681, 683, 684, 692, 693,\n", + " 694, 695, 697, 698, 700, 704, 705, 706, 707, 708, 710, 713, 716,\n", + " 718, 719, 722, 724, 727, 728, 731, 733, 734, 735, 736, 737, 740,\n", + " 741, 744, 747, 748, 749, 750, 751, 754, 757, 762, 764, 765, 767,\n", + " 768, 770, 772, 773, 774, 775, 777, 778, 779, 780, 781, 783, 791,\n", + " 793, 795, 799, 800, 801, 802, 803, 804, 806, 808, 816, 818, 822,\n", + " 823, 824, 825, 826, 833, 836, 837, 838, 841, 846, 848, 851, 852,\n", + " 856, 857, 864, 873, 875, 877, 885, 886, 887, 888, 889, 890, 893,\n", + " 894, 896, 897, 899, 901, 902, 903, 905, 907, 909, 911, 914]),)\n", + "(array([ 13, 16, 19, 27, 37, 47, 49, 60, 61, 65, 67, 70, 73,\n", + " 83, 86, 125, 128, 140, 147, 153, 159, 162, 165, 168, 170, 185,\n", + " 209, 228, 239, 245, 250, 269, 270, 275, 285, 300, 311, 314, 316,\n", + " 329, 341, 348, 349, 362, 369, 375, 377, 378, 379, 384, 395, 398,\n", + " 408, 433, 439, 452, 465, 466, 470, 487, 501, 503, 514, 540, 548,\n", + " 554, 555, 564, 568, 572, 584, 590, 634, 653, 655, 658, 659, 661,\n", + " 665, 666, 671, 674, 696, 699, 702, 721, 739, 742, 746, 753, 769,\n", + " 784, 790, 794, 809, 813, 827, 828, 843, 853, 855, 858, 859, 860,\n", + " 865, 867, 874, 908, 915, 916]),)\n", + "\n", + "Purity: 0.5986913849509269\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n" + ] + } + ], + "source": [ + "cmd = 'python ./other/decision_tree.py --lower 0'\n", + "print(os.system(cmd))\n", + "cmd = 'python ./other/decision_tree.py --lower 1'\n", + "print(os.system(cmd))" + ] + }, + { + "cell_type": "markdown", + "id": "f39f6de3", + "metadata": {}, + "source": [ + "## Figure 2: radar plots --" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "ceee0ec4", + "metadata": {}, + "outputs": [], + "source": [ + "def fromDFtoArray(name, vector, type_value):\n", + " # Read dataframe and generate a matrix or \n", + " # a vector of appropriate type\n", + " df = pd.read_csv(name,index_col=None, header=None)\n", + " cols = df.columns\n", + " if(type_value == \"f\"): \n", + " for col in cols:\n", + " df[col] = df[col].astype(float)\n", + " if(type_value == 'i'):\n", + " for col in cols:\n", + " df[col] = df[col].astype(int)\n", + " r = df.values\n", + " if(vector):\n", + " r = r.reshape(-1,)\n", + " return r" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "801e2ab1", + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.preprocessing import MinMaxScaler\n", + "import plotly.graph_objects as go\n", + "import pandas as pd\n", + "import numpy as np\n", + "import csv\n", + "from matplotlib import gridspec\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "5a8b764b", + "metadata": {}, + "outputs": [], + "source": [ + "H_users = fromDFtoArray(path+ \"other/dt/train_embed.csv\",False,'f') \n", + "classPsy = fromDFtoArray(path+ \"other/dt/train_user_quest_label.csv\",False,'f') " + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "33643887", + "metadata": {}, + "outputs": [], + "source": [ + "d = [151,111,57,415,110,73]\n", + "g = [[7, 14, 20, 22, 23, 39, 44, 53, 56, 57, 62, 71, 95, 100, 106, 119, 122, 133, 141, 142, 152, 154, 156, 160, 179, 182, 183, 187, 188, 191, 194, 198, 199, 201, 203, 207, 208, 214, 219, 221, 224, 233, 235, 241, 243, 246, 252, 259, 261, 265, 266, 267, 271, 282, 289, 293, 299, 302, 303, 304, 307, 308, 309, 310, 312, 313, 325, 327, 351, 358, 385, 390, 393, 396, 406, 409, 415, 419, 431, 435, 445, 447, 448, 450, 468, 479, 486, 488, 490, 494, 510, 516, 517, 525, 546, 547, 550, 551, 553, 557, 559, 565, 567, 578, 580, 597, 600, 604, 608, 611, 612, 615, 640, 641, 644, 656, 662, 677, 679, 682, 686, 688, 690, 703, 709, 714, 723, 732, 745, 752, 776, 782, 785, 786, 787, 789, 792, 798, 810, 829, 839, 842, 844, 847, 854, 866, 869, 870, 881, 883, 900]\n", + " , [4, 8, 15, 28, 40, 41, 42, 50, 59, 84, 85, 88, 89, 109, 112, 123, 138, 145, 146, 150, 157, 158, 166, 181, 186, 190, 232, 234, 242, 247, 248, 249, 260, 272, 274, 277, 281, 296, 301, 338, 339, 345, 352, 359, 365, 388, 403, 404, 412, 418, 441, 443, 461, 464, 478, 481, 489, 491, 495, 497, 500, 508, 524, 531, 569, 576, 587, 589, 609, 610, 613, 617, 620, 622, 627, 637, 642, 647, 673, 678, 711, 712, 715, 720, 726, 729, 730, 758, 759, 760, 788, 797, 811, 815, 819, 820, 821, 830, 831, 840, 845, 849, 862, 878, 880, 884, 891, 895, 898, 904, 906 ]\n", + ",[58, 75, 80, 103, 114, 161, 205, 210, 211, 226, 227, 236, 244, 257, 258, 328, 347, 356, 357, 372, 380, 391, 399, 400, 402, 410, 455, 457, 526, 558, 583, 606, 614, 616, 618, 624, 643, 645, 660, 664, 676, 691, 717, 738, 755, 756, 763, 771, 796, 812, 817, 832, 850, 861, 868, 882, 912]\n", + " ,[0, 2, 3, 5, 6, 9, 10, 11, 12, 17, 18, 24, 29, 30, 31, 32, 33, 34, 35, 36, 38, 43, 46, 48, 52, 54, 55, 63, 64, 66, 68, 69, 72, 74, 76, 77, 78, 79, 81, 82, 87, 90, 91, 92, 93, 94, 98, 99, 101, 102, 104, 105, 107, 108, 110, 111, 115, 117, 120, 121, 124, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 139, 143, 144, 148, 149, 151, 155, 163, 167, 171, 172, 173, 175, 176, 177, 178, 184, 189, 192, 193, 195, 196, 197, 200, 202, 204, 206, 215, 218, 222, 223, 225, 229, 230, 237, 238, 240, 251, 253, 254, 256, 262, 263, 264, 268, 273, 278, 279, 280, 283, 284, 287, 288, 290, 291, 292, 294, 295, 305, 306, 315, 317, 318, 319, 320, 321, 322, 323, 324, 330, 331, 332, 333, 334, 336, 337, 340, 342, 343, 346, 350, 353, 354, 355, 360, 361, 363, 364, 366, 367, 368, 370, 371, 373, 374, 376, 382, 383, 386, 389, 392, 394, 397, 401, 407, 411, 413, 414, 416, 417, 423, 424, 425, 426, 427, 428, 429, 432, 434, 437, 438, 440, 442, 444, 446, 449, 453, 454, 456, 458, 459, 462, 467, 469, 471, 472, 473, 475, 477, 480, 482, 483, 484, 485, 492, 493, 496, 498, 499, 502, 504, 506, 507, 509, 513, 515, 518, 519, 520, 521, 522, 523, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 542, 543, 544, 545, 549, 552, 556, 560, 561, 562, 563, 566, 570, 571, 573, 574, 575, 577, 581, 582, 585, 588, 591, 592, 593, 594, 595, 596, 598, 599, 601, 602, 603, 605, 607, 619, 623, 625, 626, 628, 629, 630, 631, 632, 635, 638, 639, 648, 649, 650, 651, 652, 654, 657, 663, 667, 668, 669, 670, 672, 675, 681, 683, 684, 692, 693, 694, 695, 697, 698, 700, 704, 705, 706, 707, 708, 710, 713, 716, 718, 719, 722, 724, 727, 728, 731, 733, 734, 735, 736, 737, 740, 741, 744, 747, 748, 749, 750, 751, 754, 757, 762, 764, 765, 767, 768, 770, 772, 773, 774, 775, 777, 778, 779, 780, 781, 783, 791, 793, 795, 799, 800, 801, 802, 803, 804, 806, 808, 816, 818, 822, 823, 824, 825, 826, 833, 836, 837, 838, 841, 846, 848, 851, 852, 856, 857, 864, 873, 875, 877, 885, 886, 887, 888, 889, 890, 893, 894, 896, 897, 899, 901, 902, 903, 905, 907, 909, 911, 914] \n", + ",[13, 16, 19, 27, 37, 47, 49, 60, 61, 65, 67, 70, 73, 83, 86, 125, 128, 140, 147, 153, 159, 162, 165, 168, 170, 185, 209, 228, 239, 245, 250, 269, 270, 275, 285, 300, 311, 314, 316, 329, 341, 348, 349, 362, 369, 375, 377, 378, 379, 384, 395, 398, 408, 433, 439, 452, 465, 466, 470, 487, 501, 503, 514, 540, 548, 554, 555, 564, 568, 572, 584, 590, 634, 653, 655, 658, 659, 661, 665, 666, 671, 674, 696, 699, 702, 721, 739, 742, 746, 753, 769, 784, 790, 794, 809, 813, 827, 828, 843, 853, 855, 858, 859, 860, 865, 867, 874, 908, 915, 916]\n", + ",[1, 21, 25, 26, 45, 51, 96, 97, 113, 116, 118, 164, 169, 174, 180, 212, 213, 216, 217, 220, 231, 255, 276, 286, 297, 298, 326, 335, 344, 381, 387, 405, 420, 421, 422, 430, 436, 451, 460, 463, 474, 476, 505, 511, 512, 579, 586, 621, 633, 636, 646, 680, 685, 687, 689, 701, 725, 743, 761, 766, 805, 807, 814, 834, 835, 863, 871, 872, 876, 879, 892, 910, 913] \n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "d190bd89", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17\n", + "(917, 17)\n", + "[array([-0.37748344, -0.50331126, -0.36423841, -0.99337748, -0.39072848,\n", + " -0.64238411, 0.16556291, 0.33774834, -0.26490066, -0.99337748,\n", + " 0.36423841, -0.53642384, 0.00662252, -0.41721854, -0.68874172,\n", + " 0.52317881, -0.65562914]), array([-0.4954955 , -0.62162162, -0.53153153, -1. , -0.69369369,\n", + " -0.51351351, -0.2972973 , -0.36936937, -0.47747748, 1. ,\n", + " 0.20720721, -0.58558559, 0.18918919, -0.58558559, -0.45945946,\n", + " -1. , -0.53153153]), array([-0.43859649, -0.68421053, -0.47368421, -1. , -0.52631579,\n", + " -0.61403509, -0.05263158, 0.29824561, -0.33333333, 1. ,\n", + " -0.98245614, -0.40350877, 0.05263158, -0.29824561, -0.57894737,\n", + " 1. , -0.61403509]), array([-0.70843373, -0.56144578, -0.62891566, -1. , -0.68674699,\n", + " -0.83614458, 0.2 , 0.4 , -0.56626506, 1. ,\n", + " 1. , -0.5686747 , 0.36385542, -0.68433735, -0.5373494 ,\n", + " 1. , -0.58795181]), array([-0.72727273, -0.76363636, -0.72727273, 1. , -0.74545455,\n", + " -0.07272727, -0.19090909, -0.01818182, -1. , 0.63636364,\n", + " 0.65454545, -0.78181818, -0.03636364, -0.72727273, -0.70909091,\n", + " 0.43636364, -0.58181818]), array([-0.53424658, -0.67123288, -0.57534247, 1. , -0.23287671,\n", + " -0.08219178, -0.31506849, 0.06849315, 1. , 0.64383562,\n", + " 0.56164384, -0.80821918, 0.08219178, -0.56164384, -0.83561644,\n", + " 0.63013699, -0.67123288])]\n" + ] + } + ], + "source": [ + "titre = ['agency', 'anxiety','avoiding', 'depression','ext. control', 'fatigue', 'hyper vigilance',\n", + " 'trauma','int. control', 'memory', 'problem focused', 'quality of life',\n", + " 'sadness', 'self efficacy','sleep','social','stress']\n", + "dim = len(titre)\n", + "seuils = [ 0.38646466, 0.13056517 , 0.16311094 , 0.5522181 , 0.4068393 , 0.4961518,\n", + " -0.12576449, -0.16419357 , 0.34581536, -0.06974197, -0.25050393 , 0.17414908,\n", + " -0.09691429, 0.39290804, 0.37336868, -0.30328006 , 0.23517847]\n", + "print(len(seuils))\n", + "\n", + "indices = []\n", + "for i in range(17):\n", + " indices.append([i])\n", + "print(H_users.shape)\n", + "radar = []\n", + "\n", + "for k in range(len(g)):\n", + " rows = H_users[g[k]]\n", + " v = np.full(dim, 0.0)\n", + " for i in range(len(rows)):\n", + " #print(len(rows[i]))\n", + " for j in range(len(rows[i])):\n", + " \n", + " if(rows[i][j] > seuils[j]):\n", + " v[j] = v[j] + 1 #rows[i][j]\n", + " if(rows[i][j] < seuils[j]):\n", + " v[j] = v[j] - 1#+ rows[i][j]\n", + " v = v / len(rows)\n", + " radar.append(v)\n", + "print(radar)\n", + "\n", + "scaler = MinMaxScaler()\n", + "radar = scaler.fit_transform(np.array(radar))" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "34d43f1e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(917, 17)\n", + "[array([-0.28476821, 0.01986755, 0. , 0.14569536, -0.23178808,\n", + " 0.2384106 , 0.01324503, 0.07284768, -0.2384106 , -0.30463576,\n", + " 0. , -0.06622517, -0.02649007, -0.15231788, -0.02649007,\n", + " 0. , 0.04635762]), array([-0.24324324, 0.07207207, 0. , 0.04504505, -0.0990991 ,\n", + " 0.25225225, 0.02702703, 0.05405405, -0.23423423, -0.02702703,\n", + " 0. , -0.11711712, 0.10810811, -0.17117117, 0. ,\n", + " 0. , 0.18018018]), array([-0.31578947, 0. , 0. , 0.07017544, -0.24561404,\n", + " 0.1754386 , -0.03508772, 0.07017544, -0.22807018, -0.03508772,\n", + " 0. , -0.12280702, 0.01754386, -0.28070175, -0.15789474,\n", + " 0. , 0.10526316]), array([-0.22650602, -0.01686747, 0. , 0.1060241 , -0.14698795,\n", + " 0.15421687, -0.02650602, -0.01445783, -0.18795181, -0.01445783,\n", + " 0. , -0.09156627, 0.00240964, -0.1060241 , -0.21204819,\n", + " 0. , 0.04096386]), array([-0.12727273, 0.00909091, 0. , 0.78181818, -0.13636364,\n", + " 0.47272727, 0. , 0.00909091, -0.10909091, -0.04545455,\n", + " 0. , -0.04545455, 0.00909091, -0.00909091, -0.05454545,\n", + " 0. , 0.00909091]), array([-0.26027397, -0.04109589, 0. , 0.80821918, -0.19178082,\n", + " 0.32876712, 0. , -0.01369863, -0.26027397, -0.12328767,\n", + " 0. , -0.02739726, -0.05479452, -0.01369863, -0.05479452,\n", + " 0. , -0.01369863])]\n", + "[[0.16455441 0.53869875 0. 0.13188382 0.0943655 0.26433588\n", + " 0.77812042 1. 0.14461525 0. 0. 0.59304052\n", + " 0.17375075 0.4726758 0.87507526 0. 0.30976178]\n", + " [0.38482645 1. 0. 0. 1. 0.30779335\n", + " 1. 0.78473721 0.17223979 0.95668452 0. 0.05963646\n", + " 1. 0.40326292 1. 0. 1. ]\n", + " [0. 0.36314068 0. 0.03292878 0. 0.06662806\n", + " 0. 0.96939204 0.21301194 0.92890608 0. 0.\n", + " 0.44405901 0. 0.25538278 0. 0.61358839]\n", + " [0.47361018 0.21409258 0. 0.07990188 0.67314696 0.\n", + " 0.13815874 0. 0.47837478 1. 0. 0.32743771\n", + " 0.35115553 0.64311739 0. 0. 0.28194152]\n", + " [1. 0.4434718 0. 0.96540633 0.74566049 1.\n", + " 0.5648855 0.26972799 1. 0.89318032 0. 0.81073964\n", + " 0.39216942 1. 0.7427686 0. 0.11754528]\n", + " [0.29448578 0. 0. 1. 0.36742475 0.54802058\n", + " 0.5648855 0.00869591 0. 0.6249548 0. 1.\n", + " 0. 0.98303558 0.74159402 0. 0. ]]\n" + ] + } + ], + "source": [ + "print(classPsy.shape)\n", + "radar2 = []\n", + "for k in range(len(g)):\n", + " rows = classPsy[g[k]]\n", + " v = np.full(dim, 0.0)\n", + " for i in range(len(rows)):\n", + " for j in range(len(rows[i])):\n", + " if(rows[i][j] == 2):\n", + " v[j] = v[j] + 1 #rows[i][j]\n", + " if(rows[i][j] == 0):\n", + " v[j] = v[j] - 1#+ rows[i][j]\n", + " v = v / len(rows)\n", + " radar2.append(v)\n", + "print(radar2)\n", + "scaler = MinMaxScaler()\n", + "radar2 = scaler.fit_transform(np.array(radar2))\n", + "print(radar2)" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "acb7d4df", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 1, + 1.0000000000000002, + 1, + 0.0033112582781457123, + 0.6920433263182283, + 0.25380675933755836, + 0.933140763702973, + 0.9190874265241868, + 0.3675496688741722, + 0, + 0.6793061009201196, + 0.6715798084032027, + 0.10740656161985232, + 0.7226913513380435, + 0.39046122959795593, + 0.7615894039735099, + 0.11169353895116174 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 0.16455440884795092, + 0.5386987513270309, + 0, + 0.13188381895598983, + 0.09436550290404844, + 0.2643358809222332, + 0.7781204185834891, + 1, + 0.14461525033548983, + 0, + 0, + 0.5930405191252273, + 0.17375075255869957, + 0.47267580001011067, + 0.8750752558699578, + 0, + 0.30976178331597964 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Trauma" + } + } + }, + "text/html": [ + "<div> <div id=\"76765db7-43a6-462e-972b-9174621cc1b2\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"76765db7-43a6-462e-972b-9174621cc1b2\")) { Plotly.newPlot( \"76765db7-43a6-462e-972b-9174621cc1b2\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[1.0,1.0000000000000002,1.0,0.0033112582781457123,0.6920433263182283,0.25380675933755836,0.933140763702973,0.9190874265241868,0.3675496688741722,0.0,0.6793061009201196,0.6715798084032027,0.10740656161985232,0.7226913513380435,0.39046122959795593,0.7615894039735099,0.11169353895116174],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.16455440884795092,0.5386987513270309,0.0,0.13188381895598983,0.09436550290404844,0.2643358809222332,0.7781204185834891,1.0,0.14461525033548983,0.0,0.0,0.5930405191252273,0.17375075255869957,0.47267580001011067,0.8750752558699578,0.0,0.30976178331597964],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Trauma\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('76765db7-43a6-462e-972b-9174621cc1b2');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 0.6626195903304337, + 0.5455284146310979, + 0.5391809720167928, + 0, + 0.10098144792022334, + 0.42261429291558417, + 0.03450258769407699, + 0, + 0.26126126126126126, + 0.9999999999999999, + 0.600095670892131, + 0.5501059254028373, + 0.5635734256423912, + 0.3302521852707725, + 0.9999999999999998, + 0, + 0.9999999999999996 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 0.3848264508162984, + 0.9999999999999998, + 0, + 0, + 0.9999999999999999, + 0.3077933504343407, + 1, + 0.7847372139092118, + 0.17223978508986737, + 0.9566845221816624, + 0, + 0.059636462659132805, + 1, + 0.40326292234689176, + 1, + 0, + 1 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Sadness, stress and memory" + } + } + }, + "text/html": [ + "<div> <div id=\"20455127-7ff7-4bfe-aa73-298a5bd17baf\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"20455127-7ff7-4bfe-aa73-298a5bd17baf\")) { Plotly.newPlot( \"20455127-7ff7-4bfe-aa73-298a5bd17baf\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.6626195903304337,0.5455284146310979,0.5391809720167928,0.0,0.10098144792022334,0.42261429291558417,0.03450258769407699,0.0,0.26126126126126126,0.9999999999999999,0.600095670892131,0.5501059254028373,0.5635734256423912,0.3302521852707725,0.9999999999999998,0.0,0.9999999999999996],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.3848264508162984,0.9999999999999998,0.0,0.0,0.9999999999999999,0.3077933504343407,1.0,0.7847372139092118,0.17223978508986737,0.9566845221816624,0.0,0.059636462659132805,1.0,0.40326292234689176,1.0,0.0,1.0],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Sadness, stress and memory\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('20455127-7ff7-4bfe-aa73-298a5bd17baf');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 0.8252861068333486, + 0.3051024879497546, + 0.6985249192633325, + 0, + 0.42752288885478995, + 0.2909411261295275, + 0.509518477043673, + 0.8677431283125847, + 0.33333333333333337, + 0.9999999999999999, + 0, + 0.9999999999999999, + 0.22236626047878316, + 0.9999999999999999, + 0.6823456278491502, + 1, + 0.40942904965594185 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 0, + 0.3631406761177753, + 0, + 0.03292878055423164, + 0, + 0.06662805569632463, + 0, + 0.9693920416101486, + 0.21301193676117802, + 0.9289060751306334, + 0, + 0, + 0.4440590111642743, + 0, + 0.25538277511961727, + 0, + 0.613588394921103 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Trauma and memory" + } + } + }, + "text/html": [ + "<div> <div id=\"5991dd8a-46f3-47ca-afe3-6a725b9d3e27\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"5991dd8a-46f3-47ca-afe3-6a725b9d3e27\")) { Plotly.newPlot( \"5991dd8a-46f3-47ca-afe3-6a725b9d3e27\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.8252861068333486,0.3051024879497546,0.6985249192633325,0.0,0.42752288885478995,0.2909411261295275,0.509518477043673,0.8677431283125847,0.33333333333333337,0.9999999999999999,0.0,0.9999999999999999,0.22236626047878316,0.9999999999999999,0.6823456278491502,1.0,0.40942904965594185],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.0,0.3631406761177753,0.0,0.03292878055423164,0.0,0.06662805569632463,0.0,0.9693920416101486,0.21301193676117802,0.9289060751306334,0.0,0.0,0.4440590111642743,0.0,0.25538277511961727,0.0,0.613588394921103],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Trauma and memory\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('5991dd8a-46f3-47ca-afe3-6a725b9d3e27');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 0.05385811749580105, + 0.7766849079946061, + 0.2709304881216408, + 0, + 0.11453393749926821, + 0, + 1, + 1, + 0.21686746987951805, + 0.9999999999999999, + 1, + 0.5918910797584638, + 1, + 0.10007614099520756, + 0.7929323593586943, + 1, + 0.5961364894205792 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 0.47361017674759953, + 0.21409257531762815, + 0, + 0.07990188438099098, + 0.6731469567590749, + 0, + 0.13815874183757926, + 0, + 0.4783747841448165, + 1, + 0, + 0.3274377105398927, + 0.3511555312157722, + 0.6431173902892839, + 0, + 0, + 0.28194151526539 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Memory" + } + } + }, + "text/html": [ + "<div> <div id=\"a1da95d6-d37f-4ac8-9e4e-4db7c4101552\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"a1da95d6-d37f-4ac8-9e4e-4db7c4101552\")) { Plotly.newPlot( \"a1da95d6-d37f-4ac8-9e4e-4db7c4101552\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.05385811749580105,0.7766849079946061,0.2709304881216408,0.0,0.11453393749926821,0.0,1.0,1.0,0.21686746987951805,0.9999999999999999,1.0,0.5918910797584638,1.0,0.10007614099520756,0.7929323593586943,1.0,0.5961364894205792],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.47361017674759953,0.21409257531762815,0.0,0.07990188438099098,0.6731469567590749,0.0,0.13815874183757926,0.0,0.4783747841448165,1.0,0.0,0.3274377105398927,0.3511555312157722,0.6431173902892839,0.0,0.0,0.28194151526539],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Memory\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('a1da95d6-d37f-4ac8-9e4e-4db7c4101552');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 0, + 0, + 0, + 1, + 0, + 1, + 0.24105415860735008, + 0.45646157121566955, + 0, + 0.817577771066143, + 0.8257441673370877, + 0.06523429064996744, + 0, + 0, + 0.3363636363636362, + 0.7181818181818181, + 0.6400417603597814 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 1, + 0.44347179538019227, + 0, + 0.9654063271786428, + 0.7456604883789348, + 1.0000000000000002, + 0.564885496183206, + 0.2697279872384972, + 0.9999999999999999, + 0.8931803183617966, + 0, + 0.8107396381955576, + 0.3921694214876033, + 1, + 0.7427685950413223, + 0, + 0.11754528094438979 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Depression and associated symptoms" + } + } + }, + "text/html": [ + "<div> <div id=\"36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6\")) { Plotly.newPlot( \"36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.0,0.0,0.0,1.0,0.0,1.0,0.24105415860735008,0.45646157121566955,0.0,0.817577771066143,0.8257441673370877,0.06523429064996744,0.0,0.0,0.3363636363636362,0.7181818181818181,0.6400417603597814],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[1.0,0.44347179538019227,0.0,0.9654063271786428,0.7456604883789348,1.0000000000000002,0.564885496183206,0.2697279872384972,0.9999999999999999,0.8931803183617966,0.0,0.8107396381955576,0.3921694214876033,1.0,0.7427685950413223,0.0,0.11754528094438979],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Depression and associated symptoms\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 0.5518355221276496, + 0.35495419005740514, + 0.4185011017969513, + 1, + 0.9999999999999999, + 0.9876024449205008, + 0, + 0.5691187321548875, + 1, + 0.8213261730305375, + 0.7788822887622742, + 0, + 0.2962263160657114, + 0.38605693334012314, + 0, + 0.8150684931506849, + 0 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 0.2944857798484113, + 0, + 0, + 1, + 0.36742474619851917, + 0.5480205762092292, + 0.564885496183206, + 0.008695913446491205, + 0, + 0.6249547999445546, + 0, + 1, + 0, + 0.983035577828007, + 0.7415940224159403, + 0, + 0 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Depression" + } + } + }, + "text/html": [ + "<div> <div id=\"c5f7ad3d-e342-44e4-8910-3dc3df3edad9\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"c5f7ad3d-e342-44e4-8910-3dc3df3edad9\")) { Plotly.newPlot( \"c5f7ad3d-e342-44e4-8910-3dc3df3edad9\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.5518355221276496,0.35495419005740514,0.4185011017969513,1.0,0.9999999999999999,0.9876024449205008,0.0,0.5691187321548875,1.0,0.8213261730305375,0.7788822887622742,0.0,0.2962263160657114,0.38605693334012314,0.0,0.8150684931506849,0.0],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.2944857798484113,0.0,0.0,1.0,0.36742474619851917,0.5480205762092292,0.564885496183206,0.008695913446491205,0.0,0.6249547999445546,0.0,1.0,0.0,0.983035577828007,0.7415940224159403,0.0,0.0],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Depression\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('c5f7ad3d-e342-44e4-8910-3dc3df3edad9');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "name_cluster=['Trauma', 'Sadness, stress and memory','Trauma and memory','Memory','Depression and associated symptoms', 'Depression']\n", + "categories = ['processing cost','mechanical properties','chemical stability',\n", + " 'thermal stability', 'device integration']\n", + "titleGraph = []\n", + "for i in range(len(d)):\n", + " #titleGraph.append('DTCluster ' + str(i))\n", + " titleGraph.append('DTCluster: ' + name_cluster[i])\n", + "def radar_fig(i):\n", + " fig = go.Figure()\n", + "\n", + " fig.add_trace(go.Scatterpolar(\n", + " r=radar[i],\n", + " theta=titre,\n", + " fill='toself',\n", + " name='H'\n", + " ))\n", + " fig.add_trace(go.Scatterpolar(\n", + " r=radar2[i],\n", + " theta=titre,\n", + " fill='toself',\n", + " name='Class psy'\n", + " #text = 'r'\n", + " ))\n", + "\n", + " fig.update_layout(\n", + " polar=dict(\n", + " radialaxis=dict(\n", + " visible=True\n", + " #range=[0, 5]\n", + " )),\n", + " showlegend=False\n", + " )\n", + " fig.update_layout(title_text = titleGraph[i])\n", + " fig.update_layout(\n", + " font=dict(\n", + " #family=\"Courier New, monospace\",\n", + " size=18, # Set the font size here\n", + " #color=\"RebeccaPurple\"\n", + " )\n", + ")\n", + " \n", + " \n", + " fig.show()\n", + " fig.write_image(path+\"radar\"+str(i)+\"_fig.png\")\n", + " \n", + "for i in range(len(d)):\n", + " radar_fig(i)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "20ff4dca", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "86ca3232", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/code/Experiments.ipynb b/code/Experiments.ipynb new file mode 100644 index 0000000000000000000000000000000000000000..e3dbea9bd05a1691c7772e4526472b8ae7b2670f --- /dev/null +++ b/code/Experiments.ipynb @@ -0,0 +1,6493 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 2, + "id": "c0bd6c14", + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-09T15:13:01.198176543Z", + "start_time": "2024-02-09T15:13:01.181566445Z" + } + }, + "outputs": [], + "source": [ + "path = \"./\"\n", + "datasets = ['assist09', 'assist17', 'algebra','math1', 'math2']" + ] + }, + { + "cell_type": "markdown", + "id": "1da92e4f", + "metadata": {}, + "source": [ + "## Table 2: compute ACC, AUC and RMSE" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "61c53cb1", + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-09T15:52:40.330565696Z", + "start_time": "2024-02-09T15:52:39.983890951Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "python: can't open file '/home/arthurb/Téléchargements/code/./script.py': [Errno 2] No such file or directory\r\n" + ] + } + ], + "source": [ + "cmd = 'cd cv/data/bpr_directory && python ./script.py '\n", + "!{cmd}" + ] + }, + { + "cell_type": "markdown", + "id": "6b1c6b4d", + "metadata": {}, + "source": [ + "## Table 3: compute DOA" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "790a43dd", + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-09T15:55:06.200772904Z", + "start_time": "2024-02-09T15:55:05.836758519Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/home/arthurb/Téléchargements/code\n", + "Traceback (most recent call last):\r\n", + " File \"/home/arthurb/Téléchargements/code/./binary_model/compute_doa.py\", line 11, in <module>\r\n", + " doa = compute_doa(data)\r\n", + " ^^^^^^^^^^^^^^^^^\r\n", + " File \"/home/arthurb/Téléchargements/code/binary_model/utils.py\", line 161, in compute_doa\r\n", + " F = fromDFtoArray(filename+\"_embed.csv\",False,'f')\r\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n", + " File \"/home/arthurb/Téléchargements/code/binary_model/utils.py\", line 7, in fromDFtoArray\r\n", + " df = pd.read_csv(name,index_col=None, header=None)\r\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n", + " File \"/home/arthurb/anaconda3/envs/cdbpr-env/lib/python3.11/site-packages/pandas/io/parsers/readers.py\", line 948, in read_csv\r\n", + " return _read(filepath_or_buffer, kwds)\r\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n", + " File \"/home/arthurb/anaconda3/envs/cdbpr-env/lib/python3.11/site-packages/pandas/io/parsers/readers.py\", line 611, in _read\r\n", + " parser = TextFileReader(filepath_or_buffer, **kwds)\r\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n", + " File \"/home/arthurb/anaconda3/envs/cdbpr-env/lib/python3.11/site-packages/pandas/io/parsers/readers.py\", line 1448, in __init__\r\n", + " self._engine = self._make_engine(f, self.engine)\r\n", + " ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\r\n", + " File \"/home/arthurb/anaconda3/envs/cdbpr-env/lib/python3.11/site-packages/pandas/io/parsers/readers.py\", line 1705, in _make_engine\r\n", + " self.handles = get_handle(\r\n", + " ^^^^^^^^^^^\r\n", + " File \"/home/arthurb/anaconda3/envs/cdbpr-env/lib/python3.11/site-packages/pandas/io/common.py\", line 863, in get_handle\r\n", + " handle = open(\r\n", + " ^^^^^\r\n", + "FileNotFoundError: [Errno 2] No such file or directory: './cv/data/math1/train_embed.csv'\r\n" + ] + } + ], + "source": [ + "i = 3\n", + "'''\n", + "cmd = 'cd '+path+'binary_model/'\n", + "cmd = 'ls'\n", + "os.system(cmd)\n", + "print(os.getcwd())\n", + "os.system(cmd)\n", + "'''\n", + "print(os.getcwd())\n", + "cmd = 'python ./binary_model/compute_doa.py --data '+path+'cv/data/'+datasets[i]+'/train' \n", + "!{cmd}\n", + "\n", + "#doa = compute_doa(path+datasets[i]+'/train_embed.csv')\n", + "#print(\"DOA:\", doa)" + ] + }, + { + "cell_type": "markdown", + "id": "8d5630b5", + "metadata": {}, + "source": [ + "## Table 4: ablation --" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "a9e32954", + "metadata": { + "ExecuteTime": { + "end_time": "2024-02-09T09:53:25.263346701Z", + "start_time": "2024-02-09T09:44:53.793212303Z" + } + }, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "NB KC 16\n", + "NB Users 3911\n", + "NB (question-answer) in the data 20\n", + "Epoch 1, Loss: 1.3062841892242432\n", + "Epoch 11, Loss: 1.1247220039367676\n", + "DOA: 0.7652701270601657\n", + "RMSE 0.4360310956805937\n", + "AUC: 0.7970107606624546\n", + "ACC: 0.7257046201050292\n", + "Prec: 0.6802376862726893\n", + "NB KC 16\n", + "NB Users 3911\n", + "NB (question-answer) in the data 20\n", + "Epoch 1, Loss: 0.5947433114051819\n", + "Epoch 11, Loss: 0.5205552577972412\n", + "DOA: 0.5024588330075522\n", + "RMSE 0.42992933328684846\n", + "AUC: 0.804911997323218\n", + "ACC: 0.7328639144031627\n", + "Prec: 0.6869165325362152\n", + "NB KC 16\n", + "NB Users 3911\n", + "NB (question-answer) in the data 20\n", + "Epoch 1, Loss: 1.3599088191986084\n", + "Epoch 11, Loss: 1.124066948890686\n", + "DOA: 0.8408919219715537\n", + "RMSE 0.43537672319707393\n", + "AUC: 0.7967248771358717\n", + "ACC: 0.727651790806994\n", + "Prec: 0.6844450698939863\n", + "NB KC 16\n", + "NB Users 3911\n", + "NB (question-answer) in the data 20\n", + "Epoch 1, Loss: 0.694855809211731\n", + "Epoch 11, Loss: 0.5210095643997192\n", + "DOA: 0.501724768179482\n", + "RMSE 0.4295033431283873\n", + "AUC: 0.8059136173588548\n", + "ACC: 0.7314281218653502\n", + "Prec: 0.6849403122130395\n" + ] + } + ], + "source": [ + "# 0 no ablation, 1 ablation L2, 2 ablation init, 3 both\n", + "for abla in range(4):\n", + " for i in range(5):\n", + " cmd = 'python ./binary_model/main.py --dataTrain '+ path+'data/'+datasets[i]+'/train.csv --dataTest '+path+'data/'+datasets[i]+'/test.csv --ablation '+str(abla)\n", + " os.system(cmd)" + ] + }, + { + "cell_type": "markdown", + "id": "c5960372", + "metadata": {}, + "source": [ + "## Table 6 --" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "e46ff5d4", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "avg values 0.8171224732461354 0.7558291282588128 0.7514963299272839 0.6211694246268313\n", + "0\n", + "avg values 0.8217752573238839 0.8345388354351844 0.8288387755136633 0.5900735950578464\n" + ] + }, + { + "data": { + "text/plain": [ + "0" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# pour all\n", + "cmd = 'python ./nary_model/main_nary_cv.py --data '+ path+'data/covid/initsurvey.csv' \n", + "print(os.system(cmd))\n", + "cmd = 'python ./nary_model/main_nary_cv.py --data '+path+'data/covid/psysurvey.csv' \n", + "print(os.system(cmd))" + ] + }, + { + "cell_type": "markdown", + "id": "e586f5cb", + "metadata": {}, + "source": [ + "## Figure 1 and Table 7" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "4c4b8106", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/home/celine/travail.svn/recherche/phd_subject/Arthur/code/other/dt/train_embed.csv\n", + "| --- feature_3 <= 0.55\n", + "| | --- feature_9 <= -0.07\n", + "| | | --- cluster 0 (151)\n", + "| | --- feature_9 > -0.07\n", + "| | | --- feature_15 <= -0.30\n", + "| | | | --- cluster 1 (111)\n", + "| | | --- feature_15 > -0.30\n", + "| | | | --- feature_10 <= -0.25\n", + "| | | | | --- cluster 2 (57)\n", + "| | | | --- feature_10 > -0.25\n", + "| | | | | --- cluster 3 (415)\n", + "| --- feature_3 > 0.55\n", + "| | --- feature_8 <= 0.35\n", + "| | | --- cluster 4 (110)\n", + "| | --- feature_8 > 0.35\n", + "| | | --- cluster 5 (73)\n", + "(array([ 7, 14, 20, 22, 23, 39, 44, 53, 56, 57, 62, 71, 95,\n", + " 100, 106, 119, 122, 133, 141, 142, 152, 154, 156, 160, 179, 182,\n", + " 183, 187, 188, 191, 194, 198, 199, 201, 203, 207, 208, 214, 219,\n", + " 221, 224, 233, 235, 241, 243, 246, 252, 259, 261, 265, 266, 267,\n", + " 271, 282, 289, 293, 299, 302, 303, 304, 307, 308, 309, 310, 312,\n", + " 313, 325, 327, 351, 358, 385, 390, 393, 396, 406, 409, 415, 419,\n", + " 431, 435, 445, 447, 448, 450, 468, 479, 486, 488, 490, 494, 510,\n", + " 516, 517, 525, 546, 547, 550, 551, 553, 557, 559, 565, 567, 578,\n", + " 580, 597, 600, 604, 608, 611, 612, 615, 640, 641, 644, 656, 662,\n", + " 677, 679, 682, 686, 688, 690, 703, 709, 714, 723, 732, 745, 752,\n", + " 776, 782, 785, 786, 787, 789, 792, 798, 810, 829, 839, 842, 844,\n", + " 847, 854, 866, 869, 870, 881, 883, 900]),)\n", + "(array([ 4, 8, 15, 28, 40, 41, 42, 50, 59, 84, 85, 88, 89,\n", + " 109, 112, 123, 138, 145, 146, 150, 157, 158, 166, 181, 186, 190,\n", + " 232, 234, 242, 247, 248, 249, 260, 272, 274, 277, 281, 296, 301,\n", + " 338, 339, 345, 352, 359, 365, 388, 403, 404, 412, 418, 441, 443,\n", + " 461, 464, 478, 481, 489, 491, 495, 497, 500, 508, 524, 531, 569,\n", + " 576, 587, 589, 609, 610, 613, 617, 620, 622, 627, 637, 642, 647,\n", + " 673, 678, 711, 712, 715, 720, 726, 729, 730, 758, 759, 760, 788,\n", + " 797, 811, 815, 819, 820, 821, 830, 831, 840, 845, 849, 862, 878,\n", + " 880, 884, 891, 895, 898, 904, 906]),)\n", + "(array([ 58, 75, 80, 103, 114, 161, 205, 210, 211, 226, 227, 236, 244,\n", + " 257, 258, 328, 347, 356, 357, 372, 380, 391, 399, 400, 402, 410,\n", + " 455, 457, 526, 558, 583, 606, 614, 616, 618, 624, 643, 645, 660,\n", + " 664, 676, 691, 717, 738, 755, 756, 763, 771, 796, 812, 817, 832,\n", + " 850, 861, 868, 882, 912]),)\n", + "(array([ 0, 2, 3, 5, 6, 9, 10, 11, 12, 17, 18, 24, 29,\n", + " 30, 31, 32, 33, 34, 35, 36, 38, 43, 46, 48, 52, 54,\n", + " 55, 63, 64, 66, 68, 69, 72, 74, 76, 77, 78, 79, 81,\n", + " 82, 87, 90, 91, 92, 93, 94, 98, 99, 101, 102, 104, 105,\n", + " 107, 108, 110, 111, 115, 117, 120, 121, 124, 126, 127, 129, 130,\n", + " 131, 132, 134, 135, 136, 137, 139, 143, 144, 148, 149, 151, 155,\n", + " 163, 167, 171, 172, 173, 175, 176, 177, 178, 184, 189, 192, 193,\n", + " 195, 196, 197, 200, 202, 204, 206, 215, 218, 222, 223, 225, 229,\n", + " 230, 237, 238, 240, 251, 253, 254, 256, 262, 263, 264, 268, 273,\n", + " 278, 279, 280, 283, 284, 287, 288, 290, 291, 292, 294, 295, 305,\n", + " 306, 315, 317, 318, 319, 320, 321, 322, 323, 324, 330, 331, 332,\n", + " 333, 334, 336, 337, 340, 342, 343, 346, 350, 353, 354, 355, 360,\n", + " 361, 363, 364, 366, 367, 368, 370, 371, 373, 374, 376, 382, 383,\n", + " 386, 389, 392, 394, 397, 401, 407, 411, 413, 414, 416, 417, 423,\n", + " 424, 425, 426, 427, 428, 429, 432, 434, 437, 438, 440, 442, 444,\n", + " 446, 449, 453, 454, 456, 458, 459, 462, 467, 469, 471, 472, 473,\n", + " 475, 477, 480, 482, 483, 484, 485, 492, 493, 496, 498, 499, 502,\n", + " 504, 506, 507, 509, 513, 515, 518, 519, 520, 521, 522, 523, 527,\n", + " 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 542,\n", + " 543, 544, 545, 549, 552, 556, 560, 561, 562, 563, 566, 570, 571,\n", + " 573, 574, 575, 577, 581, 582, 585, 588, 591, 592, 593, 594, 595,\n", + " 596, 598, 599, 601, 602, 603, 605, 607, 619, 623, 625, 626, 628,\n", + " 629, 630, 631, 632, 635, 638, 639, 648, 649, 650, 651, 652, 654,\n", + " 657, 663, 667, 668, 669, 670, 672, 675, 681, 683, 684, 692, 693,\n", + " 694, 695, 697, 698, 700, 704, 705, 706, 707, 708, 710, 713, 716,\n", + " 718, 719, 722, 724, 727, 728, 731, 733, 734, 735, 736, 737, 740,\n", + " 741, 744, 747, 748, 749, 750, 751, 754, 757, 762, 764, 765, 767,\n", + " 768, 770, 772, 773, 774, 775, 777, 778, 779, 780, 781, 783, 791,\n", + " 793, 795, 799, 800, 801, 802, 803, 804, 806, 808, 816, 818, 822,\n", + " 823, 824, 825, 826, 833, 836, 837, 838, 841, 846, 848, 851, 852,\n", + " 856, 857, 864, 873, 875, 877, 885, 886, 887, 888, 889, 890, 893,\n", + " 894, 896, 897, 899, 901, 902, 903, 905, 907, 909, 911, 914]),)\n", + "(array([ 13, 16, 19, 27, 37, 47, 49, 60, 61, 65, 67, 70, 73,\n", + " 83, 86, 125, 128, 140, 147, 153, 159, 162, 165, 168, 170, 185,\n", + " 209, 228, 239, 245, 250, 269, 270, 275, 285, 300, 311, 314, 316,\n", + " 329, 341, 348, 349, 362, 369, 375, 377, 378, 379, 384, 395, 398,\n", + " 408, 433, 439, 452, 465, 466, 470, 487, 501, 503, 514, 540, 548,\n", + " 554, 555, 564, 568, 572, 584, 590, 634, 653, 655, 658, 659, 661,\n", + " 665, 666, 671, 674, 696, 699, 702, 721, 739, 742, 746, 753, 769,\n", + " 784, 790, 794, 809, 813, 827, 828, 843, 853, 855, 858, 859, 860,\n", + " 865, 867, 874, 908, 915, 916]),)\n", + "\n", + "Purity: 0.8255179934569248\n", + "0\n", + "/home/celine/travail.svn/recherche/phd_subject/Arthur/code/other/dt/train_embed.csv\n", + "| --- feature_3 <= 0.55\n", + "| | --- feature_9 <= -0.07\n", + "| | | --- cluster 0 (151)\n", + "| | --- feature_9 > -0.07\n", + "| | | --- feature_15 <= -0.30\n", + "| | | | --- cluster 1 (111)\n", + "| | | --- feature_15 > -0.30\n", + "| | | | --- feature_10 <= -0.25\n", + "| | | | | --- cluster 2 (57)\n", + "| | | | --- feature_10 > -0.25\n", + "| | | | | --- cluster 3 (415)\n", + "| --- feature_3 > 0.55\n", + "| | --- feature_8 <= 0.35\n", + "| | | --- cluster 4 (110)\n", + "| | --- feature_8 > 0.35\n", + "| | | --- cluster 5 (73)\n", + "(array([ 7, 14, 20, 22, 23, 39, 44, 53, 56, 57, 62, 71, 95,\n", + " 100, 106, 119, 122, 133, 141, 142, 152, 154, 156, 160, 179, 182,\n", + " 183, 187, 188, 191, 194, 198, 199, 201, 203, 207, 208, 214, 219,\n", + " 221, 224, 233, 235, 241, 243, 246, 252, 259, 261, 265, 266, 267,\n", + " 271, 282, 289, 293, 299, 302, 303, 304, 307, 308, 309, 310, 312,\n", + " 313, 325, 327, 351, 358, 385, 390, 393, 396, 406, 409, 415, 419,\n", + " 431, 435, 445, 447, 448, 450, 468, 479, 486, 488, 490, 494, 510,\n", + " 516, 517, 525, 546, 547, 550, 551, 553, 557, 559, 565, 567, 578,\n", + " 580, 597, 600, 604, 608, 611, 612, 615, 640, 641, 644, 656, 662,\n", + " 677, 679, 682, 686, 688, 690, 703, 709, 714, 723, 732, 745, 752,\n", + " 776, 782, 785, 786, 787, 789, 792, 798, 810, 829, 839, 842, 844,\n", + " 847, 854, 866, 869, 870, 881, 883, 900]),)\n", + "(array([ 4, 8, 15, 28, 40, 41, 42, 50, 59, 84, 85, 88, 89,\n", + " 109, 112, 123, 138, 145, 146, 150, 157, 158, 166, 181, 186, 190,\n", + " 232, 234, 242, 247, 248, 249, 260, 272, 274, 277, 281, 296, 301,\n", + " 338, 339, 345, 352, 359, 365, 388, 403, 404, 412, 418, 441, 443,\n", + " 461, 464, 478, 481, 489, 491, 495, 497, 500, 508, 524, 531, 569,\n", + " 576, 587, 589, 609, 610, 613, 617, 620, 622, 627, 637, 642, 647,\n", + " 673, 678, 711, 712, 715, 720, 726, 729, 730, 758, 759, 760, 788,\n", + " 797, 811, 815, 819, 820, 821, 830, 831, 840, 845, 849, 862, 878,\n", + " 880, 884, 891, 895, 898, 904, 906]),)\n", + "(array([ 58, 75, 80, 103, 114, 161, 205, 210, 211, 226, 227, 236, 244,\n", + " 257, 258, 328, 347, 356, 357, 372, 380, 391, 399, 400, 402, 410,\n", + " 455, 457, 526, 558, 583, 606, 614, 616, 618, 624, 643, 645, 660,\n", + " 664, 676, 691, 717, 738, 755, 756, 763, 771, 796, 812, 817, 832,\n", + " 850, 861, 868, 882, 912]),)\n", + "(array([ 0, 2, 3, 5, 6, 9, 10, 11, 12, 17, 18, 24, 29,\n", + " 30, 31, 32, 33, 34, 35, 36, 38, 43, 46, 48, 52, 54,\n", + " 55, 63, 64, 66, 68, 69, 72, 74, 76, 77, 78, 79, 81,\n", + " 82, 87, 90, 91, 92, 93, 94, 98, 99, 101, 102, 104, 105,\n", + " 107, 108, 110, 111, 115, 117, 120, 121, 124, 126, 127, 129, 130,\n", + " 131, 132, 134, 135, 136, 137, 139, 143, 144, 148, 149, 151, 155,\n", + " 163, 167, 171, 172, 173, 175, 176, 177, 178, 184, 189, 192, 193,\n", + " 195, 196, 197, 200, 202, 204, 206, 215, 218, 222, 223, 225, 229,\n", + " 230, 237, 238, 240, 251, 253, 254, 256, 262, 263, 264, 268, 273,\n", + " 278, 279, 280, 283, 284, 287, 288, 290, 291, 292, 294, 295, 305,\n", + " 306, 315, 317, 318, 319, 320, 321, 322, 323, 324, 330, 331, 332,\n", + " 333, 334, 336, 337, 340, 342, 343, 346, 350, 353, 354, 355, 360,\n", + " 361, 363, 364, 366, 367, 368, 370, 371, 373, 374, 376, 382, 383,\n", + " 386, 389, 392, 394, 397, 401, 407, 411, 413, 414, 416, 417, 423,\n", + " 424, 425, 426, 427, 428, 429, 432, 434, 437, 438, 440, 442, 444,\n", + " 446, 449, 453, 454, 456, 458, 459, 462, 467, 469, 471, 472, 473,\n", + " 475, 477, 480, 482, 483, 484, 485, 492, 493, 496, 498, 499, 502,\n", + " 504, 506, 507, 509, 513, 515, 518, 519, 520, 521, 522, 523, 527,\n", + " 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 542,\n", + " 543, 544, 545, 549, 552, 556, 560, 561, 562, 563, 566, 570, 571,\n", + " 573, 574, 575, 577, 581, 582, 585, 588, 591, 592, 593, 594, 595,\n", + " 596, 598, 599, 601, 602, 603, 605, 607, 619, 623, 625, 626, 628,\n", + " 629, 630, 631, 632, 635, 638, 639, 648, 649, 650, 651, 652, 654,\n", + " 657, 663, 667, 668, 669, 670, 672, 675, 681, 683, 684, 692, 693,\n", + " 694, 695, 697, 698, 700, 704, 705, 706, 707, 708, 710, 713, 716,\n", + " 718, 719, 722, 724, 727, 728, 731, 733, 734, 735, 736, 737, 740,\n", + " 741, 744, 747, 748, 749, 750, 751, 754, 757, 762, 764, 765, 767,\n", + " 768, 770, 772, 773, 774, 775, 777, 778, 779, 780, 781, 783, 791,\n", + " 793, 795, 799, 800, 801, 802, 803, 804, 806, 808, 816, 818, 822,\n", + " 823, 824, 825, 826, 833, 836, 837, 838, 841, 846, 848, 851, 852,\n", + " 856, 857, 864, 873, 875, 877, 885, 886, 887, 888, 889, 890, 893,\n", + " 894, 896, 897, 899, 901, 902, 903, 905, 907, 909, 911, 914]),)\n", + "(array([ 13, 16, 19, 27, 37, 47, 49, 60, 61, 65, 67, 70, 73,\n", + " 83, 86, 125, 128, 140, 147, 153, 159, 162, 165, 168, 170, 185,\n", + " 209, 228, 239, 245, 250, 269, 270, 275, 285, 300, 311, 314, 316,\n", + " 329, 341, 348, 349, 362, 369, 375, 377, 378, 379, 384, 395, 398,\n", + " 408, 433, 439, 452, 465, 466, 470, 487, 501, 503, 514, 540, 548,\n", + " 554, 555, 564, 568, 572, 584, 590, 634, 653, 655, 658, 659, 661,\n", + " 665, 666, 671, 674, 696, 699, 702, 721, 739, 742, 746, 753, 769,\n", + " 784, 790, 794, 809, 813, 827, 828, 843, 853, 855, 858, 859, 860,\n", + " 865, 867, 874, 908, 915, 916]),)\n", + "\n", + "Purity: 0.5986913849509269\n" + ] + }, + { + "name": "stdout", + "output_type": "stream", + "text": [ + "0\n" + ] + } + ], + "source": [ + "cmd = 'python ./other/decision_tree.py --lower 0'\n", + "print(os.system(cmd))\n", + "cmd = 'python ./other/decision_tree.py --lower 1'\n", + "print(os.system(cmd))" + ] + }, + { + "cell_type": "markdown", + "id": "f39f6de3", + "metadata": {}, + "source": [ + "## Figure 2: radar plots --" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "ceee0ec4", + "metadata": {}, + "outputs": [], + "source": [ + "def fromDFtoArray(name, vector, type_value):\n", + " # Read dataframe and generate a matrix or \n", + " # a vector of appropriate type\n", + " df = pd.read_csv(name,index_col=None, header=None)\n", + " cols = df.columns\n", + " if(type_value == \"f\"): \n", + " for col in cols:\n", + " df[col] = df[col].astype(float)\n", + " if(type_value == 'i'):\n", + " for col in cols:\n", + " df[col] = df[col].astype(int)\n", + " r = df.values\n", + " if(vector):\n", + " r = r.reshape(-1,)\n", + " return r" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "801e2ab1", + "metadata": {}, + "outputs": [], + "source": [ + "from sklearn.preprocessing import MinMaxScaler\n", + "import plotly.graph_objects as go\n", + "import pandas as pd\n", + "import numpy as np\n", + "import csv\n", + "from matplotlib import gridspec\n", + "import seaborn as sns\n", + "import matplotlib.pyplot as plt" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "5a8b764b", + "metadata": {}, + "outputs": [], + "source": [ + "H_users = fromDFtoArray(path+ \"other/dt/train_embed.csv\",False,'f') \n", + "classPsy = fromDFtoArray(path+ \"other/dt/train_user_quest_label.csv\",False,'f') " + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "33643887", + "metadata": {}, + "outputs": [], + "source": [ + "d = [151,111,57,415,110,73]\n", + "g = [[7, 14, 20, 22, 23, 39, 44, 53, 56, 57, 62, 71, 95, 100, 106, 119, 122, 133, 141, 142, 152, 154, 156, 160, 179, 182, 183, 187, 188, 191, 194, 198, 199, 201, 203, 207, 208, 214, 219, 221, 224, 233, 235, 241, 243, 246, 252, 259, 261, 265, 266, 267, 271, 282, 289, 293, 299, 302, 303, 304, 307, 308, 309, 310, 312, 313, 325, 327, 351, 358, 385, 390, 393, 396, 406, 409, 415, 419, 431, 435, 445, 447, 448, 450, 468, 479, 486, 488, 490, 494, 510, 516, 517, 525, 546, 547, 550, 551, 553, 557, 559, 565, 567, 578, 580, 597, 600, 604, 608, 611, 612, 615, 640, 641, 644, 656, 662, 677, 679, 682, 686, 688, 690, 703, 709, 714, 723, 732, 745, 752, 776, 782, 785, 786, 787, 789, 792, 798, 810, 829, 839, 842, 844, 847, 854, 866, 869, 870, 881, 883, 900]\n", + " , [4, 8, 15, 28, 40, 41, 42, 50, 59, 84, 85, 88, 89, 109, 112, 123, 138, 145, 146, 150, 157, 158, 166, 181, 186, 190, 232, 234, 242, 247, 248, 249, 260, 272, 274, 277, 281, 296, 301, 338, 339, 345, 352, 359, 365, 388, 403, 404, 412, 418, 441, 443, 461, 464, 478, 481, 489, 491, 495, 497, 500, 508, 524, 531, 569, 576, 587, 589, 609, 610, 613, 617, 620, 622, 627, 637, 642, 647, 673, 678, 711, 712, 715, 720, 726, 729, 730, 758, 759, 760, 788, 797, 811, 815, 819, 820, 821, 830, 831, 840, 845, 849, 862, 878, 880, 884, 891, 895, 898, 904, 906 ]\n", + ",[58, 75, 80, 103, 114, 161, 205, 210, 211, 226, 227, 236, 244, 257, 258, 328, 347, 356, 357, 372, 380, 391, 399, 400, 402, 410, 455, 457, 526, 558, 583, 606, 614, 616, 618, 624, 643, 645, 660, 664, 676, 691, 717, 738, 755, 756, 763, 771, 796, 812, 817, 832, 850, 861, 868, 882, 912]\n", + " ,[0, 2, 3, 5, 6, 9, 10, 11, 12, 17, 18, 24, 29, 30, 31, 32, 33, 34, 35, 36, 38, 43, 46, 48, 52, 54, 55, 63, 64, 66, 68, 69, 72, 74, 76, 77, 78, 79, 81, 82, 87, 90, 91, 92, 93, 94, 98, 99, 101, 102, 104, 105, 107, 108, 110, 111, 115, 117, 120, 121, 124, 126, 127, 129, 130, 131, 132, 134, 135, 136, 137, 139, 143, 144, 148, 149, 151, 155, 163, 167, 171, 172, 173, 175, 176, 177, 178, 184, 189, 192, 193, 195, 196, 197, 200, 202, 204, 206, 215, 218, 222, 223, 225, 229, 230, 237, 238, 240, 251, 253, 254, 256, 262, 263, 264, 268, 273, 278, 279, 280, 283, 284, 287, 288, 290, 291, 292, 294, 295, 305, 306, 315, 317, 318, 319, 320, 321, 322, 323, 324, 330, 331, 332, 333, 334, 336, 337, 340, 342, 343, 346, 350, 353, 354, 355, 360, 361, 363, 364, 366, 367, 368, 370, 371, 373, 374, 376, 382, 383, 386, 389, 392, 394, 397, 401, 407, 411, 413, 414, 416, 417, 423, 424, 425, 426, 427, 428, 429, 432, 434, 437, 438, 440, 442, 444, 446, 449, 453, 454, 456, 458, 459, 462, 467, 469, 471, 472, 473, 475, 477, 480, 482, 483, 484, 485, 492, 493, 496, 498, 499, 502, 504, 506, 507, 509, 513, 515, 518, 519, 520, 521, 522, 523, 527, 528, 529, 530, 532, 533, 534, 535, 536, 537, 538, 539, 541, 542, 543, 544, 545, 549, 552, 556, 560, 561, 562, 563, 566, 570, 571, 573, 574, 575, 577, 581, 582, 585, 588, 591, 592, 593, 594, 595, 596, 598, 599, 601, 602, 603, 605, 607, 619, 623, 625, 626, 628, 629, 630, 631, 632, 635, 638, 639, 648, 649, 650, 651, 652, 654, 657, 663, 667, 668, 669, 670, 672, 675, 681, 683, 684, 692, 693, 694, 695, 697, 698, 700, 704, 705, 706, 707, 708, 710, 713, 716, 718, 719, 722, 724, 727, 728, 731, 733, 734, 735, 736, 737, 740, 741, 744, 747, 748, 749, 750, 751, 754, 757, 762, 764, 765, 767, 768, 770, 772, 773, 774, 775, 777, 778, 779, 780, 781, 783, 791, 793, 795, 799, 800, 801, 802, 803, 804, 806, 808, 816, 818, 822, 823, 824, 825, 826, 833, 836, 837, 838, 841, 846, 848, 851, 852, 856, 857, 864, 873, 875, 877, 885, 886, 887, 888, 889, 890, 893, 894, 896, 897, 899, 901, 902, 903, 905, 907, 909, 911, 914] \n", + ",[13, 16, 19, 27, 37, 47, 49, 60, 61, 65, 67, 70, 73, 83, 86, 125, 128, 140, 147, 153, 159, 162, 165, 168, 170, 185, 209, 228, 239, 245, 250, 269, 270, 275, 285, 300, 311, 314, 316, 329, 341, 348, 349, 362, 369, 375, 377, 378, 379, 384, 395, 398, 408, 433, 439, 452, 465, 466, 470, 487, 501, 503, 514, 540, 548, 554, 555, 564, 568, 572, 584, 590, 634, 653, 655, 658, 659, 661, 665, 666, 671, 674, 696, 699, 702, 721, 739, 742, 746, 753, 769, 784, 790, 794, 809, 813, 827, 828, 843, 853, 855, 858, 859, 860, 865, 867, 874, 908, 915, 916]\n", + ",[1, 21, 25, 26, 45, 51, 96, 97, 113, 116, 118, 164, 169, 174, 180, 212, 213, 216, 217, 220, 231, 255, 276, 286, 297, 298, 326, 335, 344, 381, 387, 405, 420, 421, 422, 430, 436, 451, 460, 463, 474, 476, 505, 511, 512, 579, 586, 621, 633, 636, 646, 680, 685, 687, 689, 701, 725, 743, 761, 766, 805, 807, 814, 834, 835, 863, 871, 872, 876, 879, 892, 910, 913] \n", + "]" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "d190bd89", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "17\n", + "(917, 17)\n", + "[array([-0.37748344, -0.50331126, -0.36423841, -0.99337748, -0.39072848,\n", + " -0.64238411, 0.16556291, 0.33774834, -0.26490066, -0.99337748,\n", + " 0.36423841, -0.53642384, 0.00662252, -0.41721854, -0.68874172,\n", + " 0.52317881, -0.65562914]), array([-0.4954955 , -0.62162162, -0.53153153, -1. , -0.69369369,\n", + " -0.51351351, -0.2972973 , -0.36936937, -0.47747748, 1. ,\n", + " 0.20720721, -0.58558559, 0.18918919, -0.58558559, -0.45945946,\n", + " -1. , -0.53153153]), array([-0.43859649, -0.68421053, -0.47368421, -1. , -0.52631579,\n", + " -0.61403509, -0.05263158, 0.29824561, -0.33333333, 1. ,\n", + " -0.98245614, -0.40350877, 0.05263158, -0.29824561, -0.57894737,\n", + " 1. , -0.61403509]), array([-0.70843373, -0.56144578, -0.62891566, -1. , -0.68674699,\n", + " -0.83614458, 0.2 , 0.4 , -0.56626506, 1. ,\n", + " 1. , -0.5686747 , 0.36385542, -0.68433735, -0.5373494 ,\n", + " 1. , -0.58795181]), array([-0.72727273, -0.76363636, -0.72727273, 1. , -0.74545455,\n", + " -0.07272727, -0.19090909, -0.01818182, -1. , 0.63636364,\n", + " 0.65454545, -0.78181818, -0.03636364, -0.72727273, -0.70909091,\n", + " 0.43636364, -0.58181818]), array([-0.53424658, -0.67123288, -0.57534247, 1. , -0.23287671,\n", + " -0.08219178, -0.31506849, 0.06849315, 1. , 0.64383562,\n", + " 0.56164384, -0.80821918, 0.08219178, -0.56164384, -0.83561644,\n", + " 0.63013699, -0.67123288])]\n" + ] + } + ], + "source": [ + "titre = ['agency', 'anxiety','avoiding', 'depression','ext. control', 'fatigue', 'hyper vigilance',\n", + " 'trauma','int. control', 'memory', 'problem focused', 'quality of life',\n", + " 'sadness', 'self efficacy','sleep','social','stress']\n", + "dim = len(titre)\n", + "seuils = [ 0.38646466, 0.13056517 , 0.16311094 , 0.5522181 , 0.4068393 , 0.4961518,\n", + " -0.12576449, -0.16419357 , 0.34581536, -0.06974197, -0.25050393 , 0.17414908,\n", + " -0.09691429, 0.39290804, 0.37336868, -0.30328006 , 0.23517847]\n", + "print(len(seuils))\n", + "\n", + "indices = []\n", + "for i in range(17):\n", + " indices.append([i])\n", + "print(H_users.shape)\n", + "radar = []\n", + "\n", + "for k in range(len(g)):\n", + " rows = H_users[g[k]]\n", + " v = np.full(dim, 0.0)\n", + " for i in range(len(rows)):\n", + " #print(len(rows[i]))\n", + " for j in range(len(rows[i])):\n", + " \n", + " if(rows[i][j] > seuils[j]):\n", + " v[j] = v[j] + 1 #rows[i][j]\n", + " if(rows[i][j] < seuils[j]):\n", + " v[j] = v[j] - 1#+ rows[i][j]\n", + " v = v / len(rows)\n", + " radar.append(v)\n", + "print(radar)\n", + "\n", + "scaler = MinMaxScaler()\n", + "radar = scaler.fit_transform(np.array(radar))" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "34d43f1e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "(917, 17)\n", + "[array([-0.28476821, 0.01986755, 0. , 0.14569536, -0.23178808,\n", + " 0.2384106 , 0.01324503, 0.07284768, -0.2384106 , -0.30463576,\n", + " 0. , -0.06622517, -0.02649007, -0.15231788, -0.02649007,\n", + " 0. , 0.04635762]), array([-0.24324324, 0.07207207, 0. , 0.04504505, -0.0990991 ,\n", + " 0.25225225, 0.02702703, 0.05405405, -0.23423423, -0.02702703,\n", + " 0. , -0.11711712, 0.10810811, -0.17117117, 0. ,\n", + " 0. , 0.18018018]), array([-0.31578947, 0. , 0. , 0.07017544, -0.24561404,\n", + " 0.1754386 , -0.03508772, 0.07017544, -0.22807018, -0.03508772,\n", + " 0. , -0.12280702, 0.01754386, -0.28070175, -0.15789474,\n", + " 0. , 0.10526316]), array([-0.22650602, -0.01686747, 0. , 0.1060241 , -0.14698795,\n", + " 0.15421687, -0.02650602, -0.01445783, -0.18795181, -0.01445783,\n", + " 0. , -0.09156627, 0.00240964, -0.1060241 , -0.21204819,\n", + " 0. , 0.04096386]), array([-0.12727273, 0.00909091, 0. , 0.78181818, -0.13636364,\n", + " 0.47272727, 0. , 0.00909091, -0.10909091, -0.04545455,\n", + " 0. , -0.04545455, 0.00909091, -0.00909091, -0.05454545,\n", + " 0. , 0.00909091]), array([-0.26027397, -0.04109589, 0. , 0.80821918, -0.19178082,\n", + " 0.32876712, 0. , -0.01369863, -0.26027397, -0.12328767,\n", + " 0. , -0.02739726, -0.05479452, -0.01369863, -0.05479452,\n", + " 0. , -0.01369863])]\n", + "[[0.16455441 0.53869875 0. 0.13188382 0.0943655 0.26433588\n", + " 0.77812042 1. 0.14461525 0. 0. 0.59304052\n", + " 0.17375075 0.4726758 0.87507526 0. 0.30976178]\n", + " [0.38482645 1. 0. 0. 1. 0.30779335\n", + " 1. 0.78473721 0.17223979 0.95668452 0. 0.05963646\n", + " 1. 0.40326292 1. 0. 1. ]\n", + " [0. 0.36314068 0. 0.03292878 0. 0.06662806\n", + " 0. 0.96939204 0.21301194 0.92890608 0. 0.\n", + " 0.44405901 0. 0.25538278 0. 0.61358839]\n", + " [0.47361018 0.21409258 0. 0.07990188 0.67314696 0.\n", + " 0.13815874 0. 0.47837478 1. 0. 0.32743771\n", + " 0.35115553 0.64311739 0. 0. 0.28194152]\n", + " [1. 0.4434718 0. 0.96540633 0.74566049 1.\n", + " 0.5648855 0.26972799 1. 0.89318032 0. 0.81073964\n", + " 0.39216942 1. 0.7427686 0. 0.11754528]\n", + " [0.29448578 0. 0. 1. 0.36742475 0.54802058\n", + " 0.5648855 0.00869591 0. 0.6249548 0. 1.\n", + " 0. 0.98303558 0.74159402 0. 0. ]]\n" + ] + } + ], + "source": [ + "print(classPsy.shape)\n", + "radar2 = []\n", + "for k in range(len(g)):\n", + " rows = classPsy[g[k]]\n", + " v = np.full(dim, 0.0)\n", + " for i in range(len(rows)):\n", + " for j in range(len(rows[i])):\n", + " if(rows[i][j] == 2):\n", + " v[j] = v[j] + 1 #rows[i][j]\n", + " if(rows[i][j] == 0):\n", + " v[j] = v[j] - 1#+ rows[i][j]\n", + " v = v / len(rows)\n", + " radar2.append(v)\n", + "print(radar2)\n", + "scaler = MinMaxScaler()\n", + "radar2 = scaler.fit_transform(np.array(radar2))\n", + "print(radar2)" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "acb7d4df", + "metadata": {}, + "outputs": [ + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 1, + 1.0000000000000002, + 1, + 0.0033112582781457123, + 0.6920433263182283, + 0.25380675933755836, + 0.933140763702973, + 0.9190874265241868, + 0.3675496688741722, + 0, + 0.6793061009201196, + 0.6715798084032027, + 0.10740656161985232, + 0.7226913513380435, + 0.39046122959795593, + 0.7615894039735099, + 0.11169353895116174 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 0.16455440884795092, + 0.5386987513270309, + 0, + 0.13188381895598983, + 0.09436550290404844, + 0.2643358809222332, + 0.7781204185834891, + 1, + 0.14461525033548983, + 0, + 0, + 0.5930405191252273, + 0.17375075255869957, + 0.47267580001011067, + 0.8750752558699578, + 0, + 0.30976178331597964 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Trauma" + } + } + }, + "text/html": [ + "<div> <div id=\"76765db7-43a6-462e-972b-9174621cc1b2\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"76765db7-43a6-462e-972b-9174621cc1b2\")) { Plotly.newPlot( \"76765db7-43a6-462e-972b-9174621cc1b2\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[1.0,1.0000000000000002,1.0,0.0033112582781457123,0.6920433263182283,0.25380675933755836,0.933140763702973,0.9190874265241868,0.3675496688741722,0.0,0.6793061009201196,0.6715798084032027,0.10740656161985232,0.7226913513380435,0.39046122959795593,0.7615894039735099,0.11169353895116174],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.16455440884795092,0.5386987513270309,0.0,0.13188381895598983,0.09436550290404844,0.2643358809222332,0.7781204185834891,1.0,0.14461525033548983,0.0,0.0,0.5930405191252273,0.17375075255869957,0.47267580001011067,0.8750752558699578,0.0,0.30976178331597964],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Trauma\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('76765db7-43a6-462e-972b-9174621cc1b2');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 0.6626195903304337, + 0.5455284146310979, + 0.5391809720167928, + 0, + 0.10098144792022334, + 0.42261429291558417, + 0.03450258769407699, + 0, + 0.26126126126126126, + 0.9999999999999999, + 0.600095670892131, + 0.5501059254028373, + 0.5635734256423912, + 0.3302521852707725, + 0.9999999999999998, + 0, + 0.9999999999999996 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 0.3848264508162984, + 0.9999999999999998, + 0, + 0, + 0.9999999999999999, + 0.3077933504343407, + 1, + 0.7847372139092118, + 0.17223978508986737, + 0.9566845221816624, + 0, + 0.059636462659132805, + 1, + 0.40326292234689176, + 1, + 0, + 1 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Sadness, stress and memory" + } + } + }, + "text/html": [ + "<div> <div id=\"20455127-7ff7-4bfe-aa73-298a5bd17baf\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"20455127-7ff7-4bfe-aa73-298a5bd17baf\")) { Plotly.newPlot( \"20455127-7ff7-4bfe-aa73-298a5bd17baf\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.6626195903304337,0.5455284146310979,0.5391809720167928,0.0,0.10098144792022334,0.42261429291558417,0.03450258769407699,0.0,0.26126126126126126,0.9999999999999999,0.600095670892131,0.5501059254028373,0.5635734256423912,0.3302521852707725,0.9999999999999998,0.0,0.9999999999999996],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.3848264508162984,0.9999999999999998,0.0,0.0,0.9999999999999999,0.3077933504343407,1.0,0.7847372139092118,0.17223978508986737,0.9566845221816624,0.0,0.059636462659132805,1.0,0.40326292234689176,1.0,0.0,1.0],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Sadness, stress and memory\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('20455127-7ff7-4bfe-aa73-298a5bd17baf');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 0.8252861068333486, + 0.3051024879497546, + 0.6985249192633325, + 0, + 0.42752288885478995, + 0.2909411261295275, + 0.509518477043673, + 0.8677431283125847, + 0.33333333333333337, + 0.9999999999999999, + 0, + 0.9999999999999999, + 0.22236626047878316, + 0.9999999999999999, + 0.6823456278491502, + 1, + 0.40942904965594185 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 0, + 0.3631406761177753, + 0, + 0.03292878055423164, + 0, + 0.06662805569632463, + 0, + 0.9693920416101486, + 0.21301193676117802, + 0.9289060751306334, + 0, + 0, + 0.4440590111642743, + 0, + 0.25538277511961727, + 0, + 0.613588394921103 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Trauma and memory" + } + } + }, + "text/html": [ + "<div> <div id=\"5991dd8a-46f3-47ca-afe3-6a725b9d3e27\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"5991dd8a-46f3-47ca-afe3-6a725b9d3e27\")) { Plotly.newPlot( \"5991dd8a-46f3-47ca-afe3-6a725b9d3e27\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.8252861068333486,0.3051024879497546,0.6985249192633325,0.0,0.42752288885478995,0.2909411261295275,0.509518477043673,0.8677431283125847,0.33333333333333337,0.9999999999999999,0.0,0.9999999999999999,0.22236626047878316,0.9999999999999999,0.6823456278491502,1.0,0.40942904965594185],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.0,0.3631406761177753,0.0,0.03292878055423164,0.0,0.06662805569632463,0.0,0.9693920416101486,0.21301193676117802,0.9289060751306334,0.0,0.0,0.4440590111642743,0.0,0.25538277511961727,0.0,0.613588394921103],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Trauma and memory\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('5991dd8a-46f3-47ca-afe3-6a725b9d3e27');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 0.05385811749580105, + 0.7766849079946061, + 0.2709304881216408, + 0, + 0.11453393749926821, + 0, + 1, + 1, + 0.21686746987951805, + 0.9999999999999999, + 1, + 0.5918910797584638, + 1, + 0.10007614099520756, + 0.7929323593586943, + 1, + 0.5961364894205792 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 0.47361017674759953, + 0.21409257531762815, + 0, + 0.07990188438099098, + 0.6731469567590749, + 0, + 0.13815874183757926, + 0, + 0.4783747841448165, + 1, + 0, + 0.3274377105398927, + 0.3511555312157722, + 0.6431173902892839, + 0, + 0, + 0.28194151526539 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Memory" + } + } + }, + "text/html": [ + "<div> <div id=\"a1da95d6-d37f-4ac8-9e4e-4db7c4101552\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"a1da95d6-d37f-4ac8-9e4e-4db7c4101552\")) { Plotly.newPlot( \"a1da95d6-d37f-4ac8-9e4e-4db7c4101552\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.05385811749580105,0.7766849079946061,0.2709304881216408,0.0,0.11453393749926821,0.0,1.0,1.0,0.21686746987951805,0.9999999999999999,1.0,0.5918910797584638,1.0,0.10007614099520756,0.7929323593586943,1.0,0.5961364894205792],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.47361017674759953,0.21409257531762815,0.0,0.07990188438099098,0.6731469567590749,0.0,0.13815874183757926,0.0,0.4783747841448165,1.0,0.0,0.3274377105398927,0.3511555312157722,0.6431173902892839,0.0,0.0,0.28194151526539],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Memory\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('a1da95d6-d37f-4ac8-9e4e-4db7c4101552');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 0, + 0, + 0, + 1, + 0, + 1, + 0.24105415860735008, + 0.45646157121566955, + 0, + 0.817577771066143, + 0.8257441673370877, + 0.06523429064996744, + 0, + 0, + 0.3363636363636362, + 0.7181818181818181, + 0.6400417603597814 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 1, + 0.44347179538019227, + 0, + 0.9654063271786428, + 0.7456604883789348, + 1.0000000000000002, + 0.564885496183206, + 0.2697279872384972, + 0.9999999999999999, + 0.8931803183617966, + 0, + 0.8107396381955576, + 0.3921694214876033, + 1, + 0.7427685950413223, + 0, + 0.11754528094438979 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Depression and associated symptoms" + } + } + }, + "text/html": [ + "<div> <div id=\"36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6\")) { Plotly.newPlot( \"36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.0,0.0,0.0,1.0,0.0,1.0,0.24105415860735008,0.45646157121566955,0.0,0.817577771066143,0.8257441673370877,0.06523429064996744,0.0,0.0,0.3363636363636362,0.7181818181818181,0.6400417603597814],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[1.0,0.44347179538019227,0.0,0.9654063271786428,0.7456604883789348,1.0000000000000002,0.564885496183206,0.2697279872384972,0.9999999999999999,0.8931803183617966,0.0,0.8107396381955576,0.3921694214876033,1.0,0.7427685950413223,0.0,0.11754528094438979],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Depression and associated symptoms\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('36eef9ac-b5d7-4fd3-98c8-fe1b75bf12f6');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + }, + { + "data": { + "application/vnd.plotly.v1+json": { + "config": { + "plotlyServerURL": "https://plot.ly" + }, + "data": [ + { + "fill": "toself", + "name": "H", + "r": [ + 0.5518355221276496, + 0.35495419005740514, + 0.4185011017969513, + 1, + 0.9999999999999999, + 0.9876024449205008, + 0, + 0.5691187321548875, + 1, + 0.8213261730305375, + 0.7788822887622742, + 0, + 0.2962263160657114, + 0.38605693334012314, + 0, + 0.8150684931506849, + 0 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + }, + { + "fill": "toself", + "name": "Class psy", + "r": [ + 0.2944857798484113, + 0, + 0, + 1, + 0.36742474619851917, + 0.5480205762092292, + 0.564885496183206, + 0.008695913446491205, + 0, + 0.6249547999445546, + 0, + 1, + 0, + 0.983035577828007, + 0.7415940224159403, + 0, + 0 + ], + "theta": [ + "agency", + "anxiety", + "avoiding", + "depression", + "ext. control", + "fatigue", + "hyper vigilance", + "trauma", + "int. control", + "memory", + "problem focused", + "quality of life", + "sadness", + "self efficacy", + "sleep", + "social", + "stress" + ], + "type": "scatterpolar" + } + ], + "layout": { + "font": { + "size": 18 + }, + "polar": { + "radialaxis": { + "visible": true + } + }, + "showlegend": false, + "template": { + "data": { + "bar": [ + { + "error_x": { + "color": "#2a3f5f" + }, + "error_y": { + "color": "#2a3f5f" + }, + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "bar" + } + ], + "barpolar": [ + { + "marker": { + "line": { + "color": "#E5ECF6", + "width": 0.5 + }, + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "barpolar" + } + ], + "carpet": [ + { + "aaxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "baxis": { + "endlinecolor": "#2a3f5f", + "gridcolor": "white", + "linecolor": "white", + "minorgridcolor": "white", + "startlinecolor": "#2a3f5f" + }, + "type": "carpet" + } + ], + "choropleth": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "choropleth" + } + ], + "contour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "contour" + } + ], + "contourcarpet": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "contourcarpet" + } + ], + "heatmap": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmap" + } + ], + "heatmapgl": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "heatmapgl" + } + ], + "histogram": [ + { + "marker": { + "pattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + } + }, + "type": "histogram" + } + ], + "histogram2d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2d" + } + ], + "histogram2dcontour": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "histogram2dcontour" + } + ], + "mesh3d": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "type": "mesh3d" + } + ], + "parcoords": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "parcoords" + } + ], + "pie": [ + { + "automargin": true, + "type": "pie" + } + ], + "scatter": [ + { + "fillpattern": { + "fillmode": "overlay", + "size": 10, + "solidity": 0.2 + }, + "type": "scatter" + } + ], + "scatter3d": [ + { + "line": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatter3d" + } + ], + "scattercarpet": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattercarpet" + } + ], + "scattergeo": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergeo" + } + ], + "scattergl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattergl" + } + ], + "scattermapbox": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scattermapbox" + } + ], + "scatterpolar": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolar" + } + ], + "scatterpolargl": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterpolargl" + } + ], + "scatterternary": [ + { + "marker": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "type": "scatterternary" + } + ], + "surface": [ + { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + }, + "colorscale": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "type": "surface" + } + ], + "table": [ + { + "cells": { + "fill": { + "color": "#EBF0F8" + }, + "line": { + "color": "white" + } + }, + "header": { + "fill": { + "color": "#C8D4E3" + }, + "line": { + "color": "white" + } + }, + "type": "table" + } + ] + }, + "layout": { + "annotationdefaults": { + "arrowcolor": "#2a3f5f", + "arrowhead": 0, + "arrowwidth": 1 + }, + "autotypenumbers": "strict", + "coloraxis": { + "colorbar": { + "outlinewidth": 0, + "ticks": "" + } + }, + "colorscale": { + "diverging": [ + [ + 0, + "#8e0152" + ], + [ + 0.1, + "#c51b7d" + ], + [ + 0.2, + "#de77ae" + ], + [ + 0.3, + "#f1b6da" + ], + [ + 0.4, + "#fde0ef" + ], + [ + 0.5, + "#f7f7f7" + ], + [ + 0.6, + "#e6f5d0" + ], + [ + 0.7, + "#b8e186" + ], + [ + 0.8, + "#7fbc41" + ], + [ + 0.9, + "#4d9221" + ], + [ + 1, + "#276419" + ] + ], + "sequential": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ], + "sequentialminus": [ + [ + 0, + "#0d0887" + ], + [ + 0.1111111111111111, + "#46039f" + ], + [ + 0.2222222222222222, + "#7201a8" + ], + [ + 0.3333333333333333, + "#9c179e" + ], + [ + 0.4444444444444444, + "#bd3786" + ], + [ + 0.5555555555555556, + "#d8576b" + ], + [ + 0.6666666666666666, + "#ed7953" + ], + [ + 0.7777777777777778, + "#fb9f3a" + ], + [ + 0.8888888888888888, + "#fdca26" + ], + [ + 1, + "#f0f921" + ] + ] + }, + "colorway": [ + "#636efa", + "#EF553B", + "#00cc96", + "#ab63fa", + "#FFA15A", + "#19d3f3", + "#FF6692", + "#B6E880", + "#FF97FF", + "#FECB52" + ], + "font": { + "color": "#2a3f5f" + }, + "geo": { + "bgcolor": "white", + "lakecolor": "white", + "landcolor": "#E5ECF6", + "showlakes": true, + "showland": true, + "subunitcolor": "white" + }, + "hoverlabel": { + "align": "left" + }, + "hovermode": "closest", + "mapbox": { + "style": "light" + }, + "paper_bgcolor": "white", + "plot_bgcolor": "#E5ECF6", + "polar": { + "angularaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "radialaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "scene": { + "xaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "yaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + }, + "zaxis": { + "backgroundcolor": "#E5ECF6", + "gridcolor": "white", + "gridwidth": 2, + "linecolor": "white", + "showbackground": true, + "ticks": "", + "zerolinecolor": "white" + } + }, + "shapedefaults": { + "line": { + "color": "#2a3f5f" + } + }, + "ternary": { + "aaxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "baxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + }, + "bgcolor": "#E5ECF6", + "caxis": { + "gridcolor": "white", + "linecolor": "white", + "ticks": "" + } + }, + "title": { + "x": 0.05 + }, + "xaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + }, + "yaxis": { + "automargin": true, + "gridcolor": "white", + "linecolor": "white", + "ticks": "", + "title": { + "standoff": 15 + }, + "zerolinecolor": "white", + "zerolinewidth": 2 + } + } + }, + "title": { + "text": "DTCluster: Depression" + } + } + }, + "text/html": [ + "<div> <div id=\"c5f7ad3d-e342-44e4-8910-3dc3df3edad9\" class=\"plotly-graph-div\" style=\"height:525px; width:100%;\"></div> <script type=\"text/javascript\"> require([\"plotly\"], function(Plotly) { window.PLOTLYENV=window.PLOTLYENV || {}; if (document.getElementById(\"c5f7ad3d-e342-44e4-8910-3dc3df3edad9\")) { Plotly.newPlot( \"c5f7ad3d-e342-44e4-8910-3dc3df3edad9\", [{\"fill\":\"toself\",\"name\":\"H\",\"r\":[0.5518355221276496,0.35495419005740514,0.4185011017969513,1.0,0.9999999999999999,0.9876024449205008,0.0,0.5691187321548875,1.0,0.8213261730305375,0.7788822887622742,0.0,0.2962263160657114,0.38605693334012314,0.0,0.8150684931506849,0.0],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"},{\"fill\":\"toself\",\"name\":\"Class psy\",\"r\":[0.2944857798484113,0.0,0.0,1.0,0.36742474619851917,0.5480205762092292,0.564885496183206,0.008695913446491205,0.0,0.6249547999445546,0.0,1.0,0.0,0.983035577828007,0.7415940224159403,0.0,0.0],\"theta\":[\"agency\",\"anxiety\",\"avoiding\",\"depression\",\"ext. control\",\"fatigue\",\"hyper vigilance\",\"trauma\",\"int. control\",\"memory\",\"problem focused\",\"quality of life\",\"sadness\",\"self efficacy\",\"sleep\",\"social\",\"stress\"],\"type\":\"scatterpolar\"}], {\"template\":{\"data\":{\"histogram2dcontour\":[{\"type\":\"histogram2dcontour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"choropleth\":[{\"type\":\"choropleth\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"histogram2d\":[{\"type\":\"histogram2d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmap\":[{\"type\":\"heatmap\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"heatmapgl\":[{\"type\":\"heatmapgl\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"contourcarpet\":[{\"type\":\"contourcarpet\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"contour\":[{\"type\":\"contour\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"surface\":[{\"type\":\"surface\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"},\"colorscale\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]]}],\"mesh3d\":[{\"type\":\"mesh3d\",\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}],\"scatter\":[{\"fillpattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2},\"type\":\"scatter\"}],\"parcoords\":[{\"type\":\"parcoords\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolargl\":[{\"type\":\"scatterpolargl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"bar\":[{\"error_x\":{\"color\":\"#2a3f5f\"},\"error_y\":{\"color\":\"#2a3f5f\"},\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"bar\"}],\"scattergeo\":[{\"type\":\"scattergeo\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterpolar\":[{\"type\":\"scatterpolar\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"histogram\":[{\"marker\":{\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"histogram\"}],\"scattergl\":[{\"type\":\"scattergl\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatter3d\":[{\"type\":\"scatter3d\",\"line\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattermapbox\":[{\"type\":\"scattermapbox\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scatterternary\":[{\"type\":\"scatterternary\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"scattercarpet\":[{\"type\":\"scattercarpet\",\"marker\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}}}],\"carpet\":[{\"aaxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"baxis\":{\"endlinecolor\":\"#2a3f5f\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"minorgridcolor\":\"white\",\"startlinecolor\":\"#2a3f5f\"},\"type\":\"carpet\"}],\"table\":[{\"cells\":{\"fill\":{\"color\":\"#EBF0F8\"},\"line\":{\"color\":\"white\"}},\"header\":{\"fill\":{\"color\":\"#C8D4E3\"},\"line\":{\"color\":\"white\"}},\"type\":\"table\"}],\"barpolar\":[{\"marker\":{\"line\":{\"color\":\"#E5ECF6\",\"width\":0.5},\"pattern\":{\"fillmode\":\"overlay\",\"size\":10,\"solidity\":0.2}},\"type\":\"barpolar\"}],\"pie\":[{\"automargin\":true,\"type\":\"pie\"}]},\"layout\":{\"autotypenumbers\":\"strict\",\"colorway\":[\"#636efa\",\"#EF553B\",\"#00cc96\",\"#ab63fa\",\"#FFA15A\",\"#19d3f3\",\"#FF6692\",\"#B6E880\",\"#FF97FF\",\"#FECB52\"],\"font\":{\"color\":\"#2a3f5f\"},\"hovermode\":\"closest\",\"hoverlabel\":{\"align\":\"left\"},\"paper_bgcolor\":\"white\",\"plot_bgcolor\":\"#E5ECF6\",\"polar\":{\"bgcolor\":\"#E5ECF6\",\"angularaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"radialaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"ternary\":{\"bgcolor\":\"#E5ECF6\",\"aaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"baxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"},\"caxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\"}},\"coloraxis\":{\"colorbar\":{\"outlinewidth\":0,\"ticks\":\"\"}},\"colorscale\":{\"sequential\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"sequentialminus\":[[0.0,\"#0d0887\"],[0.1111111111111111,\"#46039f\"],[0.2222222222222222,\"#7201a8\"],[0.3333333333333333,\"#9c179e\"],[0.4444444444444444,\"#bd3786\"],[0.5555555555555556,\"#d8576b\"],[0.6666666666666666,\"#ed7953\"],[0.7777777777777778,\"#fb9f3a\"],[0.8888888888888888,\"#fdca26\"],[1.0,\"#f0f921\"]],\"diverging\":[[0,\"#8e0152\"],[0.1,\"#c51b7d\"],[0.2,\"#de77ae\"],[0.3,\"#f1b6da\"],[0.4,\"#fde0ef\"],[0.5,\"#f7f7f7\"],[0.6,\"#e6f5d0\"],[0.7,\"#b8e186\"],[0.8,\"#7fbc41\"],[0.9,\"#4d9221\"],[1,\"#276419\"]]},\"xaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"yaxis\":{\"gridcolor\":\"white\",\"linecolor\":\"white\",\"ticks\":\"\",\"title\":{\"standoff\":15},\"zerolinecolor\":\"white\",\"automargin\":true,\"zerolinewidth\":2},\"scene\":{\"xaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"yaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2},\"zaxis\":{\"backgroundcolor\":\"#E5ECF6\",\"gridcolor\":\"white\",\"linecolor\":\"white\",\"showbackground\":true,\"ticks\":\"\",\"zerolinecolor\":\"white\",\"gridwidth\":2}},\"shapedefaults\":{\"line\":{\"color\":\"#2a3f5f\"}},\"annotationdefaults\":{\"arrowcolor\":\"#2a3f5f\",\"arrowhead\":0,\"arrowwidth\":1},\"geo\":{\"bgcolor\":\"white\",\"landcolor\":\"#E5ECF6\",\"subunitcolor\":\"white\",\"showland\":true,\"showlakes\":true,\"lakecolor\":\"white\"},\"title\":{\"x\":0.05},\"mapbox\":{\"style\":\"light\"}}},\"polar\":{\"radialaxis\":{\"visible\":true}},\"showlegend\":false,\"title\":{\"text\":\"DTCluster: Depression\"},\"font\":{\"size\":18}}, {\"responsive\": true} ).then(function(){\n", + " \n", + "var gd = document.getElementById('c5f7ad3d-e342-44e4-8910-3dc3df3edad9');\n", + "var x = new MutationObserver(function (mutations, observer) {{\n", + " var display = window.getComputedStyle(gd).display;\n", + " if (!display || display === 'none') {{\n", + " console.log([gd, 'removed!']);\n", + " Plotly.purge(gd);\n", + " observer.disconnect();\n", + " }}\n", + "}});\n", + "\n", + "// Listen for the removal of the full notebook cells\n", + "var notebookContainer = gd.closest('#notebook-container');\n", + "if (notebookContainer) {{\n", + " x.observe(notebookContainer, {childList: true});\n", + "}}\n", + "\n", + "// Listen for the clearing of the current output cell\n", + "var outputEl = gd.closest('.output');\n", + "if (outputEl) {{\n", + " x.observe(outputEl, {childList: true});\n", + "}}\n", + "\n", + " }) }; }); </script> </div>" + ] + }, + "metadata": {}, + "output_type": "display_data" + } + ], + "source": [ + "name_cluster=['Trauma', 'Sadness, stress and memory','Trauma and memory','Memory','Depression and associated symptoms', 'Depression']\n", + "categories = ['processing cost','mechanical properties','chemical stability',\n", + " 'thermal stability', 'device integration']\n", + "titleGraph = []\n", + "for i in range(len(d)):\n", + " #titleGraph.append('DTCluster ' + str(i))\n", + " titleGraph.append('DTCluster: ' + name_cluster[i])\n", + "def radar_fig(i):\n", + " fig = go.Figure()\n", + "\n", + " fig.add_trace(go.Scatterpolar(\n", + " r=radar[i],\n", + " theta=titre,\n", + " fill='toself',\n", + " name='H'\n", + " ))\n", + " fig.add_trace(go.Scatterpolar(\n", + " r=radar2[i],\n", + " theta=titre,\n", + " fill='toself',\n", + " name='Class psy'\n", + " #text = 'r'\n", + " ))\n", + "\n", + " fig.update_layout(\n", + " polar=dict(\n", + " radialaxis=dict(\n", + " visible=True\n", + " #range=[0, 5]\n", + " )),\n", + " showlegend=False\n", + " )\n", + " fig.update_layout(title_text = titleGraph[i])\n", + " fig.update_layout(\n", + " font=dict(\n", + " #family=\"Courier New, monospace\",\n", + " size=18, # Set the font size here\n", + " #color=\"RebeccaPurple\"\n", + " )\n", + ")\n", + " \n", + " \n", + " fig.show()\n", + " fig.write_image(path+\"radar\"+str(i)+\"_fig.png\")\n", + " \n", + "for i in range(len(d)):\n", + " radar_fig(i)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "c03ac5f8", + "metadata": {}, + "outputs": [], + "source": [] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "39b0792d", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.12" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/code/binary_model/BPR_model.py b/code/binary_model/BPR_model.py new file mode 100644 index 0000000000000000000000000000000000000000..9937d9312036595789c414ba9fb77c3654c333bd --- /dev/null +++ b/code/binary_model/BPR_model.py @@ -0,0 +1,162 @@ +import torch +import torch.nn as nn +import torch.optim as optim +from torch.utils.data import DataLoader, TensorDataset +import numpy as np +import torch.nn.functional as F +import pandas as pd +from sklearn.metrics import roc_auc_score +from sklearn.metrics import mean_squared_error +from sklearn.metrics import accuracy_score +from sklearn.metrics import precision_score +from sklearn.metrics.cluster import contingency_matrix + +dtype = torch.float32 +if torch.cuda.is_available(): + dev = "cuda:0" +else: + dev = "cpu" +device = torch.device(dev) + +class BPRModel(nn.Module): + def __init__(self, batch_size, num_users, num_items, embedding_size, device, cc_exp_row, cc_exp_col, ablation): + self.device = device + self.batch_size = batch_size + + super(BPRModel, self).__init__() + # Model parameters + self.user_embeddings = nn.Embedding(num_users, embedding_size).to(self.device) + self.item_embeddings = nn.Embedding(num_items, embedding_size).to(self.device) + + # Initialization + if(ablation != 2) and (ablation != 3): + self.user_embeddings.weight.data.copy_(torch.from_numpy(cc_exp_row)) + self.item_embeddings.weight.data.copy_(torch.from_numpy(cc_exp_col)) + + # Optimizer + self.optimizer = optim.Adam(self.parameters(), lr=0.01) + + def forward(self, user, item, k): + user_embedding = self.user_embeddings(user) + item_embedding = self.item_embeddings(item) + + if (k == -1): + user_embedding = F.normalize(user_embedding, p=2, dim=1) + item_embedding = F.normalize(item_embedding, p=2, dim=1) + return - torch.norm(user_embedding - item_embedding, p=2, dim=1) + + else: + user_embedding = F.normalize(user_embedding, p=2, dim=1) + return torch.mean(user_embedding[:,k]) + + def bpr_loss(self,positive_scores, negative_scores): + return -torch.mean(torch.log(torch.sigmoid(positive_scores - negative_scores))) + + def train(self, triplets, num_kc, epochs, batch_size, y, ablation): + for epoch in range(epochs): + all_labels = None + all_decisions = None + first = True + for k in range(num_kc): + trips = triplets[k] + y_true = y[k] + for i in range(0, len(trips), self.batch_size): + users_batch = trips[i:i + self.batch_size, 0] + items_batch = trips[i:i + self.batch_size, 1] + negatives_batch = trips[i:i + self.batch_size, 2] + neg_users_batch = trips[i:i + self.batch_size, 3] + y_train = y_true[i:i + self.batch_size] + + # Convert the numpy.ndarray to tensor + users_batch = torch.from_numpy(users_batch).to(self.device) + items_batch = torch.from_numpy(items_batch).to(self.device) + negatives_batch = torch.from_numpy(negatives_batch).to(self.device) + neg_users_batch = torch.from_numpy(neg_users_batch).to(self.device) + + # call forward + positive_scores = self(users_batch, items_batch, -1) + negative_scores = self(users_batch, negatives_batch, -1) + loss1 = self.bpr_loss(positive_scores, negative_scores) + + positive_scores_bis = self(users_batch, negatives_batch, k) + negative_scores_bis = self(neg_users_batch, negatives_batch, k) + loss2 = self.bpr_loss(positive_scores_bis, negative_scores_bis) + + if(ablation != 1) and (ablation != 3): + loss = loss1 + loss2 + else: + loss = loss1 + + if (first == True): + all_labels = y_train + comp = negative_scores < positive_scores + comp = comp.cpu() + all_decisions = comp + first = False + else: + all_labels = np.concatenate((all_labels, y_train), axis=0) + comp = negative_scores < positive_scores + comp = comp.cpu() + all_decisions = np.concatenate((all_decisions, comp), axis=0) + + # Backward + loss.backward(retain_graph=True) + # Optimizer step + self.optimizer.step() + # Clear the gradients for the next iteration + self.optimizer.zero_grad() + + if(epoch % 10 == 0): + print(f"Epoch {epoch + 1}, Loss: {loss.item()}") + acc = accuracy_score(all_labels, all_decisions) + return acc + + # Evaluate the model + def evaluate_model(self, test_triplets, num_kc, y_test): + # Initialize counters for metrics + all_predictions = None + all_labels = None + all_decisions = None + first = True + for k in range(num_kc): + trips = test_triplets[k] + y = y_test[k] + for i in range(0, len(trips), self.batch_size): + users_batch = trips[i:i + self.batch_size, 0] + items_batch = trips[i:i + self.batch_size, 1] + negatives_batch = trips[i:i + self.batch_size, 2] + y_true = y[i:i + self.batch_size] + # Convert the ndarray to tensor + users_batch = torch.from_numpy(users_batch).to(self.device) + items_batch = torch.from_numpy(items_batch).to(self.device) + negatives_batch = torch.from_numpy(negatives_batch).to(self.device) + # Compute distances + positive_scores = self(users_batch, items_batch,-1).cpu() + negative_scores = self(users_batch, negatives_batch,-1).cpu() + # compute probabilities + proba = torch.sigmoid(positive_scores - negative_scores ) + + if (first == True): + all_labels = y_true + all_predictions = proba.detach().cpu().numpy() + comp = negative_scores < positive_scores + comp = comp.cpu() + all_decisions = comp + first = False + else: + all_labels = np.concatenate((all_labels, y_true), axis=0) + all_predictions = np.concatenate((all_predictions, proba.detach().cpu().numpy()), axis=0) + comp = negative_scores < positive_scores + comp = comp.cpu() + all_decisions = np.concatenate((all_decisions, comp), axis=0) + + mse1 = mean_squared_error(all_labels, all_predictions) + print("RMSE", np.sqrt(mse1))#, root_mean_squared_error(all_labels, all_predictions)) + auc = roc_auc_score(all_labels, all_predictions) + print("AUC:", auc) + acc = accuracy_score(all_labels, all_decisions) + print("ACC:", acc) + precision = precision_score(all_labels, all_decisions) + print(f'Prec: {precision}') + return acc, precision + diff --git a/code/binary_model/__pycache__/BPR_model.cpython-310.pyc b/code/binary_model/__pycache__/BPR_model.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..89a4f4015332c5214c83ad37499940e6bdebcf4b Binary files /dev/null and b/code/binary_model/__pycache__/BPR_model.cpython-310.pyc differ diff --git a/code/binary_model/__pycache__/BPR_model.cpython-311.pyc b/code/binary_model/__pycache__/BPR_model.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..357f61d3d33245b14994c727868f8a10a492b3ff Binary files /dev/null and b/code/binary_model/__pycache__/BPR_model.cpython-311.pyc differ diff --git a/code/binary_model/__pycache__/utils.cpython-310.pyc b/code/binary_model/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9c8cb6eb3dd060750e0ee3bc04d40406bfdf690c Binary files /dev/null and b/code/binary_model/__pycache__/utils.cpython-310.pyc differ diff --git a/code/binary_model/__pycache__/utils.cpython-311.pyc b/code/binary_model/__pycache__/utils.cpython-311.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5a02087cc67628b91000edc109e4960738d4a4fc Binary files /dev/null and b/code/binary_model/__pycache__/utils.cpython-311.pyc differ diff --git a/code/binary_model/algebra_abla_init_new b/code/binary_model/algebra_abla_init_new new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code/binary_model/assist09_abla_init_new b/code/binary_model/assist09_abla_init_new new file mode 100644 index 0000000000000000000000000000000000000000..5248425852bf7d593fa240d7e4c7a4515541a3ae --- /dev/null +++ b/code/binary_model/assist09_abla_init_new @@ -0,0 +1,7 @@ +NB KC 123 +NB Users 2493 +NB (question-answer) in the data 17506 +Epoch 1, Loss: 1.3690141439437866 +Epoch 11, Loss: 1.0071520805358887 +NB KC 123 +NB Users 2493 diff --git a/code/binary_model/assist17_abla_init_new b/code/binary_model/assist17_abla_init_new new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code/binary_model/compute_doa.py b/code/binary_model/compute_doa.py new file mode 100644 index 0000000000000000000000000000000000000000..19f12bd2a41de8cd7fb2779a73c7262a569ff942 --- /dev/null +++ b/code/binary_model/compute_doa.py @@ -0,0 +1,12 @@ +import numpy as np +import pandas as pd +import argparse +from utils import * +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument("-dt", "--data", help="data file") + args = parser.parse_args() + data = args.data + + doa = compute_doa(data) + print("DOA:", doa) \ No newline at end of file diff --git a/code/binary_model/main.py b/code/binary_model/main.py new file mode 100644 index 0000000000000000000000000000000000000000..bd5e317e7d9b9648814f3ac84ff952ac41e0a90d --- /dev/null +++ b/code/binary_model/main.py @@ -0,0 +1,230 @@ +import argparse +import torch +import torch.nn as nn +import torch.optim as optim +from torch.utils.data import DataLoader, TensorDataset +import numpy as np +import torch.nn.functional as F +import pandas as pd +from scipy import stats +import csv +import json +import random +from collections import Counter +from sklearn.preprocessing import normalize +from sklearn.metrics import roc_auc_score +from sklearn.metrics import mean_squared_error +from sklearn.metrics import accuracy_score +from sklearn.metrics import precision_score +from sklearn.metrics.cluster import contingency_matrix +from utils import * +from BPR_model import * + +dtype = torch.float32 +if torch.cuda.is_available(): + dev = "cuda:0" +else: + dev = "cpu" +device = torch.device(dev) + + +def read_file(dataTrain, dataTest): + # Compute dictionaries + df = pd.read_csv(dataTrain, names=['user_id', 'item_id','correct','knowledge']) + dfTest = pd.read_csv(dataTest, names=['user_id', 'item_id','correct','knowledge']) + # dico kc + kc = df['knowledge'] + kcT = dfTest['knowledge'] + kc = flattern_arrays(kc.values, kcT.values) + num_kc = len(kc) + dico_kc = { k:v for (k,v) in zip(kc, range(len(kc)))} + print("NB KC", num_kc) + # dico users + users = df['user_id'] + usersT = dfTest['user_id'] + users = flattern_arrays(users.values, usersT.values) + num_users = len(users) + dico_users = { k:v for (k,v) in zip(users, range(num_users))} + print("NB Users", num_users) + # dico items and their associated kc + itemsDT = df['item_id'] + itemsT = dfTest['item_id'] + items = flattern_arrays(itemsDT.values, itemsT.values) + num_items = len(items) + dico_items = { k:v for (k,v) in zip(items, range(num_items))} + #print("NB Items", num_items) + return dico_kc, dico_users, dico_items + +def parse_dataframe(data, dico_kc, dico_users, dico_item, is_train = True): + df = pd.read_csv(data, names=['user_id', 'item_id','correct','knowledge']) + # Compute table of positive and negative items by KC and Users + # and the dictionary that associate the KC to a question/answer + num_kc = len(dico_kc) + num_users = len(dico_users) + # Find positive items for each kc/user + triplets = [] + y_true = [] + for k in range(num_kc): + triplets.append([]) + y_true.append([]) + k = 0 + if(is_train): + item_users = {} + grouped_kc = df.groupby('knowledge') + for kc_name, df_kc in grouped_kc: + # Find positive items for each user + grouped = df_kc.groupby('user_id') + for group_name, df_group in grouped: + for row_index, row in df_group.iterrows(): + col = row['item_id'] + if col not in dico_items: + dico_items[col] = len(dico_items) + # Warning, all user's answers are positives! + q,r = parse_it(col) + col_neg = q+'_'+str(1-int(r)) + if col_neg not in dico_items: + dico_items[col_neg] = len(dico_items) + + if(is_train): + triplets[dico_kc[int(kc_name)]].append([dico_users[group_name], dico_items[col], dico_items[col_neg]]) + if(dico_items[col] not in item_users): + item_users[dico_items[col]] = [] + item_users[dico_items[col]].append(dico_users[group_name]) + if(r == 1): + y_true[dico_kc[int(kc_name)]].append(r) + else: + y_true[dico_kc[int(kc_name)]].append(0) + else: + # reponse q_1, q_0 with y the expected answer + if(r==1): + triplets[dico_kc[int(kc_name)]].append([dico_users[group_name], dico_items[col], dico_items[col_neg]]) + else: + triplets[dico_kc[int(kc_name)]].append([dico_users[group_name], dico_items[col_neg], dico_items[col]]) + y_true[dico_kc[int(kc_name)]].append(r) + for k in range(num_kc): + triplets[k] = np.array(triplets[k]) + y_true[k] = np.array(y_true[k]) + + if(is_train): + return dico_items, triplets, y_true, item_users + else: + return dico_items, triplets, y_true + +def generate_quad(dico_items, triplets, t_trainy, item_users): + l = list(dico_items) + quadriplets = [] + y = [] + for k in range(len(triplets)): + t_quadriplets = [] + t_y = [] + for i in range(len(triplets[k])): + t = triplets[k][i] + q,r = parse_it(l[t[1]]) + if(t[2] in item_users) and (r == 1): + u = random.randint(0,len(item_users[t[2]])-1) + uu = item_users[t[2]][u] + t_quadriplets.append([t[0], t[1], t[2], uu]) + t_y.append(t_trainy[k][i]) + else: + t_quadriplets.append([t[0], t[1], t[2], t[0]]) + t_y.append(t_trainy[k][i]) + quadriplets.append(np.array(t_quadriplets)) + y.append(np.array(t_y)) + return quadriplets, y + +def init_frequencielle(train, n, p, dim, dico_items): + it = list(dico_items) + cc_exp_row = np.random.rand(n,dim) + cc_exp_col = np.random.rand(p,dim) + for k in range(len(train)): + for i in range(len(train[k])): + user = train[k][i][0] + item = train[k][i][1] + q,r = parse_it(it[item]) + if(r == 1): + cc_exp_row[user][k] += 1 + cc_exp_col[item][k] += 1 + if(r == 0): + cc_exp_row[user][k] -= 1 + cc_exp_col[item][k] -= 1 + for i in range(n): + cc_exp_row[i] = cc_exp_row[i] / np.sum(cc_exp_row[i]) + for i in range(p): + cc_exp_col[i] = cc_exp_col[i] / np.sum(cc_exp_col[i]) + return cc_exp_row, cc_exp_col + +def write_file_doa(FileName, embed, train, dico_kc, dico_users, dico_items): + # write embeddings + it = list(dico_items) + ut = list(dico_users) + nom = FileName+"_embed.csv" + f = open(nom, 'w') + writer = csv.writer(f) + for i in range(embed.shape[0]): + row = embed[i] + writer.writerow(row) + f.close() + # write R the responses + # user followed by the list of item_resp groupes in block of k + nom = FileName+"_responses.csv" + f = open(nom, 'w') + writer = csv.writer(f) + previous_user = -1 + for k in range(len(dico_kc)): + for i in range(len(train[k])): + if(previous_user != -1) and (train[k][i][0] != previous_user): + positive_items = list(set(positive_items)) + row = row + positive_items + writer.writerow(row) + if(train[k][i][0] != previous_user): + row = [k]+[train[k][i][0]] + positive_items = [] + previous_user = train[k][i][0] + positive_items.append(it[train[k][i][1]]) + # Remove duplicate positive_items + positive_items = list(set(positive_items)) + row = row + positive_items + writer.writerow(row) + f.close() + + +############################# +############################# +# HP +epochs = 20 +batch_size = 1024 +ablation = 0 +# 0 no ablation, 1 ablation L2, 2 ablation init, 3 both +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument("-dtrain", "--dataTrain", help="data file") + parser.add_argument("-dtest", "--dataTest", help="data file") + parser.add_argument("-ab", "--ablation", help="int") + args = parser.parse_args() + dataTrain = args.dataTrain + dataTest = args.dataTest + if args.ablation: + ablation = int(args.ablation) + file = dataTrain[:-4] + + dico_kc, dico_users, dico_items = read_file(dataTrain, dataTest) + embedding_size = len(dico_kc) + + dico_items, t_train, ty_train, item_users = parse_dataframe(dataTrain, dico_kc, dico_users, dico_items, True) + train, y_train = generate_quad(dico_items, t_train, ty_train, item_users) + dico_items, test, y_test = parse_dataframe(dataTest, dico_kc, dico_users, dico_items, False) + print("NB (question-answer) in the data", int(len(dico_items)/2)) + num_users = len(dico_users) + num_items = len(dico_items) + cc_exp_row, cc_exp_col = init_frequencielle(train, num_users, num_items, embedding_size, dico_items) + bpr_model = BPRModel(batch_size, num_users, num_items, embedding_size, device, cc_exp_row, cc_exp_col, ablation) + bpr_model = bpr_model.to(device) + # Training loop + acc = bpr_model.train(train, len(dico_kc), epochs, batch_size, y_train, ablation) + # DOA + new_embedding_value = bpr_model.user_embeddings.weight.clone().detach().cpu().numpy() + write_file_doa(file, new_embedding_value, train, dico_kc, dico_users, dico_items) + doa = compute_doa(file) + print("DOA:", doa) + # Test + acc, precision = bpr_model.evaluate_model(test, len(dico_kc), y_test) diff --git a/code/binary_model/math1_abla_init_new b/code/binary_model/math1_abla_init_new new file mode 100644 index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391 diff --git a/code/binary_model/script_abalation.py b/code/binary_model/script_abalation.py new file mode 100644 index 0000000000000000000000000000000000000000..5e56acab0d89733e56e7bde3eede2869f04dd323 --- /dev/null +++ b/code/binary_model/script_abalation.py @@ -0,0 +1,9 @@ +import os + +name = ["assist09","assist17","algebra", "math1","math2"] +for i in range(4): + print("Ablation (0 no ablation, 1 ablation L2, 2 ablation init, 3 both) ",i) + for a in range(5): + print(name[i]) + cmd = "python main.py --dataTrain ../data/"+name[i]+"/train.csv --dataTest ../data/"+name[i]+"/test.csv --ablation "+str(i) + os.system(cmd) diff --git a/code/binary_model/utils.py b/code/binary_model/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..23faa1286bc383149c34c2cbc8b6b72cd88c3216 --- /dev/null +++ b/code/binary_model/utils.py @@ -0,0 +1,165 @@ +import numpy as np +import pandas as pd + +def fromDFtoArray(name, vector, type_value): + # Read dataframe and generate a matrix or + # a vector of appropriate type + df = pd.read_csv(name,index_col=None, header=None) + cols = df.columns + if(type_value == "f"): + for col in cols: + df[col] = df[col].astype(float) + if(type_value == 'i'): + for col in cols: + df[col] = df[col].astype(int) + r = df.values + if(vector): + r = r.reshape(-1,) + return r + +def parse_it(it): + # Extract question/answer from label + p = it.find('_') + q = it[:p] + r = it[p+1:] + r = int(float(r)) + return q,r + +def flattern_arrays(user_idx, user_idx_test): + # Transform two arrays in an array of unique values + liste1 = list(user_idx) + liste2 = list(user_idx_test) + new = list(set(liste2).difference(liste1)) + liste1.sort() + liste1 = np.array(liste1).reshape((-1,1)) + liste1 = np.unique(liste1).tolist() + new.sort() + new = np.array(new).reshape((-1,1)) + new = np.unique(new).tolist() + if(len(new) > 0): + users = liste1 + new + else: + users = liste1 + return users + +def flattern_array(user_idx): + # Transform an array in an array of unique values + users = list(user_idx.reshape((-1,1))) + users.sort() + users = np.array(users) + users = np.unique(users) + return users + +def parse_kc(s): + d = [] + s = s[1:] + while(s.find(',') > 0): + t = s[:s.find(',')] + d.append(int(t)) + s = s[s.find(',')+1:] + s = s[:len(s)-1] + d.append(int(s)) + return d + +def parse(data): + d = [] + for i in range(len(data)): + s = data[i][1:] + while(s.find(',') > 0): + t = s[:s.find(',')] + d.append(int(t)) + s = s[s.find(',')+1:] + s = s[:len(s)-1] + d.append(int(s)) + d = flattern_array(np.array(d)) + return d + +def compute_kc_user(name): + fileName = name+"_responses.csv" + f = open(fileName, "r") + lines = f.readlines() + kc_user = [] + kc_user_val = [] + dico_u = [] + old_k = -1 + num_kc = 0 + for line in lines: + r = line.split(',') + if(int(r[0]) != old_k): + num_kc = num_kc + 1 + if(old_k != -1): + kc_user.append(new_kc_user) + kc_user_val.append(new_kc_user_val) + dico_u.append(dico_uk) + new_kc_user = [] + new_kc_user_val = [] + dico_uk = {} + old_k = int(r[0]) + user = int(r[1]) + if user not in dico_uk: + dico_uk[user] = len(dico_uk) + new_kc_user.append([]) + new_kc_user_val.append([]) + # add item and values + for i in range(2,len(r)): + q,rep = parse_it(r[i]) + new_kc_user[dico_uk[user]].append(int(q)) + new_kc_user_val[dico_uk[user]].append(rep) + kc_user.append(new_kc_user) + kc_user_val.append(new_kc_user_val) + dico_u.append(dico_uk) + # sort files + for k in range(len(kc_user)): + for u in range(len(kc_user[k])): + kc_user[k][u], kc_user_val[k][u] = zip(*sorted(zip(kc_user[k][u], kc_user_val[k][u]))) + return kc_user, kc_user_val, dico_u, num_kc + +def doa_creuse(F, kc_user, kc_user_val, dico_u): + doa = [] + user_embed = F + num_kc = len(kc_user) + for k in range(num_kc): + Z1 = 0.0 + v = 0.0 + users = list(dico_u[k]) + for a in range(len(kc_user[k])): + for b in range(len(kc_user[k])): + Z2 = 0.0 + Z0 = 0.0 + ua = users[a] + ub = users[b] + if(user_embed[ua][k] > user_embed[ub][k]): + ia = a + ib = b + ma = 0 + mb = 0 + while(ma < len(kc_user[k][ia])) and (mb < len(kc_user[k][ib])): + if(kc_user[k][ia][ma] < kc_user[k][ib][mb]): + ma = ma + 1 + else: + if(kc_user[k][ia][ma] > kc_user[k][ib][mb]): + mb = mb + 1 + else: + # meme item + if(kc_user_val[k][ia][ma] > kc_user_val[k][ib][mb]): + Z2 = Z2 + 1 + Z0 = Z0 + 1 + else: + if(kc_user_val[k][ia][ma] < kc_user_val[k][ib][mb]): + Z0 = Z0 + 1 + ma = ma + 1 + mb = mb + 1 + if(Z0 > 0): + Z1 = Z1 + 1 + v = v + Z2/Z0 + if(Z1 > 0): + v = v / Z1 + doa.append(v) + return doa + +def compute_doa(filename): + F = fromDFtoArray(filename+"_embed.csv",False,'f') + kc_user, kc_user_val, dico_u, num_kc = compute_kc_user(filename) + r = doa_creuse(F, kc_user, kc_user_val, dico_u) + doa = np.mean(r) + return doa diff --git a/code/binary_model/utils.pyc b/code/binary_model/utils.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b5fd71aed02a36eb6c37bf30c35d0a4632939e22 Binary files /dev/null and b/code/binary_model/utils.pyc differ diff --git a/code/cv/__pycache__/BPR_model.cpython-310.pyc b/code/cv/__pycache__/BPR_model.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c23dc03a14c4d61f1058440f2c82edf77bf05192 Binary files /dev/null and b/code/cv/__pycache__/BPR_model.cpython-310.pyc differ diff --git a/code/cv/__pycache__/utils.cpython-310.pyc b/code/cv/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fa2147ec019adc0e8d10c92a4ac1f6dfbf019b17 Binary files /dev/null and b/code/cv/__pycache__/utils.cpython-310.pyc differ diff --git a/code/nary_model/BPR_model.py b/code/nary_model/BPR_model.py new file mode 100644 index 0000000000000000000000000000000000000000..3a40c16a33cddc5f70f843f7a60da690fabd44ef --- /dev/null +++ b/code/nary_model/BPR_model.py @@ -0,0 +1,177 @@ +import torch +import torch.nn as nn +import torch.optim as optim +from torch.utils.data import DataLoader, TensorDataset +import numpy as np +import torch.nn.functional as F +import pandas as pd +from sklearn.metrics import roc_auc_score +from sklearn.metrics import mean_squared_error +from sklearn.metrics import accuracy_score +from sklearn.metrics import precision_score +from sklearn.metrics import recall_score +from sklearn.metrics.cluster import contingency_matrix + + +dtype = torch.float32 +if torch.cuda.is_available(): + dev = "cuda:0" +else: + dev = "cpu" +device = torch.device(dev) + +class BPRModel(nn.Module): + def __init__(self, batch_size, num_users, num_items, embedding_size, device, cc_exp_row=None, cc_exp_col=None): + self.device = device + self.batch_size = batch_size + + super(BPRModel, self).__init__() + # Model parameters + self.user_embeddings = nn.Embedding(num_users, embedding_size).to(self.device) + self.item_embeddings = nn.Embedding(num_items, embedding_size).to(self.device) + + # Initialization + self.user_embeddings.weight.data.copy_(torch.from_numpy(cc_exp_row)) + self.item_embeddings.weight.data.copy_(torch.from_numpy(cc_exp_col)) + + # Optimizer + self.optimizer = optim.Adam(self.parameters(), lr=0.01) + + + def forward(self, user, item, k, is_user): + if(is_user == True): + user_embedding = self.user_embeddings(user) + item_embedding = self.item_embeddings(item) + + if (k == -1): + user_embedding = F.normalize(user_embedding, p=2, dim=1) + item_embedding = F.normalize(item_embedding, p=2, dim=1) + return - torch.norm(user_embedding - item_embedding, p=2, dim=1) + + else: + return torch.mean(user_embedding[:,k]) + else: + user_embedding = self.item_embeddings(user) + return torch.mean(user_embedding[:,k]) + + + def bpr_loss(self,positive_scores, negative_scores, width): + return -torch.mean(torch.log(torch.sigmoid(width*(positive_scores - negative_scores)))) + + def train(self, triplets, num_kc, epochs, batch_size, y): + for epoch in range(epochs): + all_labels = None + all_decisions = None + first = True + for k in range(num_kc): + trips = triplets[k] + # Set the mask to zero for specific indices (e.g., user 0) + masked_indices = [k] + y_true = y[k] + for i in range(0, len(trips), self.batch_size): + users_batch = trips[i:i + self.batch_size, 0] + items_batch = trips[i:i + self.batch_size, 1] + negatives_batch = trips[i:i + self.batch_size, 2] + neg_users_batch = trips[i:i + self.batch_size, 3] + width_batch = trips[i:i + self.batch_size, 4] + y_train = y_true[i:i + self.batch_size] + + # Convert the numpy.ndarray to tensor + users_batch = torch.from_numpy(users_batch).to(self.device) + items_batch = torch.from_numpy(items_batch).to(self.device) + negatives_batch = torch.from_numpy(negatives_batch).to(self.device) + neg_users_batch = torch.from_numpy(neg_users_batch).to(self.device) + width_batch = torch.from_numpy(width_batch).to(self.device) + + # Create a mask with the same shape as the embeddings + current_batch_size = users_batch.shape[0] + oneVect = torch.full((1,current_batch_size),1).to(self.device) + + + # call forward + positive_scores = self(users_batch, items_batch, -1, True) + negative_scores = self(users_batch, negatives_batch, -1, True) + loss1 = self.bpr_loss(positive_scores, negative_scores, width_batch) + + positive_scores_bis = self(users_batch, negatives_batch, k, True) + negative_scores_bis = self(neg_users_batch, negatives_batch, k, True) + loss2 = self.bpr_loss(positive_scores_bis, negative_scores_bis, oneVect) + + positive_scores_ter = self(items_batch, negatives_batch, k, False) + negative_scores_ter = self(negatives_batch, negatives_batch, k, False) + loss3 = self.bpr_loss(positive_scores_ter, negative_scores_ter, width_batch) + + loss = loss1 + loss2 + loss3 + + if (first == True): + all_labels = y_train + comp = negative_scores < positive_scores + comp = comp.cpu() + all_decisions = comp + first = False + else: + all_labels = np.concatenate((all_labels, y_train), axis=0) + comp = negative_scores < positive_scores + comp = comp.cpu() + all_decisions = np.concatenate((all_decisions, comp), axis=0) + + + # Backward pass to compute gradients + loss.backward(retain_graph=True) + + # Optimizer step + self.optimizer.step() + # Clear the gradients for the next iteration + self.optimizer.zero_grad() + #if(epoch % 10 == 0): + # print(f"Epoch {epoch + 1}, Loss: {loss.item()}") + acc = accuracy_score(all_labels, all_decisions) + return acc + + # Evaluate the model + def evaluate_model(self, test_triplets, num_kc, y_test): + # Initialize counters for metrics + precision = 0.0 + nb_evals = 0.0 + all_predictions = None + all_labels = None + all_decisions = None + first = True + for k in range(num_kc): + trips = test_triplets[k] + y = y_test[k] + for i in range(0, len(trips), self.batch_size): + users_batch = trips[i:i + self.batch_size, 0] + items_batch = trips[i:i + self.batch_size, 1] + negatives_batch = trips[i:i + self.batch_size, 2] + y_true = y[i:i + self.batch_size] + # Convert the ndarray to tensor + users_batch = torch.from_numpy(users_batch).to(self.device) + items_batch = torch.from_numpy(items_batch).to(self.device) + negatives_batch = torch.from_numpy(negatives_batch).to(self.device) + + # Compute distances + positive_scores = self(users_batch, items_batch,-1, True).cpu() + negative_scores = self(users_batch, negatives_batch,-1, True).cpu() + # compute probabilities + proba = torch.sigmoid(positive_scores - negative_scores ) + + if (first == True): + all_labels = y_true + all_predictions = proba.detach().cpu().numpy() + comp = negative_scores < positive_scores + comp = comp.cpu() + all_decisions = comp + first = False + else: + all_labels = np.concatenate((all_labels, y_true), axis=0) + all_predictions = np.concatenate((all_predictions, proba.detach().cpu().numpy()), axis=0) + comp = negative_scores < positive_scores + comp = comp.cpu() + all_decisions = np.concatenate((all_decisions, comp), axis=0) + + correct_ranking = sum(negative_scores < positive_scores)# for score in negative_scores) + mse1 = mean_squared_error(all_labels, all_predictions) + auc = roc_auc_score(all_labels, all_predictions) + return accuracy_score(all_labels, all_decisions), precision_score(all_labels, all_decisions), recall_score(all_labels, all_decisions), all_decisions + diff --git a/code/nary_model/__pycache__/BPR_model.cpython-310.pyc b/code/nary_model/__pycache__/BPR_model.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cc1357cdffd3548e12ea51d9d09d7010724c25d2 Binary files /dev/null and b/code/nary_model/__pycache__/BPR_model.cpython-310.pyc differ diff --git a/code/nary_model/__pycache__/utils.cpython-310.pyc b/code/nary_model/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1b6e64c2d1fa7f34b2690ae79e3b45ed09e3f3d6 Binary files /dev/null and b/code/nary_model/__pycache__/utils.cpython-310.pyc differ diff --git a/code/nary_model/main_nary.py b/code/nary_model/main_nary.py new file mode 100644 index 0000000000000000000000000000000000000000..4e0e44249e3dc191d164e02ab95d3636efb04161 --- /dev/null +++ b/code/nary_model/main_nary.py @@ -0,0 +1,237 @@ +import argparse +import torch +import torch.nn as nn +import torch.optim as optim +from torch.utils.data import DataLoader, TensorDataset +import numpy as np +import torch.nn.functional as F +import pandas as pd +from scipy import stats +import csv +import json +import random +import os +from collections import Counter +from sklearn.metrics import roc_auc_score +from sklearn.metrics import mean_squared_error +from sklearn.metrics import accuracy_score +from sklearn.metrics import precision_score +from sklearn.metrics.cluster import contingency_matrix +from utils import * +from BPR_model import * +from sklearn.preprocessing import normalize + +dtype = torch.float32 +if torch.cuda.is_available(): + dev = "cuda:0" +else: + dev = "cpu" +device = torch.device(dev) + + +def read_file(dataTrain, dataTest): + # Compute dictionaries + df = pd.read_csv(dataTrain, names=['user_id', 'item_id','correct','knowledge',"max_val"]) + dfTest = pd.read_csv(dataTest, names=['user_id', 'item_id','correct','knowledge',"max_val"]) + # dico kc + kc = df['knowledge'] + kcT = dfTest['knowledge'] + kc = flattern_arrays(kc.values, kcT.values) + num_kc = len(kc) + dico_kc = { k:v for (k,v) in zip(kc, range(len(kc)))} + # dico users + users = df['user_id'] + usersT = dfTest['user_id'] + users = flattern_arrays(users.values, usersT.values) + num_users = len(users) + dico_users = { k:v for (k,v) in zip(users, range(num_users))} + # dico items and their associated kc + itemsDT = df['item_id'] + nb_item_train = len(flattern_array(itemsDT.values)) + itemsT = dfTest['item_id'] + items = flattern_arrays(itemsDT.values, itemsT.values) + num_items = len(items) + dico_items = { k:v for (k,v) in zip(items, range(num_items))} + d_quest_val = {} + dico_items, d_quest_val = parse_item_values(df[['item_id', 'max_val']], dico_items, d_quest_val) + dico_items, d_quest_val = parse_item_values(dfTest[['item_id', 'max_val']], dico_items, d_quest_val) + + for quest_val in d_quest_val: + quest_val = flattern_array(np.array(quest_val)) + return dico_kc, dico_users, dico_items, d_quest_val, nb_item_train + +def parse_dataframe(data, dico_kc, dico_users, dico_items, d_quest_val, nb_item_train, is_train = True): + df = pd.read_csv(data, names=['user_id', 'item_id','correct','knowledge','max_val']) + + # Compute table of positive and negative items by KC and Users + # and the dictionary that associate the KC to a question/answer + num_kc = len(dico_kc) + num_users = len(dico_users) + # Find positive items for each kc/user + triplets = [] + y_true = [] + for k in range(num_kc): + triplets.append([]) + y_true.append([]) + k = 0 + if(is_train): + item_users = {} + items_kc = np.full(len(dico_items),0) + grouped_kc = df.groupby('knowledge') + for kc_name, df_kc in grouped_kc: + # Find positive items for each user + grouped = df_kc.groupby('user_id') + for group_name, df_group in grouped: + for row_index, row in df_group.iterrows(): + col = row['item_id'] + q,r = parse_it(col) + q = int(q) + #on en garde une aleatoirement pour le triplet + if(is_train): + for r_kept in range(1):#len(d_quest_val[q])): + r_kept = r + while(r_kept == r) and (len(d_quest_val[q]) > 1): + r_kept = random.randint(0,len(d_quest_val[q])-1) + col_neg_kept = str(q)+'_'+str(d_quest_val[q][r_kept]) + #print(r_kept, r) + amplitude = 1*(np.abs(r-r_kept) + 1) + triplets[dico_kc[int(kc_name)]].append([dico_users[group_name], dico_items[col], dico_items[col_neg_kept], amplitude]) + if(dico_items[col] not in item_users): + item_users[dico_items[col]] = [] + item_users[dico_items[col]].append(dico_users[group_name]) + y_true[dico_kc[int(kc_name)]].append(r > r_kept) + items_kc[dico_items[col]] = int(kc_name) + else: + # a voir, dans la decision ils doivent etre tous plus loin... + # on fait toutes les paires + # a bien verifier !!!! + for j in range(len(d_quest_val[q])): + #r_kept = random.randint(0,len(d_quest_val[q])-1) + r_kept = d_quest_val[q][j] + col_neg_kept = str(q)+'_'+str(r_kept) + amplitude = 1*(np.abs(r-r_kept) + 1 ) + if(r >= r_kept): + triplets[dico_kc[int(kc_name)]].append([dico_users[group_name], dico_items[col], dico_items[col_neg_kept], amplitude]) + y_true[dico_kc[int(kc_name)]].append(r > r_kept) + else: + triplets[dico_kc[int(kc_name)]].append([dico_users[group_name], dico_items[col_neg_kept], dico_items[col], amplitude]) + y_true[dico_kc[int(kc_name)]].append(r > r_kept) + for k in range(num_kc): + triplets[k] = np.array(triplets[k]) + y_true[k] = np.array(y_true[k]) + + + if(is_train): + write_file_std(data[:-4]+"_kc.txt", items_kc[0:nb_item_train]) + return dico_items, triplets, y_true, item_users + else: + return dico_items, triplets, y_true + +def compute_pred(all_predictions, test, y_test, dico_users, dico_items): + r = 0 + all_test = test[0] + for i in range(1,len(test)): + all_test = np.concatenate((test[i],all_test),axis=0) + l = list(dico_items) + list_quest = [] + for i in range(len(all_test)): + q,r = parse_it(l[all_test[i,1]]) + list_quest.append(int(q)) + all_test = np.concatenate((all_test,np.array(list_quest).reshape(-1,1)), axis=1) + + responses = [] + list_user = flattern_array(all_test[:,0]) + for u in list_user: + my_users = all_test[:,0] == u + list_quest = flattern_array(all_test[my_users,4]) + for quest in list_quest: + rows = all_test[:,4] == quest + my_rows = np.logical_and(rows,my_users) + + # we go the rows with all the modalities + modality = -1 + for t in range(len(all_test[my_rows])): + ione = all_test[my_rows][t][1] + itwo = all_test[my_rows][t][2] + q1,r1 = parse_it(l[ione]) + q2,r2 = parse_it(l[itwo]) + if(all_predictions[my_rows][t] == 1): + modality = r1 + else: + modality = r2 + responses.append([dico_users[u], quest, modality]) + + return responses + + + +############################# +############################# +# HP +epochs = 20 +batch_size = 1024 +alpha = 1 + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument("-dtrain", "--dataTrain", help="data file") + parser.add_argument("-dtest", "--dataTest", help="data file") + parser.add_argument("-a", "--alpha", help="float") + args = parser.parse_args() + dataTrain = args.dataTrain + dataTest = args.dataTest + filename = dataTrain[:-4] + if args.alpha: + alpha = int(args.alpha) + + dico_kc, dico_users, dico_items, d_quest_val, nb_item_train = read_file(dataTrain, dataTest) + embedding_size = len(dico_kc) + dico_items, t_train, ty_train, item_users = parse_dataframe(dataTrain, dico_kc, dico_users, dico_items, d_quest_val, nb_item_train, True) + train, y_train = generate_quad(dico_items, t_train, ty_train, item_users, d_quest_val) + dico_items, test, y_test = parse_dataframe(dataTest, dico_kc, dico_users, dico_items,d_quest_val, nb_item_train, False) + + num_users = len(dico_users) + num_items = len(dico_items) + cc_exp_row, cc_exp_col = init_frequencielle(train, num_users, num_items, embedding_size, dico_items, d_quest_val) + bpr_model = BPRModel(batch_size, num_users, num_items, embedding_size, device, cc_exp_row, cc_exp_col) + bpr_model = bpr_model.to(device) + # Training loop + acc = bpr_model.train(train, len(dico_kc), epochs, batch_size, y_train) + + new_embedding_value = bpr_model.user_embeddings.weight.clone().detach().cpu().numpy() + write_file_doa(filename, new_embedding_value, train, dico_kc, dico_users, dico_items) + doa, rdoa = compute_doa(filename) + # write embed items + #new_embedding_items = bpr_model.item_embeddings.weight.clone().detach().cpu().numpy() + #write_file(filename+"embedding_items.csv", new_embedding_items[0:nb_item_train]) + + #write_file_std(FileName1+"kc_emb.txt", dico_items) + #print("Accuracy and Doa on train dataset:", acc, doa) + # Test + acc, precision, rappel, all_predictions = bpr_model.evaluate_model(test, len(dico_kc), y_test) + s = str(acc) +","+ str( precision)+ ","+str(rappel)+ ","+str(doa) + #for i in range(len(rdoa)): + # s = s + ','+ str(rdoa[i]) + print(s) + + # coding users and kc from user_label.csv + ''' + os.getcwd() + dir_path = os.path.dirname(os.path.realpath(dataTrain)) + file = dir_path+'/user_label.csv' + dfQE = pd.read_csv(file, names=['user_id', 'knowledge',"value"]) + # create matrix + questEval = np.full((num_users, embedding_size),-1) + #fill the matrix + uu = flattern_array(dfQE['user_id'].values) + for t in dfQE.values: + if(int(t[0]) in dico_users): + ind = dico_users[int(t[0])] + kc = dico_kc[int(t[1])] + val = int(t[2]) + questEval[ind, kc] = val + write_file(filename+"_user_quest_label.csv", questEval) + ''' +the_predictions = compute_pred(all_predictions, test, y_test, dico_users, dico_items) +file = "_test_predictions_"+str(alpha)+".csv" +write_file(filename + file, np.array(the_predictions)) \ No newline at end of file diff --git a/code/nary_model/main_nary_cv.py b/code/nary_model/main_nary_cv.py new file mode 100644 index 0000000000000000000000000000000000000000..609ed98d1df6a2b1a7237e1b13951ca1d4415b4d --- /dev/null +++ b/code/nary_model/main_nary_cv.py @@ -0,0 +1,107 @@ +import argparse +import torch +import torch.nn as nn +import torch.optim as optim +from torch.utils.data import DataLoader, TensorDataset +import numpy as np +import torch.nn.functional as F +import pandas as pd +from scipy import stats +import csv +import json + +from collections import Counter +from sklearn.metrics import roc_auc_score +from sklearn.metrics import mean_squared_error +from sklearn.metrics import accuracy_score +from sklearn.metrics import precision_score +from sklearn.metrics.cluster import contingency_matrix +from utils import * +from BPR_model import * + +dtype = torch.float32 + +if torch.cuda.is_available(): + dev = "cuda:0" +else: + dev = "cpu" +device = torch.device(dev) + +def evaluate_all(dataTrain, dataTest, filename): + dico_kc, dico_users, dico_items, d_quest_val, nb_item_train = read_file_cv(dataTrain, dataTest) + embedding_size = len(dico_kc) + dico_items, t_train, ty_train, item_users = parse_dataframe_cv(dataTrain, dico_kc, dico_users, dico_items, d_quest_val, True) + train, y_train = generate_quad(dico_items, t_train, ty_train, item_users, d_quest_val) + dico_items, test, y_test = parse_dataframe_cv(dataTest, dico_kc, dico_users, dico_items,d_quest_val, False) + + num_users = len(dico_users) + num_items = len(dico_items) + cc_exp_row, cc_exp_col = init_frequencielle(train, num_users, num_items, embedding_size, dico_items, d_quest_val) + bpr_model = BPRModel(batch_size, num_users, num_items, embedding_size, device, cc_exp_row, cc_exp_col) + bpr_model = bpr_model.to(device) + # Training loop + acc = bpr_model.train(train, len(dico_kc), epochs, batch_size, y_train) + new_embedding_value = bpr_model.user_embeddings.weight.clone().detach().cpu().numpy() + write_file_doa(filename, new_embedding_value, train, dico_kc, dico_users, dico_items) + doa, doatot = compute_doa(filename) + # write embed items + new_embedding_items = bpr_model.item_embeddings.weight.clone().detach().cpu().numpy() + write_file(filename+"embedding_items.csv", new_embedding_items[0:nb_item_train]) + # Test + acc, precision, rappel, all_decisions = bpr_model.evaluate_model(test, len(dico_kc), y_test) + ''' + s = str(acc) +","+ str( precision)+ ","+str(rappel)+ ","+str(doa) + for i in range(embedding_size): + s = s + ','+ str(doatot[i]) + print(s) + ''' + return acc, precision, rappel, doa + +def cross_validation(data, kfolds, filename): + n = data.shape[0] + fold_size = n // kfolds + + indices = np.arange(n) + np.random.shuffle(indices) + doa = [] + acc = [] + precision = [] + rappel = [] + for i in range(kfolds): + start = i * fold_size + end = (i + 1) * fold_size if i != kfolds - 1 else n + validation_indices = indices[start:end] + training_indices = np.concatenate([indices[:start], indices[end:]]) + validation_data = data[validation_indices] + training_data = data[training_indices] + dataTrain = pd.DataFrame(data = training_data, columns=['user_id', 'item_id','correct','knowledge',"max_val"]) + dataTest = pd.DataFrame(data = validation_data, columns=['user_id', 'item_id','correct','knowledge',"max_val"]) + + a, p, r, d = evaluate_all(dataTrain, dataTest, filename) + acc.append(a) + precision.append(p) + rappel.append(r) + doa.append(d) + acc = np.array(acc) + precision = np.array(precision) + rappel = np.array(rappel) + doa = np.array(doa) + print("avg values", np.mean(acc), np.mean(precision), np.mean(rappel), np.mean(doa)) +############################# +############################# +# HP +epochs = 30 +batch_size = 1024 + + +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument("-dt", "--data", help="data file") + args = parser.parse_args() + data = args.data + + filename = data[:-4] + df = pd.read_csv(data) + cross_validation(df.values, 5, filename) + + diff --git a/code/nary_model/utils.py b/code/nary_model/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..8280c032c8a68901ad2d1b404160fa635b84fd36 --- /dev/null +++ b/code/nary_model/utils.py @@ -0,0 +1,377 @@ +import numpy as np +import pandas as pd +import csv +import random +from sklearn.preprocessing import normalize + +def write_file_std(name, data): + f = open(name, 'w') + for i in range(len(data)): + f.write(str(data[i])+"\n") + f.close() + +def write_file(name, data): + f = open(name, 'w') + writer = csv.writer(f) + for i in range(data.shape[0]): + writer.writerow(data[i]) + f.close() + +def fromDFtoArray(name, vector, type_value): + # Read dataframe and generate a matrix or + # a vector of appropriate type + df = pd.read_csv(name,index_col=None, header=None) + cols = df.columns + if(type_value == "f"): + for col in cols: + df[col] = df[col].astype(float) + if(type_value == 'i'): + for col in cols: + df[col] = df[col].astype(int) + r = df.values + if(vector): + r = r.reshape(-1,) + return r + +def parse_it(it): + # Extract question/answer from label + p = it.find('_') + q = it[:p] + r = it[p+1:] + r = int(float(r)) + return q,r + +def parse_item_values(d, dico_items, d_quest_val): + for t in d.values: + col = t[0] + ma = t[1] + if col not in dico_items: + dico_items[col] = len(dico_items) + # Warning, all user's answers are positives! + q,r = parse_it(col) + q = int(q) + # on rajoute toutes les valeurs avant r jusqu'a 0 + if(q not in d_quest_val): + d_quest_val[q] = [] + + for val in range(ma): + if(val not in d_quest_val[q]): + d_quest_val[q].append(val) + col_neg = str(q)+'_'+str(val) + if col_neg not in dico_items: + dico_items[col_neg] = len(dico_items) + return dico_items, d_quest_val + +def flattern_arrays(user_idx, user_idx_test): + # Transform two arrays in an array of unique values + liste1 = list(user_idx) + liste2 = list(user_idx_test) + new = list(set(liste2).difference(liste1)) + liste1.sort() + liste1 = np.array(liste1).reshape((-1,1)) + liste1 = np.unique(liste1).tolist() + new.sort() + new = np.array(new).reshape((-1,1)) + new = np.unique(new).tolist() + if(len(new) > 0): + users = liste1 + new + else: + users = liste1 + return users + +def flattern_array(user_idx): + # Transform an array in an array of unique values + users = list(user_idx.reshape((-1,1))) + users.sort() + users = np.array(users) + users = np.unique(users) + return users + +def parse_kc(s): + d = [] + s = s[1:] + while(s.find(',') > 0): + t = s[:s.find(',')] + d.append(int(t)) + s = s[s.find(',')+1:] + s = s[:len(s)-1] + d.append(int(s)) + return d + +def parse(data): + d = [] + for i in range(len(data)): + s = data[i][1:] + while(s.find(',') > 0): + t = s[:s.find(',')] + d.append(int(t)) + s = s[s.find(',')+1:] + s = s[:len(s)-1] + d.append(int(s)) + d = flattern_array(np.array(d)) + return d + +def compute_kc_user(name): + fileName = name+"_responses.csv" + f = open(fileName, "r") + lines = f.readlines() + kc_user = [] + kc_user_val = [] + dico_u = [] + old_k = -1 + num_kc = 0 + for line in lines: + r = line.split(',') + if(int(r[0]) != old_k): + num_kc = num_kc + 1 + if(old_k != -1): + kc_user.append(new_kc_user) + kc_user_val.append(new_kc_user_val) + dico_u.append(dico_uk) + new_kc_user = [] + new_kc_user_val = [] + dico_uk = {} + old_k = int(r[0]) + user = int(r[1]) + if user not in dico_uk: + dico_uk[user] = len(dico_uk) + new_kc_user.append([]) + new_kc_user_val.append([]) + # add item and values + for i in range(2,len(r)): + q,rep = parse_it(r[i]) + new_kc_user[dico_uk[user]].append(int(q)) + new_kc_user_val[dico_uk[user]].append(rep) + kc_user.append(new_kc_user) + kc_user_val.append(new_kc_user_val) + dico_u.append(dico_uk) + # sort files + for k in range(len(kc_user)): + for u in range(len(kc_user[k])): + kc_user[k][u], kc_user_val[k][u] = zip(*sorted(zip(kc_user[k][u], kc_user_val[k][u]))) + return kc_user, kc_user_val, dico_u, num_kc + +def doa_creuse(F, kc_user, kc_user_val, dico_u): + doa = [] + user_embed = F + num_kc = len(kc_user) + for k in range(num_kc): + Z1 = 0.0 + v = 0.0 + users = list(dico_u[k]) + for a in range(len(kc_user[k])): + for b in range(len(kc_user[k])): + Z2 = 0.0 + Z0 = 0.0 + ua = users[a] + ub = users[b] + if(user_embed[ua][k] > user_embed[ub][k]): + ia = a + ib = b + ma = 0 + mb = 0 + while(ma < len(kc_user[k][ia])) and (mb < len(kc_user[k][ib])): + if(kc_user[k][ia][ma] < kc_user[k][ib][mb]): + ma = ma + 1 + else: + if(kc_user[k][ia][ma] > kc_user[k][ib][mb]): + mb = mb + 1 + else: + # meme item + if(kc_user_val[k][ia][ma] > kc_user_val[k][ib][mb]): + Z2 = Z2 + 1 + Z0 = Z0 + 1 + else: + if(kc_user_val[k][ia][ma] < kc_user_val[k][ib][mb]): + Z0 = Z0 + 1 + ma = ma + 1 + mb = mb + 1 + if(Z0 > 0): + Z1 = Z1 + 1 + v = v + Z2/Z0 + + if(Z1 > 0): + v = v / Z1 + doa.append(v) + return doa + +def read_file_cv(df, dfTest): + kc = df['knowledge'] + kcT = dfTest['knowledge'] + kc = flattern_arrays(kc.values, kcT.values) + num_kc = len(kc) + dico_kc = { k:v for (k,v) in zip(kc, range(len(kc)))} + # dico users + users = df['user_id'] + usersT = dfTest['user_id'] + users = flattern_arrays(users.values, usersT.values) + num_users = len(users) + dico_users = { k:v for (k,v) in zip(users, range(num_users))} + # dico items and their associated kc + itemsDT = df['item_id'] + nb_item_train = len(flattern_array(itemsDT.values)) + itemsT = dfTest['item_id'] + items = flattern_arrays(itemsDT.values, itemsT.values) + num_items = len(items) + dico_items = { k:v for (k,v) in zip(items, range(num_items))} + d_quest_val = {} + dico_items, d_quest_val = parse_item_values(df[['item_id', 'max_val']], dico_items, d_quest_val) + dico_items, d_quest_val = parse_item_values(dfTest[['item_id', 'max_val']], dico_items, d_quest_val) + + for quest_val in d_quest_val: + quest_val = flattern_array(np.array(quest_val)) + + return dico_kc, dico_users, dico_items, d_quest_val, nb_item_train + +def parse_dataframe_cv(df, dico_kc, dico_users, dico_items, d_quest_val, is_train = True): + # Compute table of positive and negative items by KC and Users + # and the dictionary that associate the KC to a question/answer + num_kc = len(dico_kc) + num_users = len(dico_users) + # Find positive items for each kc/user + triplets = [] + y_true = [] + for k in range(num_kc): + triplets.append([]) + y_true.append([]) + k = 0 + if(is_train): + item_users = {} + grouped_kc = df.groupby('knowledge') + for kc_name, df_kc in grouped_kc: + # Find positive items for each user + grouped = df_kc.groupby('user_id') + for group_name, df_group in grouped: + for row_index, row in df_group.iterrows(): + col = row['item_id'] + q,r = parse_it(col) + q = int(q) + if(is_train): + for r_kept in range(1): + r_kept = r + while(r_kept == r) and (len(d_quest_val[q]) > 1): + r_kept = random.randint(0,len(d_quest_val[q])-1) + col_neg_kept = str(q)+'_'+str(d_quest_val[q][r_kept]) + amplitude = 1*(np.abs(r-r_kept) + 1) + triplets[dico_kc[int(kc_name)]].append([dico_users[group_name], dico_items[col], dico_items[col_neg_kept], amplitude]) + if(dico_items[col] not in item_users): + item_users[dico_items[col]] = [] + item_users[dico_items[col]].append(dico_users[group_name]) + y_true[dico_kc[int(kc_name)]].append(r > r_kept) + else: + # a voir, dans la decision ils doivent etre tous plus loin... + # on fait toutes les paires + # a bien verifier !!!! + for j in range(len(d_quest_val[q])): + r_kept = d_quest_val[q][j] + col_neg_kept = str(q)+'_'+str(r_kept) + amplitude = 1*(np.abs(r-r_kept) + 1 ) + if(r >= r_kept): + triplets[dico_kc[int(kc_name)]].append([dico_users[group_name], dico_items[col], dico_items[col_neg_kept], amplitude]) + y_true[dico_kc[int(kc_name)]].append(r > r_kept) + else: + triplets[dico_kc[int(kc_name)]].append([dico_users[group_name], dico_items[col_neg_kept], dico_items[col], amplitude]) + y_true[dico_kc[int(kc_name)]].append(r > r_kept) + for k in range(num_kc): + triplets[k] = np.array(triplets[k]) + y_true[k] = np.array(y_true[k]) + + + if(is_train): + return dico_items, triplets, y_true, item_users + else: + return dico_items, triplets, y_true + +def generate_quad(dico_items, triplets, t_trainy, item_users, d_quest_val): + l = list(dico_items) + quadriplets = [] + y = [] + for k in range(len(triplets)): + t_quadriplets = [] + t_y = [] + for i in range(len(triplets[k])): + t = triplets[k][i] + q,r = parse_it(l[t[1]]) + q = int(q) + # on prend une valeur differente pour l'autre user a eloigner... + # on prend user sur autre modalite + q,val = parse_it(l[t[2]]) + q = int(q) + col_neg = str(q)+'_'+str(val) + if(t[2] in item_users): + u = random.randint(0,len(item_users[t[2]])-1) + uu = item_users[t[2]][u] + t_quadriplets.append([t[0], t[1], t[2], uu, t[3]]) + t_y.append(t_trainy[k][i]) + else: + t_quadriplets.append([t[0], t[1], t[2], t[0], 1]) + t_y.append(t_trainy[k][i]) + quadriplets.append(np.array(t_quadriplets)) + y.append(np.array(t_y)) + return quadriplets, y + +def init_frequencielle(train, n, p, dim, dico_items, d_quest_val): + it = list(dico_items) + cc_exp_row = np.random.rand(n,dim) + cc_exp_col = np.random.rand(p,dim) + for k in range(len(train)): + for i in range(len(train[k])): + user = train[k][i][0] + item = train[k][i][1] + q,r = parse_it(it[item]) + q = int(q) + mv = int(len(d_quest_val[q])/2) + middle_value = d_quest_val[q][mv] + if(r > middle_value): + cc_exp_row[user][k] += int(r) ## 1 + cc_exp_col[item][k] += int(r) + if(r < middle_value - 1): + cc_exp_row[user][k] -= int(r) + cc_exp_col[item][k] -= int(r) + + cc_exp_row = normalize(cc_exp_row, axis=1, norm='l1') + cc_exp_col = normalize(cc_exp_col, axis=1, norm='l1') + + return cc_exp_row, cc_exp_col + +def write_file_doa(FileName, embed, train, dico_kc, dico_users, dico_items): + # write embeddings + it = list(dico_items) + ut = list(dico_users) + nom = FileName+"_embed.csv" + f = open(nom, 'w') + writer = csv.writer(f) + for i in range(embed.shape[0]): + row = embed[i] + writer.writerow(row) + f.close() + # write R the responses + # user followed by the list of item_resp groupes in block of k + nom = FileName+"_responses.csv" + f = open(nom, 'w') + writer = csv.writer(f) + previous_user = -1 + for k in range(len(dico_kc)): + for i in range(len(train[k])): + if(previous_user != -1) and (train[k][i][0] != previous_user): + positive_items = list(set(flattern_array(np.array(positive_items)))) + row = row + positive_items + writer.writerow(row) + if(train[k][i][0] != previous_user): + row = [k]+[train[k][i][0]] + positive_items = [] + previous_user = train[k][i][0] + positive_items.append(it[train[k][i][1]]) + #remove duplicate positive_items + positive_items = list(set(flattern_array(np.array(positive_items)))) + row = row + positive_items + writer.writerow(row) + f.close() + +def compute_doa(filename): + F = fromDFtoArray(filename+"_embed.csv",False,'f') + kc_user, kc_user_val, dico_u, num_kc = compute_kc_user(filename) + r = doa_creuse(F, kc_user, kc_user_val, dico_u) + doa = np.mean(r) + return doa,r + diff --git a/code/other/__pycache__/utils.cpython-310.pyc b/code/other/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ca89d3d114695cb271446ffb468e4c1b26810804 Binary files /dev/null and b/code/other/__pycache__/utils.cpython-310.pyc differ diff --git a/code/other/decision_tree.py b/code/other/decision_tree.py new file mode 100644 index 0000000000000000000000000000000000000000..bfba35be1143836458dd6cf1a684add864da03cd --- /dev/null +++ b/code/other/decision_tree.py @@ -0,0 +1,395 @@ +import argparse +import pandas as pd +import numpy as np +import csv +from matplotlib import gridspec +from sklearn.manifold import TSNE +import seaborn as sns +from sklearn import preprocessing +import matplotlib.pyplot as plt +from utils import * +from sklearn.metrics import silhouette_score, silhouette_samples +from sklearn.tree import DecisionTreeClassifier, export_text +import os + +def new_silhouette(X, cluster_labels): + silhouette_avg = silhouette_score(X, cluster_labels) + return silhouette_avg + +class Tree: + def __init__(self, feature, threshold, feats, users, selected_features): + self.children_left = None + self.children_right = None + self.feature = None #feature + self.threshold = None #threshold + self.attributes = feats + self.feat_selected = selected_features + self.users = users + self.users_quest = [] + + def apply_feature(self, feature, threshold, H_users, extend, min_users): + self.feature = feature + self.threshold = threshold + h = H_users[:,feature] + part = h <= threshold + part = (1 * part).reshape(-1) + intersection = self.users * part + new_feats = self.attributes.copy() + new_feats.remove(feature) + new_selected_feats = self.feat_selected.copy() + new_selected_feats.append(feature) + right_users = self.users - intersection + if (extend == True): + if(np.sum((intersection)) >= min_users) and (np.sum((right_users)) >= min_users): + self.children_left = Tree(feature, threshold, new_feats, intersection, new_selected_feats) + self.children_right = Tree(feature, threshold, new_feats, right_users, new_selected_feats) + else: + self.children_left = None + self.children_right = None + return self.children_left, self.children_right + else: + return intersection, right_users + + def findBestAttribute(self, partitions, H_users, min_users): + f = np.array(self.feat_selected).reshape(-1) + X = H_users[self.users == 1,:] + X = X[:,f] + iBestAtt = -1 + best_attribute = 0 + for i in self.attributes: + a = -1 + b = -1 + # We test the two classes + feature = int(partitions[i,0]) + threshold = partitions[i,1] + left_users, right_users = self.apply_feature(feature, threshold, H_users, False, min_users) + group1 = left_users[self.users == 1] + group2 = right_users[self.users == 1] + if(np.sum(group1) > 0) and (np.sum(group1) < np.sum(self.users)): + a = new_silhouette(X, group1) + if(np.sum(group2) > 0) and ( np.sum(group2) < np.sum(self.users)): + b = new_silhouette(X, group2) + if(iBestAtt == -1) or (a > best_attribute): + iBestAtt = i + best_attribute = a + if(iBestAtt == -1) or (b > best_attribute): + iBestAtt = i + best_attribute = b + return iBestAtt + +def compute_initial_partition(h, n): + h = h.reshape(-1,1) + # Sort data + h_sort, ind_sort = zip(*sorted(zip(h, list(range(len(h)))))) + # Find threshold + limits = int(len(h) * 20/100.0) + labels = np.full(len(h),0) + max_silhouette = 0.0 + max_split = 0.0 + for i in range(0, limits): + labels[ind_sort[i]] = 1 + for i in range(limits, len(h)-limits): + labels[ind_sort[i]] = 1 + silhouette_avg = new_silhouette(h, labels) + if(silhouette_avg > max_silhouette): + max_silhouette = silhouette_avg + max_split = i + best_part = np.copy(labels) + threshold = h_sort[max_split] + # Reconstruct the partition: + part = h <= threshold[0] + part = (1 * part).reshape(-1) + return float(threshold[0]), max_silhouette + +def tree_traversal(tree, min_users, dim): + if(tree == None) or (len(tree.feat_selected) == dim ): + return + else: + #left + feature = tree.findBestAttribute(partitions_init, H_users, min_users) + if(feature != -1): + threshold = partitions_init[feature,1] + treeL, treeR = tree.apply_feature(feature, threshold, H_users, True, min_users) + tree_traversal(treeL, min_users, dim) + tree_traversal(treeR, min_users, dim) + +def print_node(tree, level, pref, gauche, theClusters): + first = 0 + global nbc + if(tree.threshold != None): + th = "%.2f" % tree.threshold + else: + th = "nan" + effectif = '' + if gauche: + sign = '<=' + if(tree.children_left != None): + effectif = str(np.sum(tree.children_left.users)) + else: + if(tree.children_right != None): + effectif = str(' cluster ') + str(nbc) + " ("+ str(np.sum(tree.users) - np.sum(tree.children_right.users))+")" + theClusters.append((len(theClusters)+1)* (tree.users-tree.children_right.users)) + print("| "+pref + ""*level+ "---"+ effectif) + effectif = '' + nbc = nbc + 1 + else: + sign = '>' + if(tree.children_right != None): + effectif = str(np.sum(tree.children_right.users)) + else: + if(tree.children_left != None): + effectif = str(' cluster ') + str(nbc) + " ("+ str(np.sum(tree.users) - np.sum(tree.children_left.users))+")" + nbc = nbc + 1 + theClusters.append((len(theClusters)+1)* (tree.users-tree.children_left.users)) + first = 1 + if(tree.children_left == None) and (tree.children_right == None): + effectif = str(' cluster ') + str(nbc) + " ("+ str(np.sum(tree.users))+")" + theClusters.append((len(theClusters)+1)*tree.users) + if(gauche): + print("| "+pref + "---"+ effectif) + nbc = nbc + 1 + first = 1 + return 0 + if(first == 0): + print("| "+pref + "--- feature_"+str(tree.feature)+ " "+sign+" " +str(th)) + else: + print("| "+pref + "--- feature_"+str(tree.feature)+ " "+sign +" "+str(th)) + print("| "+pref + "| "+ "---")#+ effectif) + return 1 + + +def print_s(vect): + s = '[' + for i in range(len(vect)-1): + if(vect[i] == 1): + s = s + str(i) + ", " + if(vect[len(vect)-1] == 1): + s = s + str(len(vect)-1) + s = s +']' + s = '' + return s + +def print_nodeEval(tree, level, pref, gauche, questClusters): + first = 0 + if(tree.threshold != None): + th = "%.2f" % tree.threshold + else: + th = "nan" + effectif = '' + if gauche: + sign = '<=' + if(tree.children_left != None): + effectif = str(np.sum(tree.children_left.users)) + else: + if(tree.children_right != None): + questClusters.append(tree.users_quest) + diff = tree.users - tree.children_right.users + effectif = str('class ') + str(np.sum(tree.users) - np.sum(tree.children_right.users)) + print_s(diff) + theClusters.append((len(theClusters)+1) * (tree.users-tree.children_right.users)) + #print("| "+pref + "---"+ effectif) + effectif = '' + else: + sign = '>' + if(tree.children_right != None): + effectif = str(np.sum(tree.children_right.users)) + else: + if(tree.children_left != None): + questClusters.append(tree.users_quest) + diff = tree.users - tree.children_left.users + effectif = str('class ') + str(np.sum(tree.users) - np.sum(tree.children_left.users)) + print_s(diff) + theClusters.append((len(theClusters)+1)* (tree.users-tree.children_left.users)) + first = 1 + if(tree.children_left == None) and (tree.children_right == None): + questClusters.append(tree.users_quest) + effectif = str('class ') + str(np.sum(tree.users))+ print_s(tree.users_quest)+print_s(tree.users) + theClusters.append((len(theClusters)+1)*tree.users) + if(gauche): + #print("| "+pref + "---"+ effectif) + first = 1 + return 0 + ''' + if(first == 0): + print("| "+pref + "--- feature"+str(tree.feature)+ sign +str(th) + " "+ effectif) #+ print_s(tree.users_quest)) + else: + print("| "+pref + "--- feature"+str(tree.feature)+ sign +str(th))#+ print_s(tree.users_quest)) + print("| "+pref + "| "+ "---"+ effectif) + ''' + return 1 + +def showTreeEval(tree,level, pref, theClusters): + if(tree == None): + return + else: + r = print_nodeEval(tree, level, pref, True, theClusters) + if(r == 1): + showTreeEval(tree.children_left,level+1, pref+"| ", theClusters) + r = print_nodeEval(tree, level, pref, False, theClusters) + showTreeEval(tree.children_right,level+1, pref+"| ", theClusters ) + +def showTree(tree,level, pref, theClusters): + if(tree == None): + return + else: + r = print_node(tree, level, pref, True, theClusters) + if(r == 1): + showTree(tree.children_left,level+1, pref+"| ", theClusters) + r = print_node(tree, level, pref, False, theClusters) + showTree(tree.children_right,level+1, pref+"| ", theClusters) + +def tree_eval(tree, quest_user, user_id, questClusters, lower): + if(tree == None): + return + else: + feat = tree.feature + if(lower == 0): + if(feat != None) and ((quest_user[feat] == 1) or (quest_user[feat] == -1) or (quest_user[feat] == 0)): + if(tree.children_left != None): + tree_eval(tree.children_left, quest_user, user_id, questClusters, lower) + else: + tree.users_quest.append(user_id) + else: + if(feat != None) and ((quest_user[feat] == 1) or (quest_user[feat] == -1)):# or (quest_user[feat] == 0)): + if(tree.children_left != None): + tree_eval(tree.children_left, quest_user, user_id, questClusters, lower) + else: + tree.users_quest.append(user_id) + + if(lower == 0): + if(feat != None) and ((quest_user[feat] == 1) or (quest_user[feat] == -1) or (quest_user[feat] == 2)): + if(tree.children_right != None): + tree_eval(tree.children_right, quest_user, user_id, questClusters, lower) + else: + if(tree.children_left != None): + tree.users_quest.append(user_id) + else: + if(feat != None) and ((quest_user[feat] == 1) or (quest_user[feat] == -1)):# or (quest_user[feat] == 2)): + if(tree.children_right != None): + tree_eval(tree.children_right, quest_user, user_id, questClusters, lower) + else: + if(tree.children_left != None): + tree.users_quest.append(user_id) + +def compare_clusters(dtClusters, questClusters, quest): + count = 0 + homogene = np.full((len(questClusters), len(quest[0]),4), 0) + for k in range(len(questClusters)): + #print(np.sum(dtClusters == (k+1)), len(questClusters[k])) + for i in range(len(dtClusters)): + if(dtClusters[i] == (k+1)) and (i in questClusters[k]): + count = count + 1 + for d in range(len(quest[0])): + v = int(quest[i, d]) + if(v != -1): + homogene[k][d][v] = homogene[k][d][v] + 1 + #print(count) + #print("negatifs") + #print(homogene[:,:,0]) + #print("positifs") + #print(homogene[:,:,2]) + print("Purity:",count / float(len(dtClusters))) + +def print_gr(gr): + print(gr) + +## main +if __name__ == '__main__': + parser = argparse.ArgumentParser() + parser.add_argument("-lower", "--lower", help="int") + #parser.add_argument("-dt", "--dataTest", help="data file") + args = parser.parse_args() + lower = int(args.lower) + +min_users = 50 +os.getcwd() +path = os.path.dirname(os.path.realpath(__file__)) +print(path+ "/dt/train_embed.csv") +H_users = fromDFtoArray(path+ "/dt/train_embed.csv",False,'f') +dim = H_users.shape[1] +n = H_users.shape[0] + +''' +# step 1: compute initial partitions +partitions = [] +for j in range(dim): + threshold, max_silhouette = compute_initial_partition(H_users[:,j], n) + partitions.append([j, threshold, max_silhouette]) + #comput_init_part(H_users[:,j], n) + best_part = H_users[:,j] < threshold + best_part = (1 * best_part).reshape(-1) + print(threshold, np.sum(best_part), n - np.sum(best_part), max_silhouette) +# Save the partitions to next time +nom = path+"/xx_partition.csv" +print(nom) +f = open(nom, 'w') +writer = csv.writer(f) +for i in range(len(partitions)): + row = partitions[i] + writer.writerow(row) +f.close() +''' +partitions_init = fromDFtoArray(path+ "/dt/train_partitions.csv",False,'f') + +# Step 2: take the partition with max silhouette value +best_init_part = np.argmax(partitions_init[:,2]) +feature = int(partitions_init[best_init_part,0]) +threshold = partitions_init[best_init_part,1] +all_users = np.full(n,1) +root = Tree(None, None, list(range(dim)), all_users, []) +root.apply_feature(feature, threshold, H_users, True, min_users) + +# Step3 : apply the partitions +tree = root +tree_traversal(tree.children_left, min_users, dim) +tree_traversal(tree.children_right, min_users, dim) + +#Step 4: vizualization +theClusters = [] +nbc = 0 +showTree(tree,0,"", theClusters) +''' +nbc = 0 +showTreeBis(tree,0,"",1)#level, pref) +nbc = 0 +tree_traversal_print(tree, 0, 0) +#tree_rules = export_text(tree, feature_names=list(range(dim))) +''' + +''' +for i in range(2): + #right + feature = tree.children_right.findBestAttribute(partitions_init, H_users) + threshold = partitions_init[feature,1] + tree = tree.children_right.apply_feature(feature, threshold, H_users, True) + #tree = tree.children_right +''' + +# Compute clusters +dtClust = theClusters[0] +#print(0,np.sum((dtClust==0))) +for i in range(1,len(theClusters)): + dtClust = dtClust + theClusters[i] + print_gr(np.where(dtClust==i)) +#print(dtClust) + +# Validation with questionnaires +print("") +file = path+ "/dt/train_user_quest_label.csv" +quest = fromDFtoArray(file,False,'f') +questClusters = [] +for i in range(len(quest)): + # we got a user + # let us consider the tree + # print(quest[i]) + tree_eval(root, quest[i], i, [], lower) + +# Computation of questClusters +showTreeEval(tree,0,"", questClusters) +compare_clusters(dtClust, questClusters, quest) + +#print(len(questClusters)) +#print("les seuils") +#print(partitions_init[:,1]) + + +#print(partitions_init) + \ No newline at end of file diff --git a/code/other/dt/train_embed.csv b/code/other/dt/train_embed.csv new file mode 100644 index 0000000000000000000000000000000000000000..14bb1a32599b8f752b782c933416b7f868e4b10c --- /dev/null +++ b/code/other/dt/train_embed.csv @@ -0,0 +1,917 @@ +0.04157616,0.011093615,0.49425778,0.15425614,0.61495125,0.3745633,0.23755656,0.3941416,0.22161338,0.40264127,0.054926023,0.10284495,0.329603,0.54301304,0.8305358,0.104649,-0.24013713 +0.7507973,0.3334559,0.16311094,0.55610627,0.2468383,0.33254436,-0.26325276,-0.082144834,0.50462717,0.06641434,-0.040472396,0.3666043,0.1415284,0.046198998,0.12004245,-0.072327696,-0.46555606 +-0.20551085,-0.16804822,-0.066476725,0.19622111,0.18471059,0.2929957,-0.18105112,-0.25509027,0.16577752,1.098182,-0.16377679,0.20346011,-0.13861483,-0.98055816,-0.10187633,0.035910785,0.21814142 +0.6898233,-0.16883416,0.3597533,0.48988536,0.1973332,0.16374211,0.40165213,0.21283469,0.2746803,0.25655675,0.2540997,0.029141543,0.114051476,0.02218969,-0.6494432,0.09112999,-0.027290147 +-0.27399927,0.045672327,0.16076438,0.27755696,-0.03994168,-0.12910101,0.45608822,-0.5069154,-0.3935636,0.25711134,-0.04481848,-0.08777926,0.57161117,0.28030175,1.103079,-0.47171468,-0.38220528 +0.18507743,-0.613758,0.0071925614,-0.16594805,-0.24677318,0.14662328,-0.3792447,-0.25574163,0.109997265,0.3450565,-0.12614895,-0.055570997,-0.029096272,0.031007163,0.24265467,-0.052425746,0.05979432 +0.4825423,-0.20162109,-0.1788628,-0.18337193,0.29627103,0.2961781,-0.58016384,-0.12076834,0.51106244,0.17021616,0.036064893,-0.017453553,-0.22945054,-0.03288126,0.31161267,0.10864741,0.10659939 +0.48431537,0.14031558,-0.15923935,0.04678522,0.4842656,0.0361215,0.035919756,0.02377627,0.19646113,-0.19402397,0.052505735,0.03668916,-0.20441236,0.5585854,-0.4537436,0.49795884,-0.011748163 +-0.47724184,-0.1212976,0.08939735,0.25495696,0.6469739,0.22623914,0.3413505,-0.5962663,0.49883804,0.5517068,-0.64999604,-0.05489551,-0.33683285,-0.84347117,-0.6028137,-0.48519427,0.51376545 +-0.0036623331,-0.07426113,-0.24652778,-0.034201633,0.07914431,-0.20482543,-0.3624728,-0.09996605,-0.13567919,0.82577044,-0.19895671,-0.21139988,-0.10544076,0.038290888,0.44450328,-0.17876342,0.21634217 +0.12295484,0.052395497,0.008643411,0.1280326,0.17064482,0.14809085,-0.027529618,-0.0360413,0.09113793,-0.021331187,-0.0089892475,0.12505758,0.050799474,0.051483106,0.026428565,-0.06892708,0.080318935 +0.05084439,-0.22590299,-0.09176756,0.39471322,0.3147226,0.22156344,-0.21531673,0.015631067,0.14969884,0.86130124,0.14825054,-0.297686,-0.21686792,0.18975401,0.7067127,-0.21055439,0.048018333 +0.12569165,-0.1320214,0.12151151,0.3701044,0.19744608,0.14519602,0.2468547,0.15619394,-0.040315785,0.17741956,0.27241072,0.13780692,0.18206306,0.13567388,-0.5338518,0.16607285,0.06609848 +0.12394474,0.14600024,0.12985532,0.5893853,0.061278075,-0.4252983,0.12426126,0.13752364,0.11803319,0.1527977,-0.119213045,0.18706495,0.25254607,-0.117272615,0.41242316,-0.085127205,0.06808171 +0.8125806,-0.09408951,-0.2936957,0.24349263,0.796473,0.702837,-0.4161668,-0.04280632,0.6001384,-0.5840076,-0.5212211,-0.29018882,-0.20230177,0.5606661,-0.14170077,-0.039243385,-0.11028773 +0.2482424,0.11139981,0.1695148,0.24124928,0.12419366,0.23859368,0.33156955,0.43926206,0.18890026,0.3502031,0.3600806,0.11880724,0.09545001,0.27866456,0.5214134,-0.40077177,0.052193023 +0.17450114,-0.034628883,-0.06852122,0.8269875,0.26473966,0.30916378,-0.1752308,-0.06552938,0.2917806,0.13239548,-0.10551466,-0.04008093,-0.012224633,0.0017439476,0.031802412,-0.05403919,-0.012768494 +-0.11805712,0.06506842,0.2358178,0.1606087,0.097746834,0.060675174,0.030185593,0.055945005,0.09318909,0.20848282,0.08085861,0.15548909,0.3637742,0.057182614,-1.091225,0.15642709,0.39926243 +0.09396834,0.09222964,-0.2626873,-0.018791808,0.18504639,0.3095805,0.06219966,-0.28459954,0.33979923,0.28670263,0.18900304,-0.09219373,-0.33861095,0.42155516,0.12406453,0.1193916,0.51207113 +0.22633018,0.0036991942,-0.0032966551,0.73405635,0.36930984,0.23338461,-0.025179448,-0.05027352,0.1761163,-0.21354315,0.001294535,0.12146153,0.06128231,0.11102437,0.029420411,-0.0176783,-0.031011203 +0.19842522,-0.0815488,-0.591079,-0.30586338,-0.2745407,-0.12257737,-0.048704475,-0.53758705,-0.12830694,-0.3599078,-0.4154333,0.2026189,-0.28842267,0.060429968,-0.94093,-0.0037491128,-0.3596059 +0.26806238,-0.09900153,-0.03391805,2.1299891,0.4684754,0.55974823,-0.20612475,-0.27531943,0.48037595,0.26982993,-0.121160895,-0.19729884,-0.16169982,0.27272534,0.015509819,-0.095880456,0.0946863 +0.06756217,-0.2241428,-0.11258143,0.44357505,-0.032601416,0.5311032,-0.5286401,-0.3065311,0.06716062,-0.15051581,-0.14165758,-0.21190931,-0.21535563,-0.00021405506,-0.08058285,-0.25443116,-0.10183606 +0.20493035,-0.100728124,-0.2501382,-0.4587528,-0.14086847,-0.36696535,-0.20211783,-0.224668,-0.12774198,-0.20136648,-0.6256865,-0.28089866,-0.46065155,-0.03969788,-0.8596778,-0.15929277,-0.47766367 +0.1640925,-0.15544793,0.05879137,0.45808542,0.23671034,0.29695997,-0.029913684,0.37195572,0.32992536,0.3563867,0.119528435,-0.01041886,0.067321986,0.121919446,0.26396394,0.09052028,0.044024322 +0.30793953,-0.0716668,0.11384247,1.797312,0.48848012,0.5585767,-0.2536586,-0.2663531,0.44919902,0.22558004,-0.15953532,-0.02097361,-0.06073259,0.2564781,0.12612042,-0.33503875,0.17649935 +0.2851684,-0.05872063,0.2132969,0.77748185,0.39184332,0.4086759,-0.1868273,-0.15062645,0.6343467,-0.50682217,0.43955168,-0.0768182,0.31161493,-1.2004902,0.465496,-0.48499662,-0.05708278 +-0.86946064,0.03441081,0.10905485,0.7851194,0.26887515,0.26248372,0.07295162,-0.28836232,-0.11682861,0.38530138,0.2310875,-0.22488305,-0.22766834,0.055188686,0.13951063,0.12715389,0.024300672 +-0.2181215,-0.054211404,-0.2835875,0.30857342,0.6026395,0.27611867,-1.0614923,-0.43230277,1.174184,0.6843295,-0.084721625,-1.0207379,-0.33871776,0.65184283,-0.18971646,-1.0388252,0.5638109 +0.099723056,-0.32144493,-0.01526849,0.2937628,0.17641589,0.17713323,-0.16502419,0.4643211,0.26723403,0.14227495,0.021812862,-0.14347775,-0.014280732,0.06811972,0.23919268,0.1795098,0.09875379 +0.17811508,-0.0062797433,-0.19137534,0.16878243,0.10691864,0.10172185,0.079838574,-0.083682135,0.23885985,0.67693657,-0.024553977,0.31092304,0.051700037,0.04768824,-0.5135311,-0.2670077,0.2271916 +0.031763017,-0.044004127,-0.17065261,0.4671674,0.13298614,0.31141743,0.17352194,-0.08465115,0.19925718,0.02195161,-0.08266842,-0.13813496,-0.15413925,0.40093088,-0.1707172,0.014715388,0.11014524 +-0.109270304,-0.27645555,0.197944,0.007894564,0.062132522,0.058363188,-0.043435525,-0.039588057,0.113898754,0.04721052,-0.062083643,-0.022907736,0.09546997,0.24319847,0.55046713,-0.23555648,-0.041346084 +0.31436756,0.07222663,-0.058843404,0.03617335,0.20496814,0.114130944,-0.045209292,0.17623977,0.3664349,0.254448,0.19478148,0.18776688,0.10359129,0.009501096,-0.016926859,-0.0330675,0.093604945 +0.26432675,0.1343499,0.19433434,0.16203801,0.31129432,0.09087614,0.12896767,0.19571696,-0.049286243,0.34568202,0.10889027,0.24010466,0.17396358,0.4100617,1.0339918,0.2178627,0.03667378 +-0.06749368,-0.099407695,0.067775056,0.0357333,0.057196464,0.010481405,-0.01061064,-0.30978945,0.1236751,-0.034714878,-0.09736085,-0.19088814,-0.07725232,0.037932076,1.1911834,-0.2534416,-0.0328739 +0.24253018,0.40506077,0.19071914,0.21436502,0.3102981,-0.14885207,0.20487314,0.013873535,-0.28368095,0.09863563,-0.19715443,0.3861018,0.12209929,0.50166714,1.3891988,-0.19106837,-0.18789901 +0.07355656,-0.06924765,-0.006590433,0.8622684,0.21528076,0.2752097,-0.2683462,-0.10432595,0.24563494,0.027173012,-0.1083795,-0.257361,-0.12244592,0.19142914,-0.029031616,-0.059116166,0.027958073 +-0.19921225,0.18208934,-0.11890153,0.44900662,0.8530191,0.36225796,-0.2419753,-0.5827299,0.4004855,0.5586022,0.08373526,0.10923863,-0.3379504,-0.2507759,-0.63204044,0.27825493,0.45869556 +0.0974697,-1.2310447,0.35496193,-0.049556185,0.48062202,-1.5812982,0.1671894,0.52293456,-0.1964513,-0.07672663,-0.3603069,0.010985044,-1.2883344,0.18074279,-0.31446803,0.17025357,-0.56646913 +1.5627266,-0.12651363,0.6261109,0.31679446,-0.19129755,-0.9205852,0.14438535,-0.70572776,0.87546337,0.41494134,0.07418949,-0.28812492,-0.96920985,1.3154767,0.037317984,-0.52369076,-0.16488962 +0.37393036,-0.085788965,0.22471817,0.3744421,-0.0012058694,0.233702,0.37177297,-0.14539813,0.64636797,0.25781143,0.14555998,0.32866648,-0.15952712,0.03711856,0.50062597,-0.35748714,0.17911345 +0.9755998,-0.028116707,0.26471204,0.18156657,1.0109701,-0.31666756,0.25141057,-0.5698124,0.8517239,0.03605585,-0.3821093,-0.38938197,0.31002986,1.6782146,-0.18228425,-0.3341185,0.6278091 +0.19024521,-0.59378827,0.04851424,0.2481529,0.2719947,-0.2815539,-0.20282246,-0.12249982,0.3973864,-0.015071456,-0.106494635,-0.34882015,-0.21773742,0.19399646,1.1992441,0.035103872,0.11424511 +0.08897764,0.093455665,-0.0033240335,0.15916808,0.18099843,0.075112455,-0.045708284,-0.08075795,0.08251356,-0.09436454,-0.0037457251,-0.04572473,0.06768414,-0.004155091,0.060203765,0.05935754,0.015336256 +0.028120901,0.04881679,0.003958093,1.6485147,0.2160693,0.19306818,-0.1081742,-0.1780654,0.50838065,0.29997563,-0.46531296,-0.28404462,0.15628959,-0.17563982,0.27379173,-0.07450513,-0.09328468 +0.25969055,-0.17714788,0.02452282,-0.030367158,0.07455204,0.021483507,-0.00829646,0.17881362,0.14207113,0.16486639,0.104084045,0.10700924,-0.13602743,0.25553405,0.45831496,0.1358401,0.042235024 +0.6449667,-0.2702127,-0.29007828,1.0476327,-0.05293881,1.1742184,-0.0806826,-0.5428486,0.050650246,0.6257703,0.25488812,-0.28906053,-0.44087115,0.3627055,0.08993135,-0.06317178,0.2028348 +0.50932765,-0.16900016,0.024959637,-0.06830542,0.0034700062,0.25118956,-0.051356245,0.15810347,0.1576352,0.1767372,-0.05482556,0.07753205,0.074653134,-0.012193845,0.19107313,-0.2549142,0.09917337 +-0.21375777,-0.28074893,0.1701755,0.72525096,-0.07113593,0.785704,0.029495625,-0.05655316,0.1869798,0.26380658,-0.6462284,-0.38005418,-0.06725253,-0.2701272,-0.17052428,-0.27970088,-0.23818254 +-0.45251644,0.15574656,-0.13925938,0.53625774,0.08855728,0.40863216,-0.4221184,-0.3069909,0.19622436,0.54347485,-0.13486554,-0.17445557,0.19114578,-0.19885562,0.30034265,-0.4249404,0.26351705 +0.25373617,-0.866591,0.03809931,0.8018469,1.3577183,-1.7072101,-0.45747113,-0.19791856,1.4456484,-0.4188389,0.16965698,0.17244674,-0.8211226,1.0184261,0.040488318,-0.08098837,-1.7227697 +0.14347216,-0.19452307,-0.17006385,-0.019470833,0.1356719,-0.004185904,0.0890566,0.22873242,0.080652125,0.26996997,0.22228034,0.17539638,-0.086287975,0.1318871,0.061502934,0.21447553,0.18213952 +0.21667844,0.3423286,0.3098321,0.17454015,0.42933312,0.23250106,0.08845536,0.16853605,0.23505268,-0.24158973,-0.10102299,0.40276155,0.21302179,0.49723768,1.148073,-0.23654956,-0.3960312 +0.1046128,-0.11659311,-0.05606399,-0.095897324,0.34241566,0.061781228,0.022017742,-0.06438132,0.42190674,-0.0006733368,0.09000537,-0.14587991,0.16059932,0.39290804,0.22943012,-0.02948117,-0.068660624 +0.14170332,0.031077597,-0.017780365,0.42975688,0.044350397,0.23117067,-0.03626619,-0.08601298,0.09342629,-0.026268259,-0.05064107,0.04283256,0.061942324,0.11390432,0.19522466,0.028500894,-0.14194411 +0.48203683,0.08387187,-0.02852662,-0.83269143,0.41084158,0.23874438,-0.14378174,-0.4476094,-0.16499494,-0.13204868,0.0360956,0.5620142,0.548556,0.1600312,-0.47707182,-0.48435268,-0.053387605 +-0.55838686,-0.6595092,-0.30855608,0.32775,0.4046866,0.8546852,-0.9902777,-0.35052428,-0.1375437,-0.4723424,0.06863806,-0.97913104,-0.82257706,-0.37109572,-0.6301759,-0.35561007,0.55126697 +0.17151548,-0.13894762,-0.10256739,0.060981497,-0.21509051,0.44005388,-0.5297551,-0.5185813,0.35587993,0.065198176,-0.66092205,-0.4081853,-0.47231,0.1465971,1.244426,-0.122787066,-0.0955646 +0.046572365,-0.8729595,-0.6441024,0.44317913,1.366145,0.36655846,-0.26349387,0.1092337,0.5929549,0.8622169,-0.77392924,-0.20456858,0.44402105,-0.39388886,0.41001529,-0.4698003,0.76450324 +-0.22375005,-0.03192266,-0.45426297,0.8209721,-0.07840851,0.2307602,-0.24839789,-0.7400154,-0.076350465,0.41343957,-0.17517573,-0.021786377,-0.2700092,-0.22337383,-0.1028331,-0.4309381,0.033362914 +0.17826828,-0.30662465,-0.004428214,1.2950428,0.46799973,1.1654623,-0.14223772,-0.33198047,0.24648294,0.3580273,-0.029253379,-0.23619741,-0.46817335,0.19273734,-0.19327179,-0.37975445,0.20096362 +-0.32325003,0.0040935744,0.2268563,-0.16505262,-0.09279091,-0.18395294,0.08699252,-0.29019618,-0.15577155,-0.06974197,-0.2833074,-0.045634083,0.32677937,0.0085294545,-0.14112087,-0.20159718,-0.33871213 +0.5423821,0.07951918,-0.15635876,-0.4316124,0.28763318,0.44837722,-0.15730831,0.26777652,0.5486103,-0.06671194,0.24146059,-0.46429127,-0.26181093,-0.0459668,-0.01964834,0.0023440118,0.12392401 +0.18584643,0.08732377,-0.016517721,0.09584314,0.22636826,0.18408132,-0.021856839,0.008449783,0.13061151,0.06342278,0.038115326,-0.0946967,0.14590262,0.08774723,-0.02644787,-0.025214778,0.1462281 +-0.38420153,-0.10015073,0.10925402,0.69019806,-0.14887777,0.8305561,-0.0054171323,-0.42782342,0.058991354,0.21085383,-0.049497314,-0.29894623,0.14352272,0.35447887,-0.07740422,0.052498877,0.20268422 +0.054215543,0.13051452,0.23590274,0.21618998,-0.023754591,0.090056896,0.17242412,0.21224685,0.056147028,0.124495015,0.16916034,0.2341292,0.18745153,0.09892913,0.13570324,0.08514279,0.07043962 +-0.026766188,-0.053576816,-0.10704276,0.6001594,0.37570858,0.2648703,-0.29979143,0.34377939,0.24151991,-0.042108577,0.0732275,-0.43182313,0.09526313,0.28913745,0.8391547,-0.008859502,0.12269238 +0.7505951,0.21767363,-0.048226416,0.010712051,0.28105506,-0.05922913,-0.17235106,-0.19226763,0.27696446,-0.021486426,-0.02890796,-0.040373098,-0.060064018,0.786685,-0.26224506,-0.2756445,-0.22246559 +-0.14483584,0.14241199,-0.29423755,0.21276927,-0.031567648,0.12552235,-0.18843013,-0.36707935,0.2780841,0.17269033,0.22784866,-0.0702754,-0.099322625,0.36153466,0.102606446,-0.08844967,0.20656352 +0.12381345,-0.09111017,-0.42854893,0.6542522,0.0776476,-0.08947638,0.2931359,-0.45651525,-0.21426572,0.24698904,0.4062163,-0.050140947,-0.3970752,0.20942765,1.7026901,-0.35284698,0.00971433 +0.31295472,-0.31546643,0.53395647,0.16068469,-0.0576311,-0.31297007,-0.302695,-0.14840046,0.5606328,-0.69160163,-0.75137997,-0.12305931,0.016568325,0.08715014,-0.12784648,-0.3108654,-0.63965935 +0.40181857,-0.22902252,-0.013075847,0.47740236,0.22366911,0.23864664,-0.22431986,0.06940117,0.1388871,0.43738815,0.05376915,-0.073337264,0.11525302,0.15506065,-0.12288557,0.23364127,-0.16614386 +0.075873256,0.14702268,0.0074197343,0.7295825,0.36441192,0.14987469,-0.032731462,0.23369245,0.26826903,0.1450309,-0.049053993,0.058647994,0.037181523,-0.049035575,0.058269393,0.08059856,0.018320264 +0.054344676,0.08752254,-0.081613734,0.3104006,0.13439925,-0.10985613,0.11567303,-0.09551034,0.32703236,0.19889523,0.20583872,0.18255873,0.010644705,0.13270688,-0.0031411147,0.070371844,-0.09337394 +0.99343646,0.43050006,-0.2136788,0.29518896,0.17829889,0.28705892,-0.1377581,-0.2747585,0.05893526,0.29871696,-0.290215,0.16829395,0.36870813,0.63704956,-0.37145057,-0.18038672,0.012365033 +0.17170112,0.020426054,-0.13932724,0.33253962,0.16489288,0.21361393,-0.16559044,-0.06914245,0.1378843,0.24671148,0.03563462,-0.16932863,-0.021990178,0.09995458,0.0634806,-0.05249975,-0.023297329 +0.16637745,-0.055167805,-0.1588363,0.32771757,0.16147321,0.055880345,0.30093583,0.10406179,-0.04235745,0.12725276,0.24291559,-0.17539841,-0.13552968,0.29343957,0.51152295,-0.16140015,0.4306374 +-0.13130653,0.099870406,-0.71072227,0.08645032,-0.14113869,0.2631122,-0.588897,-0.31068426,0.27891892,-0.06038866,0.1439339,-0.25911406,-0.08624807,0.042158127,0.76746005,0.1600373,0.15036754 +-0.23457861,0.10632692,0.3701972,-0.87999266,0.47520843,0.41347155,0.7029047,-0.6793898,0.177601,0.35028315,0.3076701,1.4929218,-0.4489946,0.5033101,0.38783702,0.23019777,0.106852114 +0.3525633,-0.08079116,-0.0542283,0.024566274,0.22193165,0.20407264,0.032544687,-0.09714877,0.38371202,0.34117705,-0.25050393,0.050184026,-0.065945044,0.35785988,-0.29506254,0.15536225,-0.067259796 +0.38633466,-0.26081625,0.19212636,0.09498954,0.5208495,0.18843466,-0.2505576,0.053228837,0.54788566,0.34976992,0.41637,0.014142707,-0.313144,0.50089395,0.23648866,0.0249273,0.1034232 +0.23171717,-0.0009298947,0.11523932,0.49315315,-0.002242426,0.44464102,-0.099130355,-0.14453375,-0.13858798,0.18460178,0.11074928,0.13441361,0.084128134,-0.06393111,0.2719194,0.10272615,0.23245241 +-0.7119115,-0.8205674,-0.08930538,0.59971994,-0.25230852,0.42909747,0.53835773,-0.40184563,-0.33707026,0.50916415,-1.0207682,-0.20116499,-0.12796143,-0.38119254,0.59185827,0.37294722,0.38009498 +0.1964495,-0.15387197,-0.101125635,0.4516261,0.42806822,2.0581844,-0.32205832,-0.33024105,0.40670025,0.22106606,-0.24655944,-0.23242705,-0.17751308,0.22357732,-0.12868114,-0.40264082,0.11571661 +0.23676084,-0.092110224,-0.03696543,0.5090365,0.40544474,1.8978907,-0.35235092,-0.37516376,0.4636681,0.28036723,-0.26813814,-0.2510468,-0.12743714,0.09241946,-0.12813063,-0.3443333,0.12706041 +0.38398018,-0.15625751,0.07758327,0.9292816,-0.101106614,0.12516433,-0.5754619,-0.06868756,0.18469286,-0.43251348,0.1897604,-0.24905224,-0.24400969,0.3342637,0.12346554,-0.37097317,0.3823219 +0.11487588,-0.40186217,-0.43399325,-0.030186694,0.4573785,0.20261833,-0.5860923,-0.3368137,-0.1708675,0.29691994,0.43920627,0.010048341,-0.4792793,0.5191799,0.1730611,-0.16840208,0.22684683 +-0.9969475,-0.56686306,-0.11329986,0.3525622,-0.22689873,0.83121175,-0.093691394,-0.50488436,-0.41933393,0.08627248,-1.3264302,-0.89168024,0.023702767,-0.5257478,-0.086170875,-1.2171769,-0.40797126 +0.28517672,-0.24332418,0.21834871,-0.0057615493,0.16492033,0.14738967,-0.09704084,-0.27643162,0.25304145,0.05198609,-0.048466045,-0.027903557,-0.24332514,1.1024252,0.2330477,-0.30827945,-0.12055015 +-0.029407194,-0.25095946,0.11347991,0.21613336,0.6593744,0.4636487,-0.4448575,-0.3284034,0.5800204,0.23229018,0.050041303,-0.052776877,-0.08472552,0.1331697,0.0700866,0.024836829,-0.25522852 +1.0060142,-0.5689447,0.25581485,0.4639711,0.24531393,0.49696276,0.06854295,-0.022974793,0.25207484,0.14453626,0.2229315,-0.20828286,-0.3579876,0.39762,0.24847808,0.24140114,-0.15002517 +0.15707335,-0.23722272,-0.049724583,-0.040066652,0.2306897,0.10917936,0.14318268,0.28616437,0.17924896,0.22123899,0.16874778,0.07074879,0.150658,0.10259828,0.25310057,0.1634429,0.044469256 +0.114496306,-0.12817003,-0.11644865,0.22328785,0.26658657,2.0696945,-0.2548525,-0.13416848,0.28585455,0.037309144,-0.13439062,-0.27387857,-0.12564708,0.19820382,-0.10537009,-0.2876613,0.16635571 +0.088185504,-0.3556005,-0.09569585,-0.03166866,0.08457618,-0.0055723498,-0.25160062,-0.07809796,0.30558068,0.16191328,-0.11540378,1.585248,-0.24062766,0.2633935,-0.22175792,-0.27408147,0.19551587 +0.7434148,0.033802938,-0.04694581,0.40494886,1.2512472,0.47022927,-0.41589853,0.5721872,1.1063452,-0.077691935,0.0052894996,-0.02012436,-0.30571488,0.72888464,0.3409023,0.3807061,-0.25717717 +0.16429318,-0.24093342,-0.07686475,0.961853,0.31706902,0.28692612,0.05942536,-0.116525084,0.4787763,0.22590981,-0.21621369,-0.42201245,-0.26471213,0.4265544,-0.17370902,0.0013667905,0.050440844 +0.24589796,-0.33719093,-0.24730794,0.6460284,0.3454754,0.68266565,0.0026270295,0.3732638,0.5998957,0.18023765,-0.19090937,-0.3448122,-0.23068902,0.07372123,0.1228047,-0.65352106,-0.037925422 +-0.03539002,-0.1685421,-0.05140995,0.13665856,0.10013785,0.20329392,-0.10965059,0.14823456,0.07604596,0.14409557,-0.13852598,-0.067140006,0.07332929,0.31764054,0.042783294,0.06912901,0.09430936 +0.35207567,0.15349562,0.018664973,0.23652042,0.12318875,0.09985334,0.25499457,0.094734356,0.21203296,0.011352623,-0.02960907,1.410156,0.2045522,0.539525,0.3933137,0.01578221,0.49256474 +0.79589915,-0.22907561,0.21093042,0.001746065,0.23690188,0.22351144,0.2690688,-0.12375085,0.2483471,-0.36788523,-0.5897493,-0.1863238,0.001634883,1.118157,-0.104951896,-0.30381742,-0.44441912 +-0.03977,0.12341607,-0.4287632,-0.44135395,0.1385437,0.14940491,-0.23045975,-0.0147649795,-0.09349936,0.12938252,0.08042931,-0.5894645,0.16601266,0.0851384,0.29734197,-0.078050144,-0.05487045 +0.14856242,-0.010379527,-0.2787664,0.05526252,0.15935352,0.23183222,-0.04000549,0.008039903,0.15756524,0.4459341,0.1745664,-0.09857459,-0.013373076,0.28287336,0.45348302,-0.014388775,-0.07796643 +0.64757353,-0.17002489,-0.26268896,0.35617056,-0.19642836,0.42790794,0.5551068,0.24609253,-0.42552188,0.233054,-1.0306429,0.06945792,0.41121688,0.5925944,-0.88393635,0.17781451,0.15353201 +0.10845263,-0.063144006,0.20800391,0.10921598,0.20396228,0.09702425,-0.15285218,-0.048610754,0.0061439266,0.074880615,0.0023329067,0.08912983,0.066375576,0.043749183,-0.3766648,0.12660179,-0.10605146 +0.24899237,0.18162107,0.29825342,0.29363075,0.3761173,-0.027807,-0.08216136,0.13660721,0.55584866,-0.014377579,0.020678319,0.1488291,0.02160111,0.16785212,0.05643805,0.010627734,0.2238864 +0.88069,0.30123925,0.3855269,-0.29729235,1.031702,1.0081322,-0.108959146,-0.42356336,1.2282668,-1.304406,0.013269888,0.09457108,0.03602288,0.42168057,0.112327285,-0.072517455,-0.13203394 +0.06831976,0.29903388,-0.26701382,0.07347767,0.13734426,-0.119663745,0.4538349,0.09087808,0.10730099,0.10159826,0.06673851,0.24921475,-0.009200643,0.026917158,0.37365147,0.26610574,0.11784155 +0.7039294,-0.19908583,0.068319686,0.0132976845,0.3607153,0.0058831284,-0.039509192,0.20076713,0.7910809,0.22504908,0.10099097,0.13872617,-0.17621142,0.871802,-0.27959952,0.36211565,-0.0993875 +-0.48767,-0.49537435,0.23129235,0.45732927,-0.57417804,1.3787949,-0.23373002,-0.23611958,-0.2898272,0.4676257,-1.2709504,-0.118404806,-0.5913235,0.28819013,-0.11533743,-0.3083353,1.0650517 +0.31795982,0.37589285,-0.120508745,-0.4700566,0.3510452,0.066739745,-0.0016071593,0.048115592,-0.16771215,0.7427702,-0.039726306,0.0134227695,0.27937216,0.6873969,0.60003144,-0.031149013,-0.30416578 +0.1440722,0.06409186,0.10870726,0.18577112,0.110163905,0.17439884,0.13029748,0.11679164,0.06882504,0.17516744,0.20501669,0.13479559,0.14248937,0.12481014,-0.2769227,0.15330967,0.07890851 +-0.01864431,-0.12769681,0.21092483,0.2964361,0.09033984,0.46915808,-0.35041818,-0.34614018,0.2830226,-0.0118732015,-0.29218277,-0.17333628,-0.033846717,0.23329757,2.0186574,-0.52414477,-0.06065132 +0.31103387,-0.32818648,0.3642248,0.8295906,-0.056313325,-0.93205315,-0.3394283,0.030250376,0.44991773,0.41997033,0.090735205,0.09814887,-0.44512045,0.39036712,0.09004969,0.37725583,0.14234115 +-0.121238254,-0.30983093,0.07078285,-0.46596575,0.66626024,0.38985005,-0.5781728,0.28971562,0.49643236,0.2946949,-0.31712806,-0.09622808,-0.31063402,-0.027223594,-0.1571825,0.23005353,0.20581861 +0.19151165,-0.31323317,-0.4215584,0.0034683654,-0.17079316,0.4717913,-0.29720795,-0.26380348,0.41396636,0.055683475,-0.1207995,-0.1650839,-0.31831178,0.10353134,0.008125957,-0.2641831,-0.054822497 +0.33300662,0.12427605,-0.08553801,0.7693435,0.3836614,0.3908189,0.001870597,0.23523551,0.40535963,0.0053419853,-0.013387801,-0.022858916,-0.016662814,0.16826493,-0.04142401,0.03078211,0.09343213 +0.012073054,0.010457269,0.2077282,-0.11521642,0.19446516,0.1844456,-0.24429922,0.13667285,0.25871488,0.10237183,-0.10428453,0.2574006,-0.13164076,0.35431105,0.3946314,0.09726902,-0.2704933 +-0.7705519,-0.1333295,0.43197277,0.64009213,0.3848709,0.91340595,-0.65126085,-0.58176064,0.49240738,0.31040654,0.4977185,-0.1246645,-0.10087687,0.33432359,0.039566007,-0.17847872,0.77062494 +0.157425,0.23974986,0.20542799,-0.024931183,0.23661557,0.16454485,0.07734883,0.021257339,0.13788685,-0.26473418,-0.050196506,0.11269911,-0.03276168,0.2269064,0.024946578,0.0707089,0.03133017 +0.19757947,-0.1337986,-0.061621916,0.34679496,0.23716968,0.1605862,-0.4217691,-0.04565345,0.4513986,0.3527242,0.31280157,-0.13155122,0.19737004,0.22500922,0.3260562,0.22786322,0.12076227 +0.47465587,-0.33424735,-0.09205309,0.3962702,0.59907293,0.40078804,-0.03465478,-0.34364575,0.1729735,0.7062726,0.061967112,-0.16931447,0.052265726,-0.0077783884,-0.680762,-0.18307145,0.12803626 +0.111833125,-0.123391785,-0.32231963,-0.03519877,0.5765621,1.0024453,-0.13546127,0.34027526,-0.107803844,-0.08979908,0.026823942,0.2734198,-0.08301034,-0.15214857,0.15932885,-0.0047615035,-0.17044434 +0.89420056,-0.5408546,0.17745791,0.22499165,0.26848996,0.13356246,0.38658488,-0.14946426,-0.20867655,0.35013956,-0.0045791073,-0.111268215,0.023372717,0.27564147,-0.01319546,-0.5096226,-0.4420768 +-0.30568498,-0.052521102,0.015766164,0.08374003,0.0952085,0.51565886,0.029274194,-0.4584939,0.006572984,0.33388022,0.04533697,0.045593876,-0.25823542,-0.43818527,0.32984567,-0.12239519,0.3968641 +0.04450747,-0.13766608,-0.07092482,0.83466184,0.2078486,0.13833445,-0.15561914,-0.11774952,-0.21115535,0.20395285,-0.25387734,-0.26877445,-0.14545013,-0.0018113704,-0.072174534,0.0073056407,0.26113707 +0.061869092,0.059595615,0.39566207,0.0814941,0.7937144,0.38259387,-0.24188642,-0.17340875,0.1994082,0.08373499,-0.10482574,-0.07184781,-0.37144274,0.1775686,0.10337521,-0.2517327,0.003787945 +-0.26451746,-0.12126258,0.10318445,-0.120066844,0.42170963,0.07671717,-0.16932642,-0.0022562377,0.41486794,0.31264645,-0.15128748,0.30910772,-0.041948363,-0.010590999,0.09536804,-0.10420037,-0.12831952 +0.14722864,-0.13312249,-0.15907116,0.61970246,0.46775374,0.5512682,-0.256793,-0.20961016,0.23152548,-0.09422433,-0.09060422,-0.17184098,0.16094188,0.055265587,-0.048643544,-0.15973797,0.14503612 +0.054046027,-0.08430787,-0.018506844,0.45591217,0.23990144,0.3408807,0.2194264,0.08910566,0.23010561,0.030072337,0.088858224,0.08645822,-0.17685702,0.306523,-0.035369005,-0.050050985,0.07532222 +0.61225826,0.06844989,0.045182906,0.18507986,0.76524687,0.32630923,-0.4255655,0.19814402,0.21976762,0.08454511,0.15623717,0.042178135,-0.2461574,0.27726445,0.35807675,0.042122167,0.0676468 +-0.02533536,0.051662713,0.02392127,0.18698047,0.20653965,0.16089076,-0.0021382773,0.07338826,0.14163207,0.08262826,-0.025872717,-0.0015578626,0.11022326,0.0026682543,-0.059126828,-0.052450653,0.03068846 +0.12452022,-0.21589464,-0.0074966266,-0.0040667327,0.47510955,0.11641675,-0.12330635,0.018757885,0.6182144,-0.05595011,-0.0024967843,0.24864052,-0.15644942,0.5601602,0.11719316,-0.15743968,0.27762526 +0.052361425,-0.07128499,-0.22667207,0.35677055,-0.16670598,0.3113825,-0.2056734,0.04673674,-0.05980995,-0.18532085,0.0951538,0.06256637,0.08624008,0.41950148,-0.4508708,0.025772102,0.24835454 +0.44398928,0.15750897,-0.06523315,0.28591257,0.6675329,0.3907247,-0.70290995,0.11859026,0.0014463592,-0.06955133,0.28006643,-0.07723019,-0.048586853,0.16614173,0.22824223,0.18612882,0.4588727 +-0.13272364,-0.15352245,-0.22649112,-0.024652781,-0.09493738,-0.10601817,-0.018056566,0.0060789427,-0.117907405,-0.027713798,0.03312974,-0.2074339,-0.24026798,0.059960812,0.082702406,-0.091467276,-0.017455986 +-0.016339503,-0.3595393,-0.2592231,0.2588192,0.4330659,0.25942242,0.030782342,-0.11674354,0.03440389,0.40057543,0.1350062,-0.041307397,-0.33627585,0.41408607,-0.028552983,0.0463612,-0.10487104 +-0.15988076,-0.3114853,0.1787006,-0.2533653,-0.03765642,-0.16626447,0.13783732,-0.07568423,-0.11185851,0.1953136,0.0016396339,-0.22911984,0.35091805,0.1898698,0.48920184,0.010550825,-0.12656672 +-0.22811246,-0.16172437,0.04718244,-0.16665913,-0.09547986,-0.09767782,-0.47335535,-0.09259735,-0.16993332,-0.001989515,0.03507956,-0.41143784,0.3335302,0.0257691,1.515382,-0.62366766,-0.112596214 +-0.012889975,0.01586484,-0.19843142,0.062319443,0.11728096,0.06662198,0.6419992,-0.017297616,0.37593025,0.19131759,-0.08443914,-0.045793127,-0.11478711,0.09693809,0.11174772,0.018242279,0.59558356 +0.23797849,-0.063558005,0.13887954,0.9241352,0.29335335,0.28393164,-0.11997152,0.0010254943,0.16924119,-0.11056892,0.067244396,-0.08995855,-0.075409584,0.14290619,0.0009611534,-0.19621027,0.15653072 +0.29155606,-0.11976579,-0.013295941,0.29058436,0.510904,0.9572694,0.6436775,-0.59648645,0.5540105,-0.18036382,0.30917743,-0.51422435,-0.8254065,0.075898275,-0.24554908,-0.22998449,0.76829803 +-0.40838152,-0.22152838,-0.17513786,0.27730775,0.2742436,0.13927636,-0.36793107,-0.21245104,0.051148802,-0.07861938,-0.6365889,-0.48442632,0.5393208,0.248356,0.6876614,-0.36968789,0.0903476 +-0.09361739,-0.1537485,-0.05454861,0.54724383,0.33296007,0.17580312,-0.17773592,-0.18584287,0.21131474,0.4917703,-0.07470741,-0.271148,0.0564629,0.24678178,0.08987217,-0.18413082,0.21182966 +0.06638337,0.326539,-0.05598595,0.1755703,0.122735806,0.29803917,-0.07332624,-0.046311952,0.7992648,0.055036,-0.1559636,-0.15158886,0.13134485,0.6606241,-0.014474868,0.11176716,-0.195827 +0.05561913,-0.30113116,0.050968345,0.21469413,0.19411029,0.3538537,-0.009536264,-0.2804358,-0.011860458,0.64382017,-0.031728346,-0.13931845,0.21854818,-0.3598645,-0.35788038,-0.55326384,0.11978126 +-0.004186701,-0.18548952,0.014159976,0.44959465,0.02170281,0.09177113,0.13511574,-0.40263724,0.04792778,-0.061082426,0.15782699,-0.0722207,-0.1370097,0.15494828,1.1435286,-0.5823615,-0.2005822 +0.21321641,-0.08164767,0.06492166,0.9912224,0.40416527,0.905025,-0.36013064,-0.6873964,-0.21978723,-0.37115964,-0.2654756,-0.41123515,-0.37237638,0.023113122,0.419338,-0.061260004,0.28832242 +0.032817613,-0.19698583,-0.034956396,0.1574587,0.27814403,-0.110594094,0.4085636,-0.044501938,0.28907728,-0.0051215077,0.1498459,-0.16342825,0.052550547,0.08347971,0.17730385,-0.19426718,0.31104958 +0.15556897,-0.049663544,-0.026581166,0.17006771,0.2263807,0.10497514,0.0027189702,-0.07351245,0.25002804,0.07588052,-0.15335986,-0.22282866,-0.17770936,0.18782532,0.098771706,-0.032834828,-0.24280111 +-0.23395716,0.74946296,-0.027457805,-0.27643403,-0.21623574,0.059825696,0.043932997,-0.26693383,0.3914964,-0.0035344623,0.18095522,0.5356077,0.25974274,-0.17649983,1.4841813,-0.45481247,-0.0053262557 +0.08886993,-0.09673707,0.1386584,-0.050322797,0.0753744,0.05710519,-0.27792922,0.1312626,0.109492384,0.028323213,0.0069624847,-0.028869027,-0.059542093,0.15926188,0.9729424,-0.08706174,0.15288891 +0.033167716,-0.037318025,0.10047775,0.27493766,-0.09587549,0.14420317,-0.3017036,-0.37716526,-0.13271347,-0.07444882,-0.29482076,-0.2067579,-0.12962227,-0.090563774,0.30238283,-0.04212844,-0.0028015324 +0.5505496,-0.42330313,-0.51669,1.2613184,-0.5966298,1.3325499,-0.6821197,-0.68899953,-0.5869267,0.07241805,-0.06362891,-0.7729805,-0.43183932,0.4047778,-0.2180827,-0.66151816,-0.14388892 +0.32707477,-0.28252476,0.030248439,-0.4074485,0.15401651,-0.25242227,0.32795483,-0.4594904,0.17676596,-0.28057513,-0.06280581,0.22656637,-0.22057666,0.28209153,-0.61260206,0.08016339,-0.017610263 +0.2793488,-0.18660648,-0.05452065,0.3888032,-0.0031251954,0.28995657,-0.3703541,-0.21889386,-0.03317814,0.36371726,0.37818825,-0.14693974,-0.04249509,0.1337136,0.3926714,0.10228884,0.12947676 +0.3608769,0.09200636,0.5650973,0.4702498,0.65698415,0.23685436,0.13689363,0.0074449214,0.46908143,-0.65449303,-0.38220865,-0.038956076,0.039136037,0.40149093,0.20727602,0.058860984,0.115710706 +0.031916365,-0.27029002,0.09090786,0.0069716894,-0.0012402016,0.05720924,-0.106362514,-0.11201057,-0.37900642,0.32193416,-1.1112323,-0.040921047,0.14945307,0.6447674,0.2922974,-1.0205773,0.21015775 +-0.54122,0.42044103,-0.840269,0.19855312,0.37471795,0.7097116,-0.45731091,-0.45892426,-0.11684138,0.1720961,-0.05327327,-0.330114,-0.003995838,-0.7927308,0.042697188,-0.88295746,-0.058934674 +0.040317435,0.013824432,0.15512553,0.6073546,0.12444783,0.10145105,0.041824512,0.05456376,0.010528282,0.51913923,-0.11314691,-0.06678818,0.14692207,0.105102,0.3059078,0.11222807,-0.2615734 +0.14870313,-0.02227251,0.19515343,0.45915896,0.21125343,0.4874745,0.020778313,0.13705668,0.37497228,-0.2897577,-0.10646349,-0.11127721,-0.04753911,0.07296631,0.028718097,-0.029997317,0.079647735 +0.84692967,-0.25194705,0.05837921,0.3996823,0.7542567,0.40540808,-0.37311316,-0.013551821,0.61263895,0.7455127,-0.4871772,0.1901271,-0.2474908,0.787156,-0.5017815,0.023785569,0.17932956 +-1.014482,-0.46220332,-0.07292536,0.81478673,-1.036543,0.7058426,-0.41766325,-0.33319956,-0.25172818,-0.0028922001,-0.9811469,-0.42648256,0.09870114,-0.010797922,-0.39625102,-1.089692,-0.113948025 +0.5176569,0.23559119,-0.005384257,0.31905338,0.3743745,0.08702762,-0.045984115,-0.3928158,0.29298562,0.5408319,0.3148146,0.5713629,-0.062197346,-0.07003771,0.31322056,0.014737416,0.42512703 +0.4318006,0.014361524,-0.37056956,0.5871286,0.24470598,0.4471913,-0.48976994,-0.1089777,0.54708475,0.037610117,0.10127673,-0.24898693,0.22424373,0.13761191,0.3365134,0.049805544,-0.06660299 +1.0475929,-0.47625905,-0.08833835,0.73691314,-0.7259585,0.9456142,0.2593473,0.13780178,-0.38638672,-1.5241259,0.39145604,0.51972866,0.13540736,0.70363826,0.74807185,0.29842103,0.7017167 +-1.0118417,-0.49506822,-0.17229547,0.1254639,-0.30907753,0.2006801,-0.26690176,-0.5941432,-0.10688851,0.5340385,-0.5658371,-0.29220912,-0.6046723,0.07668657,-0.54931533,-0.5201633,-0.26413763 +0.04629749,0.08401415,-0.2078785,0.21783054,0.29123217,0.40393192,-0.2520651,0.004655971,0.44320458,0.068292506,-0.046935175,0.15934213,-0.30143675,-0.11717151,0.9701045,-0.15981655,0.44101602 +0.04118869,-0.15487617,0.1510734,0.8930874,0.17230408,0.016852036,-0.29904413,-0.33353484,0.13419375,0.22962037,-0.21775046,-0.041250896,-0.08991183,0.04177234,-0.19885303,-0.34332103,0.05387402 +0.12153693,-0.31064814,-0.257695,0.87801516,0.50720537,0.24467538,-0.15934321,0.26011938,0.52391845,0.44492516,0.0027055307,-0.33141848,-0.55361736,0.44960013,-0.0028625398,0.49250415,0.33021486 +-0.096132,0.020466503,0.025691245,0.552839,0.18040481,0.25779274,-0.055550154,-0.19250025,0.21518187,0.15733734,-0.17005776,-0.018686917,0.033904612,0.22444172,0.012826131,-0.02675706,-0.10556384 +0.6117358,-0.310713,-0.077178925,0.2296209,0.40160495,-0.22394808,0.09439153,0.23908725,0.0040740655,0.6775068,0.27440324,-0.31449074,-0.33734772,0.14229959,0.1101719,0.33432743,0.014075037 +0.27818045,-0.1763832,-0.08340534,-0.06571125,0.12745537,0.08535249,-0.18793301,0.121941596,0.0367344,0.2108568,-0.2327546,-0.06515282,0.19852868,0.3946336,0.0079614,-0.0033416229,-0.040708132 +-0.016182411,0.041716665,-0.175519,0.08413952,0.30729046,-0.039331608,-0.23184529,-0.305066,0.16172343,0.11348012,0.1806344,-0.1956355,-0.019194372,0.4323096,0.09634562,-0.0443103,0.23628339 +0.042123344,0.012038606,-0.0799214,0.8950472,0.53666437,0.85345095,-0.7130373,-0.2591678,0.39114657,0.24263887,-0.25587168,-0.22675094,-0.22444601,0.024737518,0.056417223,0.35469142,-0.1583849 +0.0019538538,0.05129538,-0.08565092,-0.049538903,0.22768332,-0.0015827043,0.039126478,-0.30149522,0.18692341,0.18988915,-0.19327039,0.018779386,0.38705552,0.3818008,0.010301491,0.036038827,0.26624426 +-0.0715435,-0.06878151,-0.011384363,-0.096495755,0.29682752,0.32611874,0.059829757,0.018885482,0.26023826,0.17052348,-0.045892384,-0.0717764,-0.1911048,0.2505905,-0.1683848,-0.029165998,-0.044228073 +0.1330589,-0.31209564,-0.066049285,0.25873002,0.36026865,-0.072182335,-0.48195744,-0.25672984,0.57209945,0.14173067,0.39671332,-0.22286388,-0.2924526,0.5587771,0.4792982,-0.2981159,-0.1797371 +0.07158716,-0.020118985,0.0636771,-0.033532597,0.24132062,0.13553254,-0.053350855,-0.10385195,0.21170047,0.09571907,0.0008244874,0.107619695,0.17230587,0.049137007,-0.089679785,-0.063132666,0.12779875 +0.15369795,-0.31264317,0.34172702,0.1812256,-0.08044672,0.4359102,0.13420014,-0.116636515,0.032662004,-0.3342274,-0.63024294,-0.15372041,-0.4025129,0.4471298,0.029496275,-0.75233394,0.08449608 +0.2882668,-0.10540522,-0.29021266,1.084161,0.38229373,1.2844427,-0.5697667,-0.40350112,0.5545467,0.45699427,0.03220823,0.15583344,-0.26850048,0.23457283,0.12220968,-0.23624173,0.1425726 +-0.04423994,0.5649661,-0.065188795,0.09013963,0.27728736,0.8389662,-0.41179156,-0.46885207,0.43360496,0.46926752,-0.9000396,-0.41628996,0.21750884,-1.5581374,-0.41987076,-0.7962463,-0.5110322 +-0.18083979,-0.009333051,-0.2771029,0.52422667,0.14674821,0.34724092,-0.19164155,0.2716886,0.34784192,-0.11105949,-0.19275457,-0.19435044,0.0041926643,0.019948069,0.5119476,0.01361115,-0.0017298183 +0.26196808,0.22552197,0.188158,0.46663523,0.042931948,-0.18989334,1.0731039,0.17072317,0.09805815,-0.185094,0.3672783,0.47928256,0.2407982,0.3494357,0.39111516,0.2522656,-0.72939104 +0.30710915,0.25483146,0.0840714,0.4704936,0.22078007,0.68290657,-0.34633,0.31533492,0.2772632,0.005073608,0.05244406,0.061211172,-0.047411602,0.055464696,1.1567495,0.34342808,0.02629407 +-0.14001943,-0.21973884,0.5567677,1.4228797,0.33488435,0.013548587,0.30556807,-0.59268486,-0.3044472,0.43815094,0.6453309,-0.2344171,-0.3375541,0.26995274,-0.29695985,-0.5112136,0.2644635 +0.8102752,-0.57464826,0.22431941,-0.13599376,0.43212175,-0.0068670167,-0.022875601,-0.15769824,0.2765896,0.33559075,-0.90613425,0.026747452,-0.0931562,0.3118366,0.3241149,-0.3851323,-0.12063564 +0.8462335,-0.004288428,0.34707147,0.4920413,-0.19711865,0.6267984,-0.24574335,0.090967774,1.1850742,-0.7963817,-0.27694872,0.5552362,-0.3030849,1.2718914,-1.3891834,-0.37242725,0.39803544 +0.30483025,-0.026806308,0.07231918,0.2279727,0.16933972,0.26255733,-0.031808734,0.19402811,0.27477264,-0.13328901,-0.108339496,-0.059338465,0.0403401,0.0672832,0.03942645,0.18756267,-0.22133899 +-0.06500355,-0.00080526026,0.12621927,0.18267138,0.20341623,0.2021898,-0.05776063,0.23912935,0.19769959,0.21204944,0.13000362,0.18812475,0.19962057,0.08415951,-0.39796615,0.2141522,0.44733727 +0.4039298,-0.46545932,-0.44514358,-0.101003505,-0.12056127,0.13549238,-0.49370617,-0.28297654,-0.08375797,0.62257886,-0.11371801,-0.09092356,-0.31997725,1.057759,0.048404265,-0.6347087,0.032438353 +-0.41680086,-1.0009972,0.4200696,-0.31612647,0.01713962,-0.116489485,0.09241446,-0.027233494,0.16896966,-0.09949541,0.17579399,0.3273741,-1.0722247,0.62202615,0.12078226,0.71222633,-0.29150325 +0.22045238,0.15349372,-0.047381274,0.48567218,0.14231725,0.17128573,-0.108198024,0.018919127,0.13709728,-0.021149749,-0.05802403,0.042674027,0.086459234,-0.07866868,0.08402686,-0.08060335,-0.08467513 +-0.11883455,0.13080806,-0.010289598,-0.1103044,-0.060540214,-0.16008118,0.15407923,-0.19609396,-0.22003494,0.16437913,0.0021369765,0.08530512,0.30310687,0.11367286,0.027392728,-0.2366816,-0.26444748 +0.16753209,-0.027545048,-0.23144887,0.18728857,0.22630684,0.19047481,0.046092268,-0.53534836,0.14909014,-0.20460552,-0.5139197,-0.2917787,-0.4576228,0.12247127,0.47449294,0.07778812,0.40741548 +-0.0166186,-0.019936122,0.020187782,0.04624303,-0.010509361,0.086334705,-0.11317212,-0.06633831,0.046526406,-0.026260901,-0.019271044,-0.050765906,-0.054155983,0.027439944,0.09413479,-0.11255897,-0.00905601 +-0.07318605,-0.13375258,0.07726389,-0.053320494,0.012319755,0.006772398,-0.073981486,-0.109446876,0.03916221,-0.012753999,-0.115465745,-0.123068884,-0.01275426,0.03301628,0.41392085,-0.074383736,-0.018839084 +-0.063626535,-0.17490618,-0.47857937,0.34908378,0.28877333,0.15431495,-0.4763434,-0.35967132,-0.067857765,0.7016449,0.18851939,-0.5585947,0.050587803,-0.23695926,0.7243528,-0.117991336,0.34017572 +0.3626673,-0.3598243,0.49040243,0.34861383,0.28561726,0.1613025,-0.0037967265,-0.46562845,0.86472845,-0.34230554,-0.12409872,0.26242566,-0.28936252,0.78722966,0.35182768,-0.48368126,0.19970559 +0.019417638,0.10915847,0.08912789,0.12216256,0.38645238,0.78020364,-0.3146578,0.37793678,0.46802267,-0.08912826,0.02662245,-0.39477572,-0.17145965,0.19625151,-0.015639657,-0.045411848,0.0020604045 +0.18686904,-0.18225546,-0.21342504,0.1921958,0.12330756,-0.0076097203,-0.09581672,-0.054345436,-0.0055782073,0.41132146,-0.022173446,-0.19450127,-0.044839896,0.22153167,0.12652877,0.021423114,0.028306017 +0.66109663,-0.30507836,0.39711556,0.24174024,0.45021656,-1.318502,-0.06505203,-0.22239594,0.52157897,-0.29868504,-0.05041807,0.15643616,-0.04483832,0.8067929,0.21815711,0.28772843,0.23924857 +-0.0538874,0.07021059,0.049469814,0.3027519,0.30152425,0.101643786,-0.26504236,-0.29681116,0.07406261,0.2426867,0.09579833,0.15498033,0.1850498,-0.08165067,0.1392754,0.18643852,0.31065032 +-0.022991901,0.02661926,-0.02365033,-0.19411771,0.22997041,0.096843794,-0.0067941295,0.12330073,0.05122063,-0.36620402,0.097065575,-0.33058786,-0.47353137,0.23687474,0.0663975,-0.24196678,-0.1908658 +0.4192768,-0.0700476,-0.13018534,-0.06869255,0.38474002,0.35218638,0.28984237,-0.3755746,0.36008087,0.4819875,-0.051442735,-0.024547787,-0.08450382,-0.4254225,-0.030791363,-0.21189897,0.5261704 +0.6924765,-0.33152753,0.32380494,0.27086288,0.59215736,1.3452582,-0.054836612,0.83159393,0.3995671,-0.008876181,-0.31591663,-0.10951026,0.02746885,-0.053795725,-0.19675191,0.1379624,0.24905819 +0.054958597,-0.16998658,0.18923172,-0.20170735,0.26448277,0.020091785,0.26125488,0.13028696,0.2054776,0.38581663,0.071055494,0.14121203,-0.16071405,0.15005076,0.115878016,0.082224295,0.27259514 +0.79252356,-0.2114094,0.35499918,-0.11251013,0.070340976,0.007724152,-0.27726838,-0.5132524,0.10988934,-0.19020826,-0.21394056,-0.20209263,-0.1664448,0.15760553,0.8397431,-0.5103174,-0.49801967 +0.0037981407,0.16536452,-0.03217901,0.13016057,0.26503488,0.19030127,-0.17954767,-0.20283596,0.35900563,-0.13813631,-0.13555671,-0.06074936,0.22975923,0.15026511,0.16221362,-0.030543841,0.17047419 +0.20081195,-0.042893384,0.05585754,0.90777475,0.16724348,0.25584853,-0.047386426,-0.09296627,0.061927516,0.009679003,-0.098359995,-0.038229078,0.09089066,0.11906259,0.18697257,-0.14825219,-0.06872901 +0.19637363,0.015754133,-0.19657516,0.13009511,0.2869637,0.26655468,-0.27841082,-0.3257789,0.27222714,-0.027896067,-0.46775287,-0.12503436,-0.4529278,0.5489461,-0.08671669,-0.20578107,0.2755956 +-0.15208262,0.21428648,-0.11718704,0.26233152,0.3376683,0.1450971,-0.09058478,0.070768,0.031100385,0.60120445,-0.34506938,-0.34772003,0.19608831,0.85894775,1.0331736,-0.014801699,0.40273654 +-0.17751488,-0.013824887,0.045546297,1.3732957,0.22119115,0.5708074,-0.04294747,-0.37264884,0.56831914,0.4323953,-0.48587933,-0.16271168,0.03719841,-0.22707479,0.05312675,0.021387838,-0.22475415 +0.51162577,-0.064173825,0.276747,1.3589314,0.29858214,0.48437664,-0.065595575,-0.037572317,0.35992035,-0.028916528,-0.1666527,-0.096976005,-0.05024042,0.32742953,0.14235355,-0.1646409,0.13760845 +0.45505118,0.14832269,0.14897804,-0.025638591,0.14193867,-0.026272886,0.060496278,0.010043549,0.057132788,-0.23959011,0.21884042,-0.32925096,1.0607495,0.029823137,0.19124931,-0.041436873,0.08001435 +0.49402648,0.0073523084,-0.64373195,0.04435682,0.18940695,0.21661848,-0.4311313,-0.28906506,0.2133254,0.4368575,0.40723234,0.05561306,-0.37393084,0.6710996,-0.41778642,0.18497625,0.24796514 +0.27331075,0.063184015,-0.07340178,1.0276093,0.23444344,0.44420403,-0.28918025,-0.035262022,0.43650258,0.11898304,-0.066466615,-0.06274866,0.0021020386,0.13574128,0.052311752,-0.016681582,-0.044622183 +0.14103808,-0.042795945,-0.14118962,1.6572992,0.4918237,0.5712584,-0.30552042,-0.18044007,0.5955347,0.40240029,-0.08454786,-0.24937926,-0.2510624,0.31256923,0.10950969,-0.14723694,0.086754404 +0.07832859,0.23921518,0.017909413,0.011004996,0.23340234,0.0261804,0.08300498,0.4048437,0.42078963,-0.051442366,0.18338764,0.08395186,-0.30427802,0.37549892,0.044651546,0.37685767,0.010881025 +0.45556563,0.054875504,-0.112498656,0.41756168,0.10548227,0.24139056,0.043505095,-0.22427033,0.2520697,-0.15736212,-0.0014144004,-0.07738934,0.013182649,0.008021279,0.0886965,-0.053227313,0.043572508 +1.8280884,-0.22241111,0.5595653,0.690092,0.21273232,-0.18820521,0.4366625,-0.30032957,0.4060887,-0.78946644,-0.30509558,0.04560774,-0.30108464,0.29631707,-1.0150243,-0.056565028,0.3480231 +0.7380338,-0.032332014,0.13136706,-0.051096268,0.9311218,0.5391066,0.20713936,-0.15913384,0.38018453,-1.1486287,0.3171385,0.36009577,-0.032720897,0.35300648,-0.3174499,0.014357535,-0.23490615 +0.30151987,0.24340917,-0.14357486,-0.16932248,0.3472406,0.30956593,0.19122228,0.14906657,0.2911584,0.23165995,0.041042075,-0.27412686,0.07695216,0.3295527,0.4421208,0.022104966,0.11150213 +0.043160185,-0.14543168,0.12044206,-0.36182153,0.28741434,0.39842784,-0.08489503,-0.4690212,0.27752745,0.49496695,-0.032104194,-0.047223926,0.14787422,0.35883427,0.20049384,-0.08966997,0.20654932 +0.17617662,0.008047059,0.12598132,0.101675056,0.19316629,0.09100409,0.099637926,-0.11970882,0.14786597,-0.15116549,0.111375004,-0.055099487,0.10315013,0.11031158,0.08137789,0.20137072,0.10660137 +0.39142287,-0.17030066,0.040723797,0.4757294,0.49241307,0.69913363,-0.15647587,-0.41311797,0.52552146,0.50601697,-0.076276034,-0.19771051,-0.52492315,0.030934518,-0.13096644,-0.1509319,-0.11349112 +-0.0037172646,-0.18703878,0.140837,-0.084247604,0.04112589,-0.041900717,-0.14475346,-0.14438812,0.24462244,0.021002596,-0.26953924,0.48422533,-0.11497212,-0.052385993,-0.33560002,-0.2684943,0.41042984 +0.2802041,-0.13936877,0.34113878,0.09102189,0.4068393,-0.1424081,0.52811956,0.08700318,0.58430135,0.070706874,-0.31864172,0.16988689,-0.02303976,0.8714007,-0.11095495,0.15290046,-0.16511405 +-0.123822756,-0.23176289,-0.14186348,1.2843668,0.14259475,0.33132058,0.12312011,-0.11084937,0.2159346,0.6146157,0.17440988,-0.22303419,-0.34058115,0.41102245,0.33008817,0.088285446,0.2353454 +0.21990187,0.059168864,-0.11669794,0.33309987,0.47887757,0.05550355,-0.2687734,-0.021346603,0.41006243,0.30699372,0.112435624,-0.025599042,-0.21965319,0.5745072,0.4515711,0.107460424,-0.07112858 +0.04226289,0.059473205,-0.088954926,0.22934389,0.07721927,0.09247912,-0.059075933,0.15253122,0.13232498,-0.0066578253,-0.09492499,-0.07557093,0.007040207,-0.038717102,0.047642127,-0.0035090796,-0.07139331 +0.1546977,0.15070738,0.039134532,0.6400293,0.4049184,0.47468245,0.10259014,0.11113955,0.38565525,0.25540432,-0.042415183,0.2060567,0.034040272,-0.1646631,0.08693192,-0.049458034,-0.057765182 +-0.6558139,0.12378524,-0.7199417,-0.14033157,0.18990521,-0.15029694,-0.4156696,-0.37574273,0.7185993,0.691864,-0.13795674,0.078429736,0.119707614,-0.30407143,0.6698797,-0.49958992,0.5211139 +-0.20736817,0.18521136,-0.18132257,-0.14708099,-0.21438026,-0.20249987,-0.46062925,-0.33195755,-0.65328693,-0.21581909,-0.3794134,-0.18740132,0.2839911,-0.047796354,-0.3705484,-0.28363207,-0.30830562 +0.953596,-0.3222028,0.42643178,0.03961196,0.8862704,-0.15168309,-0.56780267,-0.5807375,-0.2620346,0.57380575,-0.37227485,-0.0051397234,0.32718083,-0.94022816,-0.3628874,-0.3496962,-1.0413805 +0.3202029,-0.229721,-0.44035012,-0.36147243,0.38980523,-0.009821257,1.1202153,-0.0161855,0.42583707,-0.08593231,0.56747556,-0.21903339,-0.1453879,-0.03804045,-0.32281297,-0.25194165,0.68882006 +0.002291927,-0.29682067,0.3181333,-0.08985527,-0.07926598,0.110133655,-0.03972527,-0.023093289,0.0811468,0.14669856,-0.27769375,0.18462947,-0.025988821,0.07473939,-0.31972256,-0.042213477,-0.0348506 +0.056105085,0.18630475,-0.4760921,-0.031589888,0.72660166,0.70462817,-0.53563404,-0.175621,0.7385337,0.00036235215,0.45335984,-0.23164694,-0.29892755,-0.010966377,0.27662337,-0.29476225,-0.2130632 +0.259433,0.017789427,0.09787226,-0.17159268,0.22867274,0.06773659,-0.275508,0.00040581962,-0.1136434,0.10009564,-0.08026144,-0.08859992,0.27957502,-0.01325824,0.036012758,0.029747577,-0.24474701 +0.40105447,0.23634982,-0.38020903,0.7745575,0.7049832,0.7061021,-0.29263577,-0.15874772,-0.005785777,0.37595698,-0.916642,-0.310166,0.24695158,0.027624238,0.63621974,-0.6153631,0.23726556 +-0.13832751,0.030537607,-0.10620876,0.25102708,0.6952537,1.1361356,-0.06290967,0.28252587,0.73919356,0.3234377,-0.18600523,-0.27398685,-0.36504033,0.16828494,-0.07035026,-0.08605841,-0.0387465 +0.116079874,-0.36784092,-0.12649417,0.35314432,0.03304508,0.9277902,-0.35986847,-0.46094245,0.3002211,-0.28537843,-0.36031288,0.22219972,-0.06978257,-0.13656428,0.09953412,-0.46100035,-0.05813121 +0.40218195,-0.107273534,0.17568332,0.23161352,0.12952116,0.12462579,0.006083737,-0.1125515,0.23996545,0.98996675,-0.066718794,0.93782365,0.15432346,0.10316831,-0.070678376,-0.33355543,0.22163722 +0.229302,-0.07435217,0.12305883,0.38905594,0.14694,0.21368308,0.017871896,0.08026208,0.15050603,-0.08829741,0.13518716,-0.13791636,-0.097605065,0.22365387,0.17134172,-0.048897892,0.15844491 +0.38902485,-0.11036431,-0.03448996,0.36576322,0.22245072,1.6672571,-0.2021346,0.12307667,0.046264343,0.5019526,-0.29334962,-0.07886396,0.09242335,0.51753587,0.44812903,-0.027757643,-0.09656208 +-0.5245883,-0.23639505,0.1780034,1.1375314,0.15870194,0.15941045,0.11454385,-0.8633011,-0.024272159,0.4605885,0.114616096,-0.66589385,-0.14528155,-0.27164155,-0.087933585,-0.4320447,-0.21868517 +0.061427712,-0.38315856,0.11214039,0.05332499,0.2377458,0.090388194,-0.008488979,-0.016830694,0.2308383,-0.10272535,-0.037637495,-0.037595127,-0.07305783,0.23167376,0.44317874,-0.22552924,-0.023925986 +-0.078523606,0.39048803,-0.22743836,0.09551963,-0.548639,0.62102556,-0.4143864,-0.70225453,-0.20211247,-0.0288244,-0.41137922,-0.18511969,0.37029287,-0.32648405,-0.09560118,-0.54617673,0.015356719 +0.6802413,-0.3660861,-0.14824364,0.28490365,-0.06454926,0.29757553,0.042618684,-0.18958418,0.0794186,0.6018121,-0.117720135,0.12885696,-0.4840114,0.9557967,-0.23503132,-0.32468885,-0.11487255 +-0.6492222,-0.06630665,-0.006482814,0.42532185,0.011785611,-0.008886039,0.8322262,-0.71355605,-0.37248468,0.43934748,-0.28931764,0.3123204,-0.019248849,-0.12616858,-0.066173874,-0.34053603,-0.063771255 +-0.5670059,0.33582845,0.045711968,0.80907536,0.47766626,0.5455159,-0.49177867,-0.41205585,0.30126792,0.44164833,0.09026022,-0.23089574,0.23635279,-0.03385889,0.11256079,-0.8828512,0.07864862 +0.27375573,0.120966665,-0.46013832,0.10580484,0.06348934,-0.46364748,0.011441063,-0.22530065,0.34012377,0.5850996,-0.16490372,-0.35600916,0.4191345,0.06534953,0.082219146,-0.04116656,-0.08354637 +-0.036589723,0.06798878,-0.17510496,-0.36936918,0.46630663,0.6924215,-0.20282905,0.28476933,0.5202874,-0.0743125,0.16941167,0.1946606,-0.2313511,-0.010350913,-0.32109922,-0.1642159,-0.2839527 +0.035649408,-0.110022016,0.3046946,-0.029415246,0.01467285,-0.65058196,0.075786,-0.45803484,-0.39422423,0.16800176,-0.23521242,-0.45932436,0.3909956,0.32348973,1.9466681,-0.07610655,-0.17912364 +0.044483643,-0.0850905,-0.19119056,0.036273725,0.31258327,0.34790176,-0.6685154,-0.37840214,0.6722585,0.3685227,-0.099353954,-0.1777671,-0.1870275,-0.41282645,-0.036621768,-0.080170885,0.5085569 +-0.0027674076,0.1382484,-0.046846766,0.95476955,0.296063,0.4649518,-0.114077434,-0.05541686,0.46339062,0.16590346,-0.23889662,0.031556156,0.1478808,0.35721514,-0.048205912,-0.09382375,0.015923237 +-0.022137789,-0.0019870265,-0.23402384,0.2623769,0.4558497,0.28789046,0.057399645,-0.19163013,0.5215453,0.9069408,-0.032915525,0.20430371,-0.10121495,0.47560167,0.23514421,-0.06730638,1.1189471 +0.24623324,-0.20548078,-0.08923018,0.19767512,-0.014350784,0.24939112,-0.10173067,0.18871638,0.15360738,0.6310292,-0.5392361,-0.21793342,-0.03794101,0.18763503,0.07170871,0.20569353,0.15417169 +0.55590945,-0.36648846,0.3698046,-0.20016111,0.09363133,0.23967242,0.2287009,-0.18157528,0.20803268,0.23181331,-0.6286249,-0.042434588,0.022208363,0.90117776,-0.04554385,-0.13009244,0.011863278 +0.43974936,0.5191311,-0.16820861,0.030626096,-0.17151083,0.20343114,0.08623852,-0.016106237,0.095833406,-0.13378453,0.11034488,-0.23840146,0.37857464,0.04041012,0.13903844,-0.067659386,0.25213504 +0.3003159,0.38417158,-0.018563053,-0.01755251,0.014680615,0.5370405,-0.5919662,-0.38422364,-0.37351432,0.38416955,-0.4465781,0.057337508,0.32147977,-0.25730485,-0.3425921,-0.55336964,0.15890385 +0.06511614,0.3451261,0.28336817,-0.0113385,0.23217654,-0.07650959,0.02903175,0.22350849,0.05975299,-0.14019436,0.25524074,-0.023199458,0.06801898,0.1196722,-0.019949421,-0.032279078,0.07697185 +-0.07433489,-0.0059691905,-0.18565822,0.022359198,0.2513672,-0.0038350308,-0.14846781,0.19601789,0.12131559,0.09263641,-0.03689627,0.19246672,0.01588898,-0.04608852,-0.1745697,-0.07230573,-0.0064586885 +0.23072958,-0.17742097,-0.23288393,0.15798673,-0.101135,-0.025554495,-0.31017166,-0.15357314,0.04184658,0.065927945,-0.14267036,0.71206087,-0.13334158,-0.009458835,-0.14519924,-0.18476416,0.05796434 +0.22022004,-0.32987905,0.026936218,0.24131164,0.14146954,0.06321747,-0.15793431,-0.28726313,0.24307983,0.0034144158,-0.023165531,-0.1809203,-0.3698052,0.15389803,1.5233333,-0.09549993,0.0052348496 +0.61121285,0.14654139,0.39142627,0.15811737,-0.02938843,0.35264617,-0.09321865,0.0028661604,0.43853816,-0.17285341,0.48656985,-0.053933393,-0.42699084,0.6285917,0.23076156,0.50354373,0.017913839 +-0.18835272,-0.12676203,-0.23387033,-0.03638818,0.10694848,0.23516035,-0.9633497,-0.33540606,0.36231238,-0.25125018,-0.44346955,1.951682,-0.6413224,-0.6543284,-0.0840492,-0.00681957,-0.22767404 +0.25536206,0.05270503,-0.16586368,0.030815654,0.19194007,0.23347315,0.5180257,-0.18379284,0.3124087,-0.23985723,-0.03965705,-0.32199425,-0.28852785,-0.11239112,-0.11854687,-0.04239437,0.3206421 +0.027481003,0.1105378,-0.14132845,0.28924793,0.2906052,0.28247172,-0.026404815,0.16186997,0.17532837,0.013710065,-0.038721714,0.044339247,0.058956757,0.051103476,-0.14877409,0.0051215645,-0.19425197 +0.233347,0.4655782,-0.46008235,1.1126659,0.19526683,-1.3502357,-0.24657078,-0.34330976,0.15142784,0.44625697,0.05646442,-0.0060407263,0.15166213,-0.18599033,0.72762865,0.05260597,0.08225763 +0.5118414,0.068296164,0.07942809,0.9156353,0.72364223,0.8182851,-0.096850395,0.0033314347,-0.26094878,0.05715637,0.000422479,-0.0032591007,-0.10401933,0.5784662,-0.0806975,0.10242621,0.10156168 +0.61946994,-0.67106766,-0.008436664,0.45463267,0.059483774,-1.382174,-0.52899593,0.05587013,0.40779242,-0.24967487,-0.04174383,-0.49550056,-0.24132071,0.3188685,-0.09163341,-0.40980205,-0.06091097 +0.1672347,0.34857306,-0.123066574,0.30868086,0.2995439,0.28574026,-0.16139309,0.09223374,0.093090735,0.07868398,0.100394376,-0.15078567,0.23208605,0.13041647,0.057816386,-0.34641916,0.15839909 +0.29139763,-0.09625273,-0.20424335,0.4935351,0.2565503,0.47146672,0.08255965,0.11321636,0.47957593,0.3069076,-0.2196662,0.015116512,-0.08252252,-0.30764744,0.57833177,0.10391257,-0.115900956 +0.014875781,0.21792555,-0.22845477,0.40817702,0.35668314,-0.018903371,-0.37454945,-0.67729706,-0.09382169,0.79510385,-0.73870534,0.20684882,-0.2614806,-0.6881246,0.41650343,-0.33721823,0.07828734 +-1.5631202,-0.5853265,-0.49244288,1.1740725,-0.9677886,1.4423808,0.053646833,-0.54956585,-1.1392441,-1.8127115,-1.0913305,-0.36622494,-0.54753673,0.5120785,-0.6649303,-0.5969805,-0.09683535 +-0.6811373,-0.48989338,0.18283392,1.3011032,-0.06158145,0.6999612,-0.21169841,-0.8848979,0.36042258,0.18066083,-1.3549732,-0.46089074,-0.053182833,-0.2659692,-0.12841214,-1.5475931,-0.44067708 +-0.045297835,-0.4083099,-0.3629933,0.15996252,0.35593492,0.20175993,-0.51500535,0.051546276,-0.020230107,0.21474403,0.5288954,-0.23999578,-0.4365117,0.3607112,0.17275658,-1.0180352,0.5861833 +0.36980832,-0.010509422,-0.23808232,0.27650625,0.3129552,0.2218607,-0.05446747,-0.33963263,0.0957354,0.3141855,0.19549696,0.032371048,-0.25070682,-0.0072957044,0.5309218,0.12267153,0.13351789 +-0.48958933,-0.32456937,-0.45069188,0.28348202,0.3104745,0.5621184,-0.6349808,-0.02985863,0.14479612,0.17890692,0.1964016,-0.07406715,-0.006664113,0.17078288,0.42141062,-0.19101351,-0.10613917 +0.3392758,-0.27831888,0.30978817,0.21358016,0.23316829,0.5775765,-0.15282525,0.6964026,0.40554956,0.11348178,0.1906643,0.21911307,0.110549636,0.308342,-0.9627355,0.4863975,0.08965475 +0.37857693,-0.10396676,-0.07858613,-0.11861668,-0.05188646,-0.088428475,-0.26244688,-0.59305406,-0.053635497,0.5454518,-0.26510692,-0.045539,-0.058325436,-0.027918255,0.3151266,-0.4032045,-0.08821297 +0.7698532,0.41577718,0.6867723,0.19716774,0.57441133,-0.18143696,0.34592226,-0.15519102,0.7346826,-1.9505495,-0.24169177,0.9340406,0.023427134,1.7217331,-1.7099208,-0.13874033,0.69340074 +-0.043977223,-0.17897817,-0.4079117,-0.16793768,-0.22593094,-0.5802022,0.26471493,0.31221852,-0.2848281,0.021746824,0.22741422,-0.11010047,-0.050671734,0.121530056,1.2029891,0.06504217,0.108072646 +-0.0029835142,-0.11299362,0.1936705,0.50981736,0.20136806,0.34320658,-0.45525464,-0.10273271,0.34178284,0.3930595,0.44257468,-0.18303226,0.079782836,-0.5086862,0.6999931,-0.0015561031,0.16283953 +0.23938307,-0.000801401,0.099681705,0.63400704,0.46250588,0.16643877,-0.11405348,-0.02632128,0.08425121,-0.03295503,0.16798146,0.17702666,-0.17782676,0.37344053,0.098353416,-0.1389964,0.11925375 +0.36298376,0.024934437,-0.013250671,0.7057861,0.2615006,0.35503057,0.09363501,0.25410628,0.3581967,-0.27314246,-0.17384696,-0.2082174,-0.034852825,0.21357334,-0.014530907,0.012244517,-0.22960702 +0.077614255,-0.0036243945,0.010147522,0.2841998,0.092682816,0.20321764,-0.049785834,0.07009997,0.21525444,-0.041452833,-0.10603367,0.047934383,0.008693827,0.08575616,0.148853,0.097202875,-0.058109544 +0.45109946,0.24555926,0.15135506,0.33437496,0.5482655,-0.007617132,0.1882002,-0.015072377,-0.11363409,0.17353812,0.33177394,-0.7766514,0.5782001,0.5493839,0.3295408,0.33662635,-0.1447788 +0.44154048,0.04083795,0.3993018,0.38811007,0.41623405,0.35626754,-0.34369242,-0.28015938,0.6235215,-0.2281489,0.57775295,-0.33606935,-0.35754448,-0.0764647,0.17996466,-0.15262222,0.14616688 +0.14581853,0.0035094433,-0.17692555,-0.13577022,-0.14968991,0.008064977,-0.13461757,-0.10874692,0.09345864,0.010661183,-0.23528042,-0.14446937,-0.20823415,-0.005991878,0.33322245,0.08188667,-0.084677406 +-0.026527654,-0.10460354,-0.119213365,0.44949812,0.11913497,0.13080712,-0.32624903,-0.55021065,0.11108984,0.07823916,-0.041685585,-0.0972756,-0.12593073,0.019671598,0.3167027,-0.21412013,0.010138691 +-0.07787797,0.5158762,0.009786583,0.0732451,0.09387518,0.13198054,-0.021716738,-0.00943835,0.12019932,0.14027092,0.10723781,0.31357637,0.14971617,0.02524107,-0.99353987,-0.014710704,0.3998081 +-0.17616513,-0.1853197,0.07897838,-0.10339669,-0.03752262,-0.09485173,-0.20360368,-0.0615502,0.025073033,-0.15884359,0.107680604,-0.10899162,0.028270531,-0.16999394,-0.0030263036,-0.35082865,0.01095684 +0.19346143,-0.049988233,0.25937092,-0.49037063,0.580434,0.37869158,-0.28061247,0.021731583,0.36448175,0.3295388,-0.15357734,0.16505297,0.1908958,0.08935868,0.029213378,0.091462545,0.16131155 +0.664946,-0.014446301,-0.13896646,0.04477996,0.59496045,0.2740375,-0.12223848,0.04847279,0.6796994,0.23357624,0.3284694,0.019374823,-0.2728071,0.32694045,0.23482203,0.12885356,-0.35005918 +0.21042447,-0.28308043,0.5876528,-0.77836055,0.06646426,-0.3438052,-0.5578936,-0.9029007,-0.48504955,0.10043689,-0.30648193,1.9002044,-0.78774464,0.070269786,-0.5333088,-0.3660188,-0.43299478 +0.026745128,-0.20261158,-0.004862975,1.6777347,0.4018888,0.50017697,-0.2890389,-0.2839326,0.4364149,0.27659738,-0.19862995,-0.053295493,-0.17443594,0.26658073,0.089017265,-0.21410109,0.06701651 +0.02190481,-0.26434493,-0.061992243,1.3541591,0.48021045,0.6272975,0.0052000256,-0.0950777,0.5870886,0.51681495,-0.15597266,-0.3920707,-0.19206406,0.3617071,0.19398814,0.25510293,0.26438037 +0.025462072,-0.008466001,0.050510857,0.42141518,0.001391532,0.10720634,-0.03688013,-0.24180497,-0.08960498,-0.14906245,0.24361327,-0.20414312,-0.25273567,-0.09254789,0.06312906,-0.23362792,-0.028018087 +-0.42028853,-0.2873408,-0.6602173,0.6467077,-0.53081876,0.955516,0.20319805,-0.5335686,0.22683376,-0.5081548,0.3996564,-0.46862856,-0.29499313,0.20292646,0.2285384,-0.6853649,-0.16056615 +0.16768509,1.2960066,0.0276353,0.08994957,0.4063115,0.19643116,0.18038018,-0.44767198,0.58235306,0.14470166,0.3848203,0.103428714,0.8901721,0.50929195,0.010251962,-0.33359897,0.06569432 +0.09291535,-0.2759867,0.024664301,0.37383184,0.2943541,0.47065666,-0.08617183,-0.018593375,0.5823367,-0.09629892,0.07410352,-0.026565533,-0.37956232,0.4253901,-0.02495866,0.10933377,0.22008961 +-0.4583193,-0.33604428,-1.0550019,-0.20615563,-0.3151688,-0.12834044,-0.4641112,-0.93457013,-0.20090356,-1.5349898,-1.0690287,-0.3016871,-0.3835206,-1.0109005,-0.37126476,-0.7648197,0.17150195 +-0.11260414,-0.046453748,0.19145545,0.2233216,0.16110006,-0.12349724,-0.11004738,0.20432505,-0.33476505,-0.09891856,-0.23509619,-0.106730856,0.070254035,0.54752004,0.068954326,-0.29180732,-0.016565707 +0.12536876,-0.043493394,0.08820248,0.052670896,0.21820779,0.1791917,0.011914172,0.053274807,0.1133428,0.20303692,-0.0200866,0.031532746,0.111118585,0.09518316,-0.12687339,0.03598663,-0.035657916 +-0.04152439,-0.041393667,0.13453959,0.09800847,0.07107943,0.06261491,-0.011184653,0.27315876,-0.014121362,0.14929032,-0.24583995,-0.19306222,0.06133665,0.01505737,-0.23156036,-0.0021244623,-0.017998766 +-0.03108482,-0.17997107,0.048869327,0.029581893,0.15056843,0.019646501,0.123828806,-0.011471755,0.14187981,-0.20777383,-0.29963812,-0.088683486,0.13555528,-0.12481592,0.170413,-0.21962504,0.11704219 +1.1046394,0.26038805,0.39957067,0.022521965,0.92256695,0.96253586,0.18505895,0.15754902,0.29456726,-1.6705045,-1.2767413,0.44024098,0.015573955,0.5343449,-0.34380218,0.11940882,0.19346638 +0.33933976,0.10881874,-0.16994946,0.29069242,0.044253595,0.3048114,-0.15613048,-0.06966553,0.14913046,-0.08932408,0.2409451,-0.099434,0.0014413248,-0.063215435,-0.14174154,-0.07509902,-0.057259165 +0.21531159,0.107383914,0.20768055,0.008457584,0.10623124,-0.101608954,0.22780564,0.31153053,-0.005890691,-0.21482724,0.20785065,-0.19377287,-0.13479705,-0.21937163,0.16480017,-0.07372964,-0.07794093 +-0.10500377,-0.121241406,-0.022252958,0.6467003,0.2848176,0.7840035,-0.2156779,-0.10011831,0.299088,0.082322225,-0.38126665,0.043986294,-0.06826107,-0.16186962,0.1678696,-0.13439928,-0.13367227 +1.2830887,0.64039606,0.5256914,0.2751762,0.53508043,0.22108476,0.15385097,-0.19524805,-0.014396582,-0.2537283,-0.14592066,0.5575882,0.10834286,0.27619496,-1.817062,-0.23647708,0.21564439 +0.03882984,-0.1627279,-1.1582859,-0.014592683,0.955997,0.035888307,0.56657225,0.41227663,0.2404532,-0.75705594,-1.169377,-1.1579063,-0.26760402,1.0579411,0.32520226,-0.38534355,-0.37577078 +0.20238712,-0.39888307,0.25301835,0.66187525,0.48692453,0.518415,-0.42229587,-0.18823789,0.33892527,0.18494596,0.04418822,-0.40517363,-0.111791976,-0.1790867,-0.10902179,-1.2703238,-0.39069036 +0.23545025,0.44688943,-0.49049628,0.14521852,0.25430238,0.2204244,-0.1328912,0.16863614,0.72193116,0.3215351,0.0216106,0.010346196,-0.27047756,0.9989701,-0.36635938,0.02377514,0.22078256 +-0.12199922,-0.16717951,0.3537954,0.56149554,0.3197969,0.951498,-0.61518484,-0.83503145,0.19056219,0.3549648,0.16060074,-0.2049345,-0.04665989,-0.28492716,0.5347517,-0.85002923,-0.36309218 +0.8989701,0.18583487,0.045605585,-0.033780843,0.5757144,0.17549837,0.035086963,-0.4172992,0.2915417,0.7952995,0.08885194,0.27683768,-0.10355695,-0.20471139,-0.048775885,0.16723429,0.47550967 +-0.018102292,0.13852338,-0.034697033,0.40235937,0.14495695,0.008834499,-0.06685962,0.201032,0.2820604,-0.007999264,0.050848216,0.06700388,-0.14566591,-0.0862087,0.23360617,0.10390199,0.07126303 +-0.265123,-0.18995216,-0.41977534,0.106112175,-0.117181964,-0.0234956,-0.5023546,-0.6063829,-0.0024964022,0.5326014,0.030130344,-0.38123482,-0.06793102,-0.34272093,0.39220527,-0.21050265,0.09066551 +0.24987684,-0.21476288,0.02836914,-0.025139697,0.04153048,-0.072976805,-0.114116244,0.048330724,0.01607012,0.27049264,-0.109003045,-0.08757064,-0.10971632,0.2899399,0.6160322,0.25963324,0.14876777 +-0.102430366,-0.0065221996,-0.19763681,0.4642179,0.2021698,0.45353925,-0.10957457,0.034516312,0.14427438,0.4722207,-0.0016055468,0.061225656,0.16870892,0.049313873,-0.31603083,0.014568908,0.3463002 +0.01841038,-0.21259926,-0.2960415,0.007150369,0.07641649,0.15867302,-0.17594914,-0.43639138,-0.20416696,0.35328126,0.07841987,0.09890047,-0.22269426,0.12217183,0.57113934,-0.22237422,0.17356692 +0.16729876,0.12377213,0.2192287,0.18969402,0.22072856,0.32321665,-0.0051252837,0.10875423,0.24444811,0.7679258,0.19205825,0.097616956,0.2815724,0.26087612,-0.17813167,0.3141165,0.21958467 +0.20066376,-0.1830786,0.19199373,0.10351854,0.21321905,0.06906284,0.13920613,-0.15821306,0.3811324,0.21725926,0.09671687,0.049715668,-0.062029246,0.42842737,1.7450396,-0.11171581,-0.08514456 +-0.08111897,-0.1192394,-0.11361428,0.3922883,0.13872132,0.026155304,0.023205088,0.020451117,0.17677175,-0.07216023,-0.014063418,-0.10595636,-0.3468473,-0.021183701,-0.012448418,-0.036162052,0.049515106 +0.42647284,-0.35414302,-0.005089019,1.6796851,0.3539092,0.43010446,-0.35014644,-0.100181706,0.67757326,-0.4187147,-0.12610294,0.31069908,-0.13006294,0.26557982,0.25018007,0.06411021,-0.111464754 +0.53288645,0.09949647,0.8490831,0.39932638,0.42277905,0.43364576,-0.25408033,0.1844638,0.52215177,-0.30832487,-0.17778584,-1.0724338,0.0355413,0.5357684,0.302122,0.20729607,-0.3657071 +0.7806082,-0.20837069,-0.02230863,0.1002315,0.77908665,0.45589814,-0.07233122,0.40747902,0.22552298,0.06784146,-0.27471074,0.03554135,-0.247299,1.1359935,0.15608963,0.023545612,-0.21963196 +-0.10826188,-0.33287176,0.18319082,0.83652496,0.0868106,0.6391632,-0.1807645,-0.30943155,-0.04671888,0.47093993,-0.0595703,-0.043062456,-0.16327259,0.09058729,0.032267235,0.06541367,0.3164201 +0.24649595,0.07831057,-0.46825543,-0.12074793,0.57300746,0.54936314,-0.1582807,0.06744266,0.8271362,0.26619023,-0.034326483,1.686154,-0.24785864,0.25126562,0.45014894,-0.0117717795,0.16142647 +0.36317217,-0.291171,0.23623301,0.16780396,0.29299846,0.22829567,0.020825407,0.10221812,0.2481745,0.03234298,0.46881557,0.12528224,-0.21706568,0.34449908,0.3545074,0.0005050672,0.053799085 +0.514396,0.065358974,0.05344757,-0.26378754,0.87316287,1.2838005,-0.17891608,0.05846497,0.5283266,0.043005712,0.017873399,0.34309718,-0.04168984,0.09556022,0.19733924,-0.06603611,-0.24095401 +-0.08273539,-0.08073048,-0.009884664,0.54340154,0.30767915,0.22164764,0.18398896,-0.061662316,0.10537245,0.085978664,-0.031601995,0.16824336,-0.058899224,-0.041226722,0.016514078,0.011080159,-0.23040494 +-0.18158743,0.38051996,0.19438154,0.2670475,0.255327,-0.000798235,0.31701362,-0.109907895,0.103318304,0.19444261,0.033280022,0.35491574,0.4178992,0.12876688,-1.4609095,0.12216201,0.6268618 +0.20195545,-0.16169666,0.006879241,1.9545504,0.45353395,0.5810306,-0.25394836,-0.34399614,0.4179108,0.25404847,-0.17887586,-0.18367131,-0.15452224,0.29338643,0.033446908,-0.30328006,0.044370335 +0.0129572,0.02313222,0.004425154,0.30296066,0.28885478,0.23816834,0.01951113,0.057090174,0.16690561,0.06824185,-0.0710932,0.042411316,-0.04280003,0.18448293,-0.06579439,0.05607088,-0.004433777 +0.59049964,-0.03618251,-0.21160705,0.12514393,0.38060716,-0.034903325,-0.25612605,-0.03440774,0.35461202,0.371273,0.19018054,0.29552248,0.12589587,0.23269682,-0.24650553,0.27085605,-0.08019412 +0.5006291,-0.08474585,-0.36901268,0.36402634,0.21539849,0.22297728,-0.27371007,-0.35304135,0.29498345,0.6233559,0.35724354,-0.059617687,0.17558892,-0.23361681,0.26120263,-0.45904332,0.24391137 +0.38729626,-0.48042554,-0.11848888,0.2533609,0.17656128,1.030576,-0.1533603,-0.5359508,0.30697125,0.146758,0.7738399,-0.7546848,-0.075486116,-1.0449575,-0.0060414993,-0.85806644,-0.908071 +-0.12390338,-0.201781,-0.2862207,-0.03624222,-0.2873067,0.11209632,-0.5663571,-0.34819114,-0.20922849,0.97074246,0.2172916,-0.49191186,-0.017867742,0.116292775,0.8917478,0.038868997,0.2863716 +0.23583491,0.1623932,0.08089067,0.5617167,0.37132046,1.3059913,-0.33132258,0.8599295,-0.08985387,0.30194196,0.34895435,-0.5800188,0.21554051,0.29967982,0.45103407,0.023368191,-0.043714534 +0.14809579,0.008575591,0.17554629,0.35248387,0.57933664,0.20963702,-0.23668279,-0.034499012,0.4181444,0.050958984,0.17905599,-0.012176053,-0.12566322,0.3854237,0.28491452,0.06216214,-0.12350429 +0.025574934,0.037582394,0.0021679508,0.13823467,0.28970677,0.019320294,-0.20015754,-0.036009137,0.1892321,0.28142834,0.082281694,0.053651948,0.10081714,0.23128302,0.40550745,-0.09866771,0.12251897 +0.3664488,-0.10884084,-0.060761325,1.1714542,0.49425608,0.41971964,0.033112332,0.21388662,0.4943126,0.18996756,-0.015586299,-0.42571348,-0.21226488,0.37100288,-0.16377744,0.18900898,0.2593789 +0.50514126,-0.12454969,-0.15055619,0.3369831,-0.037024338,0.21187203,-0.19852601,-0.13619837,0.38869652,0.49563184,-0.27667457,1.0245495,-0.24277842,-0.028099174,-0.26242504,-0.38046372,0.15613031 +0.24793847,0.049065433,-0.44458598,0.29271653,-0.16696292,0.19477874,-0.42874876,-0.55745065,0.28844905,0.41027611,0.48368686,-0.0807434,-0.26178885,-0.3212862,0.6222761,-0.1504606,0.100122 +0.19528589,0.0893027,-0.44260606,0.5139895,0.20489007,0.49439916,-0.18224858,0.13974418,0.7038919,0.43336558,-0.259231,-0.1664439,-0.16465987,0.072779745,0.2899758,-0.0721464,-0.19877206 +0.1384931,-0.024317227,0.11256448,0.7082889,-0.36030936,1.1267577,-0.42882696,-0.42870218,-0.3334203,0.22207105,-0.4055309,-0.32437664,-0.1674458,-0.058887113,-0.70072186,-0.8527224,0.79170835 +0.33702898,-0.24514261,-0.21187441,0.6931511,-0.14552124,0.8669965,-0.12746347,-0.4265351,-0.14731093,0.3072209,0.18728276,-0.0414413,-0.30587626,0.34848067,0.024268767,0.0031398283,0.2942678 +0.053503506,0.11133394,0.012601046,0.1663381,-0.049230717,0.19116375,0.16533548,-0.07783745,0.2816681,0.13319854,0.09571505,0.078090996,0.15152504,0.011035946,0.15565285,0.18140353,0.024328025 +0.2729981,0.13056517,-0.14110489,0.29402226,0.43672425,0.108487986,2.0400877,0.21783942,0.27293298,-0.48668525,0.41133028,0.0853581,0.05760518,0.2871931,0.109204955,0.3557209,0.23320664 +0.12104143,-0.27998078,-0.21859848,-0.12463922,-0.26161107,-0.027138548,-0.00133132,-0.48371148,-0.22623141,0.0032605738,-0.108027026,0.39705893,-0.15749542,-0.0014121707,-0.29505792,-0.3647061,0.03814067 +0.13097012,0.14162499,-0.06505886,0.13019767,0.22823104,0.11003614,-0.0128753595,0.16882624,0.17606167,0.012422873,0.08165843,-0.028477725,0.059958383,-0.07592833,-0.085841976,0.0036442874,0.05866864 +0.21098185,0.047699574,0.031651583,0.06865714,0.21134113,-0.102693684,0.19993147,0.0136717325,0.0833101,0.17631803,0.16873266,0.16484247,0.23142609,0.08564466,-0.15867202,0.03015788,0.2821037 +0.04986907,-0.099564575,-0.11629978,0.18683492,0.123827085,0.0965234,-0.09856939,-0.030299025,0.075259335,0.5064258,0.115392,-0.09648444,-0.12874965,0.34544337,0.097995825,-0.003885887,-0.17981355 +-0.1016372,-0.09995243,-0.30748373,-0.19134884,0.2427841,0.1575526,-0.4234098,-0.08100462,0.27048147,-0.0046701236,-0.46638966,0.8134817,-0.30209666,0.014061641,-0.19632593,-0.28696486,0.07749552 +0.9385091,-0.035262283,0.05462613,0.14051203,0.35008255,0.4739867,-0.052103624,0.086261034,0.1640723,-0.0126950275,-0.50984323,0.016822655,-0.29041636,1.0456877,0.37896043,0.49524626,0.02210485 +0.5380257,0.23259576,-0.09549348,0.09580267,0.11457855,-0.033569116,0.16744123,-0.4028097,0.22990699,-0.3424447,-0.3607746,0.12064802,-0.37440166,0.2896046,0.0688098,0.3111373,-0.2973918 +0.48933095,0.024164023,0.04079185,0.3736309,0.9871971,0.08790101,-0.12735479,-0.13470735,0.5571302,0.43656564,0.30778494,0.08317213,-0.5042928,0.6652252,0.07082435,-0.40899935,0.037837766 +0.15862869,0.58755094,0.042579714,0.35268766,0.20216347,0.16741051,-0.2245622,-0.009790132,0.38464022,0.031742856,-0.019061994,0.3653096,0.52871954,0.20198978,0.20358746,0.17339607,0.27137 +0.47325572,0.02078191,0.3123741,0.30646566,0.4209687,0.044836476,0.4050144,0.028689737,0.40754575,0.299468,0.1567977,0.4544847,-0.14703794,0.47277245,0.37281367,-0.100434594,-0.039427623 +-0.2783526,-0.12806702,-0.10248536,0.577539,-0.18199311,0.40197837,-0.5761354,-0.13957879,-0.10263733,0.72280633,-0.062102694,-0.38722494,0.10671902,-0.17284572,0.8023997,0.17673364,0.14931658 +0.14107737,-0.10827591,-0.07337774,0.33356544,0.4120696,0.016584937,-0.24361557,0.031394556,0.49188372,0.31518742,0.03548957,-0.3862627,0.2791648,0.041755456,-0.40225393,-0.22006494,0.12074633 +0.24792773,0.025364034,0.09007147,-0.02628694,0.06766321,0.05985299,0.09656025,0.027767634,0.1464743,0.14048141,-0.02158124,0.12414964,0.1720929,0.18677524,0.24611622,0.0061213216,0.09782679 +0.18596302,0.06851676,-0.44982946,0.17433079,0.019254528,0.46960196,-0.36989394,-0.45555094,0.068717614,0.51634854,-0.307551,-0.39564338,0.46552014,-0.43756583,-0.07829572,-0.37550098,0.06659013 +0.17171781,0.09731738,0.31979564,0.25613847,0.39953542,0.22360349,-0.33249357,-0.393581,0.38394922,0.53215414,0.1645553,-0.1715659,-0.07502447,0.14182462,0.20940396,0.11418233,0.24576977 +0.25269943,-0.05315999,0.07155005,0.27115145,0.08195961,0.25865987,0.12381012,0.1355737,0.04289128,0.11795992,0.21211971,0.035258744,0.1918603,0.097125396,-0.3529363,0.24029769,-0.07724371 +0.09973556,-0.01070572,-0.029981853,0.30649817,0.125766,0.16547908,-0.056179702,-0.038938493,0.15503797,-0.0080380365,-0.08988278,-0.06987036,-0.0011617149,0.090674356,0.045745917,-0.012135699,-0.0038955284 +0.4062973,0.017118754,0.00500081,1.1656642,0.25025004,0.43359548,-0.17074667,-0.09138563,0.28256208,0.102149196,0.07133118,-0.1968051,-0.021003027,0.17029177,-0.14135869,-0.16470294,0.06772786 +0.27300692,0.15684031,0.098200485,0.20504892,0.6133249,1.0937945,0.043649532,0.41775426,0.8239744,0.38937643,0.093498364,0.072691515,-0.06864103,0.13724849,0.11088805,-0.06702449,-0.031666357 +0.09815427,0.05122943,-0.053614296,-0.029342083,0.13755736,0.14020467,0.12981041,0.058281545,0.14958942,0.11544612,0.024591453,0.38845092,0.100266315,0.30529246,0.25926402,-0.03512007,0.23229729 +0.5997014,0.37810716,-0.11031931,0.3344267,0.3391591,0.50311464,-0.09443391,-0.38020808,0.19318719,0.18458962,-0.48126075,0.39587802,-0.14667487,0.313054,0.5876821,-0.095478356,-0.3646079 +-0.075387456,0.09485956,-0.085464455,0.1442823,0.3998118,0.19916998,0.025905538,0.3347929,0.3541837,0.044258412,-0.05804322,0.049752686,-0.03106486,0.16914622,-0.0280608,-0.007547266,0.11378289 +0.18860945,-0.30868864,0.0684739,0.2511809,0.43044347,0.19909884,-0.10698051,0.07275259,0.094741315,0.25394356,0.5522448,0.0077637304,-0.23196726,0.40315583,-0.11623991,0.24471162,-0.07630447 +0.5086647,-0.29808375,0.15556984,0.67853075,0.19220997,0.53934485,0.02483727,0.15010506,-0.045240425,-0.20587471,-0.28653437,0.07693937,-0.15753202,0.030211741,0.2463882,-0.11422199,-0.21299621 +0.10730583,-0.0668222,0.0026999738,0.17784835,0.11947827,0.11070226,-0.017046774,-0.25784382,0.17719577,-0.0018231858,-0.059591003,-0.0664947,-0.26054066,0.0876902,0.9676788,-0.08787605,-0.003770014 +0.34792122,-0.5157812,0.1555206,0.8821444,0.18189806,0.7101995,-0.6938317,-0.7132959,-0.58330315,0.44416797,-0.33141935,-0.18003623,-0.5819473,0.42486057,0.28061014,0.08688057,0.17309402 +0.8238612,-0.53087616,-0.5094672,0.6309196,-0.35293984,0.24929127,-0.09750219,-0.66248095,-0.44566447,-0.6795292,-0.07814557,0.4038324,-0.18462956,0.6271404,-0.6136126,-0.030967047,0.77335006 +-0.037942443,-0.06648946,-0.29055265,0.87893915,0.07487527,0.56116253,-0.30163488,-0.23047653,0.14464845,0.61338305,-0.120401815,-0.031315893,-0.1627129,0.3381956,0.1872041,-0.20611025,-0.16152808 +-0.5446479,0.046889395,-0.13572064,0.25346047,0.045767576,0.6249556,-0.26572064,-0.059326034,-0.14106768,0.29107228,-0.46945408,-0.3259908,0.29766172,0.09236592,-0.08791333,-0.19978164,0.5636222 +-0.10888865,-0.038817756,0.015919525,0.671136,0.3897806,1.0283182,-0.17357841,-0.06429273,0.40754485,0.20413819,-0.30969635,0.032044362,0.0020403266,-0.08543046,0.039598584,-0.16272749,0.041504566 +-0.043766644,0.2954325,-0.19151038,-0.05758527,0.19884606,0.49785584,-0.40102282,-0.25369698,0.31468916,0.18745954,-0.026286501,-0.24134989,0.4800404,0.26813978,-0.20397888,-0.185956,0.24564119 +-0.26330256,-0.01954373,0.028642261,0.17685907,0.67958367,0.19195405,-0.37164003,0.114091836,0.25112912,0.31252572,0.12523413,-0.2368296,0.24503836,0.3278801,0.26048025,0.24241766,0.15505907 +0.10312005,-0.07045116,-0.07899279,0.9556715,0.042630773,0.66252834,-0.6476261,-0.122164994,0.2770884,0.4005919,-0.013537689,-0.13909361,-0.10560209,-0.052021302,0.051796872,-0.09120059,0.107276015 +0.21274726,0.3373562,0.32193044,0.2793203,0.33507228,0.21584006,0.22278686,0.38278538,0.42276248,-0.33890203,-0.0020450682,0.15074554,0.096253805,0.07337397,-0.53997165,0.28277847,0.27639052 +0.13298026,-0.7116949,0.06916648,0.34939036,0.5045261,0.29701558,-0.20974305,0.02257462,0.5223675,0.32762834,-0.0062853815,-0.041611347,-0.5134453,0.4109264,-0.21388017,0.08875491,-0.016075911 +-0.054018505,-0.0852959,0.013411603,1.376155,0.38446212,0.48423955,-0.20686573,-0.26141542,0.38984987,0.36766168,-0.1827824,-0.06489033,-0.057829805,0.3942068,0.027842402,-0.1925297,0.09776632 +-0.478187,-0.04555616,-0.067848556,-0.2054606,0.003814341,-0.2595223,0.05727895,0.73902035,-0.435287,0.022353932,0.007828911,-0.16546895,-0.26194575,0.41362178,-0.2872575,-0.38183296,-0.04625568 +0.16786908,-0.13587995,-0.09313734,0.110547565,-0.039960634,0.074214034,-0.16035761,-0.24698475,0.0040258532,0.29476804,0.008279579,0.19957462,0.05230258,0.084791854,0.09822719,-0.1952249,0.16155213 +0.26883313,0.06727012,0.28748944,0.21932414,0.2966912,0.20538299,-0.26430598,-0.12438942,0.39695984,-0.11874433,0.67316365,0.2312512,-0.052085247,0.8994306,0.55099607,-0.3777297,0.10171325 +0.010125727,-0.012116961,-0.10444439,0.113141306,0.13368721,0.17751308,-0.13109115,-0.10979098,0.15574536,0.49673718,-0.29206255,-0.31889635,0.04722108,0.17452425,0.43749708,-0.073789485,-0.076443836 +0.27588755,0.14397311,-0.01807959,0.26279593,0.10501947,0.35523826,-0.17638455,0.28573638,0.31985825,0.3368762,0.20402582,-0.3534004,0.135589,0.47808135,0.0032342875,0.19339678,-0.1834714 +0.2591318,-0.15613009,0.47264966,0.36513594,0.3850584,1.1234529,0.0046612457,-0.1285788,0.30933383,-0.6259014,-0.2996607,0.03750546,-0.069183715,0.46360314,-0.06937357,-0.396297,-0.25245044 +0.18566604,0.10475096,-0.05035671,0.11786552,0.49290842,0.25016552,0.04412808,0.4514754,0.18652779,0.35904357,0.35390577,0.3744699,-0.06188877,0.23372667,-0.54073143,0.41232574,0.38088793 +0.28851405,-0.301712,-0.1884503,0.55581176,0.45401508,0.3820335,-0.3373646,-0.15176602,0.23313485,0.24171014,0.124432124,0.12092795,-0.12909096,0.4926289,-0.37650746,0.28161258,0.41198486 +-0.056195643,-0.2268289,0.16581397,-0.109846406,-0.15487829,-0.03638672,-0.19315481,-0.23061992,-0.1875869,-0.12260878,-0.1455428,0.27221173,-0.20212543,-0.15727124,-0.15023369,-0.19880639,-0.021481818 +0.21257184,0.25564563,-0.052369844,0.23472615,0.40680102,0.17076145,0.16387461,0.03945224,0.28550017,0.17237426,0.12754546,0.7221333,0.1757176,0.38747907,0.32150412,0.15785468,0.1765372 +0.046118733,0.6267052,-0.17773227,0.68523324,0.77157533,-0.21143816,0.08013975,-0.3396194,0.19483164,0.48232198,0.23582184,-0.63496387,0.78102076,0.44191828,0.4501654,0.070591815,-0.84339446 +0.43805313,0.086502396,0.066120885,-0.45045,0.2836672,0.5180144,0.0076018907,-0.4817891,0.1649984,0.9834046,-0.9012058,0.24395831,-0.2595617,0.51900953,0.75840765,0.09129968,-0.11073327 +-0.65464157,0.07148565,-0.08642401,0.090881586,0.031996176,0.114855,-0.13671842,-0.07255909,0.10168637,0.11461788,-0.39767513,0.6879159,-0.04271924,-0.16592537,-0.31397372,-0.1749946,0.24311191 +0.48636958,0.1993738,0.6297913,0.254943,0.042474072,0.2012702,0.54687864,-0.74731505,0.33389226,0.39124116,0.5947985,0.1612344,0.2097849,0.25401205,0.41415027,0.33402312,0.3375691 +0.11307998,-0.20541565,0.1086122,-0.62565184,0.6363009,-0.22507742,-0.70486057,-0.04983643,0.16862853,0.5085015,-0.2909755,0.37546378,0.27600878,0.3071178,-0.12238018,0.06767226,0.5692729 +-0.17933649,-0.036612865,0.40547815,0.4027335,0.30625224,0.34924048,0.05045947,0.5197199,0.48663175,0.18212281,0.3781805,-0.5322864,-0.0353214,0.0510062,0.41281265,-0.58227915,0.09168604 +0.015650257,-0.22211927,-0.5118018,0.29790133,0.002909343,0.43756467,-0.26741004,-0.033199903,0.23216115,0.3685712,-0.012625374,0.12643002,-0.29679772,-0.24752852,-0.12956744,-0.46547395,-0.3494582 +0.36192608,-0.3242065,0.5809565,1.1798191,0.4142271,0.81578153,-0.225799,0.13016531,0.6222182,0.4941348,0.34928998,-0.110679656,-0.40041947,0.29919145,0.03891496,0.23406233,0.3610792 +0.27290702,-1.11692,0.19116434,-0.13067004,-0.030385958,0.102339126,0.11155801,-0.46456522,0.09213455,-0.2576147,-0.54788333,-0.4330418,0.09131529,0.048888076,-0.36772653,-1.1564479,0.012632436 +0.1436657,-0.08456,0.06258556,0.19068651,0.30712974,0.10707819,-0.15226623,0.06686507,0.089714825,0.01658709,0.077262305,-0.00977364,-0.14086427,0.063614696,0.15208146,0.11030935,-0.0132363355 +0.15848531,0.032049008,-0.066643216,0.68271595,-0.16245553,0.12541372,-0.059903905,0.1923379,-0.12836522,0.0070899026,0.24077843,0.5976661,0.5580231,0.12502913,0.05857596,0.05869533,0.26557714 +0.4493917,0.56596756,-0.16264081,0.26066786,0.21299776,-0.44005668,-0.40799224,-0.44376177,0.9512159,-0.3168759,0.12354684,-0.0020529018,0.75693965,0.73613054,0.39563572,-0.44622698,0.34338528 +-0.04949724,-0.048129138,-0.22436175,0.1696077,0.01800333,-0.019607937,-0.4246894,0.119268686,0.43501052,0.15420932,-0.30230784,0.99905616,-0.2428988,-0.1350051,-0.30090958,-0.03413576,0.14885658 +0.039927498,0.47783408,-0.053615186,0.089320675,0.05766854,0.07272033,0.043931168,-0.013537371,0.09038766,0.018360104,0.0013790567,0.2586582,0.034806192,0.0017883716,-0.8319966,0.005833175,0.23804934 +-0.2849343,-0.47212195,-0.45130265,0.11396612,0.63170576,0.23959057,-0.48635635,-0.23717737,0.5575724,0.3558691,-0.33087543,-0.4326975,-0.08080236,-0.36708236,0.29494616,-0.39417043,0.22996616 +-0.010471341,0.08594257,-0.18123525,0.4394695,0.11891057,0.34860986,-0.49047494,0.026832247,-0.058288928,0.16374867,0.35139298,-0.24314635,-0.03547794,0.76457113,0.4566051,0.2209723,-0.066850714 +0.20401092,-0.11317038,-0.03714242,-4.0031242e-05,0.2565088,0.079206266,-0.31519568,-0.26748076,0.3860745,0.294829,0.21811491,-0.14059362,-0.15597194,0.65257746,0.10554733,-0.24910657,-0.064433224 +0.56991434,-0.36473158,-0.32051674,-0.23518468,0.7862737,-0.01966516,0.13602594,-0.3020425,0.56630003,-0.29342237,-1.3669913,0.41733742,0.07720894,0.5511676,-0.108292565,-0.8977305,-0.18410984 +0.23411827,-0.17006482,-0.093052275,0.50700426,0.3857506,0.6272457,-0.05399086,0.25939605,0.4240006,0.07098263,0.28703657,-0.20122558,0.16018938,0.63813484,-0.098207496,0.1503708,0.19925238 +0.22431478,0.08315095,-0.08420642,0.5286932,0.26532122,0.387484,-0.19031835,-0.26263613,0.35599145,0.090499364,0.42672792,-0.43207955,0.18281408,0.1697501,0.23779853,-0.095786236,-0.039349176 +-0.21220379,0.14109305,-0.65916246,-0.28548512,-0.20795931,0.22045074,-0.35749978,-0.4662157,0.33453757,0.0027337712,0.3678711,-0.090842575,-0.5229692,0.73834074,0.3434182,-0.89497167,0.045970727 +0.113256395,-0.32834876,0.042677697,0.5522181,0.82480973,0.54248136,0.036107708,0.16128424,0.24746142,-0.65847766,-0.33903572,0.23761547,-0.27380145,0.64064187,0.06741446,0.16279884,0.05623192 +0.5744637,-0.03190018,-0.048114825,0.71446455,0.2735532,0.6817533,-0.45804358,-0.25064653,0.55829036,0.44795263,0.36652678,-0.1739626,-0.27686986,0.30599833,0.20831244,0.052181207,-0.16372617 +-0.4859557,0.18630867,-0.35083887,1.1805198,-0.39794707,0.47320107,-0.60028815,-0.51362,0.4370162,0.100159876,0.166114,-0.1752126,0.45450336,0.7080854,-0.654255,-0.63161767,0.20099202 +0.0477936,-0.01705214,-0.2035044,0.81632394,0.30557778,0.08487898,-0.07600289,-0.035435706,0.34900033,0.34886047,0.01122351,0.060047626,-0.050775874,0.2218985,0.19782965,0.20930843,0.14379002 +-0.005958458,0.049894556,0.077112734,0.10366819,0.28739303,0.13595863,0.07176641,0.04205513,0.11567667,-0.019494008,-0.09333044,0.06230603,0.071544155,-0.03507892,-0.07099335,-0.11596193,-0.0824322 +-0.06400747,0.041580793,0.12809902,-0.036046248,0.31934217,0.15730564,-0.07982255,-0.1761556,0.11595551,0.11193536,0.08860448,0.11766432,0.1767133,0.10391249,-0.09929874,-0.14040874,-0.05875593 +-0.0029746576,0.2602098,0.05225452,0.18032996,0.20253108,0.29292944,-0.2492195,0.1911598,0.22929549,0.3327674,0.0048188632,-0.19240955,0.13853921,0.10446028,-0.22425464,0.14020348,-0.04152197 +0.636312,-0.14523908,0.027898464,-0.023560788,0.27283064,0.1567709,-0.005483347,0.3301426,0.716058,0.41587013,-0.24740542,-0.11663058,-0.2685004,0.5225377,-0.24005467,0.10058396,0.096168414 +0.068827085,-0.0007924639,-0.36886305,0.46912128,0.2921047,0.5048955,-0.35482502,0.13386212,0.16929518,0.46053723,0.15138863,-0.19025083,0.060651194,0.15964578,0.18708737,0.114628784,-0.096127406 +0.06418447,-0.050707255,-0.074438855,0.21247202,0.2833625,0.39394242,-0.07473229,-0.04651714,0.24430846,0.17844205,0.0174596,0.11382903,-0.21452494,0.1884873,0.52677774,0.09336956,-0.113720275 +0.15271738,0.14803511,-0.12947969,0.07999348,0.09301402,0.08240274,0.18898463,0.02303591,0.28420573,0.2691387,0.056222115,0.32115558,-0.009890119,0.1578672,0.0040450445,-0.026489938,0.29867893 +0.09065078,0.075018734,-0.20026202,0.6818337,0.32521802,0.55835855,-0.32525164,-0.3729829,0.5361684,0.4548252,0.22563304,-0.23792604,-0.0067295954,0.51080865,0.2382058,-0.16336055,-0.2623685 +-0.07622759,0.06803441,-0.3277594,0.33679688,0.36658326,-0.12502591,-0.015642159,0.032672208,0.029872933,-0.19807346,-0.09545331,0.12515157,-0.18025613,0.015102158,0.33084616,0.11833463,0.09363575 +0.06615933,0.1424394,-0.18640284,0.019652689,0.7809337,0.21030813,-0.73720604,-0.18322282,0.4709761,0.35910082,0.32386106,0.22686647,-0.3396548,0.6100302,0.07654865,0.010802149,0.09841363 +0.17861904,-0.07310667,-0.024775622,0.98917013,0.1773474,0.30146357,-0.12576449,-0.15421203,0.10009186,0.03201761,0.008181207,-0.013885889,-0.041274644,0.0316452,0.039568115,-0.12763104,-0.07024556 +-0.009308754,-0.13055976,0.22327489,0.17307684,0.0631459,0.123189434,-0.11392055,-0.24090324,0.09854802,-0.013664007,-0.12492662,-0.17711903,0.059045404,0.14323635,0.94829696,-0.24300076,-0.090120904 +0.6903214,0.19954966,-0.13867733,0.25885442,0.62828016,0.4506399,-0.31683776,0.25113,0.80175334,-0.28071964,0.3787795,0.22468087,-0.103478484,0.24034762,0.36306393,0.28720793,-0.22879794 +-0.10535651,0.17809223,-0.29640177,0.68082535,0.3754526,-0.38708127,-0.23185849,-0.11398927,0.68168455,0.2816141,-0.0041326126,-0.0922282,0.29505208,0.42171898,0.20893207,-0.08711891,-0.27772626 +0.16588016,-0.03294243,-0.03648779,0.4844254,0.41421008,0.22309874,-0.3019883,-0.11931906,0.50531894,0.18777779,0.08680912,-0.08785827,0.13842894,0.13483857,0.24988559,0.010147773,-0.03279411 +0.23898332,0.0029080429,0.13509327,0.44342116,0.123583056,0.74685675,-0.23526426,-0.08262854,0.10945181,-0.029653968,0.27354652,-0.20136473,-0.03393336,0.31382954,0.00071609573,0.18527597,-0.059836883 +0.69192,0.1930329,0.14900234,1.093824,-0.17920826,0.38651514,-0.07826642,-0.5542957,0.1746688,-0.26887423,-0.16727407,-0.19187556,0.30255526,0.08870119,0.14399076,-0.34636888,-0.50509346 +0.030078,-0.009502883,-0.044469044,0.40697214,0.13011497,0.1608024,-0.11536994,-0.1309625,0.31639102,-0.02372685,0.009521445,-0.14260975,0.10935824,0.008010883,0.009543287,0.03879422,-0.044891715 +0.59148175,-0.4633608,0.73763275,0.24813055,-0.2710399,0.53934,-0.069478355,0.28969616,0.344073,0.7193798,-0.71222997,-0.05511565,-0.50631064,0.763362,0.5279538,-0.82478905,-0.75180274 +-0.7247369,-0.07455371,-0.12659164,0.06445352,0.1783651,-0.12499717,-0.21137989,-0.73027486,0.1848657,0.6098902,-0.21760544,-0.3409504,0.13256745,-1.3646842,0.6847436,-0.17697293,0.025461094 +0.51213086,-0.12568827,-0.3228507,0.012181705,0.096854284,-0.035554655,-0.23913029,0.013127128,0.2395867,0.063966416,0.5078759,-0.47423238,0.009622825,0.9439779,0.45812532,-1.0978581,-0.6295797 +0.38646466,0.18225579,0.08513154,0.3014414,0.3141765,0.20158087,-0.032841977,-0.04362808,0.28746498,0.05765558,0.14230604,0.10903389,-0.040029142,-0.015625834,0.42409596,0.034527123,-0.012204002 +-0.2621688,1.3802136,0.025663523,-0.35671288,-0.20652255,0.33110303,-0.5786499,-0.8076318,0.031430967,-0.13420379,0.019681703,-0.002224792,0.41790688,0.17059329,0.080275744,-0.44662192,0.48487538 +0.22825117,0.0024591575,0.25496608,-0.057111874,0.33577758,0.08686714,0.3763831,-0.27774853,0.21069755,0.51632833,0.043632,0.15399477,0.22308202,0.06507637,-0.6930053,-0.06498049,0.090700306 +-1.3027819,0.4093365,0.344203,0.28811118,0.16551138,0.9144477,-0.39857373,0.10992284,0.108661704,-0.14757498,-0.6526602,-0.6525674,-0.18660828,-0.37014708,-0.39871824,-0.27758008,-0.13128011 +-0.026120631,0.04366139,-0.11055817,0.2430128,0.16771354,0.21560048,-0.08466281,0.12404805,0.121152036,-0.07594214,-0.031850763,0.058218826,-0.06818407,-0.09483894,-0.05073444,-0.062209528,-0.16660456 +0.081997916,-0.053805515,0.19658576,-0.0066655213,0.10355417,0.11694386,-0.17093098,-0.11188031,0.116485015,0.11046356,-0.13517433,0.04116781,0.16938291,-0.11010989,0.20667931,-0.14274897,0.032240085 +-0.49981657,-0.8584911,0.2070101,0.33226225,0.90016377,0.286506,-0.3349572,-0.9400211,0.69127816,-0.5275801,-0.221574,-0.13393685,-0.39806092,-1.5923496,0.4143038,-1.4065139,0.08107803 +0.35218126,-0.49256042,0.07452536,0.6467206,0.49662045,0.5488956,0.090724215,-0.18531649,0.66883963,0.6217822,0.4619299,-0.2993779,-0.3711045,-0.16884261,0.53098714,-0.6339742,-0.10549183 +-0.20473926,0.0015646825,-0.53726697,0.6922689,-1.3096617,1.0950763,-0.63801813,-0.34475887,-1.0880061,-0.4383919,-0.77777004,-0.30022565,-0.38068616,-1.1573778,-0.18940867,-1.3611208,-0.4126349 +-0.09147219,-0.017382039,0.06857377,0.20120326,0.0971802,0.26237044,-0.15249436,0.189666,0.15479665,0.89601517,0.036622234,-0.2980632,0.12155573,0.25648448,0.21477555,0.1800603,-0.100633115 +0.017639525,-0.21259372,0.017154977,0.029932452,0.11004707,0.13875537,-0.09651908,-0.051086463,0.092949696,0.10799683,-0.039460685,-0.060631268,-0.10025689,0.16958833,0.81328577,-0.03797699,-0.040507127 +-0.07313537,-0.023633545,0.14116149,-0.18379772,-0.015815858,-0.19827531,-0.029232606,-0.0622935,-0.1017541,0.10321903,-0.32579437,-0.12605809,0.15349287,0.12329267,0.17958023,0.018306436,-0.044192564 +-0.043068532,-0.15456769,-0.014405774,0.028460864,0.16820166,0.012687479,-0.101316296,0.09100004,-0.036797676,0.35059655,0.027952667,0.06175812,0.10333167,0.20831767,0.021278655,-0.20834477,0.20006335 +-0.02233487,0.27229595,-0.35085246,-0.20660557,0.24157497,-0.19184485,-0.2503318,-0.23144664,-0.060553074,0.6680103,-0.29339367,-0.19062355,0.039746393,0.26833522,0.15705809,0.12113325,0.013648902 +-0.18266402,-0.19776893,-0.15106468,0.11096656,-0.09632763,-0.035534307,-0.23452199,-0.26949862,-0.18386395,0.18224064,0.17210661,-0.15414007,-0.104897186,-0.33856308,-0.20285892,-0.25074682,0.13806273 +-0.020093692,-0.10627851,0.021151062,-0.002022338,0.028093932,0.013055053,-0.0836568,-0.08724345,0.060738444,-0.0038149497,-0.05709882,-0.10178052,-0.05266433,0.023367144,0.4121883,-0.09115625,0.026841518 +0.052970562,-0.07401775,0.20315252,0.8182124,0.42657706,0.15947849,-0.17562528,-0.22492795,0.47510707,0.2709981,-0.010501081,-0.06786693,0.15840478,-0.047136784,0.31382135,-0.4071936,-0.11991031 +-0.21489754,-0.3815794,-0.17963842,0.037848778,-0.13938162,0.018443016,-0.51933783,-0.37397394,-0.11398502,0.36786595,-0.109600194,0.14284873,-0.16468695,0.2953198,-0.14112023,-0.3632342,0.059086747 +0.20648499,0.09031859,-0.025907177,0.13297302,0.08904229,-0.11289959,-0.11630815,-0.19841065,-0.057087913,0.22554363,-0.052894462,-0.105706796,0.04672026,0.17756864,0.086085625,-0.119816706,-0.21540257 +0.58222824,0.3654964,0.03039243,1.4645592,0.36866453,0.45597756,-0.020656906,-0.03705224,0.51772803,0.12883441,-0.083289996,-0.004674762,0.188865,0.14413127,0.10892039,-0.18071647,0.22475019 +-0.70949775,-0.5588112,-0.20676106,-0.4521115,-0.60687613,-0.103384666,-0.99220425,-0.34532315,-0.72647226,-0.0446607,-0.32151464,1.3292316,-0.4215665,-0.8465,-0.206262,-0.37903407,-0.7887641 +0.070692,-0.0918393,0.09483391,0.79273707,0.19701648,0.19001053,-0.06918971,-0.106972024,0.21454176,-0.0072867526,-0.095992014,0.02699824,-0.025418663,0.041350357,-0.00035310443,-0.09756751,0.009201749 +0.15895453,0.046837118,-0.17751947,0.7342232,0.2406607,0.7915685,-0.23725541,-0.028793288,0.27751333,-0.042871438,-0.050516773,-0.04131532,-0.02096211,0.009651587,-0.03817275,0.009315089,-0.08957056 +0.20550814,-0.043604888,0.06785221,0.019634353,0.41686946,0.1802535,-0.6311389,-0.2428112,0.27066034,0.39379656,0.4334119,-0.096784875,-0.31708062,0.30925122,0.19937056,0.23625883,-0.17928742 +0.067789994,0.09554227,-0.08527529,0.06454278,0.13738748,0.087020755,-0.01570383,0.14307845,0.14900795,-0.08868838,0.020880701,-0.050034694,-0.03587556,0.021765757,0.038815428,0.021247564,-0.014531086 +0.048999023,0.15113989,0.015248783,0.46828917,-0.28138655,0.29730228,-0.885301,-0.20829469,-0.51490146,0.28298423,0.2644758,-0.29409924,0.040001925,0.39306295,0.6818314,0.12161225,-0.10948924 +-0.18917818,-0.03012468,0.1692624,0.77650195,0.15737402,0.5340504,-0.25171623,-0.19854917,-0.2852667,0.4558367,0.55810016,0.011690458,0.1082594,0.36173555,0.37251276,0.035952453,0.28038746 +0.5121723,-0.06898972,-0.14072692,-0.054579455,-0.027266847,0.15065235,-0.022125911,-0.27897137,0.42064285,0.1368487,-0.060850922,-0.19762704,-0.1989386,0.5777675,0.043341145,0.1532414,-0.33978075 +0.28853723,-0.53975874,0.0050947824,0.13153528,0.052873854,0.2294732,-0.54493904,0.13876966,0.24223424,0.50579226,0.048830297,1.0159302,0.21815926,0.30192837,-0.10829691,0.17322458,0.55307424 +0.3705063,0.11578836,-0.40459824,0.42556775,0.090673186,0.40088415,-0.043503765,0.05852843,-0.029365765,0.08481573,0.04795345,-0.17758498,0.5103055,-0.5412101,0.24407183,-0.28705096,0.6925359 +-0.50587225,0.07001357,-0.25818476,1.0137101,0.2604347,0.73895574,0.026850542,-0.49907237,0.8524457,-0.7056652,-1.2580274,0.18142758,-0.42695785,0.37159467,-0.5361305,-1.1656095,-0.023220265 +0.13147055,-0.59247804,0.29739335,0.11775917,0.1050053,0.2759739,-0.1574947,0.20585285,0.28066653,0.9843608,0.05916533,0.06985805,0.14580749,0.3352381,0.280129,0.010220004,-0.085569516 +0.0683041,-0.13479419,-0.17724545,1.3341788,0.17651375,0.2806832,0.060681175,-0.12068165,0.4483561,-0.059925936,0.011769682,-0.31610188,-0.6502521,0.31887695,-0.17306781,-0.5016948,0.19385332 +-0.11529556,0.27374527,0.29895428,0.17284565,0.19535904,0.046325773,0.20920157,0.008337661,-0.1040438,0.06995285,-0.032490827,0.19789769,0.4491203,0.04177833,-1.3472972,0.034550406,0.09588415 +0.002494554,0.040453706,0.043285348,0.4194606,-0.073448315,0.78491133,0.70248836,-0.43769473,-0.042858046,0.39711052,-0.3259305,0.19921844,-0.03885769,0.058360375,0.18832287,-0.44988355,0.37186676 +0.38241023,-0.32069117,0.39757052,0.19791545,0.33394837,0.27979165,0.09863264,0.46470466,0.4196876,-0.3760949,0.14665127,0.2357456,-0.060762007,0.42972013,0.28057083,0.089177966,-0.15481454 +-0.16572952,-0.45999357,0.1300227,-0.18736525,0.016027793,-0.11869177,-0.064379975,-0.27967298,0.0036497118,0.0729693,-0.20154427,-0.2952343,-0.028103279,0.15509398,1.4078345,-0.2174521,0.07958977 +0.106121026,0.0262013,-0.16001555,-0.22721086,0.07716205,0.08903261,-0.18153434,-0.43218055,0.13355741,0.108387195,-0.091284074,-0.017377343,-0.10580469,-0.21659845,0.2623198,-0.44206434,-0.17075099 +0.40328693,-0.018901257,-0.53965324,0.0456738,0.1998781,0.26313218,-0.4602548,-0.13182458,0.4506449,0.44046652,0.05589792,0.032182343,0.003885535,0.5904906,0.10644547,0.46771413,-0.012070025 +-0.017412,-0.39334238,0.16901617,-0.16900249,-0.03624768,0.40128878,-0.29430196,0.07134678,0.14176947,0.26532286,-0.06651413,0.0009995757,0.06821255,0.113038726,0.0958577,0.00505746,-0.146418 +0.2683907,-0.37299463,0.07723281,-0.2913,-0.1425932,-0.08010818,0.039705094,0.2748367,0.39847898,0.06622288,0.008635249,0.049738407,-0.22512917,0.20697974,0.5744153,0.18992063,-0.030315476 +0.14389952,-0.017601782,-0.06345625,0.23958671,0.087947845,0.1663303,-0.25122187,-0.107415855,0.11642135,0.408857,-0.033261526,-0.17188989,0.003321438,0.14414619,0.13855039,0.055321682,-0.12694718 +0.068753675,-0.25272354,-0.21866944,0.46457297,-0.09941066,0.7593333,-0.504468,0.21100266,-0.54200596,-0.3027516,-0.17031892,0.19223467,-0.5035723,0.050723087,-0.06981989,-0.47268423,-0.49574858 +0.20655918,-0.15636416,-0.04371026,1.1529906,-0.02626049,0.46695596,0.14245863,-0.11042897,0.31215104,0.17202935,-0.07522525,0.2422694,-0.33913144,0.62690103,0.31012785,-0.40836918,0.2515201 +0.8037585,0.021769537,-0.27417943,-0.3592338,0.30347556,0.48657307,0.23088744,0.3913369,0.7145704,-0.63932985,-0.48322368,0.010380728,-0.070743024,0.4651726,-0.4055429,-0.008098739,0.1636561 +0.55630803,0.09829664,-0.16346231,0.27514398,0.40500316,0.23626263,-0.4672094,-0.27829987,0.79709584,0.27874666,0.24664079,0.36267287,-0.07385816,0.616893,0.21568285,-0.36324272,-0.25227776 +-0.16165927,0.22003885,-0.3133889,-0.0060485597,-0.27056754,-0.084461674,-0.13502574,-0.52377975,-0.21055947,-0.3690855,-0.637367,-0.42751777,-0.1606006,-0.25127348,0.9913433,-0.442535,-0.6317233 +-0.8202327,1.6463225,0.41093057,0.00030951743,0.54737467,0.31437182,-0.303329,0.44827697,-0.37677038,0.48593503,-1.0424259,-0.65466577,1.3852361,-0.008569445,-0.9124044,-0.35128167,-0.4285718 +0.28375453,0.218024,-0.1586516,0.33027968,0.17801884,0.07958532,0.41660234,0.10511917,0.3818289,0.15005443,-0.010981884,-0.23062588,0.18731044,0.3527983,0.19006963,-0.1513063,0.52052474 +0.12871738,0.116297014,-0.034538303,0.2632059,0.13752992,0.22145025,0.024401123,0.030653121,0.21221703,0.10305954,-0.05837027,0.20217532,0.07690582,-0.018854946,-0.00047882705,-0.06690994,-0.1048876 +0.10895306,0.1596371,0.20048594,0.23360339,0.036087338,0.12038187,-0.06274222,-0.21130948,0.25494984,-0.14307995,-0.36818466,-0.09624481,-0.08369186,-0.04497105,0.13863748,-0.15221383,0.05346961 +0.9424562,-0.061942566,-0.19928014,0.22576126,0.5243836,0.43904626,-0.22530943,-0.67570335,0.3347944,0.401636,0.082918726,-0.3320934,0.108512856,-0.55970085,0.15429796,-0.3875593,-0.26159397 +0.07765652,-0.050194673,0.13980623,0.28459442,0.4366057,0.1747463,-0.3137533,0.016078072,0.32032225,0.43059364,-0.0680442,-0.12960106,-0.1216042,0.51162577,0.5500582,-0.06903115,0.118401594 +-0.009424638,0.15464984,0.7342547,0.16961633,0.1959018,-0.414814,0.14187743,-0.082213625,0.14829522,0.14750959,-0.6241069,0.12881917,0.012736529,1.0546677,0.46586895,-0.90201074,0.08006556 +-0.009341157,-0.02232734,-0.06475337,0.23529346,0.69392234,0.45957023,-0.43435168,-0.17862096,-0.047882456,0.034246415,-0.12115815,-0.09191249,0.027319016,0.28484616,-0.024840526,0.16289811,0.35464048 +0.16098054,0.16938862,-0.28211573,0.1250074,0.021625126,-0.025266511,0.051132295,-0.22929038,0.277838,-0.041163392,0.178488,-0.0030129575,0.009510348,-0.039023466,0.17251378,-0.11256936,0.09882627 +-0.031148091,-0.19979595,-0.07655494,0.20871061,0.05394189,0.102741756,-0.2817624,-0.5406134,-0.12813449,0.7712652,-0.35913005,-0.3328344,0.13761362,0.16534017,0.7245957,-0.6070466,-0.15887651 +-0.09484668,0.17865565,-0.3115135,0.88068056,-0.3947796,0.57151836,-0.3776951,-0.31634638,0.1447708,0.58662206,-0.2423199,-0.13398929,-0.18513507,0.31305978,0.3571367,0.13874231,0.19389063 +0.0035085739,0.09332407,-0.2501474,-0.04876818,-0.049759295,-0.111104004,-0.19843338,-0.32058945,-0.11735389,0.25385448,-0.19565664,0.2994823,-0.26705354,0.006246045,0.015984973,-0.19919567,0.31305695 +0.15180996,-0.09618788,-0.08088216,1.143093,0.20224716,0.27992278,-0.28039572,-0.08233503,0.3023546,0.09051265,0.07647979,0.015060466,-0.18462177,0.19396971,0.1474577,-0.08866418,0.058021296 +0.06586196,-0.16704603,0.019326055,0.3459541,0.39661455,0.22986609,-0.19883767,-0.26254392,0.16877708,0.11780946,-0.051966302,0.16552234,-0.010081137,0.23224866,-0.18643418,-0.11577748,0.18504208 +0.06970077,0.17549825,-0.51115483,0.9527203,0.28449813,0.96687526,-0.22373877,0.10849315,0.5890983,0.33603355,-0.58225006,-0.105210006,0.26348194,0.2287494,-0.14718147,-0.021981735,-0.6006911 +0.0024702726,0.09112681,-0.083728604,0.19203882,0.11949458,0.10776702,-0.15507625,0.15386309,0.1929183,-0.029102987,0.012019691,0.12609154,0.087388314,-0.021245385,0.06515896,-0.030928725,0.0045696907 +0.47708985,-0.07660501,-0.036173373,0.1486828,0.54275984,0.34073,-0.23352765,-0.052426152,0.46302378,0.5190456,0.17991006,-0.08325742,-0.3046998,0.6854398,0.23218967,0.36068144,-0.22740443 +-0.013485459,-0.07872877,-0.15570179,-0.14729746,0.04418768,0.055132616,-0.04967381,-0.32297146,0.014044965,-0.01799037,-0.46359447,0.0876118,0.22758582,0.2651463,0.18597291,-0.3852336,-0.12689362 +0.039287157,0.030615233,0.067836225,0.21732716,0.05898968,0.44454676,-0.08030772,-0.087201156,0.29489166,0.10228183,-0.0062918533,0.01410636,0.017407313,0.13424663,0.15730917,-0.060360342,0.18151453 +0.6590239,-0.08751162,0.6219197,-0.35811746,1.245223,-1.3119918,-0.6441438,0.4097899,1.2954959,-0.10268385,0.45329028,0.39315495,-0.40730786,0.42992562,0.45337173,0.5418894,-0.18913424 +0.0071462393,-0.091753066,-0.06992878,1.638686,0.22477151,0.49432987,-0.2796562,-0.34178877,0.57138157,0.33347934,-0.28401482,-0.0572733,-0.12675436,0.09638644,0.2269193,-0.056598186,-0.20758536 +0.30475417,0.02732991,0.067760296,1.6287062,0.44194165,0.41997892,0.0230554,0.03779826,0.3599173,0.26637465,0.007783218,-0.25340742,0.04140497,0.1717703,-0.108208366,-0.009166065,-0.029371697 +-0.07277539,-0.024535572,0.012165811,0.15777253,0.14218175,0.09087414,0.0073011685,0.07119955,0.1296642,0.09252792,-0.032509457,0.029837878,0.0020098358,0.13759686,0.04899273,0.041714787,-0.04050617 +0.46709344,0.17557268,-0.26904407,0.68102,0.09437099,0.7096149,-0.17531984,-0.2128032,0.024306543,-0.023905594,0.1413938,-0.19839226,0.26802427,0.20104271,0.21228668,-0.36305752,-0.2363368 +-0.0045300527,-0.08327997,0.11581878,0.11253149,0.18773898,0.12063894,-0.0233814,0.015940996,0.11050258,0.21086684,-0.09961634,-0.12047883,0.018735094,0.19282241,0.2537208,0.047414377,0.12223736 +0.19168559,0.45858628,0.26600796,-0.39718783,0.29646978,0.20619722,0.08974699,0.03355156,0.25400427,-0.2976127,-0.09990236,-0.32400402,-0.6055269,0.062398057,-0.5593766,-0.19137025,0.78875005 +0.78282386,0.11125433,-0.045629364,-0.2218431,1.2349144,-1.1685492,-0.6385589,-0.062365584,0.62905896,-0.62230223,0.5068267,0.2580255,-0.2925529,0.16111217,0.062764585,0.2441705,-0.04320458 +0.39396095,0.2027304,0.6520548,0.46777716,0.08404697,1.3801585,0.5343414,0.38704067,0.2362942,0.29824492,-0.037356418,0.39265755,0.20248632,0.41385552,0.1342911,0.011823071,-0.00812561 +0.39296204,0.13040625,-0.028310841,0.25871703,0.29231495,0.27028924,-0.5839184,0.010427892,0.14544727,0.4471504,0.481708,-0.13477542,-0.20485936,0.34673893,0.27540985,0.08038863,-0.212298 +0.21856959,0.3699749,-0.057368685,0.30103093,0.2442882,0.090638734,0.27577037,0.027562639,0.48810244,0.18437843,-0.0044066105,0.8377893,-0.029498316,0.21225664,0.035970427,0.13356389,0.41717497 +0.5731389,0.61975795,-0.037251845,0.49340415,0.29046112,0.47351262,-0.07056014,0.17382462,0.4086483,0.01969127,0.028582022,0.21583742,0.67977995,0.14348365,0.22012873,-0.031269148,0.08663952 +0.27906764,-0.012981806,-0.010821289,0.50637233,0.3479459,0.41757876,-0.17247911,0.1286493,0.19941373,0.30856603,-0.07509603,-0.0614551,0.15665066,0.12506324,0.10394394,-0.23892549,0.02660454 +0.2831615,-0.3519389,0.15552546,-0.050006993,0.17393814,-0.20901333,0.12601832,0.28934702,0.09240714,0.25326368,0.46922594,0.08546441,-0.05193627,0.3329387,1.4413507,0.10448524,0.20606217 +-0.0593236,-0.17727657,-0.17299777,-0.119642235,-0.16734998,0.110220626,0.03881428,-0.6382933,-0.007349966,0.8293498,-0.12755984,0.054057535,-0.31124678,-0.20663594,-0.32380858,-0.7365574,0.22673234 +-0.09733441,0.43208382,-0.4462392,0.17592889,-0.083866134,0.40560138,-0.19443187,-0.1428209,0.34581536,-0.1765846,0.08345468,0.20191945,-0.38121375,-0.04005444,0.29418778,-0.24579157,0.509775 +-0.8329286,-0.489479,0.23160833,0.06832937,-0.38757825,0.8492186,-0.19888936,-0.7158239,-0.36781853,0.18657687,-0.9379889,0.006503509,-0.5938662,-0.012979584,-0.8836755,-0.26822528,-0.083750345 +0.38333434,0.07245016,0.25191233,0.4475926,0.21389785,0.18966179,0.019779846,0.12854746,0.25468898,0.549791,0.12940411,0.025180204,0.16593756,0.24788842,-0.5680265,0.25576478,0.12352582 +0.38115406,-0.16869672,0.16254158,0.2858916,0.2372717,0.307197,-0.16964644,0.020836124,0.19452447,0.051046122,-0.17688726,-0.21055895,-0.114235274,0.14065531,0.71668994,-0.23285517,-0.1254765 +-0.08243776,0.3951482,0.10143567,-0.19923162,0.21621257,0.09705997,0.14976163,-0.018237354,-0.097435795,-0.010722311,0.04435782,0.1585895,0.15597318,0.04695202,-0.2126069,-0.18234436,0.006614887 +0.08955457,0.13272986,-0.1337788,-0.0060586156,0.35772076,0.1076395,-0.0191816,-0.031533986,0.25658706,0.10003821,0.13742672,-0.037154153,0.032742474,0.18576361,0.08267001,0.17502688,-0.035154898 +0.17193694,-0.20243517,0.047388196,0.3660165,0.13639271,0.36468026,-0.18888822,-0.43863413,0.0935399,0.9216889,-0.017914291,-0.22798184,0.028836202,0.18960112,-0.8191087,-0.40723208,0.3590686 +0.17016505,-0.15319486,-0.26218626,0.15206951,0.6349048,0.3442394,-0.06296394,-0.16913669,0.22284712,0.0914403,0.23303203,-0.079465635,0.11450571,0.49558187,0.12071453,0.14881097,0.31207702 +0.28913286,-0.24610457,0.47932667,0.04140954,0.23144613,0.24957311,-0.0022246912,-0.2812051,0.21498385,0.5052022,-0.16938646,-0.25829816,-0.32451946,0.2887082,-0.50714177,-0.054274276,0.10778632 +0.30567107,-0.20894125,0.09301357,0.08899923,0.25872102,0.0053480435,-0.0086778365,0.14978634,0.3216507,0.052299876,0.36764592,0.15763174,-0.27687335,0.20275751,1.6089201,-0.08027777,0.14822413 +0.17103013,0.37610483,0.06486423,0.07198522,0.10234699,0.27726948,-0.25397035,-0.23110811,0.3815991,0.2706192,0.06303046,-0.1855916,-0.12598379,0.2913784,-0.15420158,0.18122165,0.4026682 +0.1267933,-0.039665338,-0.17836878,-0.07970441,-0.05554292,-0.103997864,-0.19331695,-0.45177642,-0.04601538,0.4961043,-0.0316115,-0.11364686,-0.15217566,0.021168973,0.33731145,-0.15625808,0.06229088 +0.05361265,-0.017542668,0.068181336,0.031995725,0.24862531,0.14405076,-0.0748508,0.16198751,0.27298334,0.14154221,-0.03978046,-0.0433559,-0.10642061,0.060228314,-0.047511447,-0.039568633,0.061219204 +0.15860873,-0.009866564,0.0870921,0.5230825,0.22070706,0.19371991,-0.065591656,-0.038506392,0.25153103,0.06348153,-0.11478348,-0.044183582,0.0349232,0.18462542,0.08093218,-0.11153068,0.13106781 +0.31580374,0.17005174,0.02236186,-0.06413015,0.26388943,0.12094066,-0.091309726,0.13545054,0.11573109,-0.032552388,0.017950187,-0.014739646,0.1602104,0.2254146,0.265712,0.040722147,-0.085779496 +-0.04809306,-0.31468442,-0.17517063,0.68956906,0.38773558,0.46579313,-0.31706306,-0.22389013,0.2672239,0.5207569,-0.13467428,-0.0969573,-0.039468125,0.014124185,0.008207964,0.14028023,0.14317924 +0.24669491,-0.013742676,-0.24960838,-0.109104775,-0.16384105,-0.0013446123,-0.23675017,-0.42685723,-0.05744031,0.24784502,-0.14883922,-0.12571283,-0.21894136,0.09261306,0.037504073,-0.11142206,-0.059027493 +0.14846106,0.08882367,-0.050655473,0.23358099,0.2730375,0.103266284,-0.10918892,-0.09628737,0.21943088,0.37813735,0.14913079,0.0737983,0.06265703,0.1884412,-0.08719922,-0.14889586,0.3414868 +-0.034734488,-0.07206957,0.16984417,0.14880322,-0.06785388,0.21137048,-0.49361712,-0.305644,-0.05492077,0.12512405,0.039354183,0.32638255,-0.32178935,0.14368577,-0.005624846,-0.0006227549,0.07356649 +-0.015418298,-0.12616782,-0.04134636,-0.03703887,0.16231434,0.16991362,-0.18335852,0.18080193,0.19400582,0.13236025,0.15057383,0.0069060707,0.039977845,-0.11500407,0.6476946,0.0010295352,0.3466917 +0.14623141,0.020601189,-0.001155909,0.019644506,0.11551755,0.1925091,-0.18578124,-0.033105507,0.16325508,0.05506993,-0.050562408,0.014427717,-0.21382163,0.085482985,0.932598,0.040798485,0.1009008 +0.21210267,-0.15563619,0.017688524,0.4425457,0.40911797,0.2116471,-0.2920365,-0.05981813,0.2533656,-0.07840988,0.07787539,-0.023441082,-0.30876124,0.14538951,-0.0698265,-0.114826314,-0.11027089 +0.18348809,-0.084479995,0.06573448,-0.12106916,0.019476496,0.12930362,0.36371577,-0.1377671,0.14020489,-0.14636782,-0.017156253,-0.3484358,-0.29572183,-0.07398717,-0.1715005,-0.19036599,0.15254566 +-0.66285145,-0.1260706,-0.050809152,0.6392474,0.019742806,0.51930904,-0.39722115,-0.1173792,-0.2126817,0.7421477,0.011736078,-0.07388723,-0.04639415,0.116960205,-0.43645036,0.36259204,0.060063686 +0.46427703,0.1577146,0.28430977,-0.008990971,0.18633194,0.20212144,-0.2446941,0.0061458847,0.54791194,0.6430149,-0.14167257,0.11006887,-0.1211637,0.17767659,0.72866726,0.23709905,-0.19615524 +0.21917374,-0.054446224,0.14449537,0.31980646,0.6344535,0.29187825,-0.19147366,0.073454976,0.61149526,-0.19003598,0.01129773,-0.44855922,0.29304138,0.045448855,0.012444742,-0.25444582,-0.07699921 +-0.61807466,0.067215726,-0.6599314,-0.4152567,-0.5046922,-0.16651618,-0.6302395,-0.8105146,-0.49905184,-1.0278323,-0.70312387,-0.81652886,-0.20247513,-0.46272847,-0.19085842,-0.7052806,-0.02290887 +1.250318,-0.32042268,-0.5234965,0.32205966,0.39882746,0.24741133,-0.06501412,-0.077832,0.25681588,0.41753066,0.41940534,0.24410456,-0.60634696,0.30315304,0.6192418,-0.046775997,0.3375659 +0.17881367,0.0016843742,-0.02338949,0.54245615,-0.1676825,-0.087131314,0.36969823,0.18466057,-0.117564514,-0.22569084,0.31259334,-0.07476054,0.42646018,-0.18783349,0.23727793,0.04734939,-0.15691449 +-0.12010034,-0.28181833,0.24170144,0.8313346,0.4149166,0.7901559,-0.19210705,-0.11151214,0.19981961,0.18877976,-0.07305266,-0.1498848,-0.2843384,0.0364181,-0.05280096,-0.1605063,0.24133751 +-0.17572267,-0.43712452,-0.09395751,1.4699427,0.1826488,-0.019499568,-0.463278,-0.061928518,0.12948757,0.0223877,-0.0180843,0.06443463,-0.46266833,0.17004956,0.037840918,-0.025380537,0.096396886 +0.7453296,0.091242544,0.46956295,0.21348123,0.5012651,0.16811913,0.2280016,-0.46443796,0.592724,0.004847259,0.3328519,0.18106647,-0.12980773,0.19077694,0.24561894,0.1796478,0.5956149 +-0.3801226,-0.90342253,-0.1301081,0.16061743,-0.001741789,0.042346925,0.09817732,-0.28464678,-0.26207328,-0.13490558,-0.29846835,-0.6754165,-0.1259512,-1.1542152,0.37413138,-1.0035661,-0.07999585 +0.6560648,-0.09706154,0.33732197,0.12808864,0.39377496,0.8296406,0.4001953,-0.290283,0.87515795,0.033978667,-0.97546566,-0.009970364,-0.18863882,0.60624063,-0.026677966,-0.15279528,-1.1297066 +0.08155928,-0.08324918,0.112392575,0.18790768,0.14194863,0.573638,-0.2156071,0.40385094,0.029554706,-0.40673184,-0.07207256,-0.24753404,-0.1457756,0.23044021,-0.0706668,-0.09606855,-0.22634645 +0.33497065,0.52901393,0.4602538,0.38840723,0.47799146,0.1459861,0.41325435,-0.44009212,0.18138307,0.0016685597,0.5769984,0.21325581,0.083026044,0.26521412,0.123551056,0.17367841,0.34210718 +0.23587364,0.19834617,0.27424967,0.03485287,0.3116168,0.09178918,0.22952338,-0.12612616,0.23598513,0.11700718,-0.08563277,0.15959212,0.041725352,0.6453005,-0.02133393,0.08040345,0.034808517 +0.27122465,0.01913602,-0.05296372,0.36497012,0.15516026,0.10015665,-0.19934337,-0.18857916,0.13495825,0.25878784,0.0036183454,0.08220715,0.11473197,0.13558735,0.07421957,-0.024487203,0.00029927003 +0.1335367,0.073916815,-0.11003514,0.24532026,0.22965458,0.2935107,-0.058739033,-0.2123261,0.118678845,0.34568232,0.120561086,0.23076375,0.10496861,-0.20465831,-0.051687654,-0.09178827,0.41339442 +0.19847953,-0.18931758,0.08817079,0.6898074,0.113715656,-0.10051894,-0.014260795,0.11745152,0.30287954,0.03299283,0.13422517,1.1019306,0.32060573,0.15736014,-0.34107548,0.27090254,0.2630934 +-0.15274552,-0.11985598,-0.058520228,-0.04855194,0.044993628,-0.03381571,-0.12373618,-0.25811186,0.052789807,-0.14412206,0.05689172,-0.11133343,-0.11905156,-0.08261707,0.98169905,-0.44162574,-0.23060554 +-0.40810147,0.058172107,-0.0073184627,0.29978523,0.08431533,0.024273222,0.50902534,-0.004806366,0.15708329,0.13968368,0.10760996,0.21556404,0.18078841,0.12949482,0.14405581,-0.023089318,0.1813475 +-0.0765165,-0.09110004,-0.060779277,-0.14173533,-0.045989737,-0.01906185,-0.13072397,-0.16308483,0.09915461,-0.11059423,-0.08357971,-0.20570669,-0.08466675,-0.10559815,0.10535995,-0.18265441,-0.10390016 +0.3568815,-0.0121103935,0.060752273,0.73567456,0.1508008,0.3355441,-0.099192604,-0.18908148,0.13777281,0.07424234,-0.10711107,-0.033725265,0.091668986,0.062122107,0.019575413,-0.17899254,-0.111099444 +-0.39633563,-0.3362493,-0.32369202,-0.080271736,0.2622055,0.23716472,-0.11688027,0.03546746,0.43055084,0.35801277,-0.5730988,0.6842994,-0.39552146,-0.026335504,-0.6867962,-0.5849662,1.7635725 +-0.0016207665,0.13970774,0.27548683,0.36387363,0.4795751,0.25960895,0.1369793,-0.056530673,0.29156446,0.24447723,0.04191076,0.1749061,0.18476376,-0.24767108,0.079726376,-0.17422524,0.04174929 +0.13248943,-0.14817828,-0.05267404,0.13659655,0.3251443,0.44326848,-0.12065364,-0.2845046,0.44699886,-0.049460378,-0.04254703,-0.1663907,-0.16538572,0.48736537,-0.08900057,0.0096138045,-0.016217494 +-0.08312302,-0.20749003,-0.16778243,1.0871793,-0.026422681,0.1080231,-0.39085883,-0.43964723,0.062044382,-0.09488284,-0.05446527,-0.14273389,-0.32338014,-0.15039381,-0.030567914,-0.29873377,-0.17490828 +0.13634169,-0.20409782,0.061660916,-0.048891444,0.048288424,-0.07847884,-0.0012954767,0.054937262,0.0013106883,0.18933061,0.08174397,0.00022674979,-0.031331442,0.2501957,0.5322421,0.10419684,0.02300423 +0.2082959,0.14100751,-0.069327615,0.022927292,0.18715213,0.014755337,-0.005096699,0.21272029,0.097753525,0.00046221493,0.067785546,0.01007709,-0.085644424,-0.06270342,0.098343894,0.07006769,0.036205504 +-0.22273736,0.023407558,-0.32516363,-0.43513402,-0.32142016,-0.22066371,-0.22693534,-0.19960879,-0.30645928,0.07920575,-0.15329194,-0.1421839,-0.14930922,-0.028039012,-0.15327378,-0.08977669,-0.26089466 +0.1308471,0.6642721,-0.43260756,0.2760808,0.22245303,0.059465162,-0.42847666,-0.32466748,0.12746984,-0.062292755,-0.223302,-0.04924142,0.2689009,-0.10215762,0.12234607,-0.63826185,0.6251608 +-0.11614377,0.2466317,0.23841068,0.416938,0.16956,0.07033983,0.25822997,0.48143098,0.058697958,0.13461244,0.22562818,0.017335,0.14610206,0.13480684,0.13273261,0.1691544,0.23160149 +0.31270635,0.04756422,0.22843169,0.051905517,0.19826666,0.013230596,0.038644075,0.037261542,0.20682521,-0.14923769,-0.18071625,0.12027882,-0.21253267,0.41254905,0.11145644,-0.057400864,0.15275706 +0.49885404,0.28889266,-0.06517754,0.64827347,0.6303465,1.5187938,-0.21210454,0.046604246,0.5782773,0.20734967,-0.071633115,-0.3845965,0.09820018,0.30784765,-0.47137725,-0.07465627,0.5375965 +0.39574245,-0.20118111,0.31653556,0.17128517,0.5220093,0.025629072,0.020334657,0.22289476,0.07268336,-0.08312121,-0.05807753,0.389123,-0.13934976,0.2805986,-0.004418251,-0.3401569,-0.03467889 +0.1691261,0.5018655,0.19277865,-0.052858118,0.092894904,0.38458893,-0.05549664,-0.025548406,0.17985328,0.07899965,-0.02480252,-0.09613782,0.34192094,0.07299386,-0.29091588,0.04499696,0.24355064 +0.5081941,0.14987849,0.46462852,0.20863105,0.28977448,0.09886696,-0.74103445,-0.096064426,0.6694974,0.59711367,0.23683853,-0.26277012,-0.07725519,-0.1244898,0.26494002,0.17331421,0.24961941 +0.28584743,-0.02904584,-0.07298848,0.30209196,0.49507767,0.66473657,-0.15305127,0.30928978,0.5341306,0.43901598,-0.33824873,-0.22924659,0.16893901,0.15601622,-0.2631781,0.016390761,0.13184762 +0.103401355,-0.08305969,0.132402,1.2783958,0.37509918,0.20446171,-0.25304666,-0.09688539,0.17522892,-0.14267604,0.005907291,-0.14795129,-0.17806697,-0.0035197954,0.010899018,-0.5011994,0.26285297 +0.119223736,-0.02596659,-0.27863336,0.3871562,0.61402905,-0.5879718,0.041006662,-0.49285582,0.26907778,0.3455374,0.33082303,-0.2489512,0.2160684,0.24675913,0.25667182,0.30153143,0.49830624 +0.30563545,-0.349867,-0.015940951,0.5820692,-0.77100104,1.1043929,-0.34651297,-0.33994246,1.0699521,-0.13790238,-0.29451072,-0.7855831,0.78875786,-0.7019735,-0.104111075,-0.42277625,0.8140266 +0.8825921,-0.5950809,-0.56297284,-0.04272498,0.5695995,0.58741456,-0.58334804,-0.1351375,0.27112225,0.24077567,0.09648843,0.8592955,-0.23247193,0.25723103,0.055225078,-0.44012406,-0.5607807 +0.3385944,-0.40967023,-0.05229488,0.18075122,0.3304179,0.40980962,-0.1372242,-0.35819614,-0.07681417,0.3898087,-0.049214583,-0.1750915,-0.08517691,0.24712428,0.14989245,0.09917867,0.26743066 +0.5874578,-0.01009186,0.31861973,-0.5067755,1.040093,1.5560234,0.24919799,-0.22118615,0.58812314,0.94755065,0.2330187,-0.06052949,0.38067672,0.62891483,-0.40973562,-0.4527344,-0.13170399 +0.3416497,-0.03399204,-0.3984044,1.0051113,-0.032774035,0.2773562,-0.2661893,-0.05737281,0.16138566,-0.091682136,0.118701704,0.147245,0.01466544,0.30331942,0.29133484,0.2526828,-0.29128164 +0.2965808,0.13519534,0.07687194,0.01519029,0.32612008,-0.18175301,-0.14623089,-0.102703065,0.121787414,0.012954295,-0.121550456,0.5010065,0.3956752,0.2051636,0.018496849,-0.02672535,0.14189735 +-0.010733436,-0.20623505,0.07942165,0.09197599,0.27766305,0.07843749,-0.19239043,0.047572397,0.3649742,0.10540694,0.01671869,0.17814237,-0.2670388,0.20010382,0.09843585,0.11297212,-0.18037815 +0.08119861,0.03094876,0.17907926,0.47634205,0.27305079,0.06363306,-0.20215681,0.028484356,0.4057879,0.29247776,0.105603926,0.12604904,0.20702429,0.32766518,0.24126464,0.13435838,-0.10994543 +0.19331338,0.08918929,-0.0032240648,0.29067487,0.27602443,-0.015877508,-0.27525645,-0.093506664,0.21042858,0.096322976,0.081171066,0.06755214,0.04938948,0.11285458,0.22311983,0.14764391,-0.06324932 +0.37625736,0.031255066,0.77718294,0.38562384,-0.08707462,-1.1920394,0.40034184,0.68384206,0.1983881,0.084448345,0.24916008,0.5092506,0.39145055,0.5912248,0.21053463,0.11136123,0.23517847 +0.24782988,-0.043418203,0.22858512,0.16107549,0.07378287,0.06717397,0.18725665,0.18036585,0.08278357,0.13086314,0.07288215,0.1361975,0.13791788,0.30699846,0.099720575,0.13051052,-0.07578209 +-0.1743176,-0.29622155,0.6208824,0.48642373,-0.4305053,0.47851956,0.23841265,-0.30852053,0.02271444,-0.3191904,-0.85105056,0.34779274,-0.4760969,-1.0593318,0.17363188,0.22184624,0.12933856 +0.39977598,0.20704125,0.058880314,0.14704949,0.28785247,-0.68164915,0.093626544,0.4326843,0.24917352,0.24216579,-0.061162435,-0.12738636,0.2313741,0.4802746,0.35919774,-0.04011737,-0.24622221 +0.14311004,0.5908964,0.05151413,0.13323924,0.026615705,-0.112231694,0.21168919,0.38703024,-0.2661974,-0.0041384134,-0.094712,-0.36249903,0.24122536,-0.019414147,-0.1455447,-0.26395833,-0.14104702 +-0.20072551,0.1282881,-0.5522566,-0.030906236,0.33726984,0.6732828,-0.50538576,-0.36504123,0.119920716,-0.22708449,-0.66968703,-0.7094906,0.29797298,0.22955261,-0.14785111,-0.26438835,-0.30852118 +-0.09242915,-0.110333055,0.15934688,0.18904527,0.22389095,0.013321524,0.037839737,-0.08751578,0.072761424,0.15425292,0.03058522,-0.0081944475,-0.057817683,0.052420806,-0.11698065,-0.0036684487,0.022590626 +0.0031378914,-0.065026045,-0.16585672,-0.085612886,-0.041087605,-0.24162127,-0.05161398,-0.30502015,-0.0962094,0.053589452,-0.14339249,-0.095497414,-0.16856827,0.019483315,0.011179981,-0.1822659,0.06588996 +0.8197715,0.094374806,-0.06108197,0.11075379,0.5554665,0.6198807,-0.3706068,-0.7022241,0.12565863,0.007744451,0.6750313,0.15793413,-0.40009007,0.5982332,-0.022080058,0.0073071355,-0.51173866 +-0.03494863,0.2814613,0.13715819,0.4415582,0.016937632,0.19587104,-0.027638054,0.20020427,0.059779715,-0.26110885,-0.3055507,0.034224924,-0.12422942,0.049510546,0.37336868,0.11021145,0.09513467 +-0.1250819,-0.2927761,-0.4834635,-0.08445019,0.24061474,-0.1611623,0.012377602,0.12607257,0.33677202,0.33888733,0.1589778,-0.4484836,-0.27820158,-0.007942961,0.25463873,0.38124084,-0.18523903 +0.270799,-0.17720196,-0.0497698,0.2243536,0.02621014,0.033335418,0.048578218,-0.10656232,0.20893826,-0.028498657,-0.33926356,-0.081634454,-0.13326247,0.29460105,0.35510892,0.024880439,0.018275125 +0.09680755,0.2377524,0.1696441,-0.370986,0.29627714,0.39720833,-0.0034451676,-0.09951091,0.070964515,0.33691296,-0.10672112,0.2809835,0.17649585,0.40276843,0.35672686,0.24643533,0.1289846 +0.1642084,0.18701135,0.19935666,0.24937938,-0.1425951,0.15249254,0.30163312,0.3083239,0.33520424,-0.11003049,0.24078657,0.01597514,0.056765232,0.03461867,-0.06891122,0.25743067,-0.2798951 +-0.3018589,-0.43776965,-0.1981089,-0.2923562,-0.117572986,0.014207656,-0.28895947,-0.47866163,-0.04251158,0.1593772,-0.34585142,-0.14651904,-0.06860079,-0.03649932,0.07729339,-0.44211885,-0.16558503 +-0.03593272,-0.40964928,-0.31465012,-0.14739738,-0.38573655,-0.034488387,-0.36388776,0.081507325,-0.048569553,0.072201334,-0.135654,-0.12776048,-0.13321662,-0.34268966,0.035977703,-0.3057507,-0.17677654 +0.3626409,-0.19800037,0.08862035,0.5144522,0.3452022,0.6951544,-0.28702748,0.20886892,0.64936024,-0.49805185,-0.08208753,-0.14462641,-0.37518382,0.22082017,-0.18156788,-0.15258326,0.2582928 +0.070216425,0.2788389,-0.09844413,0.4374855,0.55049855,-0.084954254,-0.19237639,0.26030833,0.24359496,-0.29136157,0.0994193,-0.29183608,0.29766497,0.09781958,0.15879208,-0.18526149,0.26067752 +0.4154235,-0.28311777,-0.04377652,0.20468393,0.1916964,-0.19358769,0.14535797,0.124772206,-0.030902546,0.084183566,0.28536996,-0.09138873,0.07548157,0.8681589,0.6459879,-0.3917798,0.18792267 +0.274613,-0.048845284,-0.01543006,0.33115122,0.1504773,0.21934731,-0.4804953,-0.008988454,0.18268198,0.8002414,-0.28210878,0.0701466,-0.13061297,0.39478362,0.37722328,0.23435996,0.011430165 +0.20861968,-0.09383111,0.05255931,0.1646135,0.20063174,0.40267235,-0.9025258,-0.0862679,0.157272,-0.29414916,-0.41696405,0.51334125,-0.033660814,-0.3484918,-0.032770943,-0.06368896,-0.57274556 +-0.009282515,-0.5661677,0.12821403,0.18382323,0.48084763,0.18132593,-0.2676043,-0.093185745,0.2430331,0.09155971,-0.27163622,-0.16370045,0.16142517,-0.20991267,0.22088729,0.03739344,0.20668966 +0.0035071264,-0.26861376,-0.08157642,-0.32308367,-0.04651037,0.036292277,-0.5783434,-0.36961246,-0.012769937,0.11162179,-0.55303884,1.8532983,-0.102990456,-2.2503777,0.107880674,-0.32072762,0.024583314 +0.7158421,-0.021756787,0.37265387,0.43025604,0.9674399,1.2887298,-0.42662898,-0.17570435,0.45143116,0.93323934,-0.2941037,0.1846473,-0.53480303,0.29231328,-0.13128285,0.18271072,-0.31172556 +0.4220367,0.060885217,-0.35644928,0.49795505,-0.06617269,0.31002066,-0.18469682,-0.041140813,0.34223175,-0.063521445,0.087299526,0.1440412,0.0036525726,0.056089833,0.17102516,0.030185537,-0.2932975 +-0.15315846,-0.31563336,0.21645734,0.13591549,0.07591957,0.2462731,0.07784404,-0.19461717,-0.013133142,0.49966404,-0.2700057,-0.023598887,-0.050622158,-0.009403706,-0.2722647,-0.3947006,0.21250224 +0.6054775,-0.18423672,-0.01619317,0.6404586,0.79922634,-0.010615087,0.33329564,-0.095606774,0.70840925,-0.45077842,0.2368708,0.06549687,0.40883732,0.078214355,-0.12777989,-0.0041205273,-0.14483528 +0.11371813,0.058557525,-0.0428352,0.017053982,0.2621182,0.09843495,-0.037913337,-0.3011209,0.3380649,0.32465875,-0.077773616,-0.058676936,0.18712139,0.19383503,0.28535327,-0.45518145,0.2001604 +0.12931272,-0.42205206,0.29806975,0.21383217,-0.086849496,0.2868752,-0.08326533,-0.2431928,0.39182147,0.5648705,0.10082398,0.020034393,-0.10886412,0.014839518,0.41255203,0.10156688,0.092192955 +0.25988033,-0.10862588,-0.05179627,0.12131321,0.30899286,0.17713968,0.027048001,0.23135026,0.46879923,0.9263625,-0.31235105,0.124295294,-0.017910656,0.05107157,0.4342905,-0.19880845,-0.05415137 +-0.56710374,0.44363528,-0.26436815,0.09186758,-0.19917396,-0.3660392,-0.6545859,-0.1567615,-0.23014079,-0.0045643006,-0.246697,-0.29516608,-0.38865677,-0.4297919,-0.0026480383,-0.094158806,0.28709176 +0.3631686,0.09300952,-0.002666394,0.18622105,0.13543141,0.4677881,0.041402183,0.32153553,0.23628032,0.17897075,-0.13235068,0.11334481,-0.04047625,0.095406406,1.0384696,0.51156205,0.33444107 +0.20211755,-0.21166465,0.3356814,0.022904905,0.6106777,1.2675464,-0.32626998,-0.7186144,0.47830158,0.25362396,-0.17060208,0.115483426,0.1890674,-0.19125807,-0.1617186,-0.6639007,0.3551943 +0.020011835,-0.3019968,0.26523378,0.05791677,0.10032063,0.133454,0.013879689,-0.060660005,0.18639077,0.12958667,-0.08560113,-0.11778442,0.17141397,0.33838493,0.8100391,-0.0058555948,-0.22420536 +-0.13548383,-0.028590139,0.074568056,0.38568336,0.123300865,0.17631115,0.01344237,0.15688686,0.24198446,0.10221227,-0.14611742,-0.12290837,-0.029940404,0.18733384,0.3306571,0.1752108,0.05178125 +0.13573222,0.066847384,0.0492518,0.1425955,0.40617442,0.12797214,-0.21606226,-0.21998958,0.085106045,0.20823799,0.26174143,0.000663424,0.09906725,0.30264348,-0.1280166,0.14840226,0.26505077 +0.41002092,0.06532559,-0.15589671,0.2784297,0.21472587,-0.19487317,-0.3579603,-0.29652804,0.25053275,-0.042646732,0.20730108,0.18189694,0.1183364,0.14771275,0.24725306,0.07657637,-0.14802654 +0.37948328,0.09423281,0.4476473,0.18492502,-0.09641821,0.14664796,-0.28353086,-0.31060088,0.5215261,-0.0077883746,0.25471583,0.34274015,0.05238043,0.1049355,-0.027583703,0.11608603,0.19179554 +0.20081732,-0.07016078,-0.04125854,1.0934613,0.4006913,0.4497187,-0.15270135,-0.14741078,0.42411202,0.17681976,-0.11869355,-0.12181913,-0.09691429,0.352395,-0.025083354,-0.04418732,0.07990897 +0.5539005,0.114593126,-0.13748702,1.1391262,0.14991345,1.1104013,-0.20595156,-0.234532,0.27186137,-0.03975008,-0.10347615,-0.035492875,0.12262433,0.23351508,0.13659532,-0.124351375,-0.19976944 +0.12503038,-0.24626654,-0.10694358,0.5463851,0.5059957,0.8665389,-0.24399891,-0.049937956,0.35117528,0.6059284,-0.13470924,-0.2770799,-0.22937547,0.12005135,-0.043287538,-0.17771675,0.06989847 +-0.31267148,-0.41189978,0.27776432,0.595632,0.61287636,0.42287847,-0.46457753,0.043382943,0.69237983,-0.037595477,0.22686109,0.1052987,-0.26935163,0.53443575,0.17900144,0.44717985,0.00053131685 +-0.63222307,0.4268801,-0.19174615,0.21151908,-0.7574914,0.52976525,-0.84326684,-0.6937716,-0.8295009,0.90901494,-1.0599797,0.17502877,-0.25645518,-0.9929407,0.63450295,-0.9781977,0.36962995 +0.2083337,0.23129551,0.33109233,0.26631314,0.34151033,-0.044701707,0.08649356,0.16008702,0.24504976,0.20418327,-0.029331077,0.113705225,0.09249371,0.05333855,-0.10951602,0.03447225,0.1971077 +0.35237387,0.071366616,-0.024522042,0.17973942,0.21754281,0.14129856,0.2880447,0.4330047,-0.053242322,0.08396191,0.36977002,0.20661159,0.26121873,0.14289816,-0.42002007,0.18257995,-0.1662542 +-0.077068545,-0.20291711,-0.50202954,0.29256266,-0.119824104,0.92249537,-0.4427116,-0.7932765,-0.07221332,-0.76753116,-0.56176203,-0.6472875,-0.40161717,0.18465678,-0.40731418,-0.22308892,0.23793465 +0.6722813,1.1672227,-0.36621973,-0.14398895,0.15953863,0.34893635,-0.29330203,0.09377193,0.33538932,-0.10853051,-0.017468587,-0.3914409,1.1794239,0.7048927,0.14983293,-0.5210289,-0.06759142 +0.11533197,0.01600095,-0.33180484,0.07275811,0.08716566,-0.060618483,-0.15525173,-0.6359402,0.13871783,0.60020906,-0.38918465,-0.44080305,-0.45417473,0.4539168,0.43921706,-0.4164053,0.09789487 +-0.085051894,-0.2572216,-0.21663208,-0.23315126,0.017590133,0.35544288,-0.14629917,0.26940402,0.026002342,0.013193251,-0.40704793,-0.05730468,-0.15804887,-0.004283979,0.0073258546,-0.07155012,-0.048053496 +0.2886881,0.034219254,0.22472267,0.07285317,-0.12005415,0.16236904,0.9363685,0.031713706,-0.0058734245,-0.13003135,-0.03694653,0.2575774,0.06812093,0.07348317,-0.024756532,-0.0847409,0.4903405 +0.21449389,-0.03967645,0.7477166,0.32660186,0.3402412,0.32090297,0.19637051,0.11891166,0.41165355,0.3780376,-0.48025385,0.18385293,0.2769375,0.77183217,-0.7911229,-0.2831609,-0.27245563 +0.7669255,0.019050669,0.66227627,1.7233181,0.49993083,-1.9023147,-0.05476896,-0.040558256,0.72787726,-1.7343409,-0.24566856,0.38394013,0.25060686,0.59875554,-0.7660433,0.14030111,0.22066356 +0.661994,-0.20830464,-0.27518818,0.100705884,0.24171051,0.123670116,-0.39812165,-0.31433225,-0.19733325,0.46436992,0.10225001,-0.18614432,-0.17674609,0.08397277,0.2752739,-0.41306043,0.095180236 +0.33528635,0.06744006,0.095544495,0.3370008,0.8485701,0.6730516,-0.13846834,0.13563615,0.8308552,-0.049177386,0.10426653,0.2796953,-0.2653467,0.5498831,-0.9516152,0.5597667,0.3146062 +0.033261307,-0.14743467,-0.4082913,0.053778417,-0.0082693985,0.18525451,-0.29544076,-0.56602746,-0.21266064,0.79292935,-0.069036864,-0.20884095,-0.2656593,0.057647336,0.8683704,-0.29045323,0.13236094 +0.22762036,0.2345419,0.21130781,-0.33237097,-0.080383316,-0.048748944,0.19260702,0.056828443,0.04509276,0.118428126,0.15335785,-0.031183578,-0.17746823,0.22512844,-0.03785653,0.007331534,0.053160913 +-0.48052007,0.10407024,0.16073379,0.36943313,0.063575186,0.33425784,-0.060165137,0.2068388,0.2582564,0.9272175,-0.15502913,0.24531269,-0.02625794,0.4367185,0.22011098,0.1446292,-0.28836715 +0.07347833,-0.79579836,-0.5049302,0.40089738,0.69762975,0.12357801,-0.12805654,0.15813369,0.6819475,0.92500734,0.29770425,0.21126501,-1.1329151,0.36180717,0.22826682,-0.17893888,0.1308371 +0.13485591,-0.44024256,-0.2924685,0.80052805,0.62742573,0.28982946,-0.41686442,0.113136485,0.30264905,0.16523193,-0.22408247,-0.41518244,-0.0037821145,-0.17266388,-0.33960038,-1.288815,-0.3621094 +-0.27623913,-0.06878287,0.18783735,-0.20013735,0.26205325,0.12796785,-0.29882756,-0.16914536,-0.16035298,0.258849,-0.034287952,0.17414908,0.40028998,0.035347678,-0.37573075,-0.065295294,-0.05196277 +-0.26474285,-0.16566382,-0.039423276,0.7116409,0.10562256,0.093606554,-0.1745094,-0.29776424,0.023185778,0.2512275,-0.18451893,-0.29716143,-0.01581688,-0.089866035,-0.04525879,-0.05672615,-0.1370523 +0.30050504,0.19668193,0.06461556,-0.12320436,0.28534743,0.14912443,-0.007175625,0.053813584,0.19186084,-0.16092306,0.06686324,0.13817813,0.15015444,-0.12451523,0.03685243,-0.14636733,-0.10241144 +0.16174185,0.15573807,0.21862195,0.1326912,0.017356222,0.021421466,0.24359839,0.28783363,0.073358364,0.026191898,0.22355686,0.14620964,0.05187017,0.07702035,0.077628806,0.15328571,0.10550873 +0.0186629,-0.059142984,0.09717023,0.96443105,0.24249053,0.2080679,-0.0046005985,-0.02615385,0.13360369,0.12365536,-0.09297688,-0.11351718,-0.008395934,0.12253222,0.21687469,-0.07175968,0.09437223 +-0.30992106,-0.1734999,-0.05338727,0.7133942,0.98632985,0.056939535,-0.19329321,-0.09938312,0.024220293,0.15852594,0.43062058,-0.38528368,0.5161228,0.07770788,-0.25630882,-1.0149547,-0.16016339 +-0.15971826,0.3164765,0.39329052,0.19440451,0.41511837,0.30855277,0.11118788,0.0011331444,-0.24221355,0.22137594,-0.2522491,0.09068168,0.6366147,0.37655306,1.983524,-0.03378939,-0.15447009 +1.0705856,-0.45705992,1.0527364,0.6540372,-0.118196614,-1.6232005,0.37650818,-0.6816536,-0.20119186,0.09158259,-0.79660153,0.4305613,-0.33116668,0.7461081,-0.18826374,0.2107306,-1.29143 +-0.09203027,0.37051994,0.18140124,-0.04310619,0.23874512,0.27968797,0.101842076,0.33583453,0.12093104,-0.14519271,0.31460267,0.26659647,0.30050537,0.008876856,0.82027537,0.04053949,0.023919305 +0.34542903,0.14259323,-0.07014323,0.36704254,-0.018933598,0.10639306,0.34487435,-0.23085028,0.26804537,0.3144059,0.260886,1.0589454,0.15898967,0.25374937,-0.15110976,-0.09503307,0.89675564 +-0.4125215,0.69172186,-0.055279803,0.005333764,0.176579,-0.2895667,0.21847658,0.41596055,-0.17938633,0.42442346,-0.36877805,0.10856773,0.7595904,-0.42875952,-0.58049047,0.35437548,-0.35834157 +-0.6903746,-0.42987034,0.25291976,0.71314406,-1.1562243,1.5649945,-0.4296945,-0.35645005,-1.2537303,0.3506133,-0.751151,-0.30795285,-0.16947289,0.39772,-0.42041102,-0.17020722,0.5298567 +-0.4476722,-0.105495766,-0.14846285,0.6620333,0.2781302,0.61984354,-0.55407363,-0.03870686,0.17373917,0.47985423,0.15091501,-0.16408233,-0.34505388,0.12369465,0.34235966,-0.44648635,-0.03739654 +0.6392274,-0.38733387,-0.12673056,0.39720732,0.96981126,0.28962225,-0.2826483,-0.16519925,0.54533815,0.88067466,0.56609726,0.33882296,-0.08140588,-0.3926051,-0.23670046,0.38329515,0.45149982 +0.029949924,0.100145385,-0.05467433,0.21828085,0.20467226,0.18141113,-0.094266206,0.137845,0.22203274,0.1416605,-0.060432654,-0.19148491,0.02122946,0.114566684,-9.9539175e-05,0.09713427,0.051711686 +0.114711925,0.15996376,0.068419084,0.18659338,0.14566821,0.015103535,-0.0898554,-0.012890831,0.059696857,-0.053971857,-0.1134505,0.043618057,0.17472047,0.114390396,-0.039871674,-0.16969253,0.19800921 +0.21917592,-0.09140713,-0.0973607,0.38932705,0.1309919,0.48473355,-0.40930596,-0.4414392,0.20484485,0.06062872,0.15340002,-0.29069945,-0.087533966,0.03516649,-0.11486977,0.10282779,0.09474938 +-0.12294603,-0.23315759,-0.24549526,1.0707446,0.16239105,0.71243715,-0.41057956,-0.47738892,0.28936607,0.5166518,-0.18823199,-0.16320805,-0.23192269,0.29784244,0.049301002,-0.39108756,0.17739959 +-0.2370597,0.112121105,0.3045507,0.3289167,0.08828661,-0.22181526,0.39876387,-0.13945755,-0.037305813,0.2969893,0.17299485,0.38726988,0.15744175,0.31194913,-0.48101902,-0.18315084,0.26552576 +0.75268644,-0.016707536,-0.31849408,0.48871365,0.6998805,0.5297887,0.001118374,-0.13254295,0.092561096,0.81316954,0.055571154,0.10760549,-0.52553886,0.03753098,0.25146428,-0.42302257,-0.24789503 +0.0939565,-0.40669185,0.11415506,1.8793774,0.34728393,0.33625486,-0.3834388,-0.64578414,0.13001889,0.25528267,-0.33711419,-0.09352581,-0.29381463,-0.016413946,-0.011122944,-0.45096296,-0.18526953 +0.121260546,-0.1365239,-0.0816981,0.18080375,-0.16904752,0.36746243,-0.08850313,-0.35094187,0.42477423,0.42550048,0.03896444,0.24300498,-0.17121899,0.29864943,0.94541705,-0.17660083,0.1630271 +-0.12596478,-0.53759193,0.20805185,0.24002448,0.5082224,0.7066756,-0.44346797,0.086252384,-0.24091,0.10299197,-0.97982454,-0.5613367,0.10376481,0.057963047,0.0065178266,-0.1923129,0.6742712 +-0.14167565,-0.10375207,-0.14088814,-0.23510928,-0.059698474,-0.06402916,0.046798516,0.07252386,-0.35171518,-0.120043516,-0.087520845,-0.18381101,-0.028513942,0.10502316,-0.34344894,-0.3131105,-0.055607326 +0.08018777,0.8648059,-0.16253076,0.26550424,0.12453662,0.7167667,-0.46070158,-0.6590826,-0.41928017,0.019319832,-0.6004146,-0.07617152,0.8826656,-1.4091417,0.00901403,-0.4261703,0.42289376 +0.45390844,0.3762924,0.10007924,-1.1628057,0.4616611,0.4884475,0.09192483,0.56012,0.6053962,-0.3273335,0.14640495,-0.17115617,-0.12218345,0.14268336,-0.13239051,-0.07681199,0.19008367 +0.042476915,-0.24037383,-0.0016729824,0.5631143,0.56381065,0.8432495,-0.660296,-0.56781834,0.46166238,0.7007372,-0.6491372,-0.2559424,-0.52626026,0.14739199,-0.068574436,0.06572033,0.002504961 +0.24456267,-0.14089036,0.029252969,0.052265428,0.033900235,0.067721054,-0.06256703,0.053940956,0.16762185,0.077543765,0.13458326,0.07264437,-0.10082427,0.25410736,0.49708968,0.0009112365,-0.12961489 +0.47067794,0.11922917,0.018206054,-0.042316016,0.4975398,-0.41832995,0.048367728,-0.5716126,-0.5250644,-0.16818456,-0.23422557,-0.57942367,0.2153774,1.317714,0.36481687,-0.34987998,0.3112052 +-0.056396343,-0.0033555296,0.12109046,0.19265567,0.07887419,0.20645721,-0.1201188,-0.033537824,-0.06340851,0.5607354,0.021829702,-0.12781087,0.1875049,0.05970236,-0.23240171,-0.048701562,-0.07658646 +0.2695598,-0.37216887,0.0017368392,0.065515585,0.092632115,0.003045655,-0.16065124,-0.046762113,-0.11626298,0.53023046,0.029182473,0.2624467,-0.056736074,0.38465518,0.27562925,0.24319668,-0.028952554 +0.37718913,-0.002769997,0.13722502,0.61303043,0.06862056,0.2731378,-0.06282034,0.24018572,0.44143528,0.8581911,-0.113833606,0.61582774,0.16376074,0.29671496,0.35551617,0.026479188,0.22286543 +0.7111035,-1.0292811,0.039217576,0.36819303,0.6668793,-1.1718912,0.13079761,0.6748747,0.92253596,-0.8201472,0.14342992,0.03576924,-0.85131544,0.77846795,0.076206215,0.41299984,-1.5965073 +-0.21189386,-0.03693948,0.0368595,1.8453836,0.36089522,-0.013285052,-0.17467862,0.3302519,0.4681963,0.19492304,-0.31106532,-0.32086354,-0.15307331,-0.07144453,0.65614474,0.17190628,0.11034709 +0.7632513,-0.1723812,0.01835036,0.35169703,0.34731928,0.14519282,-0.17488724,-0.23801053,0.8985379,-0.22879042,-0.44044676,-0.08278827,-0.19292696,0.67217505,-0.1430818,0.552803,-0.039573148 +0.895923,-0.7448802,0.05200192,0.56906205,0.5475077,-1.1800928,-0.2978024,0.32613787,0.49770564,0.38190603,-0.18875325,-0.40411022,0.4738635,0.700599,0.34356204,-0.48201305,0.300375 +0.25616217,-0.5658035,-0.46298036,0.109387465,-0.07716357,0.056158867,-0.2368824,-0.46879932,0.36322507,-0.6170067,-0.0701588,-0.38732973,-0.68562365,0.15115029,1.1670034,-0.38907105,-0.48075265 +-0.09130927,0.315208,-0.12574597,0.13864788,0.11661587,0.22710785,-0.1808432,-0.023448067,0.22313392,0.28192508,-0.33704284,0.50622696,-0.059745688,0.07805611,0.183082,-0.12990396,0.28150567 +0.28768924,-0.22290114,0.0013366562,0.20145562,0.15711628,0.79103917,-0.15045844,-0.35357782,0.22634907,0.5897137,-0.0017420177,-0.09229059,-0.060524225,0.37028515,0.2769685,-0.098806776,0.033442117 +0.52167445,0.17048709,-0.16611259,0.2995628,0.53264433,0.2085802,0.40809894,0.27739587,0.41013294,0.31670275,0.17917539,-0.110520154,0.030551098,0.9984031,0.044280827,0.15093791,-0.23635532 +0.018942133,-0.027138755,0.112338595,0.4168239,-0.07289618,0.010664775,-0.018368209,-0.06937304,0.025759654,0.035742074,-0.03440956,-0.026027977,0.19146374,-0.034848273,0.34342304,0.08432335,0.017401937 +0.14846621,0.16713552,0.050381195,0.23376805,0.44527495,-0.024313934,0.10687392,-0.16419357,0.21905638,0.11357246,0.17586344,-0.13332704,-0.0062600174,0.19086002,-0.07307802,0.33499497,-0.0009789829 +1.1292574,-0.34086332,0.09611599,0.63447654,0.11623918,0.33352962,-0.17966138,0.73000276,0.28679228,0.77655417,0.29933634,-0.63379693,0.2860824,0.65446496,-0.31944504,0.28466126,-0.77485174 +0.333122,-0.103462406,-0.5278678,0.123560145,0.10492831,-0.2002273,0.033447336,-0.6487388,-0.09398599,0.59448135,0.16100879,-0.4285747,-0.48540914,-0.2785524,-0.76134837,-0.26679963,0.463978 +0.28388727,0.091787845,-0.4499575,0.18298389,-0.021780916,-0.35519096,0.18451516,-0.10637752,-0.1120758,-0.0075266175,0.010910694,-0.003364272,-0.41176748,0.07183073,0.5534146,0.00943636,-0.22802208 +-0.5358634,-0.40871933,-0.1948985,0.7707478,0.36297432,0.91028243,0.057825975,-0.13884994,0.2075639,0.8129336,-0.43482873,-0.26500562,-0.4699559,-0.05732841,-0.32118008,-0.6552294,0.07047207 +0.03511589,-0.19767666,-0.09242175,0.02393482,0.18551715,0.023628587,-0.003752141,0.13358533,0.005433283,0.21961917,0.2600934,0.034639657,-0.049824562,0.021830931,0.37755296,0.124867015,0.2447936 +0.49281824,0.36130655,0.416736,0.56123716,0.057553086,0.43189102,0.01865717,0.16430126,0.6224918,-0.85419345,-0.12241324,-0.1587063,0.4018246,0.2957769,0.48804125,0.049306232,-0.19308007 +0.28819585,-0.12670352,-0.1666348,0.7561455,0.16894807,0.9276015,-0.3209653,-0.70302606,0.20224872,0.9105534,0.06625078,-0.24320255,-0.16459277,0.106072225,0.05297646,-0.40012968,-0.03888374 +0.6249558,-0.3146385,-0.017565312,-0.20262223,0.6610193,0.14622489,0.08111386,-0.018858768,0.45076418,-0.17100658,0.25922093,0.112835824,-0.6619504,0.8511611,0.40228704,0.44011605,-0.13499217 +0.20736043,-0.043320846,0.075383894,0.07661845,0.08766525,0.25200498,-0.017660713,0.2582195,0.009494993,0.14488359,0.08176336,0.08515627,0.025710272,0.3022324,0.19592427,0.33593366,-0.06995078 +0.024900822,0.092269726,-0.090624295,0.3417201,0.1969691,0.06679703,-0.11625446,-0.09448458,-0.10301535,-0.050926194,0.0049468447,-0.1156105,0.256382,0.01978608,0.116503,-0.055440955,0.07532031 +-0.05394661,-0.0818216,0.08924076,0.54824644,0.086311676,0.13497925,-0.25465277,-0.27253106,0.23902525,0.26477146,-0.17351328,0.2864838,-0.033943977,0.052034557,0.26364344,-0.052031998,-0.04770426 +0.41325197,1.0175036,-0.14196204,0.17311925,0.39256132,0.022975028,-0.30953556,-0.16560218,0.3236827,0.27646235,-0.091714405,-0.044410467,1.3910049,0.22490156,0.042777132,-0.2656772,0.09208745 +0.49527478,-0.38746983,0.100168586,0.031662654,-0.15870237,0.27059823,0.022164455,-0.1479079,0.50446814,0.30474192,0.1375962,0.004353747,-0.46109092,0.7789789,0.07857306,0.17039534,0.1472335 +-0.15553504,-0.10594377,-0.32719183,0.19070703,0.3346859,1.2825015,0.20168154,0.25681308,0.54403055,-0.80129963,-0.41107753,0.17249647,-0.6338508,0.43931562,-0.55542105,0.08976113,0.099951826 +0.17572507,0.030425716,-0.26906106,-0.06216963,0.19561455,0.086846866,0.12132852,0.06695427,0.17590506,0.2498264,-0.03679397,0.18045874,0.24155036,0.14033069,0.18616743,0.15151449,0.11611145 +-0.08740838,-0.25792617,0.42235348,0.32942274,0.18357514,0.3273097,0.08891662,0.14696747,0.22006153,0.14832817,-0.02615898,0.01939315,-0.059727278,0.13764475,-0.49396104,-0.36017153,-0.009208623 +-0.22644885,1.5687675,-0.325074,0.32967857,0.40253943,-0.040619694,-0.28922135,0.094775036,-0.1763691,0.111282915,-0.304454,-0.21858157,1.6763017,-0.19180305,-0.12260795,-0.5985885,-0.09312129 +0.008753754,-0.34742165,0.06061,0.24947663,0.09387153,0.049801398,0.12928528,0.08259294,0.15252663,0.2881306,0.04595128,-0.0033277685,0.17253436,-0.038934518,-0.9095177,0.24467614,0.40550825 +0.6062227,0.51992416,-0.27721685,-0.09675399,0.21122804,-0.5534733,0.3215758,0.15767765,0.42670465,-0.09944338,0.35633135,0.0020507327,-0.17264062,-0.5412327,1.039547,-0.052114032,0.44718 +-0.14653128,-0.12414761,-0.14614777,-0.24694568,-0.15444134,-0.15727644,-0.16192709,-0.41488463,-0.043474015,0.024165934,-0.2777964,-0.33778918,0.03376782,-0.028111152,1.0476234,-0.381979,-0.2107443 +0.26231217,0.18040209,-0.08553259,0.46557495,0.33558667,0.40131435,0.090566255,0.1677846,0.3303045,-0.048625577,-0.12563306,-0.07039392,0.22219977,0.1539877,-0.0839593,0.14112858,0.066507176 +0.62908417,0.036163375,0.07449783,-0.05698426,0.40199208,0.42865035,-0.24813814,-0.34677872,0.607871,0.46026513,-0.6519216,-0.03306152,-0.2092697,0.7370516,0.18929128,-0.23500267,-0.23166244 +-0.2843191,0.1495409,-0.14691338,0.15909448,0.2566978,0.26229814,-0.5659326,-0.23339841,0.01396177,0.14723489,0.39778706,-0.47176677,0.072369725,-0.15201095,0.30872124,0.13239802,-0.14258581 +0.3663531,-0.03067831,0.06577041,0.18668883,0.12797272,0.2552687,-0.28438926,-0.20986581,0.21653567,0.402595,-0.1030446,-0.03634368,-0.050251395,0.16737981,0.22853488,0.060211167,-0.020995054 +0.37114513,0.15925838,-0.00894948,-0.8839032,0.049694937,0.58025926,0.08571131,-0.5046054,0.51414645,0.40644866,-0.06284853,0.5670834,0.41092753,0.047690183,0.37799308,-0.36897132,-0.28552446 +-0.030550178,-0.19582193,-0.04121715,0.6207735,0.23741879,0.6734855,-0.20509633,-0.13179694,0.1178324,0.7409714,-0.4091442,-0.14489973,-0.21059075,0.3159931,0.049186885,-0.17131858,0.24609601 +0.2163012,-0.15283619,0.034564957,0.007256707,0.27600256,-0.063963585,-0.1521097,-0.04446478,0.126683,0.23397256,0.12171928,0.17488633,-0.025055382,0.26868173,0.44724366,-0.09439288,-0.07684364 +0.031261466,0.0034139992,0.0033939169,-0.041475117,0.25296858,0.4156565,0.10299766,-0.22733279,0.2216386,-0.10821999,-0.033985414,0.38277254,0.071575776,-0.084934406,0.0796241,-0.20549402,-0.33886454 +0.07066439,0.054241978,0.19120722,0.3384431,0.08644152,0.535209,-0.12182496,0.0010757655,0.2636263,0.3625894,-0.20204875,-0.09270884,0.055099797,0.09299392,0.3301841,0.043133315,-0.07254674 +0.16644049,1.3883784e-05,0.24887115,0.74323255,0.06582357,1.3084191,-0.43958113,-0.08553173,0.5190554,0.32930833,-0.23878251,-0.30889583,0.24891274,0.43979147,0.39884028,-0.07320825,0.48547724 +-0.31282765,0.1490344,-0.35182658,-0.10209054,0.28729913,0.33399186,-0.50173074,-0.21651705,0.14336254,-0.058224708,-0.5116408,-0.35440677,0.22356226,0.11303185,-0.18556222,-0.45844838,0.21817091 +0.13812497,0.047592055,-0.015952026,0.34168243,0.43873063,1.0030733,-0.022425856,0.16151296,0.4028628,0.24161671,-0.09768209,0.06117707,-0.011039378,0.008767856,0.020517148,-0.04325606,-0.030021155 +0.004000692,0.04465896,0.009484102,0.093257956,0.10255126,0.10559551,0.1897263,0.03296489,0.07796543,0.211736,0.12806545,0.13296771,0.09990517,0.17616066,0.16848595,0.0055682417,0.13518333 +0.46180198,0.12948555,0.07609584,-0.3819302,0.05931724,0.238152,-0.41585273,-0.34604424,0.27044377,-0.027394045,-0.70740044,0.12451749,-0.43200287,-0.11028311,-0.71996444,-0.6511701,2.0639696 +0.15369952,0.032859195,-0.3270992,-0.20585907,0.3597311,0.042713553,-0.20990235,-0.21165124,0.39109027,0.44429404,-0.093077555,0.21564467,-0.32866946,0.64484125,0.16140193,-0.32344508,-0.23542048 +0.51737875,0.050372344,-0.11030384,0.3989233,0.36091426,0.14177684,-0.2507768,0.003947212,0.2915809,0.2242554,-0.060753375,0.435398,0.22919768,0.45565882,0.15553458,-0.12245525,-0.018953754 +0.048541166,-0.09528603,0.053897306,0.3324674,0.3124284,0.70933276,-0.049427364,0.3420118,0.47858304,-0.55392987,-0.021072019,0.12820569,-0.18465787,0.055894475,0.34171325,-0.4444415,0.006976423 +0.34980294,0.011683408,0.45243052,0.23080061,0.03645717,0.29602644,0.7109892,0.25028136,0.20304967,0.066571385,-0.09766936,0.28684413,0.119913295,0.33561805,0.053823035,0.003503371,-0.04045744 +0.11525629,0.04093178,-0.0013304461,0.08454264,0.36030066,0.23135258,0.049574915,-0.14799818,0.12047261,0.11424177,0.026283221,0.0794241,0.16510235,0.019334394,-0.22368664,0.08685572,0.067658745 +0.16773525,0.0030873842,-0.0218201,0.15949877,0.1851911,0.22079603,-0.06688433,0.011004355,0.08456558,-0.010424795,-0.014782001,-0.08291829,0.030035658,0.15798105,-0.07665389,0.09674906,-0.044648472 +0.077247605,-0.018977053,-0.0055832523,0.10326048,0.164433,0.16228653,-0.047888063,-0.013486712,0.013809407,0.30737185,-0.017792799,0.077357106,0.07232677,0.21458448,0.22379783,0.023345789,-0.023817988 +0.06615237,-0.28587997,-0.060750164,-0.1271951,-0.058175452,-0.068691336,0.27802196,0.31219748,0.0021547577,-0.03648405,-0.04497629,-0.17610617,-0.011708997,0.0628623,0.042777814,0.0066059083,-0.06435132 +0.27495092,0.13185729,0.018254414,0.09086454,0.09627722,0.47782665,-0.15677838,0.14226936,0.06705502,0.22928965,-0.29195917,-0.027014313,-0.047122028,0.23801596,0.25520414,0.44210455,-0.010502249 +0.2219414,-0.18736687,-0.1625834,0.65719163,0.21531194,0.5914827,-0.27689406,-0.4712825,0.06788246,0.4774975,-0.053364616,-0.27314606,-0.21094893,0.04591287,-0.0020327892,-0.453362,-0.012707239 +0.13139325,-0.21783152,0.02536129,0.019772328,0.33628038,0.055863474,-0.18600903,-0.17605841,0.3034405,0.27197248,0.1454536,0.0043504876,-0.069106214,0.21389025,0.16072886,0.123528086,-0.03060167 +0.7612249,-0.102019094,0.42783168,0.057118006,0.0015677864,0.2245837,-0.25940612,-0.17907326,0.23525706,0.005310748,-0.13387294,-0.03889325,0.28646585,0.059689138,0.31305012,0.109972164,-0.49499664 +0.15365398,0.07385414,0.067789935,0.58121544,0.20734665,0.22832511,0.050732378,0.13237739,0.14007543,-0.117682464,-0.051681444,-0.077502884,0.049807247,0.06442151,0.16181777,-0.08312386,-0.097609326 +0.21880789,-0.06233141,-0.10790289,1.5812367,0.44025457,0.5061098,0.1181963,-0.5819997,0.37851855,0.66511935,0.41531464,-0.32299784,-0.34648967,0.4702259,-0.11339975,0.08319648,-0.13828033 +0.26728192,-0.060870517,0.011388247,0.23296806,-0.5979523,0.6173055,-0.22602868,0.061647452,0.0963181,0.7103133,0.119885884,0.21072623,-0.2649499,0.50372374,-0.19502479,0.34895557,0.29828444 +0.5486353,-0.20934041,-0.8636025,0.050447967,0.6805014,0.2988988,-0.42704126,-0.14602038,0.33472723,-0.09780785,0.16921203,0.29175964,-0.66164607,0.8102206,0.5794745,0.27662545,0.17220151 +0.22275867,-0.034987636,0.028276676,0.85724753,0.011426006,0.2955254,-0.27546299,-0.44677618,0.18428917,0.0685404,0.04481297,-0.28235108,-0.12703447,0.13014597,-0.028886415,-0.39161968,0.051134534 +0.3332624,0.007827786,-0.68579394,-0.08212702,0.65311897,0.28955153,-0.6124406,-0.16611132,0.19408931,0.035987284,0.29773754,-0.063656576,0.51178956,0.30277982,0.30840445,0.21403815,0.23103166 +-0.14704807,-0.19452898,-0.38588205,-0.06915583,-0.23646119,-0.056832105,-0.2645428,-0.33201653,-0.08181624,0.22127143,0.0021923461,-0.19160536,-0.33783424,-0.084190406,0.35515103,-0.18264723,0.18569098 +0.14388375,-0.06922807,0.036965284,0.19386972,-0.045774654,0.12536927,0.03177407,0.05504765,0.2266435,0.06472121,-0.08533517,-0.07694595,-0.01132861,0.059077416,0.028885141,-0.07997752,0.012730715 +0.2008511,-0.14908744,0.19971411,0.1804033,0.27371776,0.16037045,0.15080255,0.2175755,-0.09677315,-0.018445496,0.10575097,0.18359701,0.18162833,0.23114327,-0.03531913,0.24162823,-0.023831544 +0.5941421,-0.2947457,-0.17666504,-0.08063226,0.12290637,0.010583447,-0.22520477,-0.4755356,0.13325697,0.13205971,0.016266892,0.16190664,-0.25559273,-0.30588213,-0.26362383,-0.06710835,-0.1203316 +0.032512628,-0.091914885,-0.05366245,0.3018122,0.8296766,-0.36241123,-0.28657076,0.12507938,0.87785625,-0.7992499,0.24444416,0.2014271,-0.36912185,0.51576924,0.007685195,0.0981818,-0.1971069 +0.31861708,-0.1818409,-0.1713102,0.5885123,0.12547,0.019198943,0.27706587,-0.28739443,-0.061328102,0.28875396,0.3670245,-0.014559603,-0.2533735,0.26522437,1.4117236,-0.18119992,-0.06671725 +0.027204577,-0.12566806,-0.04390268,0.19089656,0.41952804,0.32253858,-0.298624,-0.33440724,0.39480785,0.08868841,0.14528686,-0.27851197,0.08217228,0.3187723,-0.08702129,0.3083873,0.5416267 +0.4351581,-0.31193143,0.12305082,0.1243507,-0.16133681,0.8794994,-0.03576853,-0.32640734,0.053100515,0.24216743,-0.669694,0.19287938,-0.43389836,0.43361613,-0.2673218,-0.24368611,-0.06476696 +-0.09529649,-0.03375511,-0.05448781,0.54573214,0.16946568,0.37047002,-0.060310483,-0.1839522,0.20861751,0.122558214,-0.32103673,0.21940854,0.05926046,0.20448045,0.12767163,-0.21930394,-0.22876796 +0.28272578,-0.22626865,0.013068641,0.33253592,0.35223088,0.22283475,-0.28517845,0.028879276,0.1806283,0.20828195,0.34398657,-0.21506162,-0.1967757,0.16017744,0.28219473,0.26016152,-0.061598953 +0.031086285,0.62314564,0.09036099,0.100614056,0.08931602,0.56549126,-0.25290805,-0.40942696,0.5500238,0.3955149,-0.19119099,-0.25332236,0.3783521,0.54364794,-0.1289515,-0.30768996,0.19972542 +0.021470146,-0.37147865,-0.59138536,0.30622652,-0.016827311,0.7811616,-0.34302983,-0.5076962,-0.05219585,0.40824616,-0.072048455,0.06832737,-0.30958506,-0.06717354,0.10960378,-0.4694226,0.07197528 +-0.29409882,-0.049823266,-0.49259904,0.42472634,-0.9095331,0.75945103,-0.6909307,-0.1284235,-0.2461613,0.078265764,-0.09335362,-0.5925571,-0.089413725,0.22584677,-0.2852359,-0.9014982,0.77495474 +0.11365411,-0.29960397,-0.05028395,2.1456945,0.39215145,0.60202384,-0.14988546,-0.4005781,0.37447548,0.4732323,0.03168635,-0.31973377,-0.54771227,0.42487413,-0.03623293,-0.30871177,0.06885285 +0.16574742,-0.22533262,-0.10630336,0.3758578,0.062869385,0.46441945,-0.4885309,-0.23369797,0.19750313,0.033914942,-0.18584125,-0.1270062,-0.1579974,0.1228127,0.2469043,0.059661947,-0.10066699 +0.3516787,0.29497537,0.17470966,-0.40980488,0.33954957,0.17874919,-0.03564622,-0.21252678,0.40220857,0.27332678,-0.44521534,0.36148995,-0.42178798,0.42383403,-0.06806673,0.1945842,-0.10942588 +-0.1283175,0.2078831,-0.23106289,-0.12458994,0.15459996,0.34400547,-0.44338498,0.43689442,-0.36448106,0.20335779,0.098131426,0.0906095,0.23753782,0.042344354,0.4155869,-0.2879441,0.47766548 +0.4223938,0.46854204,-0.25390145,0.33463436,0.12162521,0.1230351,-0.26805365,-0.3301429,0.17753582,0.4241121,-0.11363843,0.11437742,0.22643232,-0.26392436,-0.3390251,0.1075078,0.5463701 +-0.10627078,-0.22958805,-0.09751919,1.7495915,0.18265441,0.4961518,-0.34374383,-0.45110646,0.41596085,0.2348004,-0.124484874,-0.5182534,-0.38875285,0.055370912,0.046185814,-0.22387458,-0.066952296 +0.12454337,0.14101136,0.11730254,0.17836094,0.087067686,0.22662811,-0.08190493,-0.015384697,0.12616283,-0.05708334,0.048258357,-0.046455376,0.065303884,0.100584395,0.18182811,-0.026667088,0.053196814 +-0.08992349,0.19684476,0.1154549,0.084866226,0.18472503,-0.20934413,0.261677,-0.06615605,-0.03597129,0.04205572,0.12247099,0.2201661,0.24987811,-0.010154626,-0.4735711,-0.1277432,0.2639349 +-0.047014486,-0.16455223,-0.019841144,0.57409286,0.23314084,0.115070656,-0.13315356,-0.0644747,0.080273226,0.2594819,-0.10718304,0.20313902,0.039392676,0.19667196,0.22357248,0.016072758,-0.0048049204 +0.3001462,0.5355292,-0.34920055,0.051225077,0.27246577,0.98629844,1.1040817,-0.55978847,0.23909138,0.06912291,-0.033680968,-0.22304468,0.3371202,0.46567667,0.53109336,-0.0573581,0.26978055 +0.25134644,-0.08295895,0.03981415,-0.04706175,-0.4482144,0.40483874,0.03581335,-0.20226704,-0.039635226,0.2674453,-0.5127598,-0.055738278,-0.113967404,0.25992438,-0.07568285,0.06551603,-0.47441205 +0.4954315,-0.17827778,-0.038828287,-0.10055257,0.04862758,0.021412786,-0.40092453,-0.2031161,0.29325527,0.42890134,-0.0658314,-0.36620763,-0.21973771,-0.10391788,0.41253403,-0.1420305,-0.23050499 +0.18246841,0.15292865,0.0033491948,-0.080767274,0.30002272,0.25637594,-0.11374661,0.17351043,0.305473,0.006254884,0.016771546,0.06070336,0.070975214,0.09029086,0.08857862,0.08572259,-0.017790966 +0.4881957,-0.13977657,0.029937731,0.3416417,0.11722683,0.19944505,-0.12910007,-0.022011,0.16565667,0.09579865,-0.16719197,-0.2584326,-0.16550855,0.21883407,0.26468787,0.35322896,-0.29528186 +-0.03167605,0.36655456,-0.30007845,0.14699717,0.121040255,-0.39414665,-0.2765118,-0.6195609,-0.09641275,0.43240458,0.07520881,0.3002648,-0.28291112,-0.2228115,1.0246383,-0.29952976,0.6461873 +-0.51192176,-0.44459143,0.15427628,-0.103513554,-0.5026948,-0.17968288,-0.63294184,-0.5876418,-0.63865626,-0.51116467,-0.55736524,2.0095108,-0.48062384,-0.70499706,-0.23018678,-0.33652866,-0.063249804 +0.035965383,-0.12993494,-0.08384514,0.015731892,0.07170874,0.0721418,-0.023708778,-0.077691525,0.3408391,0.3873773,0.13023524,0.7568221,-0.09037269,0.14312364,-0.40306306,-0.23957244,1.0014263 +0.15358444,-0.03732497,-0.18049869,0.08426484,0.12007449,0.10486789,-0.10798662,0.2872614,0.2508387,-0.06453932,-0.07234244,0.14221397,-0.0010924842,0.009419159,0.105066806,0.14059226,-0.06332327 +0.6206463,-0.08238213,-0.3899432,0.52691305,0.2544513,-0.21834913,0.56269306,-0.13834092,0.21438551,0.1915086,0.64031804,0.05283604,-0.33585778,0.09747533,1.7816247,0.29695275,0.3573486 +0.21883433,0.16878392,0.10908809,0.43296045,0.31149152,0.23591134,-0.1335466,-0.17677942,0.54515177,0.20457235,0.17685635,0.020877916,-0.07820005,0.16280755,0.08143758,0.17249534,-0.032195795 +0.1800746,-0.06565565,-0.26930866,-0.10726518,0.06998143,0.46138382,-0.58377355,0.38587388,0.09593403,0.19632149,-0.13068189,0.009978569,-0.36594617,-0.0128857065,0.79085815,0.4857548,0.31651068 +0.42367154,0.091042474,0.4964424,0.5013701,0.54169,0.47456425,0.5187361,0.32214552,0.3276318,-0.7065672,-0.07744064,0.019567069,0.23445193,0.4089028,0.7512373,0.3056969,0.03927665 +-0.044157974,0.42065984,-0.018988047,0.06072104,0.16621162,0.10863338,0.014253996,-0.21233755,0.1287197,0.48842093,-0.007906733,0.09102741,0.11031035,0.12446177,-0.3621549,-0.066684835,0.19707438 +-0.45695448,-0.12508719,0.34618354,0.6948185,-0.27359027,-0.09368447,0.2863373,-0.21001698,-0.48080656,0.42497808,0.26093623,1.8137213,0.2683527,-0.14933954,-0.4920328,-0.2223679,0.47453094 +-0.42590362,-0.27095577,-0.5438109,0.04978125,0.011777842,0.6472424,-0.5026321,-0.7557089,-0.1207764,-0.2464037,-0.6396158,-0.025699431,0.5764687,-0.20029128,-0.28877708,-0.46610183,-0.44313267 +0.1519636,0.24550265,0.06884502,0.086175494,-0.30283266,-0.03876454,0.118099116,1.6734293,0.38724858,-0.6741803,-0.06954968,0.07079208,0.14466022,-0.028614903,-0.8037393,0.31223768,-0.58550143 +-0.011387077,-0.12539415,0.15567689,-0.024977352,-0.030909851,0.053577445,-0.34938067,0.2692885,-0.102170154,-0.19636068,0.1259146,-0.2767265,0.1638391,-0.22305514,0.42795962,-0.03674892,0.038154323 +0.087965526,-0.06347718,-0.27767068,-0.29529682,-0.419401,-0.24553333,-0.5850751,-0.6169248,-0.2087739,0.83285034,-0.3282322,-0.09160076,-0.2953796,0.2181493,0.8953455,-0.4887783,-0.24489287 +0.34921476,0.26763004,0.063471444,0.1554531,0.32339278,0.44032267,0.0071632774,0.19195737,0.06477093,-0.4530717,0.018645827,0.09638328,0.15118942,-0.14599602,0.22976005,-0.034133114,0.005368142 +0.008224835,-0.17355563,-0.21662769,0.63682216,-0.060849078,0.88226783,-0.3386521,-0.6093584,-0.017737199,0.026356211,-0.23481682,-0.6103311,-0.29225984,0.119283706,-0.2880288,-0.22532555,0.018437067 +0.33622196,0.15808082,-0.15953611,0.14668998,0.10823565,0.21136054,0.043149058,0.09479522,0.33122885,0.09910778,-0.037106127,0.7071603,0.059594125,0.260957,0.353319,-0.012261001,0.26907733 +1.0307282,-0.023435881,0.17002255,0.31695437,0.47781488,0.53518254,0.11809591,0.42194507,0.16001427,-0.16486622,-0.42568654,0.13268238,0.06800933,1.309534,-0.12574945,0.62936246,-0.19516622 +-0.016060585,0.06039021,-0.024860606,0.105794355,0.16318749,0.1705399,0.0005113092,0.1700254,0.08552601,-0.017440988,-0.09101886,-0.012870266,0.013808588,0.15407339,0.014710502,0.0619439,-0.068644136 +0.090080336,-0.06132879,0.0040071392,0.7203956,0.46944258,0.41003466,0.010502976,0.14965886,0.34329364,0.08460964,0.14513691,-0.19280577,-0.10747024,0.4880945,-0.07793517,0.29367277,0.09566809 +0.083639264,0.055171665,-0.43141282,-0.3412535,-0.20522454,-0.6976949,0.040694416,0.11396564,-0.29115292,0.029527122,0.04672934,-0.08412755,-0.19387597,-0.056316927,0.62146205,0.106127344,0.07449999 +0.7881444,-0.057298098,0.38925692,0.39955252,0.49955192,0.20066035,0.28588066,-0.23085603,0.38501024,0.23946488,-1.1658803,-0.16220951,-0.35289732,0.85201824,0.21527508,0.23667008,-0.23584917 +-0.15211028,-0.036973618,-0.050926864,0.27642256,-0.06817323,0.36199427,-0.5404985,-0.44115826,-0.063163206,0.5801814,-0.4971251,-0.65877503,0.16059835,0.12555413,0.95761,-0.38126826,-0.37676567 +0.65660065,-0.1678188,-0.15868744,-0.08179636,0.36229065,0.14185128,-0.43919423,0.37557533,0.24044576,-0.6161206,-0.34862244,-0.2558251,0.35436577,0.06276873,0.63783604,0.17161186,0.47545603 +-0.1430247,-0.21114784,0.05283159,0.19679433,0.035204213,-0.15411626,0.3521866,0.29962474,-0.26396933,1.3212413,0.5957584,0.054407846,0.02050761,0.0024505267,0.30181327,-0.09758947,0.35796475 +0.6655352,-0.038314443,-0.35928005,0.51484495,0.5874863,0.40632194,0.005001151,-0.5054994,0.41282752,-0.003748966,-0.18385273,0.1560105,-0.5128588,0.07462991,0.10031834,0.396075,0.1556905 +0.09911753,0.27360913,-0.19612604,0.1340354,0.09184492,-0.48188218,-0.3546309,-0.13906725,0.37798518,0.37278366,0.042587087,0.021589287,0.49721432,0.4138926,-0.0030394732,-0.21747768,0.0113260355 +-0.31828302,0.41303983,-0.14502534,0.25447348,0.16984771,0.33801526,0.013176259,-0.36787647,0.81484836,0.07887325,0.3696014,0.26843426,1.3315006,0.1993095,0.21532634,0.17802872,0.12069202 +-0.0861044,0.10605171,0.1121715,0.22412781,0.119229876,0.025294745,0.18151353,0.39772245,0.097682655,0.124599464,0.17820258,0.025848381,0.11241774,0.13627107,0.19172302,0.19141677,0.21098585 +-0.01575899,-0.09184102,0.09585301,0.03180091,0.045780186,0.027024785,-0.029044876,-0.016929302,-0.04161974,-0.04273004,0.00033696066,-0.13668603,0.03690281,0.050009962,0.39227134,-0.06690881,-0.1959115 +0.52016586,0.19003065,-0.054296035,0.95936215,0.41189367,0.58168423,-0.30703998,0.06937348,0.5015341,-0.11738022,0.17050649,0.036417108,0.07101418,0.34635538,0.06729199,-0.031073982,0.07847948 +0.23515579,-0.06092753,-0.22138645,-0.12678899,0.22590479,0.173809,-0.29947782,0.31260374,0.48951104,-0.057734635,0.30117947,0.294595,-0.58935535,0.04153486,1.4179592,-0.20096733,0.07719904 +0.17879674,-0.1900608,-0.08488284,1.732238,0.34958884,0.5617666,-0.47756514,-0.08978231,0.42891574,0.4425794,-0.1000945,-0.31162778,-0.07430536,0.5050805,0.04636764,0.035416856,-0.28081992 +-0.4547751,-0.38386977,-0.08073456,0.47492775,0.46628717,1.6015266,0.7237199,-0.4130668,-0.11377166,0.43033692,0.4602338,-0.44800806,-0.14511262,-0.21713027,0.11970572,0.08592065,0.121643156 +-0.39128697,-0.42904887,-0.14160337,0.8127725,-0.22338095,1.1965303,-0.09172405,0.6764327,0.09361253,0.52855456,-0.14709516,0.16029304,-0.6112284,0.08262609,0.423753,0.53907394,-0.064981945 +1.0328028,-0.31368572,0.20819513,-0.064003296,0.01534414,0.08949207,0.26065388,-0.12000178,0.7843921,-0.18273474,-0.5995446,0.12582909,-0.48607993,0.933115,0.3108842,0.3632211,-0.071740255 +-0.09552144,-0.3195165,-0.5758541,-0.104070075,-0.1593674,-0.17512791,-0.18054552,-0.8842214,-0.23008257,0.5026765,-0.11661241,-0.13299698,-0.45420784,0.09406544,1.2097524,-0.5120761,0.100293025 +0.18138982,-0.06799768,0.11595643,0.28319126,-0.03137851,0.21679197,-0.25451162,-0.4980881,0.45754814,0.48108006,-0.33283818,-0.09278488,0.06549205,0.3119419,0.5643212,0.50326663,0.31342787 +0.33337563,-0.0136378845,-0.43427205,1.2389407,-0.16607611,0.14076504,-0.5481846,-0.24856593,0.050289035,-0.22273979,0.12918158,-0.27107507,-0.1496957,-0.05587062,-0.22370149,-0.017649453,-0.25814152 +-0.34959826,-0.22589377,-0.0035021491,1.4149759,0.3739507,0.39522508,-0.4199286,-0.30300164,0.39187363,0.20455687,-0.28488111,-0.11492674,-0.2051073,0.3238515,-0.050162483,-0.297749,0.051370736 +-0.35812813,-0.5131909,-0.682048,0.15652111,-0.17443527,1.1590059,-0.90568703,-0.39105386,0.19577384,0.22672987,0.25121632,-0.3352812,-0.77351886,-0.3147966,-0.5895683,-0.46376547,0.5045307 +0.22754154,0.19268687,-0.18535198,0.028985959,0.033537347,-0.13564166,-0.41238368,-0.44593844,-0.18138732,0.2327621,-0.12577055,-0.13676442,0.20616905,-0.29587805,0.28388035,-0.22176816,0.06254022 +-0.2805661,-0.16522804,-0.08009594,-0.40405202,0.14228377,0.03499346,-0.53828895,-0.27637655,0.26004454,0.039763056,-0.3482547,1.816831,-0.48915753,-0.16281828,-0.29547393,-0.2774849,0.049560115 +0.07808311,-0.013148451,-0.38300428,0.36879984,-0.22684804,0.81603545,-0.025265722,-0.19122285,-0.37576684,0.74221146,0.46842945,0.099432245,0.037644822,0.08827807,-0.34405115,0.35655934,0.46311533 +0.2516535,-0.3145272,-0.37191164,-0.12811568,0.40394628,0.60846364,-0.72012955,0.6582693,0.42278916,0.16152261,-0.05436053,-0.35380417,0.07401398,-0.34742644,0.06247906,-0.49899736,0.43067026 +0.062443525,-0.14710976,0.37170509,0.19653724,0.147619,0.026984073,-0.0026155272,-0.4080776,0.21579218,0.52910525,-0.14885366,0.2330865,0.013501551,0.35211378,0.74909693,-0.49060276,0.058281038 +0.11860022,0.08615174,-0.08891282,-0.0356984,0.68398327,1.593386,-0.1000069,-0.037666198,0.6604936,0.36596307,-0.19680864,-0.07578425,-0.10589885,0.14526108,-0.17298082,-0.32078642,0.31151485 +0.08190138,-0.16389082,0.02364792,0.11779719,0.071403995,0.20041718,-0.025249537,0.1506525,0.11489546,0.26238552,0.10904868,0.07150898,-0.094212346,0.18681997,0.04885032,0.31669274,0.18103777 +0.17677698,0.1592774,-0.03888284,0.26026383,0.23439994,0.99942017,-0.14233802,-0.0794577,0.46329612,0.2011781,0.2208952,0.17538583,0.050575696,0.031138862,0.113492176,-0.08534764,-0.22964731 +0.3905917,-0.08496209,-0.21023436,0.06264285,0.24325143,0.2034954,-0.26365232,-0.21382318,0.32581526,0.18750729,0.06957406,-0.042124018,-0.116996974,0.2687324,0.35895163,-0.14145355,0.07143324 +-0.24297899,-0.5403538,-0.59443384,-0.06072811,-0.38477156,-0.115292646,0.1551065,-0.41948694,-0.011887458,0.848857,-0.064860456,-0.43538097,0.0063252174,-0.04661912,-0.10563468,-0.21120742,-0.19806911 +0.9054481,-0.19807413,0.09070868,0.23998736,-0.069260724,0.34312534,0.015676526,0.62758845,0.19356263,0.2482416,-0.16730283,0.3180553,0.027052766,0.31196147,0.42346427,0.032537207,0.57407564 +0.20272703,-0.14086673,0.11938394,1.0493652,0.32724392,0.32342628,-0.29190207,0.04150006,0.25240782,0.5268062,-0.31440306,0.2279057,0.19797654,0.19141577,0.4487203,0.017881578,-0.012170656 +0.082827225,-0.16512369,-0.1235802,0.74328583,0.21206225,0.50023043,-0.3333919,-0.3496027,0.3098826,0.23070388,-0.10482786,0.11373083,-0.024523621,0.111479096,-0.089264676,-0.008345988,0.29780063 +-0.3165861,0.0009767944,-0.22494626,-0.24250993,-0.45406654,-0.35439995,-0.45572826,-0.4009922,-0.4495006,-0.2949545,-0.5703728,-0.49248186,0.074035026,-0.42536178,0.19777359,-0.47644815,-0.40361768 +0.831928,0.014404059,-0.06806531,0.08260874,-0.20745762,0.095568635,-0.37764612,-0.69412166,-0.2668549,-0.03328737,-0.042313647,0.5755607,0.3690735,0.062580995,-0.122867286,-0.42282838,1.1138941 +0.3085096,-0.004057798,-0.01950133,0.49576405,-0.26339293,0.5599971,-0.5124551,0.31725797,-0.18359622,0.44894004,-0.22471297,-0.05344326,-0.107206285,-0.15319438,-0.26744044,-0.526861,-0.018714713 +0.3106137,0.052570038,0.41253343,0.34419236,0.18049102,0.20920114,0.058249056,-0.65539926,0.27836162,0.10888568,-0.77687716,-0.61727566,0.3967131,0.2931015,0.0021615988,0.24911708,-0.32607478 +0.34101263,-0.43547374,0.23591258,0.24333951,0.027616126,0.11177469,-0.09234496,0.32661662,0.25485846,0.054327533,0.46133628,-0.15400416,0.15392497,0.07440876,0.98980224,0.2371331,0.026856188 +0.3290913,-0.2335288,0.06520933,0.88691527,0.6238523,1.3466667,-0.28701997,0.0870027,0.51853555,0.42971364,-0.10470127,-0.29402602,-0.039623644,0.39747328,0.09741217,0.5067446,0.52239126 +-0.14179651,-0.40601015,0.024114314,1.5570295,0.4266099,0.33447218,-0.46816474,-0.26541162,0.46604615,0.20701379,-0.13270903,-0.4953703,-0.48966932,0.23026314,-0.027053898,-0.27631187,-0.101266444 +0.93856114,-0.3369967,0.24939635,0.089975335,0.8476505,0.3569646,0.032748953,-0.32515153,0.98673356,0.24913304,-0.0766954,-0.119175956,-0.33456817,0.45299798,-0.4315334,0.09890285,-0.20479292 +0.21569674,-0.05277871,-0.04747871,0.4511758,0.17746037,0.5114379,-0.26420382,0.291491,0.19053222,0.48350883,0.21338882,-0.20827988,-0.05543049,0.16689342,0.74129033,0.14975259,-0.10564113 +0.20270015,-0.05270838,-0.050152775,0.2210114,0.2315572,0.122432746,0.14873189,0.16781566,-0.060925666,0.3527496,0.2525087,0.21243758,-0.0030693861,0.28895688,0.3863758,0.30058753,0.068198845 +0.745014,0.015755374,0.5282571,-0.10174983,0.27898917,0.2639814,-0.3082658,-0.13606338,0.7438669,-0.36441517,-1.305644,-0.054749,-0.14396502,1.3818765,0.7465281,0.5705241,0.11710148 +0.051578954,0.02495972,-0.23630904,-0.011511432,-0.009543004,0.14586933,-0.22227138,-0.43560457,0.36971623,0.2744326,-0.21668988,-0.81620085,-0.1437362,-0.33309367,1.4042217,-0.84357643,-0.509025 +0.38279822,1.6605452,0.22435889,-0.2836697,0.26964945,-0.089385495,0.1659751,-0.022129022,0.14833957,0.37953493,0.34450117,-0.034919377,1.3790389,0.5014981,-0.5223046,0.4523209,-0.34719077 +0.9243673,-0.45979786,0.31996503,0.23982161,0.94271517,0.52942264,0.29170433,0.078852795,0.73633593,-0.2186285,-0.06846424,-0.076055944,-0.64523065,0.39670607,-0.4848474,0.039178543,-0.20671904 +0.39079064,0.29892215,0.30844504,0.6702383,-0.034186963,-0.12190465,0.1584859,0.12027559,0.103868194,0.49405065,0.19072405,-0.14777914,-0.12820537,0.11145966,-0.13612671,0.019984148,0.023610355 +0.8263689,-0.020048954,-0.044400662,0.17240934,0.8643614,0.1846294,-0.07590507,-0.04395418,0.6999109,-0.6446291,0.3886185,-0.040621914,0.24831153,0.22766367,-0.211613,-0.18583229,0.16365905 +-0.11755918,-0.5290208,-0.31648576,-0.13674472,-0.36874115,-0.032543514,-0.23473132,-0.8641114,-0.24402826,0.59980047,-0.32224843,-0.17291875,-0.2241496,-0.06943072,0.95798343,-0.6443691,-0.090067975 +0.15732968,-0.28765985,-0.10056213,-0.10589954,0.055000417,-0.16485268,-0.09693234,0.0035679266,0.105704114,0.110387184,0.1218557,-0.08561724,-0.23609704,0.15587758,0.90001965,-0.039204374,0.0978904 +0.29086936,0.119778626,-0.2826149,0.40406984,0.74843955,0.46906406,-0.6712044,-0.109298326,0.74005944,-0.14320831,0.13995728,-0.44070357,0.39261767,-0.06502724,0.29010507,-0.40397415,0.24014191 +-0.21988013,-0.074629456,0.073849775,0.41966513,0.32867655,0.15259838,-0.03477334,-0.041675407,0.2128883,0.24539018,-0.14610861,0.6750798,0.2823351,0.29874846,0.38147268,0.07653965,0.07942113 +0.39470947,-0.30121014,-0.032924544,-0.55339074,0.20825233,0.8601601,-0.14132509,-0.1751085,-0.115673766,0.66263485,-0.0052823345,1.4872272,0.58805025,-0.86690885,0.8555281,-0.78445685,-0.062053032 +0.055816554,-0.33995324,-0.011631307,0.2359791,0.04016036,0.22855388,-0.15070345,-0.30140477,0.16940232,0.94246227,-0.26419973,-0.23204552,0.098832116,0.1288622,0.07325674,-0.19083694,-0.14909197 +-0.06273721,-0.60724324,-0.29022324,0.12266829,0.051772345,0.2111595,0.0043863375,-0.36099952,-0.055528294,0.6568322,0.3483427,0.21820593,-0.03382715,0.17697896,0.8586914,-0.07072501,-0.122175 +0.63994163,-0.01999436,0.883148,0.08272785,-0.14244308,1.1551427,0.91252184,0.4532655,0.19554195,0.63301724,-0.0804296,-0.037524197,-0.006884001,0.61355454,-0.09757886,-0.24724478,0.3559245 +0.3082091,0.15708782,-0.092417754,0.7716002,0.25682548,0.76930183,-0.2994671,0.13089691,0.2943015,0.02505472,0.05983581,0.16286135,-0.07460066,-0.032777492,0.06044113,0.12887186,-0.33830693 +0.22576329,0.15736912,-0.046098687,0.20465638,0.18069768,0.20415139,-0.022615539,-0.04842494,0.09401393,-0.27102157,0.04144417,0.047120612,0.122564934,0.120456405,-0.08190088,-0.25889447,-0.05304231 +0.13694222,0.045933142,-0.43122527,0.85909444,0.20038684,0.884575,-0.31240067,-0.14612624,0.2057029,-0.09108552,-0.05228733,0.17371367,-0.051568445,-0.12498824,0.28482282,-0.08450023,-0.28270656 +-0.14254946,0.09992007,0.124190986,0.27540535,0.58452207,0.058657464,0.023500914,1.0886382,0.2979549,0.1635864,0.17381023,-0.13561544,-0.08722845,0.25631645,0.0014813188,-0.01304053,1.4461131 +0.024486544,0.41473863,-0.25274846,0.117669635,0.15204968,0.45076388,-0.2468843,0.07760059,0.24651545,0.062278576,0.05081257,0.31755817,-0.41547066,-0.015208948,0.8925371,-0.12671055,0.312554 +-0.2461476,0.20891131,0.20990987,0.599708,0.33751428,0.16865818,0.112549305,0.15456231,-0.27744544,0.6301451,0.2739296,-1.1872783,0.25658312,0.12192084,0.28959668,0.57807785,-0.4078406 +0.06807379,-0.12828882,0.20457795,0.89394844,0.28839764,0.6394429,-0.08799686,-0.29902166,0.12430882,-0.37484196,0.20217292,-0.12868379,-0.2154135,0.03228775,0.30058566,-0.2425411,0.18136053 +0.34653786,0.02595167,-0.038942374,1.6851901,0.5061115,0.5463893,-0.0930489,-0.07789274,0.33660918,0.09885701,-0.113608725,0.022277035,-0.012499065,0.26041812,-0.01439138,-0.24837947,0.07091553 +0.63947123,-0.29388928,-0.018571867,-0.13559753,0.5031625,0.26865435,0.17270443,0.085779294,0.87609565,0.2501322,-0.42275846,0.3963154,-0.6704869,0.45862383,-0.41604623,-0.29314256,0.5813394 +0.35608876,0.0382068,-0.15384236,0.23851377,0.7461942,0.439976,-0.34292343,-0.42187625,0.59245074,0.44518182,-0.13562915,0.015456782,0.10559565,0.3356141,0.029246245,-0.32909766,0.636844 +0.64855665,-0.19341522,0.63376826,0.7450787,0.029072994,0.80700004,-0.11841005,-0.30904502,0.5724278,0.23196559,-0.7194192,-0.37401152,0.22232407,0.28852746,-0.398879,0.38548097,-0.23171373 +0.3615522,0.12780933,0.2705973,0.36956182,0.06934416,-0.057579298,0.35464382,-0.02225344,0.38854548,0.6860958,-0.06739493,0.34037736,0.03969987,0.14252792,-0.65166044,-0.19140294,0.08723977 +0.016551377,-0.24824944,-0.33254465,0.8176947,0.057867724,0.9525001,-0.4616706,-0.47514966,0.187993,0.063574865,-0.20443101,-0.36668673,-0.34958002,0.050452083,0.03131236,-0.22123691,-0.15604004 +0.5015232,0.042444363,0.06256085,0.5105315,0.60480875,-0.09495831,-0.27022076,-0.25504938,0.718137,-0.9362954,0.103455275,-0.05877524,0.5024482,0.15501484,0.124354176,0.4455893,0.5280348 +0.5271525,-0.08026924,-0.1409105,1.1519843,0.3489295,0.86114866,-0.36121413,-0.170305,0.29738465,-0.22989866,0.02912093,-0.17121626,-0.200026,0.22120926,-0.24264093,-0.31827122,0.016489306 +0.27607852,0.099687025,-0.5494429,-0.18298075,0.01944853,-0.38592783,0.018868467,-0.04673248,0.012296642,0.21797013,-0.39951313,0.06296276,-0.49825644,-0.2790276,0.63647753,0.39153516,-0.1595613 +0.82724243,-0.20106688,0.59915984,0.2672681,0.5997442,0.5070121,0.17131774,-0.23422317,0.9284631,-0.5865412,-0.034210935,0.01643597,-0.32843658,0.43947473,-0.17843497,0.015418635,-0.25632563 +0.45570868,0.21914862,0.072911456,0.48309708,0.78464687,0.15715715,-0.031955115,-0.3865408,0.5968574,-0.09746585,-0.4978721,-0.13579886,0.66914344,0.08455195,-0.049938556,0.43537968,0.33380392 +0.5721761,-0.085566856,0.4399141,0.5899658,0.6124772,0.5952185,-0.6451154,-0.2606824,0.91564804,-0.16783753,-0.6737487,0.032913767,-0.39362282,0.29743916,0.17085259,0.013404222,0.4560546 +0.14854726,-0.11120004,0.06901622,1.6787568,0.36269784,0.5221693,-0.1712841,-0.2449731,0.3925316,0.29934293,-0.15287344,-0.18492386,-0.11361411,0.19385779,0.05300244,-0.28545177,0.08397442 +0.04988132,-0.52634084,-0.29035306,0.033026196,0.3068467,-0.40701672,1.0547054,0.06434695,0.059096508,-0.01344802,-0.050238945,-0.19164316,-0.073441625,0.23223574,0.10069532,0.31469792,-0.11779277 +-0.21795738,0.05850737,0.46476504,0.9564751,0.31943563,1.009575,-0.12705922,-0.47817904,0.061745904,0.60825634,-0.06692346,0.24484767,-0.40394917,0.14310963,0.2699608,0.028327838,0.22161855 +0.17871569,-0.2219605,0.27556556,0.2090823,0.12839109,0.17023382,-0.093441814,-0.038293198,0.19245791,0.05897188,0.016934374,-0.057998624,-0.060186774,0.26691258,1.4563754,-0.14029261,0.08843259 +-0.37188226,0.22778118,-0.041626554,0.6233508,0.56600237,0.28606033,-0.19023831,-0.06333699,0.74858433,0.12645821,0.37314686,0.20447166,0.07644303,0.11034657,0.5601055,-0.14706674,0.0487261 +0.20675084,-0.087356925,0.11591832,-0.4068466,0.6358425,1.6531755,-0.111138634,-0.3701803,0.55715466,0.64107984,-0.2403545,0.066223875,-0.010682091,0.43300715,-0.22574878,-0.2560704,0.19193664 +0.39382616,0.50600624,0.044064794,0.11568691,0.16058584,0.8618412,-0.22630197,-0.25441837,0.28988975,-0.022657188,-0.22000091,0.08408426,0.5481251,0.115106374,-0.327964,-0.39929095,0.9965581 +-0.0033240109,-0.59991175,0.33311832,0.5595152,0.8509737,0.6311395,0.049314056,-0.3648755,0.735766,0.56724083,-0.8880156,-0.5849361,-0.6664589,-0.21373434,-0.3098863,-0.91234356,-0.3901328 +0.7853122,-0.1907964,-0.35211563,0.11938744,0.34656227,0.0015297318,-0.28453627,0.79866374,0.32874385,0.4516355,0.4420543,-0.07394265,0.4672188,-0.2398555,0.007738862,-0.37487757,0.15829971 +0.27780434,-0.2165258,-0.108124465,-0.07174377,0.71340704,0.5315909,-0.48092297,0.57371235,0.7328638,-0.25416848,-0.81464696,-0.21411192,-0.5791191,0.05398124,-0.30485997,-0.13074446,0.44505975 +-0.09330933,-0.5445807,0.32834095,0.18416287,0.508832,-0.099644236,-0.36721766,0.5038828,0.68922687,0.6090745,-0.35136372,-0.35496977,-0.69344044,0.40599188,-0.11413549,0.8605363,-0.5139268 +-0.31319356,0.32169515,-0.29461044,-0.38720104,-0.0715516,-0.28616837,-0.5953628,1.5820343,-0.41729617,-0.36295664,-0.43057242,-0.2525406,0.48046908,-0.86679566,-0.37298313,0.106427886,-0.2229185 +0.7748861,-0.18123046,-0.2516165,0.21106535,-0.34192753,0.10184897,-0.16119763,0.0021900216,0.4636587,0.36944205,-0.22558445,1.8616575,-0.19968669,0.0135606155,-0.17726752,-0.47946814,0.42388707 +0.5879038,0.6585436,-0.018416226,0.19092238,0.23641473,-0.11174777,0.18663284,0.06720698,0.48206758,0.095202595,0.25071836,-0.22539593,0.2612846,0.45209306,0.15006377,0.19879815,-0.24660292 +0.3460029,0.022160955,0.034999713,0.106876865,0.15764469,-0.13237157,-0.08584706,0.09294825,0.1689182,0.052668404,0.1697655,0.0021619792,-0.09984116,0.1926724,1.2324091,-0.25294298,0.16278794 +0.16348425,0.057443827,0.30302623,0.15263073,0.0095059145,0.13318275,0.32878673,0.2155421,0.1371851,0.025426524,0.04969347,0.15600538,0.07536119,0.19977914,0.101578124,0.06980263,0.016505131 +0.5749308,0.034971543,-0.08823742,0.4276181,0.41323525,0.33477217,-0.23786741,-0.22586043,0.34888804,0.24172722,0.8878574,0.068919525,0.0012432096,0.35049713,0.23610476,0.34235537,0.20307828 +-0.27835038,0.7889185,-0.0028428584,0.33231565,0.4355808,1.3867273,-0.6072996,-0.5846406,1.2829338,0.6090468,-0.21186826,-0.15367298,0.43200335,0.30235714,0.30643943,-0.23407781,-0.05665889 +0.18448366,-0.02245319,0.18370447,0.16653122,0.07858461,0.18103985,0.09597473,0.1379477,-0.048610393,0.03549132,0.101985455,0.025009131,0.2632643,0.17332534,-0.042293094,0.118727624,-0.15140197 +0.30349407,-0.6526069,0.21148589,0.5030249,0.29457405,0.14366373,-0.0009405109,-0.017574357,0.27205476,0.61035615,0.3601435,0.2323368,0.071149305,1.4636184,1.0351785,-0.49674577,0.17120412 +0.15177181,0.02344663,-0.18370399,1.7242571,0.43053603,0.40573514,-0.30918324,-0.118526205,0.5092511,0.32123482,-0.16825992,-0.039409846,-0.04236405,0.13217935,0.21328591,0.008138053,0.023151163 +0.28318268,-0.21552627,0.5716888,0.17417969,0.43718547,0.15209644,0.3090878,0.5436155,0.20524184,-0.036743898,0.25022146,-0.040882353,0.3500254,0.41912827,0.14018254,0.27185613,0.9677307 +0.29321536,0.20076479,0.03251497,0.5271572,0.3844427,0.32150763,0.10596645,0.24962014,0.14631136,0.121407986,0.20439787,0.11819286,0.28393093,0.10246028,0.42908335,-0.19175014,-0.20917101 +0.3540266,-0.92469794,0.49669385,-0.3836022,-0.2578408,0.028270056,0.018665215,0.11222807,-0.23768117,0.11007664,0.42968455,-0.232539,0.30490488,0.8668169,-0.2888271,-0.7158621,-0.13977621 +0.11721,0.12781495,0.5238137,0.25837064,-0.11149101,0.07578391,0.38068783,0.29376376,0.1735091,0.011309308,0.15023546,0.34601822,0.095497265,0.2052538,0.13536012,0.011669559,0.05448426 +-0.7327005,-0.6512877,0.41829813,-0.12832884,-0.33029222,-0.39073107,-0.27920866,-0.73883414,-0.64433044,-0.04029428,0.23870005,2.0063174,-0.21728924,0.11620594,-0.6285061,-0.26893187,0.40989444 +-0.19449304,0.30336624,0.26148093,0.264809,0.18887964,0.03655262,0.029933315,-0.6676167,-0.2060154,-0.012404455,-0.7008688,-0.15958636,0.2940033,0.22614601,1.3849323,-0.479907,-0.24549054 +0.7822555,-0.027296742,0.6620105,0.14225931,0.60165936,0.631737,0.25223336,0.31475317,0.64864856,0.16439335,0.7028774,-0.25354978,-0.26152334,0.29991785,-0.07459051,0.21113849,-0.15907295 +0.5923042,-0.27155805,-0.0106120035,-0.2404246,0.7582917,0.01669616,0.31144994,-0.011849624,0.76922506,-0.20031385,0.5575272,-0.17493024,-0.24339092,1.0783465,0.28033838,0.14022973,-0.53564614 +0.8944646,0.020110052,0.8114473,0.07890357,0.25046578,1.171061,0.6004127,0.9581513,0.25468543,0.1918496,1.0088687,0.1898544,0.2711736,0.63233334,-0.0473708,0.092626035,1.1052994 +0.64998144,0.082180604,0.2726825,0.053586014,0.7782586,0.40195227,-0.42630234,-0.41394827,0.76023644,0.10747722,0.5830339,-0.14513302,-0.510615,0.88549614,-0.082150854,-0.03131865,-0.16407268 +0.15241821,-0.3196539,-0.06255418,-0.07174161,0.090442166,0.102196716,-0.0949803,0.29177177,0.1817637,0.19613917,0.19713211,0.059457533,-0.14329156,0.139393,0.55297196,0.10650919,0.113247015 +-0.090891495,-0.0926644,0.29262987,0.2271579,-0.019981015,0.44220853,-0.4321334,0.08945091,0.41696265,0.24298847,-0.29919854,-0.2097141,0.0514512,-0.1402548,0.53824705,-0.31784275,-0.060015973 +0.07794006,0.14075303,-0.061810702,0.34560946,0.32566503,0.22322683,-0.52725655,-0.36639312,0.29254374,0.3858511,0.96083266,-0.09029048,-0.14137565,1.0681019,0.58167267,-0.15483616,0.03307748 +0.39448115,-0.33380893,0.31819868,0.18004106,0.2969755,0.2738403,-0.14560248,-0.24547295,0.096426524,0.42186624,0.028965738,0.5596117,0.05096801,1.3176433,0.35310596,-0.46206,0.94064164 +0.49149895,0.060358603,-0.112722285,0.33697227,0.8541334,0.37776142,-0.30670005,-0.06915069,0.7373954,0.50475895,0.70967805,0.48541215,-0.23817207,1.0554472,0.42445987,-0.18649271,0.5458881 +-0.23186043,-0.32581854,-0.039482545,0.9698221,0.27959037,0.37845036,0.23155434,0.14568016,0.20251244,0.542072,0.13435003,-0.6537163,0.82834184,1.6815993,-0.33386102,0.5781564,0.08551638 +0.12819396,-0.38418302,0.261647,0.3799098,0.41817653,0.41292268,0.2504707,0.08864526,0.4008479,0.36035195,0.39439183,0.16947417,0.17519253,0.2568456,1.8113936,0.16299076,0.29608476 +0.5753651,0.10837286,-0.054186586,1.1345539,0.23039529,1.3021579,-0.39727706,-0.3600434,0.6120509,0.671516,0.040833622,-0.60665554,-0.009317699,0.5808349,0.15352306,-0.01750647,-0.1147406 +0.14011586,-0.12497671,0.040094517,0.19834115,0.082436435,0.32663882,-0.056449514,0.13743354,0.10256731,0.16444482,0.040202245,0.012567936,0.11814233,0.029363357,-0.18728524,0.20361751,0.13589218 +-0.13145491,-0.3035402,0.32353362,0.049110856,0.18803121,0.14300585,-0.40770897,0.034799762,-0.098903954,0.15032169,-0.36883673,-0.009842439,0.23708083,0.11612559,-0.06740572,0.1624231,-0.039226502 +0.4551379,0.26685205,-0.23008,0.725064,0.50194454,0.43810788,-0.3273622,-0.2529995,0.69283354,-0.30091372,0.7762291,-0.17626576,0.32031018,0.062452648,0.26760414,0.37073064,0.048805203 +-0.04318556,0.14955677,-0.3480004,-0.25479054,-0.3827042,-0.19461653,-0.2519788,-0.35885492,-0.30091962,0.02228619,-0.23752354,-0.2618,0.04291908,-0.27655184,-0.105765924,-0.25148043,-0.3191125 +-0.2907636,-0.35087505,-0.41908273,1.6821028,-0.022820232,0.3882332,-0.49432024,-0.26164207,0.21882239,0.26137483,0.19812292,-0.21553613,-0.5438145,0.31572926,0.21522471,0.036462434,-0.46677828 +0.04155993,-0.12657173,0.104168326,0.9534086,0.27866247,1.0468094,-0.09843642,-0.32914284,0.29833513,0.2508548,-0.31731993,-0.17811109,-0.013104049,0.218171,0.39677095,-0.09002315,-0.25734842 diff --git a/code/other/dt/train_partitions.csv b/code/other/dt/train_partitions.csv new file mode 100644 index 0000000000000000000000000000000000000000..2fbd98a34a7204c0b1c2217c8c71a42ec32d28e1 --- /dev/null +++ b/code/other/dt/train_partitions.csv @@ -0,0 +1,17 @@ +0,0.38646466,0.5409801532882028 +1,0.13056517,0.5051161142567681 +2,0.16311094,0.5241800238699267 +3,0.5522181,0.6214182595482479 +4,0.4068393,0.5185901280410424 +5,0.4961518,0.5820413204001291 +6,-0.12576449,0.5251732008225116 +7,-0.16419357,0.5450753497294466 +8,0.34581536,0.521358191558392 +9,-0.06974197,0.5199882342958999 +10,-0.25050393,0.5820676682599933 +11,0.17414908,0.5488071489732115 +12,-0.09691429,0.5159317194894074 +13,0.39290804,0.5426735001620918 +14,0.37336868,0.5579620522085958 +15,-0.30328006,0.5745542607099351 +16,0.23517847,0.5359768908942638 diff --git a/code/other/dt/train_user_quest_label.csv b/code/other/dt/train_user_quest_label.csv new file mode 100644 index 0000000000000000000000000000000000000000..3060209b5aeba783ebc9ad8472c590ba8304ce3a --- /dev/null +++ b/code/other/dt/train_user_quest_label.csv @@ -0,0 +1,917 @@ +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,0,-1,1,-1,1,1 +1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,2,1,-1 +0,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,0,0,1,-1 +1,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,2,0,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,0,-1,0,-1,1,2 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +1,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +1,-1,1,-1,1,-1,-1,-1,0,1,1,0,-1,0,-1,1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,0,-1,-1,1,0,-1,-1,1,-1,-1,-1,0,-1,-1,-1,-1 +0,1,-1,-1,1,0,-1,-1,0,1,-1,-1,0,1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,0,2,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,-1 +1,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +1,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +0,0,-1,-1,1,0,-1,-1,1,1,-1,-1,0,0,-1,-1,0 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,2,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,1,-1,-1 +1,2,-1,-1,1,2,-1,-1,1,1,-1,-1,1,1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,2,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,0,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,2,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1 +1,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +-1,-1,1,-1,-1,2,-1,2,-1,-1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,1,-1,-1 +0,-1,1,1,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,-1,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,2,0,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,-1,1,1,-1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,1,-1,-1,2,-1,0,-1,-1,1,-1,-1,-1,-1,1,-1 +0,-1,1,2,0,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +1,-1,1,-1,1,2,-1,2,1,-1,1,-1,-1,-1,-1,1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,1,2,0,0,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +1,-1,1,-1,1,2,-1,0,0,-1,1,-1,-1,-1,-1,1,1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +0,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +1,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,2,1,2,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,0,2,-1,0,0,-1,-1,-1,-1,-1,-1,-1,2 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,1,2,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,2,-1,2,0,-1,1,-1,-1,-1,-1,1,1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,0,1,0,-1,0,-1,1,1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,1 +0,-1,1,-1,0,2,-1,2,0,-1,1,-1,-1,-1,-1,1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,2 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,1,-1,-1,2,2,-1,-1,-1,1,-1,-1,-1,-1,1,2 +1,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +0,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +0,1,-1,-1,0,2,-1,-1,0,1,-1,-1,0,0,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,2,0,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,2,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +0,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,1,1,1,-1 +1,2,-1,-1,1,2,-1,-1,1,1,-1,-1,1,1,-1,-1,2 +-1,-1,-1,2,-1,1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +1,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,-1,-1,-1,-1,-1,1,1,0,-1,1,-1,1,1 +0,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,0,-1,-1,-1,1,0,1,-1,-1,1,1,1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,0,-1,0,-1,1,1 +-1,-1,1,2,-1,2,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,0,2,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,1,-1,-1,1,2,-1,-1,0,1,-1,-1,2,1,-1,-1,2 +1,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,0 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,0,1,-1,-1,0,0,1,-1 +0,-1,1,1,0,2,-1,-1,1,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,-1,-1,-1 +-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,2,-1,-1 +-1,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,-1,-1 +-1,-1,-1,2,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,2,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +-1,2,-1,-1,0,2,-1,-1,0,-1,-1,-1,1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,2,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1 +-1,-1,-1,1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,-1,-1 +0,-1,1,1,0,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,0,-1,-1,-1,0,0,1,0,-1,1,-1,1,1 +0,-1,1,2,0,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,-1,-1,2 +-1,-1,1,-1,0,1,0,-1,0,-1,1,-1,-1,0,-1,1,1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,1,-1,-1,-1,1,-1,-1,-1,1,-1,-1,1,1,-1,-1,1 +-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,1,1,-1,2,-1,-1,-1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +1,2,-1,-1,1,2,-1,-1,1,1,-1,-1,2,1,-1,-1,2 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,1,-1,1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +1,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,-1,-1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1 +0,2,-1,-1,1,2,-1,-1,1,1,-1,-1,2,1,-1,-1,2 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,1,0,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,1,2,-1,0,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1 +0,-1,1,2,0,2,-1,-1,1,0,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,0,0,-1,2,0,-1,1,-1,-1,-1,-1,1,2 +1,1,-1,-1,1,2,-1,-1,0,1,-1,-1,2,1,-1,-1,1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +1,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,2,1,-1 +1,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +1,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +1,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +1,-1,1,-1,1,2,-1,2,0,-1,1,-1,-1,-1,-1,1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,0,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +1,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,1,1,1,-1 +0,-1,1,2,0,2,-1,-1,1,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +0,-1,1,2,0,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +1,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,2,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,2,-1,-1,-1,-1 +-1,-1,1,-1,-1,2,0,-1,-1,-1,1,-1,-1,0,-1,1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,2,-1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,1,0,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,1,-1,-1,-1,-1,-1,-1,0,1,0,-1,1,-1,1,-1 +0,-1,1,2,0,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,0,-1,-1,1 +-1,-1,1,1,-1,2,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1 +-1,-1,1,-1,-1,-1,-1,-1,-1,1,1,0,-1,-1,-1,1,1 +0,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,0,0,1,-1 +0,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +1,-1,1,-1,0,-1,-1,-1,0,0,1,-1,-1,1,1,1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,1,-1,0,2,2,-1,0,-1,1,-1,-1,1,-1,1,0 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,1,1,0,2,-1,-1,0,1,1,-1,-1,1,-1,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +1,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,2,1,-1 +0,-1,1,2,0,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,1,2,-1,2,1,-1,1,-1,-1,-1,-1,1,2 +1,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,-1,-1,2 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,2 +0,-1,1,-1,0,-1,-1,-1,0,0,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,2,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,1,-1,-1,-1,2,-1,-1,-1,1,-1,-1,1,-1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +1,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,1,1,1,-1 +1,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,2,-1,-1,0,2,-1,-1,1,1,-1,-1,2,1,-1,-1,2 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +0,-1,1,2,0,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +1,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +1,2,-1,-1,1,2,-1,-1,1,1,-1,-1,2,1,-1,-1,2 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,1,-1,-1,1,2,-1,-1,0,1,-1,-1,2,1,-1,-1,2 +1,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,1,-1,-1,2 +-1,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,0,-1,-1,-1,2,-1,-1,-1,1,-1,-1,1,0,-1,-1,2 +-1,-1,-1,2,-1,2,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,2 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,0,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,1,2,-1,2,-1,-1,-1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,2,1,-1 +0,-1,1,1,0,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +0,1,-1,-1,0,2,-1,-1,0,0,-1,-1,1,1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +1,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +0,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,0,0,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +0,-1,1,1,0,1,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,0,-1,-1 +0,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,2,0,2,-1,-1,1,0,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,2,0,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +0,-1,1,2,0,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,0,-1,0,-1,1,2 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,1,-1,2,-1,-1,-1,0,1,-1,-1,-1,-1,1,-1 +1,0,-1,-1,1,1,-1,-1,0,1,-1,-1,0,1,-1,-1,1 +0,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,1,2,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,2,-1,-1 +0,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +1,2,-1,-1,1,2,-1,-1,0,1,-1,-1,2,1,-1,-1,2 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +1,2,-1,-1,1,2,-1,-1,1,1,-1,-1,2,1,-1,-1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,0,0,1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +0,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,1,-1,1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,2,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,1,1,-1 +1,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,1,0,1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,-1,-1,1 +0,2,-1,-1,1,2,-1,-1,1,1,-1,-1,1,1,-1,-1,2 +1,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,1,-1,0,2,0,-1,0,-1,1,-1,-1,1,-1,1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,2,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,1,1,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,0,-1,0,-1,1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,2,-1,-1,1,2,-1,-1,0,1,-1,-1,1,1,-1,-1,1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +-1,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,0,1,1,-1 +0,-1,1,-1,1,2,-1,2,0,-1,1,-1,-1,-1,-1,1,2 +-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +1,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,-1,-1,2 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,2,-1,2,-1,-1,-1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,2,0,2,-1,-1,0,-1,1,-1,-1,1,-1,1,-1 +0,-1,1,1,0,0,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2 +0,-1,1,1,0,0,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,2,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +0,1,-1,-1,-1,2,-1,-1,-1,1,-1,-1,1,-1,-1,-1,1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1 +1,-1,1,-1,1,2,-1,2,1,-1,1,-1,-1,-1,-1,1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,1,-1,0,2,0,-1,0,-1,1,-1,-1,1,-1,1,2 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +1,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,0,-1,-1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,0,-1,1,-1,1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,-1,2,0,2,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,2,1,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,1,1,1,-1 +-1,-1,1,-1,0,2,0,-1,1,-1,1,-1,-1,0,-1,1,0 +-1,-1,-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,0,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,2 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +-1,1,-1,-1,1,-1,-1,-1,0,-1,-1,-1,2,-1,-1,-1,2 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,0,1,-1,-1,0,1,1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,2 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +0,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,1,-1,1,0,2,-1,0,-1,1,-1,-1,1,-1,1,1 +1,2,-1,-1,0,2,-1,-1,1,1,-1,-1,1,1,-1,-1,1 +0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,0,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,0,-1,-1,-1,0,1,-1,-1,-1,-1,-1,-1,-1 +-1,0,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,0,-1,-1,-1,-1 +0,-1,1,2,0,1,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +1,-1,1,-1,1,-1,-1,-1,1,0,1,0,-1,1,-1,1,2 +-1,-1,-1,1,-1,0,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1 +-1,-1,-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +0,-1,1,-1,0,2,-1,2,0,-1,1,-1,-1,-1,-1,1,1 +-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1 +-1,-1,1,2,-1,0,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,0,2,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,0,-1,1,-1,-1,2 +1,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,-1 +0,-1,-1,2,0,2,-1,-1,0,1,-1,-1,-1,1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,0,-1,-1,-1,2,-1,-1,-1,0,-1,-1,0,1,-1,-1,1 +-1,-1,1,-1,1,2,2,-1,0,-1,1,-1,-1,1,-1,1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,1,2,-1,2,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,2,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +1,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,2,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,2,-1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,0,-1,-1 +-1,-1,-1,2,-1,0,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,0,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,0,-1,-1,-1,-1 +0,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,1,0,-1,0,0,-1,1,-1,-1,-1,-1,1,0 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1 +-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1 +1,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +1,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,1,1,1,2 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,-1,-1 +-1,-1,1,-1,-1,2,-1,2,-1,-1,1,-1,-1,-1,-1,1,2 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,1,-1,-1,0,2,-1,-1,1,1,-1,-1,2,1,-1,-1,2 +-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,0,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,-1,-1,-1,-1 +0,0,-1,-1,0,0,-1,-1,0,0,-1,-1,0,0,-1,-1,0 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +0,0,-1,-1,0,0,-1,-1,0,1,-1,-1,0,1,-1,-1,1 +0,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,-1,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,0,-1,-1,1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,1,0,1,-1,-1,0,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,1,2,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +0,-1,1,1,0,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,0,1,-1,-1,0,0,1,-1 +-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,2,1,-1 +0,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,1,2,1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,2,-1,-1,1,2,-1,-1,0,1,-1,-1,2,0,-1,-1,2 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,-1 +-1,-1,1,2,-1,2,-1,-1,-1,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,2,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,0,-1,0,-1,1,1 +0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,0,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,2,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,0,-1,-1,0,2,-1,-1,0,0,-1,-1,0,0,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,1,2,-1,0,0,-1,1,-1,-1,-1,-1,1,2 +0,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,1,1,-1 +1,1,-1,-1,1,2,-1,-1,0,1,-1,-1,2,0,-1,-1,2 +-1,-1,-1,-1,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,1,2,-1,2,1,-1,-1,-1,-1,-1,-1,-1,2 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,2,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,0,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,1,-1,-1,-1,2,-1,-1,-1,1,-1,-1,2,-1,-1,-1,2 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +0,-1,1,-1,-1,-1,-1,-1,-1,0,1,-1,-1,0,0,1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +0,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +1,1,-1,-1,0,0,-1,-1,0,1,-1,-1,1,0,-1,-1,1 +-1,1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,1,-1,-1,2,2,-1,-1,-1,1,-1,-1,-1,-1,1,-1 +-1,-1,1,-1,-1,2,-1,2,-1,-1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,1,-1,-1,-1,1,0,1,-1,-1,0,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +1,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,2,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,2 +1,-1,1,-1,1,-1,-1,-1,1,1,1,-1,-1,1,2,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,-1,0,1,-1 +1,-1,1,-1,1,2,-1,2,0,-1,1,-1,-1,-1,-1,1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,1,1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,1,2,-1,-1,0,1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +0,-1,1,-1,1,1,-1,0,1,-1,1,-1,-1,-1,-1,1,1 +-1,-1,-1,2,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,1,2,1,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,2 +0,-1,1,2,1,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,2,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,1,2,-1,2,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,1,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,1,-1,-1,-1,-1,-1,-1,0,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,2,-1,-1 +-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1 +0,-1,1,2,-1,2,-1,-1,-1,0,1,-1,-1,-1,-1,1,-1 +-1,-1,1,2,-1,1,-1,-1,-1,1,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,0,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +1,-1,1,2,1,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,1,-1,-1,2,0,-1,-1,-1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,2 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,-1,-1,-1,-1,-1,1,1,0,-1,0,-1,1,2 +0,1,-1,-1,1,2,-1,-1,0,1,-1,-1,1,0,-1,-1,2 +0,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,0,-1,-1,-1,0,0,1,0,-1,0,-1,1,1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +0,-1,1,1,1,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,1,0,1,-1 +0,-1,1,2,0,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,0,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +1,-1,1,2,0,2,-1,-1,1,1,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +1,-1,1,2,1,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,2,-1,-1,-1,2,-1,-1,-1,0,-1,-1,2,-1,-1,-1,1 +1,-1,1,2,0,2,-1,-1,0,1,1,-1,-1,-1,-1,1,-1 +1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,-1,0,2,-1,2,1,-1,1,-1,-1,-1,-1,1,2 +-1,0,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,0,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +0,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,-1,0,1,-1 +-1,1,-1,-1,-1,2,-1,-1,-1,1,-1,-1,1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,1,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,-1,-1,-1,-1,-1,-1,0,1,-1,-1,0,1,1,-1 +-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +0,-1,1,-1,-1,2,-1,0,-1,-1,1,-1,-1,-1,-1,1,0 +0,-1,1,-1,0,-1,-1,-1,1,1,1,-1,-1,0,0,1,-1 +-1,-1,1,-1,-1,2,-1,0,-1,-1,1,-1,-1,-1,-1,1,1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,-1,-1,0,0,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,1,-1,-1 +-1,-1,1,-1,-1,-1,-1,-1,-1,1,1,-1,-1,1,1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,0,-1,1,-1,-1,1 +0,-1,1,-1,0,-1,-1,-1,0,1,1,0,-1,0,-1,1,1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,0,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,0,-1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,1,-1,-1,-1,-1,0,-1,-1 +0,-1,1,2,0,2,-1,-1,0,0,1,-1,-1,-1,-1,1,-1 +-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,2,-1,-1 +-1,-1,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 +-1,-1,-1,2,-1,2,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1,-1 diff --git a/code/other/test_3_embed.csv b/code/other/test_3_embed.csv new file mode 100644 index 0000000000000000000000000000000000000000..14bb1a32599b8f752b782c933416b7f868e4b10c --- /dev/null +++ b/code/other/test_3_embed.csv @@ -0,0 +1,917 @@ +0.04157616,0.011093615,0.49425778,0.15425614,0.61495125,0.3745633,0.23755656,0.3941416,0.22161338,0.40264127,0.054926023,0.10284495,0.329603,0.54301304,0.8305358,0.104649,-0.24013713 +0.7507973,0.3334559,0.16311094,0.55610627,0.2468383,0.33254436,-0.26325276,-0.082144834,0.50462717,0.06641434,-0.040472396,0.3666043,0.1415284,0.046198998,0.12004245,-0.072327696,-0.46555606 +-0.20551085,-0.16804822,-0.066476725,0.19622111,0.18471059,0.2929957,-0.18105112,-0.25509027,0.16577752,1.098182,-0.16377679,0.20346011,-0.13861483,-0.98055816,-0.10187633,0.035910785,0.21814142 +0.6898233,-0.16883416,0.3597533,0.48988536,0.1973332,0.16374211,0.40165213,0.21283469,0.2746803,0.25655675,0.2540997,0.029141543,0.114051476,0.02218969,-0.6494432,0.09112999,-0.027290147 +-0.27399927,0.045672327,0.16076438,0.27755696,-0.03994168,-0.12910101,0.45608822,-0.5069154,-0.3935636,0.25711134,-0.04481848,-0.08777926,0.57161117,0.28030175,1.103079,-0.47171468,-0.38220528 +0.18507743,-0.613758,0.0071925614,-0.16594805,-0.24677318,0.14662328,-0.3792447,-0.25574163,0.109997265,0.3450565,-0.12614895,-0.055570997,-0.029096272,0.031007163,0.24265467,-0.052425746,0.05979432 +0.4825423,-0.20162109,-0.1788628,-0.18337193,0.29627103,0.2961781,-0.58016384,-0.12076834,0.51106244,0.17021616,0.036064893,-0.017453553,-0.22945054,-0.03288126,0.31161267,0.10864741,0.10659939 +0.48431537,0.14031558,-0.15923935,0.04678522,0.4842656,0.0361215,0.035919756,0.02377627,0.19646113,-0.19402397,0.052505735,0.03668916,-0.20441236,0.5585854,-0.4537436,0.49795884,-0.011748163 +-0.47724184,-0.1212976,0.08939735,0.25495696,0.6469739,0.22623914,0.3413505,-0.5962663,0.49883804,0.5517068,-0.64999604,-0.05489551,-0.33683285,-0.84347117,-0.6028137,-0.48519427,0.51376545 +-0.0036623331,-0.07426113,-0.24652778,-0.034201633,0.07914431,-0.20482543,-0.3624728,-0.09996605,-0.13567919,0.82577044,-0.19895671,-0.21139988,-0.10544076,0.038290888,0.44450328,-0.17876342,0.21634217 +0.12295484,0.052395497,0.008643411,0.1280326,0.17064482,0.14809085,-0.027529618,-0.0360413,0.09113793,-0.021331187,-0.0089892475,0.12505758,0.050799474,0.051483106,0.026428565,-0.06892708,0.080318935 +0.05084439,-0.22590299,-0.09176756,0.39471322,0.3147226,0.22156344,-0.21531673,0.015631067,0.14969884,0.86130124,0.14825054,-0.297686,-0.21686792,0.18975401,0.7067127,-0.21055439,0.048018333 +0.12569165,-0.1320214,0.12151151,0.3701044,0.19744608,0.14519602,0.2468547,0.15619394,-0.040315785,0.17741956,0.27241072,0.13780692,0.18206306,0.13567388,-0.5338518,0.16607285,0.06609848 +0.12394474,0.14600024,0.12985532,0.5893853,0.061278075,-0.4252983,0.12426126,0.13752364,0.11803319,0.1527977,-0.119213045,0.18706495,0.25254607,-0.117272615,0.41242316,-0.085127205,0.06808171 +0.8125806,-0.09408951,-0.2936957,0.24349263,0.796473,0.702837,-0.4161668,-0.04280632,0.6001384,-0.5840076,-0.5212211,-0.29018882,-0.20230177,0.5606661,-0.14170077,-0.039243385,-0.11028773 +0.2482424,0.11139981,0.1695148,0.24124928,0.12419366,0.23859368,0.33156955,0.43926206,0.18890026,0.3502031,0.3600806,0.11880724,0.09545001,0.27866456,0.5214134,-0.40077177,0.052193023 +0.17450114,-0.034628883,-0.06852122,0.8269875,0.26473966,0.30916378,-0.1752308,-0.06552938,0.2917806,0.13239548,-0.10551466,-0.04008093,-0.012224633,0.0017439476,0.031802412,-0.05403919,-0.012768494 +-0.11805712,0.06506842,0.2358178,0.1606087,0.097746834,0.060675174,0.030185593,0.055945005,0.09318909,0.20848282,0.08085861,0.15548909,0.3637742,0.057182614,-1.091225,0.15642709,0.39926243 +0.09396834,0.09222964,-0.2626873,-0.018791808,0.18504639,0.3095805,0.06219966,-0.28459954,0.33979923,0.28670263,0.18900304,-0.09219373,-0.33861095,0.42155516,0.12406453,0.1193916,0.51207113 +0.22633018,0.0036991942,-0.0032966551,0.73405635,0.36930984,0.23338461,-0.025179448,-0.05027352,0.1761163,-0.21354315,0.001294535,0.12146153,0.06128231,0.11102437,0.029420411,-0.0176783,-0.031011203 +0.19842522,-0.0815488,-0.591079,-0.30586338,-0.2745407,-0.12257737,-0.048704475,-0.53758705,-0.12830694,-0.3599078,-0.4154333,0.2026189,-0.28842267,0.060429968,-0.94093,-0.0037491128,-0.3596059 +0.26806238,-0.09900153,-0.03391805,2.1299891,0.4684754,0.55974823,-0.20612475,-0.27531943,0.48037595,0.26982993,-0.121160895,-0.19729884,-0.16169982,0.27272534,0.015509819,-0.095880456,0.0946863 +0.06756217,-0.2241428,-0.11258143,0.44357505,-0.032601416,0.5311032,-0.5286401,-0.3065311,0.06716062,-0.15051581,-0.14165758,-0.21190931,-0.21535563,-0.00021405506,-0.08058285,-0.25443116,-0.10183606 +0.20493035,-0.100728124,-0.2501382,-0.4587528,-0.14086847,-0.36696535,-0.20211783,-0.224668,-0.12774198,-0.20136648,-0.6256865,-0.28089866,-0.46065155,-0.03969788,-0.8596778,-0.15929277,-0.47766367 +0.1640925,-0.15544793,0.05879137,0.45808542,0.23671034,0.29695997,-0.029913684,0.37195572,0.32992536,0.3563867,0.119528435,-0.01041886,0.067321986,0.121919446,0.26396394,0.09052028,0.044024322 +0.30793953,-0.0716668,0.11384247,1.797312,0.48848012,0.5585767,-0.2536586,-0.2663531,0.44919902,0.22558004,-0.15953532,-0.02097361,-0.06073259,0.2564781,0.12612042,-0.33503875,0.17649935 +0.2851684,-0.05872063,0.2132969,0.77748185,0.39184332,0.4086759,-0.1868273,-0.15062645,0.6343467,-0.50682217,0.43955168,-0.0768182,0.31161493,-1.2004902,0.465496,-0.48499662,-0.05708278 +-0.86946064,0.03441081,0.10905485,0.7851194,0.26887515,0.26248372,0.07295162,-0.28836232,-0.11682861,0.38530138,0.2310875,-0.22488305,-0.22766834,0.055188686,0.13951063,0.12715389,0.024300672 +-0.2181215,-0.054211404,-0.2835875,0.30857342,0.6026395,0.27611867,-1.0614923,-0.43230277,1.174184,0.6843295,-0.084721625,-1.0207379,-0.33871776,0.65184283,-0.18971646,-1.0388252,0.5638109 +0.099723056,-0.32144493,-0.01526849,0.2937628,0.17641589,0.17713323,-0.16502419,0.4643211,0.26723403,0.14227495,0.021812862,-0.14347775,-0.014280732,0.06811972,0.23919268,0.1795098,0.09875379 +0.17811508,-0.0062797433,-0.19137534,0.16878243,0.10691864,0.10172185,0.079838574,-0.083682135,0.23885985,0.67693657,-0.024553977,0.31092304,0.051700037,0.04768824,-0.5135311,-0.2670077,0.2271916 +0.031763017,-0.044004127,-0.17065261,0.4671674,0.13298614,0.31141743,0.17352194,-0.08465115,0.19925718,0.02195161,-0.08266842,-0.13813496,-0.15413925,0.40093088,-0.1707172,0.014715388,0.11014524 +-0.109270304,-0.27645555,0.197944,0.007894564,0.062132522,0.058363188,-0.043435525,-0.039588057,0.113898754,0.04721052,-0.062083643,-0.022907736,0.09546997,0.24319847,0.55046713,-0.23555648,-0.041346084 +0.31436756,0.07222663,-0.058843404,0.03617335,0.20496814,0.114130944,-0.045209292,0.17623977,0.3664349,0.254448,0.19478148,0.18776688,0.10359129,0.009501096,-0.016926859,-0.0330675,0.093604945 +0.26432675,0.1343499,0.19433434,0.16203801,0.31129432,0.09087614,0.12896767,0.19571696,-0.049286243,0.34568202,0.10889027,0.24010466,0.17396358,0.4100617,1.0339918,0.2178627,0.03667378 +-0.06749368,-0.099407695,0.067775056,0.0357333,0.057196464,0.010481405,-0.01061064,-0.30978945,0.1236751,-0.034714878,-0.09736085,-0.19088814,-0.07725232,0.037932076,1.1911834,-0.2534416,-0.0328739 +0.24253018,0.40506077,0.19071914,0.21436502,0.3102981,-0.14885207,0.20487314,0.013873535,-0.28368095,0.09863563,-0.19715443,0.3861018,0.12209929,0.50166714,1.3891988,-0.19106837,-0.18789901 +0.07355656,-0.06924765,-0.006590433,0.8622684,0.21528076,0.2752097,-0.2683462,-0.10432595,0.24563494,0.027173012,-0.1083795,-0.257361,-0.12244592,0.19142914,-0.029031616,-0.059116166,0.027958073 +-0.19921225,0.18208934,-0.11890153,0.44900662,0.8530191,0.36225796,-0.2419753,-0.5827299,0.4004855,0.5586022,0.08373526,0.10923863,-0.3379504,-0.2507759,-0.63204044,0.27825493,0.45869556 +0.0974697,-1.2310447,0.35496193,-0.049556185,0.48062202,-1.5812982,0.1671894,0.52293456,-0.1964513,-0.07672663,-0.3603069,0.010985044,-1.2883344,0.18074279,-0.31446803,0.17025357,-0.56646913 +1.5627266,-0.12651363,0.6261109,0.31679446,-0.19129755,-0.9205852,0.14438535,-0.70572776,0.87546337,0.41494134,0.07418949,-0.28812492,-0.96920985,1.3154767,0.037317984,-0.52369076,-0.16488962 +0.37393036,-0.085788965,0.22471817,0.3744421,-0.0012058694,0.233702,0.37177297,-0.14539813,0.64636797,0.25781143,0.14555998,0.32866648,-0.15952712,0.03711856,0.50062597,-0.35748714,0.17911345 +0.9755998,-0.028116707,0.26471204,0.18156657,1.0109701,-0.31666756,0.25141057,-0.5698124,0.8517239,0.03605585,-0.3821093,-0.38938197,0.31002986,1.6782146,-0.18228425,-0.3341185,0.6278091 +0.19024521,-0.59378827,0.04851424,0.2481529,0.2719947,-0.2815539,-0.20282246,-0.12249982,0.3973864,-0.015071456,-0.106494635,-0.34882015,-0.21773742,0.19399646,1.1992441,0.035103872,0.11424511 +0.08897764,0.093455665,-0.0033240335,0.15916808,0.18099843,0.075112455,-0.045708284,-0.08075795,0.08251356,-0.09436454,-0.0037457251,-0.04572473,0.06768414,-0.004155091,0.060203765,0.05935754,0.015336256 +0.028120901,0.04881679,0.003958093,1.6485147,0.2160693,0.19306818,-0.1081742,-0.1780654,0.50838065,0.29997563,-0.46531296,-0.28404462,0.15628959,-0.17563982,0.27379173,-0.07450513,-0.09328468 +0.25969055,-0.17714788,0.02452282,-0.030367158,0.07455204,0.021483507,-0.00829646,0.17881362,0.14207113,0.16486639,0.104084045,0.10700924,-0.13602743,0.25553405,0.45831496,0.1358401,0.042235024 +0.6449667,-0.2702127,-0.29007828,1.0476327,-0.05293881,1.1742184,-0.0806826,-0.5428486,0.050650246,0.6257703,0.25488812,-0.28906053,-0.44087115,0.3627055,0.08993135,-0.06317178,0.2028348 +0.50932765,-0.16900016,0.024959637,-0.06830542,0.0034700062,0.25118956,-0.051356245,0.15810347,0.1576352,0.1767372,-0.05482556,0.07753205,0.074653134,-0.012193845,0.19107313,-0.2549142,0.09917337 +-0.21375777,-0.28074893,0.1701755,0.72525096,-0.07113593,0.785704,0.029495625,-0.05655316,0.1869798,0.26380658,-0.6462284,-0.38005418,-0.06725253,-0.2701272,-0.17052428,-0.27970088,-0.23818254 +-0.45251644,0.15574656,-0.13925938,0.53625774,0.08855728,0.40863216,-0.4221184,-0.3069909,0.19622436,0.54347485,-0.13486554,-0.17445557,0.19114578,-0.19885562,0.30034265,-0.4249404,0.26351705 +0.25373617,-0.866591,0.03809931,0.8018469,1.3577183,-1.7072101,-0.45747113,-0.19791856,1.4456484,-0.4188389,0.16965698,0.17244674,-0.8211226,1.0184261,0.040488318,-0.08098837,-1.7227697 +0.14347216,-0.19452307,-0.17006385,-0.019470833,0.1356719,-0.004185904,0.0890566,0.22873242,0.080652125,0.26996997,0.22228034,0.17539638,-0.086287975,0.1318871,0.061502934,0.21447553,0.18213952 +0.21667844,0.3423286,0.3098321,0.17454015,0.42933312,0.23250106,0.08845536,0.16853605,0.23505268,-0.24158973,-0.10102299,0.40276155,0.21302179,0.49723768,1.148073,-0.23654956,-0.3960312 +0.1046128,-0.11659311,-0.05606399,-0.095897324,0.34241566,0.061781228,0.022017742,-0.06438132,0.42190674,-0.0006733368,0.09000537,-0.14587991,0.16059932,0.39290804,0.22943012,-0.02948117,-0.068660624 +0.14170332,0.031077597,-0.017780365,0.42975688,0.044350397,0.23117067,-0.03626619,-0.08601298,0.09342629,-0.026268259,-0.05064107,0.04283256,0.061942324,0.11390432,0.19522466,0.028500894,-0.14194411 +0.48203683,0.08387187,-0.02852662,-0.83269143,0.41084158,0.23874438,-0.14378174,-0.4476094,-0.16499494,-0.13204868,0.0360956,0.5620142,0.548556,0.1600312,-0.47707182,-0.48435268,-0.053387605 +-0.55838686,-0.6595092,-0.30855608,0.32775,0.4046866,0.8546852,-0.9902777,-0.35052428,-0.1375437,-0.4723424,0.06863806,-0.97913104,-0.82257706,-0.37109572,-0.6301759,-0.35561007,0.55126697 +0.17151548,-0.13894762,-0.10256739,0.060981497,-0.21509051,0.44005388,-0.5297551,-0.5185813,0.35587993,0.065198176,-0.66092205,-0.4081853,-0.47231,0.1465971,1.244426,-0.122787066,-0.0955646 +0.046572365,-0.8729595,-0.6441024,0.44317913,1.366145,0.36655846,-0.26349387,0.1092337,0.5929549,0.8622169,-0.77392924,-0.20456858,0.44402105,-0.39388886,0.41001529,-0.4698003,0.76450324 +-0.22375005,-0.03192266,-0.45426297,0.8209721,-0.07840851,0.2307602,-0.24839789,-0.7400154,-0.076350465,0.41343957,-0.17517573,-0.021786377,-0.2700092,-0.22337383,-0.1028331,-0.4309381,0.033362914 +0.17826828,-0.30662465,-0.004428214,1.2950428,0.46799973,1.1654623,-0.14223772,-0.33198047,0.24648294,0.3580273,-0.029253379,-0.23619741,-0.46817335,0.19273734,-0.19327179,-0.37975445,0.20096362 +-0.32325003,0.0040935744,0.2268563,-0.16505262,-0.09279091,-0.18395294,0.08699252,-0.29019618,-0.15577155,-0.06974197,-0.2833074,-0.045634083,0.32677937,0.0085294545,-0.14112087,-0.20159718,-0.33871213 +0.5423821,0.07951918,-0.15635876,-0.4316124,0.28763318,0.44837722,-0.15730831,0.26777652,0.5486103,-0.06671194,0.24146059,-0.46429127,-0.26181093,-0.0459668,-0.01964834,0.0023440118,0.12392401 +0.18584643,0.08732377,-0.016517721,0.09584314,0.22636826,0.18408132,-0.021856839,0.008449783,0.13061151,0.06342278,0.038115326,-0.0946967,0.14590262,0.08774723,-0.02644787,-0.025214778,0.1462281 +-0.38420153,-0.10015073,0.10925402,0.69019806,-0.14887777,0.8305561,-0.0054171323,-0.42782342,0.058991354,0.21085383,-0.049497314,-0.29894623,0.14352272,0.35447887,-0.07740422,0.052498877,0.20268422 +0.054215543,0.13051452,0.23590274,0.21618998,-0.023754591,0.090056896,0.17242412,0.21224685,0.056147028,0.124495015,0.16916034,0.2341292,0.18745153,0.09892913,0.13570324,0.08514279,0.07043962 +-0.026766188,-0.053576816,-0.10704276,0.6001594,0.37570858,0.2648703,-0.29979143,0.34377939,0.24151991,-0.042108577,0.0732275,-0.43182313,0.09526313,0.28913745,0.8391547,-0.008859502,0.12269238 +0.7505951,0.21767363,-0.048226416,0.010712051,0.28105506,-0.05922913,-0.17235106,-0.19226763,0.27696446,-0.021486426,-0.02890796,-0.040373098,-0.060064018,0.786685,-0.26224506,-0.2756445,-0.22246559 +-0.14483584,0.14241199,-0.29423755,0.21276927,-0.031567648,0.12552235,-0.18843013,-0.36707935,0.2780841,0.17269033,0.22784866,-0.0702754,-0.099322625,0.36153466,0.102606446,-0.08844967,0.20656352 +0.12381345,-0.09111017,-0.42854893,0.6542522,0.0776476,-0.08947638,0.2931359,-0.45651525,-0.21426572,0.24698904,0.4062163,-0.050140947,-0.3970752,0.20942765,1.7026901,-0.35284698,0.00971433 +0.31295472,-0.31546643,0.53395647,0.16068469,-0.0576311,-0.31297007,-0.302695,-0.14840046,0.5606328,-0.69160163,-0.75137997,-0.12305931,0.016568325,0.08715014,-0.12784648,-0.3108654,-0.63965935 +0.40181857,-0.22902252,-0.013075847,0.47740236,0.22366911,0.23864664,-0.22431986,0.06940117,0.1388871,0.43738815,0.05376915,-0.073337264,0.11525302,0.15506065,-0.12288557,0.23364127,-0.16614386 +0.075873256,0.14702268,0.0074197343,0.7295825,0.36441192,0.14987469,-0.032731462,0.23369245,0.26826903,0.1450309,-0.049053993,0.058647994,0.037181523,-0.049035575,0.058269393,0.08059856,0.018320264 +0.054344676,0.08752254,-0.081613734,0.3104006,0.13439925,-0.10985613,0.11567303,-0.09551034,0.32703236,0.19889523,0.20583872,0.18255873,0.010644705,0.13270688,-0.0031411147,0.070371844,-0.09337394 +0.99343646,0.43050006,-0.2136788,0.29518896,0.17829889,0.28705892,-0.1377581,-0.2747585,0.05893526,0.29871696,-0.290215,0.16829395,0.36870813,0.63704956,-0.37145057,-0.18038672,0.012365033 +0.17170112,0.020426054,-0.13932724,0.33253962,0.16489288,0.21361393,-0.16559044,-0.06914245,0.1378843,0.24671148,0.03563462,-0.16932863,-0.021990178,0.09995458,0.0634806,-0.05249975,-0.023297329 +0.16637745,-0.055167805,-0.1588363,0.32771757,0.16147321,0.055880345,0.30093583,0.10406179,-0.04235745,0.12725276,0.24291559,-0.17539841,-0.13552968,0.29343957,0.51152295,-0.16140015,0.4306374 +-0.13130653,0.099870406,-0.71072227,0.08645032,-0.14113869,0.2631122,-0.588897,-0.31068426,0.27891892,-0.06038866,0.1439339,-0.25911406,-0.08624807,0.042158127,0.76746005,0.1600373,0.15036754 +-0.23457861,0.10632692,0.3701972,-0.87999266,0.47520843,0.41347155,0.7029047,-0.6793898,0.177601,0.35028315,0.3076701,1.4929218,-0.4489946,0.5033101,0.38783702,0.23019777,0.106852114 +0.3525633,-0.08079116,-0.0542283,0.024566274,0.22193165,0.20407264,0.032544687,-0.09714877,0.38371202,0.34117705,-0.25050393,0.050184026,-0.065945044,0.35785988,-0.29506254,0.15536225,-0.067259796 +0.38633466,-0.26081625,0.19212636,0.09498954,0.5208495,0.18843466,-0.2505576,0.053228837,0.54788566,0.34976992,0.41637,0.014142707,-0.313144,0.50089395,0.23648866,0.0249273,0.1034232 +0.23171717,-0.0009298947,0.11523932,0.49315315,-0.002242426,0.44464102,-0.099130355,-0.14453375,-0.13858798,0.18460178,0.11074928,0.13441361,0.084128134,-0.06393111,0.2719194,0.10272615,0.23245241 +-0.7119115,-0.8205674,-0.08930538,0.59971994,-0.25230852,0.42909747,0.53835773,-0.40184563,-0.33707026,0.50916415,-1.0207682,-0.20116499,-0.12796143,-0.38119254,0.59185827,0.37294722,0.38009498 +0.1964495,-0.15387197,-0.101125635,0.4516261,0.42806822,2.0581844,-0.32205832,-0.33024105,0.40670025,0.22106606,-0.24655944,-0.23242705,-0.17751308,0.22357732,-0.12868114,-0.40264082,0.11571661 +0.23676084,-0.092110224,-0.03696543,0.5090365,0.40544474,1.8978907,-0.35235092,-0.37516376,0.4636681,0.28036723,-0.26813814,-0.2510468,-0.12743714,0.09241946,-0.12813063,-0.3443333,0.12706041 +0.38398018,-0.15625751,0.07758327,0.9292816,-0.101106614,0.12516433,-0.5754619,-0.06868756,0.18469286,-0.43251348,0.1897604,-0.24905224,-0.24400969,0.3342637,0.12346554,-0.37097317,0.3823219 +0.11487588,-0.40186217,-0.43399325,-0.030186694,0.4573785,0.20261833,-0.5860923,-0.3368137,-0.1708675,0.29691994,0.43920627,0.010048341,-0.4792793,0.5191799,0.1730611,-0.16840208,0.22684683 +-0.9969475,-0.56686306,-0.11329986,0.3525622,-0.22689873,0.83121175,-0.093691394,-0.50488436,-0.41933393,0.08627248,-1.3264302,-0.89168024,0.023702767,-0.5257478,-0.086170875,-1.2171769,-0.40797126 +0.28517672,-0.24332418,0.21834871,-0.0057615493,0.16492033,0.14738967,-0.09704084,-0.27643162,0.25304145,0.05198609,-0.048466045,-0.027903557,-0.24332514,1.1024252,0.2330477,-0.30827945,-0.12055015 +-0.029407194,-0.25095946,0.11347991,0.21613336,0.6593744,0.4636487,-0.4448575,-0.3284034,0.5800204,0.23229018,0.050041303,-0.052776877,-0.08472552,0.1331697,0.0700866,0.024836829,-0.25522852 +1.0060142,-0.5689447,0.25581485,0.4639711,0.24531393,0.49696276,0.06854295,-0.022974793,0.25207484,0.14453626,0.2229315,-0.20828286,-0.3579876,0.39762,0.24847808,0.24140114,-0.15002517 +0.15707335,-0.23722272,-0.049724583,-0.040066652,0.2306897,0.10917936,0.14318268,0.28616437,0.17924896,0.22123899,0.16874778,0.07074879,0.150658,0.10259828,0.25310057,0.1634429,0.044469256 +0.114496306,-0.12817003,-0.11644865,0.22328785,0.26658657,2.0696945,-0.2548525,-0.13416848,0.28585455,0.037309144,-0.13439062,-0.27387857,-0.12564708,0.19820382,-0.10537009,-0.2876613,0.16635571 +0.088185504,-0.3556005,-0.09569585,-0.03166866,0.08457618,-0.0055723498,-0.25160062,-0.07809796,0.30558068,0.16191328,-0.11540378,1.585248,-0.24062766,0.2633935,-0.22175792,-0.27408147,0.19551587 +0.7434148,0.033802938,-0.04694581,0.40494886,1.2512472,0.47022927,-0.41589853,0.5721872,1.1063452,-0.077691935,0.0052894996,-0.02012436,-0.30571488,0.72888464,0.3409023,0.3807061,-0.25717717 +0.16429318,-0.24093342,-0.07686475,0.961853,0.31706902,0.28692612,0.05942536,-0.116525084,0.4787763,0.22590981,-0.21621369,-0.42201245,-0.26471213,0.4265544,-0.17370902,0.0013667905,0.050440844 +0.24589796,-0.33719093,-0.24730794,0.6460284,0.3454754,0.68266565,0.0026270295,0.3732638,0.5998957,0.18023765,-0.19090937,-0.3448122,-0.23068902,0.07372123,0.1228047,-0.65352106,-0.037925422 +-0.03539002,-0.1685421,-0.05140995,0.13665856,0.10013785,0.20329392,-0.10965059,0.14823456,0.07604596,0.14409557,-0.13852598,-0.067140006,0.07332929,0.31764054,0.042783294,0.06912901,0.09430936 +0.35207567,0.15349562,0.018664973,0.23652042,0.12318875,0.09985334,0.25499457,0.094734356,0.21203296,0.011352623,-0.02960907,1.410156,0.2045522,0.539525,0.3933137,0.01578221,0.49256474 +0.79589915,-0.22907561,0.21093042,0.001746065,0.23690188,0.22351144,0.2690688,-0.12375085,0.2483471,-0.36788523,-0.5897493,-0.1863238,0.001634883,1.118157,-0.104951896,-0.30381742,-0.44441912 +-0.03977,0.12341607,-0.4287632,-0.44135395,0.1385437,0.14940491,-0.23045975,-0.0147649795,-0.09349936,0.12938252,0.08042931,-0.5894645,0.16601266,0.0851384,0.29734197,-0.078050144,-0.05487045 +0.14856242,-0.010379527,-0.2787664,0.05526252,0.15935352,0.23183222,-0.04000549,0.008039903,0.15756524,0.4459341,0.1745664,-0.09857459,-0.013373076,0.28287336,0.45348302,-0.014388775,-0.07796643 +0.64757353,-0.17002489,-0.26268896,0.35617056,-0.19642836,0.42790794,0.5551068,0.24609253,-0.42552188,0.233054,-1.0306429,0.06945792,0.41121688,0.5925944,-0.88393635,0.17781451,0.15353201 +0.10845263,-0.063144006,0.20800391,0.10921598,0.20396228,0.09702425,-0.15285218,-0.048610754,0.0061439266,0.074880615,0.0023329067,0.08912983,0.066375576,0.043749183,-0.3766648,0.12660179,-0.10605146 +0.24899237,0.18162107,0.29825342,0.29363075,0.3761173,-0.027807,-0.08216136,0.13660721,0.55584866,-0.014377579,0.020678319,0.1488291,0.02160111,0.16785212,0.05643805,0.010627734,0.2238864 +0.88069,0.30123925,0.3855269,-0.29729235,1.031702,1.0081322,-0.108959146,-0.42356336,1.2282668,-1.304406,0.013269888,0.09457108,0.03602288,0.42168057,0.112327285,-0.072517455,-0.13203394 +0.06831976,0.29903388,-0.26701382,0.07347767,0.13734426,-0.119663745,0.4538349,0.09087808,0.10730099,0.10159826,0.06673851,0.24921475,-0.009200643,0.026917158,0.37365147,0.26610574,0.11784155 +0.7039294,-0.19908583,0.068319686,0.0132976845,0.3607153,0.0058831284,-0.039509192,0.20076713,0.7910809,0.22504908,0.10099097,0.13872617,-0.17621142,0.871802,-0.27959952,0.36211565,-0.0993875 +-0.48767,-0.49537435,0.23129235,0.45732927,-0.57417804,1.3787949,-0.23373002,-0.23611958,-0.2898272,0.4676257,-1.2709504,-0.118404806,-0.5913235,0.28819013,-0.11533743,-0.3083353,1.0650517 +0.31795982,0.37589285,-0.120508745,-0.4700566,0.3510452,0.066739745,-0.0016071593,0.048115592,-0.16771215,0.7427702,-0.039726306,0.0134227695,0.27937216,0.6873969,0.60003144,-0.031149013,-0.30416578 +0.1440722,0.06409186,0.10870726,0.18577112,0.110163905,0.17439884,0.13029748,0.11679164,0.06882504,0.17516744,0.20501669,0.13479559,0.14248937,0.12481014,-0.2769227,0.15330967,0.07890851 +-0.01864431,-0.12769681,0.21092483,0.2964361,0.09033984,0.46915808,-0.35041818,-0.34614018,0.2830226,-0.0118732015,-0.29218277,-0.17333628,-0.033846717,0.23329757,2.0186574,-0.52414477,-0.06065132 +0.31103387,-0.32818648,0.3642248,0.8295906,-0.056313325,-0.93205315,-0.3394283,0.030250376,0.44991773,0.41997033,0.090735205,0.09814887,-0.44512045,0.39036712,0.09004969,0.37725583,0.14234115 +-0.121238254,-0.30983093,0.07078285,-0.46596575,0.66626024,0.38985005,-0.5781728,0.28971562,0.49643236,0.2946949,-0.31712806,-0.09622808,-0.31063402,-0.027223594,-0.1571825,0.23005353,0.20581861 +0.19151165,-0.31323317,-0.4215584,0.0034683654,-0.17079316,0.4717913,-0.29720795,-0.26380348,0.41396636,0.055683475,-0.1207995,-0.1650839,-0.31831178,0.10353134,0.008125957,-0.2641831,-0.054822497 +0.33300662,0.12427605,-0.08553801,0.7693435,0.3836614,0.3908189,0.001870597,0.23523551,0.40535963,0.0053419853,-0.013387801,-0.022858916,-0.016662814,0.16826493,-0.04142401,0.03078211,0.09343213 +0.012073054,0.010457269,0.2077282,-0.11521642,0.19446516,0.1844456,-0.24429922,0.13667285,0.25871488,0.10237183,-0.10428453,0.2574006,-0.13164076,0.35431105,0.3946314,0.09726902,-0.2704933 +-0.7705519,-0.1333295,0.43197277,0.64009213,0.3848709,0.91340595,-0.65126085,-0.58176064,0.49240738,0.31040654,0.4977185,-0.1246645,-0.10087687,0.33432359,0.039566007,-0.17847872,0.77062494 +0.157425,0.23974986,0.20542799,-0.024931183,0.23661557,0.16454485,0.07734883,0.021257339,0.13788685,-0.26473418,-0.050196506,0.11269911,-0.03276168,0.2269064,0.024946578,0.0707089,0.03133017 +0.19757947,-0.1337986,-0.061621916,0.34679496,0.23716968,0.1605862,-0.4217691,-0.04565345,0.4513986,0.3527242,0.31280157,-0.13155122,0.19737004,0.22500922,0.3260562,0.22786322,0.12076227 +0.47465587,-0.33424735,-0.09205309,0.3962702,0.59907293,0.40078804,-0.03465478,-0.34364575,0.1729735,0.7062726,0.061967112,-0.16931447,0.052265726,-0.0077783884,-0.680762,-0.18307145,0.12803626 +0.111833125,-0.123391785,-0.32231963,-0.03519877,0.5765621,1.0024453,-0.13546127,0.34027526,-0.107803844,-0.08979908,0.026823942,0.2734198,-0.08301034,-0.15214857,0.15932885,-0.0047615035,-0.17044434 +0.89420056,-0.5408546,0.17745791,0.22499165,0.26848996,0.13356246,0.38658488,-0.14946426,-0.20867655,0.35013956,-0.0045791073,-0.111268215,0.023372717,0.27564147,-0.01319546,-0.5096226,-0.4420768 +-0.30568498,-0.052521102,0.015766164,0.08374003,0.0952085,0.51565886,0.029274194,-0.4584939,0.006572984,0.33388022,0.04533697,0.045593876,-0.25823542,-0.43818527,0.32984567,-0.12239519,0.3968641 +0.04450747,-0.13766608,-0.07092482,0.83466184,0.2078486,0.13833445,-0.15561914,-0.11774952,-0.21115535,0.20395285,-0.25387734,-0.26877445,-0.14545013,-0.0018113704,-0.072174534,0.0073056407,0.26113707 +0.061869092,0.059595615,0.39566207,0.0814941,0.7937144,0.38259387,-0.24188642,-0.17340875,0.1994082,0.08373499,-0.10482574,-0.07184781,-0.37144274,0.1775686,0.10337521,-0.2517327,0.003787945 +-0.26451746,-0.12126258,0.10318445,-0.120066844,0.42170963,0.07671717,-0.16932642,-0.0022562377,0.41486794,0.31264645,-0.15128748,0.30910772,-0.041948363,-0.010590999,0.09536804,-0.10420037,-0.12831952 +0.14722864,-0.13312249,-0.15907116,0.61970246,0.46775374,0.5512682,-0.256793,-0.20961016,0.23152548,-0.09422433,-0.09060422,-0.17184098,0.16094188,0.055265587,-0.048643544,-0.15973797,0.14503612 +0.054046027,-0.08430787,-0.018506844,0.45591217,0.23990144,0.3408807,0.2194264,0.08910566,0.23010561,0.030072337,0.088858224,0.08645822,-0.17685702,0.306523,-0.035369005,-0.050050985,0.07532222 +0.61225826,0.06844989,0.045182906,0.18507986,0.76524687,0.32630923,-0.4255655,0.19814402,0.21976762,0.08454511,0.15623717,0.042178135,-0.2461574,0.27726445,0.35807675,0.042122167,0.0676468 +-0.02533536,0.051662713,0.02392127,0.18698047,0.20653965,0.16089076,-0.0021382773,0.07338826,0.14163207,0.08262826,-0.025872717,-0.0015578626,0.11022326,0.0026682543,-0.059126828,-0.052450653,0.03068846 +0.12452022,-0.21589464,-0.0074966266,-0.0040667327,0.47510955,0.11641675,-0.12330635,0.018757885,0.6182144,-0.05595011,-0.0024967843,0.24864052,-0.15644942,0.5601602,0.11719316,-0.15743968,0.27762526 +0.052361425,-0.07128499,-0.22667207,0.35677055,-0.16670598,0.3113825,-0.2056734,0.04673674,-0.05980995,-0.18532085,0.0951538,0.06256637,0.08624008,0.41950148,-0.4508708,0.025772102,0.24835454 +0.44398928,0.15750897,-0.06523315,0.28591257,0.6675329,0.3907247,-0.70290995,0.11859026,0.0014463592,-0.06955133,0.28006643,-0.07723019,-0.048586853,0.16614173,0.22824223,0.18612882,0.4588727 +-0.13272364,-0.15352245,-0.22649112,-0.024652781,-0.09493738,-0.10601817,-0.018056566,0.0060789427,-0.117907405,-0.027713798,0.03312974,-0.2074339,-0.24026798,0.059960812,0.082702406,-0.091467276,-0.017455986 +-0.016339503,-0.3595393,-0.2592231,0.2588192,0.4330659,0.25942242,0.030782342,-0.11674354,0.03440389,0.40057543,0.1350062,-0.041307397,-0.33627585,0.41408607,-0.028552983,0.0463612,-0.10487104 +-0.15988076,-0.3114853,0.1787006,-0.2533653,-0.03765642,-0.16626447,0.13783732,-0.07568423,-0.11185851,0.1953136,0.0016396339,-0.22911984,0.35091805,0.1898698,0.48920184,0.010550825,-0.12656672 +-0.22811246,-0.16172437,0.04718244,-0.16665913,-0.09547986,-0.09767782,-0.47335535,-0.09259735,-0.16993332,-0.001989515,0.03507956,-0.41143784,0.3335302,0.0257691,1.515382,-0.62366766,-0.112596214 +-0.012889975,0.01586484,-0.19843142,0.062319443,0.11728096,0.06662198,0.6419992,-0.017297616,0.37593025,0.19131759,-0.08443914,-0.045793127,-0.11478711,0.09693809,0.11174772,0.018242279,0.59558356 +0.23797849,-0.063558005,0.13887954,0.9241352,0.29335335,0.28393164,-0.11997152,0.0010254943,0.16924119,-0.11056892,0.067244396,-0.08995855,-0.075409584,0.14290619,0.0009611534,-0.19621027,0.15653072 +0.29155606,-0.11976579,-0.013295941,0.29058436,0.510904,0.9572694,0.6436775,-0.59648645,0.5540105,-0.18036382,0.30917743,-0.51422435,-0.8254065,0.075898275,-0.24554908,-0.22998449,0.76829803 +-0.40838152,-0.22152838,-0.17513786,0.27730775,0.2742436,0.13927636,-0.36793107,-0.21245104,0.051148802,-0.07861938,-0.6365889,-0.48442632,0.5393208,0.248356,0.6876614,-0.36968789,0.0903476 +-0.09361739,-0.1537485,-0.05454861,0.54724383,0.33296007,0.17580312,-0.17773592,-0.18584287,0.21131474,0.4917703,-0.07470741,-0.271148,0.0564629,0.24678178,0.08987217,-0.18413082,0.21182966 +0.06638337,0.326539,-0.05598595,0.1755703,0.122735806,0.29803917,-0.07332624,-0.046311952,0.7992648,0.055036,-0.1559636,-0.15158886,0.13134485,0.6606241,-0.014474868,0.11176716,-0.195827 +0.05561913,-0.30113116,0.050968345,0.21469413,0.19411029,0.3538537,-0.009536264,-0.2804358,-0.011860458,0.64382017,-0.031728346,-0.13931845,0.21854818,-0.3598645,-0.35788038,-0.55326384,0.11978126 +-0.004186701,-0.18548952,0.014159976,0.44959465,0.02170281,0.09177113,0.13511574,-0.40263724,0.04792778,-0.061082426,0.15782699,-0.0722207,-0.1370097,0.15494828,1.1435286,-0.5823615,-0.2005822 +0.21321641,-0.08164767,0.06492166,0.9912224,0.40416527,0.905025,-0.36013064,-0.6873964,-0.21978723,-0.37115964,-0.2654756,-0.41123515,-0.37237638,0.023113122,0.419338,-0.061260004,0.28832242 +0.032817613,-0.19698583,-0.034956396,0.1574587,0.27814403,-0.110594094,0.4085636,-0.044501938,0.28907728,-0.0051215077,0.1498459,-0.16342825,0.052550547,0.08347971,0.17730385,-0.19426718,0.31104958 +0.15556897,-0.049663544,-0.026581166,0.17006771,0.2263807,0.10497514,0.0027189702,-0.07351245,0.25002804,0.07588052,-0.15335986,-0.22282866,-0.17770936,0.18782532,0.098771706,-0.032834828,-0.24280111 +-0.23395716,0.74946296,-0.027457805,-0.27643403,-0.21623574,0.059825696,0.043932997,-0.26693383,0.3914964,-0.0035344623,0.18095522,0.5356077,0.25974274,-0.17649983,1.4841813,-0.45481247,-0.0053262557 +0.08886993,-0.09673707,0.1386584,-0.050322797,0.0753744,0.05710519,-0.27792922,0.1312626,0.109492384,0.028323213,0.0069624847,-0.028869027,-0.059542093,0.15926188,0.9729424,-0.08706174,0.15288891 +0.033167716,-0.037318025,0.10047775,0.27493766,-0.09587549,0.14420317,-0.3017036,-0.37716526,-0.13271347,-0.07444882,-0.29482076,-0.2067579,-0.12962227,-0.090563774,0.30238283,-0.04212844,-0.0028015324 +0.5505496,-0.42330313,-0.51669,1.2613184,-0.5966298,1.3325499,-0.6821197,-0.68899953,-0.5869267,0.07241805,-0.06362891,-0.7729805,-0.43183932,0.4047778,-0.2180827,-0.66151816,-0.14388892 +0.32707477,-0.28252476,0.030248439,-0.4074485,0.15401651,-0.25242227,0.32795483,-0.4594904,0.17676596,-0.28057513,-0.06280581,0.22656637,-0.22057666,0.28209153,-0.61260206,0.08016339,-0.017610263 +0.2793488,-0.18660648,-0.05452065,0.3888032,-0.0031251954,0.28995657,-0.3703541,-0.21889386,-0.03317814,0.36371726,0.37818825,-0.14693974,-0.04249509,0.1337136,0.3926714,0.10228884,0.12947676 +0.3608769,0.09200636,0.5650973,0.4702498,0.65698415,0.23685436,0.13689363,0.0074449214,0.46908143,-0.65449303,-0.38220865,-0.038956076,0.039136037,0.40149093,0.20727602,0.058860984,0.115710706 +0.031916365,-0.27029002,0.09090786,0.0069716894,-0.0012402016,0.05720924,-0.106362514,-0.11201057,-0.37900642,0.32193416,-1.1112323,-0.040921047,0.14945307,0.6447674,0.2922974,-1.0205773,0.21015775 +-0.54122,0.42044103,-0.840269,0.19855312,0.37471795,0.7097116,-0.45731091,-0.45892426,-0.11684138,0.1720961,-0.05327327,-0.330114,-0.003995838,-0.7927308,0.042697188,-0.88295746,-0.058934674 +0.040317435,0.013824432,0.15512553,0.6073546,0.12444783,0.10145105,0.041824512,0.05456376,0.010528282,0.51913923,-0.11314691,-0.06678818,0.14692207,0.105102,0.3059078,0.11222807,-0.2615734 +0.14870313,-0.02227251,0.19515343,0.45915896,0.21125343,0.4874745,0.020778313,0.13705668,0.37497228,-0.2897577,-0.10646349,-0.11127721,-0.04753911,0.07296631,0.028718097,-0.029997317,0.079647735 +0.84692967,-0.25194705,0.05837921,0.3996823,0.7542567,0.40540808,-0.37311316,-0.013551821,0.61263895,0.7455127,-0.4871772,0.1901271,-0.2474908,0.787156,-0.5017815,0.023785569,0.17932956 +-1.014482,-0.46220332,-0.07292536,0.81478673,-1.036543,0.7058426,-0.41766325,-0.33319956,-0.25172818,-0.0028922001,-0.9811469,-0.42648256,0.09870114,-0.010797922,-0.39625102,-1.089692,-0.113948025 +0.5176569,0.23559119,-0.005384257,0.31905338,0.3743745,0.08702762,-0.045984115,-0.3928158,0.29298562,0.5408319,0.3148146,0.5713629,-0.062197346,-0.07003771,0.31322056,0.014737416,0.42512703 +0.4318006,0.014361524,-0.37056956,0.5871286,0.24470598,0.4471913,-0.48976994,-0.1089777,0.54708475,0.037610117,0.10127673,-0.24898693,0.22424373,0.13761191,0.3365134,0.049805544,-0.06660299 +1.0475929,-0.47625905,-0.08833835,0.73691314,-0.7259585,0.9456142,0.2593473,0.13780178,-0.38638672,-1.5241259,0.39145604,0.51972866,0.13540736,0.70363826,0.74807185,0.29842103,0.7017167 +-1.0118417,-0.49506822,-0.17229547,0.1254639,-0.30907753,0.2006801,-0.26690176,-0.5941432,-0.10688851,0.5340385,-0.5658371,-0.29220912,-0.6046723,0.07668657,-0.54931533,-0.5201633,-0.26413763 +0.04629749,0.08401415,-0.2078785,0.21783054,0.29123217,0.40393192,-0.2520651,0.004655971,0.44320458,0.068292506,-0.046935175,0.15934213,-0.30143675,-0.11717151,0.9701045,-0.15981655,0.44101602 +0.04118869,-0.15487617,0.1510734,0.8930874,0.17230408,0.016852036,-0.29904413,-0.33353484,0.13419375,0.22962037,-0.21775046,-0.041250896,-0.08991183,0.04177234,-0.19885303,-0.34332103,0.05387402 +0.12153693,-0.31064814,-0.257695,0.87801516,0.50720537,0.24467538,-0.15934321,0.26011938,0.52391845,0.44492516,0.0027055307,-0.33141848,-0.55361736,0.44960013,-0.0028625398,0.49250415,0.33021486 +-0.096132,0.020466503,0.025691245,0.552839,0.18040481,0.25779274,-0.055550154,-0.19250025,0.21518187,0.15733734,-0.17005776,-0.018686917,0.033904612,0.22444172,0.012826131,-0.02675706,-0.10556384 +0.6117358,-0.310713,-0.077178925,0.2296209,0.40160495,-0.22394808,0.09439153,0.23908725,0.0040740655,0.6775068,0.27440324,-0.31449074,-0.33734772,0.14229959,0.1101719,0.33432743,0.014075037 +0.27818045,-0.1763832,-0.08340534,-0.06571125,0.12745537,0.08535249,-0.18793301,0.121941596,0.0367344,0.2108568,-0.2327546,-0.06515282,0.19852868,0.3946336,0.0079614,-0.0033416229,-0.040708132 +-0.016182411,0.041716665,-0.175519,0.08413952,0.30729046,-0.039331608,-0.23184529,-0.305066,0.16172343,0.11348012,0.1806344,-0.1956355,-0.019194372,0.4323096,0.09634562,-0.0443103,0.23628339 +0.042123344,0.012038606,-0.0799214,0.8950472,0.53666437,0.85345095,-0.7130373,-0.2591678,0.39114657,0.24263887,-0.25587168,-0.22675094,-0.22444601,0.024737518,0.056417223,0.35469142,-0.1583849 +0.0019538538,0.05129538,-0.08565092,-0.049538903,0.22768332,-0.0015827043,0.039126478,-0.30149522,0.18692341,0.18988915,-0.19327039,0.018779386,0.38705552,0.3818008,0.010301491,0.036038827,0.26624426 +-0.0715435,-0.06878151,-0.011384363,-0.096495755,0.29682752,0.32611874,0.059829757,0.018885482,0.26023826,0.17052348,-0.045892384,-0.0717764,-0.1911048,0.2505905,-0.1683848,-0.029165998,-0.044228073 +0.1330589,-0.31209564,-0.066049285,0.25873002,0.36026865,-0.072182335,-0.48195744,-0.25672984,0.57209945,0.14173067,0.39671332,-0.22286388,-0.2924526,0.5587771,0.4792982,-0.2981159,-0.1797371 +0.07158716,-0.020118985,0.0636771,-0.033532597,0.24132062,0.13553254,-0.053350855,-0.10385195,0.21170047,0.09571907,0.0008244874,0.107619695,0.17230587,0.049137007,-0.089679785,-0.063132666,0.12779875 +0.15369795,-0.31264317,0.34172702,0.1812256,-0.08044672,0.4359102,0.13420014,-0.116636515,0.032662004,-0.3342274,-0.63024294,-0.15372041,-0.4025129,0.4471298,0.029496275,-0.75233394,0.08449608 +0.2882668,-0.10540522,-0.29021266,1.084161,0.38229373,1.2844427,-0.5697667,-0.40350112,0.5545467,0.45699427,0.03220823,0.15583344,-0.26850048,0.23457283,0.12220968,-0.23624173,0.1425726 +-0.04423994,0.5649661,-0.065188795,0.09013963,0.27728736,0.8389662,-0.41179156,-0.46885207,0.43360496,0.46926752,-0.9000396,-0.41628996,0.21750884,-1.5581374,-0.41987076,-0.7962463,-0.5110322 +-0.18083979,-0.009333051,-0.2771029,0.52422667,0.14674821,0.34724092,-0.19164155,0.2716886,0.34784192,-0.11105949,-0.19275457,-0.19435044,0.0041926643,0.019948069,0.5119476,0.01361115,-0.0017298183 +0.26196808,0.22552197,0.188158,0.46663523,0.042931948,-0.18989334,1.0731039,0.17072317,0.09805815,-0.185094,0.3672783,0.47928256,0.2407982,0.3494357,0.39111516,0.2522656,-0.72939104 +0.30710915,0.25483146,0.0840714,0.4704936,0.22078007,0.68290657,-0.34633,0.31533492,0.2772632,0.005073608,0.05244406,0.061211172,-0.047411602,0.055464696,1.1567495,0.34342808,0.02629407 +-0.14001943,-0.21973884,0.5567677,1.4228797,0.33488435,0.013548587,0.30556807,-0.59268486,-0.3044472,0.43815094,0.6453309,-0.2344171,-0.3375541,0.26995274,-0.29695985,-0.5112136,0.2644635 +0.8102752,-0.57464826,0.22431941,-0.13599376,0.43212175,-0.0068670167,-0.022875601,-0.15769824,0.2765896,0.33559075,-0.90613425,0.026747452,-0.0931562,0.3118366,0.3241149,-0.3851323,-0.12063564 +0.8462335,-0.004288428,0.34707147,0.4920413,-0.19711865,0.6267984,-0.24574335,0.090967774,1.1850742,-0.7963817,-0.27694872,0.5552362,-0.3030849,1.2718914,-1.3891834,-0.37242725,0.39803544 +0.30483025,-0.026806308,0.07231918,0.2279727,0.16933972,0.26255733,-0.031808734,0.19402811,0.27477264,-0.13328901,-0.108339496,-0.059338465,0.0403401,0.0672832,0.03942645,0.18756267,-0.22133899 +-0.06500355,-0.00080526026,0.12621927,0.18267138,0.20341623,0.2021898,-0.05776063,0.23912935,0.19769959,0.21204944,0.13000362,0.18812475,0.19962057,0.08415951,-0.39796615,0.2141522,0.44733727 +0.4039298,-0.46545932,-0.44514358,-0.101003505,-0.12056127,0.13549238,-0.49370617,-0.28297654,-0.08375797,0.62257886,-0.11371801,-0.09092356,-0.31997725,1.057759,0.048404265,-0.6347087,0.032438353 +-0.41680086,-1.0009972,0.4200696,-0.31612647,0.01713962,-0.116489485,0.09241446,-0.027233494,0.16896966,-0.09949541,0.17579399,0.3273741,-1.0722247,0.62202615,0.12078226,0.71222633,-0.29150325 +0.22045238,0.15349372,-0.047381274,0.48567218,0.14231725,0.17128573,-0.108198024,0.018919127,0.13709728,-0.021149749,-0.05802403,0.042674027,0.086459234,-0.07866868,0.08402686,-0.08060335,-0.08467513 +-0.11883455,0.13080806,-0.010289598,-0.1103044,-0.060540214,-0.16008118,0.15407923,-0.19609396,-0.22003494,0.16437913,0.0021369765,0.08530512,0.30310687,0.11367286,0.027392728,-0.2366816,-0.26444748 +0.16753209,-0.027545048,-0.23144887,0.18728857,0.22630684,0.19047481,0.046092268,-0.53534836,0.14909014,-0.20460552,-0.5139197,-0.2917787,-0.4576228,0.12247127,0.47449294,0.07778812,0.40741548 +-0.0166186,-0.019936122,0.020187782,0.04624303,-0.010509361,0.086334705,-0.11317212,-0.06633831,0.046526406,-0.026260901,-0.019271044,-0.050765906,-0.054155983,0.027439944,0.09413479,-0.11255897,-0.00905601 +-0.07318605,-0.13375258,0.07726389,-0.053320494,0.012319755,0.006772398,-0.073981486,-0.109446876,0.03916221,-0.012753999,-0.115465745,-0.123068884,-0.01275426,0.03301628,0.41392085,-0.074383736,-0.018839084 +-0.063626535,-0.17490618,-0.47857937,0.34908378,0.28877333,0.15431495,-0.4763434,-0.35967132,-0.067857765,0.7016449,0.18851939,-0.5585947,0.050587803,-0.23695926,0.7243528,-0.117991336,0.34017572 +0.3626673,-0.3598243,0.49040243,0.34861383,0.28561726,0.1613025,-0.0037967265,-0.46562845,0.86472845,-0.34230554,-0.12409872,0.26242566,-0.28936252,0.78722966,0.35182768,-0.48368126,0.19970559 +0.019417638,0.10915847,0.08912789,0.12216256,0.38645238,0.78020364,-0.3146578,0.37793678,0.46802267,-0.08912826,0.02662245,-0.39477572,-0.17145965,0.19625151,-0.015639657,-0.045411848,0.0020604045 +0.18686904,-0.18225546,-0.21342504,0.1921958,0.12330756,-0.0076097203,-0.09581672,-0.054345436,-0.0055782073,0.41132146,-0.022173446,-0.19450127,-0.044839896,0.22153167,0.12652877,0.021423114,0.028306017 +0.66109663,-0.30507836,0.39711556,0.24174024,0.45021656,-1.318502,-0.06505203,-0.22239594,0.52157897,-0.29868504,-0.05041807,0.15643616,-0.04483832,0.8067929,0.21815711,0.28772843,0.23924857 +-0.0538874,0.07021059,0.049469814,0.3027519,0.30152425,0.101643786,-0.26504236,-0.29681116,0.07406261,0.2426867,0.09579833,0.15498033,0.1850498,-0.08165067,0.1392754,0.18643852,0.31065032 +-0.022991901,0.02661926,-0.02365033,-0.19411771,0.22997041,0.096843794,-0.0067941295,0.12330073,0.05122063,-0.36620402,0.097065575,-0.33058786,-0.47353137,0.23687474,0.0663975,-0.24196678,-0.1908658 +0.4192768,-0.0700476,-0.13018534,-0.06869255,0.38474002,0.35218638,0.28984237,-0.3755746,0.36008087,0.4819875,-0.051442735,-0.024547787,-0.08450382,-0.4254225,-0.030791363,-0.21189897,0.5261704 +0.6924765,-0.33152753,0.32380494,0.27086288,0.59215736,1.3452582,-0.054836612,0.83159393,0.3995671,-0.008876181,-0.31591663,-0.10951026,0.02746885,-0.053795725,-0.19675191,0.1379624,0.24905819 +0.054958597,-0.16998658,0.18923172,-0.20170735,0.26448277,0.020091785,0.26125488,0.13028696,0.2054776,0.38581663,0.071055494,0.14121203,-0.16071405,0.15005076,0.115878016,0.082224295,0.27259514 +0.79252356,-0.2114094,0.35499918,-0.11251013,0.070340976,0.007724152,-0.27726838,-0.5132524,0.10988934,-0.19020826,-0.21394056,-0.20209263,-0.1664448,0.15760553,0.8397431,-0.5103174,-0.49801967 +0.0037981407,0.16536452,-0.03217901,0.13016057,0.26503488,0.19030127,-0.17954767,-0.20283596,0.35900563,-0.13813631,-0.13555671,-0.06074936,0.22975923,0.15026511,0.16221362,-0.030543841,0.17047419 +0.20081195,-0.042893384,0.05585754,0.90777475,0.16724348,0.25584853,-0.047386426,-0.09296627,0.061927516,0.009679003,-0.098359995,-0.038229078,0.09089066,0.11906259,0.18697257,-0.14825219,-0.06872901 +0.19637363,0.015754133,-0.19657516,0.13009511,0.2869637,0.26655468,-0.27841082,-0.3257789,0.27222714,-0.027896067,-0.46775287,-0.12503436,-0.4529278,0.5489461,-0.08671669,-0.20578107,0.2755956 +-0.15208262,0.21428648,-0.11718704,0.26233152,0.3376683,0.1450971,-0.09058478,0.070768,0.031100385,0.60120445,-0.34506938,-0.34772003,0.19608831,0.85894775,1.0331736,-0.014801699,0.40273654 +-0.17751488,-0.013824887,0.045546297,1.3732957,0.22119115,0.5708074,-0.04294747,-0.37264884,0.56831914,0.4323953,-0.48587933,-0.16271168,0.03719841,-0.22707479,0.05312675,0.021387838,-0.22475415 +0.51162577,-0.064173825,0.276747,1.3589314,0.29858214,0.48437664,-0.065595575,-0.037572317,0.35992035,-0.028916528,-0.1666527,-0.096976005,-0.05024042,0.32742953,0.14235355,-0.1646409,0.13760845 +0.45505118,0.14832269,0.14897804,-0.025638591,0.14193867,-0.026272886,0.060496278,0.010043549,0.057132788,-0.23959011,0.21884042,-0.32925096,1.0607495,0.029823137,0.19124931,-0.041436873,0.08001435 +0.49402648,0.0073523084,-0.64373195,0.04435682,0.18940695,0.21661848,-0.4311313,-0.28906506,0.2133254,0.4368575,0.40723234,0.05561306,-0.37393084,0.6710996,-0.41778642,0.18497625,0.24796514 +0.27331075,0.063184015,-0.07340178,1.0276093,0.23444344,0.44420403,-0.28918025,-0.035262022,0.43650258,0.11898304,-0.066466615,-0.06274866,0.0021020386,0.13574128,0.052311752,-0.016681582,-0.044622183 +0.14103808,-0.042795945,-0.14118962,1.6572992,0.4918237,0.5712584,-0.30552042,-0.18044007,0.5955347,0.40240029,-0.08454786,-0.24937926,-0.2510624,0.31256923,0.10950969,-0.14723694,0.086754404 +0.07832859,0.23921518,0.017909413,0.011004996,0.23340234,0.0261804,0.08300498,0.4048437,0.42078963,-0.051442366,0.18338764,0.08395186,-0.30427802,0.37549892,0.044651546,0.37685767,0.010881025 +0.45556563,0.054875504,-0.112498656,0.41756168,0.10548227,0.24139056,0.043505095,-0.22427033,0.2520697,-0.15736212,-0.0014144004,-0.07738934,0.013182649,0.008021279,0.0886965,-0.053227313,0.043572508 +1.8280884,-0.22241111,0.5595653,0.690092,0.21273232,-0.18820521,0.4366625,-0.30032957,0.4060887,-0.78946644,-0.30509558,0.04560774,-0.30108464,0.29631707,-1.0150243,-0.056565028,0.3480231 +0.7380338,-0.032332014,0.13136706,-0.051096268,0.9311218,0.5391066,0.20713936,-0.15913384,0.38018453,-1.1486287,0.3171385,0.36009577,-0.032720897,0.35300648,-0.3174499,0.014357535,-0.23490615 +0.30151987,0.24340917,-0.14357486,-0.16932248,0.3472406,0.30956593,0.19122228,0.14906657,0.2911584,0.23165995,0.041042075,-0.27412686,0.07695216,0.3295527,0.4421208,0.022104966,0.11150213 +0.043160185,-0.14543168,0.12044206,-0.36182153,0.28741434,0.39842784,-0.08489503,-0.4690212,0.27752745,0.49496695,-0.032104194,-0.047223926,0.14787422,0.35883427,0.20049384,-0.08966997,0.20654932 +0.17617662,0.008047059,0.12598132,0.101675056,0.19316629,0.09100409,0.099637926,-0.11970882,0.14786597,-0.15116549,0.111375004,-0.055099487,0.10315013,0.11031158,0.08137789,0.20137072,0.10660137 +0.39142287,-0.17030066,0.040723797,0.4757294,0.49241307,0.69913363,-0.15647587,-0.41311797,0.52552146,0.50601697,-0.076276034,-0.19771051,-0.52492315,0.030934518,-0.13096644,-0.1509319,-0.11349112 +-0.0037172646,-0.18703878,0.140837,-0.084247604,0.04112589,-0.041900717,-0.14475346,-0.14438812,0.24462244,0.021002596,-0.26953924,0.48422533,-0.11497212,-0.052385993,-0.33560002,-0.2684943,0.41042984 +0.2802041,-0.13936877,0.34113878,0.09102189,0.4068393,-0.1424081,0.52811956,0.08700318,0.58430135,0.070706874,-0.31864172,0.16988689,-0.02303976,0.8714007,-0.11095495,0.15290046,-0.16511405 +-0.123822756,-0.23176289,-0.14186348,1.2843668,0.14259475,0.33132058,0.12312011,-0.11084937,0.2159346,0.6146157,0.17440988,-0.22303419,-0.34058115,0.41102245,0.33008817,0.088285446,0.2353454 +0.21990187,0.059168864,-0.11669794,0.33309987,0.47887757,0.05550355,-0.2687734,-0.021346603,0.41006243,0.30699372,0.112435624,-0.025599042,-0.21965319,0.5745072,0.4515711,0.107460424,-0.07112858 +0.04226289,0.059473205,-0.088954926,0.22934389,0.07721927,0.09247912,-0.059075933,0.15253122,0.13232498,-0.0066578253,-0.09492499,-0.07557093,0.007040207,-0.038717102,0.047642127,-0.0035090796,-0.07139331 +0.1546977,0.15070738,0.039134532,0.6400293,0.4049184,0.47468245,0.10259014,0.11113955,0.38565525,0.25540432,-0.042415183,0.2060567,0.034040272,-0.1646631,0.08693192,-0.049458034,-0.057765182 +-0.6558139,0.12378524,-0.7199417,-0.14033157,0.18990521,-0.15029694,-0.4156696,-0.37574273,0.7185993,0.691864,-0.13795674,0.078429736,0.119707614,-0.30407143,0.6698797,-0.49958992,0.5211139 +-0.20736817,0.18521136,-0.18132257,-0.14708099,-0.21438026,-0.20249987,-0.46062925,-0.33195755,-0.65328693,-0.21581909,-0.3794134,-0.18740132,0.2839911,-0.047796354,-0.3705484,-0.28363207,-0.30830562 +0.953596,-0.3222028,0.42643178,0.03961196,0.8862704,-0.15168309,-0.56780267,-0.5807375,-0.2620346,0.57380575,-0.37227485,-0.0051397234,0.32718083,-0.94022816,-0.3628874,-0.3496962,-1.0413805 +0.3202029,-0.229721,-0.44035012,-0.36147243,0.38980523,-0.009821257,1.1202153,-0.0161855,0.42583707,-0.08593231,0.56747556,-0.21903339,-0.1453879,-0.03804045,-0.32281297,-0.25194165,0.68882006 +0.002291927,-0.29682067,0.3181333,-0.08985527,-0.07926598,0.110133655,-0.03972527,-0.023093289,0.0811468,0.14669856,-0.27769375,0.18462947,-0.025988821,0.07473939,-0.31972256,-0.042213477,-0.0348506 +0.056105085,0.18630475,-0.4760921,-0.031589888,0.72660166,0.70462817,-0.53563404,-0.175621,0.7385337,0.00036235215,0.45335984,-0.23164694,-0.29892755,-0.010966377,0.27662337,-0.29476225,-0.2130632 +0.259433,0.017789427,0.09787226,-0.17159268,0.22867274,0.06773659,-0.275508,0.00040581962,-0.1136434,0.10009564,-0.08026144,-0.08859992,0.27957502,-0.01325824,0.036012758,0.029747577,-0.24474701 +0.40105447,0.23634982,-0.38020903,0.7745575,0.7049832,0.7061021,-0.29263577,-0.15874772,-0.005785777,0.37595698,-0.916642,-0.310166,0.24695158,0.027624238,0.63621974,-0.6153631,0.23726556 +-0.13832751,0.030537607,-0.10620876,0.25102708,0.6952537,1.1361356,-0.06290967,0.28252587,0.73919356,0.3234377,-0.18600523,-0.27398685,-0.36504033,0.16828494,-0.07035026,-0.08605841,-0.0387465 +0.116079874,-0.36784092,-0.12649417,0.35314432,0.03304508,0.9277902,-0.35986847,-0.46094245,0.3002211,-0.28537843,-0.36031288,0.22219972,-0.06978257,-0.13656428,0.09953412,-0.46100035,-0.05813121 +0.40218195,-0.107273534,0.17568332,0.23161352,0.12952116,0.12462579,0.006083737,-0.1125515,0.23996545,0.98996675,-0.066718794,0.93782365,0.15432346,0.10316831,-0.070678376,-0.33355543,0.22163722 +0.229302,-0.07435217,0.12305883,0.38905594,0.14694,0.21368308,0.017871896,0.08026208,0.15050603,-0.08829741,0.13518716,-0.13791636,-0.097605065,0.22365387,0.17134172,-0.048897892,0.15844491 +0.38902485,-0.11036431,-0.03448996,0.36576322,0.22245072,1.6672571,-0.2021346,0.12307667,0.046264343,0.5019526,-0.29334962,-0.07886396,0.09242335,0.51753587,0.44812903,-0.027757643,-0.09656208 +-0.5245883,-0.23639505,0.1780034,1.1375314,0.15870194,0.15941045,0.11454385,-0.8633011,-0.024272159,0.4605885,0.114616096,-0.66589385,-0.14528155,-0.27164155,-0.087933585,-0.4320447,-0.21868517 +0.061427712,-0.38315856,0.11214039,0.05332499,0.2377458,0.090388194,-0.008488979,-0.016830694,0.2308383,-0.10272535,-0.037637495,-0.037595127,-0.07305783,0.23167376,0.44317874,-0.22552924,-0.023925986 +-0.078523606,0.39048803,-0.22743836,0.09551963,-0.548639,0.62102556,-0.4143864,-0.70225453,-0.20211247,-0.0288244,-0.41137922,-0.18511969,0.37029287,-0.32648405,-0.09560118,-0.54617673,0.015356719 +0.6802413,-0.3660861,-0.14824364,0.28490365,-0.06454926,0.29757553,0.042618684,-0.18958418,0.0794186,0.6018121,-0.117720135,0.12885696,-0.4840114,0.9557967,-0.23503132,-0.32468885,-0.11487255 +-0.6492222,-0.06630665,-0.006482814,0.42532185,0.011785611,-0.008886039,0.8322262,-0.71355605,-0.37248468,0.43934748,-0.28931764,0.3123204,-0.019248849,-0.12616858,-0.066173874,-0.34053603,-0.063771255 +-0.5670059,0.33582845,0.045711968,0.80907536,0.47766626,0.5455159,-0.49177867,-0.41205585,0.30126792,0.44164833,0.09026022,-0.23089574,0.23635279,-0.03385889,0.11256079,-0.8828512,0.07864862 +0.27375573,0.120966665,-0.46013832,0.10580484,0.06348934,-0.46364748,0.011441063,-0.22530065,0.34012377,0.5850996,-0.16490372,-0.35600916,0.4191345,0.06534953,0.082219146,-0.04116656,-0.08354637 +-0.036589723,0.06798878,-0.17510496,-0.36936918,0.46630663,0.6924215,-0.20282905,0.28476933,0.5202874,-0.0743125,0.16941167,0.1946606,-0.2313511,-0.010350913,-0.32109922,-0.1642159,-0.2839527 +0.035649408,-0.110022016,0.3046946,-0.029415246,0.01467285,-0.65058196,0.075786,-0.45803484,-0.39422423,0.16800176,-0.23521242,-0.45932436,0.3909956,0.32348973,1.9466681,-0.07610655,-0.17912364 +0.044483643,-0.0850905,-0.19119056,0.036273725,0.31258327,0.34790176,-0.6685154,-0.37840214,0.6722585,0.3685227,-0.099353954,-0.1777671,-0.1870275,-0.41282645,-0.036621768,-0.080170885,0.5085569 +-0.0027674076,0.1382484,-0.046846766,0.95476955,0.296063,0.4649518,-0.114077434,-0.05541686,0.46339062,0.16590346,-0.23889662,0.031556156,0.1478808,0.35721514,-0.048205912,-0.09382375,0.015923237 +-0.022137789,-0.0019870265,-0.23402384,0.2623769,0.4558497,0.28789046,0.057399645,-0.19163013,0.5215453,0.9069408,-0.032915525,0.20430371,-0.10121495,0.47560167,0.23514421,-0.06730638,1.1189471 +0.24623324,-0.20548078,-0.08923018,0.19767512,-0.014350784,0.24939112,-0.10173067,0.18871638,0.15360738,0.6310292,-0.5392361,-0.21793342,-0.03794101,0.18763503,0.07170871,0.20569353,0.15417169 +0.55590945,-0.36648846,0.3698046,-0.20016111,0.09363133,0.23967242,0.2287009,-0.18157528,0.20803268,0.23181331,-0.6286249,-0.042434588,0.022208363,0.90117776,-0.04554385,-0.13009244,0.011863278 +0.43974936,0.5191311,-0.16820861,0.030626096,-0.17151083,0.20343114,0.08623852,-0.016106237,0.095833406,-0.13378453,0.11034488,-0.23840146,0.37857464,0.04041012,0.13903844,-0.067659386,0.25213504 +0.3003159,0.38417158,-0.018563053,-0.01755251,0.014680615,0.5370405,-0.5919662,-0.38422364,-0.37351432,0.38416955,-0.4465781,0.057337508,0.32147977,-0.25730485,-0.3425921,-0.55336964,0.15890385 +0.06511614,0.3451261,0.28336817,-0.0113385,0.23217654,-0.07650959,0.02903175,0.22350849,0.05975299,-0.14019436,0.25524074,-0.023199458,0.06801898,0.1196722,-0.019949421,-0.032279078,0.07697185 +-0.07433489,-0.0059691905,-0.18565822,0.022359198,0.2513672,-0.0038350308,-0.14846781,0.19601789,0.12131559,0.09263641,-0.03689627,0.19246672,0.01588898,-0.04608852,-0.1745697,-0.07230573,-0.0064586885 +0.23072958,-0.17742097,-0.23288393,0.15798673,-0.101135,-0.025554495,-0.31017166,-0.15357314,0.04184658,0.065927945,-0.14267036,0.71206087,-0.13334158,-0.009458835,-0.14519924,-0.18476416,0.05796434 +0.22022004,-0.32987905,0.026936218,0.24131164,0.14146954,0.06321747,-0.15793431,-0.28726313,0.24307983,0.0034144158,-0.023165531,-0.1809203,-0.3698052,0.15389803,1.5233333,-0.09549993,0.0052348496 +0.61121285,0.14654139,0.39142627,0.15811737,-0.02938843,0.35264617,-0.09321865,0.0028661604,0.43853816,-0.17285341,0.48656985,-0.053933393,-0.42699084,0.6285917,0.23076156,0.50354373,0.017913839 +-0.18835272,-0.12676203,-0.23387033,-0.03638818,0.10694848,0.23516035,-0.9633497,-0.33540606,0.36231238,-0.25125018,-0.44346955,1.951682,-0.6413224,-0.6543284,-0.0840492,-0.00681957,-0.22767404 +0.25536206,0.05270503,-0.16586368,0.030815654,0.19194007,0.23347315,0.5180257,-0.18379284,0.3124087,-0.23985723,-0.03965705,-0.32199425,-0.28852785,-0.11239112,-0.11854687,-0.04239437,0.3206421 +0.027481003,0.1105378,-0.14132845,0.28924793,0.2906052,0.28247172,-0.026404815,0.16186997,0.17532837,0.013710065,-0.038721714,0.044339247,0.058956757,0.051103476,-0.14877409,0.0051215645,-0.19425197 +0.233347,0.4655782,-0.46008235,1.1126659,0.19526683,-1.3502357,-0.24657078,-0.34330976,0.15142784,0.44625697,0.05646442,-0.0060407263,0.15166213,-0.18599033,0.72762865,0.05260597,0.08225763 +0.5118414,0.068296164,0.07942809,0.9156353,0.72364223,0.8182851,-0.096850395,0.0033314347,-0.26094878,0.05715637,0.000422479,-0.0032591007,-0.10401933,0.5784662,-0.0806975,0.10242621,0.10156168 +0.61946994,-0.67106766,-0.008436664,0.45463267,0.059483774,-1.382174,-0.52899593,0.05587013,0.40779242,-0.24967487,-0.04174383,-0.49550056,-0.24132071,0.3188685,-0.09163341,-0.40980205,-0.06091097 +0.1672347,0.34857306,-0.123066574,0.30868086,0.2995439,0.28574026,-0.16139309,0.09223374,0.093090735,0.07868398,0.100394376,-0.15078567,0.23208605,0.13041647,0.057816386,-0.34641916,0.15839909 +0.29139763,-0.09625273,-0.20424335,0.4935351,0.2565503,0.47146672,0.08255965,0.11321636,0.47957593,0.3069076,-0.2196662,0.015116512,-0.08252252,-0.30764744,0.57833177,0.10391257,-0.115900956 +0.014875781,0.21792555,-0.22845477,0.40817702,0.35668314,-0.018903371,-0.37454945,-0.67729706,-0.09382169,0.79510385,-0.73870534,0.20684882,-0.2614806,-0.6881246,0.41650343,-0.33721823,0.07828734 +-1.5631202,-0.5853265,-0.49244288,1.1740725,-0.9677886,1.4423808,0.053646833,-0.54956585,-1.1392441,-1.8127115,-1.0913305,-0.36622494,-0.54753673,0.5120785,-0.6649303,-0.5969805,-0.09683535 +-0.6811373,-0.48989338,0.18283392,1.3011032,-0.06158145,0.6999612,-0.21169841,-0.8848979,0.36042258,0.18066083,-1.3549732,-0.46089074,-0.053182833,-0.2659692,-0.12841214,-1.5475931,-0.44067708 +-0.045297835,-0.4083099,-0.3629933,0.15996252,0.35593492,0.20175993,-0.51500535,0.051546276,-0.020230107,0.21474403,0.5288954,-0.23999578,-0.4365117,0.3607112,0.17275658,-1.0180352,0.5861833 +0.36980832,-0.010509422,-0.23808232,0.27650625,0.3129552,0.2218607,-0.05446747,-0.33963263,0.0957354,0.3141855,0.19549696,0.032371048,-0.25070682,-0.0072957044,0.5309218,0.12267153,0.13351789 +-0.48958933,-0.32456937,-0.45069188,0.28348202,0.3104745,0.5621184,-0.6349808,-0.02985863,0.14479612,0.17890692,0.1964016,-0.07406715,-0.006664113,0.17078288,0.42141062,-0.19101351,-0.10613917 +0.3392758,-0.27831888,0.30978817,0.21358016,0.23316829,0.5775765,-0.15282525,0.6964026,0.40554956,0.11348178,0.1906643,0.21911307,0.110549636,0.308342,-0.9627355,0.4863975,0.08965475 +0.37857693,-0.10396676,-0.07858613,-0.11861668,-0.05188646,-0.088428475,-0.26244688,-0.59305406,-0.053635497,0.5454518,-0.26510692,-0.045539,-0.058325436,-0.027918255,0.3151266,-0.4032045,-0.08821297 +0.7698532,0.41577718,0.6867723,0.19716774,0.57441133,-0.18143696,0.34592226,-0.15519102,0.7346826,-1.9505495,-0.24169177,0.9340406,0.023427134,1.7217331,-1.7099208,-0.13874033,0.69340074 +-0.043977223,-0.17897817,-0.4079117,-0.16793768,-0.22593094,-0.5802022,0.26471493,0.31221852,-0.2848281,0.021746824,0.22741422,-0.11010047,-0.050671734,0.121530056,1.2029891,0.06504217,0.108072646 +-0.0029835142,-0.11299362,0.1936705,0.50981736,0.20136806,0.34320658,-0.45525464,-0.10273271,0.34178284,0.3930595,0.44257468,-0.18303226,0.079782836,-0.5086862,0.6999931,-0.0015561031,0.16283953 +0.23938307,-0.000801401,0.099681705,0.63400704,0.46250588,0.16643877,-0.11405348,-0.02632128,0.08425121,-0.03295503,0.16798146,0.17702666,-0.17782676,0.37344053,0.098353416,-0.1389964,0.11925375 +0.36298376,0.024934437,-0.013250671,0.7057861,0.2615006,0.35503057,0.09363501,0.25410628,0.3581967,-0.27314246,-0.17384696,-0.2082174,-0.034852825,0.21357334,-0.014530907,0.012244517,-0.22960702 +0.077614255,-0.0036243945,0.010147522,0.2841998,0.092682816,0.20321764,-0.049785834,0.07009997,0.21525444,-0.041452833,-0.10603367,0.047934383,0.008693827,0.08575616,0.148853,0.097202875,-0.058109544 +0.45109946,0.24555926,0.15135506,0.33437496,0.5482655,-0.007617132,0.1882002,-0.015072377,-0.11363409,0.17353812,0.33177394,-0.7766514,0.5782001,0.5493839,0.3295408,0.33662635,-0.1447788 +0.44154048,0.04083795,0.3993018,0.38811007,0.41623405,0.35626754,-0.34369242,-0.28015938,0.6235215,-0.2281489,0.57775295,-0.33606935,-0.35754448,-0.0764647,0.17996466,-0.15262222,0.14616688 +0.14581853,0.0035094433,-0.17692555,-0.13577022,-0.14968991,0.008064977,-0.13461757,-0.10874692,0.09345864,0.010661183,-0.23528042,-0.14446937,-0.20823415,-0.005991878,0.33322245,0.08188667,-0.084677406 +-0.026527654,-0.10460354,-0.119213365,0.44949812,0.11913497,0.13080712,-0.32624903,-0.55021065,0.11108984,0.07823916,-0.041685585,-0.0972756,-0.12593073,0.019671598,0.3167027,-0.21412013,0.010138691 +-0.07787797,0.5158762,0.009786583,0.0732451,0.09387518,0.13198054,-0.021716738,-0.00943835,0.12019932,0.14027092,0.10723781,0.31357637,0.14971617,0.02524107,-0.99353987,-0.014710704,0.3998081 +-0.17616513,-0.1853197,0.07897838,-0.10339669,-0.03752262,-0.09485173,-0.20360368,-0.0615502,0.025073033,-0.15884359,0.107680604,-0.10899162,0.028270531,-0.16999394,-0.0030263036,-0.35082865,0.01095684 +0.19346143,-0.049988233,0.25937092,-0.49037063,0.580434,0.37869158,-0.28061247,0.021731583,0.36448175,0.3295388,-0.15357734,0.16505297,0.1908958,0.08935868,0.029213378,0.091462545,0.16131155 +0.664946,-0.014446301,-0.13896646,0.04477996,0.59496045,0.2740375,-0.12223848,0.04847279,0.6796994,0.23357624,0.3284694,0.019374823,-0.2728071,0.32694045,0.23482203,0.12885356,-0.35005918 +0.21042447,-0.28308043,0.5876528,-0.77836055,0.06646426,-0.3438052,-0.5578936,-0.9029007,-0.48504955,0.10043689,-0.30648193,1.9002044,-0.78774464,0.070269786,-0.5333088,-0.3660188,-0.43299478 +0.026745128,-0.20261158,-0.004862975,1.6777347,0.4018888,0.50017697,-0.2890389,-0.2839326,0.4364149,0.27659738,-0.19862995,-0.053295493,-0.17443594,0.26658073,0.089017265,-0.21410109,0.06701651 +0.02190481,-0.26434493,-0.061992243,1.3541591,0.48021045,0.6272975,0.0052000256,-0.0950777,0.5870886,0.51681495,-0.15597266,-0.3920707,-0.19206406,0.3617071,0.19398814,0.25510293,0.26438037 +0.025462072,-0.008466001,0.050510857,0.42141518,0.001391532,0.10720634,-0.03688013,-0.24180497,-0.08960498,-0.14906245,0.24361327,-0.20414312,-0.25273567,-0.09254789,0.06312906,-0.23362792,-0.028018087 +-0.42028853,-0.2873408,-0.6602173,0.6467077,-0.53081876,0.955516,0.20319805,-0.5335686,0.22683376,-0.5081548,0.3996564,-0.46862856,-0.29499313,0.20292646,0.2285384,-0.6853649,-0.16056615 +0.16768509,1.2960066,0.0276353,0.08994957,0.4063115,0.19643116,0.18038018,-0.44767198,0.58235306,0.14470166,0.3848203,0.103428714,0.8901721,0.50929195,0.010251962,-0.33359897,0.06569432 +0.09291535,-0.2759867,0.024664301,0.37383184,0.2943541,0.47065666,-0.08617183,-0.018593375,0.5823367,-0.09629892,0.07410352,-0.026565533,-0.37956232,0.4253901,-0.02495866,0.10933377,0.22008961 +-0.4583193,-0.33604428,-1.0550019,-0.20615563,-0.3151688,-0.12834044,-0.4641112,-0.93457013,-0.20090356,-1.5349898,-1.0690287,-0.3016871,-0.3835206,-1.0109005,-0.37126476,-0.7648197,0.17150195 +-0.11260414,-0.046453748,0.19145545,0.2233216,0.16110006,-0.12349724,-0.11004738,0.20432505,-0.33476505,-0.09891856,-0.23509619,-0.106730856,0.070254035,0.54752004,0.068954326,-0.29180732,-0.016565707 +0.12536876,-0.043493394,0.08820248,0.052670896,0.21820779,0.1791917,0.011914172,0.053274807,0.1133428,0.20303692,-0.0200866,0.031532746,0.111118585,0.09518316,-0.12687339,0.03598663,-0.035657916 +-0.04152439,-0.041393667,0.13453959,0.09800847,0.07107943,0.06261491,-0.011184653,0.27315876,-0.014121362,0.14929032,-0.24583995,-0.19306222,0.06133665,0.01505737,-0.23156036,-0.0021244623,-0.017998766 +-0.03108482,-0.17997107,0.048869327,0.029581893,0.15056843,0.019646501,0.123828806,-0.011471755,0.14187981,-0.20777383,-0.29963812,-0.088683486,0.13555528,-0.12481592,0.170413,-0.21962504,0.11704219 +1.1046394,0.26038805,0.39957067,0.022521965,0.92256695,0.96253586,0.18505895,0.15754902,0.29456726,-1.6705045,-1.2767413,0.44024098,0.015573955,0.5343449,-0.34380218,0.11940882,0.19346638 +0.33933976,0.10881874,-0.16994946,0.29069242,0.044253595,0.3048114,-0.15613048,-0.06966553,0.14913046,-0.08932408,0.2409451,-0.099434,0.0014413248,-0.063215435,-0.14174154,-0.07509902,-0.057259165 +0.21531159,0.107383914,0.20768055,0.008457584,0.10623124,-0.101608954,0.22780564,0.31153053,-0.005890691,-0.21482724,0.20785065,-0.19377287,-0.13479705,-0.21937163,0.16480017,-0.07372964,-0.07794093 +-0.10500377,-0.121241406,-0.022252958,0.6467003,0.2848176,0.7840035,-0.2156779,-0.10011831,0.299088,0.082322225,-0.38126665,0.043986294,-0.06826107,-0.16186962,0.1678696,-0.13439928,-0.13367227 +1.2830887,0.64039606,0.5256914,0.2751762,0.53508043,0.22108476,0.15385097,-0.19524805,-0.014396582,-0.2537283,-0.14592066,0.5575882,0.10834286,0.27619496,-1.817062,-0.23647708,0.21564439 +0.03882984,-0.1627279,-1.1582859,-0.014592683,0.955997,0.035888307,0.56657225,0.41227663,0.2404532,-0.75705594,-1.169377,-1.1579063,-0.26760402,1.0579411,0.32520226,-0.38534355,-0.37577078 +0.20238712,-0.39888307,0.25301835,0.66187525,0.48692453,0.518415,-0.42229587,-0.18823789,0.33892527,0.18494596,0.04418822,-0.40517363,-0.111791976,-0.1790867,-0.10902179,-1.2703238,-0.39069036 +0.23545025,0.44688943,-0.49049628,0.14521852,0.25430238,0.2204244,-0.1328912,0.16863614,0.72193116,0.3215351,0.0216106,0.010346196,-0.27047756,0.9989701,-0.36635938,0.02377514,0.22078256 +-0.12199922,-0.16717951,0.3537954,0.56149554,0.3197969,0.951498,-0.61518484,-0.83503145,0.19056219,0.3549648,0.16060074,-0.2049345,-0.04665989,-0.28492716,0.5347517,-0.85002923,-0.36309218 +0.8989701,0.18583487,0.045605585,-0.033780843,0.5757144,0.17549837,0.035086963,-0.4172992,0.2915417,0.7952995,0.08885194,0.27683768,-0.10355695,-0.20471139,-0.048775885,0.16723429,0.47550967 +-0.018102292,0.13852338,-0.034697033,0.40235937,0.14495695,0.008834499,-0.06685962,0.201032,0.2820604,-0.007999264,0.050848216,0.06700388,-0.14566591,-0.0862087,0.23360617,0.10390199,0.07126303 +-0.265123,-0.18995216,-0.41977534,0.106112175,-0.117181964,-0.0234956,-0.5023546,-0.6063829,-0.0024964022,0.5326014,0.030130344,-0.38123482,-0.06793102,-0.34272093,0.39220527,-0.21050265,0.09066551 +0.24987684,-0.21476288,0.02836914,-0.025139697,0.04153048,-0.072976805,-0.114116244,0.048330724,0.01607012,0.27049264,-0.109003045,-0.08757064,-0.10971632,0.2899399,0.6160322,0.25963324,0.14876777 +-0.102430366,-0.0065221996,-0.19763681,0.4642179,0.2021698,0.45353925,-0.10957457,0.034516312,0.14427438,0.4722207,-0.0016055468,0.061225656,0.16870892,0.049313873,-0.31603083,0.014568908,0.3463002 +0.01841038,-0.21259926,-0.2960415,0.007150369,0.07641649,0.15867302,-0.17594914,-0.43639138,-0.20416696,0.35328126,0.07841987,0.09890047,-0.22269426,0.12217183,0.57113934,-0.22237422,0.17356692 +0.16729876,0.12377213,0.2192287,0.18969402,0.22072856,0.32321665,-0.0051252837,0.10875423,0.24444811,0.7679258,0.19205825,0.097616956,0.2815724,0.26087612,-0.17813167,0.3141165,0.21958467 +0.20066376,-0.1830786,0.19199373,0.10351854,0.21321905,0.06906284,0.13920613,-0.15821306,0.3811324,0.21725926,0.09671687,0.049715668,-0.062029246,0.42842737,1.7450396,-0.11171581,-0.08514456 +-0.08111897,-0.1192394,-0.11361428,0.3922883,0.13872132,0.026155304,0.023205088,0.020451117,0.17677175,-0.07216023,-0.014063418,-0.10595636,-0.3468473,-0.021183701,-0.012448418,-0.036162052,0.049515106 +0.42647284,-0.35414302,-0.005089019,1.6796851,0.3539092,0.43010446,-0.35014644,-0.100181706,0.67757326,-0.4187147,-0.12610294,0.31069908,-0.13006294,0.26557982,0.25018007,0.06411021,-0.111464754 +0.53288645,0.09949647,0.8490831,0.39932638,0.42277905,0.43364576,-0.25408033,0.1844638,0.52215177,-0.30832487,-0.17778584,-1.0724338,0.0355413,0.5357684,0.302122,0.20729607,-0.3657071 +0.7806082,-0.20837069,-0.02230863,0.1002315,0.77908665,0.45589814,-0.07233122,0.40747902,0.22552298,0.06784146,-0.27471074,0.03554135,-0.247299,1.1359935,0.15608963,0.023545612,-0.21963196 +-0.10826188,-0.33287176,0.18319082,0.83652496,0.0868106,0.6391632,-0.1807645,-0.30943155,-0.04671888,0.47093993,-0.0595703,-0.043062456,-0.16327259,0.09058729,0.032267235,0.06541367,0.3164201 +0.24649595,0.07831057,-0.46825543,-0.12074793,0.57300746,0.54936314,-0.1582807,0.06744266,0.8271362,0.26619023,-0.034326483,1.686154,-0.24785864,0.25126562,0.45014894,-0.0117717795,0.16142647 +0.36317217,-0.291171,0.23623301,0.16780396,0.29299846,0.22829567,0.020825407,0.10221812,0.2481745,0.03234298,0.46881557,0.12528224,-0.21706568,0.34449908,0.3545074,0.0005050672,0.053799085 +0.514396,0.065358974,0.05344757,-0.26378754,0.87316287,1.2838005,-0.17891608,0.05846497,0.5283266,0.043005712,0.017873399,0.34309718,-0.04168984,0.09556022,0.19733924,-0.06603611,-0.24095401 +-0.08273539,-0.08073048,-0.009884664,0.54340154,0.30767915,0.22164764,0.18398896,-0.061662316,0.10537245,0.085978664,-0.031601995,0.16824336,-0.058899224,-0.041226722,0.016514078,0.011080159,-0.23040494 +-0.18158743,0.38051996,0.19438154,0.2670475,0.255327,-0.000798235,0.31701362,-0.109907895,0.103318304,0.19444261,0.033280022,0.35491574,0.4178992,0.12876688,-1.4609095,0.12216201,0.6268618 +0.20195545,-0.16169666,0.006879241,1.9545504,0.45353395,0.5810306,-0.25394836,-0.34399614,0.4179108,0.25404847,-0.17887586,-0.18367131,-0.15452224,0.29338643,0.033446908,-0.30328006,0.044370335 +0.0129572,0.02313222,0.004425154,0.30296066,0.28885478,0.23816834,0.01951113,0.057090174,0.16690561,0.06824185,-0.0710932,0.042411316,-0.04280003,0.18448293,-0.06579439,0.05607088,-0.004433777 +0.59049964,-0.03618251,-0.21160705,0.12514393,0.38060716,-0.034903325,-0.25612605,-0.03440774,0.35461202,0.371273,0.19018054,0.29552248,0.12589587,0.23269682,-0.24650553,0.27085605,-0.08019412 +0.5006291,-0.08474585,-0.36901268,0.36402634,0.21539849,0.22297728,-0.27371007,-0.35304135,0.29498345,0.6233559,0.35724354,-0.059617687,0.17558892,-0.23361681,0.26120263,-0.45904332,0.24391137 +0.38729626,-0.48042554,-0.11848888,0.2533609,0.17656128,1.030576,-0.1533603,-0.5359508,0.30697125,0.146758,0.7738399,-0.7546848,-0.075486116,-1.0449575,-0.0060414993,-0.85806644,-0.908071 +-0.12390338,-0.201781,-0.2862207,-0.03624222,-0.2873067,0.11209632,-0.5663571,-0.34819114,-0.20922849,0.97074246,0.2172916,-0.49191186,-0.017867742,0.116292775,0.8917478,0.038868997,0.2863716 +0.23583491,0.1623932,0.08089067,0.5617167,0.37132046,1.3059913,-0.33132258,0.8599295,-0.08985387,0.30194196,0.34895435,-0.5800188,0.21554051,0.29967982,0.45103407,0.023368191,-0.043714534 +0.14809579,0.008575591,0.17554629,0.35248387,0.57933664,0.20963702,-0.23668279,-0.034499012,0.4181444,0.050958984,0.17905599,-0.012176053,-0.12566322,0.3854237,0.28491452,0.06216214,-0.12350429 +0.025574934,0.037582394,0.0021679508,0.13823467,0.28970677,0.019320294,-0.20015754,-0.036009137,0.1892321,0.28142834,0.082281694,0.053651948,0.10081714,0.23128302,0.40550745,-0.09866771,0.12251897 +0.3664488,-0.10884084,-0.060761325,1.1714542,0.49425608,0.41971964,0.033112332,0.21388662,0.4943126,0.18996756,-0.015586299,-0.42571348,-0.21226488,0.37100288,-0.16377744,0.18900898,0.2593789 +0.50514126,-0.12454969,-0.15055619,0.3369831,-0.037024338,0.21187203,-0.19852601,-0.13619837,0.38869652,0.49563184,-0.27667457,1.0245495,-0.24277842,-0.028099174,-0.26242504,-0.38046372,0.15613031 +0.24793847,0.049065433,-0.44458598,0.29271653,-0.16696292,0.19477874,-0.42874876,-0.55745065,0.28844905,0.41027611,0.48368686,-0.0807434,-0.26178885,-0.3212862,0.6222761,-0.1504606,0.100122 +0.19528589,0.0893027,-0.44260606,0.5139895,0.20489007,0.49439916,-0.18224858,0.13974418,0.7038919,0.43336558,-0.259231,-0.1664439,-0.16465987,0.072779745,0.2899758,-0.0721464,-0.19877206 +0.1384931,-0.024317227,0.11256448,0.7082889,-0.36030936,1.1267577,-0.42882696,-0.42870218,-0.3334203,0.22207105,-0.4055309,-0.32437664,-0.1674458,-0.058887113,-0.70072186,-0.8527224,0.79170835 +0.33702898,-0.24514261,-0.21187441,0.6931511,-0.14552124,0.8669965,-0.12746347,-0.4265351,-0.14731093,0.3072209,0.18728276,-0.0414413,-0.30587626,0.34848067,0.024268767,0.0031398283,0.2942678 +0.053503506,0.11133394,0.012601046,0.1663381,-0.049230717,0.19116375,0.16533548,-0.07783745,0.2816681,0.13319854,0.09571505,0.078090996,0.15152504,0.011035946,0.15565285,0.18140353,0.024328025 +0.2729981,0.13056517,-0.14110489,0.29402226,0.43672425,0.108487986,2.0400877,0.21783942,0.27293298,-0.48668525,0.41133028,0.0853581,0.05760518,0.2871931,0.109204955,0.3557209,0.23320664 +0.12104143,-0.27998078,-0.21859848,-0.12463922,-0.26161107,-0.027138548,-0.00133132,-0.48371148,-0.22623141,0.0032605738,-0.108027026,0.39705893,-0.15749542,-0.0014121707,-0.29505792,-0.3647061,0.03814067 +0.13097012,0.14162499,-0.06505886,0.13019767,0.22823104,0.11003614,-0.0128753595,0.16882624,0.17606167,0.012422873,0.08165843,-0.028477725,0.059958383,-0.07592833,-0.085841976,0.0036442874,0.05866864 +0.21098185,0.047699574,0.031651583,0.06865714,0.21134113,-0.102693684,0.19993147,0.0136717325,0.0833101,0.17631803,0.16873266,0.16484247,0.23142609,0.08564466,-0.15867202,0.03015788,0.2821037 +0.04986907,-0.099564575,-0.11629978,0.18683492,0.123827085,0.0965234,-0.09856939,-0.030299025,0.075259335,0.5064258,0.115392,-0.09648444,-0.12874965,0.34544337,0.097995825,-0.003885887,-0.17981355 +-0.1016372,-0.09995243,-0.30748373,-0.19134884,0.2427841,0.1575526,-0.4234098,-0.08100462,0.27048147,-0.0046701236,-0.46638966,0.8134817,-0.30209666,0.014061641,-0.19632593,-0.28696486,0.07749552 +0.9385091,-0.035262283,0.05462613,0.14051203,0.35008255,0.4739867,-0.052103624,0.086261034,0.1640723,-0.0126950275,-0.50984323,0.016822655,-0.29041636,1.0456877,0.37896043,0.49524626,0.02210485 +0.5380257,0.23259576,-0.09549348,0.09580267,0.11457855,-0.033569116,0.16744123,-0.4028097,0.22990699,-0.3424447,-0.3607746,0.12064802,-0.37440166,0.2896046,0.0688098,0.3111373,-0.2973918 +0.48933095,0.024164023,0.04079185,0.3736309,0.9871971,0.08790101,-0.12735479,-0.13470735,0.5571302,0.43656564,0.30778494,0.08317213,-0.5042928,0.6652252,0.07082435,-0.40899935,0.037837766 +0.15862869,0.58755094,0.042579714,0.35268766,0.20216347,0.16741051,-0.2245622,-0.009790132,0.38464022,0.031742856,-0.019061994,0.3653096,0.52871954,0.20198978,0.20358746,0.17339607,0.27137 +0.47325572,0.02078191,0.3123741,0.30646566,0.4209687,0.044836476,0.4050144,0.028689737,0.40754575,0.299468,0.1567977,0.4544847,-0.14703794,0.47277245,0.37281367,-0.100434594,-0.039427623 +-0.2783526,-0.12806702,-0.10248536,0.577539,-0.18199311,0.40197837,-0.5761354,-0.13957879,-0.10263733,0.72280633,-0.062102694,-0.38722494,0.10671902,-0.17284572,0.8023997,0.17673364,0.14931658 +0.14107737,-0.10827591,-0.07337774,0.33356544,0.4120696,0.016584937,-0.24361557,0.031394556,0.49188372,0.31518742,0.03548957,-0.3862627,0.2791648,0.041755456,-0.40225393,-0.22006494,0.12074633 +0.24792773,0.025364034,0.09007147,-0.02628694,0.06766321,0.05985299,0.09656025,0.027767634,0.1464743,0.14048141,-0.02158124,0.12414964,0.1720929,0.18677524,0.24611622,0.0061213216,0.09782679 +0.18596302,0.06851676,-0.44982946,0.17433079,0.019254528,0.46960196,-0.36989394,-0.45555094,0.068717614,0.51634854,-0.307551,-0.39564338,0.46552014,-0.43756583,-0.07829572,-0.37550098,0.06659013 +0.17171781,0.09731738,0.31979564,0.25613847,0.39953542,0.22360349,-0.33249357,-0.393581,0.38394922,0.53215414,0.1645553,-0.1715659,-0.07502447,0.14182462,0.20940396,0.11418233,0.24576977 +0.25269943,-0.05315999,0.07155005,0.27115145,0.08195961,0.25865987,0.12381012,0.1355737,0.04289128,0.11795992,0.21211971,0.035258744,0.1918603,0.097125396,-0.3529363,0.24029769,-0.07724371 +0.09973556,-0.01070572,-0.029981853,0.30649817,0.125766,0.16547908,-0.056179702,-0.038938493,0.15503797,-0.0080380365,-0.08988278,-0.06987036,-0.0011617149,0.090674356,0.045745917,-0.012135699,-0.0038955284 +0.4062973,0.017118754,0.00500081,1.1656642,0.25025004,0.43359548,-0.17074667,-0.09138563,0.28256208,0.102149196,0.07133118,-0.1968051,-0.021003027,0.17029177,-0.14135869,-0.16470294,0.06772786 +0.27300692,0.15684031,0.098200485,0.20504892,0.6133249,1.0937945,0.043649532,0.41775426,0.8239744,0.38937643,0.093498364,0.072691515,-0.06864103,0.13724849,0.11088805,-0.06702449,-0.031666357 +0.09815427,0.05122943,-0.053614296,-0.029342083,0.13755736,0.14020467,0.12981041,0.058281545,0.14958942,0.11544612,0.024591453,0.38845092,0.100266315,0.30529246,0.25926402,-0.03512007,0.23229729 +0.5997014,0.37810716,-0.11031931,0.3344267,0.3391591,0.50311464,-0.09443391,-0.38020808,0.19318719,0.18458962,-0.48126075,0.39587802,-0.14667487,0.313054,0.5876821,-0.095478356,-0.3646079 +-0.075387456,0.09485956,-0.085464455,0.1442823,0.3998118,0.19916998,0.025905538,0.3347929,0.3541837,0.044258412,-0.05804322,0.049752686,-0.03106486,0.16914622,-0.0280608,-0.007547266,0.11378289 +0.18860945,-0.30868864,0.0684739,0.2511809,0.43044347,0.19909884,-0.10698051,0.07275259,0.094741315,0.25394356,0.5522448,0.0077637304,-0.23196726,0.40315583,-0.11623991,0.24471162,-0.07630447 +0.5086647,-0.29808375,0.15556984,0.67853075,0.19220997,0.53934485,0.02483727,0.15010506,-0.045240425,-0.20587471,-0.28653437,0.07693937,-0.15753202,0.030211741,0.2463882,-0.11422199,-0.21299621 +0.10730583,-0.0668222,0.0026999738,0.17784835,0.11947827,0.11070226,-0.017046774,-0.25784382,0.17719577,-0.0018231858,-0.059591003,-0.0664947,-0.26054066,0.0876902,0.9676788,-0.08787605,-0.003770014 +0.34792122,-0.5157812,0.1555206,0.8821444,0.18189806,0.7101995,-0.6938317,-0.7132959,-0.58330315,0.44416797,-0.33141935,-0.18003623,-0.5819473,0.42486057,0.28061014,0.08688057,0.17309402 +0.8238612,-0.53087616,-0.5094672,0.6309196,-0.35293984,0.24929127,-0.09750219,-0.66248095,-0.44566447,-0.6795292,-0.07814557,0.4038324,-0.18462956,0.6271404,-0.6136126,-0.030967047,0.77335006 +-0.037942443,-0.06648946,-0.29055265,0.87893915,0.07487527,0.56116253,-0.30163488,-0.23047653,0.14464845,0.61338305,-0.120401815,-0.031315893,-0.1627129,0.3381956,0.1872041,-0.20611025,-0.16152808 +-0.5446479,0.046889395,-0.13572064,0.25346047,0.045767576,0.6249556,-0.26572064,-0.059326034,-0.14106768,0.29107228,-0.46945408,-0.3259908,0.29766172,0.09236592,-0.08791333,-0.19978164,0.5636222 +-0.10888865,-0.038817756,0.015919525,0.671136,0.3897806,1.0283182,-0.17357841,-0.06429273,0.40754485,0.20413819,-0.30969635,0.032044362,0.0020403266,-0.08543046,0.039598584,-0.16272749,0.041504566 +-0.043766644,0.2954325,-0.19151038,-0.05758527,0.19884606,0.49785584,-0.40102282,-0.25369698,0.31468916,0.18745954,-0.026286501,-0.24134989,0.4800404,0.26813978,-0.20397888,-0.185956,0.24564119 +-0.26330256,-0.01954373,0.028642261,0.17685907,0.67958367,0.19195405,-0.37164003,0.114091836,0.25112912,0.31252572,0.12523413,-0.2368296,0.24503836,0.3278801,0.26048025,0.24241766,0.15505907 +0.10312005,-0.07045116,-0.07899279,0.9556715,0.042630773,0.66252834,-0.6476261,-0.122164994,0.2770884,0.4005919,-0.013537689,-0.13909361,-0.10560209,-0.052021302,0.051796872,-0.09120059,0.107276015 +0.21274726,0.3373562,0.32193044,0.2793203,0.33507228,0.21584006,0.22278686,0.38278538,0.42276248,-0.33890203,-0.0020450682,0.15074554,0.096253805,0.07337397,-0.53997165,0.28277847,0.27639052 +0.13298026,-0.7116949,0.06916648,0.34939036,0.5045261,0.29701558,-0.20974305,0.02257462,0.5223675,0.32762834,-0.0062853815,-0.041611347,-0.5134453,0.4109264,-0.21388017,0.08875491,-0.016075911 +-0.054018505,-0.0852959,0.013411603,1.376155,0.38446212,0.48423955,-0.20686573,-0.26141542,0.38984987,0.36766168,-0.1827824,-0.06489033,-0.057829805,0.3942068,0.027842402,-0.1925297,0.09776632 +-0.478187,-0.04555616,-0.067848556,-0.2054606,0.003814341,-0.2595223,0.05727895,0.73902035,-0.435287,0.022353932,0.007828911,-0.16546895,-0.26194575,0.41362178,-0.2872575,-0.38183296,-0.04625568 +0.16786908,-0.13587995,-0.09313734,0.110547565,-0.039960634,0.074214034,-0.16035761,-0.24698475,0.0040258532,0.29476804,0.008279579,0.19957462,0.05230258,0.084791854,0.09822719,-0.1952249,0.16155213 +0.26883313,0.06727012,0.28748944,0.21932414,0.2966912,0.20538299,-0.26430598,-0.12438942,0.39695984,-0.11874433,0.67316365,0.2312512,-0.052085247,0.8994306,0.55099607,-0.3777297,0.10171325 +0.010125727,-0.012116961,-0.10444439,0.113141306,0.13368721,0.17751308,-0.13109115,-0.10979098,0.15574536,0.49673718,-0.29206255,-0.31889635,0.04722108,0.17452425,0.43749708,-0.073789485,-0.076443836 +0.27588755,0.14397311,-0.01807959,0.26279593,0.10501947,0.35523826,-0.17638455,0.28573638,0.31985825,0.3368762,0.20402582,-0.3534004,0.135589,0.47808135,0.0032342875,0.19339678,-0.1834714 +0.2591318,-0.15613009,0.47264966,0.36513594,0.3850584,1.1234529,0.0046612457,-0.1285788,0.30933383,-0.6259014,-0.2996607,0.03750546,-0.069183715,0.46360314,-0.06937357,-0.396297,-0.25245044 +0.18566604,0.10475096,-0.05035671,0.11786552,0.49290842,0.25016552,0.04412808,0.4514754,0.18652779,0.35904357,0.35390577,0.3744699,-0.06188877,0.23372667,-0.54073143,0.41232574,0.38088793 +0.28851405,-0.301712,-0.1884503,0.55581176,0.45401508,0.3820335,-0.3373646,-0.15176602,0.23313485,0.24171014,0.124432124,0.12092795,-0.12909096,0.4926289,-0.37650746,0.28161258,0.41198486 +-0.056195643,-0.2268289,0.16581397,-0.109846406,-0.15487829,-0.03638672,-0.19315481,-0.23061992,-0.1875869,-0.12260878,-0.1455428,0.27221173,-0.20212543,-0.15727124,-0.15023369,-0.19880639,-0.021481818 +0.21257184,0.25564563,-0.052369844,0.23472615,0.40680102,0.17076145,0.16387461,0.03945224,0.28550017,0.17237426,0.12754546,0.7221333,0.1757176,0.38747907,0.32150412,0.15785468,0.1765372 +0.046118733,0.6267052,-0.17773227,0.68523324,0.77157533,-0.21143816,0.08013975,-0.3396194,0.19483164,0.48232198,0.23582184,-0.63496387,0.78102076,0.44191828,0.4501654,0.070591815,-0.84339446 +0.43805313,0.086502396,0.066120885,-0.45045,0.2836672,0.5180144,0.0076018907,-0.4817891,0.1649984,0.9834046,-0.9012058,0.24395831,-0.2595617,0.51900953,0.75840765,0.09129968,-0.11073327 +-0.65464157,0.07148565,-0.08642401,0.090881586,0.031996176,0.114855,-0.13671842,-0.07255909,0.10168637,0.11461788,-0.39767513,0.6879159,-0.04271924,-0.16592537,-0.31397372,-0.1749946,0.24311191 +0.48636958,0.1993738,0.6297913,0.254943,0.042474072,0.2012702,0.54687864,-0.74731505,0.33389226,0.39124116,0.5947985,0.1612344,0.2097849,0.25401205,0.41415027,0.33402312,0.3375691 +0.11307998,-0.20541565,0.1086122,-0.62565184,0.6363009,-0.22507742,-0.70486057,-0.04983643,0.16862853,0.5085015,-0.2909755,0.37546378,0.27600878,0.3071178,-0.12238018,0.06767226,0.5692729 +-0.17933649,-0.036612865,0.40547815,0.4027335,0.30625224,0.34924048,0.05045947,0.5197199,0.48663175,0.18212281,0.3781805,-0.5322864,-0.0353214,0.0510062,0.41281265,-0.58227915,0.09168604 +0.015650257,-0.22211927,-0.5118018,0.29790133,0.002909343,0.43756467,-0.26741004,-0.033199903,0.23216115,0.3685712,-0.012625374,0.12643002,-0.29679772,-0.24752852,-0.12956744,-0.46547395,-0.3494582 +0.36192608,-0.3242065,0.5809565,1.1798191,0.4142271,0.81578153,-0.225799,0.13016531,0.6222182,0.4941348,0.34928998,-0.110679656,-0.40041947,0.29919145,0.03891496,0.23406233,0.3610792 +0.27290702,-1.11692,0.19116434,-0.13067004,-0.030385958,0.102339126,0.11155801,-0.46456522,0.09213455,-0.2576147,-0.54788333,-0.4330418,0.09131529,0.048888076,-0.36772653,-1.1564479,0.012632436 +0.1436657,-0.08456,0.06258556,0.19068651,0.30712974,0.10707819,-0.15226623,0.06686507,0.089714825,0.01658709,0.077262305,-0.00977364,-0.14086427,0.063614696,0.15208146,0.11030935,-0.0132363355 +0.15848531,0.032049008,-0.066643216,0.68271595,-0.16245553,0.12541372,-0.059903905,0.1923379,-0.12836522,0.0070899026,0.24077843,0.5976661,0.5580231,0.12502913,0.05857596,0.05869533,0.26557714 +0.4493917,0.56596756,-0.16264081,0.26066786,0.21299776,-0.44005668,-0.40799224,-0.44376177,0.9512159,-0.3168759,0.12354684,-0.0020529018,0.75693965,0.73613054,0.39563572,-0.44622698,0.34338528 +-0.04949724,-0.048129138,-0.22436175,0.1696077,0.01800333,-0.019607937,-0.4246894,0.119268686,0.43501052,0.15420932,-0.30230784,0.99905616,-0.2428988,-0.1350051,-0.30090958,-0.03413576,0.14885658 +0.039927498,0.47783408,-0.053615186,0.089320675,0.05766854,0.07272033,0.043931168,-0.013537371,0.09038766,0.018360104,0.0013790567,0.2586582,0.034806192,0.0017883716,-0.8319966,0.005833175,0.23804934 +-0.2849343,-0.47212195,-0.45130265,0.11396612,0.63170576,0.23959057,-0.48635635,-0.23717737,0.5575724,0.3558691,-0.33087543,-0.4326975,-0.08080236,-0.36708236,0.29494616,-0.39417043,0.22996616 +-0.010471341,0.08594257,-0.18123525,0.4394695,0.11891057,0.34860986,-0.49047494,0.026832247,-0.058288928,0.16374867,0.35139298,-0.24314635,-0.03547794,0.76457113,0.4566051,0.2209723,-0.066850714 +0.20401092,-0.11317038,-0.03714242,-4.0031242e-05,0.2565088,0.079206266,-0.31519568,-0.26748076,0.3860745,0.294829,0.21811491,-0.14059362,-0.15597194,0.65257746,0.10554733,-0.24910657,-0.064433224 +0.56991434,-0.36473158,-0.32051674,-0.23518468,0.7862737,-0.01966516,0.13602594,-0.3020425,0.56630003,-0.29342237,-1.3669913,0.41733742,0.07720894,0.5511676,-0.108292565,-0.8977305,-0.18410984 +0.23411827,-0.17006482,-0.093052275,0.50700426,0.3857506,0.6272457,-0.05399086,0.25939605,0.4240006,0.07098263,0.28703657,-0.20122558,0.16018938,0.63813484,-0.098207496,0.1503708,0.19925238 +0.22431478,0.08315095,-0.08420642,0.5286932,0.26532122,0.387484,-0.19031835,-0.26263613,0.35599145,0.090499364,0.42672792,-0.43207955,0.18281408,0.1697501,0.23779853,-0.095786236,-0.039349176 +-0.21220379,0.14109305,-0.65916246,-0.28548512,-0.20795931,0.22045074,-0.35749978,-0.4662157,0.33453757,0.0027337712,0.3678711,-0.090842575,-0.5229692,0.73834074,0.3434182,-0.89497167,0.045970727 +0.113256395,-0.32834876,0.042677697,0.5522181,0.82480973,0.54248136,0.036107708,0.16128424,0.24746142,-0.65847766,-0.33903572,0.23761547,-0.27380145,0.64064187,0.06741446,0.16279884,0.05623192 +0.5744637,-0.03190018,-0.048114825,0.71446455,0.2735532,0.6817533,-0.45804358,-0.25064653,0.55829036,0.44795263,0.36652678,-0.1739626,-0.27686986,0.30599833,0.20831244,0.052181207,-0.16372617 +-0.4859557,0.18630867,-0.35083887,1.1805198,-0.39794707,0.47320107,-0.60028815,-0.51362,0.4370162,0.100159876,0.166114,-0.1752126,0.45450336,0.7080854,-0.654255,-0.63161767,0.20099202 +0.0477936,-0.01705214,-0.2035044,0.81632394,0.30557778,0.08487898,-0.07600289,-0.035435706,0.34900033,0.34886047,0.01122351,0.060047626,-0.050775874,0.2218985,0.19782965,0.20930843,0.14379002 +-0.005958458,0.049894556,0.077112734,0.10366819,0.28739303,0.13595863,0.07176641,0.04205513,0.11567667,-0.019494008,-0.09333044,0.06230603,0.071544155,-0.03507892,-0.07099335,-0.11596193,-0.0824322 +-0.06400747,0.041580793,0.12809902,-0.036046248,0.31934217,0.15730564,-0.07982255,-0.1761556,0.11595551,0.11193536,0.08860448,0.11766432,0.1767133,0.10391249,-0.09929874,-0.14040874,-0.05875593 +-0.0029746576,0.2602098,0.05225452,0.18032996,0.20253108,0.29292944,-0.2492195,0.1911598,0.22929549,0.3327674,0.0048188632,-0.19240955,0.13853921,0.10446028,-0.22425464,0.14020348,-0.04152197 +0.636312,-0.14523908,0.027898464,-0.023560788,0.27283064,0.1567709,-0.005483347,0.3301426,0.716058,0.41587013,-0.24740542,-0.11663058,-0.2685004,0.5225377,-0.24005467,0.10058396,0.096168414 +0.068827085,-0.0007924639,-0.36886305,0.46912128,0.2921047,0.5048955,-0.35482502,0.13386212,0.16929518,0.46053723,0.15138863,-0.19025083,0.060651194,0.15964578,0.18708737,0.114628784,-0.096127406 +0.06418447,-0.050707255,-0.074438855,0.21247202,0.2833625,0.39394242,-0.07473229,-0.04651714,0.24430846,0.17844205,0.0174596,0.11382903,-0.21452494,0.1884873,0.52677774,0.09336956,-0.113720275 +0.15271738,0.14803511,-0.12947969,0.07999348,0.09301402,0.08240274,0.18898463,0.02303591,0.28420573,0.2691387,0.056222115,0.32115558,-0.009890119,0.1578672,0.0040450445,-0.026489938,0.29867893 +0.09065078,0.075018734,-0.20026202,0.6818337,0.32521802,0.55835855,-0.32525164,-0.3729829,0.5361684,0.4548252,0.22563304,-0.23792604,-0.0067295954,0.51080865,0.2382058,-0.16336055,-0.2623685 +-0.07622759,0.06803441,-0.3277594,0.33679688,0.36658326,-0.12502591,-0.015642159,0.032672208,0.029872933,-0.19807346,-0.09545331,0.12515157,-0.18025613,0.015102158,0.33084616,0.11833463,0.09363575 +0.06615933,0.1424394,-0.18640284,0.019652689,0.7809337,0.21030813,-0.73720604,-0.18322282,0.4709761,0.35910082,0.32386106,0.22686647,-0.3396548,0.6100302,0.07654865,0.010802149,0.09841363 +0.17861904,-0.07310667,-0.024775622,0.98917013,0.1773474,0.30146357,-0.12576449,-0.15421203,0.10009186,0.03201761,0.008181207,-0.013885889,-0.041274644,0.0316452,0.039568115,-0.12763104,-0.07024556 +-0.009308754,-0.13055976,0.22327489,0.17307684,0.0631459,0.123189434,-0.11392055,-0.24090324,0.09854802,-0.013664007,-0.12492662,-0.17711903,0.059045404,0.14323635,0.94829696,-0.24300076,-0.090120904 +0.6903214,0.19954966,-0.13867733,0.25885442,0.62828016,0.4506399,-0.31683776,0.25113,0.80175334,-0.28071964,0.3787795,0.22468087,-0.103478484,0.24034762,0.36306393,0.28720793,-0.22879794 +-0.10535651,0.17809223,-0.29640177,0.68082535,0.3754526,-0.38708127,-0.23185849,-0.11398927,0.68168455,0.2816141,-0.0041326126,-0.0922282,0.29505208,0.42171898,0.20893207,-0.08711891,-0.27772626 +0.16588016,-0.03294243,-0.03648779,0.4844254,0.41421008,0.22309874,-0.3019883,-0.11931906,0.50531894,0.18777779,0.08680912,-0.08785827,0.13842894,0.13483857,0.24988559,0.010147773,-0.03279411 +0.23898332,0.0029080429,0.13509327,0.44342116,0.123583056,0.74685675,-0.23526426,-0.08262854,0.10945181,-0.029653968,0.27354652,-0.20136473,-0.03393336,0.31382954,0.00071609573,0.18527597,-0.059836883 +0.69192,0.1930329,0.14900234,1.093824,-0.17920826,0.38651514,-0.07826642,-0.5542957,0.1746688,-0.26887423,-0.16727407,-0.19187556,0.30255526,0.08870119,0.14399076,-0.34636888,-0.50509346 +0.030078,-0.009502883,-0.044469044,0.40697214,0.13011497,0.1608024,-0.11536994,-0.1309625,0.31639102,-0.02372685,0.009521445,-0.14260975,0.10935824,0.008010883,0.009543287,0.03879422,-0.044891715 +0.59148175,-0.4633608,0.73763275,0.24813055,-0.2710399,0.53934,-0.069478355,0.28969616,0.344073,0.7193798,-0.71222997,-0.05511565,-0.50631064,0.763362,0.5279538,-0.82478905,-0.75180274 +-0.7247369,-0.07455371,-0.12659164,0.06445352,0.1783651,-0.12499717,-0.21137989,-0.73027486,0.1848657,0.6098902,-0.21760544,-0.3409504,0.13256745,-1.3646842,0.6847436,-0.17697293,0.025461094 +0.51213086,-0.12568827,-0.3228507,0.012181705,0.096854284,-0.035554655,-0.23913029,0.013127128,0.2395867,0.063966416,0.5078759,-0.47423238,0.009622825,0.9439779,0.45812532,-1.0978581,-0.6295797 +0.38646466,0.18225579,0.08513154,0.3014414,0.3141765,0.20158087,-0.032841977,-0.04362808,0.28746498,0.05765558,0.14230604,0.10903389,-0.040029142,-0.015625834,0.42409596,0.034527123,-0.012204002 +-0.2621688,1.3802136,0.025663523,-0.35671288,-0.20652255,0.33110303,-0.5786499,-0.8076318,0.031430967,-0.13420379,0.019681703,-0.002224792,0.41790688,0.17059329,0.080275744,-0.44662192,0.48487538 +0.22825117,0.0024591575,0.25496608,-0.057111874,0.33577758,0.08686714,0.3763831,-0.27774853,0.21069755,0.51632833,0.043632,0.15399477,0.22308202,0.06507637,-0.6930053,-0.06498049,0.090700306 +-1.3027819,0.4093365,0.344203,0.28811118,0.16551138,0.9144477,-0.39857373,0.10992284,0.108661704,-0.14757498,-0.6526602,-0.6525674,-0.18660828,-0.37014708,-0.39871824,-0.27758008,-0.13128011 +-0.026120631,0.04366139,-0.11055817,0.2430128,0.16771354,0.21560048,-0.08466281,0.12404805,0.121152036,-0.07594214,-0.031850763,0.058218826,-0.06818407,-0.09483894,-0.05073444,-0.062209528,-0.16660456 +0.081997916,-0.053805515,0.19658576,-0.0066655213,0.10355417,0.11694386,-0.17093098,-0.11188031,0.116485015,0.11046356,-0.13517433,0.04116781,0.16938291,-0.11010989,0.20667931,-0.14274897,0.032240085 +-0.49981657,-0.8584911,0.2070101,0.33226225,0.90016377,0.286506,-0.3349572,-0.9400211,0.69127816,-0.5275801,-0.221574,-0.13393685,-0.39806092,-1.5923496,0.4143038,-1.4065139,0.08107803 +0.35218126,-0.49256042,0.07452536,0.6467206,0.49662045,0.5488956,0.090724215,-0.18531649,0.66883963,0.6217822,0.4619299,-0.2993779,-0.3711045,-0.16884261,0.53098714,-0.6339742,-0.10549183 +-0.20473926,0.0015646825,-0.53726697,0.6922689,-1.3096617,1.0950763,-0.63801813,-0.34475887,-1.0880061,-0.4383919,-0.77777004,-0.30022565,-0.38068616,-1.1573778,-0.18940867,-1.3611208,-0.4126349 +-0.09147219,-0.017382039,0.06857377,0.20120326,0.0971802,0.26237044,-0.15249436,0.189666,0.15479665,0.89601517,0.036622234,-0.2980632,0.12155573,0.25648448,0.21477555,0.1800603,-0.100633115 +0.017639525,-0.21259372,0.017154977,0.029932452,0.11004707,0.13875537,-0.09651908,-0.051086463,0.092949696,0.10799683,-0.039460685,-0.060631268,-0.10025689,0.16958833,0.81328577,-0.03797699,-0.040507127 +-0.07313537,-0.023633545,0.14116149,-0.18379772,-0.015815858,-0.19827531,-0.029232606,-0.0622935,-0.1017541,0.10321903,-0.32579437,-0.12605809,0.15349287,0.12329267,0.17958023,0.018306436,-0.044192564 +-0.043068532,-0.15456769,-0.014405774,0.028460864,0.16820166,0.012687479,-0.101316296,0.09100004,-0.036797676,0.35059655,0.027952667,0.06175812,0.10333167,0.20831767,0.021278655,-0.20834477,0.20006335 +-0.02233487,0.27229595,-0.35085246,-0.20660557,0.24157497,-0.19184485,-0.2503318,-0.23144664,-0.060553074,0.6680103,-0.29339367,-0.19062355,0.039746393,0.26833522,0.15705809,0.12113325,0.013648902 +-0.18266402,-0.19776893,-0.15106468,0.11096656,-0.09632763,-0.035534307,-0.23452199,-0.26949862,-0.18386395,0.18224064,0.17210661,-0.15414007,-0.104897186,-0.33856308,-0.20285892,-0.25074682,0.13806273 +-0.020093692,-0.10627851,0.021151062,-0.002022338,0.028093932,0.013055053,-0.0836568,-0.08724345,0.060738444,-0.0038149497,-0.05709882,-0.10178052,-0.05266433,0.023367144,0.4121883,-0.09115625,0.026841518 +0.052970562,-0.07401775,0.20315252,0.8182124,0.42657706,0.15947849,-0.17562528,-0.22492795,0.47510707,0.2709981,-0.010501081,-0.06786693,0.15840478,-0.047136784,0.31382135,-0.4071936,-0.11991031 +-0.21489754,-0.3815794,-0.17963842,0.037848778,-0.13938162,0.018443016,-0.51933783,-0.37397394,-0.11398502,0.36786595,-0.109600194,0.14284873,-0.16468695,0.2953198,-0.14112023,-0.3632342,0.059086747 +0.20648499,0.09031859,-0.025907177,0.13297302,0.08904229,-0.11289959,-0.11630815,-0.19841065,-0.057087913,0.22554363,-0.052894462,-0.105706796,0.04672026,0.17756864,0.086085625,-0.119816706,-0.21540257 +0.58222824,0.3654964,0.03039243,1.4645592,0.36866453,0.45597756,-0.020656906,-0.03705224,0.51772803,0.12883441,-0.083289996,-0.004674762,0.188865,0.14413127,0.10892039,-0.18071647,0.22475019 +-0.70949775,-0.5588112,-0.20676106,-0.4521115,-0.60687613,-0.103384666,-0.99220425,-0.34532315,-0.72647226,-0.0446607,-0.32151464,1.3292316,-0.4215665,-0.8465,-0.206262,-0.37903407,-0.7887641 +0.070692,-0.0918393,0.09483391,0.79273707,0.19701648,0.19001053,-0.06918971,-0.106972024,0.21454176,-0.0072867526,-0.095992014,0.02699824,-0.025418663,0.041350357,-0.00035310443,-0.09756751,0.009201749 +0.15895453,0.046837118,-0.17751947,0.7342232,0.2406607,0.7915685,-0.23725541,-0.028793288,0.27751333,-0.042871438,-0.050516773,-0.04131532,-0.02096211,0.009651587,-0.03817275,0.009315089,-0.08957056 +0.20550814,-0.043604888,0.06785221,0.019634353,0.41686946,0.1802535,-0.6311389,-0.2428112,0.27066034,0.39379656,0.4334119,-0.096784875,-0.31708062,0.30925122,0.19937056,0.23625883,-0.17928742 +0.067789994,0.09554227,-0.08527529,0.06454278,0.13738748,0.087020755,-0.01570383,0.14307845,0.14900795,-0.08868838,0.020880701,-0.050034694,-0.03587556,0.021765757,0.038815428,0.021247564,-0.014531086 +0.048999023,0.15113989,0.015248783,0.46828917,-0.28138655,0.29730228,-0.885301,-0.20829469,-0.51490146,0.28298423,0.2644758,-0.29409924,0.040001925,0.39306295,0.6818314,0.12161225,-0.10948924 +-0.18917818,-0.03012468,0.1692624,0.77650195,0.15737402,0.5340504,-0.25171623,-0.19854917,-0.2852667,0.4558367,0.55810016,0.011690458,0.1082594,0.36173555,0.37251276,0.035952453,0.28038746 +0.5121723,-0.06898972,-0.14072692,-0.054579455,-0.027266847,0.15065235,-0.022125911,-0.27897137,0.42064285,0.1368487,-0.060850922,-0.19762704,-0.1989386,0.5777675,0.043341145,0.1532414,-0.33978075 +0.28853723,-0.53975874,0.0050947824,0.13153528,0.052873854,0.2294732,-0.54493904,0.13876966,0.24223424,0.50579226,0.048830297,1.0159302,0.21815926,0.30192837,-0.10829691,0.17322458,0.55307424 +0.3705063,0.11578836,-0.40459824,0.42556775,0.090673186,0.40088415,-0.043503765,0.05852843,-0.029365765,0.08481573,0.04795345,-0.17758498,0.5103055,-0.5412101,0.24407183,-0.28705096,0.6925359 +-0.50587225,0.07001357,-0.25818476,1.0137101,0.2604347,0.73895574,0.026850542,-0.49907237,0.8524457,-0.7056652,-1.2580274,0.18142758,-0.42695785,0.37159467,-0.5361305,-1.1656095,-0.023220265 +0.13147055,-0.59247804,0.29739335,0.11775917,0.1050053,0.2759739,-0.1574947,0.20585285,0.28066653,0.9843608,0.05916533,0.06985805,0.14580749,0.3352381,0.280129,0.010220004,-0.085569516 +0.0683041,-0.13479419,-0.17724545,1.3341788,0.17651375,0.2806832,0.060681175,-0.12068165,0.4483561,-0.059925936,0.011769682,-0.31610188,-0.6502521,0.31887695,-0.17306781,-0.5016948,0.19385332 +-0.11529556,0.27374527,0.29895428,0.17284565,0.19535904,0.046325773,0.20920157,0.008337661,-0.1040438,0.06995285,-0.032490827,0.19789769,0.4491203,0.04177833,-1.3472972,0.034550406,0.09588415 +0.002494554,0.040453706,0.043285348,0.4194606,-0.073448315,0.78491133,0.70248836,-0.43769473,-0.042858046,0.39711052,-0.3259305,0.19921844,-0.03885769,0.058360375,0.18832287,-0.44988355,0.37186676 +0.38241023,-0.32069117,0.39757052,0.19791545,0.33394837,0.27979165,0.09863264,0.46470466,0.4196876,-0.3760949,0.14665127,0.2357456,-0.060762007,0.42972013,0.28057083,0.089177966,-0.15481454 +-0.16572952,-0.45999357,0.1300227,-0.18736525,0.016027793,-0.11869177,-0.064379975,-0.27967298,0.0036497118,0.0729693,-0.20154427,-0.2952343,-0.028103279,0.15509398,1.4078345,-0.2174521,0.07958977 +0.106121026,0.0262013,-0.16001555,-0.22721086,0.07716205,0.08903261,-0.18153434,-0.43218055,0.13355741,0.108387195,-0.091284074,-0.017377343,-0.10580469,-0.21659845,0.2623198,-0.44206434,-0.17075099 +0.40328693,-0.018901257,-0.53965324,0.0456738,0.1998781,0.26313218,-0.4602548,-0.13182458,0.4506449,0.44046652,0.05589792,0.032182343,0.003885535,0.5904906,0.10644547,0.46771413,-0.012070025 +-0.017412,-0.39334238,0.16901617,-0.16900249,-0.03624768,0.40128878,-0.29430196,0.07134678,0.14176947,0.26532286,-0.06651413,0.0009995757,0.06821255,0.113038726,0.0958577,0.00505746,-0.146418 +0.2683907,-0.37299463,0.07723281,-0.2913,-0.1425932,-0.08010818,0.039705094,0.2748367,0.39847898,0.06622288,0.008635249,0.049738407,-0.22512917,0.20697974,0.5744153,0.18992063,-0.030315476 +0.14389952,-0.017601782,-0.06345625,0.23958671,0.087947845,0.1663303,-0.25122187,-0.107415855,0.11642135,0.408857,-0.033261526,-0.17188989,0.003321438,0.14414619,0.13855039,0.055321682,-0.12694718 +0.068753675,-0.25272354,-0.21866944,0.46457297,-0.09941066,0.7593333,-0.504468,0.21100266,-0.54200596,-0.3027516,-0.17031892,0.19223467,-0.5035723,0.050723087,-0.06981989,-0.47268423,-0.49574858 +0.20655918,-0.15636416,-0.04371026,1.1529906,-0.02626049,0.46695596,0.14245863,-0.11042897,0.31215104,0.17202935,-0.07522525,0.2422694,-0.33913144,0.62690103,0.31012785,-0.40836918,0.2515201 +0.8037585,0.021769537,-0.27417943,-0.3592338,0.30347556,0.48657307,0.23088744,0.3913369,0.7145704,-0.63932985,-0.48322368,0.010380728,-0.070743024,0.4651726,-0.4055429,-0.008098739,0.1636561 +0.55630803,0.09829664,-0.16346231,0.27514398,0.40500316,0.23626263,-0.4672094,-0.27829987,0.79709584,0.27874666,0.24664079,0.36267287,-0.07385816,0.616893,0.21568285,-0.36324272,-0.25227776 +-0.16165927,0.22003885,-0.3133889,-0.0060485597,-0.27056754,-0.084461674,-0.13502574,-0.52377975,-0.21055947,-0.3690855,-0.637367,-0.42751777,-0.1606006,-0.25127348,0.9913433,-0.442535,-0.6317233 +-0.8202327,1.6463225,0.41093057,0.00030951743,0.54737467,0.31437182,-0.303329,0.44827697,-0.37677038,0.48593503,-1.0424259,-0.65466577,1.3852361,-0.008569445,-0.9124044,-0.35128167,-0.4285718 +0.28375453,0.218024,-0.1586516,0.33027968,0.17801884,0.07958532,0.41660234,0.10511917,0.3818289,0.15005443,-0.010981884,-0.23062588,0.18731044,0.3527983,0.19006963,-0.1513063,0.52052474 +0.12871738,0.116297014,-0.034538303,0.2632059,0.13752992,0.22145025,0.024401123,0.030653121,0.21221703,0.10305954,-0.05837027,0.20217532,0.07690582,-0.018854946,-0.00047882705,-0.06690994,-0.1048876 +0.10895306,0.1596371,0.20048594,0.23360339,0.036087338,0.12038187,-0.06274222,-0.21130948,0.25494984,-0.14307995,-0.36818466,-0.09624481,-0.08369186,-0.04497105,0.13863748,-0.15221383,0.05346961 +0.9424562,-0.061942566,-0.19928014,0.22576126,0.5243836,0.43904626,-0.22530943,-0.67570335,0.3347944,0.401636,0.082918726,-0.3320934,0.108512856,-0.55970085,0.15429796,-0.3875593,-0.26159397 +0.07765652,-0.050194673,0.13980623,0.28459442,0.4366057,0.1747463,-0.3137533,0.016078072,0.32032225,0.43059364,-0.0680442,-0.12960106,-0.1216042,0.51162577,0.5500582,-0.06903115,0.118401594 +-0.009424638,0.15464984,0.7342547,0.16961633,0.1959018,-0.414814,0.14187743,-0.082213625,0.14829522,0.14750959,-0.6241069,0.12881917,0.012736529,1.0546677,0.46586895,-0.90201074,0.08006556 +-0.009341157,-0.02232734,-0.06475337,0.23529346,0.69392234,0.45957023,-0.43435168,-0.17862096,-0.047882456,0.034246415,-0.12115815,-0.09191249,0.027319016,0.28484616,-0.024840526,0.16289811,0.35464048 +0.16098054,0.16938862,-0.28211573,0.1250074,0.021625126,-0.025266511,0.051132295,-0.22929038,0.277838,-0.041163392,0.178488,-0.0030129575,0.009510348,-0.039023466,0.17251378,-0.11256936,0.09882627 +-0.031148091,-0.19979595,-0.07655494,0.20871061,0.05394189,0.102741756,-0.2817624,-0.5406134,-0.12813449,0.7712652,-0.35913005,-0.3328344,0.13761362,0.16534017,0.7245957,-0.6070466,-0.15887651 +-0.09484668,0.17865565,-0.3115135,0.88068056,-0.3947796,0.57151836,-0.3776951,-0.31634638,0.1447708,0.58662206,-0.2423199,-0.13398929,-0.18513507,0.31305978,0.3571367,0.13874231,0.19389063 +0.0035085739,0.09332407,-0.2501474,-0.04876818,-0.049759295,-0.111104004,-0.19843338,-0.32058945,-0.11735389,0.25385448,-0.19565664,0.2994823,-0.26705354,0.006246045,0.015984973,-0.19919567,0.31305695 +0.15180996,-0.09618788,-0.08088216,1.143093,0.20224716,0.27992278,-0.28039572,-0.08233503,0.3023546,0.09051265,0.07647979,0.015060466,-0.18462177,0.19396971,0.1474577,-0.08866418,0.058021296 +0.06586196,-0.16704603,0.019326055,0.3459541,0.39661455,0.22986609,-0.19883767,-0.26254392,0.16877708,0.11780946,-0.051966302,0.16552234,-0.010081137,0.23224866,-0.18643418,-0.11577748,0.18504208 +0.06970077,0.17549825,-0.51115483,0.9527203,0.28449813,0.96687526,-0.22373877,0.10849315,0.5890983,0.33603355,-0.58225006,-0.105210006,0.26348194,0.2287494,-0.14718147,-0.021981735,-0.6006911 +0.0024702726,0.09112681,-0.083728604,0.19203882,0.11949458,0.10776702,-0.15507625,0.15386309,0.1929183,-0.029102987,0.012019691,0.12609154,0.087388314,-0.021245385,0.06515896,-0.030928725,0.0045696907 +0.47708985,-0.07660501,-0.036173373,0.1486828,0.54275984,0.34073,-0.23352765,-0.052426152,0.46302378,0.5190456,0.17991006,-0.08325742,-0.3046998,0.6854398,0.23218967,0.36068144,-0.22740443 +-0.013485459,-0.07872877,-0.15570179,-0.14729746,0.04418768,0.055132616,-0.04967381,-0.32297146,0.014044965,-0.01799037,-0.46359447,0.0876118,0.22758582,0.2651463,0.18597291,-0.3852336,-0.12689362 +0.039287157,0.030615233,0.067836225,0.21732716,0.05898968,0.44454676,-0.08030772,-0.087201156,0.29489166,0.10228183,-0.0062918533,0.01410636,0.017407313,0.13424663,0.15730917,-0.060360342,0.18151453 +0.6590239,-0.08751162,0.6219197,-0.35811746,1.245223,-1.3119918,-0.6441438,0.4097899,1.2954959,-0.10268385,0.45329028,0.39315495,-0.40730786,0.42992562,0.45337173,0.5418894,-0.18913424 +0.0071462393,-0.091753066,-0.06992878,1.638686,0.22477151,0.49432987,-0.2796562,-0.34178877,0.57138157,0.33347934,-0.28401482,-0.0572733,-0.12675436,0.09638644,0.2269193,-0.056598186,-0.20758536 +0.30475417,0.02732991,0.067760296,1.6287062,0.44194165,0.41997892,0.0230554,0.03779826,0.3599173,0.26637465,0.007783218,-0.25340742,0.04140497,0.1717703,-0.108208366,-0.009166065,-0.029371697 +-0.07277539,-0.024535572,0.012165811,0.15777253,0.14218175,0.09087414,0.0073011685,0.07119955,0.1296642,0.09252792,-0.032509457,0.029837878,0.0020098358,0.13759686,0.04899273,0.041714787,-0.04050617 +0.46709344,0.17557268,-0.26904407,0.68102,0.09437099,0.7096149,-0.17531984,-0.2128032,0.024306543,-0.023905594,0.1413938,-0.19839226,0.26802427,0.20104271,0.21228668,-0.36305752,-0.2363368 +-0.0045300527,-0.08327997,0.11581878,0.11253149,0.18773898,0.12063894,-0.0233814,0.015940996,0.11050258,0.21086684,-0.09961634,-0.12047883,0.018735094,0.19282241,0.2537208,0.047414377,0.12223736 +0.19168559,0.45858628,0.26600796,-0.39718783,0.29646978,0.20619722,0.08974699,0.03355156,0.25400427,-0.2976127,-0.09990236,-0.32400402,-0.6055269,0.062398057,-0.5593766,-0.19137025,0.78875005 +0.78282386,0.11125433,-0.045629364,-0.2218431,1.2349144,-1.1685492,-0.6385589,-0.062365584,0.62905896,-0.62230223,0.5068267,0.2580255,-0.2925529,0.16111217,0.062764585,0.2441705,-0.04320458 +0.39396095,0.2027304,0.6520548,0.46777716,0.08404697,1.3801585,0.5343414,0.38704067,0.2362942,0.29824492,-0.037356418,0.39265755,0.20248632,0.41385552,0.1342911,0.011823071,-0.00812561 +0.39296204,0.13040625,-0.028310841,0.25871703,0.29231495,0.27028924,-0.5839184,0.010427892,0.14544727,0.4471504,0.481708,-0.13477542,-0.20485936,0.34673893,0.27540985,0.08038863,-0.212298 +0.21856959,0.3699749,-0.057368685,0.30103093,0.2442882,0.090638734,0.27577037,0.027562639,0.48810244,0.18437843,-0.0044066105,0.8377893,-0.029498316,0.21225664,0.035970427,0.13356389,0.41717497 +0.5731389,0.61975795,-0.037251845,0.49340415,0.29046112,0.47351262,-0.07056014,0.17382462,0.4086483,0.01969127,0.028582022,0.21583742,0.67977995,0.14348365,0.22012873,-0.031269148,0.08663952 +0.27906764,-0.012981806,-0.010821289,0.50637233,0.3479459,0.41757876,-0.17247911,0.1286493,0.19941373,0.30856603,-0.07509603,-0.0614551,0.15665066,0.12506324,0.10394394,-0.23892549,0.02660454 +0.2831615,-0.3519389,0.15552546,-0.050006993,0.17393814,-0.20901333,0.12601832,0.28934702,0.09240714,0.25326368,0.46922594,0.08546441,-0.05193627,0.3329387,1.4413507,0.10448524,0.20606217 +-0.0593236,-0.17727657,-0.17299777,-0.119642235,-0.16734998,0.110220626,0.03881428,-0.6382933,-0.007349966,0.8293498,-0.12755984,0.054057535,-0.31124678,-0.20663594,-0.32380858,-0.7365574,0.22673234 +-0.09733441,0.43208382,-0.4462392,0.17592889,-0.083866134,0.40560138,-0.19443187,-0.1428209,0.34581536,-0.1765846,0.08345468,0.20191945,-0.38121375,-0.04005444,0.29418778,-0.24579157,0.509775 +-0.8329286,-0.489479,0.23160833,0.06832937,-0.38757825,0.8492186,-0.19888936,-0.7158239,-0.36781853,0.18657687,-0.9379889,0.006503509,-0.5938662,-0.012979584,-0.8836755,-0.26822528,-0.083750345 +0.38333434,0.07245016,0.25191233,0.4475926,0.21389785,0.18966179,0.019779846,0.12854746,0.25468898,0.549791,0.12940411,0.025180204,0.16593756,0.24788842,-0.5680265,0.25576478,0.12352582 +0.38115406,-0.16869672,0.16254158,0.2858916,0.2372717,0.307197,-0.16964644,0.020836124,0.19452447,0.051046122,-0.17688726,-0.21055895,-0.114235274,0.14065531,0.71668994,-0.23285517,-0.1254765 +-0.08243776,0.3951482,0.10143567,-0.19923162,0.21621257,0.09705997,0.14976163,-0.018237354,-0.097435795,-0.010722311,0.04435782,0.1585895,0.15597318,0.04695202,-0.2126069,-0.18234436,0.006614887 +0.08955457,0.13272986,-0.1337788,-0.0060586156,0.35772076,0.1076395,-0.0191816,-0.031533986,0.25658706,0.10003821,0.13742672,-0.037154153,0.032742474,0.18576361,0.08267001,0.17502688,-0.035154898 +0.17193694,-0.20243517,0.047388196,0.3660165,0.13639271,0.36468026,-0.18888822,-0.43863413,0.0935399,0.9216889,-0.017914291,-0.22798184,0.028836202,0.18960112,-0.8191087,-0.40723208,0.3590686 +0.17016505,-0.15319486,-0.26218626,0.15206951,0.6349048,0.3442394,-0.06296394,-0.16913669,0.22284712,0.0914403,0.23303203,-0.079465635,0.11450571,0.49558187,0.12071453,0.14881097,0.31207702 +0.28913286,-0.24610457,0.47932667,0.04140954,0.23144613,0.24957311,-0.0022246912,-0.2812051,0.21498385,0.5052022,-0.16938646,-0.25829816,-0.32451946,0.2887082,-0.50714177,-0.054274276,0.10778632 +0.30567107,-0.20894125,0.09301357,0.08899923,0.25872102,0.0053480435,-0.0086778365,0.14978634,0.3216507,0.052299876,0.36764592,0.15763174,-0.27687335,0.20275751,1.6089201,-0.08027777,0.14822413 +0.17103013,0.37610483,0.06486423,0.07198522,0.10234699,0.27726948,-0.25397035,-0.23110811,0.3815991,0.2706192,0.06303046,-0.1855916,-0.12598379,0.2913784,-0.15420158,0.18122165,0.4026682 +0.1267933,-0.039665338,-0.17836878,-0.07970441,-0.05554292,-0.103997864,-0.19331695,-0.45177642,-0.04601538,0.4961043,-0.0316115,-0.11364686,-0.15217566,0.021168973,0.33731145,-0.15625808,0.06229088 +0.05361265,-0.017542668,0.068181336,0.031995725,0.24862531,0.14405076,-0.0748508,0.16198751,0.27298334,0.14154221,-0.03978046,-0.0433559,-0.10642061,0.060228314,-0.047511447,-0.039568633,0.061219204 +0.15860873,-0.009866564,0.0870921,0.5230825,0.22070706,0.19371991,-0.065591656,-0.038506392,0.25153103,0.06348153,-0.11478348,-0.044183582,0.0349232,0.18462542,0.08093218,-0.11153068,0.13106781 +0.31580374,0.17005174,0.02236186,-0.06413015,0.26388943,0.12094066,-0.091309726,0.13545054,0.11573109,-0.032552388,0.017950187,-0.014739646,0.1602104,0.2254146,0.265712,0.040722147,-0.085779496 +-0.04809306,-0.31468442,-0.17517063,0.68956906,0.38773558,0.46579313,-0.31706306,-0.22389013,0.2672239,0.5207569,-0.13467428,-0.0969573,-0.039468125,0.014124185,0.008207964,0.14028023,0.14317924 +0.24669491,-0.013742676,-0.24960838,-0.109104775,-0.16384105,-0.0013446123,-0.23675017,-0.42685723,-0.05744031,0.24784502,-0.14883922,-0.12571283,-0.21894136,0.09261306,0.037504073,-0.11142206,-0.059027493 +0.14846106,0.08882367,-0.050655473,0.23358099,0.2730375,0.103266284,-0.10918892,-0.09628737,0.21943088,0.37813735,0.14913079,0.0737983,0.06265703,0.1884412,-0.08719922,-0.14889586,0.3414868 +-0.034734488,-0.07206957,0.16984417,0.14880322,-0.06785388,0.21137048,-0.49361712,-0.305644,-0.05492077,0.12512405,0.039354183,0.32638255,-0.32178935,0.14368577,-0.005624846,-0.0006227549,0.07356649 +-0.015418298,-0.12616782,-0.04134636,-0.03703887,0.16231434,0.16991362,-0.18335852,0.18080193,0.19400582,0.13236025,0.15057383,0.0069060707,0.039977845,-0.11500407,0.6476946,0.0010295352,0.3466917 +0.14623141,0.020601189,-0.001155909,0.019644506,0.11551755,0.1925091,-0.18578124,-0.033105507,0.16325508,0.05506993,-0.050562408,0.014427717,-0.21382163,0.085482985,0.932598,0.040798485,0.1009008 +0.21210267,-0.15563619,0.017688524,0.4425457,0.40911797,0.2116471,-0.2920365,-0.05981813,0.2533656,-0.07840988,0.07787539,-0.023441082,-0.30876124,0.14538951,-0.0698265,-0.114826314,-0.11027089 +0.18348809,-0.084479995,0.06573448,-0.12106916,0.019476496,0.12930362,0.36371577,-0.1377671,0.14020489,-0.14636782,-0.017156253,-0.3484358,-0.29572183,-0.07398717,-0.1715005,-0.19036599,0.15254566 +-0.66285145,-0.1260706,-0.050809152,0.6392474,0.019742806,0.51930904,-0.39722115,-0.1173792,-0.2126817,0.7421477,0.011736078,-0.07388723,-0.04639415,0.116960205,-0.43645036,0.36259204,0.060063686 +0.46427703,0.1577146,0.28430977,-0.008990971,0.18633194,0.20212144,-0.2446941,0.0061458847,0.54791194,0.6430149,-0.14167257,0.11006887,-0.1211637,0.17767659,0.72866726,0.23709905,-0.19615524 +0.21917374,-0.054446224,0.14449537,0.31980646,0.6344535,0.29187825,-0.19147366,0.073454976,0.61149526,-0.19003598,0.01129773,-0.44855922,0.29304138,0.045448855,0.012444742,-0.25444582,-0.07699921 +-0.61807466,0.067215726,-0.6599314,-0.4152567,-0.5046922,-0.16651618,-0.6302395,-0.8105146,-0.49905184,-1.0278323,-0.70312387,-0.81652886,-0.20247513,-0.46272847,-0.19085842,-0.7052806,-0.02290887 +1.250318,-0.32042268,-0.5234965,0.32205966,0.39882746,0.24741133,-0.06501412,-0.077832,0.25681588,0.41753066,0.41940534,0.24410456,-0.60634696,0.30315304,0.6192418,-0.046775997,0.3375659 +0.17881367,0.0016843742,-0.02338949,0.54245615,-0.1676825,-0.087131314,0.36969823,0.18466057,-0.117564514,-0.22569084,0.31259334,-0.07476054,0.42646018,-0.18783349,0.23727793,0.04734939,-0.15691449 +-0.12010034,-0.28181833,0.24170144,0.8313346,0.4149166,0.7901559,-0.19210705,-0.11151214,0.19981961,0.18877976,-0.07305266,-0.1498848,-0.2843384,0.0364181,-0.05280096,-0.1605063,0.24133751 +-0.17572267,-0.43712452,-0.09395751,1.4699427,0.1826488,-0.019499568,-0.463278,-0.061928518,0.12948757,0.0223877,-0.0180843,0.06443463,-0.46266833,0.17004956,0.037840918,-0.025380537,0.096396886 +0.7453296,0.091242544,0.46956295,0.21348123,0.5012651,0.16811913,0.2280016,-0.46443796,0.592724,0.004847259,0.3328519,0.18106647,-0.12980773,0.19077694,0.24561894,0.1796478,0.5956149 +-0.3801226,-0.90342253,-0.1301081,0.16061743,-0.001741789,0.042346925,0.09817732,-0.28464678,-0.26207328,-0.13490558,-0.29846835,-0.6754165,-0.1259512,-1.1542152,0.37413138,-1.0035661,-0.07999585 +0.6560648,-0.09706154,0.33732197,0.12808864,0.39377496,0.8296406,0.4001953,-0.290283,0.87515795,0.033978667,-0.97546566,-0.009970364,-0.18863882,0.60624063,-0.026677966,-0.15279528,-1.1297066 +0.08155928,-0.08324918,0.112392575,0.18790768,0.14194863,0.573638,-0.2156071,0.40385094,0.029554706,-0.40673184,-0.07207256,-0.24753404,-0.1457756,0.23044021,-0.0706668,-0.09606855,-0.22634645 +0.33497065,0.52901393,0.4602538,0.38840723,0.47799146,0.1459861,0.41325435,-0.44009212,0.18138307,0.0016685597,0.5769984,0.21325581,0.083026044,0.26521412,0.123551056,0.17367841,0.34210718 +0.23587364,0.19834617,0.27424967,0.03485287,0.3116168,0.09178918,0.22952338,-0.12612616,0.23598513,0.11700718,-0.08563277,0.15959212,0.041725352,0.6453005,-0.02133393,0.08040345,0.034808517 +0.27122465,0.01913602,-0.05296372,0.36497012,0.15516026,0.10015665,-0.19934337,-0.18857916,0.13495825,0.25878784,0.0036183454,0.08220715,0.11473197,0.13558735,0.07421957,-0.024487203,0.00029927003 +0.1335367,0.073916815,-0.11003514,0.24532026,0.22965458,0.2935107,-0.058739033,-0.2123261,0.118678845,0.34568232,0.120561086,0.23076375,0.10496861,-0.20465831,-0.051687654,-0.09178827,0.41339442 +0.19847953,-0.18931758,0.08817079,0.6898074,0.113715656,-0.10051894,-0.014260795,0.11745152,0.30287954,0.03299283,0.13422517,1.1019306,0.32060573,0.15736014,-0.34107548,0.27090254,0.2630934 +-0.15274552,-0.11985598,-0.058520228,-0.04855194,0.044993628,-0.03381571,-0.12373618,-0.25811186,0.052789807,-0.14412206,0.05689172,-0.11133343,-0.11905156,-0.08261707,0.98169905,-0.44162574,-0.23060554 +-0.40810147,0.058172107,-0.0073184627,0.29978523,0.08431533,0.024273222,0.50902534,-0.004806366,0.15708329,0.13968368,0.10760996,0.21556404,0.18078841,0.12949482,0.14405581,-0.023089318,0.1813475 +-0.0765165,-0.09110004,-0.060779277,-0.14173533,-0.045989737,-0.01906185,-0.13072397,-0.16308483,0.09915461,-0.11059423,-0.08357971,-0.20570669,-0.08466675,-0.10559815,0.10535995,-0.18265441,-0.10390016 +0.3568815,-0.0121103935,0.060752273,0.73567456,0.1508008,0.3355441,-0.099192604,-0.18908148,0.13777281,0.07424234,-0.10711107,-0.033725265,0.091668986,0.062122107,0.019575413,-0.17899254,-0.111099444 +-0.39633563,-0.3362493,-0.32369202,-0.080271736,0.2622055,0.23716472,-0.11688027,0.03546746,0.43055084,0.35801277,-0.5730988,0.6842994,-0.39552146,-0.026335504,-0.6867962,-0.5849662,1.7635725 +-0.0016207665,0.13970774,0.27548683,0.36387363,0.4795751,0.25960895,0.1369793,-0.056530673,0.29156446,0.24447723,0.04191076,0.1749061,0.18476376,-0.24767108,0.079726376,-0.17422524,0.04174929 +0.13248943,-0.14817828,-0.05267404,0.13659655,0.3251443,0.44326848,-0.12065364,-0.2845046,0.44699886,-0.049460378,-0.04254703,-0.1663907,-0.16538572,0.48736537,-0.08900057,0.0096138045,-0.016217494 +-0.08312302,-0.20749003,-0.16778243,1.0871793,-0.026422681,0.1080231,-0.39085883,-0.43964723,0.062044382,-0.09488284,-0.05446527,-0.14273389,-0.32338014,-0.15039381,-0.030567914,-0.29873377,-0.17490828 +0.13634169,-0.20409782,0.061660916,-0.048891444,0.048288424,-0.07847884,-0.0012954767,0.054937262,0.0013106883,0.18933061,0.08174397,0.00022674979,-0.031331442,0.2501957,0.5322421,0.10419684,0.02300423 +0.2082959,0.14100751,-0.069327615,0.022927292,0.18715213,0.014755337,-0.005096699,0.21272029,0.097753525,0.00046221493,0.067785546,0.01007709,-0.085644424,-0.06270342,0.098343894,0.07006769,0.036205504 +-0.22273736,0.023407558,-0.32516363,-0.43513402,-0.32142016,-0.22066371,-0.22693534,-0.19960879,-0.30645928,0.07920575,-0.15329194,-0.1421839,-0.14930922,-0.028039012,-0.15327378,-0.08977669,-0.26089466 +0.1308471,0.6642721,-0.43260756,0.2760808,0.22245303,0.059465162,-0.42847666,-0.32466748,0.12746984,-0.062292755,-0.223302,-0.04924142,0.2689009,-0.10215762,0.12234607,-0.63826185,0.6251608 +-0.11614377,0.2466317,0.23841068,0.416938,0.16956,0.07033983,0.25822997,0.48143098,0.058697958,0.13461244,0.22562818,0.017335,0.14610206,0.13480684,0.13273261,0.1691544,0.23160149 +0.31270635,0.04756422,0.22843169,0.051905517,0.19826666,0.013230596,0.038644075,0.037261542,0.20682521,-0.14923769,-0.18071625,0.12027882,-0.21253267,0.41254905,0.11145644,-0.057400864,0.15275706 +0.49885404,0.28889266,-0.06517754,0.64827347,0.6303465,1.5187938,-0.21210454,0.046604246,0.5782773,0.20734967,-0.071633115,-0.3845965,0.09820018,0.30784765,-0.47137725,-0.07465627,0.5375965 +0.39574245,-0.20118111,0.31653556,0.17128517,0.5220093,0.025629072,0.020334657,0.22289476,0.07268336,-0.08312121,-0.05807753,0.389123,-0.13934976,0.2805986,-0.004418251,-0.3401569,-0.03467889 +0.1691261,0.5018655,0.19277865,-0.052858118,0.092894904,0.38458893,-0.05549664,-0.025548406,0.17985328,0.07899965,-0.02480252,-0.09613782,0.34192094,0.07299386,-0.29091588,0.04499696,0.24355064 +0.5081941,0.14987849,0.46462852,0.20863105,0.28977448,0.09886696,-0.74103445,-0.096064426,0.6694974,0.59711367,0.23683853,-0.26277012,-0.07725519,-0.1244898,0.26494002,0.17331421,0.24961941 +0.28584743,-0.02904584,-0.07298848,0.30209196,0.49507767,0.66473657,-0.15305127,0.30928978,0.5341306,0.43901598,-0.33824873,-0.22924659,0.16893901,0.15601622,-0.2631781,0.016390761,0.13184762 +0.103401355,-0.08305969,0.132402,1.2783958,0.37509918,0.20446171,-0.25304666,-0.09688539,0.17522892,-0.14267604,0.005907291,-0.14795129,-0.17806697,-0.0035197954,0.010899018,-0.5011994,0.26285297 +0.119223736,-0.02596659,-0.27863336,0.3871562,0.61402905,-0.5879718,0.041006662,-0.49285582,0.26907778,0.3455374,0.33082303,-0.2489512,0.2160684,0.24675913,0.25667182,0.30153143,0.49830624 +0.30563545,-0.349867,-0.015940951,0.5820692,-0.77100104,1.1043929,-0.34651297,-0.33994246,1.0699521,-0.13790238,-0.29451072,-0.7855831,0.78875786,-0.7019735,-0.104111075,-0.42277625,0.8140266 +0.8825921,-0.5950809,-0.56297284,-0.04272498,0.5695995,0.58741456,-0.58334804,-0.1351375,0.27112225,0.24077567,0.09648843,0.8592955,-0.23247193,0.25723103,0.055225078,-0.44012406,-0.5607807 +0.3385944,-0.40967023,-0.05229488,0.18075122,0.3304179,0.40980962,-0.1372242,-0.35819614,-0.07681417,0.3898087,-0.049214583,-0.1750915,-0.08517691,0.24712428,0.14989245,0.09917867,0.26743066 +0.5874578,-0.01009186,0.31861973,-0.5067755,1.040093,1.5560234,0.24919799,-0.22118615,0.58812314,0.94755065,0.2330187,-0.06052949,0.38067672,0.62891483,-0.40973562,-0.4527344,-0.13170399 +0.3416497,-0.03399204,-0.3984044,1.0051113,-0.032774035,0.2773562,-0.2661893,-0.05737281,0.16138566,-0.091682136,0.118701704,0.147245,0.01466544,0.30331942,0.29133484,0.2526828,-0.29128164 +0.2965808,0.13519534,0.07687194,0.01519029,0.32612008,-0.18175301,-0.14623089,-0.102703065,0.121787414,0.012954295,-0.121550456,0.5010065,0.3956752,0.2051636,0.018496849,-0.02672535,0.14189735 +-0.010733436,-0.20623505,0.07942165,0.09197599,0.27766305,0.07843749,-0.19239043,0.047572397,0.3649742,0.10540694,0.01671869,0.17814237,-0.2670388,0.20010382,0.09843585,0.11297212,-0.18037815 +0.08119861,0.03094876,0.17907926,0.47634205,0.27305079,0.06363306,-0.20215681,0.028484356,0.4057879,0.29247776,0.105603926,0.12604904,0.20702429,0.32766518,0.24126464,0.13435838,-0.10994543 +0.19331338,0.08918929,-0.0032240648,0.29067487,0.27602443,-0.015877508,-0.27525645,-0.093506664,0.21042858,0.096322976,0.081171066,0.06755214,0.04938948,0.11285458,0.22311983,0.14764391,-0.06324932 +0.37625736,0.031255066,0.77718294,0.38562384,-0.08707462,-1.1920394,0.40034184,0.68384206,0.1983881,0.084448345,0.24916008,0.5092506,0.39145055,0.5912248,0.21053463,0.11136123,0.23517847 +0.24782988,-0.043418203,0.22858512,0.16107549,0.07378287,0.06717397,0.18725665,0.18036585,0.08278357,0.13086314,0.07288215,0.1361975,0.13791788,0.30699846,0.099720575,0.13051052,-0.07578209 +-0.1743176,-0.29622155,0.6208824,0.48642373,-0.4305053,0.47851956,0.23841265,-0.30852053,0.02271444,-0.3191904,-0.85105056,0.34779274,-0.4760969,-1.0593318,0.17363188,0.22184624,0.12933856 +0.39977598,0.20704125,0.058880314,0.14704949,0.28785247,-0.68164915,0.093626544,0.4326843,0.24917352,0.24216579,-0.061162435,-0.12738636,0.2313741,0.4802746,0.35919774,-0.04011737,-0.24622221 +0.14311004,0.5908964,0.05151413,0.13323924,0.026615705,-0.112231694,0.21168919,0.38703024,-0.2661974,-0.0041384134,-0.094712,-0.36249903,0.24122536,-0.019414147,-0.1455447,-0.26395833,-0.14104702 +-0.20072551,0.1282881,-0.5522566,-0.030906236,0.33726984,0.6732828,-0.50538576,-0.36504123,0.119920716,-0.22708449,-0.66968703,-0.7094906,0.29797298,0.22955261,-0.14785111,-0.26438835,-0.30852118 +-0.09242915,-0.110333055,0.15934688,0.18904527,0.22389095,0.013321524,0.037839737,-0.08751578,0.072761424,0.15425292,0.03058522,-0.0081944475,-0.057817683,0.052420806,-0.11698065,-0.0036684487,0.022590626 +0.0031378914,-0.065026045,-0.16585672,-0.085612886,-0.041087605,-0.24162127,-0.05161398,-0.30502015,-0.0962094,0.053589452,-0.14339249,-0.095497414,-0.16856827,0.019483315,0.011179981,-0.1822659,0.06588996 +0.8197715,0.094374806,-0.06108197,0.11075379,0.5554665,0.6198807,-0.3706068,-0.7022241,0.12565863,0.007744451,0.6750313,0.15793413,-0.40009007,0.5982332,-0.022080058,0.0073071355,-0.51173866 +-0.03494863,0.2814613,0.13715819,0.4415582,0.016937632,0.19587104,-0.027638054,0.20020427,0.059779715,-0.26110885,-0.3055507,0.034224924,-0.12422942,0.049510546,0.37336868,0.11021145,0.09513467 +-0.1250819,-0.2927761,-0.4834635,-0.08445019,0.24061474,-0.1611623,0.012377602,0.12607257,0.33677202,0.33888733,0.1589778,-0.4484836,-0.27820158,-0.007942961,0.25463873,0.38124084,-0.18523903 +0.270799,-0.17720196,-0.0497698,0.2243536,0.02621014,0.033335418,0.048578218,-0.10656232,0.20893826,-0.028498657,-0.33926356,-0.081634454,-0.13326247,0.29460105,0.35510892,0.024880439,0.018275125 +0.09680755,0.2377524,0.1696441,-0.370986,0.29627714,0.39720833,-0.0034451676,-0.09951091,0.070964515,0.33691296,-0.10672112,0.2809835,0.17649585,0.40276843,0.35672686,0.24643533,0.1289846 +0.1642084,0.18701135,0.19935666,0.24937938,-0.1425951,0.15249254,0.30163312,0.3083239,0.33520424,-0.11003049,0.24078657,0.01597514,0.056765232,0.03461867,-0.06891122,0.25743067,-0.2798951 +-0.3018589,-0.43776965,-0.1981089,-0.2923562,-0.117572986,0.014207656,-0.28895947,-0.47866163,-0.04251158,0.1593772,-0.34585142,-0.14651904,-0.06860079,-0.03649932,0.07729339,-0.44211885,-0.16558503 +-0.03593272,-0.40964928,-0.31465012,-0.14739738,-0.38573655,-0.034488387,-0.36388776,0.081507325,-0.048569553,0.072201334,-0.135654,-0.12776048,-0.13321662,-0.34268966,0.035977703,-0.3057507,-0.17677654 +0.3626409,-0.19800037,0.08862035,0.5144522,0.3452022,0.6951544,-0.28702748,0.20886892,0.64936024,-0.49805185,-0.08208753,-0.14462641,-0.37518382,0.22082017,-0.18156788,-0.15258326,0.2582928 +0.070216425,0.2788389,-0.09844413,0.4374855,0.55049855,-0.084954254,-0.19237639,0.26030833,0.24359496,-0.29136157,0.0994193,-0.29183608,0.29766497,0.09781958,0.15879208,-0.18526149,0.26067752 +0.4154235,-0.28311777,-0.04377652,0.20468393,0.1916964,-0.19358769,0.14535797,0.124772206,-0.030902546,0.084183566,0.28536996,-0.09138873,0.07548157,0.8681589,0.6459879,-0.3917798,0.18792267 +0.274613,-0.048845284,-0.01543006,0.33115122,0.1504773,0.21934731,-0.4804953,-0.008988454,0.18268198,0.8002414,-0.28210878,0.0701466,-0.13061297,0.39478362,0.37722328,0.23435996,0.011430165 +0.20861968,-0.09383111,0.05255931,0.1646135,0.20063174,0.40267235,-0.9025258,-0.0862679,0.157272,-0.29414916,-0.41696405,0.51334125,-0.033660814,-0.3484918,-0.032770943,-0.06368896,-0.57274556 +-0.009282515,-0.5661677,0.12821403,0.18382323,0.48084763,0.18132593,-0.2676043,-0.093185745,0.2430331,0.09155971,-0.27163622,-0.16370045,0.16142517,-0.20991267,0.22088729,0.03739344,0.20668966 +0.0035071264,-0.26861376,-0.08157642,-0.32308367,-0.04651037,0.036292277,-0.5783434,-0.36961246,-0.012769937,0.11162179,-0.55303884,1.8532983,-0.102990456,-2.2503777,0.107880674,-0.32072762,0.024583314 +0.7158421,-0.021756787,0.37265387,0.43025604,0.9674399,1.2887298,-0.42662898,-0.17570435,0.45143116,0.93323934,-0.2941037,0.1846473,-0.53480303,0.29231328,-0.13128285,0.18271072,-0.31172556 +0.4220367,0.060885217,-0.35644928,0.49795505,-0.06617269,0.31002066,-0.18469682,-0.041140813,0.34223175,-0.063521445,0.087299526,0.1440412,0.0036525726,0.056089833,0.17102516,0.030185537,-0.2932975 +-0.15315846,-0.31563336,0.21645734,0.13591549,0.07591957,0.2462731,0.07784404,-0.19461717,-0.013133142,0.49966404,-0.2700057,-0.023598887,-0.050622158,-0.009403706,-0.2722647,-0.3947006,0.21250224 +0.6054775,-0.18423672,-0.01619317,0.6404586,0.79922634,-0.010615087,0.33329564,-0.095606774,0.70840925,-0.45077842,0.2368708,0.06549687,0.40883732,0.078214355,-0.12777989,-0.0041205273,-0.14483528 +0.11371813,0.058557525,-0.0428352,0.017053982,0.2621182,0.09843495,-0.037913337,-0.3011209,0.3380649,0.32465875,-0.077773616,-0.058676936,0.18712139,0.19383503,0.28535327,-0.45518145,0.2001604 +0.12931272,-0.42205206,0.29806975,0.21383217,-0.086849496,0.2868752,-0.08326533,-0.2431928,0.39182147,0.5648705,0.10082398,0.020034393,-0.10886412,0.014839518,0.41255203,0.10156688,0.092192955 +0.25988033,-0.10862588,-0.05179627,0.12131321,0.30899286,0.17713968,0.027048001,0.23135026,0.46879923,0.9263625,-0.31235105,0.124295294,-0.017910656,0.05107157,0.4342905,-0.19880845,-0.05415137 +-0.56710374,0.44363528,-0.26436815,0.09186758,-0.19917396,-0.3660392,-0.6545859,-0.1567615,-0.23014079,-0.0045643006,-0.246697,-0.29516608,-0.38865677,-0.4297919,-0.0026480383,-0.094158806,0.28709176 +0.3631686,0.09300952,-0.002666394,0.18622105,0.13543141,0.4677881,0.041402183,0.32153553,0.23628032,0.17897075,-0.13235068,0.11334481,-0.04047625,0.095406406,1.0384696,0.51156205,0.33444107 +0.20211755,-0.21166465,0.3356814,0.022904905,0.6106777,1.2675464,-0.32626998,-0.7186144,0.47830158,0.25362396,-0.17060208,0.115483426,0.1890674,-0.19125807,-0.1617186,-0.6639007,0.3551943 +0.020011835,-0.3019968,0.26523378,0.05791677,0.10032063,0.133454,0.013879689,-0.060660005,0.18639077,0.12958667,-0.08560113,-0.11778442,0.17141397,0.33838493,0.8100391,-0.0058555948,-0.22420536 +-0.13548383,-0.028590139,0.074568056,0.38568336,0.123300865,0.17631115,0.01344237,0.15688686,0.24198446,0.10221227,-0.14611742,-0.12290837,-0.029940404,0.18733384,0.3306571,0.1752108,0.05178125 +0.13573222,0.066847384,0.0492518,0.1425955,0.40617442,0.12797214,-0.21606226,-0.21998958,0.085106045,0.20823799,0.26174143,0.000663424,0.09906725,0.30264348,-0.1280166,0.14840226,0.26505077 +0.41002092,0.06532559,-0.15589671,0.2784297,0.21472587,-0.19487317,-0.3579603,-0.29652804,0.25053275,-0.042646732,0.20730108,0.18189694,0.1183364,0.14771275,0.24725306,0.07657637,-0.14802654 +0.37948328,0.09423281,0.4476473,0.18492502,-0.09641821,0.14664796,-0.28353086,-0.31060088,0.5215261,-0.0077883746,0.25471583,0.34274015,0.05238043,0.1049355,-0.027583703,0.11608603,0.19179554 +0.20081732,-0.07016078,-0.04125854,1.0934613,0.4006913,0.4497187,-0.15270135,-0.14741078,0.42411202,0.17681976,-0.11869355,-0.12181913,-0.09691429,0.352395,-0.025083354,-0.04418732,0.07990897 +0.5539005,0.114593126,-0.13748702,1.1391262,0.14991345,1.1104013,-0.20595156,-0.234532,0.27186137,-0.03975008,-0.10347615,-0.035492875,0.12262433,0.23351508,0.13659532,-0.124351375,-0.19976944 +0.12503038,-0.24626654,-0.10694358,0.5463851,0.5059957,0.8665389,-0.24399891,-0.049937956,0.35117528,0.6059284,-0.13470924,-0.2770799,-0.22937547,0.12005135,-0.043287538,-0.17771675,0.06989847 +-0.31267148,-0.41189978,0.27776432,0.595632,0.61287636,0.42287847,-0.46457753,0.043382943,0.69237983,-0.037595477,0.22686109,0.1052987,-0.26935163,0.53443575,0.17900144,0.44717985,0.00053131685 +-0.63222307,0.4268801,-0.19174615,0.21151908,-0.7574914,0.52976525,-0.84326684,-0.6937716,-0.8295009,0.90901494,-1.0599797,0.17502877,-0.25645518,-0.9929407,0.63450295,-0.9781977,0.36962995 +0.2083337,0.23129551,0.33109233,0.26631314,0.34151033,-0.044701707,0.08649356,0.16008702,0.24504976,0.20418327,-0.029331077,0.113705225,0.09249371,0.05333855,-0.10951602,0.03447225,0.1971077 +0.35237387,0.071366616,-0.024522042,0.17973942,0.21754281,0.14129856,0.2880447,0.4330047,-0.053242322,0.08396191,0.36977002,0.20661159,0.26121873,0.14289816,-0.42002007,0.18257995,-0.1662542 +-0.077068545,-0.20291711,-0.50202954,0.29256266,-0.119824104,0.92249537,-0.4427116,-0.7932765,-0.07221332,-0.76753116,-0.56176203,-0.6472875,-0.40161717,0.18465678,-0.40731418,-0.22308892,0.23793465 +0.6722813,1.1672227,-0.36621973,-0.14398895,0.15953863,0.34893635,-0.29330203,0.09377193,0.33538932,-0.10853051,-0.017468587,-0.3914409,1.1794239,0.7048927,0.14983293,-0.5210289,-0.06759142 +0.11533197,0.01600095,-0.33180484,0.07275811,0.08716566,-0.060618483,-0.15525173,-0.6359402,0.13871783,0.60020906,-0.38918465,-0.44080305,-0.45417473,0.4539168,0.43921706,-0.4164053,0.09789487 +-0.085051894,-0.2572216,-0.21663208,-0.23315126,0.017590133,0.35544288,-0.14629917,0.26940402,0.026002342,0.013193251,-0.40704793,-0.05730468,-0.15804887,-0.004283979,0.0073258546,-0.07155012,-0.048053496 +0.2886881,0.034219254,0.22472267,0.07285317,-0.12005415,0.16236904,0.9363685,0.031713706,-0.0058734245,-0.13003135,-0.03694653,0.2575774,0.06812093,0.07348317,-0.024756532,-0.0847409,0.4903405 +0.21449389,-0.03967645,0.7477166,0.32660186,0.3402412,0.32090297,0.19637051,0.11891166,0.41165355,0.3780376,-0.48025385,0.18385293,0.2769375,0.77183217,-0.7911229,-0.2831609,-0.27245563 +0.7669255,0.019050669,0.66227627,1.7233181,0.49993083,-1.9023147,-0.05476896,-0.040558256,0.72787726,-1.7343409,-0.24566856,0.38394013,0.25060686,0.59875554,-0.7660433,0.14030111,0.22066356 +0.661994,-0.20830464,-0.27518818,0.100705884,0.24171051,0.123670116,-0.39812165,-0.31433225,-0.19733325,0.46436992,0.10225001,-0.18614432,-0.17674609,0.08397277,0.2752739,-0.41306043,0.095180236 +0.33528635,0.06744006,0.095544495,0.3370008,0.8485701,0.6730516,-0.13846834,0.13563615,0.8308552,-0.049177386,0.10426653,0.2796953,-0.2653467,0.5498831,-0.9516152,0.5597667,0.3146062 +0.033261307,-0.14743467,-0.4082913,0.053778417,-0.0082693985,0.18525451,-0.29544076,-0.56602746,-0.21266064,0.79292935,-0.069036864,-0.20884095,-0.2656593,0.057647336,0.8683704,-0.29045323,0.13236094 +0.22762036,0.2345419,0.21130781,-0.33237097,-0.080383316,-0.048748944,0.19260702,0.056828443,0.04509276,0.118428126,0.15335785,-0.031183578,-0.17746823,0.22512844,-0.03785653,0.007331534,0.053160913 +-0.48052007,0.10407024,0.16073379,0.36943313,0.063575186,0.33425784,-0.060165137,0.2068388,0.2582564,0.9272175,-0.15502913,0.24531269,-0.02625794,0.4367185,0.22011098,0.1446292,-0.28836715 +0.07347833,-0.79579836,-0.5049302,0.40089738,0.69762975,0.12357801,-0.12805654,0.15813369,0.6819475,0.92500734,0.29770425,0.21126501,-1.1329151,0.36180717,0.22826682,-0.17893888,0.1308371 +0.13485591,-0.44024256,-0.2924685,0.80052805,0.62742573,0.28982946,-0.41686442,0.113136485,0.30264905,0.16523193,-0.22408247,-0.41518244,-0.0037821145,-0.17266388,-0.33960038,-1.288815,-0.3621094 +-0.27623913,-0.06878287,0.18783735,-0.20013735,0.26205325,0.12796785,-0.29882756,-0.16914536,-0.16035298,0.258849,-0.034287952,0.17414908,0.40028998,0.035347678,-0.37573075,-0.065295294,-0.05196277 +-0.26474285,-0.16566382,-0.039423276,0.7116409,0.10562256,0.093606554,-0.1745094,-0.29776424,0.023185778,0.2512275,-0.18451893,-0.29716143,-0.01581688,-0.089866035,-0.04525879,-0.05672615,-0.1370523 +0.30050504,0.19668193,0.06461556,-0.12320436,0.28534743,0.14912443,-0.007175625,0.053813584,0.19186084,-0.16092306,0.06686324,0.13817813,0.15015444,-0.12451523,0.03685243,-0.14636733,-0.10241144 +0.16174185,0.15573807,0.21862195,0.1326912,0.017356222,0.021421466,0.24359839,0.28783363,0.073358364,0.026191898,0.22355686,0.14620964,0.05187017,0.07702035,0.077628806,0.15328571,0.10550873 +0.0186629,-0.059142984,0.09717023,0.96443105,0.24249053,0.2080679,-0.0046005985,-0.02615385,0.13360369,0.12365536,-0.09297688,-0.11351718,-0.008395934,0.12253222,0.21687469,-0.07175968,0.09437223 +-0.30992106,-0.1734999,-0.05338727,0.7133942,0.98632985,0.056939535,-0.19329321,-0.09938312,0.024220293,0.15852594,0.43062058,-0.38528368,0.5161228,0.07770788,-0.25630882,-1.0149547,-0.16016339 +-0.15971826,0.3164765,0.39329052,0.19440451,0.41511837,0.30855277,0.11118788,0.0011331444,-0.24221355,0.22137594,-0.2522491,0.09068168,0.6366147,0.37655306,1.983524,-0.03378939,-0.15447009 +1.0705856,-0.45705992,1.0527364,0.6540372,-0.118196614,-1.6232005,0.37650818,-0.6816536,-0.20119186,0.09158259,-0.79660153,0.4305613,-0.33116668,0.7461081,-0.18826374,0.2107306,-1.29143 +-0.09203027,0.37051994,0.18140124,-0.04310619,0.23874512,0.27968797,0.101842076,0.33583453,0.12093104,-0.14519271,0.31460267,0.26659647,0.30050537,0.008876856,0.82027537,0.04053949,0.023919305 +0.34542903,0.14259323,-0.07014323,0.36704254,-0.018933598,0.10639306,0.34487435,-0.23085028,0.26804537,0.3144059,0.260886,1.0589454,0.15898967,0.25374937,-0.15110976,-0.09503307,0.89675564 +-0.4125215,0.69172186,-0.055279803,0.005333764,0.176579,-0.2895667,0.21847658,0.41596055,-0.17938633,0.42442346,-0.36877805,0.10856773,0.7595904,-0.42875952,-0.58049047,0.35437548,-0.35834157 +-0.6903746,-0.42987034,0.25291976,0.71314406,-1.1562243,1.5649945,-0.4296945,-0.35645005,-1.2537303,0.3506133,-0.751151,-0.30795285,-0.16947289,0.39772,-0.42041102,-0.17020722,0.5298567 +-0.4476722,-0.105495766,-0.14846285,0.6620333,0.2781302,0.61984354,-0.55407363,-0.03870686,0.17373917,0.47985423,0.15091501,-0.16408233,-0.34505388,0.12369465,0.34235966,-0.44648635,-0.03739654 +0.6392274,-0.38733387,-0.12673056,0.39720732,0.96981126,0.28962225,-0.2826483,-0.16519925,0.54533815,0.88067466,0.56609726,0.33882296,-0.08140588,-0.3926051,-0.23670046,0.38329515,0.45149982 +0.029949924,0.100145385,-0.05467433,0.21828085,0.20467226,0.18141113,-0.094266206,0.137845,0.22203274,0.1416605,-0.060432654,-0.19148491,0.02122946,0.114566684,-9.9539175e-05,0.09713427,0.051711686 +0.114711925,0.15996376,0.068419084,0.18659338,0.14566821,0.015103535,-0.0898554,-0.012890831,0.059696857,-0.053971857,-0.1134505,0.043618057,0.17472047,0.114390396,-0.039871674,-0.16969253,0.19800921 +0.21917592,-0.09140713,-0.0973607,0.38932705,0.1309919,0.48473355,-0.40930596,-0.4414392,0.20484485,0.06062872,0.15340002,-0.29069945,-0.087533966,0.03516649,-0.11486977,0.10282779,0.09474938 +-0.12294603,-0.23315759,-0.24549526,1.0707446,0.16239105,0.71243715,-0.41057956,-0.47738892,0.28936607,0.5166518,-0.18823199,-0.16320805,-0.23192269,0.29784244,0.049301002,-0.39108756,0.17739959 +-0.2370597,0.112121105,0.3045507,0.3289167,0.08828661,-0.22181526,0.39876387,-0.13945755,-0.037305813,0.2969893,0.17299485,0.38726988,0.15744175,0.31194913,-0.48101902,-0.18315084,0.26552576 +0.75268644,-0.016707536,-0.31849408,0.48871365,0.6998805,0.5297887,0.001118374,-0.13254295,0.092561096,0.81316954,0.055571154,0.10760549,-0.52553886,0.03753098,0.25146428,-0.42302257,-0.24789503 +0.0939565,-0.40669185,0.11415506,1.8793774,0.34728393,0.33625486,-0.3834388,-0.64578414,0.13001889,0.25528267,-0.33711419,-0.09352581,-0.29381463,-0.016413946,-0.011122944,-0.45096296,-0.18526953 +0.121260546,-0.1365239,-0.0816981,0.18080375,-0.16904752,0.36746243,-0.08850313,-0.35094187,0.42477423,0.42550048,0.03896444,0.24300498,-0.17121899,0.29864943,0.94541705,-0.17660083,0.1630271 +-0.12596478,-0.53759193,0.20805185,0.24002448,0.5082224,0.7066756,-0.44346797,0.086252384,-0.24091,0.10299197,-0.97982454,-0.5613367,0.10376481,0.057963047,0.0065178266,-0.1923129,0.6742712 +-0.14167565,-0.10375207,-0.14088814,-0.23510928,-0.059698474,-0.06402916,0.046798516,0.07252386,-0.35171518,-0.120043516,-0.087520845,-0.18381101,-0.028513942,0.10502316,-0.34344894,-0.3131105,-0.055607326 +0.08018777,0.8648059,-0.16253076,0.26550424,0.12453662,0.7167667,-0.46070158,-0.6590826,-0.41928017,0.019319832,-0.6004146,-0.07617152,0.8826656,-1.4091417,0.00901403,-0.4261703,0.42289376 +0.45390844,0.3762924,0.10007924,-1.1628057,0.4616611,0.4884475,0.09192483,0.56012,0.6053962,-0.3273335,0.14640495,-0.17115617,-0.12218345,0.14268336,-0.13239051,-0.07681199,0.19008367 +0.042476915,-0.24037383,-0.0016729824,0.5631143,0.56381065,0.8432495,-0.660296,-0.56781834,0.46166238,0.7007372,-0.6491372,-0.2559424,-0.52626026,0.14739199,-0.068574436,0.06572033,0.002504961 +0.24456267,-0.14089036,0.029252969,0.052265428,0.033900235,0.067721054,-0.06256703,0.053940956,0.16762185,0.077543765,0.13458326,0.07264437,-0.10082427,0.25410736,0.49708968,0.0009112365,-0.12961489 +0.47067794,0.11922917,0.018206054,-0.042316016,0.4975398,-0.41832995,0.048367728,-0.5716126,-0.5250644,-0.16818456,-0.23422557,-0.57942367,0.2153774,1.317714,0.36481687,-0.34987998,0.3112052 +-0.056396343,-0.0033555296,0.12109046,0.19265567,0.07887419,0.20645721,-0.1201188,-0.033537824,-0.06340851,0.5607354,0.021829702,-0.12781087,0.1875049,0.05970236,-0.23240171,-0.048701562,-0.07658646 +0.2695598,-0.37216887,0.0017368392,0.065515585,0.092632115,0.003045655,-0.16065124,-0.046762113,-0.11626298,0.53023046,0.029182473,0.2624467,-0.056736074,0.38465518,0.27562925,0.24319668,-0.028952554 +0.37718913,-0.002769997,0.13722502,0.61303043,0.06862056,0.2731378,-0.06282034,0.24018572,0.44143528,0.8581911,-0.113833606,0.61582774,0.16376074,0.29671496,0.35551617,0.026479188,0.22286543 +0.7111035,-1.0292811,0.039217576,0.36819303,0.6668793,-1.1718912,0.13079761,0.6748747,0.92253596,-0.8201472,0.14342992,0.03576924,-0.85131544,0.77846795,0.076206215,0.41299984,-1.5965073 +-0.21189386,-0.03693948,0.0368595,1.8453836,0.36089522,-0.013285052,-0.17467862,0.3302519,0.4681963,0.19492304,-0.31106532,-0.32086354,-0.15307331,-0.07144453,0.65614474,0.17190628,0.11034709 +0.7632513,-0.1723812,0.01835036,0.35169703,0.34731928,0.14519282,-0.17488724,-0.23801053,0.8985379,-0.22879042,-0.44044676,-0.08278827,-0.19292696,0.67217505,-0.1430818,0.552803,-0.039573148 +0.895923,-0.7448802,0.05200192,0.56906205,0.5475077,-1.1800928,-0.2978024,0.32613787,0.49770564,0.38190603,-0.18875325,-0.40411022,0.4738635,0.700599,0.34356204,-0.48201305,0.300375 +0.25616217,-0.5658035,-0.46298036,0.109387465,-0.07716357,0.056158867,-0.2368824,-0.46879932,0.36322507,-0.6170067,-0.0701588,-0.38732973,-0.68562365,0.15115029,1.1670034,-0.38907105,-0.48075265 +-0.09130927,0.315208,-0.12574597,0.13864788,0.11661587,0.22710785,-0.1808432,-0.023448067,0.22313392,0.28192508,-0.33704284,0.50622696,-0.059745688,0.07805611,0.183082,-0.12990396,0.28150567 +0.28768924,-0.22290114,0.0013366562,0.20145562,0.15711628,0.79103917,-0.15045844,-0.35357782,0.22634907,0.5897137,-0.0017420177,-0.09229059,-0.060524225,0.37028515,0.2769685,-0.098806776,0.033442117 +0.52167445,0.17048709,-0.16611259,0.2995628,0.53264433,0.2085802,0.40809894,0.27739587,0.41013294,0.31670275,0.17917539,-0.110520154,0.030551098,0.9984031,0.044280827,0.15093791,-0.23635532 +0.018942133,-0.027138755,0.112338595,0.4168239,-0.07289618,0.010664775,-0.018368209,-0.06937304,0.025759654,0.035742074,-0.03440956,-0.026027977,0.19146374,-0.034848273,0.34342304,0.08432335,0.017401937 +0.14846621,0.16713552,0.050381195,0.23376805,0.44527495,-0.024313934,0.10687392,-0.16419357,0.21905638,0.11357246,0.17586344,-0.13332704,-0.0062600174,0.19086002,-0.07307802,0.33499497,-0.0009789829 +1.1292574,-0.34086332,0.09611599,0.63447654,0.11623918,0.33352962,-0.17966138,0.73000276,0.28679228,0.77655417,0.29933634,-0.63379693,0.2860824,0.65446496,-0.31944504,0.28466126,-0.77485174 +0.333122,-0.103462406,-0.5278678,0.123560145,0.10492831,-0.2002273,0.033447336,-0.6487388,-0.09398599,0.59448135,0.16100879,-0.4285747,-0.48540914,-0.2785524,-0.76134837,-0.26679963,0.463978 +0.28388727,0.091787845,-0.4499575,0.18298389,-0.021780916,-0.35519096,0.18451516,-0.10637752,-0.1120758,-0.0075266175,0.010910694,-0.003364272,-0.41176748,0.07183073,0.5534146,0.00943636,-0.22802208 +-0.5358634,-0.40871933,-0.1948985,0.7707478,0.36297432,0.91028243,0.057825975,-0.13884994,0.2075639,0.8129336,-0.43482873,-0.26500562,-0.4699559,-0.05732841,-0.32118008,-0.6552294,0.07047207 +0.03511589,-0.19767666,-0.09242175,0.02393482,0.18551715,0.023628587,-0.003752141,0.13358533,0.005433283,0.21961917,0.2600934,0.034639657,-0.049824562,0.021830931,0.37755296,0.124867015,0.2447936 +0.49281824,0.36130655,0.416736,0.56123716,0.057553086,0.43189102,0.01865717,0.16430126,0.6224918,-0.85419345,-0.12241324,-0.1587063,0.4018246,0.2957769,0.48804125,0.049306232,-0.19308007 +0.28819585,-0.12670352,-0.1666348,0.7561455,0.16894807,0.9276015,-0.3209653,-0.70302606,0.20224872,0.9105534,0.06625078,-0.24320255,-0.16459277,0.106072225,0.05297646,-0.40012968,-0.03888374 +0.6249558,-0.3146385,-0.017565312,-0.20262223,0.6610193,0.14622489,0.08111386,-0.018858768,0.45076418,-0.17100658,0.25922093,0.112835824,-0.6619504,0.8511611,0.40228704,0.44011605,-0.13499217 +0.20736043,-0.043320846,0.075383894,0.07661845,0.08766525,0.25200498,-0.017660713,0.2582195,0.009494993,0.14488359,0.08176336,0.08515627,0.025710272,0.3022324,0.19592427,0.33593366,-0.06995078 +0.024900822,0.092269726,-0.090624295,0.3417201,0.1969691,0.06679703,-0.11625446,-0.09448458,-0.10301535,-0.050926194,0.0049468447,-0.1156105,0.256382,0.01978608,0.116503,-0.055440955,0.07532031 +-0.05394661,-0.0818216,0.08924076,0.54824644,0.086311676,0.13497925,-0.25465277,-0.27253106,0.23902525,0.26477146,-0.17351328,0.2864838,-0.033943977,0.052034557,0.26364344,-0.052031998,-0.04770426 +0.41325197,1.0175036,-0.14196204,0.17311925,0.39256132,0.022975028,-0.30953556,-0.16560218,0.3236827,0.27646235,-0.091714405,-0.044410467,1.3910049,0.22490156,0.042777132,-0.2656772,0.09208745 +0.49527478,-0.38746983,0.100168586,0.031662654,-0.15870237,0.27059823,0.022164455,-0.1479079,0.50446814,0.30474192,0.1375962,0.004353747,-0.46109092,0.7789789,0.07857306,0.17039534,0.1472335 +-0.15553504,-0.10594377,-0.32719183,0.19070703,0.3346859,1.2825015,0.20168154,0.25681308,0.54403055,-0.80129963,-0.41107753,0.17249647,-0.6338508,0.43931562,-0.55542105,0.08976113,0.099951826 +0.17572507,0.030425716,-0.26906106,-0.06216963,0.19561455,0.086846866,0.12132852,0.06695427,0.17590506,0.2498264,-0.03679397,0.18045874,0.24155036,0.14033069,0.18616743,0.15151449,0.11611145 +-0.08740838,-0.25792617,0.42235348,0.32942274,0.18357514,0.3273097,0.08891662,0.14696747,0.22006153,0.14832817,-0.02615898,0.01939315,-0.059727278,0.13764475,-0.49396104,-0.36017153,-0.009208623 +-0.22644885,1.5687675,-0.325074,0.32967857,0.40253943,-0.040619694,-0.28922135,0.094775036,-0.1763691,0.111282915,-0.304454,-0.21858157,1.6763017,-0.19180305,-0.12260795,-0.5985885,-0.09312129 +0.008753754,-0.34742165,0.06061,0.24947663,0.09387153,0.049801398,0.12928528,0.08259294,0.15252663,0.2881306,0.04595128,-0.0033277685,0.17253436,-0.038934518,-0.9095177,0.24467614,0.40550825 +0.6062227,0.51992416,-0.27721685,-0.09675399,0.21122804,-0.5534733,0.3215758,0.15767765,0.42670465,-0.09944338,0.35633135,0.0020507327,-0.17264062,-0.5412327,1.039547,-0.052114032,0.44718 +-0.14653128,-0.12414761,-0.14614777,-0.24694568,-0.15444134,-0.15727644,-0.16192709,-0.41488463,-0.043474015,0.024165934,-0.2777964,-0.33778918,0.03376782,-0.028111152,1.0476234,-0.381979,-0.2107443 +0.26231217,0.18040209,-0.08553259,0.46557495,0.33558667,0.40131435,0.090566255,0.1677846,0.3303045,-0.048625577,-0.12563306,-0.07039392,0.22219977,0.1539877,-0.0839593,0.14112858,0.066507176 +0.62908417,0.036163375,0.07449783,-0.05698426,0.40199208,0.42865035,-0.24813814,-0.34677872,0.607871,0.46026513,-0.6519216,-0.03306152,-0.2092697,0.7370516,0.18929128,-0.23500267,-0.23166244 +-0.2843191,0.1495409,-0.14691338,0.15909448,0.2566978,0.26229814,-0.5659326,-0.23339841,0.01396177,0.14723489,0.39778706,-0.47176677,0.072369725,-0.15201095,0.30872124,0.13239802,-0.14258581 +0.3663531,-0.03067831,0.06577041,0.18668883,0.12797272,0.2552687,-0.28438926,-0.20986581,0.21653567,0.402595,-0.1030446,-0.03634368,-0.050251395,0.16737981,0.22853488,0.060211167,-0.020995054 +0.37114513,0.15925838,-0.00894948,-0.8839032,0.049694937,0.58025926,0.08571131,-0.5046054,0.51414645,0.40644866,-0.06284853,0.5670834,0.41092753,0.047690183,0.37799308,-0.36897132,-0.28552446 +-0.030550178,-0.19582193,-0.04121715,0.6207735,0.23741879,0.6734855,-0.20509633,-0.13179694,0.1178324,0.7409714,-0.4091442,-0.14489973,-0.21059075,0.3159931,0.049186885,-0.17131858,0.24609601 +0.2163012,-0.15283619,0.034564957,0.007256707,0.27600256,-0.063963585,-0.1521097,-0.04446478,0.126683,0.23397256,0.12171928,0.17488633,-0.025055382,0.26868173,0.44724366,-0.09439288,-0.07684364 +0.031261466,0.0034139992,0.0033939169,-0.041475117,0.25296858,0.4156565,0.10299766,-0.22733279,0.2216386,-0.10821999,-0.033985414,0.38277254,0.071575776,-0.084934406,0.0796241,-0.20549402,-0.33886454 +0.07066439,0.054241978,0.19120722,0.3384431,0.08644152,0.535209,-0.12182496,0.0010757655,0.2636263,0.3625894,-0.20204875,-0.09270884,0.055099797,0.09299392,0.3301841,0.043133315,-0.07254674 +0.16644049,1.3883784e-05,0.24887115,0.74323255,0.06582357,1.3084191,-0.43958113,-0.08553173,0.5190554,0.32930833,-0.23878251,-0.30889583,0.24891274,0.43979147,0.39884028,-0.07320825,0.48547724 +-0.31282765,0.1490344,-0.35182658,-0.10209054,0.28729913,0.33399186,-0.50173074,-0.21651705,0.14336254,-0.058224708,-0.5116408,-0.35440677,0.22356226,0.11303185,-0.18556222,-0.45844838,0.21817091 +0.13812497,0.047592055,-0.015952026,0.34168243,0.43873063,1.0030733,-0.022425856,0.16151296,0.4028628,0.24161671,-0.09768209,0.06117707,-0.011039378,0.008767856,0.020517148,-0.04325606,-0.030021155 +0.004000692,0.04465896,0.009484102,0.093257956,0.10255126,0.10559551,0.1897263,0.03296489,0.07796543,0.211736,0.12806545,0.13296771,0.09990517,0.17616066,0.16848595,0.0055682417,0.13518333 +0.46180198,0.12948555,0.07609584,-0.3819302,0.05931724,0.238152,-0.41585273,-0.34604424,0.27044377,-0.027394045,-0.70740044,0.12451749,-0.43200287,-0.11028311,-0.71996444,-0.6511701,2.0639696 +0.15369952,0.032859195,-0.3270992,-0.20585907,0.3597311,0.042713553,-0.20990235,-0.21165124,0.39109027,0.44429404,-0.093077555,0.21564467,-0.32866946,0.64484125,0.16140193,-0.32344508,-0.23542048 +0.51737875,0.050372344,-0.11030384,0.3989233,0.36091426,0.14177684,-0.2507768,0.003947212,0.2915809,0.2242554,-0.060753375,0.435398,0.22919768,0.45565882,0.15553458,-0.12245525,-0.018953754 +0.048541166,-0.09528603,0.053897306,0.3324674,0.3124284,0.70933276,-0.049427364,0.3420118,0.47858304,-0.55392987,-0.021072019,0.12820569,-0.18465787,0.055894475,0.34171325,-0.4444415,0.006976423 +0.34980294,0.011683408,0.45243052,0.23080061,0.03645717,0.29602644,0.7109892,0.25028136,0.20304967,0.066571385,-0.09766936,0.28684413,0.119913295,0.33561805,0.053823035,0.003503371,-0.04045744 +0.11525629,0.04093178,-0.0013304461,0.08454264,0.36030066,0.23135258,0.049574915,-0.14799818,0.12047261,0.11424177,0.026283221,0.0794241,0.16510235,0.019334394,-0.22368664,0.08685572,0.067658745 +0.16773525,0.0030873842,-0.0218201,0.15949877,0.1851911,0.22079603,-0.06688433,0.011004355,0.08456558,-0.010424795,-0.014782001,-0.08291829,0.030035658,0.15798105,-0.07665389,0.09674906,-0.044648472 +0.077247605,-0.018977053,-0.0055832523,0.10326048,0.164433,0.16228653,-0.047888063,-0.013486712,0.013809407,0.30737185,-0.017792799,0.077357106,0.07232677,0.21458448,0.22379783,0.023345789,-0.023817988 +0.06615237,-0.28587997,-0.060750164,-0.1271951,-0.058175452,-0.068691336,0.27802196,0.31219748,0.0021547577,-0.03648405,-0.04497629,-0.17610617,-0.011708997,0.0628623,0.042777814,0.0066059083,-0.06435132 +0.27495092,0.13185729,0.018254414,0.09086454,0.09627722,0.47782665,-0.15677838,0.14226936,0.06705502,0.22928965,-0.29195917,-0.027014313,-0.047122028,0.23801596,0.25520414,0.44210455,-0.010502249 +0.2219414,-0.18736687,-0.1625834,0.65719163,0.21531194,0.5914827,-0.27689406,-0.4712825,0.06788246,0.4774975,-0.053364616,-0.27314606,-0.21094893,0.04591287,-0.0020327892,-0.453362,-0.012707239 +0.13139325,-0.21783152,0.02536129,0.019772328,0.33628038,0.055863474,-0.18600903,-0.17605841,0.3034405,0.27197248,0.1454536,0.0043504876,-0.069106214,0.21389025,0.16072886,0.123528086,-0.03060167 +0.7612249,-0.102019094,0.42783168,0.057118006,0.0015677864,0.2245837,-0.25940612,-0.17907326,0.23525706,0.005310748,-0.13387294,-0.03889325,0.28646585,0.059689138,0.31305012,0.109972164,-0.49499664 +0.15365398,0.07385414,0.067789935,0.58121544,0.20734665,0.22832511,0.050732378,0.13237739,0.14007543,-0.117682464,-0.051681444,-0.077502884,0.049807247,0.06442151,0.16181777,-0.08312386,-0.097609326 +0.21880789,-0.06233141,-0.10790289,1.5812367,0.44025457,0.5061098,0.1181963,-0.5819997,0.37851855,0.66511935,0.41531464,-0.32299784,-0.34648967,0.4702259,-0.11339975,0.08319648,-0.13828033 +0.26728192,-0.060870517,0.011388247,0.23296806,-0.5979523,0.6173055,-0.22602868,0.061647452,0.0963181,0.7103133,0.119885884,0.21072623,-0.2649499,0.50372374,-0.19502479,0.34895557,0.29828444 +0.5486353,-0.20934041,-0.8636025,0.050447967,0.6805014,0.2988988,-0.42704126,-0.14602038,0.33472723,-0.09780785,0.16921203,0.29175964,-0.66164607,0.8102206,0.5794745,0.27662545,0.17220151 +0.22275867,-0.034987636,0.028276676,0.85724753,0.011426006,0.2955254,-0.27546299,-0.44677618,0.18428917,0.0685404,0.04481297,-0.28235108,-0.12703447,0.13014597,-0.028886415,-0.39161968,0.051134534 +0.3332624,0.007827786,-0.68579394,-0.08212702,0.65311897,0.28955153,-0.6124406,-0.16611132,0.19408931,0.035987284,0.29773754,-0.063656576,0.51178956,0.30277982,0.30840445,0.21403815,0.23103166 +-0.14704807,-0.19452898,-0.38588205,-0.06915583,-0.23646119,-0.056832105,-0.2645428,-0.33201653,-0.08181624,0.22127143,0.0021923461,-0.19160536,-0.33783424,-0.084190406,0.35515103,-0.18264723,0.18569098 +0.14388375,-0.06922807,0.036965284,0.19386972,-0.045774654,0.12536927,0.03177407,0.05504765,0.2266435,0.06472121,-0.08533517,-0.07694595,-0.01132861,0.059077416,0.028885141,-0.07997752,0.012730715 +0.2008511,-0.14908744,0.19971411,0.1804033,0.27371776,0.16037045,0.15080255,0.2175755,-0.09677315,-0.018445496,0.10575097,0.18359701,0.18162833,0.23114327,-0.03531913,0.24162823,-0.023831544 +0.5941421,-0.2947457,-0.17666504,-0.08063226,0.12290637,0.010583447,-0.22520477,-0.4755356,0.13325697,0.13205971,0.016266892,0.16190664,-0.25559273,-0.30588213,-0.26362383,-0.06710835,-0.1203316 +0.032512628,-0.091914885,-0.05366245,0.3018122,0.8296766,-0.36241123,-0.28657076,0.12507938,0.87785625,-0.7992499,0.24444416,0.2014271,-0.36912185,0.51576924,0.007685195,0.0981818,-0.1971069 +0.31861708,-0.1818409,-0.1713102,0.5885123,0.12547,0.019198943,0.27706587,-0.28739443,-0.061328102,0.28875396,0.3670245,-0.014559603,-0.2533735,0.26522437,1.4117236,-0.18119992,-0.06671725 +0.027204577,-0.12566806,-0.04390268,0.19089656,0.41952804,0.32253858,-0.298624,-0.33440724,0.39480785,0.08868841,0.14528686,-0.27851197,0.08217228,0.3187723,-0.08702129,0.3083873,0.5416267 +0.4351581,-0.31193143,0.12305082,0.1243507,-0.16133681,0.8794994,-0.03576853,-0.32640734,0.053100515,0.24216743,-0.669694,0.19287938,-0.43389836,0.43361613,-0.2673218,-0.24368611,-0.06476696 +-0.09529649,-0.03375511,-0.05448781,0.54573214,0.16946568,0.37047002,-0.060310483,-0.1839522,0.20861751,0.122558214,-0.32103673,0.21940854,0.05926046,0.20448045,0.12767163,-0.21930394,-0.22876796 +0.28272578,-0.22626865,0.013068641,0.33253592,0.35223088,0.22283475,-0.28517845,0.028879276,0.1806283,0.20828195,0.34398657,-0.21506162,-0.1967757,0.16017744,0.28219473,0.26016152,-0.061598953 +0.031086285,0.62314564,0.09036099,0.100614056,0.08931602,0.56549126,-0.25290805,-0.40942696,0.5500238,0.3955149,-0.19119099,-0.25332236,0.3783521,0.54364794,-0.1289515,-0.30768996,0.19972542 +0.021470146,-0.37147865,-0.59138536,0.30622652,-0.016827311,0.7811616,-0.34302983,-0.5076962,-0.05219585,0.40824616,-0.072048455,0.06832737,-0.30958506,-0.06717354,0.10960378,-0.4694226,0.07197528 +-0.29409882,-0.049823266,-0.49259904,0.42472634,-0.9095331,0.75945103,-0.6909307,-0.1284235,-0.2461613,0.078265764,-0.09335362,-0.5925571,-0.089413725,0.22584677,-0.2852359,-0.9014982,0.77495474 +0.11365411,-0.29960397,-0.05028395,2.1456945,0.39215145,0.60202384,-0.14988546,-0.4005781,0.37447548,0.4732323,0.03168635,-0.31973377,-0.54771227,0.42487413,-0.03623293,-0.30871177,0.06885285 +0.16574742,-0.22533262,-0.10630336,0.3758578,0.062869385,0.46441945,-0.4885309,-0.23369797,0.19750313,0.033914942,-0.18584125,-0.1270062,-0.1579974,0.1228127,0.2469043,0.059661947,-0.10066699 +0.3516787,0.29497537,0.17470966,-0.40980488,0.33954957,0.17874919,-0.03564622,-0.21252678,0.40220857,0.27332678,-0.44521534,0.36148995,-0.42178798,0.42383403,-0.06806673,0.1945842,-0.10942588 +-0.1283175,0.2078831,-0.23106289,-0.12458994,0.15459996,0.34400547,-0.44338498,0.43689442,-0.36448106,0.20335779,0.098131426,0.0906095,0.23753782,0.042344354,0.4155869,-0.2879441,0.47766548 +0.4223938,0.46854204,-0.25390145,0.33463436,0.12162521,0.1230351,-0.26805365,-0.3301429,0.17753582,0.4241121,-0.11363843,0.11437742,0.22643232,-0.26392436,-0.3390251,0.1075078,0.5463701 +-0.10627078,-0.22958805,-0.09751919,1.7495915,0.18265441,0.4961518,-0.34374383,-0.45110646,0.41596085,0.2348004,-0.124484874,-0.5182534,-0.38875285,0.055370912,0.046185814,-0.22387458,-0.066952296 +0.12454337,0.14101136,0.11730254,0.17836094,0.087067686,0.22662811,-0.08190493,-0.015384697,0.12616283,-0.05708334,0.048258357,-0.046455376,0.065303884,0.100584395,0.18182811,-0.026667088,0.053196814 +-0.08992349,0.19684476,0.1154549,0.084866226,0.18472503,-0.20934413,0.261677,-0.06615605,-0.03597129,0.04205572,0.12247099,0.2201661,0.24987811,-0.010154626,-0.4735711,-0.1277432,0.2639349 +-0.047014486,-0.16455223,-0.019841144,0.57409286,0.23314084,0.115070656,-0.13315356,-0.0644747,0.080273226,0.2594819,-0.10718304,0.20313902,0.039392676,0.19667196,0.22357248,0.016072758,-0.0048049204 +0.3001462,0.5355292,-0.34920055,0.051225077,0.27246577,0.98629844,1.1040817,-0.55978847,0.23909138,0.06912291,-0.033680968,-0.22304468,0.3371202,0.46567667,0.53109336,-0.0573581,0.26978055 +0.25134644,-0.08295895,0.03981415,-0.04706175,-0.4482144,0.40483874,0.03581335,-0.20226704,-0.039635226,0.2674453,-0.5127598,-0.055738278,-0.113967404,0.25992438,-0.07568285,0.06551603,-0.47441205 +0.4954315,-0.17827778,-0.038828287,-0.10055257,0.04862758,0.021412786,-0.40092453,-0.2031161,0.29325527,0.42890134,-0.0658314,-0.36620763,-0.21973771,-0.10391788,0.41253403,-0.1420305,-0.23050499 +0.18246841,0.15292865,0.0033491948,-0.080767274,0.30002272,0.25637594,-0.11374661,0.17351043,0.305473,0.006254884,0.016771546,0.06070336,0.070975214,0.09029086,0.08857862,0.08572259,-0.017790966 +0.4881957,-0.13977657,0.029937731,0.3416417,0.11722683,0.19944505,-0.12910007,-0.022011,0.16565667,0.09579865,-0.16719197,-0.2584326,-0.16550855,0.21883407,0.26468787,0.35322896,-0.29528186 +-0.03167605,0.36655456,-0.30007845,0.14699717,0.121040255,-0.39414665,-0.2765118,-0.6195609,-0.09641275,0.43240458,0.07520881,0.3002648,-0.28291112,-0.2228115,1.0246383,-0.29952976,0.6461873 +-0.51192176,-0.44459143,0.15427628,-0.103513554,-0.5026948,-0.17968288,-0.63294184,-0.5876418,-0.63865626,-0.51116467,-0.55736524,2.0095108,-0.48062384,-0.70499706,-0.23018678,-0.33652866,-0.063249804 +0.035965383,-0.12993494,-0.08384514,0.015731892,0.07170874,0.0721418,-0.023708778,-0.077691525,0.3408391,0.3873773,0.13023524,0.7568221,-0.09037269,0.14312364,-0.40306306,-0.23957244,1.0014263 +0.15358444,-0.03732497,-0.18049869,0.08426484,0.12007449,0.10486789,-0.10798662,0.2872614,0.2508387,-0.06453932,-0.07234244,0.14221397,-0.0010924842,0.009419159,0.105066806,0.14059226,-0.06332327 +0.6206463,-0.08238213,-0.3899432,0.52691305,0.2544513,-0.21834913,0.56269306,-0.13834092,0.21438551,0.1915086,0.64031804,0.05283604,-0.33585778,0.09747533,1.7816247,0.29695275,0.3573486 +0.21883433,0.16878392,0.10908809,0.43296045,0.31149152,0.23591134,-0.1335466,-0.17677942,0.54515177,0.20457235,0.17685635,0.020877916,-0.07820005,0.16280755,0.08143758,0.17249534,-0.032195795 +0.1800746,-0.06565565,-0.26930866,-0.10726518,0.06998143,0.46138382,-0.58377355,0.38587388,0.09593403,0.19632149,-0.13068189,0.009978569,-0.36594617,-0.0128857065,0.79085815,0.4857548,0.31651068 +0.42367154,0.091042474,0.4964424,0.5013701,0.54169,0.47456425,0.5187361,0.32214552,0.3276318,-0.7065672,-0.07744064,0.019567069,0.23445193,0.4089028,0.7512373,0.3056969,0.03927665 +-0.044157974,0.42065984,-0.018988047,0.06072104,0.16621162,0.10863338,0.014253996,-0.21233755,0.1287197,0.48842093,-0.007906733,0.09102741,0.11031035,0.12446177,-0.3621549,-0.066684835,0.19707438 +-0.45695448,-0.12508719,0.34618354,0.6948185,-0.27359027,-0.09368447,0.2863373,-0.21001698,-0.48080656,0.42497808,0.26093623,1.8137213,0.2683527,-0.14933954,-0.4920328,-0.2223679,0.47453094 +-0.42590362,-0.27095577,-0.5438109,0.04978125,0.011777842,0.6472424,-0.5026321,-0.7557089,-0.1207764,-0.2464037,-0.6396158,-0.025699431,0.5764687,-0.20029128,-0.28877708,-0.46610183,-0.44313267 +0.1519636,0.24550265,0.06884502,0.086175494,-0.30283266,-0.03876454,0.118099116,1.6734293,0.38724858,-0.6741803,-0.06954968,0.07079208,0.14466022,-0.028614903,-0.8037393,0.31223768,-0.58550143 +-0.011387077,-0.12539415,0.15567689,-0.024977352,-0.030909851,0.053577445,-0.34938067,0.2692885,-0.102170154,-0.19636068,0.1259146,-0.2767265,0.1638391,-0.22305514,0.42795962,-0.03674892,0.038154323 +0.087965526,-0.06347718,-0.27767068,-0.29529682,-0.419401,-0.24553333,-0.5850751,-0.6169248,-0.2087739,0.83285034,-0.3282322,-0.09160076,-0.2953796,0.2181493,0.8953455,-0.4887783,-0.24489287 +0.34921476,0.26763004,0.063471444,0.1554531,0.32339278,0.44032267,0.0071632774,0.19195737,0.06477093,-0.4530717,0.018645827,0.09638328,0.15118942,-0.14599602,0.22976005,-0.034133114,0.005368142 +0.008224835,-0.17355563,-0.21662769,0.63682216,-0.060849078,0.88226783,-0.3386521,-0.6093584,-0.017737199,0.026356211,-0.23481682,-0.6103311,-0.29225984,0.119283706,-0.2880288,-0.22532555,0.018437067 +0.33622196,0.15808082,-0.15953611,0.14668998,0.10823565,0.21136054,0.043149058,0.09479522,0.33122885,0.09910778,-0.037106127,0.7071603,0.059594125,0.260957,0.353319,-0.012261001,0.26907733 +1.0307282,-0.023435881,0.17002255,0.31695437,0.47781488,0.53518254,0.11809591,0.42194507,0.16001427,-0.16486622,-0.42568654,0.13268238,0.06800933,1.309534,-0.12574945,0.62936246,-0.19516622 +-0.016060585,0.06039021,-0.024860606,0.105794355,0.16318749,0.1705399,0.0005113092,0.1700254,0.08552601,-0.017440988,-0.09101886,-0.012870266,0.013808588,0.15407339,0.014710502,0.0619439,-0.068644136 +0.090080336,-0.06132879,0.0040071392,0.7203956,0.46944258,0.41003466,0.010502976,0.14965886,0.34329364,0.08460964,0.14513691,-0.19280577,-0.10747024,0.4880945,-0.07793517,0.29367277,0.09566809 +0.083639264,0.055171665,-0.43141282,-0.3412535,-0.20522454,-0.6976949,0.040694416,0.11396564,-0.29115292,0.029527122,0.04672934,-0.08412755,-0.19387597,-0.056316927,0.62146205,0.106127344,0.07449999 +0.7881444,-0.057298098,0.38925692,0.39955252,0.49955192,0.20066035,0.28588066,-0.23085603,0.38501024,0.23946488,-1.1658803,-0.16220951,-0.35289732,0.85201824,0.21527508,0.23667008,-0.23584917 +-0.15211028,-0.036973618,-0.050926864,0.27642256,-0.06817323,0.36199427,-0.5404985,-0.44115826,-0.063163206,0.5801814,-0.4971251,-0.65877503,0.16059835,0.12555413,0.95761,-0.38126826,-0.37676567 +0.65660065,-0.1678188,-0.15868744,-0.08179636,0.36229065,0.14185128,-0.43919423,0.37557533,0.24044576,-0.6161206,-0.34862244,-0.2558251,0.35436577,0.06276873,0.63783604,0.17161186,0.47545603 +-0.1430247,-0.21114784,0.05283159,0.19679433,0.035204213,-0.15411626,0.3521866,0.29962474,-0.26396933,1.3212413,0.5957584,0.054407846,0.02050761,0.0024505267,0.30181327,-0.09758947,0.35796475 +0.6655352,-0.038314443,-0.35928005,0.51484495,0.5874863,0.40632194,0.005001151,-0.5054994,0.41282752,-0.003748966,-0.18385273,0.1560105,-0.5128588,0.07462991,0.10031834,0.396075,0.1556905 +0.09911753,0.27360913,-0.19612604,0.1340354,0.09184492,-0.48188218,-0.3546309,-0.13906725,0.37798518,0.37278366,0.042587087,0.021589287,0.49721432,0.4138926,-0.0030394732,-0.21747768,0.0113260355 +-0.31828302,0.41303983,-0.14502534,0.25447348,0.16984771,0.33801526,0.013176259,-0.36787647,0.81484836,0.07887325,0.3696014,0.26843426,1.3315006,0.1993095,0.21532634,0.17802872,0.12069202 +-0.0861044,0.10605171,0.1121715,0.22412781,0.119229876,0.025294745,0.18151353,0.39772245,0.097682655,0.124599464,0.17820258,0.025848381,0.11241774,0.13627107,0.19172302,0.19141677,0.21098585 +-0.01575899,-0.09184102,0.09585301,0.03180091,0.045780186,0.027024785,-0.029044876,-0.016929302,-0.04161974,-0.04273004,0.00033696066,-0.13668603,0.03690281,0.050009962,0.39227134,-0.06690881,-0.1959115 +0.52016586,0.19003065,-0.054296035,0.95936215,0.41189367,0.58168423,-0.30703998,0.06937348,0.5015341,-0.11738022,0.17050649,0.036417108,0.07101418,0.34635538,0.06729199,-0.031073982,0.07847948 +0.23515579,-0.06092753,-0.22138645,-0.12678899,0.22590479,0.173809,-0.29947782,0.31260374,0.48951104,-0.057734635,0.30117947,0.294595,-0.58935535,0.04153486,1.4179592,-0.20096733,0.07719904 +0.17879674,-0.1900608,-0.08488284,1.732238,0.34958884,0.5617666,-0.47756514,-0.08978231,0.42891574,0.4425794,-0.1000945,-0.31162778,-0.07430536,0.5050805,0.04636764,0.035416856,-0.28081992 +-0.4547751,-0.38386977,-0.08073456,0.47492775,0.46628717,1.6015266,0.7237199,-0.4130668,-0.11377166,0.43033692,0.4602338,-0.44800806,-0.14511262,-0.21713027,0.11970572,0.08592065,0.121643156 +-0.39128697,-0.42904887,-0.14160337,0.8127725,-0.22338095,1.1965303,-0.09172405,0.6764327,0.09361253,0.52855456,-0.14709516,0.16029304,-0.6112284,0.08262609,0.423753,0.53907394,-0.064981945 +1.0328028,-0.31368572,0.20819513,-0.064003296,0.01534414,0.08949207,0.26065388,-0.12000178,0.7843921,-0.18273474,-0.5995446,0.12582909,-0.48607993,0.933115,0.3108842,0.3632211,-0.071740255 +-0.09552144,-0.3195165,-0.5758541,-0.104070075,-0.1593674,-0.17512791,-0.18054552,-0.8842214,-0.23008257,0.5026765,-0.11661241,-0.13299698,-0.45420784,0.09406544,1.2097524,-0.5120761,0.100293025 +0.18138982,-0.06799768,0.11595643,0.28319126,-0.03137851,0.21679197,-0.25451162,-0.4980881,0.45754814,0.48108006,-0.33283818,-0.09278488,0.06549205,0.3119419,0.5643212,0.50326663,0.31342787 +0.33337563,-0.0136378845,-0.43427205,1.2389407,-0.16607611,0.14076504,-0.5481846,-0.24856593,0.050289035,-0.22273979,0.12918158,-0.27107507,-0.1496957,-0.05587062,-0.22370149,-0.017649453,-0.25814152 +-0.34959826,-0.22589377,-0.0035021491,1.4149759,0.3739507,0.39522508,-0.4199286,-0.30300164,0.39187363,0.20455687,-0.28488111,-0.11492674,-0.2051073,0.3238515,-0.050162483,-0.297749,0.051370736 +-0.35812813,-0.5131909,-0.682048,0.15652111,-0.17443527,1.1590059,-0.90568703,-0.39105386,0.19577384,0.22672987,0.25121632,-0.3352812,-0.77351886,-0.3147966,-0.5895683,-0.46376547,0.5045307 +0.22754154,0.19268687,-0.18535198,0.028985959,0.033537347,-0.13564166,-0.41238368,-0.44593844,-0.18138732,0.2327621,-0.12577055,-0.13676442,0.20616905,-0.29587805,0.28388035,-0.22176816,0.06254022 +-0.2805661,-0.16522804,-0.08009594,-0.40405202,0.14228377,0.03499346,-0.53828895,-0.27637655,0.26004454,0.039763056,-0.3482547,1.816831,-0.48915753,-0.16281828,-0.29547393,-0.2774849,0.049560115 +0.07808311,-0.013148451,-0.38300428,0.36879984,-0.22684804,0.81603545,-0.025265722,-0.19122285,-0.37576684,0.74221146,0.46842945,0.099432245,0.037644822,0.08827807,-0.34405115,0.35655934,0.46311533 +0.2516535,-0.3145272,-0.37191164,-0.12811568,0.40394628,0.60846364,-0.72012955,0.6582693,0.42278916,0.16152261,-0.05436053,-0.35380417,0.07401398,-0.34742644,0.06247906,-0.49899736,0.43067026 +0.062443525,-0.14710976,0.37170509,0.19653724,0.147619,0.026984073,-0.0026155272,-0.4080776,0.21579218,0.52910525,-0.14885366,0.2330865,0.013501551,0.35211378,0.74909693,-0.49060276,0.058281038 +0.11860022,0.08615174,-0.08891282,-0.0356984,0.68398327,1.593386,-0.1000069,-0.037666198,0.6604936,0.36596307,-0.19680864,-0.07578425,-0.10589885,0.14526108,-0.17298082,-0.32078642,0.31151485 +0.08190138,-0.16389082,0.02364792,0.11779719,0.071403995,0.20041718,-0.025249537,0.1506525,0.11489546,0.26238552,0.10904868,0.07150898,-0.094212346,0.18681997,0.04885032,0.31669274,0.18103777 +0.17677698,0.1592774,-0.03888284,0.26026383,0.23439994,0.99942017,-0.14233802,-0.0794577,0.46329612,0.2011781,0.2208952,0.17538583,0.050575696,0.031138862,0.113492176,-0.08534764,-0.22964731 +0.3905917,-0.08496209,-0.21023436,0.06264285,0.24325143,0.2034954,-0.26365232,-0.21382318,0.32581526,0.18750729,0.06957406,-0.042124018,-0.116996974,0.2687324,0.35895163,-0.14145355,0.07143324 +-0.24297899,-0.5403538,-0.59443384,-0.06072811,-0.38477156,-0.115292646,0.1551065,-0.41948694,-0.011887458,0.848857,-0.064860456,-0.43538097,0.0063252174,-0.04661912,-0.10563468,-0.21120742,-0.19806911 +0.9054481,-0.19807413,0.09070868,0.23998736,-0.069260724,0.34312534,0.015676526,0.62758845,0.19356263,0.2482416,-0.16730283,0.3180553,0.027052766,0.31196147,0.42346427,0.032537207,0.57407564 +0.20272703,-0.14086673,0.11938394,1.0493652,0.32724392,0.32342628,-0.29190207,0.04150006,0.25240782,0.5268062,-0.31440306,0.2279057,0.19797654,0.19141577,0.4487203,0.017881578,-0.012170656 +0.082827225,-0.16512369,-0.1235802,0.74328583,0.21206225,0.50023043,-0.3333919,-0.3496027,0.3098826,0.23070388,-0.10482786,0.11373083,-0.024523621,0.111479096,-0.089264676,-0.008345988,0.29780063 +-0.3165861,0.0009767944,-0.22494626,-0.24250993,-0.45406654,-0.35439995,-0.45572826,-0.4009922,-0.4495006,-0.2949545,-0.5703728,-0.49248186,0.074035026,-0.42536178,0.19777359,-0.47644815,-0.40361768 +0.831928,0.014404059,-0.06806531,0.08260874,-0.20745762,0.095568635,-0.37764612,-0.69412166,-0.2668549,-0.03328737,-0.042313647,0.5755607,0.3690735,0.062580995,-0.122867286,-0.42282838,1.1138941 +0.3085096,-0.004057798,-0.01950133,0.49576405,-0.26339293,0.5599971,-0.5124551,0.31725797,-0.18359622,0.44894004,-0.22471297,-0.05344326,-0.107206285,-0.15319438,-0.26744044,-0.526861,-0.018714713 +0.3106137,0.052570038,0.41253343,0.34419236,0.18049102,0.20920114,0.058249056,-0.65539926,0.27836162,0.10888568,-0.77687716,-0.61727566,0.3967131,0.2931015,0.0021615988,0.24911708,-0.32607478 +0.34101263,-0.43547374,0.23591258,0.24333951,0.027616126,0.11177469,-0.09234496,0.32661662,0.25485846,0.054327533,0.46133628,-0.15400416,0.15392497,0.07440876,0.98980224,0.2371331,0.026856188 +0.3290913,-0.2335288,0.06520933,0.88691527,0.6238523,1.3466667,-0.28701997,0.0870027,0.51853555,0.42971364,-0.10470127,-0.29402602,-0.039623644,0.39747328,0.09741217,0.5067446,0.52239126 +-0.14179651,-0.40601015,0.024114314,1.5570295,0.4266099,0.33447218,-0.46816474,-0.26541162,0.46604615,0.20701379,-0.13270903,-0.4953703,-0.48966932,0.23026314,-0.027053898,-0.27631187,-0.101266444 +0.93856114,-0.3369967,0.24939635,0.089975335,0.8476505,0.3569646,0.032748953,-0.32515153,0.98673356,0.24913304,-0.0766954,-0.119175956,-0.33456817,0.45299798,-0.4315334,0.09890285,-0.20479292 +0.21569674,-0.05277871,-0.04747871,0.4511758,0.17746037,0.5114379,-0.26420382,0.291491,0.19053222,0.48350883,0.21338882,-0.20827988,-0.05543049,0.16689342,0.74129033,0.14975259,-0.10564113 +0.20270015,-0.05270838,-0.050152775,0.2210114,0.2315572,0.122432746,0.14873189,0.16781566,-0.060925666,0.3527496,0.2525087,0.21243758,-0.0030693861,0.28895688,0.3863758,0.30058753,0.068198845 +0.745014,0.015755374,0.5282571,-0.10174983,0.27898917,0.2639814,-0.3082658,-0.13606338,0.7438669,-0.36441517,-1.305644,-0.054749,-0.14396502,1.3818765,0.7465281,0.5705241,0.11710148 +0.051578954,0.02495972,-0.23630904,-0.011511432,-0.009543004,0.14586933,-0.22227138,-0.43560457,0.36971623,0.2744326,-0.21668988,-0.81620085,-0.1437362,-0.33309367,1.4042217,-0.84357643,-0.509025 +0.38279822,1.6605452,0.22435889,-0.2836697,0.26964945,-0.089385495,0.1659751,-0.022129022,0.14833957,0.37953493,0.34450117,-0.034919377,1.3790389,0.5014981,-0.5223046,0.4523209,-0.34719077 +0.9243673,-0.45979786,0.31996503,0.23982161,0.94271517,0.52942264,0.29170433,0.078852795,0.73633593,-0.2186285,-0.06846424,-0.076055944,-0.64523065,0.39670607,-0.4848474,0.039178543,-0.20671904 +0.39079064,0.29892215,0.30844504,0.6702383,-0.034186963,-0.12190465,0.1584859,0.12027559,0.103868194,0.49405065,0.19072405,-0.14777914,-0.12820537,0.11145966,-0.13612671,0.019984148,0.023610355 +0.8263689,-0.020048954,-0.044400662,0.17240934,0.8643614,0.1846294,-0.07590507,-0.04395418,0.6999109,-0.6446291,0.3886185,-0.040621914,0.24831153,0.22766367,-0.211613,-0.18583229,0.16365905 +-0.11755918,-0.5290208,-0.31648576,-0.13674472,-0.36874115,-0.032543514,-0.23473132,-0.8641114,-0.24402826,0.59980047,-0.32224843,-0.17291875,-0.2241496,-0.06943072,0.95798343,-0.6443691,-0.090067975 +0.15732968,-0.28765985,-0.10056213,-0.10589954,0.055000417,-0.16485268,-0.09693234,0.0035679266,0.105704114,0.110387184,0.1218557,-0.08561724,-0.23609704,0.15587758,0.90001965,-0.039204374,0.0978904 +0.29086936,0.119778626,-0.2826149,0.40406984,0.74843955,0.46906406,-0.6712044,-0.109298326,0.74005944,-0.14320831,0.13995728,-0.44070357,0.39261767,-0.06502724,0.29010507,-0.40397415,0.24014191 +-0.21988013,-0.074629456,0.073849775,0.41966513,0.32867655,0.15259838,-0.03477334,-0.041675407,0.2128883,0.24539018,-0.14610861,0.6750798,0.2823351,0.29874846,0.38147268,0.07653965,0.07942113 +0.39470947,-0.30121014,-0.032924544,-0.55339074,0.20825233,0.8601601,-0.14132509,-0.1751085,-0.115673766,0.66263485,-0.0052823345,1.4872272,0.58805025,-0.86690885,0.8555281,-0.78445685,-0.062053032 +0.055816554,-0.33995324,-0.011631307,0.2359791,0.04016036,0.22855388,-0.15070345,-0.30140477,0.16940232,0.94246227,-0.26419973,-0.23204552,0.098832116,0.1288622,0.07325674,-0.19083694,-0.14909197 +-0.06273721,-0.60724324,-0.29022324,0.12266829,0.051772345,0.2111595,0.0043863375,-0.36099952,-0.055528294,0.6568322,0.3483427,0.21820593,-0.03382715,0.17697896,0.8586914,-0.07072501,-0.122175 +0.63994163,-0.01999436,0.883148,0.08272785,-0.14244308,1.1551427,0.91252184,0.4532655,0.19554195,0.63301724,-0.0804296,-0.037524197,-0.006884001,0.61355454,-0.09757886,-0.24724478,0.3559245 +0.3082091,0.15708782,-0.092417754,0.7716002,0.25682548,0.76930183,-0.2994671,0.13089691,0.2943015,0.02505472,0.05983581,0.16286135,-0.07460066,-0.032777492,0.06044113,0.12887186,-0.33830693 +0.22576329,0.15736912,-0.046098687,0.20465638,0.18069768,0.20415139,-0.022615539,-0.04842494,0.09401393,-0.27102157,0.04144417,0.047120612,0.122564934,0.120456405,-0.08190088,-0.25889447,-0.05304231 +0.13694222,0.045933142,-0.43122527,0.85909444,0.20038684,0.884575,-0.31240067,-0.14612624,0.2057029,-0.09108552,-0.05228733,0.17371367,-0.051568445,-0.12498824,0.28482282,-0.08450023,-0.28270656 +-0.14254946,0.09992007,0.124190986,0.27540535,0.58452207,0.058657464,0.023500914,1.0886382,0.2979549,0.1635864,0.17381023,-0.13561544,-0.08722845,0.25631645,0.0014813188,-0.01304053,1.4461131 +0.024486544,0.41473863,-0.25274846,0.117669635,0.15204968,0.45076388,-0.2468843,0.07760059,0.24651545,0.062278576,0.05081257,0.31755817,-0.41547066,-0.015208948,0.8925371,-0.12671055,0.312554 +-0.2461476,0.20891131,0.20990987,0.599708,0.33751428,0.16865818,0.112549305,0.15456231,-0.27744544,0.6301451,0.2739296,-1.1872783,0.25658312,0.12192084,0.28959668,0.57807785,-0.4078406 +0.06807379,-0.12828882,0.20457795,0.89394844,0.28839764,0.6394429,-0.08799686,-0.29902166,0.12430882,-0.37484196,0.20217292,-0.12868379,-0.2154135,0.03228775,0.30058566,-0.2425411,0.18136053 +0.34653786,0.02595167,-0.038942374,1.6851901,0.5061115,0.5463893,-0.0930489,-0.07789274,0.33660918,0.09885701,-0.113608725,0.022277035,-0.012499065,0.26041812,-0.01439138,-0.24837947,0.07091553 +0.63947123,-0.29388928,-0.018571867,-0.13559753,0.5031625,0.26865435,0.17270443,0.085779294,0.87609565,0.2501322,-0.42275846,0.3963154,-0.6704869,0.45862383,-0.41604623,-0.29314256,0.5813394 +0.35608876,0.0382068,-0.15384236,0.23851377,0.7461942,0.439976,-0.34292343,-0.42187625,0.59245074,0.44518182,-0.13562915,0.015456782,0.10559565,0.3356141,0.029246245,-0.32909766,0.636844 +0.64855665,-0.19341522,0.63376826,0.7450787,0.029072994,0.80700004,-0.11841005,-0.30904502,0.5724278,0.23196559,-0.7194192,-0.37401152,0.22232407,0.28852746,-0.398879,0.38548097,-0.23171373 +0.3615522,0.12780933,0.2705973,0.36956182,0.06934416,-0.057579298,0.35464382,-0.02225344,0.38854548,0.6860958,-0.06739493,0.34037736,0.03969987,0.14252792,-0.65166044,-0.19140294,0.08723977 +0.016551377,-0.24824944,-0.33254465,0.8176947,0.057867724,0.9525001,-0.4616706,-0.47514966,0.187993,0.063574865,-0.20443101,-0.36668673,-0.34958002,0.050452083,0.03131236,-0.22123691,-0.15604004 +0.5015232,0.042444363,0.06256085,0.5105315,0.60480875,-0.09495831,-0.27022076,-0.25504938,0.718137,-0.9362954,0.103455275,-0.05877524,0.5024482,0.15501484,0.124354176,0.4455893,0.5280348 +0.5271525,-0.08026924,-0.1409105,1.1519843,0.3489295,0.86114866,-0.36121413,-0.170305,0.29738465,-0.22989866,0.02912093,-0.17121626,-0.200026,0.22120926,-0.24264093,-0.31827122,0.016489306 +0.27607852,0.099687025,-0.5494429,-0.18298075,0.01944853,-0.38592783,0.018868467,-0.04673248,0.012296642,0.21797013,-0.39951313,0.06296276,-0.49825644,-0.2790276,0.63647753,0.39153516,-0.1595613 +0.82724243,-0.20106688,0.59915984,0.2672681,0.5997442,0.5070121,0.17131774,-0.23422317,0.9284631,-0.5865412,-0.034210935,0.01643597,-0.32843658,0.43947473,-0.17843497,0.015418635,-0.25632563 +0.45570868,0.21914862,0.072911456,0.48309708,0.78464687,0.15715715,-0.031955115,-0.3865408,0.5968574,-0.09746585,-0.4978721,-0.13579886,0.66914344,0.08455195,-0.049938556,0.43537968,0.33380392 +0.5721761,-0.085566856,0.4399141,0.5899658,0.6124772,0.5952185,-0.6451154,-0.2606824,0.91564804,-0.16783753,-0.6737487,0.032913767,-0.39362282,0.29743916,0.17085259,0.013404222,0.4560546 +0.14854726,-0.11120004,0.06901622,1.6787568,0.36269784,0.5221693,-0.1712841,-0.2449731,0.3925316,0.29934293,-0.15287344,-0.18492386,-0.11361411,0.19385779,0.05300244,-0.28545177,0.08397442 +0.04988132,-0.52634084,-0.29035306,0.033026196,0.3068467,-0.40701672,1.0547054,0.06434695,0.059096508,-0.01344802,-0.050238945,-0.19164316,-0.073441625,0.23223574,0.10069532,0.31469792,-0.11779277 +-0.21795738,0.05850737,0.46476504,0.9564751,0.31943563,1.009575,-0.12705922,-0.47817904,0.061745904,0.60825634,-0.06692346,0.24484767,-0.40394917,0.14310963,0.2699608,0.028327838,0.22161855 +0.17871569,-0.2219605,0.27556556,0.2090823,0.12839109,0.17023382,-0.093441814,-0.038293198,0.19245791,0.05897188,0.016934374,-0.057998624,-0.060186774,0.26691258,1.4563754,-0.14029261,0.08843259 +-0.37188226,0.22778118,-0.041626554,0.6233508,0.56600237,0.28606033,-0.19023831,-0.06333699,0.74858433,0.12645821,0.37314686,0.20447166,0.07644303,0.11034657,0.5601055,-0.14706674,0.0487261 +0.20675084,-0.087356925,0.11591832,-0.4068466,0.6358425,1.6531755,-0.111138634,-0.3701803,0.55715466,0.64107984,-0.2403545,0.066223875,-0.010682091,0.43300715,-0.22574878,-0.2560704,0.19193664 +0.39382616,0.50600624,0.044064794,0.11568691,0.16058584,0.8618412,-0.22630197,-0.25441837,0.28988975,-0.022657188,-0.22000091,0.08408426,0.5481251,0.115106374,-0.327964,-0.39929095,0.9965581 +-0.0033240109,-0.59991175,0.33311832,0.5595152,0.8509737,0.6311395,0.049314056,-0.3648755,0.735766,0.56724083,-0.8880156,-0.5849361,-0.6664589,-0.21373434,-0.3098863,-0.91234356,-0.3901328 +0.7853122,-0.1907964,-0.35211563,0.11938744,0.34656227,0.0015297318,-0.28453627,0.79866374,0.32874385,0.4516355,0.4420543,-0.07394265,0.4672188,-0.2398555,0.007738862,-0.37487757,0.15829971 +0.27780434,-0.2165258,-0.108124465,-0.07174377,0.71340704,0.5315909,-0.48092297,0.57371235,0.7328638,-0.25416848,-0.81464696,-0.21411192,-0.5791191,0.05398124,-0.30485997,-0.13074446,0.44505975 +-0.09330933,-0.5445807,0.32834095,0.18416287,0.508832,-0.099644236,-0.36721766,0.5038828,0.68922687,0.6090745,-0.35136372,-0.35496977,-0.69344044,0.40599188,-0.11413549,0.8605363,-0.5139268 +-0.31319356,0.32169515,-0.29461044,-0.38720104,-0.0715516,-0.28616837,-0.5953628,1.5820343,-0.41729617,-0.36295664,-0.43057242,-0.2525406,0.48046908,-0.86679566,-0.37298313,0.106427886,-0.2229185 +0.7748861,-0.18123046,-0.2516165,0.21106535,-0.34192753,0.10184897,-0.16119763,0.0021900216,0.4636587,0.36944205,-0.22558445,1.8616575,-0.19968669,0.0135606155,-0.17726752,-0.47946814,0.42388707 +0.5879038,0.6585436,-0.018416226,0.19092238,0.23641473,-0.11174777,0.18663284,0.06720698,0.48206758,0.095202595,0.25071836,-0.22539593,0.2612846,0.45209306,0.15006377,0.19879815,-0.24660292 +0.3460029,0.022160955,0.034999713,0.106876865,0.15764469,-0.13237157,-0.08584706,0.09294825,0.1689182,0.052668404,0.1697655,0.0021619792,-0.09984116,0.1926724,1.2324091,-0.25294298,0.16278794 +0.16348425,0.057443827,0.30302623,0.15263073,0.0095059145,0.13318275,0.32878673,0.2155421,0.1371851,0.025426524,0.04969347,0.15600538,0.07536119,0.19977914,0.101578124,0.06980263,0.016505131 +0.5749308,0.034971543,-0.08823742,0.4276181,0.41323525,0.33477217,-0.23786741,-0.22586043,0.34888804,0.24172722,0.8878574,0.068919525,0.0012432096,0.35049713,0.23610476,0.34235537,0.20307828 +-0.27835038,0.7889185,-0.0028428584,0.33231565,0.4355808,1.3867273,-0.6072996,-0.5846406,1.2829338,0.6090468,-0.21186826,-0.15367298,0.43200335,0.30235714,0.30643943,-0.23407781,-0.05665889 +0.18448366,-0.02245319,0.18370447,0.16653122,0.07858461,0.18103985,0.09597473,0.1379477,-0.048610393,0.03549132,0.101985455,0.025009131,0.2632643,0.17332534,-0.042293094,0.118727624,-0.15140197 +0.30349407,-0.6526069,0.21148589,0.5030249,0.29457405,0.14366373,-0.0009405109,-0.017574357,0.27205476,0.61035615,0.3601435,0.2323368,0.071149305,1.4636184,1.0351785,-0.49674577,0.17120412 +0.15177181,0.02344663,-0.18370399,1.7242571,0.43053603,0.40573514,-0.30918324,-0.118526205,0.5092511,0.32123482,-0.16825992,-0.039409846,-0.04236405,0.13217935,0.21328591,0.008138053,0.023151163 +0.28318268,-0.21552627,0.5716888,0.17417969,0.43718547,0.15209644,0.3090878,0.5436155,0.20524184,-0.036743898,0.25022146,-0.040882353,0.3500254,0.41912827,0.14018254,0.27185613,0.9677307 +0.29321536,0.20076479,0.03251497,0.5271572,0.3844427,0.32150763,0.10596645,0.24962014,0.14631136,0.121407986,0.20439787,0.11819286,0.28393093,0.10246028,0.42908335,-0.19175014,-0.20917101 +0.3540266,-0.92469794,0.49669385,-0.3836022,-0.2578408,0.028270056,0.018665215,0.11222807,-0.23768117,0.11007664,0.42968455,-0.232539,0.30490488,0.8668169,-0.2888271,-0.7158621,-0.13977621 +0.11721,0.12781495,0.5238137,0.25837064,-0.11149101,0.07578391,0.38068783,0.29376376,0.1735091,0.011309308,0.15023546,0.34601822,0.095497265,0.2052538,0.13536012,0.011669559,0.05448426 +-0.7327005,-0.6512877,0.41829813,-0.12832884,-0.33029222,-0.39073107,-0.27920866,-0.73883414,-0.64433044,-0.04029428,0.23870005,2.0063174,-0.21728924,0.11620594,-0.6285061,-0.26893187,0.40989444 +-0.19449304,0.30336624,0.26148093,0.264809,0.18887964,0.03655262,0.029933315,-0.6676167,-0.2060154,-0.012404455,-0.7008688,-0.15958636,0.2940033,0.22614601,1.3849323,-0.479907,-0.24549054 +0.7822555,-0.027296742,0.6620105,0.14225931,0.60165936,0.631737,0.25223336,0.31475317,0.64864856,0.16439335,0.7028774,-0.25354978,-0.26152334,0.29991785,-0.07459051,0.21113849,-0.15907295 +0.5923042,-0.27155805,-0.0106120035,-0.2404246,0.7582917,0.01669616,0.31144994,-0.011849624,0.76922506,-0.20031385,0.5575272,-0.17493024,-0.24339092,1.0783465,0.28033838,0.14022973,-0.53564614 +0.8944646,0.020110052,0.8114473,0.07890357,0.25046578,1.171061,0.6004127,0.9581513,0.25468543,0.1918496,1.0088687,0.1898544,0.2711736,0.63233334,-0.0473708,0.092626035,1.1052994 +0.64998144,0.082180604,0.2726825,0.053586014,0.7782586,0.40195227,-0.42630234,-0.41394827,0.76023644,0.10747722,0.5830339,-0.14513302,-0.510615,0.88549614,-0.082150854,-0.03131865,-0.16407268 +0.15241821,-0.3196539,-0.06255418,-0.07174161,0.090442166,0.102196716,-0.0949803,0.29177177,0.1817637,0.19613917,0.19713211,0.059457533,-0.14329156,0.139393,0.55297196,0.10650919,0.113247015 +-0.090891495,-0.0926644,0.29262987,0.2271579,-0.019981015,0.44220853,-0.4321334,0.08945091,0.41696265,0.24298847,-0.29919854,-0.2097141,0.0514512,-0.1402548,0.53824705,-0.31784275,-0.060015973 +0.07794006,0.14075303,-0.061810702,0.34560946,0.32566503,0.22322683,-0.52725655,-0.36639312,0.29254374,0.3858511,0.96083266,-0.09029048,-0.14137565,1.0681019,0.58167267,-0.15483616,0.03307748 +0.39448115,-0.33380893,0.31819868,0.18004106,0.2969755,0.2738403,-0.14560248,-0.24547295,0.096426524,0.42186624,0.028965738,0.5596117,0.05096801,1.3176433,0.35310596,-0.46206,0.94064164 +0.49149895,0.060358603,-0.112722285,0.33697227,0.8541334,0.37776142,-0.30670005,-0.06915069,0.7373954,0.50475895,0.70967805,0.48541215,-0.23817207,1.0554472,0.42445987,-0.18649271,0.5458881 +-0.23186043,-0.32581854,-0.039482545,0.9698221,0.27959037,0.37845036,0.23155434,0.14568016,0.20251244,0.542072,0.13435003,-0.6537163,0.82834184,1.6815993,-0.33386102,0.5781564,0.08551638 +0.12819396,-0.38418302,0.261647,0.3799098,0.41817653,0.41292268,0.2504707,0.08864526,0.4008479,0.36035195,0.39439183,0.16947417,0.17519253,0.2568456,1.8113936,0.16299076,0.29608476 +0.5753651,0.10837286,-0.054186586,1.1345539,0.23039529,1.3021579,-0.39727706,-0.3600434,0.6120509,0.671516,0.040833622,-0.60665554,-0.009317699,0.5808349,0.15352306,-0.01750647,-0.1147406 +0.14011586,-0.12497671,0.040094517,0.19834115,0.082436435,0.32663882,-0.056449514,0.13743354,0.10256731,0.16444482,0.040202245,0.012567936,0.11814233,0.029363357,-0.18728524,0.20361751,0.13589218 +-0.13145491,-0.3035402,0.32353362,0.049110856,0.18803121,0.14300585,-0.40770897,0.034799762,-0.098903954,0.15032169,-0.36883673,-0.009842439,0.23708083,0.11612559,-0.06740572,0.1624231,-0.039226502 +0.4551379,0.26685205,-0.23008,0.725064,0.50194454,0.43810788,-0.3273622,-0.2529995,0.69283354,-0.30091372,0.7762291,-0.17626576,0.32031018,0.062452648,0.26760414,0.37073064,0.048805203 +-0.04318556,0.14955677,-0.3480004,-0.25479054,-0.3827042,-0.19461653,-0.2519788,-0.35885492,-0.30091962,0.02228619,-0.23752354,-0.2618,0.04291908,-0.27655184,-0.105765924,-0.25148043,-0.3191125 +-0.2907636,-0.35087505,-0.41908273,1.6821028,-0.022820232,0.3882332,-0.49432024,-0.26164207,0.21882239,0.26137483,0.19812292,-0.21553613,-0.5438145,0.31572926,0.21522471,0.036462434,-0.46677828 +0.04155993,-0.12657173,0.104168326,0.9534086,0.27866247,1.0468094,-0.09843642,-0.32914284,0.29833513,0.2508548,-0.31731993,-0.17811109,-0.013104049,0.218171,0.39677095,-0.09002315,-0.25734842 diff --git a/code/other/test_3_partitions.csv b/code/other/test_3_partitions.csv new file mode 100644 index 0000000000000000000000000000000000000000..2fbd98a34a7204c0b1c2217c8c71a42ec32d28e1 --- /dev/null +++ b/code/other/test_3_partitions.csv @@ -0,0 +1,17 @@ +0,0.38646466,0.5409801532882028 +1,0.13056517,0.5051161142567681 +2,0.16311094,0.5241800238699267 +3,0.5522181,0.6214182595482479 +4,0.4068393,0.5185901280410424 +5,0.4961518,0.5820413204001291 +6,-0.12576449,0.5251732008225116 +7,-0.16419357,0.5450753497294466 +8,0.34581536,0.521358191558392 +9,-0.06974197,0.5199882342958999 +10,-0.25050393,0.5820676682599933 +11,0.17414908,0.5488071489732115 +12,-0.09691429,0.5159317194894074 +13,0.39290804,0.5426735001620918 +14,0.37336868,0.5579620522085958 +15,-0.30328006,0.5745542607099351 +16,0.23517847,0.5359768908942638 diff --git a/code/other/test_3_partitionsNew.csv b/code/other/test_3_partitionsNew.csv new file mode 100644 index 0000000000000000000000000000000000000000..7b4127ea6853259144c17c4f57ce0da7fa7f3210 --- /dev/null +++ b/code/other/test_3_partitionsNew.csv @@ -0,0 +1,17 @@ +0,0.006728165,0.5586247984265463 +1,-0.0626467,0.6294648481691631 +2,0.030092822,0.5684413144020083 +3,-0.07066051,0.5853934119495117 +4,0.033326484,0.5491494390201443 +5,0.06665153,0.5514479151192849 +6,0.021523762,0.5523043342601451 +7,0.01740488,0.5816583055956043 +8,0.1184717,0.5581236206410048 +9,-0.08866774,0.5824789098494954 +10,-0.034959074,0.5464982952430222 +11,-0.04228917,0.5560489008703106 +12,-0.116365336,0.5620302254983534 +13,0.110121384,0.5766909422690955 +14,-0.0010608848,0.5543690631982159 +15,0.020518007,0.5387909039001844 +16,0.028831787,0.5378795658896969 diff --git a/code/other/train_embed.csv b/code/other/train_embed.csv new file mode 100644 index 0000000000000000000000000000000000000000..c8f56398a3ec10c20255d438ef013d3de83072a2 --- /dev/null +++ b/code/other/train_embed.csv @@ -0,0 +1,948 @@ +-0.032347403,0.32662982,-0.18382896,0.25841993,0.28137672,0.060831223,0.25397882,0.35308638,0.168837,0.33805975,0.23812681,0.30863374,0.054000176,0.08683214,0.28289092,0.07441632,0.4484489 +-0.21431266,0.11660823,0.18858892,-0.1870016,0.086289905,0.18106133,0.22908546,-0.18030706,0.33058742,0.28815302,-0.19983906,0.20596743,-0.045924358,0.015666261,-0.16959473,-0.20945829,0.074269086 +-0.05599063,0.104869395,0.09654495,0.14343035,0.096427314,-0.0423383,0.03379589,0.16115123,0.20725878,0.16506507,-0.024459956,-0.05711142,0.14226753,-0.13560623,-0.073132575,-0.015257883,-0.0023408316 +0.15895511,0.039412785,0.45953608,-0.20050083,0.31766424,0.22529675,0.10683103,0.12317453,-0.00313552,-0.010599128,0.016831717,-0.008173353,0.26269773,0.12368187,0.10734839,-0.073155195,0.022780402 +0.3908122,0.20409377,-0.35660166,0.19257452,0.3453806,0.18708473,0.18451513,0.0522253,0.1367874,-0.22316697,-0.09973123,0.50574714,-0.22199678,0.47534943,0.080165684,0.3608299,0.09115337 +0.14086558,-0.5768511,0.19165565,-0.14861186,0.35238698,-0.20967701,-0.08022293,0.13919365,0.25316948,-0.5002343,0.021593789,0.19246107,0.011643898,-0.03805997,-0.16976081,0.21459664,-0.38465852 +0.038708203,0.031836092,0.13277082,0.03567006,0.2600909,0.29691976,-0.15982237,0.21201696,-0.06684885,0.15534203,0.07280411,0.2885758,0.3331361,-0.014310782,-0.032167003,-0.072122365,-0.024075262 +0.27369648,-0.33403152,-0.1373718,-0.55535346,-0.20122527,-0.17044081,0.15016565,-0.24007873,-0.21680889,-0.45862934,0.25343964,-0.22182722,-0.49431244,0.36812803,0.16580659,0.07776458,-0.27079448 +0.047324672,-0.40534297,0.4413303,0.19683196,0.26001927,-0.3796781,-0.38739315,0.4138712,0.5755176,0.02482544,0.015623349,-0.73558587,0.0692287,0.1648958,-0.1851732,-0.08012051,-0.19906424 +-0.045688238,0.2342135,0.16555364,0.50153464,0.3578456,0.18902661,0.2005964,-0.052819893,0.04810658,0.20711713,-0.012544167,0.379972,-0.114044346,0.01932905,0.15306832,0.29119694,0.47708544 +0.078240335,0.07355221,-0.25792396,0.031024503,0.49473792,0.10175409,0.25550753,-0.03681,0.081812315,0.05078738,-0.030480662,0.5181137,-0.20218904,0.43203875,-0.17969361,0.2382882,0.10626349 +-0.1608444,0.39617017,0.10814991,0.5922202,0.13327178,0.31684563,-0.047073286,0.16072482,-6.5239845e-05,0.26937193,0.16646558,0.43040147,0.17968877,0.36853248,0.409292,0.18715125,0.3421133 +0.23798215,0.29903483,-0.16664052,0.10203792,-0.07305779,0.34012964,-0.05002459,-0.16430509,-0.023135323,0.47574502,0.078222536,0.07553221,0.32302266,0.026386676,-0.1580629,0.40363994,0.10438322 +0.020107914,0.35710722,-0.28341624,-0.056668233,-0.178061,0.0092544975,0.28863984,0.17074557,-0.02205967,-0.042071864,0.0952387,0.03510992,0.100361876,0.4725653,-0.19299819,0.3209619,0.084578365 +0.18654762,0.16678947,0.22633044,-0.10818022,0.15355176,0.020237286,0.09961496,0.16506085,0.23906617,-0.31016892,0.023877684,0.09862366,0.029709203,0.20531003,0.121933736,0.035003036,-0.16304024 +0.4154998,0.24257094,-0.3866782,-0.068966396,-0.010656345,0.2572564,0.34972465,0.08183532,-0.16174403,0.023758497,-0.13531007,0.14229369,0.06482384,0.46401337,-0.077021495,0.05271847,-0.18751182 +0.1239819,-0.112977125,0.27401784,0.33056238,0.26773497,-0.022751646,-0.115382284,0.024378816,0.15858875,0.31267312,0.3470427,0.4978979,0.20044757,0.04352509,0.17196575,-0.3088862,0.30741253 +0.40788192,0.23086588,-0.3187693,0.3610862,0.03748168,0.22008398,0.11444704,0.3319574,0.070351705,0.36754987,0.22725517,0.12832417,0.019800952,0.17452241,0.39908513,0.2182957,0.39746052 +0.018171094,0.27306128,0.043754593,0.16829579,0.48769972,0.51529,0.3261334,-0.022774503,0.07691138,0.1605271,0.18655476,0.25005546,0.12031027,0.22645818,0.090792015,-0.119063765,0.13245554 +0.26734495,0.48680317,-0.02355234,0.09120641,0.119272485,0.28284448,0.5304995,0.16861777,0.3578894,-0.05176495,0.3827084,-0.062356237,0.009144658,0.49353337,0.121251,0.1174937,-0.15110476 +0.29593974,0.38369608,0.035580557,0.18047003,0.05517429,0.093050465,0.34398675,0.3454786,0.13552791,0.1958231,0.19676974,0.40290716,0.18787602,0.2033303,0.18559371,-0.007539009,0.07198742 +0.101800956,0.27704656,0.3804024,0.33128673,-0.05669954,0.38240153,0.38293546,0.2033253,0.15520559,0.07693579,0.05763227,0.3514844,-0.014465614,-0.01890222,-0.029622206,0.11926777,0.30509037 +-0.29977643,-0.05012492,0.28699452,0.23622227,0.110048175,-0.03681116,-0.3298031,0.21267964,0.11269945,0.15493271,-0.06980547,0.11226755,0.34586838,-0.20957796,-0.34314984,-0.35506284,-0.2185057 +-0.08401793,0.16091813,0.4206411,0.37255093,0.10145026,0.04016322,-0.140972,-0.13852851,0.11468812,-0.05202255,-0.24608758,0.17911296,0.34947222,-0.10447655,-0.28833944,-0.01591613,-0.27284583 +0.006728165,-0.18360692,0.25778443,-0.6391413,-0.19258003,-0.07445942,0.21160817,0.61313194,-0.3046861,-0.12225145,0.29676515,-0.41174218,-0.12033859,0.6657797,-0.28664437,0.5348191,-0.018748263 +-0.1199595,0.16693565,0.4524033,0.30890787,0.27496865,-0.17359458,-0.52163875,0.3183084,0.10920283,0.051891554,-0.21636826,0.08291681,0.4037305,-0.505811,-0.04051533,-0.17105441,-0.14495453 +0.22730705,-0.8023851,-0.31787556,0.03456485,0.24689102,-0.334659,-0.11385463,-0.33898565,0.09829834,-0.53242,-0.25658405,0.13604878,-0.40381667,0.22981764,-0.109228455,-0.13724698,-0.37960213 +-0.16958036,0.18748866,0.19465442,0.14075975,0.10211255,0.1732384,0.05325091,0.12093752,0.0062204637,0.13548681,-0.052561246,0.005459518,0.27238142,0.11836813,0.2115095,-0.027903771,0.12232752 +0.34958795,0.38120347,-0.010027338,0.33037144,0.3329809,0.36015725,0.30968902,0.42575553,0.34185112,0.31599298,0.011852536,0.5207209,0.09473224,-0.037064966,-0.010899573,-0.08847854,0.20045705 +0.06894675,0.23186785,0.06065769,0.27153075,0.26713115,0.18813169,0.37768596,0.012759586,0.39081112,-0.46097547,0.15995467,0.3787425,0.276464,0.35480133,0.4386652,0.15002604,-0.019839363 +0.010266778,0.1864003,-0.05415014,0.6934225,-0.13604929,0.11757965,-0.04331406,0.42032427,0.4219624,0.0824888,0.10474428,-0.07711239,0.33190548,-0.38817218,0.09172394,-0.007881612,0.30797032 +-0.1511372,-0.47357437,0.22228892,0.36103505,0.22975796,-0.01172815,0.11630214,0.2565186,-0.050730627,0.3690659,0.0581617,0.23128062,0.3351311,0.11341056,0.14180662,0.0907725,0.03338746 +-0.003156322,0.008519525,-0.26761258,0.13018158,0.24216922,0.06344696,0.3685711,-0.12125042,-0.0061028297,-0.049792796,-0.19530642,0.4484502,-0.39673623,0.50475496,0.12165269,-0.10269055,0.08771497 +0.12881742,0.20502745,-0.06844714,-0.20938037,-0.024551444,0.083940834,0.27898562,0.2132142,0.36627272,-0.2635167,0.25579584,0.020378886,-0.11838859,0.38183895,0.16928563,0.11648631,-0.02997985 +0.08698735,0.3042595,0.54345423,0.6960064,-0.110188186,0.31452864,0.20563944,0.3064641,0.24814041,0.088960394,-0.5934359,0.2359684,0.7122506,0.23210116,0.1302689,0.124391146,0.34477663 +-0.13080683,0.16548917,-0.11516339,0.0887549,0.1040163,0.21034536,0.19228038,0.07315247,-0.21385817,-0.050617453,-0.1924425,0.45424768,0.03250744,0.17592144,-0.12939344,0.11857679,0.13590793 +0.112822264,0.22400017,0.116756245,0.2689998,0.0027298362,0.047860205,0.14934973,0.24723825,0.15084568,0.24542208,0.08287683,0.2552254,0.0668721,-0.008720901,0.17997804,0.112978205,0.23551631 +0.09503193,0.25333348,0.03971593,0.25440663,0.32194412,-0.01360487,0.21201566,0.32100824,0.041851632,-0.24092533,0.26910317,0.21839413,0.13513356,0.09411882,0.09115721,-0.010082301,-0.03276365 +0.17498834,0.08952514,0.13410558,0.17249987,0.20567617,0.12158274,0.019998394,0.1977425,0.12550075,0.11455987,0.17388912,0.35512662,0.09849122,0.27650174,-0.027512662,0.13344216,0.036931276 +0.041289646,0.14011651,0.37668625,0.42193583,0.24106549,0.07611557,-0.034909897,0.495755,0.014461862,-0.007004705,-0.2735378,-0.22714454,0.4410316,-0.18647501,0.24693607,0.15010826,0.27172098 +-0.3164745,-0.058707636,0.46732628,0.43631804,0.13565567,0.080357954,-0.12191629,0.13116038,-0.016397206,0.27778986,-0.14862685,0.04076628,0.23017402,0.033775304,-0.18658812,-0.23097987,0.000884125 +-0.061925184,-0.51563615,0.12260142,-0.73217267,0.24475433,0.5817924,0.40953374,0.20806557,0.53417146,-0.041875437,-0.023971919,-0.58797354,0.25287172,0.24986267,0.09365487,-0.071979195,0.43685836 +0.15112446,-0.81422174,-0.31274652,-0.412055,-0.294482,-0.022620615,-0.18581435,-0.5673313,0.13312101,-0.52878386,-0.14773048,0.3337586,-0.5595157,0.3608674,-0.1247691,0.017118588,-0.4313556 +0.07116675,0.085406564,-0.07203011,-0.43257034,-0.053265255,0.22660248,0.54988986,-0.2238298,-0.124455765,0.4078382,0.15980393,-0.028073275,-0.08092352,0.23759168,-0.090454035,0.26043802,0.1396128 +-0.28297442,-0.01874541,0.3756637,0.24596128,0.019125229,-0.16700698,-0.5555379,-0.07247665,-0.11817164,0.04219151,-0.18298776,0.30441839,0.44562346,-0.14655963,0.0810733,-0.14428006,0.06761066 +-0.09455882,0.3045008,0.2882235,0.33848673,0.088767216,-0.1552305,0.27713636,0.4806535,0.27128947,-0.07222441,-0.08619897,0.25212872,0.5687464,0.27568552,0.25537965,-0.08269591,0.23289521 +0.34288713,0.34502953,-0.20506899,-0.05877753,0.416548,-0.2380875,0.66432464,-0.19910663,-0.15799125,0.005521592,0.19731104,0.36471757,-0.122974,0.39985585,-0.1842539,0.35178977,-0.07376378 +0.13109176,0.18450497,-0.058255974,0.016867897,0.049956866,-0.08327423,0.3163954,0.09509481,-0.010799116,0.23355876,-0.10442653,0.10103242,-0.021962736,0.13476221,-0.24793492,0.11643469,0.0050215125 +0.17913166,0.30445692,0.14156117,0.24228552,0.30006292,0.22682637,0.33975437,0.11003029,0.06058344,0.45796844,0.16629122,0.1917286,0.34526324,-0.003244926,0.17637144,-0.04177754,0.23354413 +-0.24098614,0.12685229,0.12318319,0.26802415,0.33273527,0.30447686,0.2819527,0.24088798,-0.025376933,0.3436756,0.10021686,0.39622077,0.006057106,0.29215705,-0.06391646,0.23575643,0.11981866 +0.28018883,0.03207704,-0.015077174,-0.19251356,0.34498203,0.28485367,-0.1268295,0.52880156,0.21272092,0.058640033,0.3937585,0.3159472,-0.012832423,0.040187057,0.19790715,-0.06326898,0.16948597 +-0.3273988,0.13628827,0.57599396,0.60109884,0.15123214,-0.05402794,0.013630504,0.50050914,-0.10367396,0.008724842,-0.3104041,0.25947407,0.46830618,-0.05408718,-0.034714762,-0.15583682,-0.018068658 +0.1039054,0.18553026,0.2972029,0.21773757,0.2682335,0.16099028,0.13126937,0.21492313,-0.13872774,0.02422476,0.18479005,-0.13314117,0.2393274,-0.017876426,-0.02510778,-0.06542122,0.07439258 +-0.07961742,-0.12093783,0.40593582,0.34191188,0.1960882,0.09374529,-0.23835072,0.16151536,0.41339186,0.2005268,-0.074830376,0.08834047,0.28838825,-0.08549266,-0.34031913,-0.096450135,-0.27060738 +-0.2781844,0.08408749,0.25278276,0.21907473,0.15285067,-0.13971737,-0.23384504,0.23588522,0.21972086,0.19471665,-0.12932552,0.0478327,0.20349266,-0.09825927,-0.060090516,-0.16304237,-0.046014 +-0.22584367,-0.8548296,-0.0738694,0.26875374,-0.40796927,-0.06446111,-0.2659487,0.2431494,-0.38771212,-0.2846194,-0.12591238,0.5300091,-0.3747835,-0.1289286,-0.14688131,-0.003332294,-0.06858104 +0.16700312,0.1563859,-0.092518225,0.15667282,0.14593494,0.14111573,0.12013603,0.09902681,-0.05962182,0.15998918,0.12661377,0.09122708,0.01871075,0.18932164,-0.12249801,0.2276732,-0.027049292 +0.21815793,-0.16118427,0.033782378,0.1555035,0.42069027,0.17414446,0.36760256,0.18064316,0.20804785,-0.28192684,0.12441239,0.42894295,0.0994555,0.2587188,0.1637339,0.020518007,-0.104325 +0.07834895,0.067738,0.05643285,0.442719,0.23083284,0.2925381,0.13217597,0.17200422,0.3576555,0.06312335,0.02760883,0.19742453,-0.066446915,-0.11105809,0.017314099,0.034724664,0.12675506 +-0.017533503,0.3665079,0.16262937,0.25448573,0.1460494,-0.072555386,0.21306044,0.2734901,0.25098324,0.16111831,0.22101276,-0.3701583,0.33884346,-0.24660113,0.5103157,0.15497692,0.60024226 +0.08714618,0.12183193,-0.41909268,-0.3099171,0.35189325,-0.3990746,-0.08766721,-0.48206222,-0.011281524,-0.122196354,0.30747983,0.5129523,-0.49148226,0.22722557,0.028698212,-0.116874956,-0.32611564 +-0.11312337,-0.040011864,0.17101836,0.17489067,0.06989292,0.053102978,-0.14718989,0.14030741,-0.039110836,0.1887642,-0.052810844,0.17610359,0.30206907,-0.07605314,-0.27016118,-0.21441367,-0.17860849 +0.12636374,0.07518031,-0.09859868,0.100462675,0.307868,0.085882224,0.3140492,0.2548277,-0.04013513,0.4255545,0.0898278,0.6626349,0.02104957,0.42939755,-0.30865064,0.14564529,-0.067359686 +-0.061774608,-0.47994033,0.5796699,0.37612337,0.2908277,0.20562164,-0.6576073,-0.2218444,0.23129852,-0.36187062,-0.45575288,-0.106284216,0.15625264,-0.09311236,0.12590024,0.38068295,0.4429993 +-0.18856622,0.2296295,0.4355638,0.110071585,0.16726999,-0.23742849,-0.585708,0.31563336,0.24408443,0.32301286,-0.065170415,0.22405897,0.28774205,-0.12826768,-0.2809787,-0.2198823,-0.02795935 +-0.28061515,0.05752538,-0.076328024,0.33106256,0.06052934,-0.2174405,0.12644084,0.22722337,0.16805366,-0.13328573,-0.056683954,0.13172911,0.025710609,-0.0010053037,-0.35798433,-0.49003816,-0.2475899 +0.051951014,-0.65791166,0.08812822,0.22441132,0.32654518,0.39128152,0.28931516,0.115402274,0.315272,-0.06969641,0.17388609,-0.23824297,0.15082571,0.10934603,0.06868961,0.0002493249,0.18213987 +0.26286355,-0.043874923,-0.47928062,0.09068074,0.13369668,0.16469677,0.16398871,-0.081057295,-0.062325887,0.16589162,-0.02500569,0.6936926,-0.45046297,0.23939136,0.19259614,-0.30232134,-0.15938284 +-0.15593493,0.036634114,-0.14122298,0.39668763,0.4064748,0.3112382,0.24955404,0.04651551,0.16516857,0.4509148,0.079150334,0.33457744,-0.02690161,0.16228214,-0.18586631,0.27746218,0.1853568 +-0.29360104,-0.771849,-0.029434996,0.61209774,0.045457877,0.17310734,0.24760887,0.025229702,0.8826729,-0.33841744,0.33051422,0.46077543,0.22640185,-0.14860317,-0.07206788,0.041663792,-0.41564557 +0.015632575,0.22130924,-0.06479779,0.2581907,0.0658259,-0.09910148,0.052444406,0.30289328,0.33828574,-0.2928191,0.014623114,0.37327456,0.12105583,-0.047230486,0.17817801,0.18375354,0.44443402 +0.02002138,0.19046612,0.20449874,0.17221461,0.35324135,-0.08324833,0.20290221,-0.044271823,-0.020434536,0.11278558,-0.09791333,0.34337032,0.011832666,0.3557096,0.22233588,-0.08389309,0.06351455 +0.12425483,-0.072764754,-0.14707164,0.108013675,0.42399925,0.12714422,0.30023372,-0.08737672,-0.030728167,0.12556307,0.1379923,0.38188457,-0.30076987,0.19740818,-0.112706706,0.12766692,0.20095281 +0.16529448,0.13393708,-0.36552915,0.17848873,0.28254905,0.19569644,0.1302015,-0.0062149046,-0.01925335,0.2690721,-0.065226585,0.49444616,-0.14043833,-0.059495006,-0.04546985,0.20802818,0.20132008 +-0.21985932,-0.117898315,0.5351119,0.26276866,0.16950893,0.03917157,0.046742823,0.29922736,0.11798916,0.11867126,-0.09844847,-0.10462097,0.21571258,-0.30923256,0.08825308,-0.1651607,0.07506334 +-0.043003023,0.07829661,0.22645807,-0.35967687,0.19017883,-0.0038910566,0.091455996,0.4436636,0.0853008,0.5285483,0.010081091,-0.061770845,-0.29633638,-0.025764566,-0.2978707,0.016322782,0.020841563 +0.2644773,0.19281858,-0.37823048,0.36536688,0.559177,0.28464434,0.027536202,0.17465259,-0.0982912,0.3238722,0.0027293647,0.63752556,-0.06834318,0.24089062,-0.18284418,0.19581681,0.24338216 +0.2688473,0.25001684,0.0537787,-0.2370532,0.44606832,0.04956157,0.3294073,0.007953249,0.2113238,0.22491495,0.50412387,0.021759013,0.038773008,-0.008397646,0.12088886,0.06265934,0.2386096 +0.3612672,0.13319832,-0.1961258,0.21110368,-0.03692699,0.24051794,0.44977912,-0.12160165,-0.052442815,-0.008585534,-0.06237861,0.31393686,-0.055134173,0.27834532,-0.025519682,-0.043815497,-0.22823657 +0.08912245,0.45169276,0.30930045,-0.21919563,-0.14690495,0.0034784435,0.24623427,-0.1029103,-0.09867507,-0.039988145,0.269112,0.06520753,-0.035142828,0.2404757,0.21421613,0.027499635,0.26748168 +0.38114977,0.08473261,-0.13291577,0.019615795,-0.2356211,0.12402522,0.18107852,0.11164833,0.2155044,-0.073927775,0.245653,-0.13666198,0.013796819,0.35895154,0.2768377,0.32978272,0.0321554 +0.06823159,0.028281437,-0.34695777,0.0051171263,-0.017732888,-0.06608586,0.41335788,0.003150912,-0.20938183,0.20239034,0.10149511,0.5036759,-0.20258038,0.1551837,0.06730337,0.013693511,0.26558337 +0.1240318,0.34213564,0.111850925,0.30371016,0.19398797,0.12085696,0.23983675,0.25730336,0.11668425,0.20123765,0.044387545,-0.016296532,0.2100946,0.33428693,0.23496197,0.21478325,0.22595376 +0.10160164,0.12001287,0.04783459,0.19263111,0.19468147,0.22185506,0.05236776,0.1977339,0.16970581,0.18589489,0.08423173,0.22450596,-0.055372678,0.10724987,0.15811025,0.101068966,0.1294906 +-0.12861867,0.0157001,0.11772869,-0.14741448,0.4551472,-0.69650215,0.43251294,-0.35762236,-0.13499105,-0.18953982,-0.18930787,0.5050077,-0.10189588,0.31785396,-0.2784472,0.024367994,-0.24065931 +-0.06942072,-0.9060286,-0.34245586,0.091711454,0.59495866,0.26542175,-0.095300436,0.12282383,-0.20283179,0.09547186,0.3321112,-0.011494914,-0.18263252,0.41063872,-0.07870743,0.504958,0.13532178 +-0.03343856,0.20315903,0.3707382,0.2212009,0.12235246,0.14102918,-0.072296426,0.08834668,0.07994699,0.20307218,-0.1788195,-0.021577755,0.47338805,-0.1354937,0.2575556,0.16117549,0.20081481 +0.42204103,-0.43751234,-0.6743931,-0.71865577,-0.48898292,-0.13171273,0.045646828,-0.26670477,0.3365755,-0.5042053,0.05637026,-0.44150728,-0.4590652,0.4058554,0.09152816,0.1325612,-0.3646899 +0.17531027,-0.47379118,-0.10994237,0.043494333,0.20229384,0.15905781,-0.2956666,0.095423765,0.042690914,-0.21010727,0.2113789,0.19700186,0.7870129,0.3352137,0.07001842,-0.11024277,-0.24683844 +0.37405273,-0.6576281,0.47730172,0.3547707,0.120714575,0.31354627,0.059175037,-0.3237614,0.59095174,0.1488352,0.38171422,-0.6486966,-0.01486806,0.057094563,-0.40822843,-0.1323743,-0.17861265 +0.14534892,-0.45337975,0.06914769,0.2432427,0.3965224,0.32555673,-0.20299272,-0.18156609,-0.04015835,-0.043384645,0.18683942,0.20440078,0.19740893,0.056285795,0.43733296,0.20180178,0.26755422 +0.09174893,0.089175254,-0.050567843,-0.036508642,0.21712424,0.14708893,0.09614493,0.10424471,0.030943613,-0.060938325,0.044129368,0.014779469,-0.062525734,0.11842273,0.08584722,0.20307358,0.060541738 +-0.21230564,-0.040848725,0.271705,0.19994852,0.026815115,-0.039374612,-0.13157763,0.1328915,-0.058224645,0.054976575,-0.13312826,0.096190795,0.27380413,0.012960294,-0.16438285,-0.21565397,-0.07636888 +-0.20652092,0.11654787,0.009611157,0.21978669,0.14140956,0.11693317,-0.15152784,0.1753137,-0.16226722,0.35216936,-0.14762177,0.22988313,-0.06329572,-0.0525953,-0.21986069,-0.0050125495,0.10865278 +-0.29108843,-0.19807227,0.6102643,0.6121584,-0.050187107,0.0030054892,0.038053762,0.39671153,0.13792078,0.5064101,-0.2628102,0.24931188,0.65871984,0.07834956,-0.060870036,0.023075957,0.19394687 +0.11966543,-0.68751425,-0.04554087,-0.199201,0.20306994,-0.01889742,0.32300356,0.22565828,0.6048342,-0.6320941,-0.22773328,-0.4647033,0.24060962,0.35726574,-0.2219514,0.052234616,-0.4624084 +0.045467917,0.25995922,0.05418345,0.3539617,0.09954485,-0.029433174,0.025201319,0.35415828,0.31554198,0.19011196,0.14869079,-0.062299185,0.10193705,-0.091956146,0.236636,0.07743744,0.47037724 +0.24970779,-0.12866662,0.06468462,0.13729356,0.18994427,0.118037604,0.24849315,0.24479863,-0.033575777,0.17627032,0.0043211034,0.1015994,0.36887085,0.13710646,-0.1771175,-0.114819504,-0.1503674 +0.3451438,0.3596974,-0.3174268,0.07810339,0.21806614,0.10500919,-0.04892859,-0.1836678,-0.09700826,-0.2549905,-0.072447404,0.0344185,-0.042004187,0.37121955,0.051800255,-0.095259316,-0.15878998 +-0.0229251,0.059879605,0.14642109,0.24520484,0.23601593,0.23920561,-0.03922249,0.1975702,0.051687967,0.3216157,-0.047335982,0.18706548,0.035700526,0.2112047,0.022057867,-0.13298404,0.10807315 +-0.26386386,-0.026771175,0.2620744,0.099323034,0.17257637,-0.03173337,0.35829988,0.18689041,-0.19307788,0.26883328,-0.25245458,-0.13351074,-0.015277775,0.5628988,-0.14760609,0.3567495,0.23632519 +-0.12989017,0.05167095,0.28228307,0.33394426,0.033220235,-0.07035081,0.08344326,0.24854614,0.21524149,0.1149403,-0.09576266,0.109013185,0.3164552,-0.015895141,-0.39477628,-0.25569567,-0.11936354 +-0.008323602,0.13492773,0.09652406,0.24503379,0.124251075,0.043755095,0.001246434,0.18571202,0.41056708,-0.049570072,-0.27954856,0.048945855,0.20232134,0.0629771,-0.3337206,-0.08235911,-0.11372585 +-0.38172078,0.04453974,0.19182499,0.4157502,0.3119826,0.203659,-0.09962584,-0.100156434,0.13401571,-0.028890017,0.25076422,0.12652121,0.481367,0.1656713,0.0903378,-0.21250398,0.28110692 +-0.05866235,0.054414447,0.08085426,0.3648527,0.19238284,-0.18878718,0.18169373,0.247084,0.2885715,0.1898345,0.058632836,0.5175242,0.19446023,0.020318702,-0.070455976,-0.14318138,0.14154099 +0.120179616,0.11865957,0.05695365,-0.1834337,0.30977952,0.03544843,0.42334205,0.3326642,0.13321808,0.1780063,0.05598561,0.4261773,-0.17459701,0.34443805,-0.15620926,0.047271464,-0.083977714 +0.13507281,-0.6455574,0.00967704,0.18630698,0.25281432,0.40848655,0.32600355,-0.11267634,-0.6594044,0.024979113,-0.004555153,0.10608296,0.22329493,-0.025792247,-0.082037725,0.21522772,-0.16043407 +0.06457847,-0.2039221,-0.21440402,-0.44392398,0.35975048,-0.1940188,-0.0072548282,0.15234856,0.29458016,0.49263686,0.022697598,-0.052695163,-0.20400079,0.31137487,-0.08985842,0.50789946,0.17761716 +0.12472375,-0.80636847,-0.20153908,0.10281585,0.23031253,-0.16974255,0.090087004,-0.026056712,0.21593325,-0.4433854,-0.2223142,0.030358024,-0.22451824,0.28220245,-0.4140282,-0.111508034,-0.36865583 +-0.102770485,0.23898447,0.17552449,0.25202847,-0.09317976,0.16351084,0.264024,0.29664227,0.49698064,0.10254081,-0.25033766,-0.04855958,0.42412546,0.30287504,-0.2059486,0.029965544,0.10332493 +-0.01451451,0.3270378,0.19449914,-0.5157871,0.32890546,0.2544061,0.3881293,0.50795424,0.0077756983,0.5532532,0.019970855,0.06438817,0.14514558,0.29079348,0.5170889,0.0061063813,0.55830705 +0.3436308,0.42183155,0.20792651,0.23667082,0.1803588,0.31877753,-0.07760881,0.115368,0.31807423,0.12635395,-0.006237318,0.3197236,0.28345463,0.036287196,0.113311134,0.2198043,0.055226322 +0.35313645,0.2934023,-0.12971386,-0.28375947,0.24269678,0.19964881,0.16794476,0.3627678,0.46757707,0.02091879,0.07102916,-0.12112208,-0.17306526,-0.13825226,0.002482638,0.11767591,-0.12725568 +0.10726108,0.049416088,0.019874921,0.076218165,0.359283,0.23767444,0.28385857,0.081948616,-0.20892791,0.15203716,0.017956272,0.27396777,-0.009735068,0.15587626,-0.25712135,0.08979301,-0.18608573 +-0.22765027,0.23333366,0.15560026,0.1399784,0.28319016,0.10265032,-0.038327496,-0.16530079,-0.3801333,0.05407859,0.19974445,0.054613184,0.443416,0.010949552,0.3058486,-0.0753037,0.2697959 +0.4353269,-0.39004144,-0.5684787,-0.38299525,0.68239266,0.18465899,0.871445,-0.31052557,0.11774851,0.25155348,0.38434356,0.4358833,-0.21603766,0.15191038,-0.082933195,0.40283525,0.09330685 +0.07084095,0.18578357,-0.06496812,-0.08755969,0.20132194,0.103808925,-0.118048824,0.13472126,0.18293904,-0.065333016,0.19169696,0.052592203,-0.17931986,-0.087035455,-0.077006444,-0.07402144,-0.07360918 +0.14136183,0.11944351,0.11740889,0.06110252,0.17464036,0.22100317,0.1587518,0.27517578,0.33137375,0.29719812,-0.03237048,0.2739064,0.21170823,-0.1199731,-0.16274345,-0.09058813,0.06566674 +0.19944106,0.29879156,0.09489963,-0.16012342,0.41144007,0.09013136,0.06660023,0.12888645,0.37155625,0.0004700406,0.3260819,0.14253984,-0.19458453,0.36893028,0.13075909,0.18781419,-0.053678058 +-0.5499563,0.20079388,0.39051533,0.4151519,0.058914013,-0.029985836,-0.15942788,0.42306015,0.1729905,0.21162567,-0.26342607,0.16284078,0.42511034,-0.09740397,0.16970213,-0.029246483,0.29743612 +0.08741939,0.06694276,0.0062502776,-0.058391344,0.16746637,-0.31612575,0.121569365,0.052790247,0.047162697,-0.07536527,-0.051365532,0.33213595,-0.2105358,0.11920292,-0.06097746,0.17608033,0.006667883 +-0.041403923,0.14540006,0.103377596,0.09178289,0.2632603,0.3356626,0.16325694,0.05035712,0.12172506,0.10921713,-0.0011733889,0.19653419,0.18535064,-0.16221619,-0.022858165,0.049598463,0.1279961 +0.080172285,0.16463454,0.051699154,0.38469353,0.36027873,0.36255696,0.24998781,-0.4418246,0.007966732,0.276434,0.16603296,0.49151888,0.034570664,-0.079222076,0.20764825,-0.07375473,0.26355112 +0.056265727,0.20933898,-0.004841147,0.4747531,0.3160994,-0.22195663,0.2773473,0.1415878,-0.123674706,0.19872665,-0.23299548,0.25602925,0.013709589,0.3710757,-0.016253011,0.28493473,0.3399932 +-0.014902407,-0.424237,0.37039018,0.3023275,0.31347346,0.42002165,0.24426332,-0.1041335,0.19487886,-0.2168509,-0.09744019,0.27779838,0.29112828,0.11961466,-0.053433064,-0.043684565,0.012396583 +0.103610866,0.1084828,-0.18516178,-0.20989126,0.14227225,0.15417756,0.15804027,0.055666376,-0.06480401,0.159333,0.13261873,0.06462718,-0.11396573,0.27693874,0.15931547,0.24853641,0.17333274 +0.085445695,0.0813469,0.07005063,0.031335942,0.2757187,0.1782084,0.15926763,0.17884073,0.21901563,0.08019245,0.21095829,0.32464945,0.16052817,0.1827278,-0.2431291,0.014079506,-0.022507854 +0.13310847,0.22241385,-0.15879406,0.50973505,0.08145192,0.30331576,0.28884852,0.221177,-0.08236916,0.13588676,0.07781406,0.523004,0.019508496,0.39766085,-0.14734447,0.19457054,0.051459905 +-0.14349794,0.21818042,0.3813395,-0.32568178,0.20719631,-0.023067662,-0.063696325,0.1499025,0.25647542,-0.11029192,-0.077779844,-0.6359671,0.503459,-0.07361748,-0.44576126,-0.21185276,-0.032319646 +0.34122047,0.0036895568,-0.20963515,-0.099483304,0.4245549,0.026283894,0.29182425,0.07234096,0.017863743,0.010380009,0.008172762,0.46318507,0.031667434,0.47081664,-0.2217543,0.22609273,0.11898696 +-0.49432898,0.09066578,0.32061467,-0.15000755,0.21882059,-0.061978623,0.033210047,0.27514887,0.22269839,0.24548157,-0.11499136,-0.21064705,0.32726437,-0.021152383,-0.07842053,-0.25901306,-0.081808254 +0.22912411,0.32153147,0.054050203,0.116975695,-0.07506877,0.23653968,0.23717985,0.24408397,0.29628882,0.28048614,-0.017155327,-0.1388778,0.10941428,0.27000117,0.17933606,0.17140236,0.43248543 +-0.39017686,-1.2921593,0.3606801,0.43579116,0.042470146,-0.40908122,-0.7971455,-0.054588106,-0.03167903,-0.5275008,-0.58367854,-0.6373276,0.2793867,-0.06462092,-0.08706576,-0.4497705,0.052307285 +0.049044948,0.17549783,-0.101583175,0.14856032,0.17903073,0.3259965,0.04053885,-0.044369116,-0.023241136,0.2118395,-0.06332412,-0.1219276,0.005588158,0.26068828,0.099865444,0.30144176,0.27210099 +-0.20863776,0.4489019,0.28178066,0.3555482,0.42031986,0.106889166,0.28004423,-0.1271142,0.35385692,0.027003964,-0.131411,-0.14985892,0.08126827,0.3909645,0.21006934,-0.06576836,0.13501403 +-0.14495051,-0.1242857,0.2793178,0.3080276,0.049092084,-0.015194149,-0.38465127,0.2761699,0.1936899,0.010317901,-0.2551343,0.09447333,0.3592854,-0.21214402,-0.27655447,-0.21698332,-0.011416432 +-0.03983767,0.2834237,0.29778644,0.42059013,0.22335202,0.23430985,0.25306472,-0.01896995,0.14322427,0.3627022,-0.4487859,-0.16019492,0.05179228,-0.061905224,-0.36942676,0.017542886,-0.093631476 +0.03668092,-0.034631155,-0.053820536,-0.25858244,0.36346254,0.37487096,0.11437284,0.18364626,-0.31567705,0.34502164,0.06427238,0.13887914,0.31112006,0.1332536,0.19767234,-0.061934892,-0.044643704 +0.2495592,0.3976403,-0.23015444,-0.221199,0.1784945,0.2698811,0.169275,0.098968446,0.19631942,0.29837495,0.15372445,0.38609782,0.13876738,0.13222335,-0.13984282,0.106082045,0.1733542 +0.051747534,0.23764208,-0.062414147,-0.036139376,0.19515598,0.034787636,0.11322984,0.0030232167,0.3928237,-0.12223013,-0.05000764,0.13279083,-0.018161045,0.122362085,0.2333443,0.11168915,0.07463909 +-0.0023470593,0.33113402,0.09529303,0.4037408,0.19281776,0.21791895,-0.027906794,0.16397642,0.21726654,0.23414403,0.09485494,-0.048465334,0.10412171,0.14437844,0.37939298,0.30339855,0.36857527 +0.075919054,-0.058112204,0.11565278,0.4440565,0.116479315,-0.1628429,-0.0691017,0.17746392,-0.026024796,0.6615611,0.20420863,-0.22532374,0.54539394,-0.042214174,-0.017745208,-0.1422185,0.10428087 +-0.18453555,0.2845363,0.43601078,0.3123599,0.15881354,0.03452262,-0.060078673,0.3568416,-0.12160392,0.28252643,-0.17772947,0.2135832,0.4151082,0.26253024,0.21193808,-0.005581756,0.17604537 +-0.1456951,-0.01617091,0.32083958,0.23452136,0.27237314,-0.026636021,0.09083114,0.19445656,-0.095069826,0.46300948,-0.07655347,0.0025498436,0.4366293,-0.14749493,0.0183189,-0.021912938,0.046787176 +0.40385184,0.18353921,0.0010642917,0.27082512,0.506773,0.4930433,-0.24169175,0.32304272,0.21544471,-0.05367368,0.2637488,0.5854244,0.20198943,0.069416456,0.19386032,-0.1678496,0.14049806 +-0.388529,0.035808705,0.27248582,0.24576099,0.24663112,-0.17972611,-0.11176266,0.25269237,0.15665641,0.123608425,-0.07984453,0.15044999,0.29723248,-0.15298478,-0.0366593,-0.21985196,-0.16867594 +0.229811,0.24441883,-0.06972534,-0.121805094,-0.04638929,-0.1279702,-0.07580403,-0.04240212,0.08467737,-0.118680984,0.13317874,0.110928625,0.15564685,0.2053195,0.4743759,-0.13314661,0.054235738 +0.06715356,0.20857401,0.10417788,0.36640802,0.42527047,0.24324803,0.26528478,-0.13781022,0.051821984,0.3717844,-0.29459646,0.4899898,-0.03434237,0.22489335,-0.22789767,0.20419501,0.022653827 +-0.20031163,0.030661058,0.20330746,0.11183415,0.14352904,-0.08443299,0.071616136,0.13426113,-0.07281597,0.15847726,-0.04718784,0.14458491,0.26559645,-0.014198994,-0.16819729,-0.22187583,-0.09673566 +0.12805103,0.1560659,-0.11060072,0.06515939,0.09279566,0.21442354,0.13355249,0.05296559,0.10071497,0.119382724,0.1064662,0.059760753,-0.038286522,0.06449768,0.08783755,0.10579863,0.12469156 +-0.3113447,0.07413437,0.37501967,0.42489502,-0.1920433,-0.21727267,-0.4238073,0.31061563,-0.0015422143,0.21685785,-0.046412013,0.17148112,0.46170482,-0.040710103,0.012066647,-0.34734687,0.09146225 +0.011665428,0.29509795,0.15056817,0.120736435,0.1886822,0.118061565,0.20283264,0.114665024,0.42123526,0.1924397,0.1846288,-0.3617059,0.1473403,-0.1187849,0.04148441,0.10203991,0.29496154 +0.12933806,0.23104806,-0.15548205,-0.32993114,0.3471149,0.07004168,0.17616217,0.05313273,-0.071537696,-0.21146782,-0.07765487,0.06816977,-0.20858383,0.40613815,-0.14438887,0.07311288,-0.021111766 +-0.09172041,-0.052075166,0.29974064,0.68348426,0.34571698,0.27267385,0.41421977,0.5298748,0.37802452,0.5394779,0.19592898,0.44545028,0.3286367,0.10460612,-0.0015803918,-0.1146595,-0.05304583 +-0.13700709,0.032822084,0.44530982,0.39361686,0.13284993,0.08050277,-0.24075629,0.35384542,0.1814511,0.17040546,-0.13709003,0.07887631,0.3827961,-0.28423363,-0.26819092,-0.43676984,-0.048053905 +0.0719469,-0.03656442,-0.23078424,-0.06274917,0.29364443,-0.1821432,-0.009012347,0.07207667,-0.016638812,-0.13143013,0.062560506,0.23351589,-0.22900026,0.37886232,-0.05583884,0.05744882,-0.11156599 +0.09861426,0.08105189,-0.0031498186,0.25813198,0.28551766,-0.11918005,0.12869868,0.05285644,-0.21143378,-0.0027941018,-0.36536258,0.40053648,-0.031765033,0.49794546,-0.14932542,0.19512935,-0.032450054 +-0.2046453,0.29801783,0.39905366,0.3903909,0.24504621,0.025357332,0.1678065,0.18445186,0.33161935,0.17624305,-0.098460205,0.11224087,0.09916178,-0.20563297,-0.3224612,-0.022854935,-0.014832659 +0.18612865,0.016976124,-0.5529703,-0.049640626,0.15542883,-0.26178774,-0.019468082,0.26338238,-0.06734353,-0.38955483,-0.09649026,0.5093156,-0.38738492,0.26558843,-0.060761735,-0.08897041,-0.07840386 +-0.29324067,0.02160724,0.32023537,-0.13480218,0.16070423,-0.10319195,-0.16185367,0.19032125,0.03316666,0.19639763,-0.075189486,-0.06551514,0.27597615,0.15031584,0.1350883,-0.16311869,0.26204738 +0.13767222,0.08285586,0.3760944,0.33227655,0.1693398,-0.109135926,0.37606227,0.3048403,0.15253913,0.34346694,-0.26499,0.23930907,0.3566272,-0.320123,-0.23427902,-0.2546837,0.039190564 +0.3850962,-0.2712492,-0.040601645,0.17484497,-0.07422988,0.4388934,-0.11830439,-0.18232398,-0.05781353,0.050036803,-0.07635654,0.48752844,0.10871981,-0.20301314,0.016699292,0.19018763,0.08332438 +0.15838665,-0.41092733,0.13904615,0.18808638,0.47563574,-0.107561804,-0.43196782,0.50604445,0.7192522,-0.49248445,-0.013569159,0.4156868,0.12115771,-0.47727188,0.46254173,0.10599679,0.023890236 +-0.25611117,-0.014797505,0.1648478,0.1524852,0.20124651,-0.078034796,0.3387393,-0.35704324,-0.047459822,0.031702016,-0.46220657,0.2646328,-0.1883786,0.0641279,-0.20690121,-0.04834652,-0.19706024 +-0.14932048,0.062796965,0.04009759,0.30174848,0.23317559,-0.08139699,-0.15098825,0.052780468,-0.3259324,0.33631536,-0.10543088,0.15009432,0.047328345,-0.065585226,-0.24480972,-0.07607467,-0.12763062 +-0.009123032,0.28556597,0.3503435,0.40903005,-0.03588454,0.0058442494,0.28684258,0.12206384,0.27647203,0.24586843,0.02980902,-0.06894483,0.27372652,-0.032529328,0.20459609,0.12968042,0.24390769 +0.084767774,-0.0828694,0.34633768,-0.28674576,0.13622025,0.06867009,0.44609702,0.4347001,0.1576605,0.46213415,-0.11549127,-0.09223603,0.4654926,0.055299975,-0.22501493,-0.14266233,-0.30591568 +-0.12793566,0.17619967,0.10924737,0.041315805,0.096240275,-0.24286518,-0.11615527,0.25354895,0.32077095,0.38843602,0.016694812,-0.15120398,0.32698384,-0.024216076,-0.24328397,-0.07964317,-0.15213571 +0.054923736,0.46827522,0.22923784,0.24669035,-0.08478282,0.09497231,-0.048056897,0.11330171,-0.019319955,0.3069892,-0.042255633,-0.20152518,0.4859878,-0.15075228,0.42424664,0.14782229,0.26263908 +0.46764946,0.5992707,0.023849323,0.23737802,-0.3361076,0.34929925,0.34897232,0.41465104,-0.14614837,0.20428874,0.17337188,0.57832754,0.24219698,0.18280783,0.08714385,0.09745756,0.07412313 +0.21394397,-0.35302418,-0.20889089,-0.05696113,0.2875677,-0.13786916,0.0451755,-0.05544151,-0.11264828,-0.40398112,-0.022032944,0.238805,-0.303182,0.35535407,-0.3674274,0.1079165,-0.31978238 +-0.2546164,0.05865231,0.36788487,0.35763213,0.17061391,-0.28343794,-0.06220699,0.36498836,-0.064843796,0.21955772,0.1366557,0.081519604,0.27896598,-0.12597622,0.006009817,-0.34580818,-0.10883108 +-0.19549932,0.26869237,0.24429469,0.6795749,0.20227851,0.4272558,-0.06723126,0.3367313,0.2895704,0.29899496,-0.056377634,0.08290251,0.06450188,-0.3352874,-0.11591987,-0.08854638,-0.13173969 +0.09907855,0.4652855,0.13391958,0.30617777,0.4439084,0.30576843,-0.22545683,0.6323406,0.27809814,-0.01938834,0.020469384,0.27322724,0.25163406,0.3533771,-0.05532033,0.065738425,0.11914275 +0.28802803,-0.29198322,-0.18270989,0.11766459,0.19453426,0.057263814,0.342239,0.37850296,0.6815231,0.24829109,0.32927868,-0.16650414,0.0460484,0.2957933,0.04441797,0.23805836,-0.14695086 +-0.07843189,-0.21226156,-0.10951321,-0.0028625538,0.33292857,0.24816756,0.26489115,0.24683435,0.43684202,0.26768264,0.08673455,0.48916906,0.3295284,0.29240093,-0.33457142,-0.40048322,0.09469516 +0.29109597,0.04809749,-0.2842175,0.14450642,0.043984182,0.11377816,0.069952704,0.30997437,-0.054121576,0.070150085,0.19631639,-0.071452044,0.24749799,-0.10545915,0.114293344,0.31431645,0.04803374 +-0.35732928,0.08099064,0.44458997,0.23394866,0.10315967,0.22969465,-0.13322726,0.093061134,0.05511166,0.15541966,-0.04602084,0.17043342,0.22938985,-0.21883221,-0.11072366,0.043901578,0.06286538 +0.43233207,0.05606261,-0.23284258,0.38339496,-0.46489108,-0.16388613,0.6001924,-0.19393432,-0.56651187,0.03479318,-0.32729632,0.38185152,-0.058306023,0.5095645,-0.1872472,-0.08654253,0.13165471 +0.01284943,-0.646732,0.21413752,0.64728445,-0.30093682,-0.0725376,0.18949297,0.26391348,0.4630949,0.024369335,-0.27401343,-0.07590999,0.2952321,0.37222853,-0.25161386,0.37768888,0.06806922 +-0.17436296,0.125874,-0.17754568,0.18062328,0.57126635,0.2562923,-0.7027082,0.27173376,0.13517524,0.45882854,-0.053429432,-0.15279764,-0.28639826,0.062689275,-0.12193506,0.45553485,-0.07493384 +-0.22392905,0.18978511,0.28971854,0.42298663,0.40315372,0.022166116,-0.3299456,0.15828638,-0.11642631,0.006374184,0.023865052,0.39150572,-0.40430593,0.14403446,0.05740135,0.4856744,0.21125335 +-0.3460789,0.48555017,1.0307666,-0.07700409,-0.5733586,-0.042496826,-0.049101606,-0.13349068,-0.3019645,0.16275108,0.331409,-0.09924947,0.38424042,-0.020852756,0.32961023,-0.0063917944,-0.11586566 +0.06587258,0.18469334,0.19585513,0.06572528,0.19963133,0.42964107,0.06707896,0.13435781,0.14782843,0.14918229,0.050384514,0.27630004,0.29503936,-0.06708056,0.07420684,0.030675221,0.09067015 +0.11442751,0.33126202,0.3867259,0.5342397,0.2496367,0.24245733,-0.15237403,0.03777236,-0.12672111,0.62707233,0.13087977,0.2975876,0.41702858,-0.16506104,0.38695163,-0.00992616,0.2622013 +0.12510474,0.080068596,0.08129787,-0.12537439,0.38150164,0.04095759,0.1724177,-0.14131582,0.54339796,-0.40601215,-0.045802876,0.48281693,0.1314249,0.29218712,-0.06547247,-0.04991988,0.051556133 +-0.16875209,0.23037925,0.37690258,0.45187882,0.2593114,-0.23644651,0.3044807,0.3826035,-0.49810567,-0.10896314,-0.17968562,0.5639697,0.01172977,0.33750373,-0.17875248,0.29516545,0.18124445 +0.1630606,0.2760686,-0.5737712,-0.016520826,0.0069618723,0.09488223,0.5298578,-0.060966823,-0.08631945,-0.022471985,-0.027573487,0.1502921,-0.613405,0.27304274,0.22036307,0.049025845,0.01766165 +-0.10270664,-0.018290047,0.40639973,0.47465762,0.16569638,-0.049784787,0.1498505,0.33444384,0.18710926,0.05045224,-0.18482763,0.21819481,0.4151925,0.13867097,-0.30561563,-0.28585234,-0.11297389 +0.13193585,0.22990142,0.3348189,0.30440208,0.21266118,0.16149977,0.21934499,0.13952097,0.33577746,-0.30664772,-0.111160986,0.34127253,0.17431545,0.27357063,-0.072444014,-0.0097827995,0.07372567 +-0.53603244,-0.07943,0.1860262,0.3292307,0.23212445,-0.043807823,-0.19277433,0.3250908,0.14381371,-0.021344433,-0.28710017,0.088608235,0.40348664,0.023117054,-0.13620473,-0.36357442,-0.057872497 +-0.004149501,0.25161287,0.4091097,0.08064384,-0.23060457,-0.19411995,0.05247871,0.08407886,0.25747356,-0.019050453,-0.21041705,-0.05073918,0.19395354,-0.12334732,0.21601066,-0.09941806,0.3408672 +-0.17664368,-0.31354108,-0.074058846,-0.067130044,0.29591632,0.079271264,0.46995577,0.2735885,-0.16750304,0.32520482,-0.091087304,0.14828315,-0.44972217,0.29339302,-0.04126576,0.27773032,-0.050126556 +0.013480038,-0.049294934,-0.7257353,0.081047244,0.25639224,-0.002929329,-0.24199747,0.17360888,-0.026513662,-0.22748087,-0.29197064,0.49676177,-0.13653266,0.3524808,0.045690186,-0.1565406,0.18168055 +-0.24851371,-0.05986566,0.4456039,0.5174156,0.108788595,-0.024990328,-0.23330036,0.29725832,0.15134762,0.24678686,-0.09327415,0.032033518,0.38588426,0.26633072,-0.0021616418,0.00027799275,0.06858723 +0.20252384,-0.6239096,-0.047759544,-0.104664735,0.42802408,-0.10754525,0.12717615,-0.040572908,-0.2593793,-0.3719537,0.037853103,0.6269697,0.08695035,0.33880746,-0.42569014,0.17379123,-0.11574903 +0.22049198,0.20686188,-0.18115856,-0.21023807,0.40579858,-0.17930536,0.42854792,0.24516848,-0.106174864,-0.40027058,-0.11151658,0.12078921,-0.21705006,0.5637717,-0.025182819,0.113378674,-0.31287524 +-0.22316736,0.23338081,0.08874756,0.21383433,0.47751492,0.3175054,0.5114645,-0.2588699,-0.085402384,0.45959848,-0.15208802,0.4400937,-0.028932469,0.10378245,0.057817757,0.15613711,0.31271333 +0.09146321,0.09324763,-0.24309735,-0.21463847,-0.043498944,0.021614123,0.16726145,-0.04188224,0.12401716,-0.13255413,0.04525873,-0.12933594,-0.47233936,0.09161517,0.053514753,0.18633336,0.07626106 +0.21313965,-0.03528113,-0.4313616,0.06515728,-0.28071484,-0.020174403,0.33131722,0.19913024,-0.03644645,0.37552086,-0.1785119,0.5274675,-0.0054822164,-0.04643265,-0.050067365,0.23700528,0.12864204 +0.27400932,-0.34909904,-0.108729884,-0.4475366,-0.59300774,-0.15357117,0.2622478,-0.7033738,-0.0897322,0.015598677,0.36149457,0.24663748,-0.66124004,0.46184096,-0.09392743,-0.040333252,-0.46198276 +0.31982273,0.23947564,-0.15030201,0.18750098,-0.030763883,0.3078701,0.30900073,-0.13743286,0.124385074,0.3079146,0.11048007,0.13701664,0.15702112,0.13515854,-0.037936892,0.008121233,0.11889331 +0.12925734,0.16632591,0.08177881,-0.009826426,0.2516547,0.21503176,0.26086932,0.20018148,0.20209524,0.115965895,-0.19749013,0.30136284,-0.14820631,0.30072945,0.06797906,0.14921525,0.103286244 +-0.39954752,-0.17859219,0.10409874,0.11041489,0.31911293,-0.2920712,0.1432525,0.006455758,0.091807,0.06647921,-0.34430557,0.586516,0.11617118,0.48516995,-0.23956516,0.0806984,0.14247565 +0.040881727,0.019103954,-0.036090337,-0.01958225,0.37126368,0.07403179,-0.12726276,0.16807209,-0.19208848,0.35808825,0.06698644,0.08926268,0.057837203,-0.33820176,-0.22734335,0.050254386,0.0060343486 +-0.16594073,-0.12679641,0.29974243,0.30886552,0.2406611,-0.09559451,-0.21919003,0.25337982,-0.039260603,0.13359553,0.2295557,0.24764508,0.16878568,0.034728687,0.34922335,0.017902331,0.3323342 +0.24776371,0.5747185,0.20724896,0.4734401,0.123549126,0.22351635,-0.12848933,0.120785534,0.22222659,0.15058088,0.23251472,0.45697308,0.3567755,-0.17971796,0.15910687,0.18011378,0.46634558 +0.38128513,-0.046581335,-0.030749867,-0.13155574,0.2721579,0.34335065,0.2821847,0.3731001,0.41300797,0.31854108,0.038832296,0.37580135,0.05554651,-0.032212555,0.16008243,-0.106013544,0.43291542 +-0.2067157,-0.021837622,0.2856072,0.2227666,0.0648,0.05398472,-0.19808733,0.19585726,0.13736385,0.10100963,-0.13962415,0.06259713,0.3278729,-0.03245214,-0.30143622,-0.23624521,-0.09330475 +0.23564178,0.2473799,0.08451137,0.04013557,0.4580983,-0.07026015,0.4802005,-0.012207904,0.16258983,0.13595968,0.06560027,0.5561007,-0.17554718,0.47901046,-0.297914,0.31075478,0.020630948 +-0.41475898,0.64069784,0.3676988,0.31813473,0.120313525,0.2943641,0.2504983,0.15189876,-0.009071086,-0.07456692,0.047693178,0.53774434,0.11504577,0.17014475,0.49156302,0.04102631,0.27682406 +0.22449389,0.19493233,-0.109683394,0.39296204,0.33012462,0.37467927,0.40284696,0.2737176,0.2026329,0.11372857,-0.17658637,0.33638954,0.022125505,0.26234424,-0.207167,-0.0015254209,0.009908268 +0.30745924,0.18263908,0.19041792,0.32196656,-0.05478925,0.02274735,0.10885424,-0.0029601485,-0.14280239,0.1125938,0.24252504,-0.015243135,0.2731332,0.5638683,-0.010702097,0.5327612,0.05880207 +0.03938795,0.18565027,0.018909687,0.11119948,0.060815472,0.23052841,0.10875845,0.31999168,0.30030593,0.014604892,0.06529847,-0.27935064,0.27664942,0.36973318,0.13654731,0.1173429,0.22341587 +0.040818024,-0.23193826,0.07998117,0.0028272418,-0.09544162,0.020296326,-0.1650812,-0.18137772,-0.30496803,0.22580375,-0.040041678,0.2531267,-0.14576504,0.18597172,-0.025944494,0.101170674,0.01448583 +0.122362174,-0.2523372,-0.20071915,0.12454586,0.42421317,0.15593225,0.17710845,0.046144553,0.034178462,-0.13268587,0.102207355,0.44952813,-0.10910125,0.37485483,-0.13058306,0.24473754,0.007579933 +-0.210162,-0.20289995,0.2348066,0.32277292,0.114283554,0.05462383,-0.15728341,-0.027557418,0.17104632,-0.08866774,-0.012627591,0.11453554,0.03471502,-0.18346931,-0.044372566,-0.038735315,-0.067728184 +0.3326288,0.006748149,-0.2922146,-0.30430385,0.018972255,0.104143105,0.081657566,-0.14575735,-0.025737237,-0.13348028,0.07496247,-0.015570345,-0.33905205,0.5239701,0.07107057,-0.011610993,-0.08088816 +0.14030667,0.14999269,0.14145768,0.3855102,0.45907584,0.2351309,0.4150586,0.1108479,0.20276533,0.2619178,0.21504036,-0.080183886,-0.02327294,0.46855596,0.18007918,0.11830656,0.2734112 +-0.08075028,0.22744931,0.10650837,0.48728392,0.022270897,0.20155083,0.21458581,-0.09115849,-0.16345294,0.49332753,-0.15935533,0.3710302,0.0039235065,0.17411707,-0.06838491,0.31777748,0.25919 +0.031317987,0.21472104,0.06964741,0.5411031,0.033326484,-0.092551455,0.25043792,0.26422375,0.09819737,0.32412678,-0.26649147,0.100994565,0.00427801,0.10094656,-0.25403973,0.28039274,-0.0398683 +-0.04466769,0.3685651,0.6179642,0.39608717,0.34824005,0.14858676,0.45316738,0.48134044,0.06905302,0.5350089,0.10233116,0.33852378,0.35036725,-0.078823626,0.13524818,-0.20526473,0.036820557 +0.3251338,-0.03191117,-0.18083431,-0.12165504,0.28077197,-0.22734196,0.39606574,0.23397064,0.17990778,0.20312661,0.09815793,0.2765378,0.6009186,-0.039988965,-0.18929048,0.06290831,0.09678848 +0.3178289,0.32226244,-0.0062567354,0.22012335,0.46888024,0.39630488,0.16459502,0.12592061,-0.21391824,0.34968838,0.26488128,0.43357158,0.25246197,0.12511021,-0.11025375,0.258557,0.03787464 +0.088740274,-0.121152714,0.49958917,-0.027755661,0.4311276,0.2352262,0.3493148,-0.06732051,0.26501226,-0.22266419,-0.14664836,0.0974339,0.14445852,0.2750922,-0.038247287,-0.031717997,-0.3357966 +0.31121206,0.355587,-0.30260405,0.27313015,0.123764604,-0.1938036,0.29704157,0.10597192,0.21460907,0.40967873,-0.3752717,0.06949286,-0.026554665,0.38507724,-0.53170204,0.15442492,-0.30174595 +0.43703517,-0.532965,-0.18108213,0.00021527584,0.44505703,0.08810403,0.73209286,0.13800499,-0.044332612,-0.2391479,0.0045071403,-0.13023753,-0.11294989,0.6340223,-0.21857479,0.30687577,-0.11424971 +0.12438409,0.095344335,0.025775585,0.16973525,0.2618134,0.0017574343,0.11672911,0.049555413,-0.12550147,0.45849538,-0.034959074,0.5724986,-0.5159453,0.03142925,-0.13389748,0.27373078,0.044169307 +-0.19844481,0.10793993,0.2143214,0.18386492,-0.09413401,-0.058069166,0.048727393,0.18099876,0.17084713,0.12140521,-0.071193494,0.025578238,0.134031,-0.22125445,-0.113253035,-0.06817932,0.033661917 +0.21895973,0.36628273,-0.095655695,-1.0615107,-0.2694692,0.48296964,0.5419821,0.52767533,-0.19817814,0.64518887,-0.32601884,-0.6823136,-0.22196028,0.6555696,0.012248001,0.605169,0.39885432 +0.24985853,0.096017666,-0.028951164,-0.088058375,0.19572109,0.1847306,0.28679636,-0.17807542,-0.0954351,0.049094096,0.07668374,0.2958486,0.030139107,0.22680676,-0.0280113,0.2987047,-0.16155624 +0.24095598,-0.8383776,-0.458386,-0.25644174,0.2313669,-0.28842264,-0.18510813,-0.063084714,-0.013288924,-0.5028903,0.044272713,0.10059181,-0.7695041,0.32692322,-0.097777754,-0.03819475,-0.34904113 +0.0034986169,0.03501418,0.47282833,0.44204322,0.15466487,-0.41679806,0.33586735,-0.33933526,0.047143854,-0.055329055,-0.14027087,-0.110191494,0.21075618,0.20714165,-0.15478511,0.05123346,-0.10313105 +0.22413535,-0.18919171,-0.3324728,0.22142832,-0.012884373,0.18295485,0.35176829,-0.088970095,0.0034503206,-0.015655344,-0.006738819,0.13302374,-0.035117757,0.36589265,0.09640001,0.026941318,-0.24874634 +0.21829785,-0.34715644,0.19016835,0.4678305,0.18713835,0.13745756,0.341763,0.2577566,0.23094827,0.07476633,-0.06892931,-0.28087083,0.43186197,-0.16866302,0.5705911,0.37496278,0.57001644 +0.17945498,0.13533983,0.09465853,-0.14751706,0.2091961,0.24217439,0.09367469,-0.14010921,0.3512615,0.19957472,0.08085992,0.25249815,0.19239232,0.28414312,-0.27574974,0.027094899,-0.04236917 +-0.31759948,-0.07410963,0.22167061,0.04662332,0.19193713,0.18089315,0.2875913,0.32027018,0.40575394,0.28326195,-0.110544,0.38529375,0.16327196,-0.14182854,-0.18616755,-0.121374615,-0.1309835 +-0.21813793,0.038194064,0.20746204,0.193304,0.10926738,-0.0970146,-0.040589437,0.18781447,0.07098242,0.109049454,-0.12185621,0.11915762,0.16678469,-0.27024242,-0.16518433,-0.2579674,-0.08076112 +0.3914194,-0.2354323,0.06274767,-0.14000979,-0.00077548204,0.12342786,0.096641324,-0.060889825,0.088416055,-0.20112897,0.48146945,-0.26714334,0.0016134178,-0.12832521,0.29063183,0.12609237,0.1114707 +-0.1061484,0.051270783,0.3655188,0.45056042,0.06629105,0.102261856,-0.2792604,-0.0003751844,0.36529508,0.44982985,-0.15581633,0.017407095,0.17849667,-0.19253127,0.026683996,0.024664449,0.38494447 +0.20926146,-0.04994903,-0.08005297,-0.01548316,0.01912223,0.34612095,0.23558812,0.06718927,0.18770157,0.10494962,0.2806224,-0.10870522,-0.02015164,-0.055530578,0.35052198,0.17869055,0.2584747 +0.2073773,0.2439128,-0.22719648,-0.12863265,0.26468244,0.1081566,0.42841387,-0.05443591,0.08412754,-0.19715644,-0.06827203,0.5466425,-0.66447055,0.17983033,0.13644405,-0.18081646,-0.072956525 +-0.050807804,-0.12477896,0.09879054,0.059553996,-0.14080672,-0.07362088,0.16295117,0.11173451,0.31646484,0.12997247,-0.15870908,0.0049203592,0.05915469,0.20521225,-0.23654474,-0.012375943,-0.05631862 +0.092697985,0.296611,0.33386528,0.29239076,0.18883678,-0.0019629996,0.26735902,0.4262075,0.14895585,0.025834687,-0.16524413,0.15617791,0.20198326,0.0338527,0.27521765,-0.008216064,0.37565914 +-0.092612945,0.07926362,0.28762203,0.16961698,0.120261885,-0.008968186,-0.16130057,0.21331428,0.09951661,0.112984695,-0.19162509,0.16967976,0.30322856,-0.21564765,-0.11482999,-0.22219506,-0.09972475 +0.42042217,-0.90394825,-0.5516284,0.054883458,-0.39267296,0.21723032,-0.097144276,0.3192495,-0.2633927,-0.42933398,-0.3132867,-0.52451706,-0.06024819,0.27038342,-0.10488114,0.29279456,-0.2807809 +-0.027444093,0.23508745,0.31465235,0.23665564,-0.056002658,0.36762813,-0.18812472,0.06817443,-0.029846935,0.051221505,-0.04384588,0.20522508,0.26288143,-0.06588602,0.18674234,0.00016229757,0.16895111 +0.330702,-0.44451243,-0.29321605,-0.38476795,-0.3417169,-0.19074807,0.019966634,0.0036227405,-0.20405948,-0.6273603,-0.069291234,-0.19703068,-0.466483,0.38318866,0.00043597032,0.099801145,-0.3564237 +0.2243839,-0.055978127,-0.20031074,0.12067582,0.28940314,0.23583189,0.32433864,0.06609787,0.015683683,0.06744657,0.22100542,0.40611672,-0.24831143,0.22328793,0.0051305043,0.15889362,0.12816799 +-0.24772553,0.038312223,0.38109922,0.507959,0.17458247,0.32702628,-0.43755034,0.0067191613,-0.14993547,-0.062003084,-0.1847798,0.5375241,0.2996401,-0.07401616,0.12730326,0.010212274,0.17760496 +-0.048423585,0.17997164,0.36879328,0.342149,0.15809406,0.08152183,0.060944688,0.28544265,0.02627027,0.028635982,-0.2446183,0.27416125,0.3649153,0.07203159,0.050183855,-0.063098736,0.14473554 +-0.0053066025,0.09830571,-0.115520366,0.13075502,0.3485859,0.35018402,0.16161397,-0.016116247,-0.11583988,0.22169188,0.16750601,0.33726475,-0.14795707,0.059948422,0.09414452,0.17860672,0.122308925 +0.09906795,0.049644023,0.10910694,0.34393662,0.067542925,0.041359827,0.18828163,0.099566974,-0.03592601,0.0150609305,-0.36318848,0.3270226,-0.05461938,0.35349572,-0.021929447,0.34628868,0.23099181 +-0.05401159,0.2821238,0.19256572,0.26644608,0.08497947,0.08267906,0.08056135,-0.21498796,0.20056015,0.25667828,0.012550143,-0.11367137,0.59409845,0.0020304103,-0.30595046,-0.03683359,0.06520331 +-0.21108104,-0.045664467,0.24076746,0.21276331,0.25291368,0.022412864,-0.3357612,0.22125117,0.35250035,0.45225015,0.3429724,-0.35767424,0.45413184,0.06751653,-0.031097392,-0.19177197,-0.08295839 +0.107952215,0.465012,0.13824174,-0.18253158,-0.4005506,0.48318166,-0.52838135,-0.32440394,0.082627274,0.3178679,0.20916337,-0.4409553,0.3761398,-0.018146293,0.07285313,0.24001843,0.40277815 +-0.08941609,-0.032987896,-0.045708276,0.080212146,0.17827861,0.07761517,0.1903608,-0.007955663,-0.08188827,0.26978597,0.11533287,0.19389342,0.13635251,-0.24568298,-0.3340962,-0.0471192,0.015551009 +0.1475988,0.13658248,-0.18281968,-0.010689607,0.3008771,0.14027257,0.2287819,0.19893222,0.39754987,-0.25840715,-0.059673745,0.3172832,-0.06897077,0.030217726,0.18083403,-0.072351635,0.083075 +-0.19622423,0.027001925,0.18206187,0.20234583,0.106348194,-0.094455495,-0.29604286,0.2828752,0.24718687,0.13307667,-0.04273802,0.10232948,0.35819444,0.10921453,-0.2545469,-0.29378334,-0.15107839 +0.15312035,0.27547064,-0.17145793,0.11708185,0.5332454,-0.013798173,0.061256293,0.33720407,0.13899109,-0.16305996,0.027878778,0.67873585,-0.29002902,0.28360334,0.16247953,0.08627027,0.024059411 +0.13095616,-0.07676434,-0.02229616,0.14129293,0.19417176,0.023730613,0.2510621,0.11427848,0.13059105,0.1164531,0.11230327,0.10665767,0.3888748,0.1592505,-0.12776448,0.0042402437,-0.05049061 +0.21661802,0.33739585,0.26793727,0.2505855,0.34423107,0.032210525,-0.0933092,0.22318201,0.26734376,-0.038841173,-0.00069202087,0.1443877,-0.12683125,-0.045297254,-0.26882383,0.062509865,-0.23184058 +0.5157384,-0.3528508,0.08425474,-0.11606323,0.107789144,0.120482236,0.1911097,0.32728705,0.23551437,-0.26825163,0.3797602,-0.029220523,0.07732609,0.3928767,0.20377132,0.29427367,-0.12970522 +-0.4285254,-0.017453125,0.084768854,0.46823248,0.04299575,-0.08711181,0.68759143,0.008989981,-0.089314505,-0.17138438,-0.34596476,0.456512,-0.41817048,-0.17234011,-0.19084221,0.09988008,0.14708881 +-0.33103848,0.14177763,0.24295346,-0.08159242,0.23467775,0.05916688,-0.5853624,0.111941665,-0.10256438,0.11497115,0.032165468,-0.28872743,0.03037903,-0.20844012,0.48853236,-0.38516945,0.16740075 +0.16435176,0.4031836,0.50411147,0.3036099,0.08704714,0.14059412,0.018833207,0.38951194,0.34073117,-0.10381135,0.08941431,-0.46181715,-0.010051909,0.13668035,0.1380214,0.083563946,-0.15019278 +-0.06980787,0.1820869,0.13152584,0.31864244,0.14167516,0.0063989623,0.047369294,0.2051907,0.41368777,0.05745935,0.046289343,-0.2269435,-0.048907246,0.12137745,-0.16949356,-0.090079315,0.028020853 +-0.117871046,-0.2988541,0.07389404,0.09942174,0.4868468,0.07151675,0.3510782,0.054584827,-0.057157006,0.1879081,0.1396827,0.32426092,0.24483855,0.18057984,0.0057138195,-0.05519862,-0.0035110558 +0.15469213,-0.0869574,0.16657157,0.11285289,0.06284669,0.1317468,0.3867921,0.29042324,0.42176944,0.12140373,-0.10482293,-0.106651895,0.29287663,-0.0402493,0.29392183,0.05804616,0.52214944 +0.28812596,0.04136913,-0.18602021,-0.11802873,0.22123149,-0.007767529,0.021146566,0.24103212,0.29823837,-0.31866184,0.15169123,0.16160525,-0.01997773,0.33202106,-0.048489273,0.03585729,-0.16528398 +-0.13478439,0.005581842,0.18511026,0.22885679,-0.11291205,0.033503637,0.047326636,0.18554176,0.14756325,0.09332767,0.026126709,-0.04228917,0.26701313,-0.20045681,-0.18597184,-0.050204575,-0.0987391 +-0.026406366,0.13385242,0.10376619,0.12376907,0.17611174,0.2223167,-0.17497197,0.21642448,0.11320414,0.23349015,-0.081200436,0.03880931,0.19528794,-0.03468663,-0.064351715,-0.20921518,-0.06329882 +0.08680079,-0.004946009,0.38072696,-0.031929024,0.4574528,0.08983462,0.31755632,0.36802217,0.072595984,-0.21271142,0.15819965,0.3914469,-0.1297896,0.2527341,0.1994562,-0.049600642,-0.11854002 +0.6924957,-0.17732337,-0.48837677,-0.8708797,0.10558141,0.2521612,0.76977485,-0.4492239,-0.17756213,-0.5397593,0.06136391,-0.46394217,-0.09582721,0.26813367,-0.2518747,0.037807383,-0.22509344 +-0.3668914,-0.001241413,0.2873734,0.2532194,0.2105822,0.04381792,-0.04404922,0.2466833,0.17518036,-0.15724923,0.11945878,0.32456702,0.3007287,0.042901054,0.0489639,-0.008332199,-0.16477822 +-0.01864628,0.31012648,0.36143598,0.65796936,0.21064758,0.046578147,0.0074397796,0.40669674,0.0050941715,0.24112056,0.16229048,-0.013884261,0.47699308,0.22500187,0.26068962,0.09424209,0.3972379 +0.20753717,0.113687895,0.035107307,-0.041235127,0.29798824,0.47807652,-0.011405819,0.1542383,-0.038273886,0.19832711,0.2637849,-0.13496669,0.16056257,0.018466847,0.20823143,0.0430666,0.063775234 +-0.09937587,-0.015968248,0.35317612,0.055203337,0.10533399,-0.22605522,0.06985642,-0.059418786,0.28638855,0.42255172,-0.097205505,-0.2658366,0.33516598,-0.28441477,-0.12665413,0.01641673,-0.11048605 +-0.022443565,0.057459384,0.44044018,0.26181513,0.04203524,0.050995592,-0.036234554,-0.009058703,-0.06668965,0.09562484,-0.08667187,0.041601803,0.32834736,-0.004567409,-0.030571423,-0.15789612,-0.045437947 +0.201669,0.13600457,-0.028946182,0.22675064,0.07750934,0.113003254,0.26896846,0.06373698,0.332808,0.041746773,-0.2932238,0.24448892,0.13492264,0.4205566,0.12631236,0.1471418,0.23438467 +0.2934432,0.3843282,0.29976547,0.43451265,0.21970174,0.13915665,0.33553323,0.5084327,0.23818485,-0.2447966,0.010776311,0.30942935,0.22734496,0.47005147,0.12962933,0.003430036,0.36299428 +-0.20071372,0.24027567,0.45737988,-0.02937966,0.22807948,-0.025784168,0.13434274,-0.2011799,0.18904473,0.19466084,0.11512289,-0.09797906,0.20147128,-0.108017795,0.24107164,-0.058106318,0.2546809 +0.022801077,0.31543422,0.35876843,-0.011580788,-0.4878183,0.13028929,0.070653856,0.40370175,-0.43543336,0.40310016,0.041448615,0.047286816,0.42319152,0.23992278,0.026803296,0.060792513,0.0022992403 +-0.31492996,0.0067688213,0.010233309,0.15744403,0.28624994,0.248929,-0.41698906,-0.076457985,0.69443905,-0.039404083,-0.25883704,0.16498424,0.1920582,-0.024684833,-0.10987688,0.070252605,0.10840568 +0.28344992,0.21840404,0.21697985,-0.35320312,0.32009235,0.2024524,-0.02515033,-0.05705932,0.48429772,-0.20765461,0.1924644,0.19449124,0.3127416,0.08414724,0.17224245,0.15634702,-0.19141474 +0.08282523,0.2959637,0.3282859,0.45427474,0.31771424,0.20492622,0.026658164,0.3350646,0.07373835,0.53275156,0.11150859,0.30087692,0.48388025,-0.20882186,0.30466893,0.084538534,0.29184744 +-0.20536771,-0.020628458,0.1563859,0.061976817,0.05387859,-0.0073561408,-0.046447173,0.12788032,0.028650511,0.052106835,-0.033223562,0.067789294,0.16643523,-0.083190836,-0.20751901,-0.21079199,-0.12558855 +-0.05871586,-0.11815195,0.13859262,0.02767194,0.13094305,-0.30631527,-0.532272,0.054169692,0.25756058,-0.11509723,0.0869048,-0.06618057,0.26116365,0.2235418,-0.18990448,-0.1848105,-0.083749756 +-0.105076745,0.05807985,0.30893597,0.38506934,0.11361656,-0.15467936,-0.2452621,0.20614916,-0.015600848,0.018653816,0.00062818,0.04749885,0.3537512,0.046043407,-0.03977199,-0.022944385,-0.040546674 +0.35532656,-0.3126175,0.09855257,0.14428766,0.19156803,0.11015103,-0.21778888,0.40838367,0.24045366,0.08704123,0.30810586,0.21790063,0.19981167,-0.114270255,0.13007726,0.25767303,0.12433659 +0.16754681,0.31602177,0.07709002,0.016517367,0.30431426,-0.23705678,0.45817247,0.32714674,-0.12270507,0.40275654,-0.0039844676,0.3027249,0.10365084,0.15942574,-0.33241406,0.1830522,0.009091345 +-0.09445635,0.1960223,0.1497195,0.022557631,0.13535106,0.22043923,0.18736593,0.07468591,-0.08634956,0.23314184,0.11938346,-0.05771304,0.41131508,0.053624816,0.22869962,-0.023225447,0.08109695 +-0.12546413,0.24155259,0.37567258,-0.11143775,0.13836578,0.110707246,0.18507351,0.28074998,0.28795493,0.16080517,-0.04876849,-0.46345544,0.08796252,-0.048882853,-0.11014732,0.1223806,0.06062785 +0.2092003,-0.49976432,0.039290894,0.35957634,0.25340903,-0.08337269,0.53641176,0.15979727,-0.2950463,0.038094085,-0.21623579,0.27285343,-0.00940172,0.47423407,-0.19257225,0.4635529,0.0067555187 +-0.0806744,-0.8684424,0.18295437,-1.0056437,0.71057194,0.05820066,-0.43275958,0.534387,0.097708136,-0.3252719,0.32117447,-0.651802,-0.07720848,-0.029214893,0.24717142,-0.1902354,-0.18598953 +0.11695611,-0.25813797,-0.13768925,-0.23481448,0.21885674,-0.08077095,0.38510376,0.2275755,0.12226992,-0.4498987,-0.1330161,0.4417284,-0.5473641,0.28103682,0.03614606,-0.14741084,-0.18618524 +-0.17259689,0.49527627,0.16196226,0.09573619,-0.039617527,0.13714841,-0.43832362,0.027698357,0.2902558,-0.050792348,0.06744552,-0.3717965,0.2168563,0.123538114,0.36076355,0.10015086,0.6740203 +-0.1344055,0.079162955,0.5416542,0.41926837,0.11678098,0.25685814,0.19282286,0.0053262822,0.09659464,0.24401301,-0.4191535,0.24222521,0.31159866,-0.19356999,-0.005531546,0.042285383,0.29099914 +-0.10960102,0.30120644,0.5229885,0.44542453,-0.083713405,0.27837387,-0.18001924,-0.02415071,0.0013862443,0.23752858,0.069255255,0.24170293,0.2959312,0.06865941,0.08127862,0.022563186,0.20527484 +-0.012701313,0.08240758,0.09567369,0.21064608,0.09310468,0.28644815,0.30395463,0.18555734,0.32145664,0.18436652,-0.10950737,0.07213157,0.30824578,-0.07686549,-0.24112363,0.14159451,-0.078202695 +-0.21952866,-0.0889768,0.2005244,0.22733617,0.074871935,-0.064033136,-0.22813085,0.17100798,-0.009205237,0.05868462,-0.06511544,0.09838754,0.33083686,-0.024308687,-0.26264137,-0.29170144,-0.16472335 +0.34954247,-0.33173224,-0.1325227,-0.74425215,-0.6903299,-0.2939416,-0.6117156,-0.4800211,0.15461776,-0.5134722,0.4345608,0.27015644,-0.068874724,0.12153003,-0.0036586705,0.4748509,-0.4405094 +-0.13375942,0.3123801,0.32347387,0.21371971,0.19903596,0.2205771,0.040902317,0.17572406,0.11302611,0.10111956,0.013896881,0.13457395,-0.049737267,-0.24374023,-0.007602807,0.052624248,-0.047717705 +0.12705931,-0.31812057,-0.3326952,0.17852972,0.5695497,0.26543248,-0.110107295,-0.101187766,-0.047520813,0.093957305,0.17061394,0.020077877,-0.13086674,0.017349381,0.1806407,0.48776135,0.017715335 +0.62338215,0.37629437,-0.05728914,0.3412697,0.38134483,0.3042807,-0.17565577,0.30400908,0.1375219,0.1318277,0.25648636,0.47734737,0.20850664,-0.11237362,0.028429452,0.13601315,0.14755963 +0.2671838,-0.08020717,0.22465533,-0.27955687,0.18353249,-0.17957646,0.31210706,0.120199926,0.5308956,0.07921245,-0.13331008,-0.21857037,0.08759198,0.21068013,-0.21821266,0.13918908,-0.36215964 +-0.026767898,0.2643589,-0.19702816,-0.14852577,0.51786816,0.1730673,0.06672832,0.30231914,-0.088916354,0.27688578,-0.044727705,0.47067294,-0.15318164,0.1321763,0.001081525,0.11780576,0.025436759 +-0.026439592,0.41174045,0.2644981,0.31994826,0.16306454,0.17972302,0.22664966,0.5373031,0.5939779,0.27665424,-0.25025317,-0.30596516,0.24741526,0.3502268,-0.078272015,-0.049235772,-0.11734411 +0.42049336,-0.38746265,-0.44777197,-0.013429296,-0.014260498,0.052623853,0.07229263,-0.072903246,-0.064004436,-0.1959736,0.11481698,-0.017522616,-0.21385838,0.45877454,0.052879006,0.3301659,-0.087341696 +-0.17370597,0.029085444,0.27909702,0.17050627,0.15331085,-0.015328746,-0.19629754,0.25562814,-0.020354481,-0.039127644,-0.19360727,0.19991185,0.25975713,-0.043706324,-0.12412181,-0.20991312,-0.19421154 +-0.36880177,-0.33843774,0.33600685,0.69505686,0.20312732,-0.107991986,-0.21434869,0.40262526,0.09436382,0.23614012,-0.16890137,0.22049753,0.3380654,-0.25858963,-0.4869175,-0.41612083,-0.29464698 +0.11144987,-0.58062077,0.29921082,0.40971968,0.5637049,0.18563707,-0.20633799,-0.022127539,0.33452806,-0.14662379,0.14079559,0.5721345,0.22956333,0.3971637,-0.12508313,0.18140829,0.032017853 +0.14136168,0.16409524,0.13392505,0.34050736,0.053908218,-0.03095465,0.24470372,0.22083221,0.4322572,-0.12471753,-0.36283013,0.04211551,0.22562315,0.32589763,-0.07490313,0.03324118,0.036735043 +-0.161239,0.04686285,0.156321,0.15790875,0.10214357,-0.055781994,-0.059615053,0.19166927,0.26364827,0.08474624,-0.17734733,0.11927111,0.2714831,-0.095630236,-0.26677227,-0.1543241,-0.13322039 +0.09061679,0.33773193,0.07281002,0.041811597,-0.082311936,0.094246104,0.009959699,0.3552965,0.5757706,0.15744907,-0.13780198,-0.04417385,0.053366806,0.16238222,-0.14816475,0.04323326,-0.042946085 +-0.0980579,0.041816484,0.02498298,0.12331527,0.5607549,-0.043792654,-0.079839356,0.17368093,0.024960168,-0.50441396,0.087227374,0.39018404,0.24473682,0.13928248,0.39559287,-0.21732241,0.15743795 +-0.07958471,-0.0047366973,0.2711222,0.2911502,-0.82243127,-0.614842,0.0022340291,-0.52070856,0.28825402,0.4960628,-0.36463034,0.5023203,0.05141563,-0.50979745,-0.48983577,-0.47394317,-0.2653881 +0.27714646,0.010496425,-0.3666047,-0.42987323,0.1844252,-0.45779774,0.35324922,0.32328594,-0.28270182,-0.34111506,0.01961773,-0.09914399,-0.6359144,0.40167776,0.01897575,-0.12355619,0.061475676 +0.23448385,0.047687244,0.21291545,0.3136129,0.12915547,0.11794845,0.067855924,0.0216545,0.3421542,-0.14526424,-0.12986517,-0.20075898,0.23935036,0.17231196,0.04128014,0.04361112,0.009123912 +-0.16430502,0.034538142,0.42335325,0.48693997,0.2948418,-0.07419837,0.043201372,0.16414574,-0.032372076,-0.06601108,-0.25926697,0.3709606,-0.1932122,-0.17103305,-0.37603775,0.14762312,0.06366355 +-0.023241416,0.26024804,0.43250299,0.5749056,0.34506282,0.29535586,0.33029902,0.13182282,0.1880483,0.3398508,0.20180498,0.28401467,0.051086407,0.033234395,0.57537615,0.12095794,0.6223009 +0.043204825,0.3337978,-0.45895758,0.2549835,0.0074654985,-0.30168813,0.44524312,0.2468355,-0.06321894,0.40751702,0.15328617,0.17121051,-0.35284525,0.41718298,0.107092686,-0.003829915,0.31756154 +0.13274424,-0.6197406,0.014356849,0.47213146,0.51469547,0.3553378,-0.42888984,-0.38437456,-0.12488477,-0.36923417,-0.011126197,0.6084861,0.34501755,0.094827354,0.38147792,0.20217375,0.09553664 +0.051358953,0.46680537,0.16943218,-0.07455842,0.12832943,0.12509298,0.1097988,0.38176504,0.2655677,0.35985157,-0.13964653,-0.29336348,0.25970104,-0.23153438,0.1195857,0.16990827,0.16933344 +-0.025963113,0.008588598,-0.15035115,-0.021994187,0.22780399,-0.08510926,0.30944416,0.047613785,0.025263209,-0.07245907,0.29359373,0.3698978,-0.16617371,0.1743552,-0.05999847,0.054128245,0.056938 +0.2517982,-1.0349281,0.08395282,-0.096306406,-0.18626715,0.07786835,0.09874739,-0.05532932,0.35031915,-1.0451499,-0.3132313,-0.15699656,0.19371669,0.44707003,-0.32463807,-0.042152572,-0.69793624 +-0.3763918,-0.05257865,0.35188618,0.23965155,0.13350436,-0.110183634,-0.29522568,0.24353038,0.09471547,0.06701177,-0.13877265,0.15623939,0.38693833,-0.0628209,-0.22896881,-0.2979191,-0.1017366 +0.11134824,0.07709392,0.13520518,0.23271236,0.17631412,0.03777117,0.4254755,0.022018028,-0.23469992,0.25946075,0.2377611,0.31908396,0.46053928,0.0027887614,-0.15403835,0.11786923,0.040718947 +0.14874296,-0.06469198,0.34350717,0.7130554,-0.11985034,-0.07519305,0.605838,-0.040317602,-0.026615605,0.53736204,0.21241863,0.4974288,0.047245264,0.14202173,-0.2968907,-0.07763481,-0.002568729 +-0.061106212,0.07355016,-0.033691395,-0.119950935,0.2940941,0.13504536,0.06487526,0.10627417,-0.05382225,0.035725083,-0.16675739,0.24028191,-0.11603172,0.16197164,-0.004638424,0.1512686,0.040822838 +0.4155728,0.4931372,0.012940693,0.30987546,0.12163439,0.56101453,0.09258644,0.17917377,0.38444382,0.40249416,0.093567856,0.34336433,0.27910888,0.20201886,0.23578636,0.06015018,0.40467912 +-0.21413241,0.112195216,0.6440469,0.23017219,-0.04980901,-0.22144973,-0.40893906,0.27425966,-0.21933648,0.22841305,-0.14931476,-0.68333685,0.64028394,0.110121384,-0.2118301,-0.3132233,0.17616962 +0.24730968,0.21587583,-0.008990815,-0.021793367,0.45398253,-0.25382033,-0.03567342,0.20560822,0.315132,-0.038200412,0.102449656,0.3310411,-0.06890463,-0.15113705,-0.099297345,0.08361002,0.022423426 +0.42779192,0.26985484,0.010219899,0.18935928,0.37905255,0.5527111,0.45648432,0.23905055,0.2448293,0.37147644,0.34150264,0.33345297,0.21878445,0.15196784,0.11734183,0.22661076,0.01597838 +0.018429784,0.3347841,0.09718167,0.17592876,0.22167021,0.08513293,0.113930546,0.13055106,0.59444886,0.11362725,-0.06981892,-0.3037543,0.36137685,-0.25903192,-0.27616724,0.09256338,-0.17726316 +0.07836326,0.27004674,0.15746535,0.10817843,0.05068801,0.20294379,0.14765169,0.18070753,0.124634124,0.17581777,0.07682403,-0.20519029,0.19902651,0.2068883,0.33905387,0.16720288,0.34660503 +0.071757264,0.39010474,0.071885385,-0.2920789,0.39635026,-0.12864327,0.14503159,0.2793716,0.052283276,-0.19425035,-0.030054735,-0.16968414,-0.44860795,0.37798092,-0.38538766,0.35572118,-0.20714355 +0.052954525,0.3567412,0.44595438,0.24173151,0.33238518,0.17193107,0.2598806,0.31607106,-0.14940643,0.14144233,-0.010931646,0.1572841,0.41875914,0.13722815,0.33717993,0.08324139,0.24979995 +0.2183477,0.06452948,0.16737764,0.31174868,0.17496158,0.1817275,0.22083959,-0.17729576,-0.1483712,0.024293045,-0.18473874,0.4236729,0.33049265,0.249019,-0.17930467,0.16240174,0.0821091 +-0.0632111,0.27132258,0.12736128,0.24585262,0.27759907,0.19025671,-0.24466299,0.2737503,0.09412732,0.33002093,-0.23646495,0.23459345,0.27157363,0.027046997,0.078460865,0.030494515,0.40749526 +0.28087386,0.496812,0.22319911,-1.1248673,0.10853393,0.3631947,0.19363585,0.12600851,0.4355817,-0.37708455,0.06276823,-0.4992687,-0.117101565,-0.19179733,0.15926051,-0.074679814,0.3505466 +0.444776,-0.0150030535,-0.12745026,-0.19540001,-0.09073439,0.10952374,-0.029796973,-0.18451342,0.28513575,-0.3478606,0.17510472,-0.2830035,0.19835141,0.24268068,0.23762359,0.08703626,-0.20381975 +0.64475936,-0.37400568,-0.03253355,-0.50415105,-0.26318714,-0.1616293,-0.3697954,-0.39550188,-0.14161386,-0.27644122,0.28151318,-0.15549183,-0.50437075,0.5680215,-0.05288249,0.016465122,-0.33437186 +0.012799889,-0.041521847,0.38628322,0.009147822,0.08319697,-0.07510644,0.06717191,0.4507093,0.19978905,-0.15864938,-0.08175555,0.36881024,0.38662893,-0.28703412,-0.09670979,-0.05567316,0.10053382 +0.19911827,0.4260922,0.2576096,-0.03354834,0.22437112,0.23217086,0.4073178,0.23739164,0.28943864,0.6171967,-0.09036431,-0.07637959,0.32873636,0.15812214,0.12045357,0.15189594,0.21780638 +0.15691675,0.33300853,-0.15773128,0.07021016,0.47915018,0.4318191,0.2232852,0.14412639,0.3545183,0.4229373,0.30959702,0.31813282,0.082626015,-0.16390106,0.34096077,0.09399552,0.4449386 +0.31046128,-0.5003268,-0.53578967,0.3289851,0.04546485,0.14351389,0.271471,-0.1618077,-0.17538302,-0.39008817,-0.007259804,0.455384,-0.14443442,0.4540544,0.103053026,0.021706684,0.023438744 +-0.032635354,0.044936012,0.49608776,0.39098668,0.036573537,-0.23896216,0.14198126,-0.21908273,0.24560292,0.15993015,-0.04795339,0.12634684,0.371056,-0.036158092,-0.2342592,0.0008071705,0.053247377 +0.08982241,-0.9921485,-0.7779023,-1.0841799,-0.16907927,-0.26321492,0.23181202,-0.7578227,0.32414588,-0.73289514,0.033173807,-0.6927614,-0.92346716,0.14683545,0.13256612,0.089599974,-0.28912845 +-0.20424208,0.14465931,0.36657587,0.3491247,0.16574639,-0.10534457,-0.08739788,0.20339596,0.27278087,0.006243257,-0.12720326,0.117100656,0.35404533,-0.145726,-0.37690365,-0.19755828,-0.267855 +0.040380955,-0.2505373,-0.23385926,0.2472927,0.31477225,-0.18054742,-0.07824687,-0.022069614,-0.16217026,-0.01232493,0.095733665,0.31132823,-0.036808338,0.14332634,-0.10055263,0.40971032,0.2504395 +-0.16820477,-0.41900462,0.12751101,-0.34542912,-0.29692748,0.206002,0.35685334,-0.6061633,0.48997936,-0.002541841,-0.044754177,-0.6495019,0.5507999,0.46137717,0.041297834,0.0558959,-0.21394433 +0.34531277,0.48018596,0.16320264,-0.3048904,0.3833444,-0.00629971,0.050432514,0.4305698,0.41983217,-0.039074898,0.28810063,-0.10839359,-0.2978589,0.107162006,0.33209577,0.1981124,0.05920922 +-0.2506597,0.0015970743,0.1817856,0.25315174,0.09690081,-0.078674585,-0.43479326,0.17537417,0.12089168,0.11764083,-0.20492724,0.12803186,0.2713576,-0.061703198,-0.33958334,-0.33275118,-0.17449522 +0.058898948,-0.20918426,-0.22313179,-0.1925242,0.5581824,-0.19714507,0.6510687,-0.099429384,0.056949988,0.29953298,0.084310465,0.55426264,-0.45667344,0.10232813,-0.22026233,0.32003817,0.085640945 +0.32385626,-0.31833592,-0.4954269,-0.29593182,-0.23850298,0.14996977,-0.025288245,-0.1390446,-0.20163602,-0.3247431,0.08903392,0.17688845,-0.31806538,0.5112822,-0.040415563,0.15299527,-0.15908265 +-0.057465695,0.26972684,0.39227307,0.4294878,0.29527918,0.3305603,-0.11446846,0.2549826,0.098296575,-0.06030001,0.035608623,0.14753036,0.26583782,-0.059188653,0.24839264,0.13337061,0.27482057 +-0.19266558,-0.038985513,0.2143499,0.2424799,0.086535625,-0.13064505,0.011629589,0.16457619,0.07769154,-0.041899398,-0.084585,0.04452335,0.27417743,0.02679973,-0.24732839,-0.24981973,-0.25152797 +0.27908498,0.09763206,0.34290352,0.4176868,0.1689927,-0.22214074,0.065140955,0.15067941,0.23256291,-0.111823924,-0.18959278,0.23561923,0.63805366,0.0650096,-0.07184729,-0.096968256,-0.044486087 +-0.16040447,0.15248708,0.30538133,0.28186372,0.028296161,0.00037983235,-0.06783131,0.2517598,0.20465969,0.06835217,-0.24316865,0.14873357,0.22259311,-0.11801689,-0.15186714,-0.13131496,-0.08136899 +-0.030522997,0.27512187,0.0589693,0.22881636,0.19745669,-0.08850803,0.23698965,0.13225633,-0.08415416,0.15683079,-0.3743705,0.35045394,0.044772293,0.33437216,-0.439464,0.016013432,-0.29371613 +-0.12462458,0.19662875,0.30145183,0.20251136,0.12234967,0.02564699,-0.21961534,0.09047184,-0.043100603,0.20055033,0.042146195,-0.22142726,0.4571029,0.114399344,0.24613991,-0.025610313,0.2223855 +-0.15980285,0.046477336,0.33883247,0.43354467,-0.017315028,-0.059262134,0.31302115,0.3044675,0.37840775,-0.003666135,-0.28914136,0.26472995,0.30105698,0.36204964,-0.18969162,-0.0445458,0.039954316 +0.30807012,-0.08146787,-0.1443713,-0.0347967,-0.23103604,0.2689279,0.18957447,-0.42631897,0.053483464,0.061509673,-0.36912596,0.4482591,-0.4071545,0.017439462,0.37633252,0.17049791,-0.4506891 +-0.08074738,0.44877973,0.4359989,-0.0765493,0.16084512,-0.08871988,0.15344363,-0.24698377,-0.010315858,0.04452695,0.034676593,-0.035991196,0.18184145,0.06471976,0.5143831,-0.121319726,-0.04917367 +-0.5079222,0.081092,0.27435568,0.55317426,0.26710987,-0.0435071,0.07532892,0.35918805,0.11585538,0.2593113,-0.28487715,0.20356031,0.38978535,-0.5289869,-0.23571037,-0.30065587,-0.3847493 +0.13030297,-0.358785,-0.15978959,-0.83431154,-0.34880665,0.141037,0.48668408,-0.48574468,-0.056647606,-0.40731072,-0.44670722,-0.8177232,-0.4366275,0.47222885,-0.112924695,-0.12892042,0.010189983 +0.10710641,-0.20506981,-0.18393166,0.20053543,0.0971695,-0.07406652,0.7520301,-0.09261658,-0.005373082,0.101271555,-0.15948127,0.6816118,-0.11017454,0.41693035,0.120207496,0.0877951,-0.19844058 +-0.16403382,0.22338456,0.42610234,0.16274378,0.24306555,-0.051027153,-0.07250707,0.07898415,0.06162951,0.030948576,0.1368669,-0.31062084,0.29831022,-0.13336562,-0.16877219,-0.037032865,-0.26902413 +-0.05555403,-0.17194483,-0.113726385,-0.01160797,0.22913507,0.07897904,-0.024857556,0.08500613,-0.09366327,0.060177032,0.05163522,0.16907665,-0.17073645,0.18943624,-0.022212515,0.100606196,0.1920483 +0.05348353,0.03768419,0.24807481,0.23932903,-0.07610355,0.2729654,0.21021943,0.0016674924,0.17648932,0.08291701,-0.17191558,0.11547689,0.26842856,-0.063096024,0.08837246,0.06645239,0.17188436 +0.39325383,0.24216896,0.14808273,0.12801632,0.26525956,0.10068944,0.060561344,0.20699468,0.21285097,0.044091437,0.17550254,-0.14818396,-0.01715896,0.47322193,-0.015614597,0.32429108,-0.09861465 +-0.16892904,0.031335875,0.22422992,0.13800108,0.08982711,0.04327092,-0.00030645437,0.16062741,0.23504885,0.21362174,-0.07188823,0.06223708,0.08692294,-0.12897818,-0.15449171,-0.06558223,0.055530317 +0.0685735,0.027052758,-0.14392723,0.24761851,0.28278685,0.040588837,0.18541843,0.20927927,-0.27351952,0.4405423,0.040222414,0.30874833,0.18171714,-0.11121082,-0.2308809,-0.010756315,0.038340423 +0.27412897,0.4646368,0.41929966,-0.30112082,-0.0016218588,0.3501495,0.5887582,-0.014713062,-0.27487832,0.36499488,0.09763164,0.32661536,0.104572184,0.22628842,-0.28393424,0.14334966,0.06866264 +0.14125225,0.16143489,-0.1282959,-0.08004351,0.22764254,-0.1354308,0.33214924,0.06072285,0.17926857,-0.189124,-0.17847745,0.35878184,-0.25315782,0.36939722,-0.06129369,0.21089758,-0.09480644 +0.045994587,0.045559518,0.12609185,0.3167601,0.001143451,0.36552036,-0.4051621,0.2782198,0.24750414,0.016335951,-0.17069343,0.095373884,0.23286225,0.22034691,0.186367,0.24576695,0.20197377 +0.3662879,0.22420931,0.006504768,-0.34923196,0.042710587,0.31160158,0.24273473,0.32357502,0.3956021,-0.3010596,0.30408928,-0.04419225,-0.33086643,0.39755586,0.276496,0.14141566,0.12041558 +-0.119136624,-0.10761819,-0.2011345,0.036756333,0.30338833,0.24216658,-0.34289593,0.09362534,0.10682679,-0.09974057,0.0028152259,0.4332596,0.15261182,-0.056727562,-0.35357183,-0.19350491,-0.029501714 +-0.31737825,-0.42438865,0.48326376,0.2725942,0.06728591,-0.10406288,-0.06264974,0.2826071,-0.0610167,0.09283042,-0.23001057,0.08401083,0.33807033,0.0145913195,0.031372678,0.07678837,0.0048148367 +-0.0441477,0.069021665,-0.1827673,-0.114362635,0.51223123,0.016865958,0.17474602,0.23237324,-0.16015127,0.09802796,0.015565986,0.5184162,-0.23645596,-0.009287462,0.233777,0.20241736,0.14275989 +0.13232961,-0.6564506,-0.15181908,0.20617735,0.49467945,-0.1610137,0.41741288,-0.11057692,0.20979013,-0.6175929,-0.03723814,0.3766016,-0.16552377,0.36390984,0.017942427,0.19518904,-0.18104033 +-0.13406971,0.2592192,0.5311297,0.4359869,0.2905744,0.23064269,0.43697113,0.37760457,-0.042395435,0.057567563,-0.045158926,0.3787194,0.117682785,0.42104897,-0.057265967,0.042096,0.14010032 +0.06973292,0.00622224,-0.21364833,0.029858336,0.15279427,0.013304479,0.23399314,-0.038881715,0.34129754,0.25109196,-0.18438381,-0.15755813,-0.25105023,-0.18936743,-0.07865313,0.46209136,0.17223236 +0.20246571,0.13668726,-0.15440185,0.30491072,0.116641924,0.19021507,0.41443652,-0.022954848,-0.517349,0.06901537,-0.2045323,0.44663373,-0.20076543,0.44081706,-0.13816853,-0.17728646,-0.21642421 +0.13142483,0.39365458,-0.06567147,0.5985859,0.43982273,0.3575189,0.49078947,0.19111776,0.16663499,-0.2601867,-0.020786323,0.13725396,0.29260045,0.38867253,0.45728925,0.29858118,0.59242177 +0.22664478,0.37745285,-0.23894109,-0.0017154189,0.081346124,0.11815281,0.41112146,-0.08682505,-0.11575567,-0.15174979,0.065442465,0.23239765,-0.01006625,0.0753415,0.0411734,0.42280826,0.050784606 +-0.03678584,-0.54498625,-0.5029201,0.1908361,-0.038436066,-0.0072423653,-0.34794077,-0.23337434,-0.093095206,-0.4512565,-0.1502801,0.24264142,-0.44067016,0.38364244,-0.069753654,-0.00843709,-0.25037342 +0.1364686,0.16043496,-0.090351894,-0.26743358,0.557258,0.015929803,-0.18845753,0.12954971,-0.2126008,0.3016042,0.14283226,-0.13545233,-0.029499188,0.23022602,0.034148946,0.26047367,0.069647886 +-0.036912225,0.21423018,-0.29487184,0.5529926,0.14193824,0.1497025,-0.24081771,0.17885742,0.07886968,0.119492024,-0.100445375,0.11638949,-0.32647324,0.10590845,-0.048958015,0.04252439,-0.17824458 +0.16722941,0.17459728,-0.38925222,0.14517541,0.09908265,0.048389386,0.1960555,-0.0914643,0.06935999,-0.27052358,0.11260071,0.46646076,-0.82187575,0.21954437,0.09453803,0.21947198,0.01838564 +0.11637998,0.24512202,0.4299579,0.40602154,0.16482235,-0.038998783,0.0986268,0.1611211,0.16136849,0.03847405,-0.103111744,0.2168799,0.38318363,0.24791712,-0.021836827,0.036965944,0.17752899 +0.4976146,0.37225017,0.08048955,0.6636567,0.50912404,0.0490099,0.48516884,0.42943186,0.2788272,-0.35077345,-0.2086763,0.18358397,0.50213647,0.52837396,0.23793462,0.0032166482,-0.041044373 +0.12504697,0.19499597,-0.06439599,0.13942981,0.096554935,0.028019981,0.28885257,0.24318568,0.03576024,0.13004126,-0.0018201444,-0.0001438043,0.12722361,0.40061948,-0.08950338,0.2968622,0.15800682 +-0.15852195,0.07667121,0.20131421,0.18019728,0.11807534,-0.07329601,-0.05881072,0.19321835,0.11217845,0.08471883,0.0041070343,0.014382832,0.13281992,-0.21398935,-0.08234274,-0.13297899,-0.082076065 +-0.13755564,0.14228334,0.27346492,0.22077662,0.1538768,0.17575341,-0.16685766,-0.075391814,0.030628635,0.0769292,-0.06385841,0.0763605,0.30369982,0.096372165,-0.053349186,0.15157367,0.092829615 +-0.15935194,0.07002568,0.21773934,0.19080672,0.09660068,-0.071990065,0.122876614,0.11967333,0.09462972,0.04168469,-0.06271879,0.030436087,0.12914167,-0.17268306,-0.06076197,-0.056486677,0.16431315 +0.237194,0.17944117,0.08473349,0.37087312,0.09429014,0.27071393,0.14663999,0.190093,0.11489807,0.30369395,0.21964239,0.20462473,0.11385288,-0.14218967,0.11712854,0.10969297,0.103761725 +-0.17214713,0.09818256,0.28558958,0.119244896,0.3093891,0.14062442,0.0510915,0.34719416,-0.19968256,0.5757271,-0.11738056,0.40438458,0.24540372,-0.11963525,0.121511094,-0.053162415,0.09570073 +-0.034846127,0.023380492,-0.042027228,0.31568843,0.05914332,0.22972187,0.2449815,-0.11383836,-0.01103355,0.34450868,-0.004507842,0.10323308,-0.15512104,-0.04378976,-0.10563645,0.23857686,0.16431382 +0.37060007,0.20361315,-0.52961665,-0.60749054,-0.019545387,0.13807887,-0.4388768,-0.21515618,0.38912866,0.2239874,0.13686286,0.4092703,-0.4832281,0.0149736395,0.15159777,0.0377226,0.009267467 +0.17573471,0.058980696,0.26027742,0.16587614,0.2697249,0.49347058,-0.15141967,0.47685635,-0.3471303,0.43433827,0.24944207,-0.8363997,-0.014427992,-0.15910329,-0.060238473,-0.36798948,0.34873798 +0.10732647,0.13750252,0.37630883,-0.017891936,0.22309886,-0.20977749,0.037950292,0.07536494,0.36785695,0.16602652,0.15223211,0.26353619,0.36126083,0.2567144,-0.18153079,0.022127625,-0.00060501974 +-0.25949413,0.030891811,0.5452186,-0.35877472,0.18796621,-0.09581003,0.13180135,-0.06726044,0.10853804,0.06516501,0.16311535,-0.19447975,0.03231783,0.139049,0.027085403,-0.043072913,-0.03318363 +-0.15392467,0.051215127,0.12290255,0.27182984,0.12928621,0.15971503,0.20488666,0.2593053,-0.07086419,0.14367685,-0.05084949,0.37039116,0.594762,0.1023815,-0.09178498,-0.2740887,0.06353028 +0.2510724,0.17558873,-0.205908,0.010539185,0.182388,0.2360386,0.15341003,-0.012142128,0.008912351,0.04645174,0.22028436,-0.027638659,-0.2585638,0.07903219,0.17286225,0.33085406,0.15124694 +-0.4602487,0.43031043,0.3064468,-0.1454576,0.2561421,0.027874311,0.10257316,0.46975937,0.4899141,-0.010036637,-0.01242835,-0.46334422,0.3228685,0.0055872286,0.39155304,-0.09008091,0.4042548 +-0.02743474,0.17970817,0.06536994,0.23004088,0.05748559,0.098293416,0.12233668,-0.022115473,-0.07432405,0.35798767,0.037958857,0.1983867,-0.019823441,-0.04034438,-0.13540125,0.22339576,0.017037924 +0.1581281,0.34718314,0.22948211,0.5229751,0.53676844,0.24353927,0.24918883,-0.12990227,0.37222627,-0.2763785,-0.031524196,0.34732625,0.40280655,0.06998731,0.056393072,0.05111116,-0.058050156 +0.17890216,-0.8395941,-0.7470011,-0.83502835,0.30235696,0.051784653,0.05325475,-0.09572288,0.2109016,-0.3709966,-0.24631138,-0.7915299,-0.48490393,0.36964166,-0.014359335,-0.16688307,-0.19795115 +0.36134896,0.026840031,0.16627495,0.025994416,0.2620009,-0.18535177,0.14254819,0.3214998,0.16062564,0.22793761,0.2868837,0.46092492,0.045904405,-0.06513218,-0.14361426,0.025233787,-0.016776772 +-0.37694454,0.029475216,0.17169851,0.022933295,0.13376206,0.11529764,-0.015945695,0.18335892,0.24304141,0.034265753,-0.25236964,0.11935194,0.060564384,0.03673147,-0.14372228,-0.18078904,-0.09330094 +-0.14189515,-0.33851072,0.40433526,-0.3837706,0.37314442,-0.36513767,0.34693453,0.18177176,-0.026335262,0.025468867,0.29990828,-0.02682263,0.40647393,0.452353,0.1242331,0.4608941,0.10558268 +0.2464252,-0.49626672,-0.22918989,-1.4314269,-0.5529091,-0.15820046,0.13909712,-0.14699352,0.5466228,-0.45750904,0.050070908,-0.72505975,-0.51967716,0.60283947,0.2644,0.4996895,0.07753717 +0.41726485,0.529431,0.3169141,0.3136486,0.19629002,0.4130875,0.5938786,0.4668029,0.18965387,0.30965284,-0.07095621,0.40955958,0.23052898,0.19038856,0.045807756,0.09192932,0.14595278 +-0.10778072,0.23429,0.39552185,0.2131394,0.06241615,0.089070655,0.08011042,0.3125896,0.2584842,0.455523,0.019140735,-0.09633462,0.4376244,-0.15428153,-0.014631277,0.10617565,0.33544612 +0.38216493,0.4387222,-0.09189019,-0.41697764,-0.52455306,-0.17051513,-0.12010343,-0.11732079,-0.08719172,-0.060005385,0.2416571,-0.20110996,-0.3447242,0.27872074,-0.019895978,-0.2659749,-0.33051133 +0.18080038,-0.21520552,-0.03930834,0.05109814,0.26653004,0.05764997,0.3788698,-0.061574977,0.11419858,-0.29453933,0.19370317,0.42509902,-0.026910791,0.1596493,0.37228632,0.07340792,0.052323487 +0.10247428,0.04144923,0.043748867,0.21329965,-0.016899418,-0.17918195,0.11207943,-0.06222351,0.021168273,0.253145,0.012079658,-0.025175976,-0.015323705,0.29299772,-0.14925255,0.18321241,0.14620453 +-0.090394326,-0.39670295,0.37370187,0.43513602,0.09810562,-0.28058663,0.098225266,0.1149319,0.44174075,0.14201266,-0.014595215,0.20666173,0.31310862,0.09063219,-0.3666496,-0.057197947,-0.26603 +-0.18187936,-0.0383731,0.46962982,0.20387977,0.13039078,0.060367234,-0.14685239,0.23879671,0.18794376,0.31930366,-0.24916339,0.14036888,0.36281204,-0.07011861,-0.006778726,-0.08946226,0.26849818 +0.17513803,0.055551596,0.1646152,-0.18804613,0.17118876,0.111344814,0.06531137,0.22154406,0.19489056,0.17632014,-0.26013604,0.4402118,0.111509606,0.059762914,-0.24944939,-0.1486563,-0.18942519 +0.27633792,0.11018631,-0.033502642,0.061744668,0.4816358,0.057312187,0.21649152,0.04598113,-0.08538908,-0.038033858,0.15566984,-0.25331184,-0.3022991,0.5020748,-0.12185987,0.44068122,0.1461911 +-0.02547079,-1.2154493,0.718147,-0.13080345,-0.20354941,-0.08262195,0.035563435,0.091103986,-0.0021569575,-0.11288007,-0.24210456,-0.4061212,-0.0062809642,-0.4769527,0.037915155,0.100359894,0.6241839 +-0.117339455,0.09527903,0.26584622,0.30791172,0.2571467,0.16294637,0.03940107,0.11532586,0.2322374,0.33160797,-0.12436489,0.0673021,0.048206445,0.11397904,0.42252237,0.034164518,0.5421392 +0.053542566,-0.08636831,0.10381773,-0.21266776,0.03304743,0.077403635,-0.006515779,0.07227985,-0.050326906,0.24102378,-0.029608177,0.036842715,0.38767275,0.014651466,-0.11541958,-0.30200496,0.006528443 +0.47445422,0.29350737,0.179818,-0.60531646,-0.08025611,-0.1719322,0.028409906,0.4020098,0.36663333,-0.35773724,0.27610752,-0.3077245,-0.11332385,0.17323987,0.029740537,0.045589633,0.07874091 +-0.33519363,0.13389783,0.15952593,0.19406797,0.24741922,-0.12232244,0.16380903,0.118853405,0.28065726,0.08738618,-0.18450095,0.2959126,0.07146438,0.21611042,0.09443707,0.052093897,0.1546058 +-0.019686427,0.36295286,0.12786937,0.24360551,0.09868102,0.28520754,0.049250294,0.1900277,0.11066349,-0.26096946,0.22566655,0.25244394,0.02205764,-0.1295402,0.098805636,0.13628101,0.06735315 +0.1319654,-0.02303592,-0.061512597,0.13177052,0.34294996,0.09508188,0.33819178,0.15969867,0.0054741134,0.06872191,-0.2615144,-0.021986842,-0.08860355,0.3899023,0.053217147,0.33499333,0.15229772 +0.26211593,0.20889758,-0.34680697,0.1423512,-0.0026952743,-0.3618453,0.05797112,-0.27554238,0.26702458,-0.4369446,0.12296885,0.6228308,-0.4879599,0.49278098,0.058548503,0.056629665,-0.02848762 +0.036495913,-0.1188519,-0.10091902,0.20290507,0.2390202,-0.2351849,0.1507631,0.09124386,-0.27152556,-0.16570337,0.11676871,0.030238606,-0.039660625,0.18963711,0.39330894,-0.054320056,-0.25758645 +0.012409419,0.38243198,-0.043610618,0.5190849,0.06462602,0.15458904,0.24098317,0.388559,0.603026,0.25814766,0.18371937,0.2711029,-0.08788766,-0.023567399,0.430792,0.17510986,0.4886915 +0.25939456,-0.4100256,0.1945811,0.31222636,0.27634728,0.07646606,0.10784335,0.18739675,0.21704368,-0.14260224,0.029840117,0.31757835,0.18423475,0.48821524,0.07326003,0.13479108,0.06024242 +0.09871007,0.200678,0.28593832,-0.041236203,0.26104355,-0.24280694,0.4266279,-0.19258496,0.37619364,-0.06419792,-0.06643505,0.08792915,0.44931564,0.06321794,0.02442398,-0.22604015,-0.203968 +-0.13251732,-0.020102587,0.00659482,0.064486355,0.2234752,-0.032912996,0.20570076,0.2524533,0.0025655415,0.259688,-0.21738261,0.29817453,0.035271164,0.35107464,-0.30950296,0.1599342,0.04561234 +0.2871295,0.16849105,0.263425,-0.041027293,0.34605724,0.16501167,-0.13745223,0.27337655,-0.005406884,0.22001904,-0.02157756,-0.24010588,0.29091132,0.30805647,0.49455556,0.16764256,0.38679284 +-0.12352426,-0.044857915,0.1785955,0.27450654,0.2839759,-0.026745126,0.104789376,-0.10582253,-0.07679723,0.4050686,-0.021697534,0.25754514,0.31213576,0.018734971,-0.17044674,0.007886215,0.20011784 +0.19375207,0.1499281,-0.27774408,-0.39231572,0.09713183,0.030588496,0.091588505,-0.37050968,-0.078697145,0.19786373,0.10426709,-0.07476089,-0.25119683,0.29043365,-0.20141849,0.10359117,-0.015331854 +0.3368547,0.10417579,0.10576875,0.059663877,0.2978583,0.0098488135,0.32014614,-0.08274375,-0.03926001,0.25250217,-0.013039591,0.1645779,0.0817018,0.22995952,0.012399493,0.012776881,-0.0059588305 +-0.20096274,0.5457214,0.13971856,-0.25366768,0.21601681,0.3934859,-0.52911,-0.050270606,0.45088154,0.13935776,0.22480977,-0.48860148,-0.3943269,-0.2091251,0.54133373,0.14338699,0.327216 +0.23852478,0.3348003,-0.09836362,-0.041537024,0.20504406,0.13532767,0.0072719557,0.36133194,0.4472888,-0.17522658,0.41150486,-0.0006758359,0.017408077,0.3550829,0.23413187,0.2381499,-0.003810098 +-0.21156661,-0.100931555,-0.06917392,-0.17664821,0.2823306,-0.0959912,0.44240206,-0.06217752,-0.32711345,0.3986171,-0.35960558,-0.020032823,0.24381837,0.13776457,-0.28509817,0.016031701,-0.26556256 +-0.28229988,0.110343166,-0.00827875,-0.008526821,0.51283884,0.23319156,0.3411304,0.24090199,-0.41459754,0.63481814,0.27168003,0.3519178,-0.0036306172,0.17715909,-0.10127849,0.28644952,0.093097456 +0.23498039,0.123623244,0.042305034,0.009542226,0.22855534,0.14461133,0.24498448,0.14832835,0.14037824,0.20743044,0.10509635,0.09009354,0.31579864,0.09007508,0.13350438,0.01203979,0.0071935924 +-0.27430338,-0.29257858,0.0848344,0.4859667,0.20524135,-0.17860045,0.39195764,0.10534444,0.40047598,-0.027943213,-0.16724136,0.29958424,0.017106464,0.38367668,0.13939783,-0.47410923,0.0013084514 +0.26118228,0.5135411,0.025412105,0.64681953,0.2898734,0.050167818,-0.9539058,0.100212,0.20302832,0.2837616,0.26762077,0.09635919,0.3200855,-0.27611807,0.19343323,0.048110884,0.31335026 +0.34862816,-0.28020447,0.14624025,0.11988585,0.06666756,0.18312535,0.092373095,0.25662205,0.1692901,0.26337314,0.30095452,0.3843739,0.053138666,0.11935859,-0.012952587,-0.089931004,0.043684576 +0.0958716,0.33073968,0.20265192,0.39720434,0.124891765,0.2844605,0.29867423,0.18935673,0.27886665,0.36493754,0.12300629,0.28357938,0.037671246,-0.11579808,-0.05255948,0.05048106,0.39525256 +0.2838163,0.28507507,-0.08088867,0.19582112,0.23530298,0.3817964,-0.102447234,0.3714582,0.24204367,0.20585,0.264043,0.24120723,0.27484408,0.23022221,-0.09262188,-0.09383147,-0.047449518 +0.13319626,0.23878801,0.083421454,0.089193314,0.025685769,0.02749845,0.5683984,0.108145766,-0.12537944,0.27492657,0.07297264,0.539159,-0.043452024,0.3122223,-0.10757048,0.2905254,0.08790415 +-0.22214419,0.23610611,-0.24115682,0.0746298,-0.31482154,-0.03710364,-0.39347082,0.23613138,0.34495112,0.008004184,0.099502385,-0.23085827,-0.057354994,0.16627003,0.17169255,0.25820297,-0.024626737 +0.0791448,0.31798106,0.3480289,0.035517942,0.10364706,0.31581137,0.22372057,0.36427,0.23348807,0.17233908,-0.10473727,0.26093948,0.18808818,0.3382591,0.23310938,0.08211814,0.36476648 +-0.2114697,-0.02081744,0.4674147,0.40239912,0.17331381,-0.20809987,-0.610056,0.02198686,0.22754933,0.36374888,-0.28784126,-0.32485113,0.64554775,0.18167557,0.11311175,0.15683764,0.22261071 +-0.17675467,0.08141171,0.16847439,0.30209062,0.05929996,-0.087088436,0.15061328,0.23094119,0.2287282,-0.03884324,-0.062032036,0.09028548,0.17328568,0.04992612,-0.35717648,-0.21416977,-0.11984859 +0.29741275,0.106215484,0.38360465,0.52236426,0.34818193,0.18686478,-0.29686606,0.2700441,0.08902457,0.654636,0.019133504,0.49978375,0.5467055,0.04462728,0.12059361,0.055723917,0.26798183 +0.2518031,0.18417238,-0.12100259,0.041288976,0.08418999,0.044599965,0.13399449,-0.106716484,-0.107661024,-0.31825355,-0.20224576,0.43477833,-0.06944795,0.3882493,-0.11437831,-0.06783324,-0.29668006 +-0.16459881,0.101643585,0.30779183,0.1408001,0.060456786,-0.078763746,-0.22880857,0.18268603,0.010465998,0.1109367,-0.31942177,0.10556792,0.33876616,-0.0301427,-0.052913103,-0.27710927,0.026784435 +0.12174085,0.08768454,-0.2249007,-0.025025457,0.29423085,0.0023801657,0.10365813,0.12700638,0.06343912,-0.08934413,0.10744565,0.29835537,-0.2241467,-0.077296756,-0.10093645,0.20087449,-0.04342824 +0.025735496,0.112157464,-0.17805214,-0.46657273,0.06213969,-0.064279154,0.15326218,-0.13200106,-0.07644254,-0.19483975,0.11604804,-0.00014071027,-0.54904985,0.46372372,0.038002096,0.24424538,0.11509703 +0.13477859,0.4905256,0.50299215,0.34854224,-0.12716521,-0.21278475,0.413784,-0.015079262,0.16941023,0.0666625,0.05024367,-0.41982415,0.30077177,0.18825793,0.29986393,0.055449255,0.17074811 +-0.049461856,0.36013174,-0.12035437,-0.33577725,0.3331227,0.036212064,0.5731315,-0.30084395,-0.1602695,0.2514374,-0.12734082,-0.14754294,-0.07062249,0.06580883,-0.35890388,-0.06598767,-0.045076467 +-0.2590185,0.10398974,0.29013547,0.24148127,0.07961061,0.0071507306,0.12642828,-0.0892097,0.29881197,0.117628984,-0.056668267,0.025519447,0.1985845,-0.09840723,-0.19244839,-0.15931635,-0.1363636 +0.10463744,0.2961823,0.12049611,0.29428077,-0.10061633,0.35950023,0.45279545,0.060019877,-0.1259072,0.11214792,0.021855632,0.0102699455,0.11254759,0.12962136,0.23418571,0.57123065,0.21410227 +0.016155431,-0.21104442,-0.0707474,-0.04199288,0.46755257,0.12145417,0.12253104,-0.17305031,-0.29729894,0.23639497,-0.15488507,0.47266367,-0.08520728,0.11710787,-0.0061673927,0.17646493,-0.117181085 +0.015669184,0.17726837,-0.059138827,0.12101661,0.24531282,0.22341235,0.002604123,0.1756084,-0.08641971,0.17684215,-0.08346923,0.2861172,0.20549099,-0.009149785,-0.0027838494,-0.022428913,0.15439713 +-0.06477353,0.16839334,0.016068835,0.015253242,0.37403774,0.011167739,0.15283543,0.12580353,-0.1883174,0.036209244,-0.0068601384,0.27299005,0.41048533,0.15057428,-0.17732522,-0.0656242,0.07185341 +-0.31419453,0.06319722,0.29976898,0.30421844,0.123996526,-0.20565936,0.18208796,0.23344184,0.15633464,-0.020788485,-0.087152496,0.13190751,0.25637716,-0.107698455,-0.24802865,-0.32588583,-0.16504033 +0.023660213,-0.0139386635,0.242301,0.41403255,0.22466405,0.21427634,0.23867176,0.22232673,0.45171738,0.07792849,-0.17034471,0.1878375,0.2593731,0.3880991,0.048333105,0.16127472,0.2579964 +0.29306692,-0.30520317,-0.38358912,-0.10958864,-0.41820693,0.026295517,0.35329232,-0.18135609,0.040463343,0.09273726,-0.09530731,-0.17373796,-0.26590368,0.43216214,-0.08017169,0.10522011,-0.21901557 +0.22293285,0.31511262,-0.29338783,0.113004446,0.38616598,0.03781985,0.44885367,0.12578012,-0.12252758,-0.13817273,-0.1100453,0.5273893,-0.38670242,0.25883204,-0.045173824,-0.05198898,-0.14885189 +0.06502728,0.30174118,0.07153373,-0.08832418,0.58444774,0.055750117,0.06664944,0.13814907,-0.14662378,-0.23810391,0.23374121,0.5588708,-0.028901847,0.22509806,-0.088542365,0.52376485,-0.1042783 +0.063115075,0.13263653,0.3262925,0.2248684,0.2313509,0.16343772,0.100973636,0.15462914,0.11026983,0.430718,0.050109766,0.21558046,0.2577356,0.12210537,-0.032276567,0.13097253,0.044377044 +0.00034941122,-0.060588352,-0.10620988,0.19323964,0.41566277,-0.1441575,0.47943366,0.1743941,0.097175434,0.000980411,-0.005396298,0.45781815,-0.20536384,0.39864773,-0.2626966,0.048026185,-0.14408556 +0.18554796,0.12338596,-0.03268686,0.19921988,0.1307203,-0.010391758,0.2625745,-0.073492356,-0.036967613,0.12522212,-0.14683677,0.3243892,0.14263207,0.15440044,-0.21716242,0.11649363,-0.0945559 +0.1464486,0.20716722,0.28421104,0.2736046,0.34982115,-0.014402228,-0.16708383,0.08942196,-0.004716234,0.5031557,0.04629882,0.055965714,0.3241745,-0.029401366,0.050416026,-0.23700267,0.1492036 +0.07070571,0.22552183,-0.01558159,0.39249963,0.38272136,0.17343292,0.2824074,0.20340861,0.10112776,0.23441915,0.071856886,0.02152888,0.36533794,0.18756613,-0.184947,0.0990698,-0.15656619 +0.27010038,0.19314131,-0.19654535,0.104439676,0.32961306,0.2013237,0.29546776,-0.17137134,0.094758146,0.11780994,-0.16399312,0.4776735,-0.1488075,0.36817753,-0.10808693,0.31301463,0.10493837 +0.0535262,0.08035491,0.2914296,-0.06040284,0.15238945,0.07049733,-0.0693753,0.19236551,0.06989339,0.29509038,-0.08788241,0.05056801,0.25591335,-0.024247903,-0.09166866,-0.18148586,0.069291994 +0.13514338,0.01036105,-0.08228382,0.20590352,0.18927085,0.27004966,0.081210345,0.12382093,0.32189322,0.28392717,0.14923666,0.3229807,0.0033486555,0.031102976,0.17308055,-0.1940772,0.41905728 +0.063097134,0.079667345,0.4695854,0.19966465,0.13051923,0.10125203,0.27921465,0.1849325,0.2094556,0.2581655,-0.083462164,0.20224002,0.42074054,0.14464392,0.08122419,0.031742953,0.24234647 +0.1254049,-0.10511164,0.041480407,0.17395997,0.33470678,0.37048763,-0.0075972383,0.098295614,-0.06441501,0.4115082,0.45347396,0.035276275,-0.0858853,-0.014746202,0.34929785,0.055610515,0.25911927 +0.19122387,0.404085,0.010239934,-0.04033479,0.35114443,0.012976977,0.23227553,-0.2856632,-0.3278436,0.01281311,-0.48981714,0.52277416,0.100214325,-0.1106478,-0.005987599,0.24853824,-0.06389249 +0.1188501,0.1922799,0.25981292,0.2176186,-0.09088269,0.17801692,0.24906746,0.29711866,0.13159046,0.342937,-0.03313209,0.26474074,0.19835712,0.069179624,0.029215408,-0.05465319,0.09699228 +0.09074672,0.19806314,0.23752971,-0.16356653,0.25512448,-0.06358687,0.32439494,0.24368167,-0.18629508,0.26659283,0.06664846,0.19101505,0.14421725,0.017516052,-0.010170372,0.28405258,-0.07237813 +0.24482316,0.18460195,-0.020723289,0.10453548,0.5314923,-0.10825322,0.2221262,0.23567732,0.11307359,-0.19295466,0.40769634,0.49451727,-0.020710222,0.103560306,0.25838113,0.13801646,0.18641002 +-0.047614727,0.060195986,0.13468704,0.122417144,0.22374076,0.07519859,-0.03890472,-0.007222058,-0.20332314,0.21121188,0.11933929,0.3174933,0.26513264,-0.01644642,0.03423977,-0.1371539,0.040796366 +-0.14968252,0.010117235,0.09788806,0.193449,0.03791982,-0.028321825,-0.14036307,0.16284645,-0.06340303,0.39489216,-0.06611686,-0.016422998,0.3570323,-0.0018141934,0.12390689,-0.13552675,0.15640265 +-0.016403915,-0.005398044,0.21308754,0.17589489,0.15179956,-0.07118632,0.17487979,0.097326115,-0.10319878,0.21604672,-0.0934744,0.22734283,0.28796008,0.021996474,-0.08281864,-0.051696364,-0.010199834 +0.28922185,-0.27734596,-0.43812412,0.09645018,0.52282995,-0.0007349854,0.275883,0.1253203,-0.12137746,0.019034496,0.24512216,0.073765256,-0.3260349,0.551856,-0.16673583,0.2965157,0.04197232 +-0.11982601,-0.004242757,-0.22478093,0.34623912,0.24088006,-0.023181034,0.3914986,0.3073969,-0.084548995,0.6672517,0.019439356,0.36814064,-0.08283089,0.4380634,-0.034021124,0.012066631,0.41184694 +-0.4273338,0.33338955,-0.5783591,-1.2301372,-0.58007765,0.48223743,0.4954358,-0.07263595,-0.068779305,-0.36406213,0.00948046,-0.8268482,-0.1322135,0.011678099,0.2458849,0.24269444,0.36011 +-0.029479494,0.030546444,0.29309237,0.127301,0.27139702,0.26247936,-0.22572555,0.6906253,0.07410228,-0.20939097,0.21816643,0.30954874,0.4629769,0.38066733,0.044580325,-0.21526332,-0.21463521 +0.15634125,0.03733,0.036428396,0.21347675,0.29024562,0.1844886,0.20198914,0.2873419,0.026276032,0.31959358,-0.2829939,0.26517984,-0.18199016,-0.032170255,-0.19673565,0.4737502,0.23845549 +-0.008882418,-0.7370673,0.2618543,0.34373719,0.09768088,-0.15097965,-0.49733767,-0.09659967,0.13641833,-0.19721991,-0.2356771,0.2166997,0.08329403,0.38767135,-0.13184458,-0.15087843,0.07040376 +0.23383905,0.1422565,0.059718758,-0.096434794,0.3379569,-0.09912388,0.15670815,0.2748865,0.09005627,-0.38424322,-0.076179534,0.5449415,-0.012119822,0.23840447,-0.18015088,0.09414295,-0.38649556 +0.14546111,0.34559643,0.1720555,-0.32703182,0.28547508,0.31074208,-0.07194097,0.33155382,0.12084774,0.3734482,0.25775397,-0.39329472,0.20754942,-0.044094734,0.38788852,-0.08618838,0.53225493 +0.3395414,-0.4168123,0.004279149,0.38761947,0.4599794,0.047378086,0.012272494,0.25256416,0.078236,-0.16301063,-0.22459616,0.35020623,0.10964653,0.3919911,-0.33164087,0.38470486,0.041956715 +0.34475988,-1.0376722,-0.4809019,-0.13975394,0.5095526,0.21616803,-0.39153102,-0.034098163,-0.23550242,0.27055186,-0.19817342,-0.34055912,-0.3625217,0.4010375,-0.3981002,0.3176509,-0.453383 +0.0017411514,0.17326322,0.2438464,0.30277285,0.06722103,-0.14184463,0.1959973,0.04665568,0.22320896,-0.22141573,-0.19574434,-0.09833027,0.26359415,0.28927505,-0.10083573,0.0701248,0.06732151 +-0.06857331,0.14129148,0.42980775,0.3164972,0.18979457,0.35083026,-0.6868877,0.31024075,0.049277667,0.10843297,-0.18728243,0.3039378,0.29658377,-0.32129988,0.014069691,-0.16127604,-0.12792653 +0.23256549,0.36935264,0.15459853,0.51691973,0.34137943,0.3731508,-0.024428625,0.6882389,0.5132688,0.37537158,-0.0032665231,0.38858432,-0.036794648,0.18151438,-0.07504221,-0.09359015,-0.13512656 +0.24252191,0.101923905,-0.33813614,0.29797086,0.39747402,0.16842315,-0.076476075,-0.3218983,0.13493462,-0.12582909,-0.22063425,0.43490914,-0.19628982,0.41629955,-0.11270101,0.32764685,0.07680426 +0.17672747,-0.07067472,-0.0106963245,0.109659985,0.13902263,-0.0133696925,-0.2660658,0.15324067,0.63280207,-0.07605255,-0.20575324,0.039164636,0.2147639,0.19796103,-0.42172444,0.02570376,-0.06258394 +-0.0063638072,0.18629208,0.39371842,0.34912652,-0.07451442,-0.2509649,-0.09365651,0.4644365,0.34041107,0.16117936,0.054071315,-0.11412596,-0.007655675,-0.36818174,-0.16194378,-0.34246114,-0.32547492 +-0.24259818,0.18355583,0.01602404,0.19776776,0.115167014,-0.11069513,-0.12144674,0.120814815,-0.033277225,0.26452556,-0.18953475,0.165696,-0.02891948,-0.017714249,-0.44132343,-0.15865326,-0.014199276 +0.098286845,0.297246,0.34000537,0.041413333,0.15375927,0.1676862,0.011638812,0.05981515,-0.09243747,0.26389974,-0.011428372,-0.20619544,0.13293478,0.13297968,0.3412173,0.1672749,0.11743361 +0.024473883,0.3295575,0.11495723,0.11758871,0.16138688,0.3485781,0.28171167,0.096671864,0.23545368,-0.056813184,0.15723509,0.2545139,0.083936796,0.06929278,0.18133621,0.10131283,0.13583149 +-0.08877754,-0.10498051,0.32204628,0.44027668,0.4277053,0.078013554,0.24834763,0.11321127,0.330936,0.16235965,0.07913852,0.039391134,0.0038706805,0.22622672,-0.082825616,0.027782917,-0.22220153 +-0.014576646,-0.023276193,0.2150675,0.014554801,0.042872857,0.065880895,-0.0042151734,0.16432486,0.24468829,0.11894641,-0.006284571,-0.18231246,0.27048537,-0.0911267,-0.28709996,-0.09056526,-0.15943828 +0.044588596,0.22315589,0.43839464,0.15900087,0.38704696,0.08358328,-0.030791275,0.2497696,0.10429285,0.18305533,0.062192425,-0.11504817,0.15574618,-0.38710383,0.60097516,0.031531677,0.3314232 +0.13032328,-0.74300295,0.3390698,-0.48310485,0.37146464,-0.052742023,0.144767,0.15389088,0.28806075,-0.45172262,0.1878272,-0.029710883,0.06739576,0.3528628,-0.21924771,0.4149165,-0.35125127 +0.021506753,0.15678015,0.052913524,0.10293578,0.051252533,0.11440581,-0.10625698,-0.061234284,-0.186513,-0.0719802,-0.2037863,0.3004423,0.38366428,0.06363773,-0.1587871,-0.2433066,0.07521775 +0.021536037,0.23818232,0.042404532,0.23226367,0.034611158,-0.10473683,0.23537594,0.05393355,-0.07153482,0.15842837,0.025024949,-0.14545673,0.12373368,0.22001342,-0.039193586,0.20775563,0.15417269 +0.09710158,0.20141102,-0.2934661,-0.023959137,0.2699974,0.11255829,0.06902747,0.09389824,0.11253645,-0.12337936,0.07029393,0.09298631,-0.33400884,0.08884303,0.09317248,0.11710449,-0.058432974 +-0.031284634,-0.035326198,0.25740236,0.22812435,-0.0317345,-0.059308108,0.10506759,0.22366051,0.20765764,0.12529927,-0.16842647,0.16009828,0.33703688,-0.16004105,-0.19152431,-0.063713185,0.11752793 +-0.3014931,0.08822756,0.44758794,0.36452723,0.15854734,-0.11309187,-0.22056031,0.24530502,-0.1309823,0.24881063,-0.2730227,0.34391853,0.5408409,0.1645809,0.19972202,-0.15836465,0.24754484 +-0.13560922,0.02004522,0.22377646,0.19854544,0.04797195,-0.09535873,0.10525745,0.15801613,0.20485823,0.10217789,-0.1030099,0.13741307,0.21644336,-0.14165886,-0.40239114,-0.33410174,-0.26947713 +-0.13645667,0.1966568,0.4441226,0.38085845,0.33185142,0.11119527,0.09639658,0.33133093,-0.18917458,0.45509845,-0.00808882,0.20854846,0.4264311,-0.12726386,0.1679891,-0.083601415,0.24522913 +-0.08177237,0.12825459,-0.14227363,0.020766243,0.17222239,0.010139676,0.03280671,0.20004621,0.1778014,0.1282059,-0.21353273,0.18296504,-0.028631689,0.13562708,-0.2671611,0.08701049,-0.026286656 +0.18053424,0.376552,0.29568547,0.42821848,-0.015236026,-0.067719966,0.03239901,0.45465562,0.020695295,0.27651328,0.107169285,0.10044029,0.38610333,0.050515193,0.16998741,0.040302917,0.182101 +0.16831604,0.34679413,-0.06712089,0.35265106,0.35368824,0.22934392,-0.39244568,0.365824,0.33221182,0.4754344,0.2074796,0.06389552,0.18584152,-0.060564518,0.20876841,0.09546325,0.6996633 +0.35889965,0.2127636,0.038892046,0.1555669,0.2583178,0.09748641,0.45861176,0.40284085,-0.007112134,0.20286913,0.18242756,-0.005005208,0.35356465,0.123654954,0.028023565,-0.13078253,-0.04292776 +0.12039682,0.11687719,-0.40419713,-0.1336126,-0.41431135,0.22885728,0.69195366,-0.4383618,-0.07569155,0.32201245,0.071939886,0.3809939,-0.23271707,0.22894712,-0.03794594,0.22108993,0.19025166 +-0.10075199,0.020376673,0.08907061,0.08263642,0.12756516,0.11278355,-0.0044421847,0.2433331,0.17048864,0.28960186,-0.041201152,0.1496137,0.16385558,-0.1471204,-0.12551665,-0.21360527,-0.06172029 +-0.111227825,0.1128402,0.030092822,0.28463334,0.18453963,-0.069184385,0.16693096,0.10111782,0.07411385,0.2603828,0.10146522,0.011297933,-0.008100454,0.19281192,-0.30917704,0.2003302,-0.016593125 +0.33302146,0.39309096,0.17216821,0.22287397,0.48229465,0.35013872,0.2622319,0.45886672,0.52956176,-0.22006167,0.22892867,0.39255396,0.26639855,0.14086862,0.03741763,-0.030398833,0.16734098 +0.24568614,-0.09924066,-0.022618892,0.036598463,0.2754044,0.5023571,-0.05956588,0.10601373,0.28834802,0.07529501,0.31102356,0.4256029,-0.074506216,-0.013657769,0.35385475,0.3032556,-0.007279617 +-0.10344609,-0.09259188,0.21923435,0.1703053,0.13330309,-0.079267554,-0.105069004,0.20358047,0.024463298,0.10280643,-0.107316,0.11633714,0.34189227,-0.22366124,-0.052954663,-0.20003223,0.06410957 +-0.06629588,0.010625522,0.34518188,0.33117187,0.0743215,-0.045172527,-0.26705366,0.21048746,0.17078876,-0.0692364,-0.2173754,0.10666676,0.40126896,-0.35102645,-0.09490129,-0.16950867,-0.005375504 +0.28619638,0.23335508,-0.28342843,-0.014250361,-0.10587308,0.20180051,0.49976575,0.01740488,0.1787185,0.12339199,0.06745525,-0.1314912,-0.4726791,-0.081879094,0.17712599,0.12174934,-0.09935057 +-0.07330131,-0.05719179,0.16640498,-0.078751765,0.20137452,-0.29788473,-0.13409638,0.15128827,-0.012285769,-0.137272,-0.037789226,0.32257527,0.16369489,0.083103836,-0.18691038,-0.16010222,-0.36637345 +0.052904304,0.3713127,-0.015862292,-0.6918075,0.6479838,-0.031700123,0.0036275347,0.013745147,-0.15451449,-0.10944079,0.18582138,-0.18271497,-0.46911862,0.24068494,0.14868568,0.35697082,-0.041854482 +0.16759826,0.13138874,-0.090483055,0.01033603,-0.022973197,0.16448571,0.14916585,-0.044099674,0.078894965,0.11625392,0.21854773,0.023828292,0.0049743126,-0.0017531549,0.10147247,0.093895376,0.07458076 +-0.08213667,0.2778071,0.1812848,0.31916356,0.2521303,0.15404043,-0.06724137,0.1105747,0.30202794,0.25331882,0.20311333,0.09073097,-0.0631702,-0.13538682,-0.005983666,-0.053846873,0.003109058 +0.25718692,-0.13630043,0.16615461,0.1459388,0.44370422,0.23389342,0.41596505,0.18285337,0.035148367,0.2286387,0.0067975344,0.27252933,0.053158414,0.40640077,0.32769942,-0.029592678,0.2653283 +0.22092216,0.35279396,-0.27223516,0.21468957,0.4147094,0.26140508,-0.09185363,-0.24781275,-0.47660178,-0.26545817,-0.24595967,0.657744,-0.0541936,-0.031706408,0.19776952,-0.018382572,-0.38226953 +-0.11307668,-0.037862062,0.1706002,0.23204824,-0.011086592,0.024455056,0.13637885,0.20058453,0.09660755,0.021754159,-0.2522713,0.08148772,0.21668118,0.09698346,-0.11861373,-0.08747984,0.06543197 +-0.19338019,0.1896989,0.3603676,0.06121721,-0.3725136,-0.15629676,0.07024087,0.12428216,0.15013039,-0.24168544,-0.12830472,-0.38579756,0.25746292,0.22516614,-0.09081535,-0.025483426,-0.09522247 +-0.26984683,-0.015747227,0.16168053,0.28905886,0.10061227,-0.13457425,-0.6618452,0.20304497,0.13383149,0.015324482,-0.15212907,0.17141688,0.3619609,-0.16600741,-0.33103245,-0.4113434,-0.21763778 +0.1163361,-0.49714118,-0.38634115,-0.5844478,-0.42523238,-0.046847876,0.36344308,0.07449512,-0.003753444,-0.4604878,0.08055438,-0.17953628,-0.62899065,0.47485408,0.05976782,0.12783295,-0.22282849 +0.16684516,-0.115020335,-0.048017077,0.18084201,0.31053492,0.24370521,-0.10353331,0.10920354,0.4109605,0.2210599,-0.13745022,0.35488093,0.11133183,0.13351977,0.10084538,0.015008441,0.3586397 +0.2791626,-0.68471646,-0.6075286,-0.9165931,0.4766411,-0.0882252,-0.0019658422,0.40929043,0.3667565,-0.1267764,0.038505584,-0.50049525,-0.44937927,0.6489416,-0.10166412,0.086763576,-0.37999022 +-0.043818038,0.38330045,0.4788638,-0.035411976,-0.3193191,0.10071778,0.0599946,-0.09399385,0.2459456,-0.02589631,0.0034804055,-0.050955962,-0.15564656,0.17522052,0.08241968,-0.07015162,-0.16524185 +0.37988174,0.10026408,-0.18469256,-0.48455647,0.23700441,0.11687774,0.46107924,0.16566893,0.093995444,0.31079873,0.16771509,0.008450408,0.0021616132,0.30586216,-0.22254936,0.24147896,0.10908415 +-0.24174392,0.0120204855,0.19074148,0.1114443,0.29103562,-0.10332009,0.27679905,0.110005826,-0.089929625,0.25685284,-0.18249355,0.2805806,-0.011369689,0.29784393,0.0904149,0.17585841,0.4668397 +0.08146867,-0.013534044,0.014079847,0.10542126,0.27140224,0.047711194,0.3097013,0.14574961,-0.2681889,0.16680351,0.024125442,0.061795253,0.25381655,0.07542278,-0.16352722,-0.019775884,-0.0050996915 +0.054570224,0.04510806,-0.5646167,0.08096038,0.3392772,-0.019569272,0.03838584,0.14946707,0.100046396,0.1921049,-0.106521256,0.4827834,-0.53486526,0.41776282,-0.17095031,-0.0055383313,-0.09420621 +0.17228903,0.26808423,0.0111398995,0.087285526,-0.20081955,-0.018093372,0.17454052,0.18480605,-0.22073567,0.36948743,0.090390794,-0.049444217,-0.035669494,0.35071474,-0.41587934,0.13631992,0.04620588 +0.17609054,-0.5390454,0.63987845,0.42808744,0.35589287,0.36116463,0.25814292,0.4143167,0.02085951,-0.04601455,-0.44651562,0.2960232,0.037730217,0.41997108,0.05842671,0.009746391,0.5346597 +0.40485007,-0.2784558,-0.31398398,-0.25539127,-0.12104756,0.14221445,0.21589242,-0.25249928,-0.30931607,0.17634974,0.22915778,-0.01832027,-0.23825294,0.25473103,0.22127008,0.1936947,-0.0776499 +-0.119009264,0.009943395,0.2518569,0.18174371,0.04827614,-0.06725603,-0.18204862,0.15338962,0.03858267,0.13318503,-0.14785114,0.11775185,0.18310903,-0.025829533,-0.07281741,-0.070641875,0.011756569 +0.33655545,0.18858813,-0.46939185,0.082193926,-0.074577875,0.04348428,0.39290875,0.0073663946,-0.25931337,0.02204088,0.27540952,0.00048519397,-0.21657214,0.45283288,-0.19468011,0.07147433,-0.11813543 +0.07666148,0.1725658,0.23394959,0.34075674,-0.14720793,-0.16590741,0.45990425,0.116530865,0.38554302,0.43216074,-0.33767715,-0.0034192235,0.6083291,-0.045339152,-0.47429556,-0.0075848224,0.044528835 +-0.06888228,0.20722184,0.09294616,0.27008873,0.17997283,-0.12358976,-0.004380324,0.19358024,0.31427407,0.124622166,0.10377832,0.12085551,0.13791367,0.06278263,-0.18605773,-0.15978603,0.06259812 +0.29075918,-0.09092861,0.13416973,0.29070187,-0.056250572,-0.1950224,0.64081514,0.15908723,-0.3287531,0.22050637,0.07880453,-0.050778348,-0.036868673,0.33769563,-0.17508006,0.2456117,0.28226832 +0.13635623,-0.028974846,0.13537842,0.52784765,0.23824507,0.18011266,-0.084817395,0.46019584,0.05420275,0.2663507,-0.11139167,0.11308901,0.2801231,0.045766637,0.14239848,-0.28293806,0.2843104 +0.3004686,0.26621333,0.03174434,-0.003494128,0.27270594,0.12679175,0.38787174,0.26818448,0.39965683,0.21254206,0.021485416,0.70890397,-0.009913925,0.12894563,0.049883343,-0.110958055,-0.14030752 +0.23593956,-0.14302988,0.28341854,-0.16260204,0.2522355,-0.07524888,0.33733732,-0.11173202,0.17717335,-0.1753144,0.24094504,0.079060495,-0.009215286,0.17913698,0.29336935,0.0155459745,-0.18560474 +0.10622232,0.064097896,-0.01942426,0.089600235,0.120179035,0.09375945,0.05607399,0.1948016,0.15217209,0.19650312,-0.094119176,-0.19667532,0.3731467,0.1168454,0.04680334,0.13408068,0.2351058 +0.4364935,-0.33183366,-0.03642984,0.14661981,0.44697976,0.49114802,-0.163216,0.16440244,0.05752489,0.16998307,0.333771,0.31025168,0.13136262,0.088867314,0.15294303,0.211651,0.07214098 +0.028537108,0.20184407,-0.028580451,0.1877505,0.20237389,0.09212161,-0.040557053,0.10187193,-0.38999164,0.46212044,-0.0067969672,0.3504583,0.23812087,0.06655815,-0.07233852,0.0530869,0.015222149 +-0.13373192,0.2874764,0.34335026,0.0070559536,-0.1934084,-0.018313102,-0.11153584,0.3512153,-0.01779754,0.39673668,0.3323193,-0.20213218,-0.011793938,-0.09397436,0.3825211,0.06503019,0.31082195 +-0.07457426,0.09822327,0.120693214,0.16697611,0.06958163,0.06989633,0.0432559,0.20826234,0.46027756,0.027494166,-0.23624304,-0.15009093,-0.06845194,0.11861999,-0.29803917,-0.22254995,-0.21374263 +0.16012982,0.4417288,-0.24694641,0.0039339545,-0.23230292,-0.041459586,0.39038596,-0.07120014,0.09249041,0.23571615,0.06335331,0.38483998,-0.24262516,0.13018702,-0.044658825,-0.17447215,-0.2060094 +0.063915014,0.2982215,-0.0026992355,0.17616397,0.3596559,0.2890152,0.24641602,0.19217354,0.13561063,-0.122347936,0.19773795,0.2509431,0.08462139,0.19379918,0.3349165,0.027183903,0.050231796 +-0.2952893,0.15947562,0.3778306,0.15621728,0.105568156,0.07168738,0.049657974,0.25465286,-0.027166953,0.18374409,-0.10236047,0.24181046,0.28270411,0.1061646,0.20544414,-0.0064348555,0.043310523 +0.09565966,-0.31188196,-0.09717932,-0.12837389,0.46083015,-0.13164721,0.58525497,0.11729184,-0.049834393,0.187218,0.02285501,0.6705687,-0.24224739,0.27677172,-0.11247844,0.17246164,-0.047672447 +-0.0023790435,0.23353475,-0.040235728,0.26132083,0.17617264,-0.035848517,-0.19139096,0.3317129,0.28025216,0.20168771,0.024576189,0.29482833,0.11416466,-0.19455028,0.073496215,-0.23881416,0.15924948 +-0.16028737,0.10350302,0.27529347,0.17206384,0.08876205,0.052376032,0.035456385,0.15234233,0.2337003,0.06439074,-0.2777608,0.15506637,0.21126129,-0.12078194,-0.021393895,0.0142939435,0.17525214 +-0.17070568,0.20515303,0.23786025,0.5028946,0.1305949,0.18851788,0.013437684,0.20532419,0.43242353,0.29888237,-0.12654422,0.29757446,0.24760637,0.07778233,-0.22347537,-0.2582531,-0.038581397 +0.11170896,-0.40258732,-0.23659031,-0.8802291,-0.53772044,0.001338257,-0.42259353,-0.59104276,0.033285234,-0.28918934,-0.2723785,-0.41964388,-0.8829189,0.3856328,0.25796837,0.11075888,-0.3624996 +-0.23726493,0.055407558,0.37992567,-0.38862345,0.10431915,-0.13425069,-0.036924783,0.4041551,0.5845749,0.32366544,-0.014569702,-0.47536743,0.14775841,-0.24131316,-0.477428,-0.13062936,-0.01418952 +-0.068582244,0.11108358,-0.050732695,0.12452771,0.09803773,0.045767564,-0.24375826,-0.2628315,-0.12524933,0.13069642,-0.21861455,0.44828254,0.0051572425,0.22293273,-0.03629275,-0.20127684,-0.24050261 +-0.051238474,-0.0904257,0.3369869,0.634707,0.21306834,0.19292027,-0.042149153,0.21400681,-0.17706436,0.21957274,-0.027422935,0.24168834,0.35298765,-0.2215309,0.62522745,-0.037687905,0.5435304 +0.2974108,0.21227983,-0.033195745,-0.3307377,-0.111621216,0.23655276,0.09148172,0.058374193,-0.27169603,0.47703302,0.04150815,0.21647747,-0.116365336,0.30731148,-0.18413179,0.3224083,0.080222145 +-0.21348915,0.31137028,-0.11071836,-0.19411647,0.42475557,-0.02839598,0.22294651,0.039211594,0.049618512,-0.33922985,-0.03187323,0.6287439,-0.5505355,0.37348434,-0.13514318,0.25432783,-0.07702061 +-0.052971978,-0.05572195,0.23627672,0.115155265,0.12394228,0.033353124,0.28222215,0.28223646,0.065558985,0.32294592,-0.010480492,0.047558326,0.29173228,-0.1374088,-0.11967611,-0.128079,-0.05104375 +0.07573341,0.17346518,0.31324583,-0.15589881,0.14704359,0.20098783,0.3038912,0.24929306,-0.0920271,0.3208888,0.13550046,-0.083667725,0.004891521,-0.11765753,0.28236565,0.066598445,0.30850932 +0.13528031,-0.050593827,0.25586468,0.28338853,-0.28834084,0.47887585,-0.13704157,-0.17065772,0.056409363,0.2718039,-0.024358518,0.3162573,0.5705917,-0.0028942262,0.14284734,0.057607595,0.29182032 +-0.030465769,0.19158137,-0.38153988,0.08805412,0.41521475,-0.022910997,-0.11136171,0.024324471,-0.04631658,-0.110957436,-0.030813813,0.49506244,-0.025260007,0.2877504,-0.2614791,0.12832224,-0.063488714 +0.15349749,-0.59334487,-0.22685984,-0.107455015,0.1981407,-0.21773414,0.120730475,-0.04792188,0.097574495,-0.19970198,0.22118002,0.4574963,-0.24552563,0.5384249,0.040295374,0.51615614,-0.18705614 +-0.03730761,0.08674458,0.3743185,0.3076342,0.15045738,0.09387307,-0.559646,0.23368175,-0.016409913,0.10437696,-0.27712676,0.20896347,0.21237737,-0.05629361,0.048214838,-0.101700336,0.017032042 +0.0717677,0.22484292,0.22151855,0.38197187,-0.022035595,0.025927205,0.16200666,0.038924485,0.22836676,-0.022014204,-0.08237943,0.29154631,0.13050386,0.33115634,0.051851273,0.1363627,0.2111635 +0.02647321,0.08370155,0.46874696,0.3642353,0.008648565,0.16626228,0.43201566,0.22431228,0.06391647,0.31914082,-0.25449488,0.31019068,0.18341734,-0.13995613,-0.0163841,0.0065864595,0.18943116 +0.09313176,-0.04028855,-0.17520984,0.1407823,0.12659055,0.07397843,0.2366077,-0.06402092,-0.053201545,0.064999186,0.03832578,0.19867902,-0.04447853,0.22262907,-0.076696746,0.04606367,-0.0014012969 +-0.20990257,0.055435468,-0.032461796,0.16403455,0.1041513,-0.28807354,0.018161377,-0.111877784,0.25085315,-0.053757247,-0.015562342,-0.12644735,0.20073646,0.093603075,-0.21081045,-0.33587688,0.01804463 +-0.21203154,0.3471904,0.46092275,0.45534012,0.023964066,-0.001518853,-0.028853813,0.38660163,0.09358505,0.18817064,0.1162742,0.34568724,0.28812727,0.08856573,0.16811718,-0.076450914,0.20032912 +0.21132283,0.23514597,-0.43079138,0.038695786,0.39666075,0.13852862,0.58469963,-0.07054367,0.024759945,0.1429479,-0.09985465,0.27666715,-0.11157291,0.44585693,-0.24960256,0.19563448,0.031834397 +0.028610136,0.37435535,0.1292413,0.043401495,-0.1328978,-0.042701304,0.27066597,-0.018758727,0.4312784,0.007212129,0.0028739576,0.44695243,-0.037908453,-0.24196959,0.020902298,0.041848596,-0.12301373 +-0.16089155,0.16366164,0.40215856,0.27529714,0.2168386,0.04353531,0.33499324,0.28922108,0.31846544,0.22649135,0.0819223,0.24488468,0.46773475,0.25416186,0.022040315,-0.020968389,0.2516312 +-0.14011367,0.28062484,0.20725755,0.24347602,-0.1370681,0.051421575,0.19017452,-0.056665134,0.327006,0.3343476,0.027570514,0.13367452,0.15687318,-0.09788529,-0.132412,-0.046426743,-0.18500258 +0.34760076,0.20414065,-0.44582084,0.015188889,0.27164984,0.08624219,-0.16889836,-0.11804971,0.29145065,-0.1998602,0.23680182,0.09543039,-0.19279024,-0.047160167,0.21984711,0.19211009,0.12142068 +0.17426267,0.16912495,0.077689186,-0.10526272,0.3603526,0.099965595,0.37851357,0.05985988,0.23778315,0.18862209,0.22136551,0.53949535,-0.08844769,0.3525317,0.12831482,-0.032395426,0.071315356 +0.17500497,-0.4962147,-0.2155257,0.13867527,0.51518434,0.0594845,0.194064,-0.49524006,-0.073209904,0.19463965,-0.0905855,0.5888913,0.15486771,0.41620472,-0.4244459,0.009036604,-0.22193295 +0.035302024,0.23219374,0.06705112,-0.23598567,0.33076048,0.1514374,0.29107153,0.14355318,-0.36781716,0.096862964,0.07709424,-0.05295315,-0.14467923,0.46769437,0.15535432,0.32245216,0.18166807 +0.011961202,0.3434825,0.18959644,0.30134383,0.27191994,-0.027225865,0.37359205,0.22392079,-0.26191673,0.5355122,0.00845492,-0.29559955,0.31174624,0.051844455,0.21568875,0.37061074,0.4220525 +0.16704117,0.20789579,0.26530537,0.24236755,0.06578865,0.46627045,0.17501622,0.27829555,0.27055585,0.51176006,-0.08248869,-0.40271533,0.46167028,-0.36673594,-0.05602708,0.21559224,-0.061328817 +-0.09940941,0.17161393,0.113275446,0.32296723,0.18085447,-0.024155624,-0.13582362,0.2163332,0.40675342,0.14929907,0.16177909,0.07580998,0.17792977,0.13022923,-0.26856074,-0.10048271,-0.12602259 +0.033886794,0.16942638,0.25055736,0.2557378,0.035976395,-0.07074261,-0.19256791,0.27380157,0.21611403,0.12321217,-0.10104984,0.19127332,0.18225697,-0.15573426,-0.015985131,-0.17473033,0.0439694 +0.4236815,0.6817832,0.08690042,-0.17373613,0.058243956,0.24059524,0.31306982,0.012050423,0.17976262,-0.14308724,0.43592173,-0.1852652,0.09452727,0.03446211,0.034788173,-0.03890371,-0.075812906 +0.02720412,0.302898,0.49134994,0.5456558,0.22394468,0.1835752,0.07927155,0.32830992,0.03870933,0.084375605,0.0016290026,0.1544731,0.21733662,0.073790655,0.025189253,-0.090142675,-0.05370255 +-0.22355895,0.062033363,0.3172513,0.18593797,0.057822913,-0.15847383,-0.01838418,-0.028356018,0.08048865,0.01166077,-0.013614552,0.19589807,0.30967805,-0.23146245,-0.16328235,-0.11181037,-0.09225887 +0.21673937,0.1575299,-0.0610859,0.25777984,0.2765492,0.42383325,0.3529387,0.51324743,0.3960743,0.2355433,0.0694945,-0.16832305,0.24633878,0.35910705,-0.009483772,-0.03751301,0.051859803 +-0.048641838,-0.30426243,0.33262712,0.13667,0.00092852156,-0.07823262,0.19544521,-0.21497661,0.25161865,-0.17513424,-0.28839624,0.33130187,0.014043191,0.22655138,-0.21104597,0.10312019,-0.21004672 +0.18710597,0.28452018,-0.0013885023,0.28642723,0.07625188,0.19104695,0.020558817,0.34724662,-0.033542115,0.3843837,0.21290717,0.2481895,0.61649513,-0.07700417,0.10811917,-0.11867556,0.07818192 +0.25388128,-0.6837916,-0.102987215,-0.0337932,-0.06606851,-0.34181008,0.20264125,-0.60515594,0.3467628,-0.50895584,0.28447938,0.3547679,0.10338763,0.34160006,-0.094388716,0.03429089,-0.39158332 +0.12209468,0.055918157,-0.1713405,0.40379876,0.09273135,0.26685283,0.55298066,0.010992288,-0.08087202,0.39742306,0.08770022,0.64959294,-0.14124937,-0.06963724,-0.070908464,0.26091817,0.2672346 +0.2200734,0.16311166,-0.08067382,-0.058178466,-0.012157949,0.19006258,0.3042025,-0.024858318,-0.06171398,0.38102385,0.25529903,-0.01997009,-0.014466968,0.15669669,-0.060830396,0.33300582,0.028831787 +-0.04996475,0.19065024,-0.022613026,0.18858746,0.053172074,0.0055963546,-0.026361404,0.0053254208,-0.08479555,0.35131896,0.07498661,-0.14126779,-0.09121214,-0.13176918,-0.10754015,0.18054818,0.20428173 +0.36215478,-0.012542481,-0.22746265,-0.8000734,-0.0947441,-0.01180832,0.33267623,-0.17265487,0.12279401,-0.23114711,0.31971255,0.08581555,-0.5803714,0.5196413,0.0970424,0.08139375,-0.1829807 +0.52583617,-0.6273325,-0.35873964,-0.5805437,0.12190447,-0.096353225,0.21523783,-0.43814224,-0.04280465,-0.5667945,0.28673267,-0.16747835,-0.62041897,-0.18507232,-0.10562743,0.21634261,-0.38391137 +-0.66622245,0.4132016,0.7799339,-0.23950697,-0.8186739,-0.34087908,-0.34480694,-0.06549735,0.25509462,0.30391598,-0.46576697,-0.36595154,0.3058703,-0.0048128795,-0.22619161,-0.095566794,-0.16826576 +0.14422405,-0.01371997,0.21909349,-0.29073384,0.0147492215,0.15826763,0.19887342,0.2587557,0.35993245,-0.13202915,-0.065863386,-0.31027123,-0.057621103,0.4018729,0.10266874,0.03642861,0.17982598 +-0.28507692,0.2476336,0.16409443,0.38138467,0.19920479,-0.14128478,-0.37802052,0.28445852,0.36923924,0.17208928,0.046804868,0.19426012,0.15095639,-0.2589403,-0.16119729,-0.26336148,0.12270698 +-0.038978074,0.16770269,0.33090678,-0.07099153,0.14911132,-0.038116053,-0.10978407,0.14305647,-0.10278776,0.110727996,-0.096523106,-0.07960666,0.26277786,0.1856562,0.21998328,0.011404717,0.23110297 +-0.4172186,-0.13589026,0.25782576,0.31395605,-0.004201024,-0.46642825,-0.23601274,0.3160903,0.47393733,0.075325064,-0.20893526,0.006984302,0.14425546,0.13569628,0.075622804,-0.34530222,0.08943173 +0.11574673,0.2521983,0.06657072,0.6364465,0.10972374,0.10453195,0.3683482,0.3094046,-0.21114798,-0.4962218,-0.41107216,0.27964443,-0.16104856,-0.032293726,0.112766735,-0.047464393,-0.08846401 +-0.10851251,0.20194882,-0.20973419,0.43108204,0.36851355,0.38935077,-0.49329817,-0.095241606,0.31983984,0.17669317,0.05364128,0.28088763,-0.10434166,-0.27941903,0.15623116,-0.21949495,-0.04528928 +-0.1594028,0.38478687,0.15077546,0.1705622,0.24505453,-0.21195607,0.3443339,-0.29260314,-0.06128565,-0.07564235,-0.1018098,-0.48778933,-0.10464979,0.3018388,-0.09158842,0.22433329,-0.01768864 +0.28744063,-0.38056433,-0.7178822,0.32122248,0.073794685,0.15802866,0.15048864,-0.23595919,-0.45455283,0.1810688,0.03644081,0.4147118,-0.33115473,0.19795837,0.010253665,0.11082967,0.07198397 +0.05327461,0.42438015,0.1302381,0.2226838,0.12828346,0.16924411,0.1410468,0.33274445,0.385007,0.16351411,-0.044725545,-0.049674865,0.32638803,0.33651617,0.19444442,0.10785376,0.49094325 +0.19839986,0.35898814,-0.20381443,0.2025311,0.385813,-0.104544215,0.22503023,0.32203943,-0.12347019,-0.42856908,0.18412289,0.62413263,-0.2777296,0.4491511,-0.007284255,-0.04503115,-0.18823777 +0.20669632,-0.18444031,-0.24109845,-0.16582648,0.06373469,-0.13201839,-0.14129603,-0.18300626,-0.08580927,0.1948704,0.15789105,0.04005124,-0.19470155,0.09442258,0.19254677,0.40594667,-0.042357594 +-0.16356121,0.031265266,0.19851677,0.14207657,0.04707071,-0.018391341,-0.047549814,0.16198641,0.064928964,0.10728487,-0.10746556,0.1365083,0.17858385,-0.1167411,-0.2114447,-0.25373423,-0.11053259 +-0.0009703959,-0.32225138,0.07942763,-0.1207147,0.3195056,0.1798484,-0.15879422,0.23250552,-0.07875679,-0.047129624,0.31070647,0.13858667,0.5531028,0.05966714,0.05596912,-0.11803074,-0.21741858 +-0.002370122,0.3772787,0.17773238,0.23601317,-0.051040072,-0.05770473,0.27941442,-0.4758188,0.47543064,0.13202661,0.16054589,-0.33945775,0.31367916,-0.21666633,-0.07277964,0.081577934,-0.09223788 +0.0010759991,0.28869906,0.37454158,0.071215525,0.2318898,-0.036414247,-0.15058003,0.33587167,-0.07892264,0.49064565,0.06812038,-0.09482693,0.23087822,-0.09480302,0.26428226,0.07520593,0.25233486 +0.22071458,0.001976944,-0.1734282,-0.08136263,0.0656262,-0.10685741,0.24550584,-0.13720895,0.21331403,0.100806154,0.14638487,0.09708066,-0.15371521,0.24299727,0.11226146,0.23499466,0.0038865937 +0.12638114,0.16269974,0.06447217,0.16856578,0.11868613,0.30698612,0.13055533,0.16493085,0.026733333,0.36539164,0.085322574,0.23591505,0.12556821,0.023393927,0.016605243,0.08868251,0.088128634 +-0.21621013,-0.09416594,0.34246486,0.3273812,-0.010646146,-0.11449828,-0.0034248815,0.13929477,0.084960446,-0.018177856,-0.21437468,0.19159059,0.39250946,0.020618178,0.07125957,-0.14772521,0.38764384 +-0.17048727,0.007498498,0.3848008,0.29781407,0.047637057,0.17655419,0.058531687,0.19909078,0.36714393,0.3879602,-0.07477989,-0.107726164,0.1731127,-0.33486244,-0.14858669,0.14965157,0.08527787 +-0.118698664,0.06277579,0.3239693,0.28805542,0.06553878,0.050958302,-0.023901504,0.29992554,-0.14886007,0.16365537,-0.040199406,0.18721148,0.36342907,0.0027418258,0.09214774,-0.25805038,0.11910755 +-0.20681112,-0.0067293067,0.16762324,0.30807966,0.08816101,-0.046423778,-0.24334203,-0.009148628,0.1271335,0.17187682,-0.0288844,-0.13424328,0.1551515,-0.20781481,-0.18714306,-0.17666969,-0.11735649 +0.07994465,0.34517708,-0.4708836,-0.67659974,-0.41434637,0.117797524,0.29912847,-0.5660526,-0.09592255,0.06625678,-0.10111657,0.19935505,-0.44112664,0.6370489,0.14872381,0.16060634,-0.1669679 +0.46237817,0.48146823,0.14616004,-1.0434105,0.58311814,-0.021655593,-0.27423435,0.60948807,0.43698573,0.4283256,0.066584975,-0.3550717,0.0971731,0.49189037,-0.0029743903,0.0527171,0.1487475 +-0.1212264,0.25061154,0.0052235844,-0.1859937,0.32174423,-0.3141725,-0.06278614,-0.41758466,0.0719112,0.26475862,-0.1896897,-0.5220128,-0.34585488,0.085818484,-0.3232015,0.03749219,-0.19878736 +-0.084970824,0.23699912,0.007543703,0.09281315,0.2841816,-0.08358134,0.3659586,0.051766593,-0.03201395,0.41418323,0.057683907,0.21683119,-0.09106781,0.21330881,0.112187795,0.36949548,0.25401467 +0.3172269,0.13130265,0.08993724,0.20359032,0.38001022,0.14743778,0.40298575,0.37605807,-0.20278144,0.41406283,0.15508802,-0.0019030445,0.27973688,0.2484957,0.21972317,0.03986962,0.116655774 +-0.24062015,-0.06671724,0.1220608,0.19060442,0.15074596,-0.14475802,-0.40574744,0.23617141,0.36695373,0.081981435,-0.3939302,0.1839245,0.21435916,0.20493762,-0.27380282,-0.32929996,-0.26452935 +0.366811,0.32725543,0.22504129,0.29425254,0.29511008,0.098295294,0.25097036,0.35985464,-0.073229335,0.31487584,0.11388761,0.38056308,0.3059191,0.112444684,0.1369096,-0.014397016,-0.047323924 +0.10880933,0.137581,-0.25044778,0.16366032,0.5417379,0.10024579,0.17109752,-0.39633748,-0.18118328,-0.29144168,-0.07674181,0.4893979,-0.041196283,0.11300467,-0.22676289,-0.10557377,-0.027818188 +-0.027921077,0.064499415,0.14486904,0.33876124,0.18670107,0.094809346,-0.1790305,0.14057559,-0.03383984,0.12613411,-0.17111264,0.23603223,0.08290739,0.024382403,-0.3907683,0.0069203964,-0.23030156 +0.048013482,-0.11283979,0.31400025,0.049370326,0.1193582,0.08092256,-0.022695666,0.1256271,0.024235122,0.19264574,0.08750312,-0.1076834,0.048522886,-0.28079054,0.3778637,-0.047241382,0.24079937 +0.12773454,-0.11762199,-0.13204879,0.067348525,0.29391712,-0.008663774,0.46371412,-0.15324941,-0.12515727,0.09298052,0.14615707,0.20361416,0.013625676,0.5383109,-0.09966671,0.48725516,0.015648223 +0.25389448,0.41004863,-0.50675184,-0.12199705,-0.21947455,0.3046535,0.08235155,-0.09422283,-0.32277134,0.07030913,0.3310635,0.029964555,-0.057692785,-0.013704192,0.1708255,-0.0035211877,-0.11674832 +0.08411459,-0.032492373,-0.080092266,-0.07054899,0.12600157,-0.09441742,0.13667256,-0.029297523,-0.0016123449,-0.09242745,0.057093572,0.5592637,-0.40447655,0.35000786,0.14837351,0.07874534,-0.16217573 +0.002492343,-0.013932656,0.20253259,0.17731957,0.18479408,-0.29878172,0.32286823,0.12897134,0.101522185,0.12433366,-0.22312167,0.21808939,0.23625486,0.25366405,-0.1437315,-0.012557034,0.16013321 +-0.036122575,0.06453424,0.002900876,0.2193647,0.24333914,-0.10275549,-0.08348744,0.13603216,0.5259066,0.21005909,-0.026389927,-0.1426716,-0.013059324,-0.27195948,-0.3120574,0.05436025,0.07673062 +0.046527736,0.03083948,0.31234947,0.37576717,0.51630247,0.049641382,0.67494214,-0.033436872,-0.29046768,0.3688466,0.3979898,0.64124143,-0.044722598,-0.08000106,0.30580592,0.18085554,-0.0035404523 +0.2709762,0.19490659,-0.12920532,0.037255116,-0.045266055,0.13821152,0.24179427,0.08129218,-0.10025434,0.054993212,0.12984124,-0.011709947,0.14051695,0.27144367,-0.19320513,0.18188317,0.03845138 +-0.13840093,0.076674424,0.19814965,0.086572096,0.11174899,-0.022673452,-0.1110568,0.25982475,0.0916806,0.020724947,-0.17029503,0.12396944,0.17297353,-0.05155023,-0.08513838,-0.2576517,-0.15406702 +0.049130462,-0.6650039,-0.28265092,-0.48980898,0.36245242,0.20623378,-0.043841213,0.103391886,-0.19708277,-0.6150092,0.029789902,-0.2616882,-0.4449031,0.3001037,0.022953136,-0.21062541,-0.18021409 +-0.0021630907,-0.30553904,-0.001488776,0.1800032,0.34825706,-0.061268795,0.22614099,0.07095,0.14408498,-0.28892347,-0.25318956,0.18268962,-0.2968811,0.19926326,-0.29547408,0.29284394,-0.18402234 +-0.22771378,0.08336368,0.16696022,0.1459,0.10556201,-0.0428673,-0.0120361755,0.117859244,0.11306631,0.09878581,-0.024245756,0.07097273,0.1237139,-0.02228125,-0.2031536,-0.18774687,-0.05082494 +-0.017936464,-0.8006806,0.31936753,0.44766578,0.2907068,-0.2320522,-0.38590124,-0.0123414,0.41316894,0.2956161,-0.26854053,0.38475937,0.7093068,-0.1290253,0.06654638,0.16512623,0.27916148 +-0.0127147855,0.2583173,-0.063905075,0.23948345,0.37045708,0.1474584,0.55940205,0.0073140296,0.007556658,0.4105999,0.02026499,0.45035133,0.024528429,0.45013145,-0.06508911,0.26473805,0.28194505 +0.053992525,0.1420282,0.22279425,-0.1885798,-0.21300115,0.28492185,-0.006098891,0.42377114,-0.42252877,0.30852422,0.29235893,0.21283653,0.5631318,0.0823582,0.018653182,-0.20257495,-0.0016337335 +0.08265489,-0.18965688,-0.12458192,-0.39468545,0.5722153,-0.23174612,0.3794259,-0.04013097,-0.36932853,-0.24781989,-0.14633448,0.21908721,-0.098737694,0.23556082,0.12489651,0.18500237,-0.012301276 +-0.022989761,0.12736478,0.43614367,0.31328034,0.1234775,-0.057971697,0.04306464,0.51994985,-0.086900495,0.4461264,-0.26403457,0.005610532,0.63932395,0.09319775,0.101755716,0.02417479,0.041357767 +0.4238851,0.19339907,0.14638884,0.030172491,-0.107647575,0.22096032,0.23038468,0.035422843,-0.02232619,0.39525512,0.28458333,-0.19754514,0.34649178,0.16825292,0.17843445,0.08018647,0.14193678 +-0.19389251,0.061683096,0.18845636,0.015825402,0.20083842,0.17420252,0.14676419,0.20277458,-0.03706418,0.27081057,0.0043693953,0.21662031,0.21580432,-0.19068995,-0.095569864,-0.047091547,-0.032562796 +0.4032204,0.098763295,-0.3428533,-0.9433816,-0.1488115,-0.15869522,0.2579495,-0.36349827,-0.122071825,0.09050906,0.13290592,-0.11135255,-0.48719195,0.52840155,0.10800639,-0.03118497,-0.11828176 +0.059701942,0.19667976,0.17556947,0.09613917,0.03712189,0.030371966,0.17564115,0.28810766,-0.007146968,0.15947232,0.07853557,-0.14128752,0.10632769,-0.047526877,0.3597226,0.015651874,0.37840453 +0.17094803,0.16549027,-0.0262059,0.20000096,0.26342732,0.4504113,-0.25986674,0.15415461,0.3411,0.2464614,-0.27821723,0.44425836,0.2505566,0.07358068,-0.1905983,0.04925994,0.2062869 +0.10730598,0.061486043,0.3144331,0.12848106,0.044451643,-0.118937604,0.04969098,-0.18466592,0.35079286,0.06398557,-0.02609102,-0.0018200853,0.51972014,0.30114546,-0.2402288,0.2338162,0.057657354 +0.24055062,-0.3533406,-0.037450377,0.24608806,-0.23095688,0.13512418,0.12005897,0.36227688,0.16830541,-0.22773941,0.0551974,-0.06823487,0.06135268,0.27324104,0.08743364,0.06749908,-0.038401354 +-0.24514082,0.24050288,0.18171038,0.24171568,0.28074527,0.1788937,-0.55904084,0.4008616,0.0688915,0.23346151,0.03662579,0.15233444,0.21260782,-0.25296786,0.018815255,-0.29706913,-0.15234263 +0.3192071,0.5814962,0.12417337,0.7791965,-0.22881527,-0.103194416,-0.14530584,0.0887427,0.2596727,0.31303877,0.024487156,0.22187632,0.50851715,0.22292276,-0.06995002,-0.07167211,0.008600724 +0.031028852,0.39298627,0.387176,0.2409138,0.15897797,0.17859827,-0.2195098,0.09599805,-0.12267297,0.5119308,0.17878287,0.3898709,0.3968734,-0.05876126,0.30283523,-0.11596281,0.15857899 +0.2657627,0.10440816,-0.25826046,-0.20058505,0.00090854487,0.26674852,0.31523916,-0.38463044,-0.13774441,0.16945109,0.0006466712,0.12851942,-0.096665435,0.33063293,0.036871023,-0.099967144,0.07768316 +-0.15751782,0.046432648,0.27638644,0.05241837,0.16305873,-0.22406314,-0.6545533,-0.04762847,0.19373949,0.002640794,-0.30843824,0.011201272,0.25696036,0.049943127,-0.5633203,-0.41440213,-0.4939115 +-0.17862603,0.1642068,0.21953036,0.40293446,0.19523802,0.2046542,0.030898035,0.0291265,0.18353906,0.35458803,0.121761374,-0.23135921,0.21857922,-0.022161659,-0.1723623,0.0075075007,-0.10158035 +0.17892288,0.14305945,-0.11556238,0.11228495,0.007695969,0.10477694,0.2231285,0.24415995,-0.09810533,0.32928735,0.063605234,-0.080475435,0.157531,0.30266374,-0.14700834,0.2848015,-0.053223606 +0.1909354,0.16914313,-0.10407335,0.56863135,0.45667186,0.16693029,-0.5200069,0.2311234,0.23962757,0.3993659,0.03057051,0.20019871,0.39795527,-0.2681848,-0.22600053,-0.31111565,0.21962517 +0.088489935,0.32006535,0.13974637,-0.09039556,0.46940604,-0.11794695,0.38205117,0.3655823,-0.1530447,0.47638106,0.09111917,0.41267452,-0.124716625,0.31921756,-0.07802654,0.17509674,-0.049145468 +-0.09234473,0.12209308,0.19166459,-0.21288182,-0.01928711,0.0551658,-0.2534359,-0.14611493,-0.45862544,0.37280154,0.083693095,0.18652698,-0.08985079,0.07904807,-0.056825496,0.10587108,-0.07576463 +0.20872372,0.25294232,0.080764614,0.30006495,0.14156772,-0.17587768,0.17943613,0.23471995,0.25311837,-0.035377093,-0.21469583,-0.07349386,0.19905578,0.15074281,-0.06847449,-0.3022975,-0.28693697 +0.16414577,0.048107956,-0.16344075,0.007605624,-0.255607,0.028729636,0.3802917,0.14294727,-0.23622273,0.4680078,0.24292369,0.1888647,0.30271778,0.22616093,-0.40659276,0.001101176,-0.037787765 +-0.13418809,-0.10621819,0.14314143,0.34832448,0.16856495,-0.3778848,0.090207025,0.24295042,0.42694396,0.18572305,-0.11070388,0.119554035,0.29004863,0.21689095,-0.2826355,-0.19838642,-0.04753188 +-0.5037645,0.19931892,0.38359684,0.43897876,0.15139152,0.11096942,-0.11245644,0.40648025,0.41883692,0.21636249,-0.014389424,0.14704812,0.16853201,-0.15040305,0.0013156892,-0.0550988,0.15320605 +-0.14455608,0.00414236,0.26312578,0.1705219,0.3549184,-0.2166352,-0.40191388,0.12923676,-0.02944156,0.046524085,-0.42925233,0.21825461,0.28129017,-0.22004749,-0.3479142,-0.3717698,-0.28354257 +-0.035915427,0.03987388,0.18350604,-0.079991385,-0.05456623,0.34079728,0.472737,0.22473311,-0.09103301,-0.016136443,0.0051174476,0.06843161,0.30705,0.38132104,0.41532585,-0.05916893,0.27769598 +0.010789594,0.26306045,0.20768896,0.114073634,0.06414039,-0.036323592,0.2438647,-0.028296048,0.26710585,-0.059446033,0.03580663,-0.078100905,0.19319686,0.21442367,0.08224671,0.14753476,0.2769919 +0.4352463,-0.2941975,-0.2780789,-0.07066051,-0.051561814,0.14505315,0.20249458,-0.25952646,0.23391831,-0.24680777,0.112466194,0.77249396,-0.3373154,0.39329937,0.13478155,-0.02983618,-0.19771472 +-0.19174527,0.07388306,0.20059714,0.10471399,0.14261377,0.011427125,-0.08041555,0.101308614,0.1423265,0.1969953,0.024187908,7.331604e-05,0.13433424,-0.14263695,-0.07631998,-0.092388846,-0.091702245 +-0.23577927,0.040567074,0.19685632,0.22928283,0.1310896,-0.103122115,-0.32671013,0.3870399,0.06559131,0.2026764,-0.04584884,0.09806162,0.31929323,-0.39652884,-0.14179513,-0.51072377,-0.18795635 +0.510302,-0.9713627,-0.588229,-0.93439025,0.18674177,-0.03892533,-0.52141154,-0.06059572,-0.3239331,-0.8012498,-0.32218683,-0.20395662,-0.97291756,0.5654724,-0.24896151,-0.33394644,-0.39098626 +-0.2161304,0.22574417,0.43966943,0.5658948,-0.10612443,-0.0801927,-0.08287988,0.43391895,-0.14536826,0.34535927,-0.4506754,0.0838752,0.5385706,-0.030543566,-0.10463859,-0.123439305,0.174098 +0.16001412,0.23115766,0.09183529,-0.08137029,0.26571193,-0.09642549,0.31847084,0.2999299,-0.13340312,0.2637366,0.035883702,0.47342324,-0.02328802,-0.02113293,-0.30208838,0.01803919,-0.10485343 +-0.4716403,0.049820535,0.37280878,0.51760095,0.19018312,-0.21035682,-0.50543356,0.056639265,0.0053381906,0.12909141,-0.25628886,0.36680174,0.43526933,0.24247245,-0.104799524,-0.13721657,0.1125964 +0.1699336,0.079538934,0.054867364,0.1461861,0.30861592,0.18757762,0.009931347,0.21021248,-0.2562349,0.20058535,0.10725964,0.24041279,0.31584522,-0.022277193,0.118532,-0.14819552,-0.040535714 +-0.20578244,0.12750655,0.19285019,0.2536863,0.019772982,0.1503901,0.05342537,0.24724655,0.34177285,0.115737624,-0.1561146,0.13149758,0.12108843,-0.13785288,-0.23140647,-0.1815311,-0.055371072 +0.35804904,-0.42034873,-0.40157214,0.015217261,0.053902067,0.034532078,0.19586831,-0.09221237,0.20219018,-0.13324852,0.116694696,-0.07020308,-0.33825135,0.08536224,0.14341862,0.27452067,-0.15213835 +-0.19719692,-0.06902057,0.1645607,0.32381546,0.08550691,-0.20043105,0.07519928,0.112503074,0.3166463,0.17210685,-0.2364395,0.014788454,0.09723448,-0.099560484,-0.3089029,-0.18900208,-0.16231558 +0.33134732,0.1940814,0.19592299,0.316138,0.022576706,0.083221875,0.17147367,0.3481545,0.07880054,0.30645704,0.18320726,0.25631043,0.27531353,0.32249203,0.08520588,0.17202432,-0.00020525826 +0.6095051,-0.6736562,0.051217947,-0.01882958,0.21297438,-0.050809376,-0.5890224,-0.14597255,0.7230051,0.13101016,-0.25590408,0.61730397,0.24142514,-0.2542446,-0.39045736,0.19041304,-0.23137811 +0.08100924,0.17699726,0.027345993,0.58145136,0.43589804,-0.014911367,0.2753654,0.360964,-0.31712276,0.7049005,0.013196907,0.28011256,-0.025832444,0.1442005,-0.16343239,0.089053795,0.32197627 +-0.059716,0.17602414,0.30962223,0.41918224,0.11331131,-0.13215716,0.18653306,0.30549347,0.017722178,0.049065914,0.011201556,-0.029694375,0.4565302,0.4172838,0.34776452,-0.044125486,0.16193134 +0.28809863,0.08399169,-0.3178527,-0.14820108,0.10334864,0.13763554,0.2744089,0.20632891,0.2791301,-0.25875282,0.007846292,-0.058989994,-0.0491278,0.35042658,0.3124243,0.09486458,-0.0025616009 +0.23300454,-0.7973731,-0.4317581,-0.1212391,-0.084343046,-0.40713084,0.107963346,0.16046183,-0.15006875,-0.31331542,-0.007204233,0.55085975,-0.4835546,0.3780019,-0.2739948,0.048873816,-0.3883529 +-0.12223623,0.0045711994,0.10447033,0.22735882,0.09374542,-0.026945433,-0.112993106,0.13060628,0.16516335,0.07783002,-0.0572789,-0.08683285,0.23776048,-0.06320827,-0.24050751,-0.14280227,-0.11330085 +-0.14937697,0.08138411,0.17474103,0.2572765,0.13740988,-0.025553258,-0.16791758,0.15706931,0.48762196,0.17211707,-0.1711243,0.02630834,0.12656601,-0.20356438,-0.009087196,0.030739062,0.3123908 +0.15240672,0.2400788,0.36765653,-0.9342343,-0.28665823,-0.010906627,0.187407,0.32793704,0.77066886,0.40835825,-0.02706763,-0.90399516,0.24028204,0.18827024,-0.26706722,-0.41915232,0.42876622 +-0.064598024,0.18896742,0.2645823,0.1256931,0.097029164,0.14347191,-0.20626637,0.28685814,-0.017863756,0.124935165,-0.06476931,0.02813231,0.3642809,-0.10652434,0.2596467,0.043999437,0.26883847 +0.013052684,-0.13854164,0.056039058,0.2782245,0.15122415,0.2240782,0.16876301,0.04871363,0.39428112,0.2207817,0.069953516,-0.41713956,0.15708075,-0.18777238,0.050728835,0.048804346,0.08410416 +0.19630091,-0.05239078,-0.06132841,0.05832241,0.4214966,0.0054119974,0.0030565562,0.20761313,0.046069294,-0.038245536,0.24160269,-0.10839107,0.021089708,0.21741019,-0.10065122,0.42240018,-0.25952914 +0.119268686,-0.105267785,-0.08178468,-0.07269391,0.31430024,-0.11954092,0.063050404,0.101570904,0.21923271,-0.10282693,-0.032331686,0.33762,-0.3750492,0.22236511,0.048580285,0.1330852,-0.04088756 +0.11323463,-0.3135686,0.34526986,-0.23085664,-0.6163589,0.3616103,0.52993923,-0.25026807,0.03845163,0.14875208,0.23108412,0.18507041,0.07269235,0.35073358,0.5568888,0.08445938,-0.12982748 +0.10303991,0.2636388,-0.043318633,-0.26994407,0.02321558,-0.0046858625,0.12476871,-0.11006696,0.0050393566,-0.062195003,-0.008125257,0.19863251,-0.22699383,0.2297111,0.057197265,-0.006810814,-0.020817034 +0.09578084,0.17822649,-0.4508802,0.08884148,-0.048611853,0.30336043,0.10119337,-0.028558223,0.17040299,-0.16419268,0.20345835,-0.00186017,-0.53090334,0.1154076,0.25649932,0.075344995,0.057291523 +0.025344875,0.15923747,0.23188126,0.35549977,0.29044512,0.06580251,-0.0016263925,0.4419923,-0.120978996,0.40167582,-0.0053081736,0.44887862,0.13901408,-0.11276552,0.3026448,0.16047391,0.41478232 +-0.15897919,0.15675585,0.24990235,0.20936517,0.17022367,0.045898173,0.03885403,0.20346284,0.09632783,0.08652125,-0.2001963,0.17706066,0.27402255,-0.21865965,-0.1993576,-0.15651429,-0.2001012 +0.40280926,-0.4266835,-0.26223704,-0.12842652,0.111511484,0.03561219,0.1725185,0.086354144,-0.06698313,0.17105664,0.1075194,0.23261283,0.008210943,0.395252,-0.22797336,0.18707265,-0.104280345 +0.51050204,0.209695,0.02014854,0.5122595,-0.051383305,0.3252449,-0.06381053,0.24769668,-0.031824883,0.4678761,0.57544917,-0.045552537,0.028106276,0.0730471,0.025254572,0.40249613,0.07802741 +-0.60661954,0.54395443,0.38749346,0.72299427,0.10369671,0.16370489,-0.1212684,0.45279887,0.35732177,0.6011912,0.14125645,0.2860453,0.41076297,0.019644935,0.31563964,-0.09186817,0.6388205 +0.24098027,-0.03183904,0.12829068,0.014732888,-0.053371098,0.05249696,0.016919147,-0.028078327,0.1407621,-0.1182128,-0.035924338,-0.11240828,0.1906436,0.08030881,-0.08597585,-0.17027603,-0.1620746 +-0.028453857,0.30956814,-0.15754186,-0.02269299,0.076240346,0.10159261,0.072629556,0.13031888,0.12909593,0.24528784,0.23066735,-0.08743421,0.24412534,0.013697771,0.33420265,0.07862322,0.44579098 +0.14674519,0.2675989,-0.1461491,0.07272499,0.12952687,-0.026873965,0.13286754,0.2216442,-0.1911241,0.39186996,-0.16621226,0.13575429,0.30600414,-0.10346347,-0.053969145,0.18647431,0.16695435 +-0.11387221,0.17852502,0.3166804,0.19489247,0.07861916,-0.048174597,0.055935882,0.14640766,0.2914175,0.11189897,-0.25691426,0.18146837,0.17893077,0.031912576,-0.30418134,-0.0933457,-0.12944095 +-0.044445768,0.49810615,-0.002801755,0.13512643,-0.08109616,0.049111027,0.07815248,-0.061582457,0.3240419,0.5837124,0.15789242,-0.12948214,0.3073608,-0.04959885,-0.12240493,0.13089144,0.08138033 +-0.109069586,-0.25049224,0.13495234,-0.13229334,0.35664526,-0.3608541,0.08943637,0.25421515,0.1497585,0.19846828,-0.1238728,0.5973383,0.022903843,0.18295354,-0.25354055,-0.045678847,-0.03370916 +0.025253681,0.37614882,0.5285634,0.1965329,0.07491704,-0.22766079,0.11244319,-0.1888665,0.15244585,0.02769099,0.0808957,-0.27446783,0.23730482,0.14421195,-0.22981896,0.19096115,0.0805402 +0.025870185,0.26873517,-0.014215961,-0.58463365,0.23489657,-0.011264846,0.39479607,-0.12829688,0.043730177,0.08743948,0.03856517,0.39957422,-0.16717166,0.45674,-0.11265588,0.2291159,0.02224857 +0.10538607,0.55698496,0.7243663,-0.68619686,0.14678688,0.21824096,0.40591687,0.23570342,0.30972546,-0.08992034,-0.43516985,-0.6931425,0.24287358,0.28496116,-0.27637684,-0.21257424,0.0537813 +-0.19587539,0.10200849,0.2361592,0.24210262,-0.0027012564,0.000995799,-0.22585379,0.23079586,0.27832216,0.33107507,-0.037662193,0.09214749,0.13526031,-0.2681472,-0.19307174,-0.07771728,-0.009622647 +0.29874012,-0.05722386,0.012220528,-0.27869153,0.145653,0.11070912,-0.0685261,-0.15733075,0.076424085,-0.09082163,0.36826056,-0.06989368,-0.17797008,0.044860188,0.20395721,0.09991583,-0.0048830654 +0.10537667,0.29421633,0.019817472,-0.5486643,0.18659925,0.004806558,-0.12109347,0.2214586,0.32828817,-0.12909472,-0.05681644,-0.8257902,0.39783412,0.15024883,-0.7720565,-0.29683545,-0.37619296 +0.19358777,0.43859997,-0.2215156,0.5859197,0.17326888,0.31165844,0.22579005,0.14363262,-0.1702179,0.40779817,-0.12647218,0.6681541,-0.35445648,-0.1796811,0.06016973,-0.16317749,-0.1129651 +0.04714614,0.16865344,0.123603344,0.18145505,0.393507,0.21527123,0.3250435,-0.04999219,0.29603255,0.3726296,0.18378751,0.33990705,0.27770233,0.027561266,-0.12997168,-0.2970052,-0.08904878 +0.24258631,-0.0048422534,-0.25061712,0.114609234,0.46175194,-0.14693055,0.12847944,0.24330886,0.094493136,0.38924214,-0.117039934,0.42419797,-0.1801024,0.300517,0.08860138,0.24277778,0.22749808 +-0.1313451,0.25038505,0.24577962,0.29714385,0.27359506,-0.26288462,-0.18044464,0.007667826,0.31553158,0.13139956,-0.08999945,0.13577601,0.28042504,0.19398792,0.004291156,-0.036699556,0.24972837 +-0.117797986,0.5335336,0.43412024,0.6560866,0.48149732,-0.01992265,0.41277847,0.1314819,-0.5221499,0.7551312,-0.09176163,0.44388664,0.3671506,0.106665716,0.09273977,0.34783754,0.30789188 +-0.06544099,0.1993664,-0.40503582,0.061957046,0.29638672,0.004943701,0.30869597,-0.18475297,-0.05867228,-0.2249935,0.008315365,0.40735236,-0.34545186,0.3812417,0.00046242296,-0.05006197,-0.029036442 +-0.12069847,0.41356522,0.2255029,0.40247515,0.3147337,0.25370923,-0.35320312,0.50274134,0.02595403,0.282424,0.073902965,0.2221916,0.012892336,0.04213271,-0.103841364,-0.15053155,-0.26055908 +0.14985551,0.012816394,-0.037260354,0.023944294,0.12775213,0.06421121,0.013670478,0.17731531,0.16043526,0.24377587,0.12886485,-0.07227053,-0.0016041612,0.036431465,0.29165,0.111455165,0.26710206 +0.6934424,-0.1273785,-0.78082144,-1.1698469,-0.5154594,-0.2884437,0.10964151,-0.04241125,-0.09129688,0.2344008,-0.15880777,-0.6809908,-0.20205294,0.13433342,0.15021597,-0.15878461,-0.34586483 +0.11366271,-0.7099303,-0.13334733,-0.25050583,0.3749773,-0.093585916,0.31112316,0.13676159,0.09657533,-0.33250028,0.1215631,0.5462925,-0.2577034,0.28883934,-0.29144704,0.3405698,-0.18971951 +0.3639617,0.11410534,0.012864124,0.08149858,0.19333917,0.1936807,0.21154864,0.04528773,-0.0890817,0.11872242,0.35511076,0.37619546,-0.24119233,0.24972759,-0.14323087,0.40642995,-0.05018749 +0.47702715,0.31118873,0.045700718,0.3668037,0.102577716,0.49384797,0.4000202,0.31364498,0.423043,0.32318512,-0.18448403,0.4910285,-0.09893232,-0.16864417,-0.03976755,-0.072468005,0.12768263 +-0.035667248,0.07863268,0.17693104,0.073834166,-0.008785651,0.11159773,0.12053472,-0.086446635,0.20730959,0.15630585,-0.07665857,-0.20059499,0.2677388,-0.12451882,-0.24302462,-0.048754215,-0.16129047 +-0.11097767,0.0039253156,0.1570278,0.24233958,0.11396947,-0.04437197,-0.003922611,0.1993198,0.20580825,0.09214684,-0.042081013,0.060783498,0.13078073,-0.012542964,-0.20673822,-0.19693701,-0.14291257 +-0.0359284,0.16471319,0.3718547,0.28187692,0.26334172,0.20590872,0.1805029,0.022755194,0.042144883,0.3237934,0.08325971,0.29338816,0.24655709,-0.16118038,0.057246175,-0.06953013,0.23384203 +-0.0065160543,-0.057372518,0.31882393,0.10255953,0.31097087,-0.03703193,-0.0020656423,-0.36935487,0.32645017,-0.1362615,-0.4553047,-0.2189768,0.4405074,0.12556718,-0.007916129,0.3755642,-0.11619351 +-0.12372876,0.08617417,0.08362195,0.20172237,0.1358669,0.19713794,0.20347945,0.24971825,0.014096154,0.07673003,-0.048106205,0.2262006,0.2776657,0.037141398,0.028294731,-0.31506234,0.13067867 +-0.14648487,0.13194427,0.031929888,0.128266,0.08734084,-0.058991928,0.0484053,0.15376611,-0.01123037,0.121788435,-0.048263587,0.079011716,-0.08601437,-0.00478644,-0.24507207,-0.044662405,-0.081425145 +-0.043483637,0.25694764,0.18251671,0.08760697,0.31754112,-0.021839641,0.31834605,0.030613372,0.17425926,-0.015161915,0.15973745,0.19476739,0.29929623,0.3101127,0.29313582,-0.045384217,0.33878583 +0.06039335,-0.03267463,0.2720012,0.43493265,0.3033467,0.45394138,-0.07864542,0.298307,0.08130464,0.25689158,0.21346077,0.3439798,0.16571665,0.29388273,0.16832237,-0.06648565,0.330901 +0.0972969,0.14382166,-0.22669734,-0.48172146,0.4960465,-0.038866755,0.5318019,-0.18479556,0.30319217,-0.033336323,0.07044097,0.36512023,-0.25970402,0.533093,0.053258076,0.44663587,0.08927933 +0.16784167,0.10701983,-0.031306252,0.023164837,0.21499643,-0.07344535,0.15317474,0.09941583,-0.2611713,0.33069667,-0.06375443,0.37215668,-0.13636632,0.0050150584,-0.0369138,0.0016240957,0.07553582 +-0.050666533,-0.22748482,-0.12437115,0.31045946,0.3612292,-0.06948868,0.081259124,-0.09296977,0.4083844,0.25502577,0.08996863,-0.08947701,-0.018189626,-0.097488254,-0.1834917,0.20104796,0.009291296 +0.426485,0.111787945,0.14336097,0.075644,0.17305547,0.097876035,0.37561432,0.17411532,0.18131332,0.3553964,0.09310532,0.2184422,0.059355292,0.4012452,0.15795118,-0.014585572,0.25861928 +0.19555327,-0.006934564,0.32875043,-0.3587623,-0.15745413,-0.021586865,-0.15507543,-0.16508068,0.10821842,-0.28972653,0.17015657,-0.015559131,0.012121538,0.18541636,0.24607582,0.22837782,-0.2008534 +0.06603756,0.17977598,-0.036180522,-0.064330734,0.19126554,0.14356259,0.22404568,0.16901885,-0.24858022,0.19636376,0.12908067,0.20011511,0.033424683,-0.09597847,-0.16580567,0.05428585,-0.053500857 +0.25138506,-0.2025904,-0.054530095,-0.058311194,0.28415406,0.087107055,0.25223586,0.030052068,0.39163825,0.08715715,0.12843724,0.05973766,-0.085827485,0.29007596,0.14642198,0.10435002,-0.114005655 +-0.096856326,0.26306558,0.07856848,0.11183388,0.27647725,-0.075471774,0.28672516,0.10486106,0.06955681,-0.11580566,-0.10331314,-0.114966504,-0.005486388,0.47268155,-0.016436951,0.38032877,0.2714498 +0.39376134,0.38504532,0.011263567,-0.22021577,-0.32107672,0.03298165,0.075275056,0.42745185,0.42197996,-0.10153973,0.26637313,-0.014738525,0.11143773,0.39181286,0.014419152,0.08363408,-0.32242233 +-0.22050759,0.012526447,0.20609821,0.18659775,-0.02305593,0.027355442,-0.016007507,0.20992811,-0.034976687,0.13115026,-0.1960739,0.22582775,0.24444431,-0.13266721,-0.06991768,-0.17823212,0.07352995 +-0.03197137,0.21988402,0.27166077,-0.042538665,0.21243961,0.0065341354,0.10145281,0.09055519,-0.11942116,0.39416102,-0.21038023,-0.015824147,0.023041185,-0.04602891,-0.20241901,0.06458208,0.2871987 +0.08791451,0.35882422,0.07216041,0.32197928,0.13662338,0.04991721,-0.038869504,0.41379115,0.37312067,0.3128189,0.23338884,-0.22406961,0.15103751,-0.06942426,-0.21743308,-0.044154085,-0.12223851 +0.10008429,-0.012344742,-0.20523801,0.13116446,0.15422067,0.25996837,0.0007640249,0.19507131,0.2876498,0.035482097,0.1537798,0.31069377,0.055346105,0.3496381,0.05680611,0.006747255,0.21713041 +0.38069278,-0.08440458,-0.15127157,0.048673097,0.18235426,0.38099867,0.058839552,0.21975437,0.011648449,0.03238947,0.10680756,-0.19192237,0.19314396,0.045286458,-0.04922528,0.072757,-0.08545829 +-0.28010985,0.1443823,0.38169396,0.2482626,0.09191391,-0.09736972,-0.31564653,0.252514,0.18538603,0.1645454,-0.20362465,0.101765595,0.43945822,0.013561976,-0.17638277,-0.2572159,-0.15444906 +-0.30017793,-0.03406535,-0.11833544,-0.25978333,0.6676387,-0.21082148,-0.32917845,-0.109464414,-0.08209671,-0.011423924,0.09816986,0.5310262,-0.3322285,0.049144536,0.24249585,0.19463105,0.2622691 +-0.20382227,0.14141488,0.30888933,0.18887143,0.075451955,0.20885417,0.00022730952,0.32219127,-0.14850377,0.10583956,-0.13907342,0.23001038,0.40916595,0.03653474,0.12064885,-0.14922899,0.18296824 +0.27532935,0.17953598,-0.052162033,0.028417284,0.036664423,0.2798514,0.27916184,0.24075513,0.15158156,0.23722565,0.12927985,0.0041973935,0.06541248,0.0446066,0.12767881,0.15769015,0.09669259 +0.39755917,-0.32347977,-0.2180768,-0.19287026,0.0747975,-0.09401201,-0.19646473,0.17675193,0.16619329,-0.5142516,-0.09450885,-0.3431266,-0.4288224,0.3642016,0.09353952,0.21547249,-0.16590399 +0.049581744,0.100651294,0.5225597,0.3039691,0.019456973,0.04385424,0.14154097,0.20909196,-0.22384548,0.023419056,0.105107225,0.032058593,0.48683286,0.01900711,-0.07964831,-0.07097024,-0.09087237 +0.39792526,0.34085715,-0.08284601,-0.046299957,-0.19315873,0.34866542,0.43266866,-0.09910116,0.10073296,0.2958262,0.20109423,0.17437692,0.21249783,0.274195,0.08718988,-0.07688439,0.030348357 +0.089181595,0.031075895,-0.18757296,0.26967254,0.11847406,0.31277803,-0.05102837,0.35975122,-0.21261989,0.27969837,0.15805091,0.17690705,0.35024792,0.37251556,0.35977337,-0.14400399,0.041746944 +0.07945622,0.80757445,0.57601565,-0.32073447,-0.098351575,0.30445793,0.3418391,0.29677194,-0.13342498,0.020504652,-0.23706649,-0.57490355,0.1414519,0.027502947,0.2903146,-0.1144111,0.41698682 +0.046776947,-0.6042322,0.14362937,0.23615131,0.13620016,0.01329717,0.086191125,0.073493466,0.2220627,0.08191824,0.0128690535,0.32611147,0.23395438,0.19023235,-0.074412994,0.08427588,0.06842904 +0.0030212302,0.22273517,0.44937906,0.38602036,0.21089712,0.0593894,0.23699269,0.43990436,0.061034296,0.31271252,0.061349925,0.051508132,0.3249443,0.09117939,-0.14842834,-0.1917903,-0.21574706 +0.19318376,0.055908404,0.066718325,-0.069124684,0.25732255,0.18790428,0.28510544,0.30948487,0.27932596,0.29117608,0.14974308,0.33915254,-0.12339431,0.24993959,0.061915904,0.04947328,0.08076535 +0.061375797,0.11806639,-0.04991204,0.23897399,0.38685244,-0.057008266,0.27962142,0.16386542,-0.07875725,0.39282396,0.13133593,0.06500712,-0.15793552,0.3283595,-0.03560418,0.27582633,0.2007735 +-0.030146698,0.049073413,0.2451598,0.27546194,0.22201425,-0.2752479,-0.013163751,0.20835702,0.42438847,0.07030001,0.014054988,-0.07837521,-0.06979281,0.17443192,0.045207635,-0.20239618,0.16623063 +-0.30023772,0.04613796,0.13506117,0.15480164,0.23912263,0.092552535,-0.116511084,0.23517273,0.5788286,0.3473822,-0.294807,0.19905922,0.0817726,-0.069794156,0.014119602,-0.033767227,0.20598972 +-0.14932261,0.12824571,0.20405777,0.24230734,0.13177928,0.07428809,-0.11603679,0.25654623,-0.020857198,0.17656927,-0.22548668,0.18058768,0.28358662,-0.1157213,-0.031041877,-0.1609362,-0.034265406 +-0.16235672,0.0053769313,0.24203208,0.21215686,0.05974413,-0.043893453,-0.11373274,0.15317243,0.0029916912,-0.01618479,-0.14473635,0.13360697,0.28729272,-0.072914585,-0.28300366,-0.2739168,-0.1595204 +-0.07973945,0.39834893,0.4423707,0.9398401,-0.0051405746,0.11576656,-0.029192101,0.5980286,0.060009155,0.41946515,-0.10414639,0.13483529,0.5188538,0.086533114,0.2672791,-0.17857766,0.43712553 +0.06921297,-0.5054625,-0.2226253,-0.41417322,0.35722858,0.10616336,0.18846178,-0.008143658,-0.28398886,-0.23322093,0.013182506,-0.48177043,-0.25484735,0.29676956,-0.3449739,0.35252598,-0.13888527 +-0.16414843,0.18494828,0.56406814,-0.04214348,0.103068665,0.0452666,-0.25325304,-0.20216775,0.2730461,0.3227112,-0.21094394,-0.37143224,-0.09058843,0.13265808,-0.07838079,-0.018542297,-0.27785906 +0.06649411,0.2514302,-0.23990726,-0.026964568,0.26790184,0.36403808,0.33071458,0.18933819,0.03654695,0.076682724,-0.007826042,-0.26097617,0.2970761,0.055755243,0.01736979,-0.2296483,0.10149321 +0.1178486,0.10223751,0.3578793,0.2597221,-0.075421065,-0.12314595,0.22366752,0.010705133,0.13022569,0.11354665,-0.11631349,0.11246751,0.4117424,0.12051939,-0.048548542,0.07019444,0.13467206 +-0.0418176,0.2919844,0.29365653,0.26141253,0.08256399,0.028935727,0.021523762,0.13886836,0.16275688,0.15071043,-0.113123775,0.113641046,0.16743258,-0.1914888,-0.17363912,-0.007061865,0.0011808308 +0.062036563,0.35791287,-0.5372378,-0.19678107,-0.46584147,0.28880772,0.6535983,-0.4701496,-0.3482301,-0.30852205,0.3984698,-0.10991543,-0.43708694,0.39757398,-0.12584203,0.06057228,-0.17224105 +-0.2159611,0.16604519,0.266253,0.38597366,0.10533531,-0.038687974,-0.18405078,-0.0020743855,-0.09479977,0.2254673,-0.071635336,0.17051116,0.33471462,-0.023751335,-0.18232004,-0.11118704,0.17063245 +0.14048833,0.5297459,0.39458725,0.5567034,-0.038455922,0.22230397,0.38314843,0.49960485,-0.18271942,0.06488348,-0.065889485,0.5391416,0.38471115,0.19374858,-0.11948162,0.092765525,0.031358853 +0.21557234,-0.66167116,0.08872718,0.26722208,0.1292475,0.07221635,0.2796005,0.33153695,-0.70224315,0.1497383,-0.23256534,0.45101815,-0.22335528,0.1884429,-0.24830233,0.29222456,-0.061920606 +-0.06560413,0.41081142,0.2944767,0.6380809,0.14652997,0.482514,-0.6816951,0.51655245,0.37578127,0.86562574,0.22337803,0.3168832,0.0059705107,-0.07198578,-0.034128495,-0.28698745,0.08041558 +0.03892389,-0.41017494,-0.5428484,0.029934818,0.21204847,-0.2389768,0.35302258,-0.13246094,-0.044426423,-0.2877323,0.010632642,0.5974232,-0.6175092,-0.037197456,0.21755096,0.004233174,-0.073002286 +0.08513352,-0.06948823,0.01065245,0.09954762,0.2989904,0.14856933,-0.27419373,0.35383064,-0.34236246,0.32798034,0.4064945,0.49919158,0.18284284,0.16955826,-0.0010608848,-0.18065628,-0.0022177661 +-0.02827916,0.28192434,-0.2151133,0.27327237,0.035965525,0.04165332,0.25345826,0.22852261,-0.12404307,0.2654084,-0.3062457,0.04418387,-0.0027275141,0.349175,-0.14911437,0.023911115,-0.1804614 +-0.29251316,0.21357907,0.40518385,0.52911127,0.02595367,0.083812736,-0.0613741,0.25024086,0.2249635,0.23282653,-0.11317969,0.406282,0.45801306,0.00322713,-0.3767742,-0.20236713,-0.094803534 +-0.19709328,-0.043117072,0.5631791,0.13859142,-0.18185748,-0.28354806,0.15132064,0.008825226,0.13606521,0.21223165,0.3159732,-0.18451276,0.6837974,-0.08657232,0.013206936,-0.21883087,-0.04763585 +-0.11131614,0.24109623,-0.0849028,0.26827973,0.32797283,0.15721542,-0.14544289,-0.06333582,-0.20970985,-0.2033374,-0.06522818,0.40532055,0.11759863,0.031339362,-0.24140178,0.08413537,-0.30735 +-0.011250006,0.55144143,0.14911672,-0.06212135,0.14122586,0.09574929,-0.3061183,0.26778868,0.028047353,0.035284806,0.19461346,-0.6223996,0.41145325,-0.109180465,0.04515155,-0.16163678,0.1614317 +0.027278487,0.29131094,-0.19988672,-0.064685464,0.621892,0.26882645,0.51540184,0.055426303,0.02178159,0.23003872,-0.07547,0.19838214,0.11134426,0.3512754,0.073530965,0.19011472,0.10378803 +0.028237743,0.19224767,-0.0033413419,0.047350306,-0.059999157,0.31788513,0.029967614,0.09326073,-0.20665431,0.31930062,0.20977336,0.06991205,-0.042977322,0.007691705,0.021983948,0.36161718,0.06932827 +0.20895867,0.027539672,0.0014232625,0.23208018,0.34464628,-0.12641862,0.5778844,0.2129672,-0.2252373,0.23412701,0.21057895,0.46071383,-0.08665054,0.43954882,0.022338158,0.042042322,0.12581854 +0.26287538,-0.0626467,-0.16896491,-0.07510381,-0.013760171,0.26550254,0.2580942,0.058956113,0.08969896,-0.12037945,0.064489104,0.011600052,0.09857171,0.23083037,0.099281974,0.1494397,-0.0017617388 +0.44028208,0.12818931,-0.112827264,-0.00024680508,0.199185,0.17410104,0.4315358,0.33116743,0.27464244,0.3619964,0.09007717,0.06136752,0.36216033,-0.03648584,-0.11202941,0.029945347,0.21924593 +-0.19886416,0.25947225,0.3628136,0.21261194,0.13598889,0.026541501,0.13285212,0.20107026,0.23760949,0.18850741,-0.141221,-0.27029374,0.15067051,-0.226431,0.09697519,0.046817333,0.0663144 +-0.050645474,0.1799746,-0.19279695,0.35651553,0.3867779,0.06665153,-0.26198527,0.084033236,-0.12593985,0.18448153,-0.084539816,0.17611468,-0.083984576,-0.3095375,-0.13236605,-0.036595505,-0.15883228 +0.12080079,0.22449157,-0.37152854,0.2941083,0.32422522,0.14293319,0.31673658,0.04952887,-0.074810214,-0.23437808,-0.022178473,0.33281663,-0.2260024,0.33932287,0.041466277,0.014814683,-0.019961748 +0.04131385,0.10057151,-0.1716018,-0.02871302,0.25236887,0.24899048,0.22195819,0.14402737,0.017866895,0.34962934,0.16313602,-0.11313859,0.2668728,0.15088414,0.18718553,-0.09394386,0.1408657 +0.45663783,0.24743597,-0.11783421,0.041209783,0.23209174,0.02235488,0.40242866,0.051945105,-0.072031505,0.040211048,-0.15799145,0.56378835,-0.05331807,0.29672348,0.08260042,-0.14742975,-0.29829 +0.12327714,0.16236816,0.08551286,0.28058445,0.4801856,-0.1900431,0.08982766,0.30543956,0.16059445,0.3026451,-0.035158273,-0.0844189,-0.31813166,0.24867538,-0.16023505,0.30003077,-0.06769319 +0.2781293,0.49567056,0.12016603,0.5574103,0.07438738,0.031144673,0.54263735,0.120596536,0.24971175,0.26841742,0.2932182,0.21318445,0.25504762,-0.011824001,0.26944804,0.25453955,0.40448526 +0.12831818,-0.18352331,-0.084969394,0.12662072,0.3171788,-0.13032982,0.36590505,0.13021478,0.3103736,-0.2663835,0.2695496,0.120107464,-0.056673817,0.13218658,0.06466124,0.2588672,-0.35454422 +0.018065233,0.010797045,0.20664713,-0.096985474,0.11107241,0.04596064,0.11165284,0.04352207,-0.06610184,0.05648131,0.30123633,-0.09762724,-0.009712911,-0.04669155,0.3805356,0.15574472,0.16478091 +-0.15324321,0.2968704,0.54228354,0.10021631,-0.086222365,-0.06402361,-0.03146693,0.2164837,-0.03138606,0.32072604,0.2376475,-0.30091184,0.34142438,-0.046869535,0.062305663,0.028778527,0.22861274 +-0.11556927,0.21713005,0.22290559,0.32968894,0.17255104,-0.025426954,-0.17244585,0.28675026,0.12922964,0.22913729,-0.1310497,0.13200223,0.20014942,0.0062250784,0.03578156,-0.14769302,-0.069798276 +0.113327295,0.010411553,0.09285048,0.12785731,0.03475357,-0.00085428526,0.29913455,0.094954245,0.25249913,0.05493497,-0.2564644,-0.08354149,0.12285092,0.37358162,0.1563746,0.093045674,0.19037983 +0.20285033,0.31742853,0.2863927,0.6231535,0.3146261,0.06294047,0.43622372,0.30878282,0.11715787,0.44479218,-0.04023285,0.22027406,0.3340707,-0.1261227,-0.054258384,0.22837698,0.31486347 +0.17904499,0.24255043,-0.039030593,0.3229762,0.3722996,0.23765978,0.22676443,0.053905472,0.1184717,0.29214215,-0.00793423,0.26056913,0.10760864,-0.11399921,0.10163215,0.2770414,0.29802632 +0.47517613,0.31891644,-0.4156109,0.10362684,0.329275,0.3315149,0.27110857,-0.063980885,-0.11189381,0.13815713,0.14891648,0.22979955,-0.043793615,0.36992347,-0.045527175,0.13067433,-0.31177187 +0.18699841,0.22080292,-0.44950244,0.1380322,0.09614415,0.40161914,0.36531153,0.16172165,0.078395054,0.14276703,0.110738724,0.06878487,-0.12011993,0.0072894525,0.22732723,0.19972841,0.21558711 +-0.17279619,0.12507051,0.36409807,0.16182835,-0.099258475,0.044637844,-0.16517979,0.36640456,0.016491534,0.266833,-0.0045485552,-0.45083946,0.059793934,-0.026202232,0.14987373,-0.20690788,0.028131327 +0.11657044,0.26918966,0.23931088,-0.03696394,0.04643192,0.08348044,0.28437114,0.21182932,-0.14725676,-0.059244018,0.18734851,0.15507168,0.03074235,0.053559043,0.24600506,0.20244868,-0.2093976 +-0.12497237,0.06548641,0.028233394,-0.09712411,0.4655614,-0.35353112,0.47188422,0.17599939,-0.020992836,-0.18686782,0.22540577,0.5853142,-0.14892398,0.19584616,-0.009560555,-0.048553858,-0.05673343 +0.045825172,0.29698512,0.09733514,0.23261806,0.21625613,0.1325665,0.36116344,0.30971226,0.24566327,0.44673693,0.2645292,-0.0011654078,0.14433773,0.23901999,0.10454321,0.14609946,0.16693112 +0.4984013,0.5647425,0.06873638,0.22691342,-0.06599633,-0.013631479,-0.060606156,0.3490563,0.37147623,-0.12860578,0.32810697,0.72204167,0.07830117,0.22711405,0.06938817,0.24943465,-0.15144381 +0.23091517,0.38278756,0.14514354,0.35386372,-0.105325095,0.13361041,0.41061145,0.4493561,0.25329643,0.4107456,-0.053002127,-0.16189533,0.27943435,-0.12231332,0.3407098,0.2079448,0.29868886 +-0.058646526,0.3153611,0.1581629,-0.287341,0.22425142,0.13771415,-0.003967859,0.5278352,0.17589617,0.29698232,0.010709956,-0.3115428,-0.068151906,-0.009558202,0.2832639,-0.05408259,-0.020014912 +-0.23284893,0.19290347,0.09348243,0.3291775,0.2869765,-0.19225648,-0.17714535,0.06098951,-0.08237075,0.24796402,-0.010177774,0.31557253,0.45504388,-0.008274888,0.067887075,-0.0009312098,0.12548536 +0.068144195,-0.22286905,-0.050045718,0.36761642,0.1554784,0.17649741,0.17895657,0.052847248,0.27030885,-0.24285336,-0.14758167,0.0036736042,0.12971786,0.22849566,-0.04048639,0.09445812,0.2615921 +-0.33437,-0.16371019,0.15916315,0.43194172,-0.07453087,0.14283621,0.10861579,0.34112448,-0.028152838,0.040043693,-0.2482954,-0.3416911,0.2915871,-0.21411908,0.09224431,-0.33593774,0.16254903 +0.34166852,0.27687967,0.13565265,-0.04385262,0.30555207,0.16855587,0.26139542,0.3077866,0.041515857,-0.11556056,0.15314963,0.40501788,0.05509644,0.17600107,0.017273944,0.15622242,-0.23405318 +-0.018729,0.050527945,0.027405366,0.11795074,0.13139428,-0.01180337,0.15574586,0.21958874,0.500839,0.08547432,0.037499897,-0.30197588,0.07390892,0.08770793,-0.19074643,-0.024961317,-0.053135768 +-0.047306534,0.10321881,0.017787933,0.24777025,-0.00408081,-0.051470537,-0.21212927,0.069948755,0.45450228,0.06832817,-0.04260815,0.20343967,0.049287368,-0.10764484,-0.37864718,-0.035750363,-0.22443014 +-0.049977385,0.09052993,0.2245,-0.06555174,-0.06628281,0.090883486,0.081649125,0.16446832,-0.2830192,0.2946189,-0.062046904,0.30662012,0.19708857,-0.1494394,0.20405337,-0.29194123,0.3437891 +-0.061735813,0.41851446,0.44039232,0.5850009,0.30375522,0.28734505,0.23986422,0.30283034,0.010321485,0.27014366,0.046286173,0.31868297,0.18114944,0.12837948,0.25808656,0.17564419,0.2392402 +0.02338201,0.083526246,0.47644016,0.57847863,0.15509522,0.3792007,0.22468442,0.18771186,0.10514182,0.27746812,-0.15380657,0.2790067,0.39239442,0.020641115,-0.077175185,0.030354705,0.022631738 +0.08149461,-0.2615495,0.05752027,-0.011470665,-0.04668345,-0.15105976,0.3786375,0.163397,0.22679771,-0.23322316,-0.044429854,0.012807401,-0.5445114,0.25074565,0.016846936,-0.018593261,-0.18413837 +0.15391687,0.11680363,-0.04985606,0.14209834,0.13451725,0.12597926,-0.020376934,0.047727987,0.017397143,0.2043175,-0.091790326,0.2623178,0.3919341,0.077019535,-0.20083821,-0.17280942,0.060158737 +0.020817088,0.2019771,0.25273398,0.44327715,0.23370649,-0.17060551,0.52963287,0.29092664,0.20604931,0.46122304,0.004097029,0.14418936,0.061023984,0.33097917,-0.42257485,0.16471463,-0.10670829 +-0.0088510765,-0.13085666,-0.174165,-0.103131294,0.06903727,-0.062738515,-0.097887404,-0.14727503,-0.106983915,-0.11398792,-0.006712434,0.31449774,-0.09089368,-0.022422861,0.02598271,0.36469078,-0.032525726 +-0.196075,0.3249111,0.47807762,-0.08706882,0.22639614,0.0016029625,0.16647291,0.06099958,0.042412493,0.3638317,0.3492045,-0.4016768,0.003772251,-0.028241051,0.022232862,-0.06548575,-0.18466178 +0.17313734,0.0938068,-0.35343626,0.018340806,0.37039813,-0.056483686,0.17979945,-0.057589393,0.23417757,-0.22140995,0.044381335,0.4711159,-0.43168285,0.016269965,-0.015268907,0.28835344,0.08638726 +-0.3780091,0.18181024,0.3966504,0.45722583,0.12746514,-0.077713706,0.49619764,-0.35537064,0.15221058,0.17858498,0.043755013,-0.25059387,0.5170809,0.2774514,0.2175448,0.09177594,0.33081466 +0.2391285,0.042482603,0.15507779,-0.026997179,0.29186738,-0.078757554,0.37157407,0.14701669,0.4162126,0.37510538,0.3254634,0.14242291,-0.16482052,0.024036372,-0.101421274,0.36324343,0.0060625006 +0.07048728,0.3457545,0.3063867,0.5424793,0.028934726,0.015467659,-0.120892204,0.36683875,0.079781264,0.22266135,0.039093073,-0.1982703,0.6484053,0.10172043,0.1468289,-0.041393347,0.15792388 +0.32945022,0.3577452,0.072981074,-0.31561267,0.014869881,0.056344382,-0.20086515,-0.023896173,0.17335525,0.09971302,-0.098758325,-0.068261325,-0.15793647,0.045283634,0.4760554,-0.006815413,0.073911846 +0.14826252,-0.305387,-0.112755455,0.34022385,0.23422909,0.08897838,-0.013293181,0.15536778,0.39845192,-0.15236391,0.337401,-0.17966579,0.023917237,0.25895002,0.028211052,0.29422286,-0.12560746 +-0.18697003,0.10570123,0.557737,0.53192633,0.20472446,0.14426294,-0.057553582,0.25660768,-0.102786124,0.05055258,-0.009946708,0.1855892,0.29890993,-0.13804296,0.16091092,-0.03697073,0.13727656 +-0.12316724,0.12452489,0.22326629,0.42773432,0.118993156,0.10818278,-0.16748142,0.26164526,0.23193677,0.11935245,-0.19912574,0.1225143,0.11774683,-0.3063521,-0.10284636,-0.08483265,-0.23030178 +0.1172231,0.20490275,0.2328422,0.33920625,-0.10581008,0.16772094,0.09569633,0.19454491,0.20200154,0.45349586,-0.17240682,0.28255633,0.57007426,0.050597128,-0.16752647,-0.08749832,0.16504247 +-0.22063886,0.22852226,0.42870086,0.4302454,0.118658625,0.09538807,-0.094632566,0.099069856,0.049181987,0.069803976,-0.16543686,0.07203281,0.24636157,-0.030329064,0.04812947,0.096325524,0.14142905 +-0.061215978,0.47500473,-0.3077369,0.6809798,0.53615135,0.09025237,0.65806246,0.15772021,0.02529171,0.5872326,-0.062657155,0.58889216,0.06016954,0.36549592,-0.3436321,0.116395585,0.32024795 +-0.04863563,0.28278443,0.44758612,0.5567014,0.120205104,0.2053571,0.37851766,0.40333536,0.29903537,0.37715375,-0.18286891,-0.25502068,0.28824762,-0.3593286,0.018136023,-0.057392932,0.2405167 +-0.04530167,0.20408706,0.17072368,0.3071206,0.14928,-0.020417191,0.008534196,0.024561707,0.42589587,0.1791638,-0.08978696,0.036429953,-0.018776042,-0.10109831,-0.27993196,-0.06554436,-0.14411806 +0.121925,0.0034270464,0.3744158,0.30445516,0.12655604,-0.12960042,0.24790175,0.17664884,0.19341221,-0.06187575,-0.31765264,0.21320954,0.0683811,0.17540303,0.057122827,-0.067472346,0.023576634 +0.0698201,-0.6086376,0.14822496,-0.7054289,0.32630008,-0.28648153,0.039142393,0.09309442,-0.062600866,-0.29018852,0.0003097722,-0.13390267,-0.3666796,0.41858286,-0.34374171,0.2310839,-0.30076218 +0.29125676,-0.34017095,-0.14332646,0.10909447,0.058313258,0.24088341,0.3632734,-0.19574921,-0.052079108,0.1858021,0.13510244,0.17198128,-0.28909665,0.2973819,-0.09795853,0.32264635,0.076397724 +0.07555052,0.2868966,-0.034558907,-0.07260922,0.3192184,0.26261958,-0.15140943,0.06974406,0.009399663,0.027493734,0.0568447,-0.11276645,0.40099552,0.04627267,0.404207,0.09005745,0.37728658 +0.09418806,0.09417727,0.15706855,0.44747293,0.214538,0.09270666,0.15659015,0.17711684,0.056021765,0.11408513,0.24544275,0.014604456,0.023346959,0.097733825,0.40344974,0.1810951,0.45462817 +-0.06433256,0.38799644,-0.007143084,0.5706345,0.20709941,-0.0086214,0.20312183,0.32802382,-0.0584834,0.048396587,0.32977054,0.2558475,0.8169794,0.25149378,-0.10613281,-0.14040475,0.40551546 +0.13033396,0.3613887,0.1814901,0.40551248,0.11734252,0.11018123,0.22909696,0.07707439,0.6372318,0.42135552,-0.20621328,0.040770672,0.2493433,-0.1908306,-0.29468468,-0.105570495,-0.105552465 +-0.32225937,-0.020952065,-0.070749305,0.3808576,0.31002197,0.21919312,0.22018647,-0.08465205,-0.17152265,0.26755574,0.07242208,0.254833,-0.17369698,-0.25773376,-0.03025997,0.4524314,0.08711898 +0.122982465,0.26085305,0.28224906,0.65628237,-0.019339938,-0.013303182,0.20176657,0.55925626,0.2973404,0.13776915,0.0072268927,-0.14664553,0.2268173,-0.23295105,0.17326988,0.09803727,0.20736249 +0.12632266,0.3479619,-0.3455914,-0.18768342,0.14505431,-0.06657606,0.47949824,-0.25008568,0.23977032,0.2686831,0.065085925,0.05276802,-0.23563896,0.21784793,-0.13030013,0.22446343,-0.022780651 +-0.20309275,0.20201582,0.5005569,0.53559977,0.07712198,-0.07462955,0.22756381,0.37493813,0.2481642,0.27409053,-0.36106405,0.17489056,0.4226715,-0.067058936,-0.0772695,-0.109362654,0.28993222 +0.08891549,0.3190525,0.09447254,0.54260993,0.5174483,0.20936093,0.38292325,0.23072709,0.086825155,-0.43862984,0.18952675,0.21007799,0.25605667,0.16913003,0.17080049,-0.22684407,-0.08214208 +-0.054276828,0.27567807,0.20085992,0.32414344,0.20526457,-0.13951059,-0.10827415,0.37472096,-0.13526164,0.25235265,-0.24300931,0.19951203,0.01708021,0.24600501,-0.029097712,0.33033577,0.31500873 +0.095939755,0.41335514,-0.2910215,0.34712,0.19841239,0.061383147,0.49389035,-0.24213022,0.054693535,-0.328706,-0.19490492,0.52618617,-0.14983276,0.5040188,0.088977434,-0.09541383,0.13207133 +0.11901944,-0.39532092,-0.19768938,-0.9977217,0.9131034,0.37500802,-0.25329375,0.2531624,-0.13574299,-0.24236324,0.19435483,-0.36843774,0.018620744,0.19025247,0.22183487,0.45569545,-0.20380118 +0.287594,0.069617234,0.1867598,-0.14091823,0.2775246,0.010313756,0.38446793,0.4064805,0.30978125,0.19868566,0.11454465,0.30099958,-0.27104393,0.17143816,0.013115298,-0.038809463,0.026726922 +-0.06358493,0.27667597,0.2974037,0.5863975,0.30512998,0.03295925,0.22484566,0.208374,0.08957788,0.053178914,-0.14695928,0.1693382,0.38345417,0.100332156,0.086265616,0.00066029304,0.25018302 +0.21313676,0.42707428,0.37529573,0.7012731,0.21573718,0.041250344,0.46320707,0.34995437,0.16521077,0.09141517,0.042496294,0.24494351,0.24027109,0.08871608,0.10640898,0.079937555,0.3283814 +-0.06958681,0.42891255,0.34442574,0.53728956,0.18556033,-0.035505295,0.35626224,-0.1303272,-0.05917457,-0.049625687,-0.18053877,0.34328768,0.22427231,0.23525064,0.21023794,0.1286122,0.19673678 +0.1716199,0.41902316,0.005122022,0.30999255,0.086733475,0.31561103,0.2341356,0.39918694,0.07615664,-0.08234199,0.20241484,0.31619897,0.45307314,-0.090311475,0.3362319,0.013546174,0.14752398 +-0.08042279,0.20324942,0.31607845,0.48616457,0.34940878,0.3980134,0.24152875,-0.17359875,-0.11072771,0.480223,-0.003694152,0.1839509,0.559686,-0.034413792,0.036611397,-0.095753975,0.05396299 +0.15932603,0.2993482,-0.034744408,-0.011830966,0.5329815,-0.08301797,0.53470063,0.095268354,0.029697511,-0.07549104,-0.0015182517,0.6388072,-0.4025605,0.35537273,-0.13522005,0.17973185,-0.23437269 +0.43249938,-0.45151803,-0.2441307,0.007899553,0.18448591,-0.06798393,0.27994266,-0.1189693,0.07219199,-0.30076352,0.12495708,0.1478484,-0.1939462,0.4685278,-0.08256082,0.38752037,-0.19450505 +0.009421941,0.14890355,0.3758052,0.33136752,0.13201016,0.1828553,0.61549944,0.21340275,-0.1701765,0.057382025,0.099185824,0.4577804,0.56505436,0.31752646,-0.15311922,-0.18161836,0.012111542 +-0.21484536,0.0031046458,0.4011202,0.5272089,0.075524665,-0.43548778,0.30107078,0.2505037,0.14718252,0.19547096,-0.05886355,0.12325196,0.1565643,0.14155938,-0.39760777,-0.2148968,-0.2331712 +0.24979493,0.26652348,0.13282043,0.3521271,0.20430958,0.39872834,0.363027,0.002724018,0.11961358,0.21107903,0.17451736,0.37984675,0.17774437,0.14062844,-0.013498462,0.0036197258,-0.0718435 +-0.005319813,0.4431957,0.28695914,0.58260936,0.38282028,0.20535247,0.09996568,0.26872534,0.3566323,0.22508188,0.058650736,0.16089281,0.091434374,-0.2716245,0.16577472,0.060327984,-0.020006236 +-0.055939283,0.18912043,0.20200473,0.50801575,0.39691514,0.001980219,0.3738616,-0.1353602,0.029770272,0.20892663,0.008527651,0.2686557,0.20489538,0.29166487,0.14655608,0.31876093,0.36643016 +-0.088999525,0.39840457,0.12959819,0.0630441,-0.22852512,-0.039125215,0.38973215,0.16250466,-0.19056517,-0.04619751,0.029772677,-0.098393165,-0.41175604,0.12595439,0.123058885,0.062534876,0.17270772 +-0.17298548,-0.024026169,0.6791824,-0.69096625,0.34186354,-6.584381e-05,0.61360806,0.47831282,0.083004534,0.21910375,-0.11346565,-0.8494694,-0.008044059,0.1517141,-0.06779219,-0.40523356,0.24922821 +0.07772526,0.058190964,-0.23279515,0.37979653,0.41755313,0.23955578,0.5563092,-0.17776056,-0.039690677,-0.1950511,-0.16411848,0.6331204,0.051799193,0.28378385,0.10314507,0.06905495,0.17572004 +-0.020469587,0.28045824,0.10376982,0.13855301,0.34261084,0.20873654,0.51621366,0.00024340383,-0.22545417,0.29083562,-0.06105457,-0.028257653,-0.026427153,0.29274413,0.0075674257,0.19117741,0.1703334 +0.20684427,0.09517673,0.14257024,0.47780803,0.2546298,-0.087056465,0.48426148,-0.016193822,-0.074269764,0.27061173,-0.13049136,0.4515159,-0.07119565,0.57675403,-0.18331718,0.2358465,0.1909213 +0.21982922,0.2563828,0.10170236,0.3163466,0.20281108,0.286856,0.38017008,0.17230858,0.23428448,0.17082678,-0.016747136,0.32347548,0.35398102,0.033260465,-0.1853708,-0.056449644,0.009655433 +-0.023868993,0.2810317,0.17652808,0.44334555,0.35889623,0.28322285,0.42404693,-0.027984492,-0.12938151,0.28521368,0.16917402,0.49869883,-0.23505653,0.2216163,0.34014425,0.14728424,0.32356742 +0.124829866,0.2652167,-0.15405415,-0.33191064,0.239031,0.08259047,0.08449733,0.02610238,-0.37604073,-0.031252984,0.31080234,-0.05923389,-0.43568698,0.25435233,0.24549918,0.13194634,-0.10298088 +-0.25295648,0.27556485,-0.12236649,0.45043886,0.22155783,-0.25302204,-0.06096768,0.3577801,0.49518943,0.35935035,0.109235585,-0.3554932,0.038881127,-0.057635896,0.09663225,-0.20726442,0.23548886 +-0.10578339,0.26318187,0.20322445,0.5115008,0.12647039,-0.03980234,0.07088522,0.16340894,0.5609198,0.1405798,-0.23243947,0.06580719,0.04836619,-0.07499288,-0.36137784,0.06764582,-0.011733212 +0.4922805,0.44783846,-0.3730808,-0.09228592,-0.11497944,0.109997705,-0.10917623,-0.023518488,-0.09882866,0.38025904,-0.06204188,0.42368636,-0.24241336,0.4100061,-0.15478827,0.096055634,-0.02173053 +-0.016732628,0.31600964,0.250685,0.6229207,0.26915607,0.13023011,0.4137915,0.10659468,0.2734851,0.4422393,0.30954424,0.31084836,0.26832443,-0.016891288,-0.07846609,-0.010577017,-0.03411479 +0.31253523,0.18016379,-0.047842115,-0.015793243,0.23569794,-0.067194186,0.29054242,0.269497,0.3990175,0.095070824,-0.123295166,0.23804115,0.15792578,0.12153363,0.042548805,-0.17340946,0.13701278 +-0.049217504,0.16097564,0.13725875,0.29105636,0.071814746,-0.06451007,-0.1749149,0.05846392,0.2551089,0.27091756,0.108315386,-0.20661463,0.09890929,-0.15074213,-0.052980315,0.062144406,-0.12165136 +0.038152464,0.1555014,-0.10685532,0.032520264,0.16135672,0.09814778,0.2676037,-0.08499174,0.16404295,-0.24821356,0.0396993,0.37072602,-0.011605659,0.2073673,0.2542678,0.06438028,-0.0051190867 +0.009531593,0.24951905,0.44097742,0.41422814,0.03887072,0.14838398,-0.27783477,0.20761472,0.2644644,0.14685935,-0.27277339,0.106903814,0.24925755,-0.098688446,-0.32197148,-0.24424446,-0.006208908 +-0.22079322,-0.014049413,0.24625362,0.21815419,0.032561444,-0.14956018,-0.052048326,0.1839389,-0.014059719,0.032893315,-0.13708024,0.05742404,0.2741051,-0.07646676,-0.22262862,-0.28729802,-0.107863374 +-0.10749054,0.14463718,0.16514584,0.3092629,0.078858905,-0.006033414,-0.035180394,0.26727143,-0.022748545,0.31247586,-0.11752751,-0.1376446,0.44435406,-0.09361248,-0.018814383,-0.17790742,-0.06368321 +0.22298941,0.14867672,-0.032929268,0.17278081,0.18976326,0.1332758,-0.091115534,0.08956911,-0.01709492,0.27827504,0.1938033,-0.060724866,0.14493069,0.064241014,0.38509607,0.27168635,0.31875208 +0.02256225,-0.3120002,0.21134663,0.28225273,0.07957602,-0.110472955,0.2137846,-0.056397013,0.09332164,-0.2600122,-0.1590037,0.24191579,0.1287006,0.29275808,0.010587952,0.18801679,-0.08080632 +-0.06263401,0.035751447,0.3734878,0.3125062,0.053989936,-0.00946548,-0.0432303,0.053862944,0.14008857,0.1617121,-0.026280602,0.06505321,0.30635437,-0.4496801,-0.4130518,-0.19409761,-0.046935916 +0.15144207,0.35182136,0.6469435,0.30496347,-0.2434574,-0.11252672,0.40155616,0.14860661,-0.081248134,0.38555768,0.0907326,0.20571576,0.35638538,0.1390765,-0.11749484,0.056961607,-0.060671546 +0.09766639,0.32269514,-0.058943763,0.23712246,0.04415409,0.026378725,0.11028402,0.23931149,0.10086248,0.01908028,-0.26584417,0.12782581,-0.16553451,-0.019451583,-0.2820631,-0.22714849,-0.16559696 +0.061971303,0.17564814,-0.116462015,-0.29478532,0.22540689,0.10494308,0.17935273,-0.12130545,0.13086943,-0.09117346,0.063859485,-0.15019403,-0.520156,0.08475843,0.28917533,-0.1058059,0.020833082 +0.240243,-0.15380372,-0.09553759,0.034009546,0.09803243,-0.055031247,0.032708716,-0.18425487,-0.040145833,-0.18464926,0.008132966,0.32438186,-0.09931474,0.23775627,-0.115695685,0.13907287,-0.20613223 +-0.041469395,0.30200326,0.3696403,0.43990624,0.4585082,-0.059390895,0.2914463,0.17769888,-0.13130732,-0.18030727,-0.13521452,0.3610047,0.09602976,0.20117387,0.07731597,0.47213662,-0.07687783 +0.07494113,0.4287405,-0.033674497,0.5041944,0.075383775,0.6173254,0.4050762,0.012948637,0.121516846,0.11529577,0.21352877,0.5210556,0.28967738,0.15920885,-0.043521695,-0.14749382,0.03074771 +0.012263025,-0.58483773,-0.11150268,0.046343066,0.26499262,0.1733469,-0.050415624,0.1691899,0.00036343036,0.23198175,-0.15614118,0.39726654,0.33535936,-0.30056068,-0.052045196,-0.17942347,0.19262946 +0.15965223,0.15532391,-0.06407875,-0.061330207,0.34138614,0.15895973,0.25718346,0.22850767,0.28842893,0.08136918,0.25988922,-0.07582685,0.027862182,0.24868084,0.32068154,0.21225528,0.083744496 +-0.21645893,0.12444716,0.3691455,0.46224952,0.18333633,0.20764169,0.4148988,0.22531745,-0.09011866,0.03819858,-0.11201492,0.19465888,0.10253262,0.15136756,-0.05277525,0.011541361,0.047224887 +0.244278,0.14619529,0.08911721,0.32980725,0.22707379,0.1102905,0.44719115,0.23244083,0.109359495,0.29123104,0.03820631,0.24278408,0.34039778,-0.12725787,-0.14285885,-0.20671362,-0.061558373 +0.14712618,0.6002489,0.5672957,0.21489222,-0.18802102,0.32178608,0.41933122,0.068770565,-0.030492732,0.3139134,-0.01896548,-0.16923913,0.09135223,0.36380464,0.4104287,0.34668225,0.22128075 +0.30350167,0.39423516,-0.513839,-0.022669403,0.12850998,-0.030724429,0.53861296,0.027145037,0.1234478,-0.015800562,0.07311902,0.28433293,-0.37954906,0.4612277,0.01814071,0.078356855,-0.10355405 +0.06162504,0.11004868,-0.3191955,0.075491026,0.38064906,-0.06304898,0.25101328,0.1820699,0.51121545,0.0010843284,0.35479072,0.5447803,-0.030977203,0.081071496,-0.19452456,0.32399014,-0.1150111 +0.065419696,-0.693288,-0.5780219,-1.206851,-0.76131785,-0.45684627,0.2195206,-0.7159172,0.040295992,-1.1126065,-0.2728926,-0.6608427,-0.41994575,0.3352883,-0.101033755,0.034217365,-0.5255268 +-0.003944831,0.07162347,0.20261742,0.55025315,0.07915588,0.23153478,0.21762757,0.33619717,0.27986485,0.59035426,-0.10373116,0.268945,-0.020335097,-0.3870062,-0.21181531,-0.09551787,0.013326301 +0.36475477,0.053473845,-0.16775309,0.25746202,0.26986665,0.16002508,0.49048856,-0.34257698,-0.09436025,0.32316414,0.05967453,0.5224749,-0.048824146,0.029108137,-0.095953465,0.33001637,0.14385448 +0.15621853,-0.30863383,-0.17521441,0.18175572,0.36225936,-0.045614958,0.20743501,-0.004651269,0.07683934,-0.29222724,0.2798706,0.37838292,-0.33763638,0.2179806,-0.1754793,0.27100423,-0.022971239 +0.18124549,-0.18348937,0.026673842,0.020393694,0.16575035,-0.0076861912,0.015983336,0.122987546,0.2322189,-0.3881184,0.036026258,0.27063653,-0.09262885,0.032501616,-0.052946895,0.14428547,-0.18883877 +0.04112187,-0.0849072,0.088551484,-0.5228069,0.3840935,-0.23728882,-0.110975,-0.44043446,-0.03111494,-0.06459433,-0.00078786607,0.039394747,-0.25941285,0.32905635,0.03397825,0.14123583,-0.17420925 +0.25273034,0.26198223,0.11497179,0.061319247,0.020115295,-0.012496685,0.32143664,0.5016604,0.44621155,0.19757886,0.2136032,0.4614115,-0.18618782,-0.07181587,0.11771315,-0.02343212,0.12722832 +0.269512,0.00733584,-0.14024726,-0.024054583,0.18873942,-0.12964025,0.4376554,0.28196624,-0.0403382,0.34980798,0.06013636,0.42760822,0.06194094,0.21421732,-0.40454677,-0.119186565,-0.07235614 +0.34502628,-0.48094475,-0.0042115813,0.48056248,0.38411453,0.010320587,0.2699677,-0.10139138,-0.1020227,-0.2293628,-0.020492803,0.58258504,-0.19571428,0.44759893,-0.009731652,0.34959152,-0.12779167 +-0.12140861,0.5577864,0.30991,0.3703623,0.31642842,0.37454492,0.14706366,0.49112147,0.34885678,0.123004,-0.2566859,-0.3964736,0.2497647,-0.15268213,0.4420225,0.16928554,0.35628182 +-0.009535512,0.053767595,0.24111116,0.45992798,0.2549303,-0.040330686,0.1610942,0.33640185,0.13299,0.21986736,0.068217956,0.16596447,0.2098662,-0.35189876,0.17481998,-0.08938591,-0.161855 +0.13810606,0.25583276,0.26899558,-0.41583395,0.35055447,-0.13195027,0.14030793,-0.2759562,-0.030271016,0.12992144,0.17232908,0.31290174,0.16961093,-0.12458669,-0.0678687,-0.1902488,0.08714708 +0.07317566,0.32714686,0.15738364,-0.2462351,0.104138866,-0.05142193,0.17050344,0.118135795,0.2706483,0.03725292,0.0946251,-0.19533488,-0.18378954,0.28256804,-0.10294468,-0.008227228,-0.09150677 +0.34092808,0.20048204,-0.19000329,0.07359276,0.22883977,0.14154977,0.17314355,-0.15190648,0.21049772,-0.07830025,0.35982564,0.44237733,0.062838614,0.23934753,-0.021397907,-0.056940097,0.10075068 +-0.1134644,0.15539153,0.123162955,0.27532402,0.16178311,-0.10060245,-0.18205597,0.24379127,0.3738377,0.25243735,0.0092028435,-0.07940958,0.17532547,-0.17840628,-0.036147825,-0.08933085,0.043401457 +0.3486832,-0.14546819,-0.25304723,0.13203664,0.2588506,0.17051698,0.5446594,0.06520513,-0.4114178,-0.019513244,-0.14391048,0.0076481476,0.04301094,0.41254506,0.08454788,0.0001641972,-0.313931 +0.28263533,0.1493668,0.13869306,0.09629555,0.37317264,0.4818346,0.15383339,0.180961,-0.16437003,-0.008062808,0.1026399,0.15612347,0.010982929,0.0056390823,0.015022007,0.14328775,-0.12171127 +0.4254498,0.2619652,-0.26515165,0.10927782,0.15362869,0.27562734,0.17861491,-0.12395966,0.015529448,0.20835467,-0.026532503,0.15172626,-0.061050266,0.20084453,-0.0492166,0.32613418,0.109967366 +0.039283786,0.4687563,0.099493496,0.18201305,0.28861517,0.03175599,0.19342461,0.30225137,-0.23967062,-0.030034555,-0.018037686,0.5356624,0.18957809,0.140465,0.14573841,-0.26056328,0.10017648 +-0.28133926,0.1549916,0.13481194,0.42258576,0.12336305,-0.076289006,0.030160667,0.21051925,0.3157173,0.2698848,-0.14412624,0.096499935,0.13474523,-0.3692946,-0.36346582,-0.06895116,-0.080928825 +0.13631381,0.27252415,-0.207523,0.059556738,0.49798968,-0.22481719,0.03850451,-0.14453132,-0.10619909,-0.1354123,0.19329618,-0.03125214,0.19188246,0.21151529,0.16790749,0.31717232,0.10702754 +0.07837102,0.049328424,0.015811447,0.014339302,0.06727596,0.026327081,0.06870726,0.09918462,0.098102,0.10974136,0.011924064,0.13228248,0.014595281,0.100935966,0.018804245,0.0442245,0.05004499 +0.11114733,0.04662874,0.064971656,0.070177704,0.058956742,0.09081461,0.0050706617,0.008484133,0.058199916,0.11142018,0.032068163,0.04674288,0.018962223,0.09876732,0.08747772,0.014549001,0.07556101 +0.013269878,0.08693413,0.10421991,0.06781261,0.052470885,0.09954055,0.078103244,0.005217732,0.041786082,0.045292806,0.097038835,0.059526615,0.03786423,0.034173243,0.011636545,0.12429022,0.040822495 +0.05320453,0.061321314,0.011741884,0.037998214,0.09242737,0.058663793,0.056183435,0.10958368,0.00924892,0.060105044,0.09232382,0.06378189,0.07877545,0.014562972,0.031187816,0.089169614,0.079720244 +0.10072954,0.00019758819,0.11460994,0.06426275,0.09420822,0.07044773,0.0752977,0.04848045,0.066294774,0.0021944747,0.09057679,0.039094917,0.08103772,0.013093757,0.020547416,0.11524531,0.0036809195 +0.031706132,0.0071257153,0.009355928,0.06953141,0.067896895,0.050080076,0.09341987,0.06243377,0.08518526,0.0017492712,0.03733016,0.0582992,0.08934288,0.0795776,0.10660949,0.08974298,0.06061336 +0.11238165,0.035025835,0.10395929,0.07437196,0.074137874,0.06525434,0.04214241,0.03445796,0.03146367,0.062347252,0.0821258,0.032510668,0.053040493,0.0565633,0.0038631011,0.07176313,0.06459127 +0.033903874,0.05396925,0.03935477,0.068391144,0.029076224,0.082884334,0.073993176,0.034446683,0.07126107,0.057650328,0.04196991,0.049781237,0.07870631,0.04800444,0.0813245,0.07205566,0.08322709 +0.08157657,0.022742903,0.010218765,0.065249704,0.08287608,0.077268764,0.042130593,0.07545681,0.04321005,0.075416826,0.026656542,0.016667234,0.08115756,0.07511687,0.10679769,0.058060553,0.05939649 +0.004003346,0.0043774764,0.08109061,0.014748278,0.057891034,0.06252846,0.10475856,0.07696473,0.059844676,0.097854294,0.0079694865,0.013779474,0.08598078,0.043133512,0.069796555,0.10003906,0.11523968 +0.07321129,0.057369877,0.06852298,0.0714653,0.034744255,0.089148425,0.041193374,0.03952635,0.024738446,0.082903676,0.071033224,0.00979251,0.08216108,0.06312359,0.062296655,0.06267788,0.06609109 +0.023232486,0.08513841,0.08792906,0.03416863,0.060714595,0.024799565,0.12584639,0.09005164,0.12978029,0.022611218,0.014240813,0.017198475,0.029473178,0.03511057,0.008725956,0.12903093,0.08194779 +0.048318695,0.08099668,0.111859486,0.047159355,0.06853196,0.0038814074,0.03518504,0.07154949,0.0364326,0.10060608,0.028766697,0.07780072,0.041790526,0.04331098,0.047006235,0.09681243,0.059991628 diff --git a/code/other/utils.py b/code/other/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..4072f571024bde3dd77fe7bb8ad09c71fa51864b --- /dev/null +++ b/code/other/utils.py @@ -0,0 +1,164 @@ +import numpy as np +import pandas as pd + +def fromDFtoArray(name, vector, type_value): + # Read dataframe and generate a matrix or + # a vector of appropriate type + df = pd.read_csv(name,index_col=None, header=None) + cols = df.columns + if(type_value == "f"): + for col in cols: + df[col] = df[col].astype(float) + if(type_value == 'i'): + for col in cols: + df[col] = df[col].astype(int) + r = df.values + if(vector): + r = r.reshape(-1,) + return r + +def parse_it(it): + # Extract question/answer from label + p = it.find('_') + q = it[:p] + r = it[p+1:] + r = int(float(r)) + return q,r + +def flattern_arrays(user_idx, user_idx_test): + # Transform two arrays in an array of unique values + liste1 = list(user_idx) + liste2 = list(user_idx_test) + new = list(set(liste2).difference(liste1)) + liste1.sort() + liste1 = np.array(liste1).reshape((-1,1)) + liste1 = np.unique(liste1).tolist() + new.sort() + new = np.array(new).reshape((-1,1)) + new = np.unique(new).tolist() + if(len(new) > 0): + users = liste1 + new + else: + users = liste1 + #print(len(users)) + return users + +def flattern_array(user_idx): + # Transform an array in an array of unique values + users = list(user_idx.reshape((-1,1))) + users.sort() + users = np.array(users) + users = np.unique(users) + return users + +def parse_kc(s): + d = [] + s = s[1:] + while(s.find(',') > 0): + t = s[:s.find(',')] + d.append(int(t)) + s = s[s.find(',')+1:] + s = s[:len(s)-1] + d.append(int(s)) + return d + +def parse(data): + d = [] + for i in range(len(data)): + s = data[i][1:] + while(s.find(',') > 0): + t = s[:s.find(',')] + d.append(int(t)) + s = s[s.find(',')+1:] + s = s[:len(s)-1] + d.append(int(s)) + d = flattern_array(np.array(d)) + return d + +def compute_kc_user(name): + fileName = name+"_responses.csv" + f = open(fileName, "r") + lines = f.readlines() + kc_user = [] + kc_user_val = [] + dico_u = [] + old_k = -1 + num_kc = 0 + for line in lines: + r = line.split(',') + if(int(r[0]) != old_k): + num_kc = num_kc + 1 + if(old_k != -1): + kc_user.append(new_kc_user) + kc_user_val.append(new_kc_user_val) + dico_u.append(dico_uk) + new_kc_user = [] + new_kc_user_val = [] + dico_uk = {} + old_k = int(r[0]) + user = int(r[1]) + if user not in dico_uk: + dico_uk[user] = len(dico_uk) + new_kc_user.append([]) + new_kc_user_val.append([]) + # add item and values + for i in range(2,len(r)): + q,rep = parse_it(r[i]) + new_kc_user[dico_uk[user]].append(int(q)) + new_kc_user_val[dico_uk[user]].append(rep) + kc_user.append(new_kc_user) + kc_user_val.append(new_kc_user_val) + dico_u.append(dico_uk) + # sort files ? + for k in range(len(kc_user)): + for u in range(len(kc_user[k])): + kc_user[k][u], kc_user_val[k][u] = zip(*sorted(zip(kc_user[k][u], kc_user_val[k][u]))) + return kc_user, kc_user_val, dico_u, num_kc + +def doa_creuse(F, kc_user, kc_user_val, dico_u): + doa = [] + user_embed = F + num_kc = len(kc_user) + for k in range(num_kc): + Z1 = 0.0 + v = 0.0 + users = list(dico_u[k]) + for a in range(len(kc_user[k])): + for b in range(len(kc_user[k])): + Z2 = 0.0 + Z0 = 0.0 + ua = users[a] + ub = users[b] + if(user_embed[ua][k] > user_embed[ub][k]): + ia = a + ib = b + ma = 0 + mb = 0 + while(ma < len(kc_user[k][ia])) and (mb < len(kc_user[k][ib])): + if(kc_user[k][ia][ma] < kc_user[k][ib][mb]): + ma = ma + 1 + else: + if(kc_user[k][ia][ma] > kc_user[k][ib][mb]): + mb = mb + 1 + else: + # meme item + if(kc_user_val[k][ia][ma] > kc_user_val[k][ib][mb]): + Z2 = Z2 + 1 + Z0 = Z0 + 1 + else: + if(kc_user_val[k][ia][ma] < kc_user_val[k][ib][mb]): + Z0 = Z0 + 1 + ma = ma + 1 + mb = mb + 1 + #print("Z0 Z2", A, b, Z0, Z2) + if(Z0 > 0): + Z1 = Z1 + 1 + v = v + Z2/Z0 + #print("Z2, Z0",dico_u[k][a],dico_u[k][b],Z2, Z0) + + if(Z1 > 0): + v = v / Z1 + #print("Z1", k, Z1) + #print("doa k : ", k, v) + doa.append(v) + return doa diff --git a/code/othertest_3_partitionsNew.csv b/code/othertest_3_partitionsNew.csv new file mode 100644 index 0000000000000000000000000000000000000000..acf4392bc22b3388575a71e002b672c736a04902 --- /dev/null +++ b/code/othertest_3_partitionsNew.csv @@ -0,0 +1,17 @@ +0,0.07093273,0.5555635467122366 +1,-0.07251905,0.6006371514608917 +2,-0.024404738,0.586644840818717 +3,-0.053699624,0.58642469515289 +4,0.02960766,0.621510394267664 +5,0.03977887,0.5617197014066212 +6,0.07516274,0.545949839510865 +7,0.0010237932,0.5751403256245949 +8,-0.06573455,0.5733346958166629 +9,-0.08301515,0.5553507390286373 +10,0.039807074,0.5505901808365979 +11,-0.07010786,0.5913382879804063 +12,0.0735193,0.5634380300398776 +13,0.1259739,0.5648530073124156 +14,-0.0005489956,0.5616242386272854 +15,-0.008212235,0.568164666439042 +16,-0.033589475,0.5684910586600398 diff --git a/code/radar0_fig.png b/code/radar0_fig.png new file mode 100644 index 0000000000000000000000000000000000000000..de65e2e2f6e77773c5d21d2fc7a318d7c1ce8176 Binary files /dev/null and b/code/radar0_fig.png differ diff --git a/code/radar1_fig.png b/code/radar1_fig.png new file mode 100644 index 0000000000000000000000000000000000000000..d896f870e111a56a6113fab045996c048c340d3d Binary files /dev/null and b/code/radar1_fig.png differ diff --git a/code/radar2_fig.png b/code/radar2_fig.png new file mode 100644 index 0000000000000000000000000000000000000000..8861b7224efeca6258576637f5e3ebf35a4af7f8 Binary files /dev/null and b/code/radar2_fig.png differ diff --git a/code/radar3_fig.png b/code/radar3_fig.png new file mode 100644 index 0000000000000000000000000000000000000000..8e2126da7ece74f7960367bb93bd9994d7c0cabf Binary files /dev/null and b/code/radar3_fig.png differ diff --git a/code/radar4_fig.png b/code/radar4_fig.png new file mode 100644 index 0000000000000000000000000000000000000000..d61e7a6e92f354719675c745e49a666046f3f382 Binary files /dev/null and b/code/radar4_fig.png differ diff --git a/code/radar5_fig.png b/code/radar5_fig.png new file mode 100644 index 0000000000000000000000000000000000000000..3bf57e11d4e119c5723e7476c973cfd1163d8f72 Binary files /dev/null and b/code/radar5_fig.png differ